.switch-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.switch-button:hover .switch-button__label {
  color: #3f4041;
}
.switch-button.active .switch-button__label {
  color: #3f4041;
}
.switch-button__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.24;
  color: #636363;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.switch-button__wrap {
  display: inline-block;
  position: relative;
  width: 36px;
  height: 20px;
}
.switch-button__checkbox {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.switch-button__checkbox:checked + .switch-button__slider::before {
  transform: translateX(16px);
}
.switch-button__checkbox:checked + .switch-button__slider {
  background-color: #ff7100;
}
.switch-button__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 10px;
}
.switch-button__slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  top: 2px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
  border-radius: 50%;
}