

/* 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/breadcrumbs.css?17515221951417*/
.breadcrumbs__container {
  width: 100%;
}

@media(max-width: 1024px) {
  .breadcrumbs__container {
    position: relative;
    width: 100vw;
    margin-left: -16px;
    z-index: 2;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: var(--base-dark-gray);
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  transition: color .3s;
}

.breadcrumbs li:hover {
  color: var(--gray-dark-1);
}

.breadcrumbs li:active {
  color: initial;
  opacity: 0.12;
}

.breadcrumbs li.active {
  color: var(--gray-dark-1);
  pointer-events: none;
}

.breadcrumbs li.active:hover {
  color: var(--base-dark-gray);
}

.breadcrumbs li.active:active {
  color: initial;
  opacity: 0.12;
}

.breadcrumbs li a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  display: block;
  font-size: inherit;
  line-height: inherit;
  color: var(--gray-dark-1);
}

@media(max-width: 1024px) {
  .breadcrumbs {
    flex-wrap: nowrap;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: scroll;
  }

  .breadcrumbs li {
    flex-shrink: 0;
  }

  .breadcrumbs li a {
    white-space: nowrap;
  }
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/set-section.css?17391931641452*/
/*  */
/* Set section */
/*  */
.set-section {
	padding: 48px 0;
}

@media (max-width: 1024px) {
	.set-section {
		padding: 24px 0;
	}
}

.set-section__top {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.set-section__top {
		margin-bottom: 16px;
	}
}

.set-section__heading {
	display: inline;
}

.set-section__counter {
	font-family: var(--font-tt-ramillas);
	font-weight: 400;
	font-size: 22px;
	line-height: 16px;
	font-style: italic;
	vertical-align: top;
	color: var(--gray-dark-3);
}

@media (max-width: 1024px) {
	.set-section__counter {
		font-size: 16px;
		line-height: 18px;
	}
}

.set-section__slider-controls-buttons {
	display: flex;
	gap: 12px;
}

@media (max-width: 1024px) {
	.set-section__slider-controls-buttons {
		display: none;
	}
}

.set-section__slider-container {
	height: min-content;
	margin-right: -1vw;
}

@media (max-width: 1024px) {
	.set-section__slider-container {
		width: 100vw;
	}
}

.set-section__slider-container .slick-track {
	margin-left: 0;
}

.set-section__slider {
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.set-section__slide:first-child {
		margin-left: 16px;
	}
}

.set-section__slide .item-card {
	width: 96%;
}

.set-section__button {
	margin: 44px auto 0;
}

@media (max-width: 1024px) {
	.set-section__button {
		margin: 32px auto 0;
	}
}
/*  */
/* End Set section */
/*  */
/* End */


/* Start:/local/templates/imperialgarden/css/components/item-card.css?17518964468427*/
/* Item card */
.item-card__image-container {
	position: relative;
	width: 100%;
	padding-top: 113.2%;
	margin-bottom: 16px;
	overflow: hidden;
}

.item-card__image-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.1), transparent 60%);
	pointer-events: none;
	transition: all .2s ease-in-out;
}


@media (max-width: 1024px) {
	.item-card__image-container {
		margin-bottom: 8px;
	}
}

