.switch {
    position: relative;
    float:right;
    display: inline-block;
    width: 50px; 
    height: 24px;
    margin-top: 4px;
    text-align: right !important;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  /* .switch-label {
    height: 48px;
    margin-top: 7px;
    margin-right:20px;
    display:inline-block;
  } */
  
  input:checked + .switch-slider {
    background-color: #56c746;
  }
  
  input:focus + .switch-slider {
    box-shadow: 0 0 1px #56c746;
  }
  
  input:checked + .switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .switch-slider.round {
    border-radius: 24px;
  }
  
  .switch-slider.round:before {
    border-radius: 50%;
  }