.toggle {
  align-items: center;
  border-radius: 100px;
  display: flex;
  font-weight: 700;
  margin-bottom: 16px;
}
.toggle:last-of-type {
  margin: 0;
}

.toggle__input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.toggle__input:not([disabled]):active + .toggle-track, .toggle__input:not([disabled]):focus + .toggle-track {
  border: 1px solid transparent;
  box-shadow: 0px 0px 0px 2px #121943;
}
.toggle__input:disabled + .toggle-track {
  cursor: not-allowed;
  opacity: 0.7;
}

.toggle-track {
  background: linear-gradient(255deg, #16181C,#1E1E1F);
  border: 1px solid #000000;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  height: 24px;
  margin-right: 12px;
  position: relative;
  width: 55px;
}

.toggle-indicator {
  align-items: center;
  background: linear-gradient(45deg, #84888e, #3B4048);
  border-radius: 24px;
  bottom: 0.5px;
  display: flex;
  height: 21px;
  justify-content: center;
  margin-left: 1px;
  outline: solid 2px transparent;
  position: absolute;
  transition: 0.25s;
  width: 21px;
}

.checkMark {
  fill: #fff;
  height: 36px;
  display: none;width: 20px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.toggle__input:checked + .toggle-track .toggle-indicator {
  background: linear-gradient(45deg, #ECECEC, #C9C9C9);
  transform: translateX(30px);
}
.toggle__input:checked + .toggle-track .toggle-indicator .checkMark {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.div_checkbox
{
  display: inline-block;
  /* margin-left: 17px; */
  /* line-height: 23px; */
  vertical-align: text-top;
}
@media screen and (-ms-high-contrast: active) {
  .toggle-track {
    border-radius: 0;
  }
}