

/* Start:/local/templates/imperialgarden/css/stocks.css?17386468787546*/
.stocks {
  padding-top: 48px;
}

@media(max-width: 1024px) {
  .stocks {
    padding-top: 20px;
  }
}

.stocks__top {
  margin: 0 0 40px;
  overflow: auto;
  scrollbar-width: none;
}

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

@media(max-width: 1024px) {
  .stocks__top {
    margin: 0 0 20px;
  }
}

.stocks__tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.stocks__tab {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.25;
  border-radius: 12px;
  background: #E4E4E1;
  color: var(--base-dark-gray);
  cursor: pointer;
  transition: color .3s, background .3s;
}

.stocks__tab.active, .stocks__tab:hover {
  background: #494A41;
  color: var(--base-white);
}

.stocks__items {
  display: flex;
  width: 100%;
  gap: 16px;
  flex-wrap: wrap;
}

.stocks__item {
  display: none;
  position: relative;
  width: calc(50% - 8px);
  height: 566px;
}

.stocks__item.active {
  display: block;
}

.stocks__item[data-tab="past"] .stocks__item-content,
.stocks__item[data-tab="past"] .stocks__item-img img,
.stocks__item[data-tab="past"] .stocks__item-info {
  opacity: 0.7;
}

.stocks__item-body {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 116px;
}

.stocks__item::after {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  padding-top: 115%;
  z-index: -1;
}

.stocks__item-link {
  display: block;
  height: 100%;
}

.stocks__item-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.stocks__item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stocks__sticker {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 14px;
  line-height: 18px;
  font-family: var(--font-tt-norms-pro);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--base-dark-gray);
  background: var(--base-white);
  border-radius: 8px;
  z-index: 1;
}

.stocks__sticker::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/local/templates/imperialgarden/css/../images/icons/lightning.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.stocks__item[data-tab="past"] .stocks__sticker::before,
.stocks__hero[data-tab="past"] .stocks__sticker::before {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/clock.svg');
}

.stocks__item-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 92px 0 20px 20px;
}

.stocks__item-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.12;
}

.stocks__item-info h4{
  position: relative;
  margin: 0 0 4px;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  font-family: 'TT Norms Pro';
  text-transform: uppercase;
  color: var(--base-white);
}

.stocks__item-dicsount {
  position: relative;
  width: fit-content;
  padding: 11px;
  font-size: 64px;
  line-height: 1;
  font-family: 'TT Norms Pro';
  font-weight: 700;
  border-radius: 12px;
  color: var(--base-dark-gray);
  background: var(--base-white);
  transform-origin: top right;
  transform: rotate(355deg);
}

.stocks__item-dicsount.yellow {
  background: #FFDE5A;
}

.stocks__item-content {
  padding: 24px 32px;
  background: var(--base-dark-gray);
  font-family: 'TT Norms Pro';
  font-size: 16px;
  line-height: 20px;
  height: 116px;
}

.stocks__item-title {
  display: -webkit-box;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--base-white);
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stocks__item-text {
  display: -webkit-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--gray-dark-1);
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stocks__hero-image {
  position: relative;
}

.stocks__hero-image::before {
  content: '';
  position: relative;
  display: block;
  width: 100%;
  padding-top: 45.45%;
  z-index: -1;
}

.stocks__hero-image::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 21.6%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  opacity: 0.28;
}

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


.stocks__hero-footnote {
  position: absolute;
  bottom: 14px;
  right: 13px;
  font-size: 12px;
  line-height: 18px;
  color: var(--base-white);
  font-family: 'TT Norms Pro';
  z-index: 1;
}

.stocks__hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 40px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--gray-light-1);
}

.stocks__hero-info {
  max-width: 650px;
}

.stocks__hero-title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 32px;
  color: var(--base-dark-gray);
  font-family: 'TT Norms Pro';
  font-weight: 400;
}

.stocks__hero-text {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 24px;
  color: var(--gray-dark-1);
  font-family: 'TT Norms Pro';
}

.stocks__hero-conditions {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 16px;
  color: var(--base-dark-gray);
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--base-dark-gray);
  cursor: pointer;
}

