.ninemags-cart-attribute-checkbox-container {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ninemags-cart-attribute-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.ninemags-cart-attribute-checkbox__input {
  display: none !important;
}

.ninemags-cart-attribute-checkbox__slider {
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 24px;
  background-color: #ccc;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.3s ease;
}

.ninemags-cart-attribute-checkbox__slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.ninemags-cart-attribute-checkbox__input:checked
  + .ninemags-cart-attribute-checkbox__slider {
  background-color: var(--ninemags-cart-attribute-checkbox-accent-color);
}

.ninemags-cart-attribute-checkbox__input:checked
  + .ninemags-cart-attribute-checkbox__slider::before {
  transform: translateX(20px);
}

.ninemags-cart-attribute-checkbox__label {
  font-size: 16px;
  color: var(--clr-btn-txt-secondary);
}