.item-card__images-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.item-card__image-link {
	position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item-card--out-of-stock .item-card__image-link {
	opacity: 0.6;
}

.item-card__images-list {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.item-card__image-item {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 2px;
}

.item-card__image-item::after {
	content: '';
    position: relative;
    display: none;
    top: 100%;
    left: 0px;
    right: 0px;
    transform: translateY(-7px);
    height: 3px;
    border-radius: 5px;
    background-color: white;
    opacity: 0.5;
    z-index: 1;
}

.item-card__images-list:hover .item-card__image-item::after {
	display: block;
}

.item-card__image-item:only-child:hover::after {
	display: none;
}

.item-card__image {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	transition: all .2s ease-in-out;
	opacity: 0;
}

.item-card__image-item:first-child .item-card__image {
	opacity: 1;
}

.item-card__image-item:hover .item-card__image {
	opacity: 1;
}

.item-card__image-item:hover::after {
	opacity: 1;
}

.item-card__favorites-button {
	/*display: none !important;*/
	position: absolute;
	top: 8px;
	right: 8px;
	width: 40px;
	height: 40px;
	color: var(--base-white);
	background-color: currentColor;
	padding: 0;
	border: none;
	mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/favorites-icon.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	cursor: pointer;
	pointer-events: all;
	z-index: 1;
}

.item-card__favorites-button:hover {
	mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/filled-favorites-icon.svg');
}

.item-card__favorites-button:active {
	opacity: 0.5;
}

.item-card__favorites-button--liked {
	mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/filled-favorites-icon.svg');
}

@media (max-width: 1024px) {
	.item-card__favorites-button {
		top: 4px;
		right: 4px;
		width: 36px;
		height: 36px;
	}
}

/*  */
/* Stickers */
.item-card__stickers {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	flex-direction: column;
    flex-wrap: wrap;
	gap: 8px;
	max-height: 90%;
	list-style: none;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.item-card__stickers {
		top: 12px;
		left: 12px;
	}
}

.item-card__sticker {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	text-align: center;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 8px;
}

@media (max-width: 1024px) {
	.item-card__sticker {
		font-weight: 500;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: normal;
		padding: 2px 8px;
		border-radius: 4px;
	}
}

/* Color */
.item-card__sticker--red {
	color: var(--base-white);
	background-color: var(--bright-red);
}

.item-card__sticker--blue {
	color: var(--base-white);
	background-color: var(--base-blue);
}

.item-card__sticker--green {
	color: var(--base-white);
	background-color: var(--base-green);
}

/* Decoration */
.item-card__sticker--iconed .item-card__sticker-content {
	position: relative;
	padding-left: 20px;
}

.item-card__sticker--iconed .item-card__sticker-content::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-color: currentColor;
	mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/tree-icon.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}
/* End Stickers */
/*  */

/*  */
/* Cart button */
.item-card__cart-button {
	display: block;
	position: absolute;
	right: 16px;
	bottom: 24px;
	left: 16px;
	width: auto;
	font-family: var(--font-norms-pro);
	z-index: 1;
	cursor: pointer;
	transition: all .2s ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.item-card:hover .item-card__cart-button {
	opacity: 1;
	pointer-events: all;
}

@media (max-width: 1024px) {
	.item-card .item-card__cart-button {
		right: 12px;
		bottom: 12px;
		left: auto;
		width: min-content;
		padding: 6px;
		border-radius: 50%;
		opacity: 1;
		pointer-events: all;
	}
}

.item-card__cart-button-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.item-card__cart-button-content--outside {
	display: flex;
}

.item-card__cart-button-content--inside {
	display: none;
}

.item-card__cart-button--added .item-card__cart-button-content--outside {
	display: none;
}

.item-card__cart-button--added .item-card__cart-button-content--inside {
	display: flex;
}

.item-card__cart-button-icon {
	display: block;
	width: 20px;
	height: 20px;
	background-color: currentColor;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

@media (max-width: 1024px) {
	.item-card__cart-button-text {
		display: none;
	}
}
/* End Cart button */
/*  */

/*  */
/* Out of Stock Button */
.item-card__out-of-stock-button {
	display: block;
	position: absolute;
	right: 16px;
	bottom: 24px;
	left: 16px;
	width: auto;
	font-family: var(--font-norms-pro);
	z-index: 1;
	cursor: pointer;
	transition: all .2s ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.item-card:hover .item-card__out-of-stock-button {
	opacity: 1;
	pointer-events: all;
}

@media (max-width: 1024px) {
	.item-card .item-card__out-of-stock-button {
		display: none;
	}
}
/* End Out of Stock Button */
/*  */

.item-card__grid {
	display: grid;
	grid-template-areas:
		"brand price"
		"name price"
		"parameters price";
	grid-template-rows: auto auto auto;
	grid-template-columns: 1fr auto;
	column-gap: 16px;
	row-gap: 8px;
	width: 100%;
}

@media (max-width: 1024px) {
	.item-card__grid {
		grid-template-areas:
			"brand"
			"name"
			"parameters"
			"price";
		row-gap: 4px;
		column-gap: 0;
	}
}

.item-card__link {
	display: block;
	color: var(--base-dark-gray);
	text-decoration: none;
}

.item-card__brand {
	grid-area: brand;
	align-self: baseline;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	.item-card__brand {
		font-size: 10px;
		line-height: 14px;
		letter-spacing: normal;
	}
}

.item-card__name {
	grid-area: name;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	margin: 0;
}

@media (max-width: 1024px) {
	.item-card__name {
		font-weight: 500;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: normal;
		text-wrap: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
	}
}

.item-card__parameters {
	grid-area: parameters;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	color: var(--gray-dark-3);
}

@media (max-width: 1024px) {
	.item-card__parameters {
		font-size: 10px;
		line-height: 14px;
	}
}

.item-card__price {
	grid-area: price;
	align-self: self-start;
    justify-self: end;
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	text-align: end;
}

.item-card--out-of-stock .item-card__price {
	align-self: baseline;
	font-family: var(--font-norms-pro);
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--base-red);
}

.item-card__price span {
	display: block;
}

.item-card__price--discounted {
	color: var(--bright-red);
}

.item-card__price--discounted .item-card__old-price {
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	color: var(--gray-dark-3);
	text-decoration: line-through;
}

@media (max-width: 1024px) {
	.item-card__price {
		justify-self: start;
		font-size: 16px;
		line-height: 20px;
		text-align: start;
	}

	.item-card--out-of-stock .item-card__price {
		font-size: 12px;
		line-height: 18px;
	}
}
/* End Item card */
/* End */


/* Start:/local/templates/imperialgarden/css/components/info.css?1732614006172*/
.info {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  background: url('/local/templates/imperialgarden/css/components/../../images/icons/info-icon.svg') 50% 50% no-repeat;
  cursor: pointer;
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/basket-similar.css?17326140065080*/
.basket-similar {
  position: fixed;
  top: 200%;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 64px 20px 0;
  z-index: -20;
  opacity: 0;
}

.basket-similar.show {
  top: 0;
  opacity: 1;
  z-index: 20;
}

.basket-similar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-gray);
  backdrop-filter: blur(0px);
  transition: all .3s;
}

.basket-similar.show .basket-similar__overlay {
  backdrop-filter: blur(10px);
}

.basket-similar__body {
  position: relative;
  top: 200%;
  width: 100%;
  height: 100%;
  padding: 48px 40px;
  border-radius: 24px 24px 0 0;
  background: var(--base-white);
  z-index: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 1;
  transition: top .5s ease-in-out;
}

.basket-similar.show .basket-similar__body {
  top: 0;
}

.basket-similar__body::-webkit-scrollbar {
  display: none;
}

.basket-similar__items {
  display: flex;
  gap: 48px 16px;
  flex-wrap: wrap;
}

.basket-similar__item {
  --items: 4;
  width: calc( (100% - ( 16px * (var(--items) - 1) )) / var(--items));
  overflow: hidden;
}

.basket-similar__item-image {
  position: relative;
  width: 100%;
  padding-top: 113%;
  margin-bottom: 16px;
}

.basket-similar__item-image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.basket-similar__item.in-basket .basket-similar__item-image img{
  border-radius: 16px;
}

.basket-similar__item-favorite {
  z-index: 1;
}

.basket-similar__in-basket {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: calc( 100% - 32px);
  bottom: -100%;
  left: 16px;
  padding: 13px 0 11px;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 400px;
  background: var(--base-white);
}

.basket-similar__in-basket::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url('/local/templates/imperialgarden/css/components/../../images/icons/check.svg') 50% 50% no-repeat;
  background-size: 17px 13px;
}

.basket-similar__item.in-basket .basket-similar__in-basket {
  bottom: 38px;
}

.basket-similar__item-body {
  display: flex;
  gap: 16px;
}

.basket-similar__item-text {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.basket-similar__item-price {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-tt-ramillas);
}

.basket-similar__item-brand {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.basket-similar__item-name {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.basket-similar__item-size {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: var(--gray-dark-3);
  text-transform: uppercase;
}

.basket-similar__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  color: var(--base-black);
  background-color: currentColor;
  mask-image: url('/local/templates/imperialgarden/css/components/../../images/icons/cursor2.svg');
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 40px 40px;
  transition: color .3s;
  cursor: pointer;
}

.basket-similar__close:hover {
  color: var(--bright-red);
}

@media(max-width: 1024px) {
  .basket-similar {
    padding: 0;
  }

  .basket-similar__body {
    border-radius: 0;
  }

  .basket-similar__item {
    --items: 3;
  }

  .basket-similar__in-basket {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    right: 12px;
    left: auto;
  }

  .basket-similar__item.in-basket .basket-similar__in-basket {
    bottom: 12px;
  }

  .basket-similar__in-basket span {
    display: none;
  }

  .basket-similar__in-basket::before {
    background-image: url('/local/templates/imperialgarden/css/components/../../images/icons/cart-icon-b.svg');
    background-size: 20px 20px;
  }
}

@media(max-width: 768px) {
  .basket-similar__item {
    --items: 2;
  }

  .basket-similar__items {
    gap: 20px 8px;
  }

  .basket-similar__body {
    padding: 32px 16px;
  }

  .basket-similar__item.in-basket .basket-similar__item-image img{
    border-radius: unset;
  }

  .basket-similar__item-body {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

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

  .basket-similar__item-brand {
    font-size: 10px;
    line-height: 12px;
  }

  .basket-similar__item-name {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .basket-similar__item-size {
    font-size: 10px;
    line-height: 14px;
  }

  .basket-similar__item-text {
    gap: 4px;
  }

  .basket-similar__item-image {
    padding-top: 112.5%;
    margin-bottom: 8px;
  }

  .basket-similar__title {
    max-width: 180px;
  }

  .basket-similar__title h2{
    font-size: 28px;
    line-height: 32px;
  }

  .basket-similar__close {
    width: 32px;
    height: 32px;
    mask-size: 32px 32px;
  }
}
/* End */
/* /local/templates/imperialgarden/css/basket.css?174367264924451 */
/* /local/templates/imperialgarden/css/components/breadcrumbs.css?17515221951417 */
/* /local/templates/imperialgarden/css/components/set-section.css?17391931641452 */
/* /local/templates/imperialgarden/css/components/item-card.css?17518964468427 */
/* /local/templates/imperialgarden/css/components/info.css?1732614006172 */
/* /local/templates/imperialgarden/css/components/basket-similar.css?17326140065080 */
