@charset "UTF-8";
/** Ширина сайта */
/** Ширина бокового меню */
/** 
 * * Расстояние МЕЖДУ колонками
 * * т.е. у колонки справа и слева будет padding: colGap/2
 * */
.lookbook_title h3::after {
  content: unset;
}
@media (max-width: 1200px) {
  .lookbook_title {
    margin: 0 0 40px;
  }
}

.lookbook_breadcrumbs {
  gap: 16px;
  margin: 0 24px 24px;
  padding: 16px 0 0;
}
.lookbook_breadcrumbs .ag-tiny {
  color: #ADADAD;
}
.lookbook_breadcrumbs .ag-tiny:hover {
  color: black;
}
@media (max-width: 1200px) {
  .lookbook_breadcrumbs {
    margin-top: 16px;
    margin-left: 16px;
    margin-bottom: 16px;
    gap: 8px;
    padding: 0;
  }
}

.lookbook_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 24px;
}
.lookbook_container h3::after {
  content: unset;
}
@media (min-width: 1200px) {
  .lookbook_container .desktop-hidden {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .lookbook_container {
    padding: 0 16px;
  }
  .lookbook_container .mobile-hidden {
    display: none !important;
  }
  .lookbook_container .to_col {
    flex-direction: column !important;
  }
  .lookbook_container .to_col.mobile-reverse-direction {
    flex-direction: column-reverse !important;
  }
}

.lookbook_banner_center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (max-width: 1200px) {
  .lookbook_banner_center {
    flex: 0;
  }
}

.lookbook_button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 80%;
  position: absolute;
  bottom: 1px;
  right: 1px;
  z-index: 1;
  background-color: white;
  color: black;
}

.lookbook_banner img, .lookbook_halfed_banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.size_first {
  height: 100%;
  min-height: 932px;
  aspect-ratio: 1;
}
@media (max-width: 1440px) {
  .size_first {
    max-height: 692px;
    aspect-ratio: 1;
    min-height: unset;
  }
}
@media (max-width: 1200px) {
  .size_first {
    min-height: 358px;
    max-height: unset;
    width: 100%;
    aspect-ratio: 190/358;
  }
}

.size_second {
  height: 100%;
  min-height: 840px;
}
@media (max-width: 1200px) {
  .size_second {
    position: relative;
    width: calc(100% + 32px);
    left: -16px;
    min-height: 582px;
    max-height: unset;
    aspect-ratio: 390/582;
  }
}

.size_third {
  height: 100%;
  min-height: 640px;
}
@media (max-width: 1440px) {
  .size_third {
    aspect-ratio: 342/480;
    max-height: 492px;
    min-height: 480px;
  }
}
@media (max-width: 1200px) {
  .size_third {
    max-height: unset;
    min-height: 246px;
    width: 100%;
    aspect-ratio: 175/246;
  }
}

.button_white {
  cursor: pointer;
  border: 1px solid black;
  color: black;
  background-color: white;
  padding: 8px 12px 6px;
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  width: max-content;
}
.button_white:hover {
  background-color: black;
  color: white;
}
.button_white .icon_all {
  color: inherit;
  height: 16px;
  width: 16px;
  position: relative;
  bottom: 2px;
}

.lookbook_title {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.lookbook_title h3 {
  font-size: 32px;
  line-height: 40px;
}
.lookbook_title p {
  margin-left: auto;
  max-width: 50%;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1200px) {
  .lookbook_title {
    gap: 16px;
  }
  .lookbook_title h3 {
    text-align: left;
  }
  .lookbook_title p {
    max-width: unset;
  }
}

.lookbook_banner {
  position: relative;
  gap: 8px;
  flex: 1;
}
.lookbook_banner img {
  width: 100%;
}
.lookbook_banner .button_white {
  position: absolute;
  z-index: 1;
  right: 8px;
  bottom: 8px;
}

.lookbook_halfed_banner {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 1200px) {
  .lookbook_halfed_banner {
    gap: 8px;
  }
}

.lookbook_banner_description {
  flex-direction: column;
  max-width: 80%;
  flex: 1;
  gap: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.lookbook_banner_description_title {
  text-align: left;
  font-size: 24px;
  line-height: 32px;
}
.lookbook_banner_description_p {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 1200px) {
  .lookbook_banner_description {
    max-width: unset;
    flex: unset;
    gap: 12px;
    align-items: flex-start;
  }
  .lookbook_banner_description .lookbook_banner_description_title {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
  .lookbook_banner_description .lookbook_banner_description_p {
    max-width: unset;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    margin-top: 16px;
  }
}

.lookbook_slider.main__cards {
  padding-top: 40px;
  margin-top: 0;
}
@media (max-width: 1200px) {
  .lookbook_slider.main__cards {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1200px) {
  .lookbook_slider.main__cards .main__cards-title {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .lookbook_slider .swiper-wrapper {
    max-height: 253px !important;
  }
}
.lookbook_slider .cards__item-media-item, .lookbook_slider .cards__item {
  width: 345px !important;
  height: 480px !important;
}
@media (max-width: 1440px) {
  .lookbook_slider .cards__item-media-item, .lookbook_slider .cards__item {
    width: 342px !important;
  }
}
@media (max-width: 1200px) {
  .lookbook_slider .cards__item-media-item, .lookbook_slider .cards__item {
    width: 191px !important;
    height: 253px !important;
    max-height: 253px !important;
  }
}
.lookbook_slider a {
  margin: 0 0 16px !important;
}

.side-menu-lookbook_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 716px;
  height: 100vh;
  padding: 40px 24px 24px;
}
@media (max-width: 1200px) {
  .side-menu-lookbook_container {
    width: 100%;
    padding: 32px 16px 16px;
    height: auto;
    gap: 16px;
  }
}
.side-menu-lookbook_container .cards__item {
  min-width: unset !important;
  min-height: unset !important;
  width: unset !important;
}
.side-menu-lookbook_container .cards__item-media-item {
  min-width: unset !important;
  min-height: unset !important;
  max-width: 330px !important;
  max-height: 418px !important;
  aspect-ratio: 330/418;
}
@media (max-width: 1200px) {
  .side-menu-lookbook_container .cards__item-media-item {
    max-width: 100% !important;
    max-height: 514px !important;
    width: 100% !important;
    aspect-ratio: 358/514;
  }
}
.side-menu-lookbook_container .lookbook_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
  max-height: calc(100vh - 24px - 40px - 24px - 36px);
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  .side-menu-lookbook_container .lookbook_cards {
    grid-template-columns: repeat(1, 1fr);
    max-height: unset;
    gap: 24px;
  }
}

/*# sourceMappingURL=lookbookDetail.css.map */
