

/* 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/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 */
/* /local/templates/imperialgarden/css/stocks.css?17386468787546 */
/* /local/templates/imperialgarden/css/components/breadcrumbs.css?17515221951417 */
