.switch-wrap .check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.switch-wrap input.check-toggle-round-flat + label {
  padding: 2px;
  width: 32px;
  height: 16px;
  background-color: var(--beige-light);
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
      margin: 0 8px;
}
.switch-wrap .check-toggle + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  border: none;
  vertical-align: middle;
}


.switch-wrap input.check-toggle-round-flat + label::before {

    top: 2.5px;
    left: 2px;
    bottom: 2.5px;
    right: 2px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;

}
.switch-wrap input.check-toggle-round-flat + label::before, input.check-toggle-round-flat + label::after {

    display: block;
    position: absolute;
    content: "";

}

.switch-wrap input.check-toggle-round-flat:checked + label::after {
  margin-left: 0px;
}

.switch-wrap input.check-toggle-round-flat + label::after {
  top: 2.5px;
  left: 2px;
  bottom: 2.5px;
  width: 11px;
  background-color: var(--dark-text);
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 52px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
  height: 11px;
margin-left: 16px;
}

.switch-wrap .check-toggle + label {
  cursor: pointer;
}


.invisible {
  position: absolute;
  left: -9999999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: visible !important;
  background-color: transparent;
}

