

/* Start:/local/templates/imperialgarden/css/order.css?174714200728030*/
.order {
  padding: 32px 0 96px;
}

.order__back-to-cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 16px;
  color: var(--base-dark-gray);
  text-decoration: none;
}

.order__back-to-cart::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url('/local/templates/imperialgarden/css/../images/icons/angle-down-b.svg') 50% 50% no-repeat;
  background-size: 9px 5px;
  border-radius: 50%;
  border: 1px solid var(--gray-dark-1);
  transform: rotate(90deg);
}

.order__title {
  padding: 32px 0 48px;
}

.order__notify {
  position: relative;
  width: calc( ( 785 / 1320) * 100% );
  margin-bottom: 16px;
  padding: 16px 32px 16px 20px;
  background: var(--yellow-light-1);
  border: 1px solid var(--yellow-light-2);
  border-radius: 16px;
}

.order__notify-close {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 14px;
  right: 14px;
  background: url('/local/templates/imperialgarden/css/../images/icons/cross-y.svg') 50% 50% no-repeat;
  background-size: 11px 11px;
  cursor: pointer;
}

.order__notify-text {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
}

.order__notify-text::before {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
  background: url('/local/templates/imperialgarden/css/../images/icons/icon-important.png') 50% 50% no-repeat;
  border-radius: 50%;
}

.order__wrap {
  position: relative;
  display: flex;
  gap: 45px;
  align-items: flex-start;
}

.order__main {
  width: calc(70% - 45px);
}

.order__delivery-types {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.order__delivery-types .radio-inline label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
  cursor: pointer;
}

.order__delivery-types .radio-inline input[type="radio"] {
  position: relative;
  width: 22px;
  height: 22px;
  appearance: none;
  cursor: pointer;
}

.order__delivery-types .radio-inline input[type="radio"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base-white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--gray-light-7);
  transition: box-shadow .3s;
  cursor: pointer;
}

.order__delivery-types .radio-inline input[type="radio"]:checked::after {
  box-shadow: inset 0 0 0 6px var(--green-light-1);
}

/*  */
/* City field */
.order__recepient-item .bx-soa-custom-label {
  display: none;
}

.order__delivery-types {
  margin-bottom: 8px;
}

.order__delivery-types-container {
  display: flex;
  gap: 24px;
}

@media(max-width: 1024px) {
  .order__delivery-types-container {
    flex-direction: column;
  }
}

.order__delivery-types-container .bx_soa_location .bx-sls .form-control {
  background-color: var(--base-white);
  background-color: transparent;
  padding-top: 18px;
  padding-bottom: 8px;
  padding-left: 0;
  border-top: none;
  border-right: none;
  border-left: none;
}

.order__delivery-types-container .bx_soa_location .bx-sls .form-control .dropdown-icon {
  display: none;
}

.order__delivery-types-container .bx_soa_location .bx-sls .form-control input[type="text"] {
  font-family: var(--font-tt-norms-pro);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
}

.order__delivery-types-container .bx_soa_location .bx-sls .form-control .dropdown-fade2white {
  display: none;
}

.order__delivery-types-container .bx_soa_location .bx-sls .form-control .bx-ui-sls-clear {
  top: auto;
  right: 0;
  bottom: 0;
}
/* End City field */
/*  */

.order__delivery-type {
  width: calc(50% - 8px);
}

.order__delivery-type input[type="radio"] {
  display: none;
}

.order__delivery-type label {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  grid-template-areas: "icon text after";
  gap: 16px;
  padding: 16px;
  height: 100%;
  background: var(--base-white);
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--base-white);
  cursor: pointer;
  transition: box-shadow .3s;
}

.order__delivery-type label::after {
  content: "";
  display: block;
  /* position: absolute; */
  grid-area: after;
  /* top: 17px;
  right: 17px; */
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--gray-light-7);
  transition: box-shadow .3s;
}

.order__delivery-type input:checked ~ label {
  box-shadow: inset 0 0 0 1px var(--green-light-1);
}

.order__delivery-type input:checked ~ label::after {
  box-shadow: inset 0 0 0 6px var(--green-light-1);
}

.order__delivery-type-text {
  grid-area: text;
}

.order__delivery-type-text p {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.order__delivery-type label span {
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-dark-3);
}

.order__delivery-type label img {
  grid-area: icon;
  display: block;
  width: 40px;
  height: 40px;
}

.order__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.order__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.order__block-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
}

.order__block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.order__block-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 16px;
  color: var(--base-white);
  font-weight: 500;
  border-radius: 50%;
  background-color: var(--base-red);
}

.order__contacts {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.order__contacts .abyk-delivery-inputs {
  padding-top: 16px;
}

.order__contacts .ig-form__item:not(:last-child) {
  margin-bottom: 0;
}

.order__contacts-cust {
display: flex;
align-items: stretch;
width: 100%;
}

.order__contacts-cust .abyk-delivery-inputs {
padding-top: 16px;
}

.order__contacts-cust .ig-form__item:not(:last-child) {
margin-bottom: 0;
}

.order__contacts-cust #deliveryAbykButtonCalculateByAddress {
  display: none;
}

.order__contacts-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 24px 45px 24px 16px;
}

.order__contacts-address {
  position: relative;
  padding-left: 36px;
}

.order__contacts-address::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url('/local/templates/imperialgarden/css/../images/icons/map-marker.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.order__contacts-address--man::before {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/profile-icon.svg');
}

.order__contacts-address--org::before {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/case-icon.svg');
}

.order__contacts-address p {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.order__contacts-tel {
  position: relative;
  padding-left: 36px;
}

.order__contacts-tel::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url('/local/templates/imperialgarden/css/../images/icons/icon-phone-tube.svg') 50% 50% no-repeat;
}

.order__contacts-map {
  min-width: 62%;
  overflow: hidden;
}

.order__contacts-map .map {
  padding-top: 55%;
  border-radius: 16px;
}

.order__contacts-map .map .map-wrap {
  width: 40px;
  height: 92px;
  gap: 12px;
}

  .order__contacts-map .map .map-zoom {
  left: 16px;
}

.order__contacts-map .map .map-btn {
  width: 40px;
  height: 40px;
}