@media(max-width: 1200px) {
  .stocks__item-info h4, .stocks__item-dicsount {
    font-size: 48px;
  }
}

@media(max-width: 1024px) {
  .stocks__item-info h4, .stocks__item-dicsount {
    font-size: 36px;
  }

  .stocks__item-info {
    padding: 52px 16px 16px;
  }
}

@media(max-width: 768px) {
  .stocks__hero-image::before {
    padding-top: 70%;
  }

  .stocks__hero-image::after {
    height: 100%;
  }

  .stocks__sticker {
    top: 16px;
    left: 16px;
    gap: 3px;
    padding: 2px 6px;
    font-size: 10px;
    line-height: 14px;
    border-radius: 6px;
  }

  .stocks__hero-footnote {
    left: 16px;
    bottom: 16px;
    right: 16px;
  }

  .stocks__hero-content {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0 24px;
    margin-bottom: 32px;
  }

  .stocks__hero-title {
    font-size: 22px;
    line-height: 26px;
  }

  .stocks__hero-text {
    font-size: 14px;
    line-height: 18px;
  }

  .stocks__hero-conditions {
    font-size: 12px;
    line-height: 14px;
  }

  .stocks__items {
    flex-wrap: wrap;
  }

  .stocks__item {
    width: 100%;
    height: 374px;
  }

  .stocks__item-info h4, .stocks__item-dicsount {
    font-size: 26px;
  }

  .stocks__item-info {
    padding: 52px 16px 16px;
  }

  .stocks__item::after {
    display: none;
  }

  .stocks__item-body {
    position: relative;
    grid-template-rows: auto auto;
  }

  .stocks__item-img::after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 70%;
  }

  .stocks__item-img img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }

  .stocks__item-content {
    padding: 16px;
    height: auto;
  }

  .stocks__item-title, .stocks__item-text {
    height: auto;
    font-size: 14px;
    line-height: 18px;
    line-clamp: 3;
    -webkit-line-clamp: 4;
  }

  .stocks__tabs {
    gap: 8px;
    margin-bottom: 24px;
  }

  .stocks__tab {
    padding: 7px 12px;
    font-size: 14px;
  }
}
/* End */


/* Start:/local/templates/imperialgarden/css/aside-modal.css?17431432847069*/
.aside-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  font-family: 'TT Norms Pro';
}

.aside-modal.open {
  display: block;
}

.aside-modal__bg {
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 22, 0.45);
  backdrop-filter: blur(8px);
}

.aside-modal__body {
  position: absolute;
  display: grid;
  grid-template-rows: auto 1fr auto;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 490px;
  padding: 44px 32px 0;
  background: var(--base-white);
  overflow: hidden;
}

.aside-modal__body--product-card {
  padding-bottom: 52px;
}

.aside-modal.open .aside-modal__body {
  animation: open .7s ease forwards;
}

.aside-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--base-dark-gray);
  background: url('/local/templates/imperialgarden/css/../images/icons/cross-b.svg') 50% 50% no-repeat;
  cursor: pointer;
}

.aside-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 40px 24px 0;
}

.aside-modal__header-sticker {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 4px 10px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--base-white);
  background: var(--base-dark-gray);
  border-radius: 8px;
  z-index: 1;
}

.aside-modal__header-sticker::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url('/local/templates/imperialgarden/css/../images/icons/lightning-white.svg');
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
}

.aside-modal__header-sticker[data-tab="past"]::before {
  mask-image: url('/local/templates/imperialgarden/css/../images/icons/clock.svg');
}

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

.aside-modal__header-date {
  font-size: 16px;
  line-height: 20px;
  color: var(--gray-dark-1);
  letter-spacing: -0.02em;
}

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

.aside-modal__content {
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.aside-modal__content::-webkit-scrollbar {
  display: none;
}

.aside-modal__title {
  font-size: 28px;
  line-height: 32px;
  color: var(--base-dark-gray);
  margin-bottom: 16px;
}

.aside-modal__footnote {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-dark-1);
}

.aside-modal__footnote::before {
  content: '*';
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
}

.aside-modal__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
}

