/*Стили корзины*/
.inactive-btn {
  pointer-events: none;
  background-color: darkgray !important;
}
.no-click {
  pointer-events: none;
}
.t-inputpromocode__wrapper .t-text {
  color: #fff6e7;
}
.t-select__wrapper:after {
  content: unset !important;
}
[name="nolim_Promoco"] {
  border-radius: 5px 0px 0px 5px;
  border: 1px solid #e85b2a !important;
}
.nolim-promo-button {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.t-inputpromocode__btn {
  background: #e85b2a !important;
  transition: all 350ms ease-in-out;
}
.t-inputpromocode__btn:hover {
  background: #e77d5a !important;
}
[data-input-lid="1679488686739"] .t-input-subtitle {
  padding-bottom: 10px !important;
}

/*Стили переключателя*/
.promo-sw-wrapper {
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}
.toggle-wrapper {
  margin: 0;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  width: 80px;
}
.input-sw {
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.label {
  background-color: rgb(253, 149, 110);
  height: 40px;
  width: 80px;
  position: absolute;
  border-radius: 20px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.circle {
  width: 34px;
  height: 34px;
  background-color: #fff6e7;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: toggleOff 0.3s linear forwards;
}

.input-sw:checked + .label {
  background-color: #e4dccd;
}

.input-sw:checked + .label .circle {
  background-color: rgb(253, 149, 110);
  animation: toggleOn 0.3s linear forwards;
}

.promo-sw-wrapper p {
  padding: 0 !important;
}

.promo-sw-wrapper p[fired="1"] {
  font-weight: 600;
}

@keyframes toggleOn {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}
@keyframes toggleOff {
  0% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(0);
  }
}