.order__contacts-map .map .map-btn::after {
  width: 12px;
}

.order__contacts-map .map .map-btn--plus::before {
  height: 12px;
}

.order__address {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.order__address-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.order__address {
    padding: 10px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order__address--selected {
    background-color: #dfdfdf; /* или любой другой фон */
    border-radius: 6px;
}

.order__address--selected .contacts__item-footnote{
    color: #434343;
}

.order__default-label {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 18px;
  background: var(--gray-light-3);
  border-radius: 8px;
  cursor: pointer;
}

.order__default-label--mob {
  display: none;
}

.order__edit-btn {
  width: 24px;
  height: 24px;
  background-color: currentColor;
	mask-image: url('/local/templates/imperialgarden/css/../images/icons/icon-pencil.svg');
	mask-repeat: no-repeat;
	mask-position: 50% 50%;
  cursor: pointer;
  transition: color .3s;
}

.order__edit-btn:hover {
  color: var(--bright-red);
}

.order__switcher {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.order__switcher-item input[type=checkbox] {
  display: none;
}

.order__switcher-item label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 52px;
  height: 32px;
  padding: 4px;
  border-radius: 400px;
  background: #ccc;
  cursor: pointer;
  transition: all .3s;
}

.order__switcher-item label::before {
  position: relative;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  left: 0;
  right: auto;
  border-radius: 50%;
  background: var(--base-white);
  transition: all .3s;
}

.order__switcher-item input:checked ~ label {
  justify-content: flex-end;
  background: var(--green-light);
}

.order__switcher-text {
  font-size: 16px;
  line-height: 20px;
}

.order__white-block {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: var(--base-white);
}

.order__recipient-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.order__recipient-wrap:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light-1);
}

.order__slider-slide.slick-slide {
  position: relative;
  height: 140px;
  /* max-width: 140px; */
}

.order__slider-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order__slider-slide:not(:last-child) {
  margin-right: 10px;
}

.order__slider-slide .order__slider-slide-placeholder {
  height: auto;
  width: 100%;
}

.order__slider .order__service {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--gray-light-5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.order__slider .order__service::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  transform: translateX(calc(-50% - 6px)) translateY(-50%);
  background-color: var(--base-white);
  background-image: url('/local/templates/imperialgarden/css/../images/icons/plus.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;
  border-radius: 50%;
}

@media(max-width: 1024px) {
  .order__slider .order__service {
    background-size: 38px 59px;
  }

  .order__slider .order__service::before {
    width: 32px;
    height: 32px;
    transform: translateX(calc(-50% - 2px)) translateY(-50%);
    background-size: 14px 14px;
  }
}

.order__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.order__items:not(:first-child) {
  padding-top: 0;
}

.order__items-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}

.order__items-title {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 32px;
  font-family: var(--font-tt-ramillas);
  font-weight: 500;
  text-transform: uppercase;
}

.order__items-footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light-1);
}

.order__items-number {
  font-size: 16px;
  line-height: 20px;
}

.order__items-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order__items-price {
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font-tt-ramillas);
  font-weight: 500;
  text-transform: uppercase;
}

.order__items-old-price {
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-dark-3);
  text-decoration: line-through;
}

.order__items-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order__items-button {
  width: fit-content;
  padding: 12px 19px 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--base-white);
  background: var(--green-light);
  border: 1px solid var(--green-light);
  border-radius: 400px;
  transition: all .3s;
}

.order__items-button:hover {
  color: var(--base-dark-gray);
  border-color: var(--base-dark-gray);
  background: transparent
}

.order__items-action {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  background-image: url('/local/templates/imperialgarden/css/../images/icons/icons-shoping-bag.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: background-image .3s;
}

.order__items-action:hover {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/icons-shoping-bag-red.svg');
}

.order__items-action-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  padding: 10px;
  font-size: 14px;
  line-height: 16px;
  color: var(--base-white);
  white-space: nowrap;
  background: var(--base-dark-gray);
  border-radius: 12px;
  transform: translateX(-90px);
  opacity: 0;
  z-index: -10;
  transition: opacity .3s;
}

@media(hover: hover) {
  .order__items-action:hover .order__items-action-tooltip {
    z-index: 1;
    opacity: 1;
  }
}


.order__slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 140px;
  padding-right: 56px;
  overflow: hidden;
}

.order__slider .slick-track {
	margin-left: 0;
}

@media(max-width: 768px) {
  .order__slider .slick-list {
    height: 100%;
    padding-right: 16px;
  }

  .order__slider .slick-track {
    height: 100%;
    padding: 0 16px;
    margin-left: 0;
  }
}

.order__slider-container {
  height: 140px;
}

@media(max-width: 768px) {
  .order__slider-container {
    height: 100%;
  }
}

.order__slider-number {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  background: var(--base-white);
  border-radius: 33px;
}

.order__slider-button--next {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  border-radius: 400px;
  border: 1px dashed var(--gray-dark-1);
  background: url('/local/templates/imperialgarden/css/../images/icons/arrow-back.svg') 50% 50% no-repeat;
  cursor: pointer;
  transform: rotate(180deg);
  transition: opacity .3s;
}

.order__slider-button--next.slick-disabled {
  opacity: 0.4;
  position: none;
}

.order__slider-button--prev {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 56px;
  background: var(--gray-light);
  transition: left .3s;
  z-index: 1;
}

.order__slider-button--prev.slick-disabled {
  left: -56px;
}

.order__slider-button--prev::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  height: 138px;
  width: 40px;
  border-radius: 400px;
  border: 1px dashed var(--gray-dark-1);
  background: url('/local/templates/imperialgarden/css/../images/icons/arrow-back.svg') 50% 50% no-repeat;
  cursor: pointer;
}

.order__recepient-form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.order__recepient-item {
  width: calc(50% - 12px);
}

.abyk-delivery-container .order__recepient-item {
  width: 100%
}

.order__recepient-form .order__recepient-item:not(:last-child) {
  margin-bottom: 0;
}

.order__recepient-item textarea {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-family: var(--font-tt-norms-pro);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
  background: var(--base-white);
  border: 1px solid var(--gray-light-6);
  border-radius: 16px;
  padding: 18px 16px 16px;
}

.order__recepient-form .order__recepient-item.ig-form__item textarea ~ label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-tt-norms-pro);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
  pointer-events: none;
  user-select: none;
  transition: color .3s, font-size .3s, top .3s;
}

/* .order__recepient-form .order__recepient-item.ig-form__item textarea:active ~ label, */
.order__recepient-form .order__recepient-item.ig-form__item textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 14px;
  color: var(--gray-dark-1);
}

.order__recepient-item span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-dark-1);
}

.order__pay-types {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.order__pay-type input[type="radio"],
.order__pay-type input[type="checkbox"],
.order__delivery-type-checkbox {
  display: none;
}

.order__pay-type label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  height: 100%;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.7px;
  background: var(--base-white);
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--base-white);
  cursor: pointer;
  transition: box-shadow .3s;
}

.order__pay-type label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--gray-light-7);
  transition: box-shadow .3s;
}

.order__pay-type input:checked ~ label {
  box-shadow: inset 0 0 0 1px var(--green-light-1);
}

.order__pay-type input:checked ~ label::before {
  box-shadow: inset 0 0 0 6px var(--green-light-1);
}

.order__aside-footnote {
  margin-top: 16px;
  font-size: 12px;
  line-height: 16px;
  color: var(--gray-light-7);
}

.order__aside-footnote .order__aside-footnote-agreement {
  display: none;
}

.order__aside-footnote a {
  color: var(--gray-dark-3);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: all .3s;
}

.order__aside-footnote a:hover {
  text-decoration: underline;
}

.order__timing {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.order__timing:last-child {
  padding-bottom: 8px;
}

.order__timing-title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.order__timing-items {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 32px;
}

.order__timing-item {
  min-height: 32px;
}

.order__timing-item input[type="radio"] {
  display: none;
}

.order__timing-item label {
  display: block;
  padding: 7px 14px;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--base-dark-gray);
  font-weight: 500;
  border: 1px solid var(--gray-light-1);
  border-radius: 400px;
  cursor: pointer;
  user-select: none;
  transition: all .3s;
}

.order__timing-item input:checked ~ label {
  color: var(--base-white);
  background-color: var(--gray-dark-8);
  border-color: var(--gray-dark-8);
}


/*  */
/* Order checkout */
.order-checkout {
  padding: 32px 0 96px;
}

@media(max-width: 1024px) {
  .order-checkout {
    padding: 12px 0 48px;
  }
}

.order-checkout__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 660px;
  background-color: var(--base-white);
  margin: 0 auto;
  padding: 20px;
  border-radius: 16px;
}

.order-checkout__image-container {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  background-image: url('/local/templates/imperialgarden/css/../images/content/order/checkout.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media(max-width: 1024px) {
  .order-checkout__image-container {
    width: 140px;
    height: 140px;
  }
}

.order-checkout .sale_order_full_table {
  display: block;
}

.order-checkout__heading {
  font-family: var(--font-tt-norms-pro);
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.03em;
  text-align: center;
}

@media(max-width: 1024px) {
  .order-checkout__heading {
    font-size: 22px;
    line-height: 26px;
  }
}

.order-checkout__data-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.order-checkout__data {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-wrap: pretty;
}

@media(max-width: 1024px) {
  .order-checkout__data {
    font-size: 14px;
    line-height: 18px;
  }
}

.order-checkout__data a {
  font-weight: 600;
  text-align: center;
  text-wrap: pretty;
  text-transform: lowercase;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
  color: var(--base-black);
}

.order-checkout__data a:hover {
  color: var(--gray-dark-1);
}

.order-checkout__payment-wrapper {
  order: -1;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-light-1);
}

@media(max-width: 1024px) {
  .order-checkout__payment-wrapper {
    padding-bottom: 26px;
  }
}

.order-checkout__payment-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

@media(max-width: 1024px) {
  .order-checkout__payment-grid {
    display: flex;
    flex-direction: column;

  }
}

.order-checkout__payment-heading-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

@media(max-width: 1024px) {
  .order-checkout__payment-heading-wrapper {
    gap: 12px;
  }
}

.order-checkout__payment-heading {
  font-family: var(--font-tt-norms-pro);
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.03em;
  text-align: center;
}

@media(max-width: 1024px) {
  .order-checkout__payment-heading {
    font-size: 22px;
    line-height: 26px;
  }
}

.order-checkout__payment-provider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.order-checkout__provider-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.order-checkout__payment-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.order-checkout__payment-info p,
.order-checkout__payment-info div {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-wrap: pretty;
}

.order-checkout__payment-info p:not(:last-child),
.order-checkout__payment-info div:not(:last-child) {
  margin-bottom: 16px;
}

@media(max-width: 1024px) {
  .order-checkout__payment-info p,
  .order-checkout__payment-info div {
    font-size: 14px;
    line-height: 18px;
  }
}

