/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* 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: rgba(255, 0, 0, 0.5);
  -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: rgba(0, 255, 0, 0.5);
}

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

.rotated { 
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
  
.header-arrow {
  position:absolute; 
  top:5px; 
  right:5px; 
  display:block;
  color:rgb(0,123,255);
  cursor:pointer;
}

.el-tablo .label-cus {
display: block;
font-size: 1.5rem;
text-transform: uppercase;
color: rgba(0, 0, 0, 0.4); }

.el-tablo .value-cus {
font-size: 2.00rem;
font-weight: 300;
font-family: "Proxima Nova W01", "Rubik", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
letter-spacing: -1px;
line-height: 1.2;
display: inline-block;
vertical-align: middle; }

#scroll_to_top{
    z-index: 100;
    display:none;
    position:fixed;
    bottom:25px;
    right:25px;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: rgba(245,245,245,0.8);
}

#scroll_to_top i{
    position:absolute;
    top:35%;
    left:35%;
  }
  
.table-arrow {
  position:absolute; 
  right:5px; 
  top:0px; 
  display:block;
  color:rgb(0,123,255);
  cursor: pointer;
}

.unselectable-collapsible {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor:pointer;
  }

.unselectable-collapsible a:hover {
  text-decoration: none;
  }
  
  .unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor:default;
  }

  .unselectable a{
    text-decoration: none;
    color:rgb(62,75,91);
  }
  
  .unselectable a:hover{
    text-decoration: none;
    color:rgb(0,0,0);
  }
  
  .bread-size{
    font-size:12px !important;
  }

  .hint{
    font-size:20px !important;
  }

  #sticky_id{
    z-index: 100;
    display:none;
    position:fixed;
    top:0px;
    width:100%;
    padding-right:10px;
    right:0px;
    background: rgba(245,245,245,0.8);
  }

  #dev_env{
    z-index: 100;
    position:fixed;
    bottom:0px;
    left:0px;
    width:100%;
    padding-left:10px;
    background: rgba(245,245,245,0.8);
  }