.aside-modal__text--bold {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.aside-modal__list {
  padding-left: 20px;
}

.aside-modal__list-item:not(:last-child) {
  margin-bottom: 12px;
}

.aside-modal__footer {
  margin: 0 -32px;
  padding: 20px 32px 40px;
  background: var(--base-white);
}

.aside-modal__footer--slider {
  padding: 20px 0 0;
  margin: 0;
  max-width: 426px;
  overflow: visible;
}

.aside-modal__button {
  width: 100%;
  padding: 21px 0 19px;
  font-size: 14px;
  line-height: 16px;
  color: var(--base-dark-gray);
  text-transform: uppercase;
  text-align: center;
  background: var(--base-white);
  border-radius: 400px;
  border: 1px solid var(--base-dark-gray);
  cursor: pointer;
  transition: color .3s, background .3s, border-color .3s;
}

.aside-modal__button:hover {
  background: var(--green-light);
  color: var(--base-white);
  border-color: var(--green-light)
}

.aside-modal__header-avatar {
  position: relative;
  width: 77px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 12px;
}

.aside-modal__header-avatar img{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
}

.aside-modal__header-name {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #2E2E2E;
}

.aside-modal__header-position {
  font-size: 16px;
  line-height: 20px;
  color: #787878;
}

.aside-modal__header--top {
  align-items: flex-start;
}

.aside-modal__text p:not(:last-child) {
  margin-bottom: 8px;
}

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

.aside-modal__contact-link {
  margin-bottom: 0;
  color: var(--base-dark-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.asid-modal__contact-item:not(:last-child) {
  .aside-modal__footer-slider {
    width: 100%;
  }


  margin-bottom: 24px;
}:not(:last-child)-btn

.aside-modal__btns-btn {
  text-align: center;
  cursor: pointer;
  font-family: var(--font-tt-norms-pro);
}

.aside-modal__cart-item {
  margin-bottom: 32px;
  border: none !important;
}

.aside-modal__slider-top {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}

.aside-modal__slider-heading {
  font-size: 28px;
  line-height: 32px;
	font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.aside-modal__slider-controls-buttons {
  display: flex;
	gap: 12px;
}

.aside-modal__slider-container {
  height: 332px;
  width: 100%;
  position: relative;
}

.slick-slider.aside-modal__slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;

}

.aside-modal__slider-button.ig-interaction-button {
  height: 32px;
  width: 44px;
}
.aside-modal__slider-button.ig-interaction-button::before {
  width: 20px;
  height: 20px;
}

.aside-modal__slider-slide {

}

.aside-modal__slider-slide:not(:last-child) {
}

.aside-modal__image-container {
  padding-top: 72%;
}

.aside-modal__btns-btn {
  text-align: center;
}

@keyframes open {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

@media (max-width: 1024px) {
  .aside-modal__slider-top {
    margin-bottom: 16px;
  }

  .aside-modal__footer--slider {
    max-width: 100vw;
  }

  .aside-modal__btns-btn {
    width: 100%;
    text-align: center;
  }

  .aside-modal__btns-btn:not(:last-child) {
    margin-bottom: 16px;
  }

  .aside-modal__slider-slide {

  }

  .aside-modal__slider-container {
    height: 250px;
  }
}

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

@media(max-width: 768px) {
  .aside-modal__body {
    max-width: unset;
    padding: 32px 16px 0;
  }

  .aside-modal__header {
    gap: 12px;
    margin: 0 55px 20px 0;
  }

  .aside-modal__sticker {
    gap: 3px;
    padding: 2px 6px;
    font-size: 10px;
    line-height: 14px;
    border-radius: 6px;
  }

  .aside-modal__title {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 26px;
  }

  .aside-modal__footnote {
    margin-bottom: 12px;
  }

  .aside-modal__text {
    margin-bottom: 20px;
  }

  .aside-modal__text--bold {
    margin-bottom: 12px;
  }

  .aside-modal__footer {
    padding: 16px;
    margin: 0 -16px;
  }
}
/* End */
/* /local/templates/imperialgarden/css/stocks.css?17386468787546 */
/* /local/templates/imperialgarden/css/aside-modal.css?17431432847069 */