.order-checkout__payment-info strong {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.order-checkout__payment-info input[type="submit"],
.order-checkout__payment-info .btn {
  display: block;
  width: 100%;
  max-width: 400px;
  font-family: var(--font-tt-norms-pro);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--base-white);
  background-color: var(--base-red);
  border: none;
  border-radius: 400px;
  padding: 18px;
  margin: 0 auto 10px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.order-checkout__payment-info .btn {
  width: fit-content;
}

.order-checkout__payment-info input[type="submit"]:hover,
.order-checkout__payment-info .btn:hover {
  background-color: var(--dark-red);
}

.order-checkout__payment-info input[type="submit"]:active,
.order-checkout__payment-info .btn:active {
  background-color: var(--base-red);
  opacity: 0.24;
}

.order-checkout__payment-info input[type="submit"] ~ p,
.order-checkout__payment-info .btn ~ p {
  text-align: center;
  color: var(--gray-dark-6);
  margin-bottom: 16px;
}

@media(max-width: 1024px) {
  .order-checkout__payment-info input[type="submit"] ~ p,
  .order-checkout__payment-info .btn ~ p {
    font-size: 12px;
    line-height: 16px;
  }
}

.order-checkout__payment-info .alert-info {
  font-weight: 400;
  text-align: center;
  text-wrap: pretty;
  padding: 0;
  margin: 0;
}

.order-checkout__payment-info .alert-info b {
  font-weight: 400;
}
/* End Order checkout */
/*  */

@media(max-width: 1024px) {
  .order__wrap {
    flex-direction: column;
  }

  .order__main {
    width: 100%;
  }

  .order__notify {
    width: 100%;
    margin-bottom: 0;
    padding: 16px;
  }

  .order__notify-text {
    gap: 12px;
    padding-right: 24px;
  }

  .order__notify-text::before {
    width: 20px;
    height: 20px;
  }

  .order__notify-close {
    width: 16px;
    height: 16px;
    background-size: 11px 11px;
  }

  .order__title {
    padding: 32px 0 24px;
  }

  .order__contacts {
    flex-direction: column;
  }

  .order__contacts-map {
    width: 100%;
  }

  .order__contacts-map .map {
    padding-top: 66%;
  }

  .order__delivery-types {
    flex-direction: column;
    gap: 8px;
  }

  .order__delivery-type {
    width: 100%;
  }

  .order__delivery-type label {
    gap: 12px;
  }

  .order__delivery-type label img{
    width: 32px;
    height: 32px;
  }

  .order__delivery-type-text p {
    font-size: 14px;
    line-height: 18px;
  }

  .order__delivery-type-text span {
    font-size: 122px;
    line-height: 18px;
  }

  .order__contacts-info {
    padding: 24px 16px;
  }

  .order__pay-types {
    flex-wrap: wrap;
  }

}

@media(max-width: 768px) {
  .order__default-label {
    display: none;
  }

  .order__default-label--mob {
    display: block;
    margin-bottom: 4px;
    padding: 0;
    font-size: 12px;
    line-height: 18px;
    background: transparent;
  }

  .order__white-block {
    padding: 12px 16px;
  }

  .order__contacts-address p {
    font-size: 14px;
    line-height: 18px;
  }

  .order__recepient-form {
    flex-direction: column;
    gap: 20px;
  }

  .order__recepient-item {
    width: 100%;
  }

  .order__items-title {
    margin-bottom: 4px;
    font-size: 22px;
    line-height: 28px;
  }

  .order__items {
    gap: 20px;
  }

  .order__slider {
    width: 100vw;
    max-width: none;
    height: 76px;
    padding-right: 0;
    margin-left: -16px;
    overflow: auto;
    overflow-x: visible;
  }

  .order__slider-button,
  .order__slider-button--prev.slick-disabled {
    display: none !important;
  }

  .order__slider-slide.slick-slide {
    width: 78px;
    height: 100%;
  }

  .order__slider-slide:not(:last-child) {
    margin-right: 4px;
  }

  .order__slider-slide .order__slider-slide-placeholder {
    max-height: 76px;
  }

  .order__items-header {
    gap: 8px;
  }

  .order__items-button:not(.order-popup__button) span{
    display: none;
  }

  .order__items-actions {
    gap: 8px;
  }

  .order__items-button:not(.order-popup__button) {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background-image: url('/local/templates/imperialgarden/css/../images/icons/icon-pencil-w.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 15px 15px;
  }

  .order__items-action {
    width: 32px;
    height: 32px;
    background-size: 18px 16px;
  }

  .order__items-action-tooltip {
    display: none;
  }

  .order__timing-items {
    margin-right: -16px;
    width: auto;
    height: auto;
    overflow-x: scroll;
  }

  .order__timing-item label {
    white-space: nowrap;
  }

  .order__items-footer {
    padding-bottom: 20px;
  }

  .order__pay-type {
    width: 100%;
  }
}

@media(max-width: 480px) {
  .order__block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .order__block-title {
    gap: 10px;
  }

  .order__items-number {
    font-size: 12px;
    line-height: 18px;
  }

  .order__items-price {
    font-size: 16px;
    line-height: 20px;
  }

  .order__items-old-price {
    font-size: 12px;
    line-height: 18px;
  }
}
/* End */


/* Start:/local/templates/imperialgarden/css/basket.css?174367264924451*/
.basket {}

.basket__title {
  padding-top: 32px;
}

.basket__not-authorized {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 67.5%;
  margin-bottom: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #D7D7D7;
}

.basket__not-authorized-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.basket__not-authorized-text h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.basket__not-authorized-text p {
  font-size: 14px;
  line-height: 20px;
}

.basket__go-back {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--base-dark-gray);
  text-decoration: none;
}

.basket__go-back::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url('/local/templates/imperialgarden/css/../images/icons/angle-down-b.svg') 50% 50% no-repeat;
  background-size: 9px 5px;
  border: 1px solid var(--gray-dark-1);
  border-radius: 50%;
  transform: rotate(90deg);
}


.basket__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-light-1);
}

.basket__header .contacts__line-link:nth-child(3) {
  margin-left: 0;
}

.basket__checkbox input {
  display: none;
}

.basket__checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
  user-select: none;
  cursor: pointer;
}

.basket__checkbox label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-radius: 6px;
  border: 1px solid var(--gray-light-7);
  transition: background-image .3s;
}

.basket__checkbox input:checked ~ label::before {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/check.svg');
}

.basket__clear {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray-dark-3);
  user-select: none;
  transition: color .3s;
}

.basket__clear[disabled] {
  pointer-events: none;
}

.basket__clear::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  color: var(--gray-dark-1);
  background-color: currentColor;
  mask-image: url('/local/templates/imperialgarden/css/../images/icons/trash-can.svg');
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 24px 24px;
  transition: color .3s;
}

.basket__clear:hover,
.basket__clear:hover::before {
  color: var(--bright-red);
}

.basket__items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 24px;
}

.basket__item {
  display: grid;
  gap: 10px;
  /* grid-template-columns: 24px 140px 1fr; */
  grid-template-columns: 140px 1fr;
  grid-template-rows: auto 56px;
  grid-template-areas:
                'img body'
                'sn service';
  padding-bottom: 24px;
}

.basket__item:not(:last-child) {
  border-bottom: 1px solid var(--gray-light-1);
}

.basket__item-checkbox {
  grid-area: chb;
}

