.vc-toggle-container * {
  font-family: Arial;
  -webkit-transition: 0s ease-out;
  -moz-transition: 0s ease-out;
  -o-transition: 0s ease-out;
  transition: 0s ease-out;
}

.vc-small-switch {
  width: 53px;
  height: 24px;
}

.vc-small-switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 18px;
  cursor: pointer;
}

.vc-switch-input {
  position: absolute;
  transform: translate3d(5px, 5px, 0);
}

.vc-switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  background: #d1d3d4;
  border-radius: inherit;
}

.vc-switch-label:before,
.vc-switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1.1;
}

.vc-switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: white;
}

.vc-switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  opacity: 0;
}

.vc-switch-input:checked ~ .vc-switch-label {
  background: #F39C12;
}
.vc-switch-input:checked ~ .vc-switch-label:before {
  opacity: 0;
}
.vc-switch-input:checked ~ .vc-switch-label:after {
  opacity: 1;
}

.vc-switch-handle {
  position: absolute !important;
  top: 4px;
  left: 5px;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.vc-switch-handle:before {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute !important;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
}

.vc-switch-label:active ~ .vc-switch-handle, .vc-switch-handle:active {
  width: 30px;
}

.vc-switch-input:checked ~ .vc-switch-handle {
  left: unset;
  right: 5px;
}







    .toggle {

      position: relative;
      display: inline-block;
	  width: 30px;
      height: 15px;;
      justify-content: center;
      align-items: center;
	  top: 7px;
      cursor: pointer;
    }

    .toggle input {
      display: none;
    }

    .toggle .labels {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      font-size: 8px;
      font-family: sans-serif;
      transition: all 0.4s ease-in-out;
    }

    .toggle .labels::after {
      content: attr(data-off);
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      color: #000000;
      background-color: #ffffff;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease-in-out;
	  border-radius: 3px;
	  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    }

    .toggle .labels::before {
      content: attr(data-on);
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      color: #000000;
      background-color: #4fe132;
      text-align: center;
      opacity: 0;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease-in-out;
	  border-radius: 3px;
	  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
    }

    .toggle input:checked~.labels::after {
      /* flip 180deg */
      transform: rotateY(180deg);
      opacity: 0;
    }

    .toggle input:checked~.labels::before {
      transform: rotateY(180deg) scale(-1, 1);
      opacity: 1;
    }
	

