#controlpanel{
  display: none;
  left: 20px;
  top: 20px;
  z-index: 999;
  background-color: #ffffff;
  position: absolute;
  box-shadow: 1px 3px 3px #000000;
  width: 300px;
  padding: 10px;
  text-align: left;
}

#controlpaneltabs{
  position: absolute;
  width: 70px;
  background-color: #0E76A9;;
  left: -70px;
  margin-top: 20px;
  border-radius: 10px 0px 0px 10px;
  box-shadow: -3px 3px 3px rgba(0,0,0,.2);
}

#controlpaneltabs div{
  position: relative;
  width: 40px;
  height: 40px;
  padding: 15px;
}

.controlpanelicon{
  cursor: pointer;
}

.controlpanelicon:hover {
  filter:
  drop-shadow(1px 1px 3px #0000ff);
}

.controlpanelicon-active{
  cursor: pointer;
}

.controlpanelicon-inactive{
  filter: invert(0.3);
}

.svgicon:hover {
  filter:
  invert(.3)
  drop-shadow(1px 1px 3px #555555);
}

.filter-test{
  filter:
  brightness(100%)
  contrast(100%)
  grayscale(100%)
  invert(100%)
  opacity(100%)
  saturate(100%)
  sepia(100%)
  hue-rotate(180)
  blur(5)
  drop-shadow(3px, #000000);
}


.adminpanel{
  width: 240px;
  left: 20px;
  top: 20px;
  z-index: 999;
  background-color: #ffffff;
  position: absolute;
  box-shadow: 1px 3px 3px;
  padding: 10px;
  text-align: center;
  display: none;
}    
#usercontrolpanel{
  display: none;
  left: 20px;
  top: 20px;
  z-index: 999;
  background-color: #ffffff;
  position: absolute;
  box-shadow: 1px 3px 3px;
  width: 300px;
  padding: 10px;
  text-align: left;
}

#orderpanel{
  display: none;
  width: 200px;
}

#objectpropertiespanel{
  display: none;
  width: 300px;
}

#renderpanel{
  display: none;
  left: 20px;
  top: 20px;
  z-index: 999;
  background-color: #ffffff;
  position: absolute;
  box-shadow: 1px 3px 3px;
  padding: 10px;
  text-align: left;
  width: 300px;
}

.userpanel{
  display: none;
  left: 20px;
  top: 20px;
  z-index: 999;
  background-color: #ffffff;
  position: absolute;
  box-shadow: 1px 3px 3px;
  width: 240px;
  padding: 10px;
  text-align: center;
}


#controlpanel{
  min-height: 500px;
}
.controlpanelabel{
  font: normal 10pt gotham-bold;
}

#controlPanelAdvanced{
  display: none;
  display: inline-block;
}

.textlabel{
    font: normal 10pt gotham-bold;
    padding: 3px;
    margin: 3px;
    display: inline-block;
    user-select: none;
}

.textlabelsmall{
    font: normal 8pt gotham-bold;
    padding: 2px;
    margin: 2px;
    display: inline-block;
    user-select: none;
}

 
#fontbox{
  position: absolute;
  top: 100px;
  left: 100px;
  height: 80px;
  width: 350px;
  box-shadow: 1px 1px 4px #000000;
  z-index: 2000;
  padding: 10px;
  background-color: #ffffff;
  

}

#fontbox input[type=text]{
  width: 300px;
  background-color: #eeeeee; 
  padding: 5px; 
  margin: 5px;
  border: 1px solid #555555;
}

#fontbox .icon{
  width: 24px;
  height: 24px;
  margin-left: 5px;
  cursor: pointer;
}






 
 
 
 
 /* The switch - the box around the slider */
 .switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
  }
  
  /* 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: 12px;
    width: 12px;
    left: 3px;
    bottom: 2px;
    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(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  } 