.basket__item-img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  grid-area: img;
}

.basket__item-body {
  display: grid;
  grid-template-columns: 51% 220px auto;
  grid-template-areas: 'l m r';
  padding-left: 14px;
  grid-area: body;
}

.basket__item-art {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 14px;
  color: var(--base-dark-gray);
}

.basket__item-name {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--base-dark-gray);
}

.basket__item-size {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-dark-3);
}

.basket__item-size span:not(:last-child) {
  display: flex;
  align-items: center;
  gap: 6px;
}

.basket__item-size span:not(:last-child)::after {
  content: "•";
  display: block;
  width: 6px;
  height: 20px;
}

.basket__item-express {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bright-red);
}

.basket__item-express::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  color: var(--bright-red);
  background-color: currentColor;
  mask-image: url('/local/templates/imperialgarden/css/../images/icons/lightning.svg');
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 16px 16px;
}

.basket__item-express--na,
.basket__item-express--na::before {
  color: var(--gray-dark-1);
}

.basket__item-express--na.mobile {
  display: none;
}

.basket__item-info {
  margin-left: 2px;
}

.basket__item-left {
  grid-area: l;
}

.basket__item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  grid-area: r;
}

.basket__item-actions {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.basket__item-remove {
  display: block;
  width: 20px;
  height: 20px;
  color: var(--base-dark-gray);
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-image: url('/local/templates/imperialgarden/css/../images/icons/cross-b.svg');
  mask-position: 50% 50%;
  mask-size: 14px 14px;
  transition: color .3s;
}

.basket__item-favorite {
  display: none !important;
  width: 20px;
  height: 20px;
  background: url('/local/templates/imperialgarden/css/../images/icons/heart.svg') 50% 50% no-repeat;
  background-size: 17px 15px;
  transition: background-image .3s;
}

.basket__item-favorite:hover,
.basket__item-favorite.active {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/heart-full.svg');
}


.basket__item-remove:hover {
  color: var(--bright-red);
}

.basket__item-middle {
  grid-area: m;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.basket__item-services {
  grid-area: service;
  display: flex;
  align-items: center;
  gap: 46px;
  padding-left: 14px;
}

.basket__item-services-title {
  display: flex;
  align-items: center;
  grid-area: sn;
}

.basket__services {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.basket__services span {
  flex-shrink: 0;
}

.basket__service {
  position: relative;
  width: 365px;
  height: 56px;
}

.basket__service:first-child {
  width: 280px;
}

.basket__service-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  border-radius: 16px;
  background: var(--base-white);
  overflow: hidden;
  z-index: 10;
  transition: height .3s;
}

.basket__service.active .basket__service-wrap{
  height: auto;
  transition: height .3s;
}

.basket__service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.4px;
  color: var(--base-dark-gray);
}

.basket__service-item input {
  display: none;
}

.basket__service-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.basket__service-item label::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url('/local/templates/imperialgarden/css/../images/icons/check-w.svg') 50% 50% no-repeat;
  background-color: var(--base-white);
  background-size: 13px 9px;
  border-radius: 50%;
  border: 1px solid var(--gray-light-7);
  transition: background-color .3s, border-color .3s;
}

.basket__service-item input:checked ~ label::before {
  background-color: var(--green-light-1);
  border-color: var(--green-light-1);
}

.basket__service-btn {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.basket__service-btn::after,
.basket__service-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  background: #000;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.basket__service-btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.basket__service.active .basket__service-btn::after {
  opacity: 0;
}

.basket__service-info {
  display: none;
  padding: 0 17px 17px;
  background: var(--base-white);
}

.basket__service-info p {
  margin-bottom: 12px;
  padding-top: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-top: 1px solid var(--gray-light-1);
}

.basket__service-info ul {
  margin-bottom: 12px;
  list-style: none;
}

.basket__service-info li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 20px;
}

.basket__service-info li::before {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--base-red);
}

.basket__service-info li:not(:last-child) {
  margin-bottom: 12px;
}

.basket__service-info span {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray-dark-3);
}

.basket__not-avaliable {
  padding-top: 64px;
}

.basket__not-avaliable-header {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light-1);
}

.basket__not-avaliable-title {
  font-size: 28px;
  line-height: 32px;
  text-transform: uppercase;
  font-family: var(--font-tt-ramillas);
  font-weight: 400;
}

.basket__not-avaliable .basket__item-right {
  justify-content: space-between;
}

.basket__not-avaliable .basket__item-body {
  grid-template-columns: 51% auto;
  grid-template-areas: 'l r';
}

.basket__not-avaliable .basket__item {
  grid-template-rows: auto;
}

.basket__item-bell {
  display: block;
  width: 40px;
  height: 40px;
  background: url('/local/templates/imperialgarden/css/../images/icons/bell.svg') 50% 50% no-repeat;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.basket__item-button {
  padding: 12px 20px 10px;
  font-size: 14px;
  line-height: 18px;
  color: var(--base-white);
  text-transform: uppercase;
  background-color: var(--green-light);
  border: 1px solid var(--green-light);
  border-radius: 400px;
  transition: color .3s, border-color .3s, background-color .3s;
}

.basket__item-button:hover {
  color: var(--base-dark-gray);
  background-color: transparent;
  border: 1px solid var(--base-dark-gray);
}

.basket__item-na {
  font-size: 14px;
  line-height: 16px;
  color: var(--bright-red);
}

.basket__form {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
}

.basket__main {
  width: 100%;
  max-width: 67.5%;
}

.basket__aside {
  position: sticky;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 30%;
  top: 130px;
  bottom: 64px;
  min-width: 330px;
}

.basket__aside-confirm {
  width: 100%;
  margin-bottom: 8px;
  padding: 18px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--base-white);
  background: var(--green-light);
  border: 1px solid var(--green-light);
  border-radius: 400px;
  transition: all .3s;
}

.basket__aside-confirm.disabled,
.basket__aside-confirm:disabled {
  pointer-events: none;
  background: var(--gray-light-5);
  border-color: var(--gray-light-5);
}

.basket__aside-confirm:hover {
  color: var(--base-dark-gray);
  border-color: var(--base-dark-gray);
  background: transparent
}

