#selector, #explorer {
    visibility: hidden;
}

#selector select, #explorer select {
    pointer-events:auto;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
/*              background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8nwYAAmoBZ0eMiB8AAAAASUVORK5CYII=) repeat;*/
  background-color: #DDF4FE;
  border: none;
  border-radius: 16px;
  box-shadow: 2px 2px 40px 1px rgba(0,0,0,.3);
  color: #000000;
  cursor: pointer;
  font-family: 'tme-rg', sans-serif;
  font-size: 14px;
  height: 40px;
  width: 160px;
  outline: none;
  text-align: center;
  text-align-last: center;
  justify-content: center;
  align-items: center;
}



#optionsA {
    bottom: 75px;
    left: 16px;
/*                display: none;*/
    position:fixed;
    pointer-events:auto;
    width: auto;
    height: auto;
    margin-left: 0px;
    text-align: center; 
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
/*                padding: 20 10 20 10px;*/
}
#optionsC {
    bottom: 20px;
    left: 16px;
/*                display: none;*/
    position:fixed;
    pointer-events:auto;
    width: auto;
    height: auto;
    margin-left: 0px;
    text-align: center; 
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
/*                padding: 20 10 20 10px;*/
}

#optionsB {
    bottom: 20px;
    right: 16px;
    position:fixed;
    pointer-events:auto;
    width: auto;
    height: auto;
    margin-left: 0px;
    text-align: center; 
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fullscreen {
    cursor: pointer;
    display: none;
    bottom: 120px;
    right: 10px;
    z-index: 100;
    position: fixed;
    pointer-events:auto;
    width: 50px;
    height: 50px;
    background: none;
    background-image: url('../images/fullscreen.svg');    
    background-size: contain;
    background-position: 0%;
    background-repeat: no-repeat;
}



#backBtn {
    display: none;
    cursor: pointer;
    top: 10px;
    left: 10px;
    z-index: 100;
    position: fixed;
    pointer-events:auto;
    width: 50px;
    height: 50px;
    background: none;
    background-image: url('../images/back.svg');    
    background-size: contain;
    background-position: 0%;
    background-repeat: no-repeat;
}

 #augmentedBtn {
    display: none;
    position:fixed;
    pointer-events:auto;
    width: auto;
    height: auto;
    margin-right: 10px;
    bottom:20px;
    right:4px;
    text-align: right; 
    z-index: 1;
    align-items: flex-end;
    flex-direction: column;

/*                background-color: #CC2229;*/
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8nwYAAmoBZ0eMiB8AAAAASUVORK5CYII=) repeat;
    border: none;
    border-radius: 16px;
    box-shadow: 2px 2px 40px 1px rgba(0,0,0,.3);
    
}

#plus {
    display: none;
    visibility: hidden;
    z-index: 99;
    cursor: pointer;
    position: fixed;
    margin-right: 50px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    background: none;
    background-image: url('images/plus.svg');    
    background-size: contain;
    background-position: 0%;
    background-repeat: no-repeat;
}

#minus {
    display: none;
    visibility: hidden;
    z-index: 99;
    cursor: pointer;
    position: fixed;
    margin-left: 50px;
    bottom: 10px;
    background: none;
    width: 50px;
    height: 50px;
    background-image: url('images/minus.svg');    
    background-size: contain;
    background-position: 0%;
    background-repeat: no-repeat;
}

/*#driveHelp {
    visibility: hidden;
    position: fixed;
    bottom: 20px;
}

#driveInfo {
    bottom: -21px;
    position: fixed;
    pointer-events:none;
    width: 100px;
    height: 50px;
}

#drive {

    width: 100px;
    height: 50px;
    background: none;
    background-image: url('images/arrowKeys.svg');    
    background-size: contain;
    background-position: 0%;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 0px 10px rgba(0 0 0 / 0.3));
}
*/

#augmentInfo {
    bottom: -21px;
    right: 0px;
    position: fixed;
    pointer-events:none;
    width: 100px;
    height: 50px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*              background-color: #CC2229;*/
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
/*              background-color: rgba(255, 255, 255, .45);*/

}

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%;
}

