/* Views/www_webpack/checkout/checkout.css */
#mailBusy {
  display: none;
}
#mailBusy.active {
  display: flex;
}
#passwordRestore {
  display: none;
  gap: 8px;
  cursor: pointer;
}
#passwordRestore input {
  all: revert;
}
#passwordRestore.active {
  display: flex;
}
#deliveryClimb,
#deliveryAssembly {
  display: none;
}
#deliveryClimb.active,
#deliveryAssembly.active {
  display: block;
}
.pickup_additionally {
  display: flex;
  gap: 5px;
  align-items: center;
}
.pickup_additionally input {
  all: revert;
}
.cart_delivery__additionally_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px;
}
.cart_delivery__additionally_list label {
  display: flex;
  gap: 5px;
  align-items: center;
}
.cart_delivery__additionally_list input {
  all: revert;
}
.cart_delivery__additionally-alert {
  color: var(--color-red);
  font-size: 0.8em;
}
.cart_delivery__additionally-alert a {
  font-size: 1em;
}
[name=commentCheckout] {
  width: 100%;
  height: 150px;
  margin-top: 10px;
  font-size: 1em;
}
.checkout_steps__container {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.checkout_steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  margin: 0 auto;
}
.checkout_steps a {
  z-index: +1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 5px 1em;
  font-size: 1.1em;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 100px;
  transition: all 200ms;
}
.checkout_steps li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 200ms;
}
.checkout_steps li.disabled {
  cursor: not-allowed;
}
.checkout_steps li.disabled * {
  pointer-events: none;
}
.checkout_steps li::after {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  z-index: -1;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  transition: all 200ms;
  content: "";
}
.checkout_steps li.active::after {
  background: var(--color-red);
}
.checkout_steps li.active a {
  border: 2px solid var(--color-red);
}
.checkout_steps li:hover:not(.active, .disabled)::after {
  background: var(--color-green-alpha);
}
.checkout_steps li:hover:not(.active, .disabled) a {
  border: 2px solid var(--color-green-alpha);
}
#cart {
  display: flex;
  gap: clamp(20px, 5vw, 100px);
  align-items: flex-start;
  width: 90vw;
  max-width: 1600px;
  margin: 20px auto;
}
.cart_list {
  width: 100%;
}
.cart_list .product_min__header a {
  font-size: 1.1em;
}
.cart_list .product_min__data {
  font-size: 1.1em;
}
.cart_list .product_min__img_container {
  max-width: 150px;
  max-height: 150px;
  aspect-ratio: 1 / 1;
}
.cart_form__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 260px;
  max-width: 400px;
}
.cart_form__container.review {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart_form__form {
  display: grid;
  gap: 10px;
}
.cart_form__form [type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  color: var(--color-white);
  font-size: 1.3em;
  background-image: linear-gradient(109.6deg, #e64e41, #b93335 41%, #e64e41 120%);
  background-size: 200%;
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms;
}
.cart_form__form [type=submit]:hover {
  background-position: 100%;
}
.checkout_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  color: var(--color-white);
  font-size: 1.3em;
  background-image: linear-gradient(109.6deg, #e64e41, #b93335 41%, #e64e41 120%);
  background-size: 200%;
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms;
}
.checkout_button:hover {
  background-position: 100%;
}
.cart_form__header {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  font-size: 1.5em;
  line-height: 1;
}
.cart_form__header h2 {
  font-weight: normal;
}
.cart_form__total {
  position: relative;
  margin-left: auto;
}
.cart_form__total_benefit {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  color: var(--color-red);
  font-size: 0.7em;
  white-space: nowrap;
}
.cart_form__total_benefit.active {
  display: block;
}
#sumInShoppingCartId {
  margin-left: auto;
  font-weight: normal;
  font-size: 1.5em;
}
.cart_privacy {
  margin-top: 10px;
  font-size: 0.8rem;
}
.cart_privacy a {
  color: #3c4fd3;
  font-size: 0.8rem;
}
#checkPaymentForm {
  display: grid;
  gap: 20px;
  padding: 2em;
  border-radius: 1em;
  box-shadow:
    rgb(0 0 0 / 25%) 0 0.0625em 0.0625em,
    rgb(0 0 0 / 25%) 0 0.125em 0.5em,
    rgb(255 255 255 / 10%) 0 0 0 1px inset;
}
.cart_payment__item {
  display: flex;
  flex-direction: column;
}
.cart_payment__label {
  display: flex;
  align-items: flex-end;
  height: 40px;
  line-height: 1;
  cursor: pointer;
}
.cart_payment__input:checked + span {
  background: var(--color-green);
  border: none;
}
.cart_payment__input:checked + span::after {
  width: 50%;
  height: 50%;
  background: var(--color-white);
  border-radius: 50%;
  opacity: 1;
  content: "";
}
.cart_payment__input:not(:checked) + span {
  background: var(--color-white);
}
.cart_payment__input:not(:checked) + span::after {
  opacity: 0;
}
.cart_payment {
  width: 100%;
}
.custom_radio {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
}
.cart_payment__icon {
  align-self: flex-end;
  width: auto;
  width: 40px;
  height: 40px;
  margin: 0 0.5em;
}
.cart_payment__description {
  margin-top: 0.5em;
  font-size: 0.9em;
  opacity: 0.6;
}
#cartReview {
  display: grid;
  grid-template: auto 1fr / 60% 40%;
  grid-template-areas: "title title";
  width: 90vw;
  max-width: 1600px;
  margin: 20px auto;
}
.cart_review__title {
  grid-area: title;
  margin-bottom: 20px;
}
.cart_review__summ {
  margin-bottom: 20px;
}
.order_block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding: 20px;
  border: 2px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
}
.order_confirm {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: center;
  min-width: 380px;
  padding: 20px;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(14 174 87 / 20%) 0, rgb(12 116 117 / 10%) 90%);
  border-radius: 10px;
}
.order_confirm .icon {
  width: 60px;
  height: 60px;
}
.order_confirm p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--color-green);
  font-size: 1.1em;
  text-align: center;
}
.order_name {
  margin-right: auto;
  margin-bottom: 10px;
  padding: 4px 0.5em;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(14 174 87 / 20%) 0, rgb(12 116 117 / 10%) 90%);
  border: 1px solid var(--color-green-alpha);
  border-radius: 4px;
}
.order_summ {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-left: auto;
  line-height: 1;
}
.order_summ strong {
  font-size: 1.4em;
  line-height: 1;
}
.order_summ__min {
  margin-left: auto;
  font-size: 0.9em;
  line-height: 1;
}
.order_summ__min strong {
  font-size: 1em;
}
.order_confirm__cabinet_link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 261px;
  margin-top: 10px;
  padding: 0.5em;
  color: var(--color-green);
  font-size: 1em;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
  transition: all 200ms;
}
.order_confirm__cabinet_link:hover {
  transform: scale(1.02);
}
.order_confirm__cabinet_link .icon {
  width: 30px;
  height: 30px;
  fill: var(--color-green);
}
.order_details__container {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 340px;
}
.order_details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.order_delivery__comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.cart_user {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  line-height: 1;
}
.cart_user img {
  width: 60px;
  height: 60px;
  padding: 8px;
  object-fit: cover;
  border: 1px solid var(--color-green);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.payment_choice {
  margin-top: 10px;
  font-weight: bold;
}
.payment_points__text {
  margin-top: 20px;
}
.payment_points {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
.payment_points > input {
  all: revert;
  margin: 0;
}
#canUsePoints {
  display: none;
}
#canUsePoints.active {
  display: block;
}
#cartDelivery {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 50vw;
  border: 2px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 2px 4px 0 rgb(14 30 37 / 12%), 0 2px 16px 0 rgb(14 30 37 / 32%);
}
.form_toggle_text_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgb(14 174 87 / 20%) 0, rgb(12 116 117 / 10%) 90%);
  border-radius: 18px;
  box-shadow: 0 2px 0 0 rgb(14 30 37 / 32%);
  cursor: pointer;
  transition: all 200ms;
}
.form_toggle_text {
  position: relative;
  height: 45px;
  background: var(--color-grey);
  border-radius: 18px;
}
.form_toggle_text [type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.form_toggle_text [type=checkbox]::before,
.form_toggle_text [type=checkbox]::after {
  flex: 1;
  width: 100%;
  color: var(--color-green);
  font-weight: bold;
  text-align: center;
  transition: all 200ms;
}
.form_toggle_text [type=checkbox]::before {
  content: "Доставка и сборка";
}
.form_toggle_text [type=checkbox]::after {
  opacity: 0.5;
  content: "Самовывоз";
}
.form_toggle_text [type=checkbox]:checked::after {
  opacity: 1;
}
.form_toggle_text [type=checkbox]:checked::before {
  opacity: 0.5;
}
.form_toggle_text [type=checkbox]:checked ~ .form_toggle_text_slider {
  transform: translateX(100%);
}
.cart_delivery__address {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: end;
  border: none;
}
.cart_delivery__address label {
  white-space: nowrap;
}
.cart_delivery__address .icon {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
.cart_delivery__address .dropdown_body {
  right: auto;
  left: 0;
}
.cart_delivery__address .dropdown_item {
  display: flex;
  align-items: center;
}
.cart_delivery__address .dropdown_item.active {
  background: radial-gradient(circle farthest-corner at 10% 20%, rgb(14 174 87 / 20%) 0, rgb(12 116 117 / 10%) 90%);
}
.cart_delivery__address .address_label {
  flex: 3;
  width: 100%;
  min-width: 270px;
}
.cart_delivery__label {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 0.5em;
}
.cart_delivery__label input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cart_delivery__label .input_error {
  position: absolute;
  bottom: 100%;
  left: 0;
  white-space: nowrap;
}
#deliveryDropdownCountry {
  display: flex;
  align-items: center;
}
.cart_delivery__container_top {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}
.cart_delivery__container_top label {
  display: flex;
  gap: 4px;
  align-items: baseline;
  white-space: nowrap;
}
.cart_delivery__container_top label strong {
  font-size: 1.3em;
  line-height: 1;
}
.cart_delivery__container_top > :last-child {
  width: 100%;
  color: var(--color-red);
  font-size: 0.9em;
  white-space: nowrap;
}
.cart_delivery__container {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  gap: 20px;
  padding: 20px 40px 30px;
  transition: all 200ms;
}
.cart_delivery__container_bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cart_delivery__container_bottom label {
  flex: 1;
  width: 100%;
  min-width: 153px;
}
.cart_delivery__container_bottom .form_label__title {
  order: 3;
  font-size: 0.9em;
}
.cart_delivery__pickup {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  gap: 20px;
  padding: 20px 40px;
  transition: all 200ms;
}
.cart_delivery__city_choice {
  display: flex;
  align-items: center;
  height: 100%;
}
.cart_delivery__city_choice * {
  pointer-events: none;
}
.cart_delivery__pickup_address {
  padding: 10px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
}
.cart_delivery__pickup_address legend {
  padding: 0 0.5em;
}
.cart_delivery__wrapper {
  display: flex;
  overflow: hidden;
}
.cart_delivery__wrapper .cart_delivery__pickup {
  height: 0;
  transition: all 200ms;
}
.cart_delivery__wrapper .cart_delivery__container {
  height: auto;
  transition: all 200ms;
}
.cart_delivery__wrapper.active .cart_delivery__container {
  height: 0;
}
.cart_delivery__wrapper.active .cart_delivery__pickup {
  height: auto;
}
.cart_delivery__wrapper.active .cart_delivery__container,
.cart_delivery__wrapper.active .cart_delivery__pickup {
  transform: translateX(-100%);
}
.cart_delivery__pickup_address_item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cart_delivery__pickup_address_item input {
  all: revert;
  order: -1;
}
.cart_delivery__pickup_address_item ul {
  line-height: 1;
}
.cart_delivery__pickup_address_item ul ul {
  margin-top: 8px;
}
.cart_delivery__pickup_address_item li {
  line-height: 1;
}
@media screen and (max-width: 995px) {
  .cart_delivery {
    flex-direction: column;
  }
  .cart_delivery .cart_form__container {
    min-width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .cart_review {
    flex-direction: column;
  }
  .cart_review .cart_form__container {
    min-width: 100%;
  }
}
@media screen and (max-width: 1220px) {
  .cart__payment {
    flex-direction: column;
  }
  .cart__payment .cart_form__container {
    min-width: 100%;
  }
}
