/* oa Toggle Switch section START */
.hide-section {
    display: none;
}
.label {
    font-size: .8rem;
    font-weight: bold;
    color: white;
    vertical-align: middle;
  }
.label-left {
    margin-right: 1.5rem;  /* padding to the right */
}
.label-right {
  margin-left: 1.5rem;   /* padding to the left */
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 3px;
  bottom: 3px;
  background-color: #0097ac;
  transition: .4s;
}

input:checked + .slider {
  background-color: #fff;
}

input:checked + .slider:before {
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggle-labels {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.label-on, .label-off {
  display: none;
}

input:checked ~ .toggle-labels .label-on {
  display: inline;
}

input:not(:checked) ~ .toggle-labels .label-off {
  display: inline;
}
  @media (max-width: 992px) {
    .label {
    	font-size: .8rem;
    }
    .label-left {
    	margin-right: 0.7rem;  /* padding to the right */
		}
		.label-right {
  		margin-left: 0.7rem;   /* padding to the left */
		}
    .switch {
      width: 56px;
      height: 30px;
    }
    .slider:before {
      height: 24px;
      width: 24px;
      left: 3px;
      bottom: 3px;
		}
    input:checked + .slider:before {
        transform: translateX(26px);
    }
  }
/* oa Toggle Switch section END */