.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
background: url(public/front/img/green-loader.gif) center no-repeat #fff;
}
 .switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 34px;
}
.switch input {display:none !important;}

.slider.round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
   border-radius: 34px;
}
/*.slider.slider-horizontal{
    left:25px !important;
    top:15px !important;
}*/
.slider.round{
    background-color:red;
}
.slider.round:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2ab934;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(55px);
}

/*------ ADDED CSS ---------*/
.slider.round:after
{
 content:'OFF';
 color: #fff;
 display: block;
 position: absolute;
 transform: translate(-50%,-50%);
 top: 50%;
 left: 50%;
 font-size: 12px;font-weight:600;
}

input:checked + .slider:after
{  
  content:'ON';
}


 .switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 19px;
    vertical-align: middle;
}

/* 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: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  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(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;

}

.slider.round:before {
  border-radius: 50%;
}

  /* Active switch box style */
  .switch.active .slider {
    background-color: #4CAF50; /* Change color for active state */
  }

  .switch.active input:checked + .slider:before {
    background-color: #4CAF50; /* Change color for active state */
  }
.toggle-off .toggle-group i.fa-check {
      color: red; /* Change to the desired color */
    }
  .toggle.ios, .toggle-on.ios, .toggle-off.ios { border-radius: 20rem; }
  .toggle.ios .toggle-handle { border-radius: 20rem; }
</style>
<style>

#popoverModalContent {
    width: 300px;
}

   .vl {
  border-left: 1px solid grey;
  height: 20px;
}
.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
background: url(public/front/img/green-loader.gif) center no-repeat #fff;
}
 .switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 19px;
    vertical-align: middle;
}
.switch input {display:none !important;}

.slider.round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s;
  transition: .4s;
   border-radius: 34px;
}
/*.slider.slider-horizontal{
    left:25px !important;
    top:15px !important;
}*/
.slider.round{
    background-color:#d9d9d9;
}
.slider.round:before {
  position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
  background-color: #222;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

/*------ ADDED CSS ---------*/
.slider.round:after
{
 content:'';
 color: #fff;
 display: block;
 position: absolute;
 transform: translate(-50%,-50%);
 top: 50%;
 left: 30%;
 font-size: 12px;font-weight:600;
}

input:checked + .slider:after
{  
  content:'';
}
@media only screen and (max-width: 600px) {
    .mobileview
    {
        display:block;
    }
    .desktopview
    {
        display:none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {  .mobileview
    {
        display:block;
    }
    .desktopview
    {
        display:none;
    }}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {  .mobileview
    {
        display:block;
    }
    .desktopview
    {
        display:none;
    }}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {  .mobileview
    {
        display:block;
    }
    .desktopview
    {
        display:none;
    }}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {  .mobileview
    {
        display:none;
    }
    .desktopview
    {
        display:block;
    }}
/*--------- END --------*/
 
