html {
    min-height: 100%;
    position: relative;
} 
body{
    font-family: "Source Code Pro";
    margin: 0;
    margin-bottom: 40px;
    background-color: #f5f5f5;
} 
.error {
    color: red;
    background-color: rgb(248, 218, 163);
}
.content{
    position: relative;
    background-color: white;
    padding: 0px;
    line-height: 22px;
    min-height: 500px;
    max-height: 800px;
    overflow: auto;
    box-shadow: 0px 1px 5px #828283;
}
 .content::-webkit-scrollbar{
    height: 10px;
    width: 10px;
}  
 .content::-webkit-scrollbar-thumb{
    background-color: rgba(0, 0, 0, 0.582);
    height: 2px;
    border-radius: .5rem;
}
.head{
    padding: 5px;
    color: white;
    background: #0200daff;
    /* background: linear-gradient(90deg, rgba(131,0,170,1) 15%, rgba(60,111,199,1) 75%, rgba(60,107,199,1) 100%); */
}
.screen{
    margin: 0;
    padding: 0;
}
li.main-menu, li#display{
    padding: 5px 0 5px 45px;
}
li.list-section{
    padding: 5px;
}
li{
    list-style: none;
    position: relative;
}
li.main-menu:hover, #users-list>tr:hover{
    background-color: whitesmoke;
    cursor: pointer;
}
.icon-first{
    position: absolute;
    left: 9px;
    top: 9px;
}
.icon-follower{
    position: absolute;
    left: 9px;
    background: rgb(255, 92, 92);
    padding: 1px 5px;
    color: white;
    border-radius: 50%;
}
.icon-last{
    position: absolute;
    right: 9px;
    top: 9px;
}
#display {
    min-height: 32px;
}
.btn-seven{
    word-break: normal;
    color: white;
    font-weight: normal;
    width: 100%;
    box-shadow: 0px 1px 3px #c0c0c2;
    margin: 2px 0; 
    background: #0200daff;
    font-size: 12px;
}
.btn {
    font-weight: normal;
    width: 100%;
    margin: 2px 0;
    box-shadow: 0px 1px 3px #c0c0c2; 
}
.btn-delete{
    background-color: red;
    color: white;
}
.btn-lock {
    background-color: yellow;
    color: black;
}
.btn-vote {
    background-color: greenyellow;
    color: white;
}
.btn-remove-vote {
    background-color: rgb(47, 50, 255);
    color: white;
}
.form-title{
    width: 30%;
    display: inline-block;
}
.form-input{
    width: 68%;
    display: inline-block;
} 
.c-red{
    color: red;
}
.c-green{
    color: rgb(8, 236, 8);
}
.ta-c{
    text-align: center!important;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%; 
}
.auto-selector {
    width: 100%;
}
.winner{
    font-size: 14px;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }