.section-switch {
  align-items: center;
  display: inline-flex;
  float: left;
  justify-content: flex-start;
  margin: 12px 0 12px 0;
}
.section-switch.input100 {
  width: 100%
}
.section-switch p {
  color: #555;
  font-size: 14px;
  line-height: normal;
}
.switch {
  cursor: pointer;
  margin-inline-end: 8px;
}
.switch input {
  opacity: 0;
  position: fixed;
  top: 0
}
/* background switch */
.switch input+span {
  background-color: #CDCDD0;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  height: 30px;
  position: relative;
  top: 0;
  left: 0;
  width: 48px;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: 150ms;
  transition-timing-function: linear;
  transition-duration: .2s;
  padding: 0;
}
/* circle switch */
.switch input+span:before {
  background-color: #FFF;
  border-radius: 9999px;
  display: block;
  height: 22px;
  margin-inline-start: .25rem;
  width: 22px;
  content: "";
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: 150ms;
  transition-timing-function: linear;
  transition-duration: .2s
}
[dir="rtl"] .switch input+span:before {
  margin-inline-start: calc(22px - 1px);
}
.switch input+span+span {
  margin-inline-start: .5rem
}

.switch input:checked+span:before {
  border-color: #fff;
  margin-inline-start: 22px;
}
[dir="rtl"] .switch input:checked+span:before {
  margin-inline-start: 0.25rem;
}
.switch.disabled {
  pointer-events:none!important;
  opacity: 0.3!important;
  cursor: default!important;
}
.switch .text-gral {
  font-size: 14px;
  color: #555;
}
