.fresh-fireant {
  position: relative;
  width: 60px;
  height: 25px;
}

.fresh-fireant__switch-label {
  position: absolute;
  width: 100%;
  height: 25px;
  background-color: #28292c;
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid #28292c;
}

.fresh-fireant__checkbox {
  position: absolute;
  display: none;
}

.fresh-fireant__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  transition: 0.3s;
}

.fresh-fireant__checkbox:checked ~ .fresh-fireant__slider {
  background-color: #d8dbe0;
}

.fresh-fireant__slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 12.5px;
  height: 12.5px;
  border-radius: 50%;
  box-shadow: inset 6px -2px 0 0 #d8dbe0;
  background-color: #28292c;
  transition: 0.3s;
}

.fresh-fireant__checkbox:checked ~ .fresh-fireant__slider::before {
  transform: translateX(20px);
  background-color: #28292c;
  box-shadow: none;
}