.basket__aside-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  background: var(--gray-light-5);
}

.basket__aside-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.basket__aside-line-l {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  color: var(--base-dark-gray);
}

.basket__aside-line-l span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-dark-3);
}

.basket__aside-line-l span:last-child::before {
  content: "•";
  display: block;
  width: 6px;
  height: 20px;
  color: var(--gray-dark-3);
}

.basket__aside-line-r {
  font-size: 14px;
  line-height: 16px;
  color: var(--gray-dark-3);
}


.basket__aside-line-l.warnings-text,
.basket__aside-line-r.warnings-text {
  color: var(--bright-red);
}

.basket__aside-line-r span {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.basket__aside-line--head .basket__aside-line-r {
  color: var(--base-dark-gray);
  font-weight: 500;
}

.basket__aside-line--dropdown {
  flex-wrap: wrap;
}

.basket__aside-subline {
  display: none;
  width: 100%;
  padding-top: 8px;
  font-size: 14px;
  line-height: 16px;
}

.basket__aside-line--total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #ccc;
}

.basket__aside-line--total .basket__aside-line-r,
.basket__aside-line--total .basket__aside-line-l {
  font-size: 18px;
  line-height: 24px;
  color: var(--base-dark-gray);
  font-weight: 500;
  text-transform: uppercase;
}

.basket__aside-line-l--arrow {
  cursor: pointer;
}

.basket__aside-line-l--arrow::after {
  content: "";
  display: block;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  background: url('/local/templates/imperialgarden/css/../images/icons/angle-down-b.svg') 50% 50% no-repeat;
  background-size: 9px 5px;
  transition: transform .3s;
}

.basket__aside-line-l--arrow.open::after {
  transform: rotate(180deg);
}

.basket__aside-line--promo {
  font-size: 14px;
  line-height: 20px;
  color: var(--base-dark-gray);
  font-weight: 500;
  text-transform: uppercase;
}

.basket__aside-plus {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.basket__aside-plus::after,
.basket__aside-plus::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--base-dark-gray);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.basket__aside-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.basket__aside-plus.open::after {
  opacity: 0;
}

.basket__aside-promo {
  display: none;
}

.basket__aside-promo .bx-soa-coupon {
  border: none;
  padding: 0;
  margin: 0;
}

.basket__aside-promo .bx-soa-coupon-input {
  width: 100%;
}

.basket__aside-promo input {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 16px;
  color: var(--base-dark-gray);
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--base-dark-gray);
  border-radius: 400px;
}

.basket__aside-promo input:focus {
  outline: none;
}

.basket__aside-error {
  display: none;
  padding: 6px 20px 0;
  font-size: 12px;
  line-height: 14px;
  color: var(--bright-red);
}

.basket__aside-promo.error .basket__aside-error {
  display: block;
}

.basket__aside-promo.error input {
  border-color: var(--bright-red);
}

.basket__aside-confirm-promo,
.basket__not-authorized-link {
  width: 100%;
  padding: 9px 20px;
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--base-white);
  background: var(--base-red);
  border-radius: 400px;
  border: 1px solid var(--base-red);
  text-decoration: none;
  text-align: center;
  transition: all .3s;
}

.basket__not-authorized-link {
  width: fit-content;
  margin-top: 0;
}

.basket__aside-confirm-promo:hover,
.basket__not-authorized-link:hover {
  color: var(--base-red);
  background: var(--base-white);
  border-color: var(--base-red);
}

.basket__aside-confirm-promo.active {
  opacity: .24;
  pointer-events: none;
}

.basket__aside-confirm-promo span:nth-child(2) {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.basket__aside-confirm-promo span:nth-child(2)::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url('/local/templates/imperialgarden/css/../images/icons/check-w.svg') 50% 50% no-repeat;
  background-size: 13px 10px

}

.basket__aside-confirm-promo.active span:first-child {
  display: none;
}

.basket__aside-confirm-promo.active span:nth-child(2) {
  display: flex;
}

.basket__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 465px;
  margin: 0 auto;
  padding: 64px 0;
}

.basket__empty-img {
  display: block;
  margin-bottom: 32px;
}

.basket__empty-title {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.basket__empty-subtitle {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray-dark-3);
  text-align: center;
}

.basket__empty-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.basket__empty-button {
  padding: 18px 0;
  width: 153px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--base-white);
  background: var(--base-red);
  border-radius: 400px;
  border: 1px solid var(--base-red);
  text-decoration: none;
  text-align: center;
  transition: all .3s;
}

.basket__empty-button--bold {
  color: var(--base-red);
  background: var(--base-white);
  border-color: var(--base-red);
}

.basket__empty-button:hover {
  color: var(--base-red);
  background: var(--base-white);
}

.basket__empty-button--bold:hover {
  color: var(--base-white);
  background: var(--base-red);
}

.basket__aside-footnote {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding-top: 16px;
  font-size: 12px;
  line-height: 18px;
  color: var(--gray-dark-1);
}

.basket__aside-footnote::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url('/local/templates/imperialgarden/css/../images/icons/info-icon-i.svg') 50% 50% no-repeat;
}

.basket__coupons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
}

.basket__coupons-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
}

.basket__coupons-item:first-child {
  margin-top: 12px;
}

.basket__coupons-item:last-child {
  margin-bottom: 12px;
}

.basket__coupons-item strong {
  text-transform: uppercase;
}

.basket__coupons-remove {
  width: 10px;
  height: 10px;
  cursor: pointer;
}

@media(max-width: 1440px) {
  .basket__aside {
    flex-shrink: 1;
    min-width: 300px;
  }

  .basket__form {
    gap: 32px;
  }
}

@media(max-width: 1350px) {
  .basket__aside {
    min-width: 275px;
  }

  .basket__services {
    flex-direction: column;
    align-items: flex-start;
  }

  .basket__item {
    /* grid-template-columns: 24px 100px 1fr; */
    grid-template-columns: 100px 1fr;
    grid-template-rows: repeat(2, auto);
  }

  .basket__item-img {
    height: 100px;
  }

  .basket__item-body {
    grid-template-columns: 50% 150px minmax(max-content, auto);
  }

  .basket__service:first-child {
    width: 365px;
  }

  .basket__service-item {
    justify-content: space-between;
  }

  .basket__service:first-child .basket__service-wrap {
    z-index: 12;
  }
}

