.main-btn {
  margin-top: 60px;
  margin-bottom: 10px;
  padding: 7px 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 5px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
}

.main-checkbox {
  width: 26px;
  height: 15px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #384443;
  border-radius: 11px;
  outline: none;
  transition: 0.3s;
  position: relative;
}

.main-checkbox:checked {
  background: #26867a;
}

.main-checkbox::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: white;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: 0.3s;
}

.main-checkbox:checked::before {
  left: 12px;
}

.main-p {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */