.switch {
  display: inline-block;
  width: 80px;
  height: 24px;
  position: relative;
  border: 1px solid rgba(7, 7, 160, 0.596);
  border-radius: 5%;
}

.toggle-thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-thumb:before {
  content: "";
  height: 24px;
  width: 40px;
  position: absolute;
  border: 2px solid #F0F0F1;
  box-sizing: border-box;
  border-radius: 10%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: .4s all ease;
}

.checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox:checked+.toggle-thumb:before {
  transform: translateX(40px);
}

.toogle-off {
  color: crimson;
  margin-left: 8px;
  font-weight: bold;
}

.toogle-on {
  color: green;
  margin-right: 10px;
  font-weight: bold;
}

.check-label:checked+.label-activo {
  font-weight: bold;
  color: blue;
  background-color: #fff;
}

.check-label:checked+img.ic-icon {

  border-bottom: 3px solid rgb(5, 188, 5);
}

img.ic-icon:hover {
  border-bottom: 3px solid rgb(5, 188, 5);

}

img.ic-icon {
  border: 3px solid #eee;
}

.customize-control.customize-control-radio input[type=radio] {
  border-radius: 0px !important;
  padding: 10px !important;
  position: relative;
}

.customize-control.customize-control-radio input[type=radio]:checked::before {
  content: "";
  position: absolute;
  border-radius: 0% !important;
  width: 10px !important;
  height: 10px !important;
  left: 5px;
  bottom: 5px;
  margin: auto;
  background-color: #3582c4;
}

.allstyle {
  padding: 4px;
  background-color: #fff;
  border-left: 1px solid #ccc;
}

.prov-altr-range-value {
  width: 10%;
  text-align: center;
  margin-left: 10px;
  padding: 4px;
  border-left: 1px solid #ccc;
  background-color: #fff;

}

.directionflex {
  display: flex;
  border: 1px solid #ccc;
  flex-direction: row-reverse;
  border-radius: 4px 0px 0px 4px;
}

input.data-input-class {
  width: 70% !important;
  display: block;
  margin: auto;
}