@media(max-width: 1024px) {
  .basket__aside {
    position: static;
    width: 100%;
    padding: 24px 16px;
    background: var(--base-white);
    border-radius: 24px;
  }

  .basket__form {
    flex-direction: column;
    gap: 48px;
  }

  .basket__main {
    max-width: unset;
  }

  .basket__not-authorized {
    width: 100%;
  }

  .basket__aside-confirm {
    margin: 8px 0 0;
    order: 3;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
  }
}

@media(max-width: 768px) {
  .basket__checkbox label {
    font-size: 14px;
    line-height: 18px;
  }

  .basket__checkbox label::before {
    width: 18px;
    height: 18px;
    background-size: 11px 9px;
  }

  .basket__header {
    gap: 20px;
  }
  .basket__header .contacts__line-link--share {
    position: relative;
    padding-left: 20px;
  }

  .basket__clear {
    margin-left: auto;
  }

  .basket__clear::before {
    width: 20px;
    height: 20px;
    mask-size: 20px 20px;
  }

  .basket__clear span {
    display: none;
  }

  .basket__items {
    gap: 20px;
  }

  .basket__item {
    /* grid-template-columns: 18px 70px 1fr; */
    grid-template-columns: 70px 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
          /* 'chb img body' */
          'img body'
          'ex ex ex'
          'sn sn sn'
          'service service service';
    gap: 12px;
    padding-bottom: 20px;
  }

  .basket__item--noservice {
    grid-template-rows: unset;
    grid-template-areas:
          'chb img body';
  }

  .basket__item-img {
    height: 70px;
  }

  .basket__item-services {
    padding-left: 0;
  }

  .basket__item-body {
    position: relative;
    grid-template-areas:
            'l l'
            'r m';
    padding-left: 0;
    grid-template-columns: repeat(2, 50%);
  }

  .basket__item-actions {
    position: absolute;
    top: 0;
    right: 0;
  }

  .basket__item-right,
  .basket__item-right .basket__item-prices {
    align-items: flex-start;
  }

  .basket__item-middle {
    justify-content: flex-end;
  }

  .basket__item-middle .quantiter {
    background: var(--base-white);
  }

  .basket__item-art {
    display: none;
  }

  .basket__item-name {
    margin-bottom: 4px;
    padding-right: 74px;
    font-size: 12px;
    line-height: 16px;
  }

  .basket__item-express--na {
    display: none;
  }

  .basket__item-express--na.mobile {
    display: flex;
    margin-bottom: 6px;
    grid-area: ex;
  }

  .basket__item-size {
    margin-bottom: 8px;
    gap: 4px;
    font-size: 12px;
    line-height: 18px;
    flex-wrap: wrap;
  }

  .basket__item-size span:not(:last-child) {
    gap: 4px;
  }

  .basket__item-size span:not(:last-child)::after {
    height: 18px;
  }

  .basket__item-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .basket__item-express:not(.basket__item-express--na) {
    margin-bottom: 10px;
    order: -1;
  }

  .basket__service,
  .basket__service:first-child {
    width: 100%;
  }

  .basket__service-item {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .basket__service-item label::before {
    width: 18px;
    height: 18px;
    background-size: 11px 8px;
  }

  .basket__service-wrap {
    height: 48px;
  }

  .basket__service-btn {
    width: 16px;
    height: 16px;
  }

  .basket__service-btn::after, .basket__service-btn::before {
    width: 11px;
  }

  .basket__not-avaliable {
    padding-top: 20px;
  }

  .basket__not-avaliable-header {
    padding-bottom: 20px;
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .basket__not-avaliable-header .basket__clear {
    margin-left: 0;
  }

  .basket__not-avaliable-title {
    font-size: 22px;
    line-height: 28px;
  }

  .basket__not-avaliable .basket__item-body {
    gap: 8px;
    grid-template-columns: unset;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
            'l'
            'r';
  }

  .basket__not-avaliable .basket__item-actions:nth-child(2) {
    position: static;
  }

  .basket__item-bell {
    width: 32px;
    height: 32px;
    background-size: 16px 16px;
  }

  .basket__item-button {
    padding: 7px 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .basket__not-avaliable .basket__item {
    grid-template-rows: unset;
    grid-template-areas: "chb img body";
  }

  .basket__aside-block {
    padding: 20px 16px;
  }

  .basket__aside-line-l,
  .basket__aside-line-l span:last-child {
    gap: 8px;
  }

  .basket__aside-line--total .basket__aside-line-r,
  .basket__aside-line--total .basket__aside-line-l {
    font-size: 16px;
    line-height: 20px;
  }

  .basket__aside-footnote {
    display: flex;
    order: 4;
  }

  .basket__empty {
    padding: 48px 0;
  }

  .basket__empty-img {
    margin-bottom: 24px;
  }

  .basket__empty-title {
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 26px;
  }

  .basket__empty-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .basket__empty-actions {
    gap: 8px;
  }

  .basket__empty-button {
    width: 133px;
    padding: 11px 0;
    font-size: 14px;
    line-height: 16px;
  }

  .basket__not-authorized {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .basket__not-authorized-text {
    gap: 6px;
  }

  .basket__not-authorized-text h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .basket__not-authorized-text p {
    line-height: 18px;
  }
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/contacts.css?17326140061281*/
.contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 380px;
  width: 100%;
}

.contacts__title {
  font-size: 28px;
  line-height: 32px;
  font-family: var(--font-tt-ramillas);
  font-weight: 500;
}

.contacts__item-name {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 20px;
  color: #787878;
}

.contacts__item-name--b {
  color: var(--base-dark-gray);
}

.contacts__item-value {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--base-dark-gray);
}

.contacts__item-value:not(:last-child) {
  margin-bottom: 12px;
}

.contacts__item-value a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.contacts__item-value--underline a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contacts__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.contacts__item-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.contacts__item-icon:last-child {
  margin-left: -4px;
}

.contacts__item-footnote {
  margin-top: 6px;
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-dark-1);
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/map.css?17326140061335*/
.map {
  position: relative;
  width: 100%;
  padding-top: 44%;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
}

.map__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.map-zoom {
  position: fixed;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
}

.map-wrap {
  width: 56px;
  height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.map-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background-color: var(--base-white);
  border-radius: 50%;
  cursor: pointer;
}

.map-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

.map-btn--plus::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 17px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

@media(max-width: 768px) {
  .map {
    padding-top: 66.6%;
    border-radius: 24px;
  }

  .map-zoom {
    left: 16px;
  }

  .map-wrap {
    gap: 8px;
  }

  .map-btn {
    width: 40px;
    height: 40px;
  }

  .map-btn::after {
    width: 12px;
  }

  .map-btn--plus::before {
    height: 12px;
  }
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/form.css?17386468781331*/
.company__form {
	margin-bottom: 48px;
}

.ig-form__item {
	position: relative;
}

.ig-form__item:not(:last-child) {
	margin-bottom: 24px;
}

.ig-form__item input {
	width: 100%;
	padding: 18px 0 8px;
	font-size: 16px;
	line-height: 20px;
	border: none;
  background: transparent;
	border-bottom: 1px solid #DBDBDB;
}


.ig-form__item input:-webkit-autofill,
.ig-form__item input:-webkit-autofill:hover,
.ig-form__item input:-webkit-autofill:focus,
.ig-form__item input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--gray-light) inset !important;
}

.ig-form__item input:focus {
	outline: none;
}

.ig-form__item label {
	position: absolute;
	top: 18px;
	left: 0;
	font-size: 16px;
	line-height: 20px;
	color: #1E1E1E;
	pointer-events: none;
	user-select: none;
	transition: color .3s, font-size .3s, top .3s;
}

.ig-form__item input:not(:placeholder-shown) + label {
	top: 0;
	font-size: 12px;
	line-height: 14px;
	color: #919191;
}

.ig-form__submit {
	padding: 21px 32px 19px;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	border: none;
	border-radius: 400px;
	background: #782329;
	cursor: pointer;
	transition: opacity .3s;
}

.ig-form__submit:disabled {
	opacity: 0.24;
}

@media(max-width: 768px) {
  .company__form-item label {
		color: #B7B7B7;
	}
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/order-popup.css?17454816304630*/
.order-popup.hide {
    display: none;
}
body.modal-open {
    overflow: hidden;
}

.order-popup {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}


.order-popup::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-gray);
  backdrop-filter: blur(8px);
}

.order-popup__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 500px;
  padding: 48px 40px;
  border-radius: 24px;
  background: var(--base-white);
}

