
.skin_selection_screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: rgba(188, 188, 188, 0.8);
    
    z-index: 5;
  
}

.skins_menu {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 600px;
    height: 400px;

    transform: translate(-50%, -50%);
  
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
  
    background: #000;
    background: rgba(73, 64, 64, 0.95);
    overflow: hidden;
}

.player_skin_large {
    width: 80px;
    left: 0;
    bottom: 0;
    padding: 20px;
}

.player_skin_large:hover {
    background-color: rgb(126, 126, 126)
}

.player_skin_large:active {
    background-color: rgb(192, 192, 192)
}

.pixelated {
    image-rendering: optimizeSpeed;           
    image-rendering: -moz-crisp-edges;         
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: -o-crisp-edges;           
    image-rendering: pixelated;                 
    -ms-interpolation-mode: nearest-neighbor;  
}


#map_circle_timer_container {
    position: absolute;

    border-radius: 3px;
    padding: 3%;
    font-size: 1.25vw;
    color: white;
    top: 110%;
    left: 50%;
    width: 6.3vw;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);

    transform: translateX(-50%);
}

#map_circle_timer_image {
    display: block;
    width: 1.4vw;
    float: left;
}

#map_circle_timer_text {
    display: block;
    float: right;
}

#timer_start_text {
    position: absolute;

    color: white;
    font-size: 2.25vw;
    top: 12%;
    left: 0%;
    width: 100%;
    text-align: center;

    font-family: 'gameTextFont', sans-serif;
}

#spectate_text {
    position: absolute;

    color: rgb(238, 210, 52);
    font-size: 2vw;
    top: 3%;
    left: 0%;
    width: 100%;
    text-align: center;

    font-family: 'gameTextFont', sans-serif;
}

#waiting_for_players_text {
    position: absolute;

    color: white;
    font-size: 2vw;
    top: 7%;
    left: 0%;
    width: 100%;
    text-align: center;

    font-family: 'gameTextFont', sans-serif;
}

#lost_connection_text {
    position: absolute;

    color: red;
    font-size: 1.5vw;
    top: 3%;
    left: 0%;
    width: 100%;
    text-align: center;

    font-family: 'gameTextFont', sans-serif;
}

#spectate_options {
    position: absolute;
    top: 40%;
    left: 3%;
    text-align: center;

    width: 10vw;
    font-size: 1vw;

    padding: 10px;
    background: rgba(0, 0, 0, 0.6);

    text-shadow: black 1px;
    font-family: 'Open Sans', "Roboto", sans-serif;   
}

#teams_amount_select {
    width: 254px;
    height: 48px;

}

.radio_image_select {
    display: inline-block;
    border-radius: 3px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 2px;
    margin-right: 2px;

    background: rgb(112, 112, 112);

    opacity: 0.7;
}

.radio_image_select.selected {
    background: rgb(49, 119, 64);
    opacity: 1;
}

.radio_image_select:hover {
    background: rgb(158, 158, 158);
    opacity: 1;
}

.radio_image_select:active {
    background: rgb(49, 119, 64);
    opacity: 1;
}

.form_label {
    display: inline-block;
    color: white;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;

    margin-bottom: -10px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {display:none;}
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;

    border-radius: 3px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;

    border-radius: 3px;
  }
  
  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);
  }