  /* .switch, .switch *
  { border: 1px solid red; } */
  

  .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;

    vertical-align: middle;
    cursor: pointer;

    margin: 0px 5px 0px 0px;
  }
  
  .switch .tog_lbl
  { padding-left: 45px; }

  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .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: 20px;
    width: 20px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;

    box-shadow: var(--box-shadow_1);
  }
  
  .switch input:checked + .slider {
    background-color: #32CD32;
  }
  
  .switch input:focus + .slider {
    box-shadow: 0 0 1px #32CD32;
  }
  
  .switch input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 20px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }





  
  #active_sw
  { 
      display: inline-block; 
      margin: 0 10px 0 10px;
      border: 1px solid var(--light_gray);
      border-radius: 3px;
      padding: 3px 5px;
  }

  #active_sw:hover
  {border: 1px solid var(--red_hover);}

  #active_sw > div
  {
      display: inline-block; 

  }