.order-popup__body--wide {
  width: 560px;
}

.order-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: var(--gray-dark-1);
  mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/cross-g.svg');
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  cursor: pointer;
  transition: background-color .3s;
}

.order-popup__close:hover {
  background-color: var(--bright-red);
}

.order-popup__delivery-types {
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}

.order-popup__delivery-types .order__delivery-type {
  width: 100%;
}

.order-popup__delivery-types .order__delivery-type label {
  height: 100px;
  background: var(--gray-light);
}

.order-popup__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 28px;
  line-height: 32px;
}

.order-popup__footnote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 16px 32px 16px 20px;
  font-size: 14px;
  line-height: 20px;
  background: var(--yellow-light-1);
  border-radius: 16px;
  border: 1px solid var(--yellow-2);
}

.order-popup__footnote::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url('/local/templates/imperialgarden/css/components/../../images/icons/icon-important.png') 50% 50% no-repeat;
}

.order-popup__button {
  width: 100%;
  padding: 20px;
  font-weight: 500;
}

.order-popup__button--add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.order-popup__button--add::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/plus.svg');
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 17px 17px;
  background-color: var(--base-white);
  transition: background-color .3s;
}

.order-popup__button--add:hover::after {
  background-color: var(--base-dark-gray);
}

.order-popup__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

.order-popup__form .order-popup__form-item {
  width: 100%;
}
.order-popup__form .order-popup__form-item:not(:last-child) {
  margin-bottom: 0;
}

.order-popup__form-item input[type=checkbox] {
  display: none;
}

.order-popup__form-item input[type=checkbox] ~ label {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.order-popup__form-item input[type=checkbox] ~ label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--gray-light-7);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 13px 10px;
}

.order-popup__form-item input[type=checkbox]:checked ~ label::before {
  background-image: url('/local/templates/imperialgarden/css/components/../../images/icons/check.svg');
}

.order-popup__bottom-footnote {
  margin-top: 8px;
  text-align: center;
}

.order-popup__image {
  width: 150px;
  height: 146px;
}

.order-popup__body--success {
  align-items: center;
  gap: 32px;
}

.order-popup__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.order-popup__text {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.order-popup__text span {
  font-weight: 500;
}

.order-popup__text a {
  color: var(--base-dark-gray);
  font-weight: 500;
  text-underline-offset: 3px;
}

@media(max-width: 768px) {

  .order-popup__body {
    padding: 32px 16px;
    gap: 20px;
    width: calc( 100% - 32px);
    max-width: 500px;
  }

  .order-popup__title {
    gap: 16px;
    font-size: 22px;
    line-height: 26px;
  }

  .order-popup__delivery-types .order__delivery-type label {
    height: auto;
  }

  .order-popup__button {
    padding: 12px;
  }

  .order-popup__form {
    gap: 20px;
  }

  .order-popup__bottom-footnote {
    margin-top: 0;
  }

  .order-popup__form-item input[type=checkbox]~ label::before {
    width: 18px;
    height: 18px;
    background-size: 11px 9px;
  }
}
/* End */
/* /local/templates/imperialgarden/css/order.css?174714200728030 */
/* /local/templates/imperialgarden/css/basket.css?174367264924451 */
/* /local/templates/imperialgarden/css/components/contacts.css?17326140061281 */
/* /local/templates/imperialgarden/css/components/map.css?17326140061335 */
/* /local/templates/imperialgarden/css/components/form.css?17386468781331 */
/* /local/templates/imperialgarden/css/components/order-popup.css?17454816304630 */
