@charset "UTF-8";
.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s linear;
}
.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: all 0.25s linear;
  display: block;
}

.button-brown {
  color: var(--powder-20);
  border: 0.0625rem solid var(--powder-20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-brown:hover {
  color: var(--white);
  background: var(--powder-20);
  border: 0.0625rem solid var(--powder-20);
}

.button-brown-border {
  color: var(--brown-20);
  border: 0.0625rem solid var(--brown-20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-brown-border:hover {
  color: var(--white);
  background: var(--brown-20);
  border: 0.0625rem solid var(--brown-20);
}

.button-gray {
  color: var(--black);
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-gray:hover {
  color: var(--white);
  background: var(--powder-20);
}

.button-brown-main {
  color: var(--white);
  background: var(--powder-20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-brown-main:hover {
  color: var(--white);
  background: var(--brown-20);
}

body .header-phone {
  color: var(--brown-20);
}
body .header-social-item svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--brown-20);
  transition: all 0.25s linear;
}
body .header-social-item:hover svg {
  fill: var(--powder-20);
}
body .header-center-link {
  position: relative;
}
body .header-center-link .icon {
  stroke: var(--brown-20);
  fill: transparent;
}
body .header-center-link:hover .icon {
  stroke: var(--powder-20);
}
body .header-center-link_new .icon {
  stroke: transparent;
  fill: var(--brown-20);
}
body .header-center-link_new:hover .icon {
  fill: var(--powder-20);
}
body .header-center-link-count {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--powder-20);
  border-radius: 50%;
  line-height: 1.2;
  font-size: 0.875rem;
  color: var(--white);
}
@media (max-width: 991px) {
  body .header-center-link-count {
    top: -0.5rem;
    right: -0.5rem;
    padding-top: 0.0625rem;
  }
}
@media (max-width: 1240px) {
  body .main-menu {
    pointer-events: none;
    top: calc(100% + 1.25rem);
    left: 0;
    padding: 1.25rem;
    background: var(--brown-10);
    z-index: 2;
    transition: all 0.25s linear;
  }
  body .main-menu:before {
    width: 1rem;
    height: 1rem;
    background: var(--brown-10);
    left: 1rem;
    top: -0.5rem;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    transition: all 0.25s linear;
  }
}
@media (max-width: 1240px) and (max-width: 991px) {
  body .main-menu:before {
    top: auto;
    bottom: -0.5rem;
  }
}
@media (max-width: 991px) {
  body .main-menu {
    top: auto;
    width: 11.875rem;
    bottom: calc(100% + 1.875rem);
  }
}
@media (max-width: 1240px) {
  body .main-menu__items {
    flex-direction: column;
    align-items: flex-start;
  }
}
body .main-menu__start.active .main-menu {
  opacity: 1;
  pointer-events: auto;
}
body .main-menu__start.active .menu-tablet svg {
  transform: rotate(180deg);
}
body .header-bottom {
  background: var(--white);
}
@media (min-width: 991px) {
  body .header-bottom {
    position: relative;
  }
}
@media (max-width: 991px) {
  body .header-bottom {
    right: -100%;
    height: 100dvh;
    top: 0;
    z-index: 6;
    transition: all 0.25s linear;
  }
}
@media (max-width: 991px) {
  body .menu-close {
    display: flex;
    z-index: 1;
    top: 1.1875rem;
    right: 1rem;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    position: absolute;
    width: 3rem;
    height: 3rem;
  }
  body .menu-close svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: var(--black);
  }
}
@media (max-width: 991px) {
  body .menu {
    margin-bottom: 0;
    overflow: hidden;
    overflow-y: auto;
    border-bottom: none;
    padding: 5.625rem 0 1.25rem;
  }
  body .menu:before, body .menu:after {
    display: none;
  }
}
@media (max-width: 991px) {
  body .menu-items {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 991px) {
  body .menu-link {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
  }
}
body .mobile-menu__catalog.active .main-menu {
  opacity: 1;
  pointer-events: auto;
}
body .catalog-menu {
  width: calc(100% - 1.75rem - 1.75rem);
  left: 1.75rem;
  background: var(--white);
  transition: all 0.25s linear;
  padding: 2rem 4rem 2rem 2rem;
  z-index: 5;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  column-count: 3;
  column-gap: 1.5rem;
  box-shadow: 0.0625rem 0.3125rem 0.625rem rgba(0, 0, 0, 0.1);
}
body .catalog-menu:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  background: var(--white);
  width: 1rem;
  height: 1rem;
  transform: rotate(45deg);
}
@media (max-width: 1356px) {
  body .catalog-menu {
    padding: 1.5rem;
  }
}
body .catalog-menu__column {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  line-height: 1.2;
}
body .catalog-menu__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body .catalog-menu__items:not(:last-child) {
  margin-bottom: 1.5rem;
}
body .catalog-menu__head {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
body.show-catalog .catalog-menu {
  opacity: 1;
  pointer-events: auto;
}
body.show-catalog .blackout {
  opacity: 1;
  pointer-events: auto;
}
body.show-catalog .header-bottom {
  z-index: 0;
}
body .menu-item_sub {
  left: 0;
  background: var(--white);
  transition: all 0.25s linear;
  z-index: 4;
  box-shadow: 0.0625rem 0.3125rem 0.625rem rgba(0, 0, 0, 0.1);
  display: none;
}
body .menu-item_sub.active {
  display: flex;
  pointer-events: auto;
  animation: showMenu 0.25s linear forwards;
}
body .menu-item_sub:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  background: var(--white);
  width: 1rem;
  height: 1rem;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  body .menu-item_sub {
    opacity: 1;
    pointer-events: auto;
    right: -100%;
    width: 100%;
    z-index: 7;
    left: auto;
    height: 100dvh;
    overflow: auto;
    top: 0;
    background: white;
    position: fixed;
    display: block;
  }
  body .menu-item_sub.active {
    right: 0;
  }
}
@keyframes showMenu {
  to {
    opacity: 1;
  }
}
body .menu-item_sub-column {
  padding: 2rem;
}
@media (max-width: 991px) {
  body .menu-item_sub-column {
    padding: 1.1875rem 1rem;
    width: 100% !important;
    height: 100dvh;
    overflow: auto;
  }
}
body .menu-item_sub-column-left {
  width: 29.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 991px) {
  body .menu-item_sub-column-left {
    gap: 1.5rem;
  }
}
body .menu-item_sub-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s linear;
}
body .menu-item_sub-trigger:hover {
  color: var(--powder-20);
}
body .menu-item_sub-trigger svg {
  transform: rotate(-90deg);
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0;
  stroke: var(--powder-20);
}
@media (min-width: 991px) {
  body .menu-item_sub-trigger.active {
    color: var(--powder-20);
  }
  body .menu-item_sub-trigger.active svg {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  body .menu-item_sub-trigger {
    font-size: 1.25rem;
  }
}
body .menu-item_sub-column-right {
  background: var(--gray);
  width: 29.25rem;
}
@media (max-width: 991px) {
  body .menu-item_sub-column-right {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    z-index: 8;
    overflow: auto;
    height: 100dvh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.25s linear;
  }
  body .menu-item_sub-column-right.active {
    right: 0;
  }
}
@media (max-width: 991px) {
  body .menu-item_sub-item.color-brown {
    font-size: 1.5rem;
    color: var(--powder-20);
  }
}
body .menu-item_sub-items {
  flex-direction: column;
  gap: 1rem;
  line-height: 1.1;
  display: none;
}
body .menu-item_sub-items.active {
  display: flex;
}
body .menu-item_sub-items .size-18 {
  font-size: 1.125rem !important;
}
@media (max-width: 991px) {
  body .menu-item_sub-items {
    gap: 1.25rem;
  }
  body .menu-item_sub-items.show {
    display: flex;
  }
}
body.menu-show .header-bottom {
  z-index: 4;
}
body.menu-show .header-center {
  z-index: 1;
}
body.menu-show .blackout {
  opacity: 1;
  pointer-events: auto;
}
body .menu-item_sub-right {
  left: auto;
}
body .menu-item_sub-right:before {
  left: auto;
  right: 1rem;
}
body .mobile-menu-title {
  display: none;
}
@media (max-width: 991px) {
  body .mobile-menu-title {
    display: flex;
    font-size: 1.5rem;
    color: var(--powder-20);
    text-transform: uppercase;
    font-weight: 600;
  }
}
body .menu-back {
  display: none;
}
@media (max-width: 991px) {
  body .menu-back {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 9.75rem;
    height: 3rem;
    justify-content: center;
    background: #F5F5F5;
  }
  body .menu-back svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.625rem;
    fill: var(--black);
  }
}
body.mobile-menu-show {
  overflow: hidden;
}
body.mobile-menu-show .header-bottom {
  right: 0;
}

.product-start {
  background: var(--gray);
}

.product-start__slider {
  background: var(--brown-10);
}
@media (max-width: 767px) {
  .product-start__slider {
    background: transparent;
    overflow: hidden;
  }
  .product-start__slider .swiper-arrow-container {
    position: initial;
  }
  .product-start__slider .swiper-arrow {
    position: absolute;
    top: calc(50% - 1.25rem);
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--powder-10);
  }
  .product-start__slider .swiper-arrow-prev {
    left: -1rem;
  }
  .product-start__slider .swiper-arrow-next {
    right: -1rem;
  }
}

.product-start__swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .product-start__swiper {
    overflow: visible !important;
  }
}

.price-old {
  text-decoration: line-through;
}

.bg-gray {
  background: var(--gray);
  overflow: hidden;
}
.bg-gray .swiper-arrow {
  background: var(--powder-20);
}
.bg-gray .swiper-arrow .icon {
  fill: var(--white);
}
.bg-gray .swiper-arrow:hover {
  background: var(--brown-20);
}
.bg-gray .main-slider__bottom {
  border-top: none;
  padding-top: 0;
}

.bg-left {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1240px) {
  .bg-left {
    width: 25rem;
  }
}
@media (max-width: 767px) {
  .bg-left {
    width: 18.75rem;
  }
}

.bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1240px) {
  .bg-right {
    width: 25rem;
  }
}
@media (max-width: 767px) {
  .bg-right {
    width: 18.75rem;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 767px) {
  .service-items {
    flex-direction: column;
    display: flex;
  }
}

.service-item__pic {
  padding-bottom: 46.9%;
  position: relative;
  overflow: hidden;
}
.service-item__pic img {
  position: absolute;
  top: 0;
  transition: all 0.25s linear;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-item__pic:hover img {
  transform: scale(1.1);
}

.link-arrow {
  color: var(--brown-20);
  display: inline-flex;
  align-items: center;
}
.link-arrow .icon {
  width: 2rem;
  margin-left: 1rem;
  fill: var(--brown-20);
}
.link-arrow:hover {
  color: var(--powder-20);
}
.link-arrow:hover .icon {
  fill: var(--powder-20);
}

.brand-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .brand-flex {
    flex-direction: column;
    display: flex;
  }
}

.brand-text-main {
  max-width: 35.625rem;
}

.brand-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.conversation-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.conversation-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41.625rem;
  height: 30.25rem;
  background: var(--brown-10);
}
.conversation-video:hover .play {
  background: var(--brown-20);
}
.conversation-video:hover .play .icon {
  fill: var(--white);
}
@media (max-width: 1240px) {
  .conversation-video {
    width: 29.625rem;
    height: 20rem;
  }
}
@media (max-width: 991px) {
  .conversation-video {
    height: 14.5rem;
    max-width: 20.5rem;
    width: 100%;
  }
}

.play {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--powder-20);
  display: flex;
  align-items: center;
  transition: all 0.25s linear;
  justify-content: center;
}
.play .icon {
  fill: var(--brown-20);
  width: 1.75rem;
  height: 1.75rem;
}
@media (max-width: 1240px) {
  .play .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 1240px) {
  .play {
    width: 3rem;
    height: 3rem;
  }
}

.conversation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .conversation {
    flex-direction: column;
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }
}

address {
  font-style: normal;
}

a.color-brown:hover {
  color: var(--powder-20);
}

footer {
  margin-top: 6.25rem;
}
@media (max-width: 991px) {
  footer {
    margin-top: 5.5rem;
  }
}

.footer-subscribe {
  background: var(--gray);
  padding: 3.25rem 0;
}
@media (max-width: 1240px) {
  .footer-subscribe {
    padding: 3rem 0;
  }
}

.subscribe-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1240px) {
  .subscribe-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.subscribe-content .size-30 {
  color: var(--brown-20);
}
.subscribe-content p {
  max-width: 36.25rem;
}

.subscribe-form-flex {
  gap: 1rem;
}
.subscribe-form-flex .button {
  flex-shrink: 0;
  height: 3.5rem;
}
@media (max-width: 767px) {
  .subscribe-form-flex .button {
    width: 100%;
    height: 3.25rem;
  }
}
@media (max-width: 767px) {
  .subscribe-form-flex {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.footer-main {
  padding: 3.25rem 0 2rem;
  background: var(--brown-10);
}

.footer-main__top {
  display: flex;
  border-bottom: 0.0625rem solid rgba(107, 95, 91, 0.2);
}
@media (max-width: 991px) {
  .footer-main__top {
    flex-direction: column;
    border-bottom: none;
  }
}

.footer-address {
  width: 34.375rem;
  flex-shrink: 0;
  padding-left: 4.25rem;
  border-left: 0.0625rem solid rgba(107, 95, 91, 0.2);
  padding-bottom: 3.75rem;
}
@media (max-width: 1240px) {
  .footer-address {
    padding-left: 1.75rem;
    width: 28.125rem;
  }
}
@media (max-width: 991px) {
  .footer-address {
    width: 100%;
    border-left: none;
    padding: 2.75rem 0;
    border-top: 0.0625rem solid rgba(107, 95, 91, 0.2);
    border-bottom: 0.0625rem solid rgba(107, 95, 91, 0.2);
    margin: 2.75rem 0;
  }
}

.mw-352 {
  max-width: 22rem;
}

.footer-social {
  gap: 0.25rem;
}

.footer-social-item svg {
  width: 2.25rem;
  height: 2.25rem;
  transition: all 0.25s linear;
  fill: var(--brown-20);
}
.footer-social-item:hover svg {
  fill: var(--powder-20);
}

.footer-menu {
  width: 100%;
  display: flex;
  gap: 6.25rem;
  line-height: 1.2;
}
@media (max-width: 1240px) {
  .footer-menu {
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .footer-menu {
    flex-direction: column;
    gap: 1.75rem;
  }
}

.footer-menu__head {
  color: var(--brown-20);
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .footer-menu__head {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-menu__head:after {
    transition: all 0.25s linear;
    content: url("../images/icon/chevron-down.svg");
  }
}

.footer-menu__column.active .footer-menu__items {
  margin-top: 1rem;
}
.footer-menu__column.active .footer-menu__head:after {
  transform: rotate(180deg);
}

.footer-menu__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer-menu__items {
    height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: height 0.25s linear, margin-top 0.25s linear;
  }
}

.footer-main__bottom {
  display: flex;
  gap: 0.75rem;
  padding-top: 2rem;
}
.footer-main__bottom a {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .footer-main__bottom {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .footer-main__bottom {
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
}

.input {
  outline: none;
  border: 0.0625rem solid transparent;
  font-family: inherit;
  font-size: 1.125rem;
  background: var(--white);
  height: 3.5rem;
  width: 100%;
  padding: 0 1.25rem;
  transition: all 0.25s linear;
  color: var(--black);
}
.input::placeholder {
  color: var(--gray-2);
  transition: all 0.25s linear;
}
.input:hover {
  border: 0.0625rem solid var(--powder-20);
}
.input:focus {
  border: 0.0625rem solid var(--powder-20);
}
.input:focus::placeholder {
  color: transparent;
}
.input.error {
  border: 0.0625rem solid red;
}
@media (max-width: 767px) {
  .input {
    height: 3.25rem;
    padding: 0 1rem;
  }
}

.input-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.check {
  display: flex;
  align-items: flex-start;
}
.check:hover .check-icon__square {
  border: 0.0625rem solid var(--brown-20);
}

.check-icon {
  flex-shrink: 0;
  margin-right: 0.5rem;
  position: relative;
}
.check-icon input:checked + .check-icon__square {
  background: var(--powder-20);
  border: 0.0625rem solid transparent;
}
.check-icon input.error + .check-icon__square {
  border: 0.0625rem solid red;
}

.check-icon__square {
  width: 1.25rem;
  height: 1.25rem;
  transition: all 0.25s linear;
  background: var(--white);
  border: 0.0625rem solid var(--brown-10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon__square .icon {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--white);
}

.check-label {
  color: var(--gray-2);
  max-width: 27.5rem;
  cursor: pointer;
}
.check-label a {
  color: var(--powder-20);
  text-decoration: underline;
}
.check-label a:hover {
  color: var(--brown-20);
}
@media (max-width: 1240px) {
  .check-label {
    max-width: 100%;
  }
}

.path {
  padding-bottom: 1.5625rem;
}
@media (max-width: 1240px) {
  .path {
    padding-bottom: 1.25rem;
  }
}
@media (max-width: 991px) {
  .path {
    padding-bottom: 1.0625rem;
  }
}
.path__line {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.path__back-link {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: flex;
  color: var(--white);
  align-items: center;
  justify-content: center;
  background-color: var(--powder-20);
}
@media (min-width: 992px) {
  .path__back-link:focus-visible, .path__back-link:hover {
    background-color: var(--gray, #F5F5F5);
    color: var(--black, #3D3938);
  }
}
.path__list {
  display: flex;
  align-items: center;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.path__list::-webkit-scrollbar {
  display: none;
}
.path__list li {
  flex-shrink: 0;
  padding-left: 1.1875rem;
  position: relative;
}
@media (max-width: 991px) {
  .path__list li {
    padding-left: 0.9375rem;
  }
}
.path__list li::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.1875rem);
  left: 0.5625rem;
  width: 0.1875rem;
  height: 0.1875rem;
  background-color: var(--brown-30, #3D3938);
}
@media (max-width: 991px) {
  .path__list li::before {
    top: 50%;
    left: 0.4375rem;
  }
}
.path__list li:first-child {
  padding-left: 0;
}
.path__list li:first-child::before {
  display: none;
}
.path__link {
  color: var(--gray-text, #9E9C9B);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 991px) {
  .path__link {
    font-size: 0.8125rem;
  }
}
@media (min-width: 992px) {
  .path__link:focus-visible, .path__link:hover {
    color: var(--black, #3D3938);
  }
}

span.path__link {
  color: var(--black, #3D3938);
  pointer-events: none;
}

.page-title {
  margin-bottom: 2.75rem;
}
@media (max-width: 1240px) {
  .page-title {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .page-title {
    margin-bottom: 1.75rem;
  }
}
.page-title__line {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.page-title__text {
  color: var(--black, #3D3938);
  font-family: "IBMPlexSans";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.504px;
}
@media (max-width: 1240px) {
  .page-title__text {
    font-size: 2rem;
    letter-spacing: 0.448px;
  }
}
@media (max-width: 991px) {
  .page-title__text {
    font-size: 1.75rem;
    letter-spacing: 0.392px;
  }
}
.page-title__text:has(.count) {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 1240px) {
  .page-title__text:has(.count) {
    gap: 0.5rem;
  }
}
.page-title .count {
  width: 2.25rem;
  height: 2.25rem;
  font-family: "Rubik";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: var(--powder-20);
  color: var(--white);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1240px) {
  .page-title .count {
    width: 2rem;
    height: 2rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .page-title .count {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.box-catalog__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.25rem, 15.75rem));
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 1240px) {
  .box-catalog__list {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 14.25rem));
    gap: 1.25rem;
  }
}
@media (max-width: 991px) {
  .box-catalog__list {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 0.5rem;
  }
}
.box-catalog__box-search {
  width: 50%;
  max-width: 100%;
  margin-bottom: 1.75rem;
}
@media (max-width: 1240px) {
  .box-catalog__box-search {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .box-catalog__box-search {
    margin-bottom: 1.25rem;
  }
}
.box-catalog__box-title {
  margin-bottom: 1.75rem;
}
@media (max-width: 1240px) {
  .box-catalog__box-title {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .box-catalog__box-title {
    margin-bottom: 1rem;
  }
}
.box-catalog__title {
  color: var(--black, #3D3938);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.336px;
}
@media (max-width: 991px) {
  .box-catalog__title {
    font-size: 1.25rem;
  }
}
.box-catalog__title:has(.count) {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 991px) {
  .box-catalog__title:has(.count) {
    gap: 0.5rem;
  }
}
.box-catalog__title .count {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 100%;
  background-color: var(--powder-20, #B5968C);
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 991px) {
  .box-catalog__title .count {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
  }
}

.card-category {
  height: 100%;
  width: 100%;
  display: flex;
}
.card-category .title {
  display: none;
}
.card-category__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .card-category__link:focus-visible .card-category__box-img img, .card-category__link:hover .card-category__box-img img {
    transform: scale(1.1);
  }
  .card-category__link:focus-visible .card-category__name, .card-category__link:hover .card-category__name {
    color: var(--powder-20);
  }
}
.card-category__box-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--powder-20);
  width: 100%;
  min-height: 20.75rem;
  max-height: 20.75rem;
}
@media (max-width: 1240px) {
  .card-category__box-img {
    min-height: 17rem;
    max-height: 17rem;
  }
}
@media (max-width: 991px) {
  .card-category__box-img {
    min-height: 13.25rem;
    max-height: 13.25rem;
  }
}
.card-category__box-img img {
  pointer-events: none;
  width: 100%;
  min-height: 20.75rem;
  max-height: 20.75rem;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
}
@media (max-width: 1240px) {
  .card-category__box-img img {
    min-height: 17rem;
    max-height: 17rem;
  }
}
@media (max-width: 991px) {
  .card-category__box-img img {
    min-height: 13.25rem;
    max-height: 13.25rem;
  }
}
.card-category__name {
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.252px;
  transition: color 0.25s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .card-category__name {
    font-size: 1.0625rem;
  }
}

.static-text {
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
@media (max-width: 1240px) {
  .static-text {
    font-size: 1.0625rem;
  }
}
@media (max-width: 991px) {
  .static-text {
    font-size: 1rem;
  }
}
.static-text *:not(:last-child) {
  margin-bottom: 1rem;
}
.static-text h2 {
  margin-bottom: 2.75rem !important;
  color: var(--black, #3D3938);
  font-family: IBMPlexSans;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.504px;
}
@media (max-width: 1240px) {
  .static-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 991px) {
  .static-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem !important;
  }
}
.static-text ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.static-text ul li {
  position: relative;
  margin: 0 !important;
  padding-left: 1.875rem;
}
.static-text ul li::before {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 0.625rem;
  width: 0.625rem;
  height: 0.125rem;
  background-color: var(--powder-20, #B5968C);
}

.filter {
  margin-bottom: 1.5rem;
}
@media (max-width: 1240px) {
  .filter {
    margin-bottom: 1.25rem;
  }
}
.filter-container {
  /*@media (max-width: 1240px) {
    overflow: hidden;
  }*/
}
.filter__top-line {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 1240px) {
  .filter__top-line {
    margin: 0 -1.5rem 1.75rem -1.5rem;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .filter__top-line {
    margin: 0 -1rem 0.75rem -1rem;
  }
}
.filter__top-line::after, .filter__top-line::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 8rem;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .filter__top-line::after, .filter__top-line::before {
    width: 2.25rem;
  }
}
.filter__top-line::after {
  left: 0;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1240px) {
  .filter__top-line::after {
    left: -1.5rem;
  }
}
@media (max-width: 991px) {
  .filter__top-line::after {
    left: -1rem;
  }
}
.filter__top-line::before {
  right: 0;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1240px) {
  .filter__top-line::before {
    right: -1.5rem;
  }
}
@media (max-width: 991px) {
  .filter__top-line::before {
    right: -1rem;
  }
}
.filter__top-line:has(.swiper-button-lock)::after, .filter__top-line:has(.swiper-button-lock)::before {
  display: none;
}
.filter__top-line:has(.--next.swiper-button-disabled)::after {
  opacity: 0;
}
.filter__top-line:has(.--prev.swiper-button-disabled)::before {
  opacity: 0;
}
.filter__box-btn-mobile {
  display: none;
}
@media (max-width: 991px) {
  .filter__box-btn-mobile {
    display: flex;
    width: 100%;
  }
}
.filter__close {
  display: none;
}
@media (max-width: 991px) {
  .filter__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.1875rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background-color: var(--gray, #F5F5F5);
  }
}
.filter__bottom-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media (max-width: 1240px) {
  .filter__bottom-line {
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .filter__bottom-line {
    position: fixed;
    transform: translateX(-120%);
    flex-direction: column;
    inset: 0;
    z-index: 5;
    padding: 5.6875rem 1rem 12.5rem;
    background-color: var(--white);
    transition: transform 0.2s ease;
  }
  .filter__bottom-line.active {
    transform: none;
  }
}

.link-filter-point {
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1.75rem;
  color: var(--black, #3D3938);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  background-color: var(--gray, #F5F5F5);
}
@media (max-width: 1240px) {
  .link-filter-point {
    height: 3rem;
    padding: 0.3125rem 1.25rem;
  }
}
@media (max-width: 991px) {
  .link-filter-point {
    height: 2.5rem;
    padding: 0.3125rem 0.75rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .link-filter-point:focus-visible, .link-filter-point:hover {
    color: var(--white);
    background-color: var(--brown-20, #6B5F5B);
  }
}
.link-filter-point.active {
  color: var(--white);
  background-color: var(--brown-20, #6B5F5B);
}
.link-show-more {
  width: 11.25rem;
  max-width: 100%;
  padding: 0.3125rem 1rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black, #3D3938) !important;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.21px;
  background-color: var(--gray, #F5F5F5);
}
@media (max-width: 991px) {
  .link-show-more {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .link-show-more:focus-visible, .link-show-more:hover {
    background-color: var(--brown-20);
    color: var(--white) !important;
  }
}
.link-pagination {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  color: var(--black, #3D3938) !important;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.21px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
}
@media (max-width: 991px) {
  .link-pagination {
    width: auto;
    min-width: 1.875rem;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .link-pagination:focus-visible, .link-pagination:hover {
    background-color: var(--brown-20);
    color: var(--white) !important;
  }
}

.drop-down-filter-1 {
  position: relative;
}
.drop-down-filter-1.js-right .drop-down-filter-1__box {
  left: auto;
  right: 0;
}
.drop-down-filter-1.js-right .drop-down-filter-1__box::after {
  background-position: bottom right 1rem;
}
.drop-down-filter-1__btn {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--black, #3D3938);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .drop-down-filter-1__btn {
    font-size: 1.125rem;
  }
}
.drop-down-filter-1__btn .static-text {
  color: var(--black, #3D3938);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
}
@media (max-width: 991px) {
  .drop-down-filter-1__btn .static-text {
    font-size: 1.125rem;
  }
}
.drop-down-filter-1__btn .svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-down-filter-1__btn svg {
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .drop-down-filter-1__btn svg {
    transform: rotate(270deg);
  }
}
@media (min-width: 992px) {
  .drop-down-filter-1__btn.active svg {
    transform: rotate(180deg);
  }
}
.drop-down-filter-1__box {
  opacity: 0;
  visibility: hidden;
  min-width: 19.25rem;
  position: absolute;
  left: 0;
  z-index: 3;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  top: calc(100% + 1rem);
  background: var(--brown-10, #D8D2D0);
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .drop-down-filter-1__box {
    position: fixed;
    inset: 0;
    min-width: 100%;
    background: var(--white);
    padding: 5.6875rem 1rem 12.5rem;
  }
}
.drop-down-filter-1__box-wrapper {
  max-height: 30.75rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .drop-down-filter-1__box-wrapper {
    max-height: 100%;
  }
}
.drop-down-filter-1__box-wrapper::-webkit-scrollbar {
  width: 0.25rem;
}
.drop-down-filter-1__box-wrapper::-webkit-scrollbar-track {
  background: rgba(181, 150, 140, 0.24);
}
.drop-down-filter-1__box-wrapper::-webkit-scrollbar-thumb {
  background: var(--powder-20, #B5968C);
}
.drop-down-filter-1__box::after {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 1rem;
  background-image: url(../images/drop-down-filter/arrow.svg);
  background-repeat: no-repeat;
  background-position: bottom left 1rem;
}
@media (max-width: 991px) {
  .drop-down-filter-1__box::after {
    display: none;
  }
}
.drop-down-filter-1__box.active {
  opacity: 1;
  visibility: visible;
}
.drop-down-filter-1__close {
  display: none;
}
@media (max-width: 991px) {
  .drop-down-filter-1__close {
    display: flex;
    position: absolute;
    top: 1.1875rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--black, #3D3938);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.252px;
    height: 3rem;
    padding: 0.3125rem 1rem;
    background-color: #F5F5F5;
  }
}
.drop-down-filter-1__link {
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--black, #3D3938);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.drop-down-filter-1__link.disabled {
  pointer-events: none;
  opacity: 0.3;
}

@supports (-moz-appearance: none) {
  .drop-down-filter-1__box-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--powder-20, #B5968C) rgba(181, 150, 140, 0.24);
  }
}
.drop-down-filter-2 {
  position: relative;
}
.drop-down-filter-2.js-right .drop-down-filter-2__box {
  left: auto;
  right: 0;
}
.drop-down-filter-2.js-right .drop-down-filter-2__box::after {
  background-position: bottom right 1rem;
}
.drop-down-filter-2__btn {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--black, #3D3938);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .drop-down-filter-2__btn {
    font-size: 1.125rem;
  }
}
.drop-down-filter-2__btn .text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.drop-down-filter-2__btn .text i {
  display: none;
  width: 1.375rem;
  height: 1.375rem;
  color: var(--white, #FFF);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: var(--brown-20, #6B5F5B);
}
.drop-down-filter-2__btn.selected .text i {
  display: flex;
}
.drop-down-filter-2__btn .svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-down-filter-2__btn svg {
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .drop-down-filter-2__btn svg {
    transform: rotate(270deg);
  }
}
@media (min-width: 992px) {
  .drop-down-filter-2__btn.active svg {
    transform: rotate(180deg);
  }
}
.drop-down-filter-2__box {
  opacity: 0;
  visibility: hidden;
  min-width: 19.25rem;
  position: absolute;
  left: 0;
  z-index: 3;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  top: calc(100% + 1rem);
  background: var(--brown-10, #D8D2D0);
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .drop-down-filter-2__box {
    position: fixed;
    inset: 0;
    min-width: 100%;
    background: var(--white);
    padding: 5.6875rem 1rem 12.5rem;
  }
}
.drop-down-filter-2__box-wrapper {
  position: relative;
  max-height: 19.75rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .drop-down-filter-2__box-wrapper {
    max-height: 100%;
  }
}
.drop-down-filter-2__box-wrapper::-webkit-scrollbar {
  width: 0.25rem;
}
.drop-down-filter-2__box-wrapper::-webkit-scrollbar-track {
  background: rgba(181, 150, 140, 0.24);
}
.drop-down-filter-2__box-wrapper::-webkit-scrollbar-thumb {
  background: var(--powder-20, #B5968C);
}
.drop-down-filter-2__box-wrapper::after, .drop-down-filter-2__box-wrapper::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 4.375rem;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .drop-down-filter-2__box-wrapper::after, .drop-down-filter-2__box-wrapper::before {
    display: none;
  }
}
.drop-down-filter-2__box-wrapper::after {
  top: 0;
  background: linear-gradient(0deg, rgba(216, 210, 208, 0) 0%, #D8D2D0 100%);
}
.drop-down-filter-2__box-wrapper::before {
  bottom: 0;
  background: linear-gradient(180deg, rgba(216, 210, 208, 0) 0%, #D8D2D0 100%);
}
.drop-down-filter-2__box-wrapper.start-scroll::before {
  opacity: 1;
  visibility: visible;
}
.drop-down-filter-2__box::after {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 1rem;
  background-image: url(../images/drop-down-filter/arrow.svg);
  background-repeat: no-repeat;
  background-position: bottom left 1rem;
}
@media (max-width: 991px) {
  .drop-down-filter-2__box::after {
    display: none;
  }
}
.drop-down-filter-2__box.active {
  opacity: 1;
  visibility: visible;
}
.drop-down-filter-2__close {
  display: none;
}
@media (max-width: 991px) {
  .drop-down-filter-2__close {
    display: flex;
    position: absolute;
    top: 1.1875rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--black, #3D3938);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.252px;
    height: 3rem;
    padding: 0.3125rem 1rem;
    background-color: #F5F5F5;
  }
}
.drop-down-filter-2__link {
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--black, #3D3938);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.drop-down-filter-2__link.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.drop-down-filter-2__search {
  width: 100%;
  background-color: var(--white, #FFF);
  background-image: url(../images/drop-down-filter/search.svg);
  background-repeat: no-repeat;
  background-position: center left 1rem;
}
@media (max-width: 991px) {
  .drop-down-filter-2__search {
    background-color: #f5f5f5;
  }
}
.drop-down-filter-2__search input {
  width: 100%;
  background-color: transparent;
  padding: 0.8125rem 0.8125rem 0.8125rem 2.875rem;
  color: var(--black);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
}
.drop-down-filter-2__search input::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.drop-down-filter-2__checkbox {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black, #3D3938);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
.drop-down-filter-2__checkbox .castom {
  border: 0.0625rem solid var(--brown-20, #6B5F5B);
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  transition: background-color 0.4s ease-in-out;
}
.drop-down-filter-2__input {
  cursor: pointer;
  position: absolute;
  inset: 0;
  opacity: 0;
  outline: none !important;
}
.drop-down-filter-2__input:checked + .castom {
  background-color: var(--brown-30, #3D3938);
}
.drop-down-filter-2__submit {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  color: var(--white, #FFF) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  background-color: var(--brown-20, #6B5F5B);
}
@media (min-width: 992px) {
  .drop-down-filter-2__submit:focus-visible, .drop-down-filter-2__submit:hover {
    background-color: var(--brown-30, #3D3938);
  }
}

@supports (-moz-appearance: none) {
  .drop-down-filter-2__box-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--powder-20, #B5968C) rgba(181, 150, 140, 0.24);
  }
}
.drop-down-filter-3 {
  position: relative;
}
.drop-down-filter-3.js-right .drop-down-filter-3__box {
  left: auto;
  right: 0;
}
.drop-down-filter-3.js-right .drop-down-filter-3__box::after {
  background-position: bottom right 1rem;
}
.drop-down-filter-3__btn {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--black, #3D3938);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .drop-down-filter-3__btn {
    font-size: 1.125rem;
  }
}
.drop-down-filter-3__btn .text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.drop-down-filter-3__btn .text i {
  display: none;
  width: 1.375rem;
  height: 1.375rem;
  color: var(--white, #FFF);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: var(--brown-20, #6B5F5B);
}
.drop-down-filter-3__btn.selected .text i {
  display: flex;
}
.drop-down-filter-3__btn .svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-down-filter-3__btn svg {
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .drop-down-filter-3__btn svg {
    transform: rotate(270deg);
  }
}
@media (min-width: 992px) {
  .drop-down-filter-3__btn.active svg {
    transform: rotate(180deg);
  }
}
.drop-down-filter-3__box {
  opacity: 0;
  visibility: hidden;
  min-width: 19.25rem;
  position: absolute;
  left: 0;
  z-index: 3;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  top: calc(100% + 1rem);
  background: var(--brown-10, #D8D2D0);
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .drop-down-filter-3__box {
    position: fixed;
    inset: 0;
    min-width: 100%;
    background: var(--white);
    padding: 5.6875rem 1rem 12.5rem;
  }
}
.drop-down-filter-3__box-wrapper {
  position: relative;
  max-height: 19.75rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 991px) {
  .drop-down-filter-3__box-wrapper {
    max-height: 100%;
  }
}
.drop-down-filter-3__box-wrapper::-webkit-scrollbar {
  width: 0.25rem;
}
.drop-down-filter-3__box-wrapper::-webkit-scrollbar-track {
  background: rgba(181, 150, 140, 0.24);
}
.drop-down-filter-3__box-wrapper::-webkit-scrollbar-thumb {
  background: var(--powder-20, #B5968C);
}
.drop-down-filter-3__box-wrapper::after, .drop-down-filter-3__box-wrapper::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 4.375rem;
  opacity: 0;
  visibility: hidden;
}
.drop-down-filter-3__box-wrapper::after {
  top: 0;
  background: linear-gradient(0deg, rgba(216, 210, 208, 0) 0%, #D8D2D0 100%);
}
.drop-down-filter-3__box-wrapper::before {
  bottom: 0;
  background: linear-gradient(180deg, rgba(216, 210, 208, 0) 0%, #D8D2D0 100%);
}
.drop-down-filter-3__box-wrapper.start-scroll::before {
  opacity: 1;
  visibility: visible;
}
.drop-down-filter-3__box::after {
  pointer-events: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 1rem;
  background-image: url(../images/drop-down-filter/arrow.svg);
  background-repeat: no-repeat;
  background-position: bottom left 1rem;
}
.drop-down-filter-3__box.active {
  opacity: 1;
  visibility: visible;
}
.drop-down-filter-3__close {
  display: none;
}
@media (max-width: 991px) {
  .drop-down-filter-3__close {
    display: flex;
    position: absolute;
    top: 1.1875rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--black, #3D3938);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    letter-spacing: 0.252px;
    height: 3rem;
    padding: 0.3125rem 1rem;
    background-color: #F5F5F5;
  }
}
.drop-down-filter-3__title {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  color: var(--brown-20, #6B5F5B);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 991px) {
  .drop-down-filter-3__title {
    position: static;
    margin-bottom: 0;
  }
}
.drop-down-filter-3__group-input {
  padding-top: 1.6875rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .drop-down-filter-3__group-input {
    padding-top: 0;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.drop-down-filter-3__input {
  flex: 1;
  min-width: 6.875rem;
  background-color: var(--white, #FFF);
}
@media (max-width: 991px) {
  .drop-down-filter-3__input {
    background-color: #f5f5f5;
  }
}
.drop-down-filter-3__input input {
  padding: 0.8125rem 0.75rem;
  width: 100%;
  color: var(--black);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  background-color: transparent;
}
.drop-down-filter-3__input input::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.drop-down-filter-3__submit {
  width: 100%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  color: var(--white, #FFF) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  background-color: var(--brown-20, #6B5F5B);
}
@media (min-width: 992px) {
  .drop-down-filter-3__submit:focus-visible, .drop-down-filter-3__submit:hover {
    background-color: var(--brown-30, #3D3938);
  }
}

@supports (-moz-appearance: none) {
  .drop-down-filter-2__box-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--powder-20, #B5968C) rgba(181, 150, 140, 0.24);
  }
}
.btn-filter {
  padding: 0.8125rem 1rem;
  height: 3rem;
  background-color: var(--gray, #F5F5F5);
  width: 100%;
  color: var(--black, #3D3938);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.196px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-filter .svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-like {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-20, #6B5F5B);
}
.btn-like.active {
  color: var(--brown-20, #6B5F5B);
}
.btn-like.active svg path {
  fill: var(--brown-20, #6B5F5B);
}
@media (min-width: 992px) {
  .btn-like:focus-visible, .btn-like:hover {
    fill: var(--brown-20, #6B5F5B);
  }
}
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3125rem 1rem;
  height: 3.25rem;
  color: var(--white, #FFF) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.224px;
  text-transform: uppercase;
  background-color: var(--brown-20, #6B5F5B);
}
@media (max-width: 991px) {
  .btn-buy {
    height: 2.75rem;
    padding: 0.3125rem 0.3125rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .btn-buy:focus-visible, .btn-buy:hover {
    background-color: var(--brown-30, #3D3938);
  }
}
.btn-buy-one {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3125rem 1rem;
  height: 3.25rem;
  color: var(--white, #FFF) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.224px;
  text-transform: uppercase;
  background-color: var(--brown-30, #3D3938);
}
.btn-buy-one .text:last-child {
  display: none;
}
@media (max-width: 991px) {
  .btn-buy-one {
    height: 2.75rem;
    padding: 0.3125rem 0.3125rem;
    font-size: 0.875rem;
  }
  .btn-buy-one .text:last-child {
    display: inline-block;
  }
  .btn-buy-one .text:first-child {
    display: none;
  }
}
@media (min-width: 992px) {
  .btn-buy-one:focus-visible, .btn-buy-one:hover {
    background-color: var(--brown-20, #6B5F5B);
  }
}
.btn-buy-from {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3125rem 1rem;
  height: 3.25rem;
  color: var(--brown-30, #3D3938);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.224px;
  text-decoration-line: underline;
}
.btn-info-del {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  height: 4.25rem;
  color: var(--brown-20, #6B5F5B);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  background-color: var(--brown-10, #D8D2D0);
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .btn-info-del:focus-visible, .btn-info-del:hover {
    background-color: var(--brown-30, #3D3938);
    color: var(--white);
  }
}
.btn-delete {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-20, #6B5F5B);
  background-color: transparent;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .btn-delete {
    width: 1.75rem;
    height: 1.75rem;
  }
  .btn-delete svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.btn-delete:focus-visible, .btn-delete:focus {
  outline: none;
}
@media (min-width: 992px) {
  .btn-delete:focus-visible, .btn-delete:hover {
    background-color: var(--brown-20);
    color: var(--white);
  }
}
.btn-basket-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3125rem 1rem;
  height: 3rem;
  color: var(--white, #FFF) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  background-color: var(--powder-20, #B5968C);
}
@media (max-width: 1240px) {
  .btn-basket-buy {
    padding: 0.3125rem 0.3125rem;
    font-size: 0.9375rem;
  }
}
.btn-basket-buy:focus-visible, .btn-basket-buy:focus {
  outline: none;
}
@media (min-width: 992px) {
  .btn-basket-buy:focus-visible, .btn-basket-buy:hover {
    background-color: var(--brown-20);
  }
}
.btn-choice {
  flex: 1;
  max-width: 100%;
  height: 3.375rem;
  padding: 0.3125rem 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--powder-20, #B5968C);
  border: 0.0625rem solid var(--powder-20, #B5968C);
  color: var(--white, #FFF);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (max-width: 1240px) {
  .btn-choice {
    height: 3.125rem;
  }
}
@media (max-width: 991px) {
  .btn-choice {
    height: 2.875rem;
    padding: 0.3125rem 0.625rem;
    font-size: 0.875rem;
  }
}
.btn-choice.active {
  background-color: transparent;
  color: var(--powder-20, #B5968C);
}
.btn-choice:focus-visible, .btn-choice:focus {
  outline: none;
}
@media (min-width: 992px) {
  .btn-choice:focus-visible, .btn-choice:hover {
    background-color: transparent;
    color: var(--powder-20, #B5968C);
  }
}
.btn-submit-type-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  height: 3.5rem;
  width: 19.1875rem;
  max-width: 100%;
  background-color: var(--powder-20, #B5968C);
  color: var(--white, #FFF);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.238px;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (max-width: 1240px) {
  .btn-submit-type-1 {
    width: 20rem;
  }
}
@media (max-width: 991px) {
  .btn-submit-type-1 {
    width: 100%;
    height: 3.25rem;
    font-size: 1rem;
    letter-spacing: 0.224px;
  }
}
.btn-submit-type-1:focus-visible, .btn-submit-type-1:focus {
  outline: none;
}
@media (min-width: 992px) {
  .btn-submit-type-1:focus-visible, .btn-submit-type-1:hover {
    background-color: var(--brown-20, #6B5F5B);
  }
}

.card-product {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
@media (min-width: 1241px) {
  .card-product:focus-visible .swiper-card-product-pagination, .card-product:hover .swiper-card-product-pagination {
    opacity: 1;
    pointer-events: auto;
  }
  .card-product:focus-visible .btn-like, .card-product:hover .btn-like {
    opacity: 1;
    pointer-events: auto;
  }
}
.card-product .btn-like {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 1240px) {
  .card-product .btn-like {
    opacity: 1;
    pointer-events: auto;
  }
}
.card-product .title {
  display: none;
}
.card-product__top {
  position: relative;
}
.card-product__top .gtoup-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.card-product__box-swiper {
  pointer-events: none;
  position: absolute;
  inset: 0 0 auto 0;
  height: 18.75rem;
}
@media (max-width: 1240px) {
  .card-product__box-swiper {
    height: 16.9375rem;
  }
}
.card-product__img {
  pointer-events: none;
  width: 100%;
  height: 18.75rem;
  min-height: 18.75rem;
  max-height: 18.75rem;
}
@media (max-width: 1240px) {
  .card-product__img {
    height: 16.9375rem;
    min-height: 16.9375rem;
    max-height: 16.9375rem;
  }
}
.card-product__img img {
  width: 100%;
  height: 100%;
  min-height: 18.75rem;
  max-height: 18.75rem;
  object-fit: cover;
}
@media (max-width: 1240px) {
  .card-product__img img {
    min-height: 16.9375rem;
    max-height: 16.9375rem;
  }
}
.card-product__link {
  padding-top: 19.5rem;
  overflow: hidden;
  color: var(--black, #3D3938);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.21px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1240px) {
  .card-product__link {
    padding-top: 17.6875rem;
  }
}
.card-product__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.5rem;
}
@media (max-width: 1240px) {
  .card-product__bottom {
    gap: 0.25rem;
  }
}
.card-product__bottom:has(.card-product__btn-info) .box-price {
  display: none;
}
.card-product__buy {
  height: 2.875rem;
  width: 8rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem;
  color: var(--brown-20, #6B5F5B) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.224px;
  text-transform: uppercase;
  border: 0.0625rem solid var(--brown-20, #6B5F5B);
}
@media (max-width: 1240px) {
  .card-product__buy {
    width: 6.75rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 991px) {
  .card-product__buy {
    width: 4.6875rem;
    height: 2.25rem;
    padding: 0.1875rem;
    font-size: 0.8125rem;
  }
}
@media (min-width: 992px) {
  .card-product__buy:focus-visible, .card-product__buy:hover {
    background-color: var(--brown-20, #6B5F5B);
    color: var(--white) !important;
  }
}
.card-product__btn-info {
  height: 2.875rem;
  flex: 1;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem;
  color: var(--brown-20, #6B5F5B) !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.224px;
  text-transform: uppercase;
  border: 0.0625rem solid var(--brown-20, #6B5F5B);
}
@media (max-width: 1240px) {
  .card-product__btn-info {
    font-size: 0.875rem;
  }
}
@media (max-width: 991px) {
  .card-product__btn-info {
    height: 2.25rem;
    padding: 0.1875rem;
    font-size: 0.8125rem;
  }
  .card-product__btn-info:first-child {
    display: none;
  }
}
@media (min-width: 992px) {
  .card-product__btn-info:focus-visible, .card-product__btn-info:hover {
    background-color: var(--brown-20, #6B5F5B);
    color: var(--white) !important;
  }
}

.gtoup-tag {
  pointer-events: none;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.tag {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.224px;
  background-color: var(--brown-20);
}
.tag.discount {
  background-color: var(--powder-20, #B5968C);
}
.tag.new {
  background-color: #63B549;
}
.tag.rare {
  background-color: #E28C41;
}
.tag.NEWPRODUCT {
  background-color: #63B549;
}
.tag.SALELEADER {
  background-color: #E28C41;
}
.tag.SPECIALOFFER {
  background-color: var(--powder-20, #B5968C);
}

.box-price {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 0.125rem;
}
.box-price .old-price {
  color: var(--gray-text, #9E9C9B);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.21px;
  text-decoration-line: line-through;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .box-price .old-price {
    font-size: 0.8125rem;
  }
}
.box-price .actual-price {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.28px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .box-price .actual-price {
    font-size: 1.0625rem;
  }
}

.pagination {
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .pagination {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.pagination-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .pagination-group {
    width: 100%;
  }
}

.detail-card {
  position: relative;
}
.detail-card .detail-card__box-swiper {
  position: absolute;
  width: 27.75rem;
  max-width: 100%;
}
.detail-card .detail-card__box-swiper .btn-like {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .detail-card .detail-card__box-swiper .btn-like {
    display: flex;
  }
}
@media (max-width: 1240px) {
  .detail-card .detail-card__box-swiper {
    width: 29.625rem;
  }
}
@media (max-width: 991px) {
  .detail-card .detail-card__box-swiper {
    position: relative;
    margin: 0 auto 1.75rem;
  }
}
@media (max-width: 1240px) {
  .detail-card .card-detail-img {
    min-height: 37rem;
    max-height: 37rem;
  }
  .detail-card .card-detail-img img {
    min-height: 37rem;
    max-height: 37rem;
  }
}
@media (max-width: 991px) {
  .detail-card .card-detail-img {
    min-height: 27.125rem;
    max-height: 27.125rem;
  }
  .detail-card .card-detail-img img {
    min-height: 27.125rem;
    max-height: 27.125rem;
  }
}
@media (max-width: 991px) {
  .detail-card .card-preview-img {
    min-height: 6.25rem;
    max-height: 6.25rem;
  }
  .detail-card .card-preview-img img {
    min-height: 6.25rem;
    max-height: 6.25rem;
  }
}
@media (max-width: 991px) {
  .detail-card .wrapper-swiper-preview-card {
    padding-top: 0.5rem;
  }
}
.detail-card__box-info {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 30.5rem;
  min-height: 44.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}
@media (max-width: 1240px) {
  .detail-card__box-info {
    margin-bottom: 2.25rem;
    padding-left: 30.875rem;
    min-height: 46.25rem;
    gap: 1.25rem;
  }
}
@media (max-width: 991px) {
  .detail-card__box-info {
    margin-bottom: 1.75rem;
    min-height: auto;
    padding-left: 0;
  }
}
.detail-card__info-top {
  display: flex;
  gap: 13.3640552995%;
}
@media (max-width: 1240px) {
  .detail-card__info-top {
    gap: 0;
  }
}
.detail-card__box-btn-mobile {
  display: none;
}
@media (max-width: 991px) {
  .detail-card__box-btn-mobile {
    display: flex;
    margin-bottom: 1.75rem;
  }
  .detail-card__box-btn-mobile .btn-buy-from {
    background-color: var(--gray, #F5F5F5);
    text-decoration-line: none;
    color: var(--brown-30, #3D3938) !important;
  }
}
.detail-card .table-character {
  width: 44.2396313364%;
}
@media (max-width: 1240px) {
  .detail-card .table-character {
    width: 100%;
    max-width: 24rem;
  }
}
.detail-card .card-purchase {
  width: 42.3963133641%;
}
@media (max-width: 1240px) {
  .detail-card .card-purchase {
    position: fixed;
    inset: auto 0 0 0;
    width: 100%;
    z-index: 2;
  }
}
.detail-card__info-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 991px) {
  .detail-card__info-bottom {
    gap: 0.75rem;
  }
}
.detail-card__info-title {
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}
.detail-card__tags {
  padding-left: 30.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 1240px) {
  .detail-card__tags {
    padding-left: 0;
  }
}
.detail-card .gtoup-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.table-character {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.table-character__line {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.125rem;
}
.table-character__line .name {
  color: var(--gray-text, #9E9C9B);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.table-character__line .phone {
  color: var(--brown-20, #6B5F5B);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  text-decoration-line: underline;
}
@media (min-width: 992px) {
  .table-character__line .phone:focus-visible, .table-character__line .phone:hover {
    color: var(--black, #3D3938);
  }
}
.table-character__line .info {
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.card-purchase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-purchase.all-sold .box-price {
  display: none;
}
.card-purchase.all-sold .box-none {
  display: flex;
  color: var(--brown-20, #6B5F5B);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.252px;
}
.card-purchase.all-sold .btn-buy-one {
  display: none;
}
@media (max-width: 1240px) {
  .card-purchase {
    flex-direction: row;
    align-items: center;
    background-color: var(--gray, #F5F5F5);
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  }
}
@media (max-width: 991px) {
  .card-purchase {
    padding: 1rem;
  }
}
.card-purchase .box-none {
  display: none;
}
.card-purchase .notify {
  display: none;
}
.card-purchase .btn-like {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
}
@media (max-width: 1240px) {
  .card-purchase .btn-like {
    width: 2rem;
    height: 2rem;
    right: 1.5rem;
    top: calc(50% - 1rem);
  }
}
@media (max-width: 991px) {
  .card-purchase .btn-like {
    display: none;
  }
}
.card-purchase__top {
  background-color: var(--gray, #F5F5F5);
  padding: 1.75rem 1.75rem 0.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1240px) {
  .card-purchase__top {
    background-color: transparent;
    padding: 0;
    flex-direction: row;
    width: calc(100% - 4rem);
    padding-right: 2.5rem;
    border-right: 0.0625rem solid rgba(107, 95, 91, 0.2);
  }
}
@media (max-width: 991px) {
  .card-purchase__top {
    width: 100%;
    padding-right: 0;
    border-right: 0;
    gap: 1rem;
  }
}
.card-purchase__status-price {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 1240px) {
  .card-purchase__status-price {
    min-width: 8.6875rem;
  }
}
@media (max-width: 991px) {
  .card-purchase__status-price {
    min-width: 6.25rem;
  }
}
@media (max-width: 1240px) {
  .card-purchase .status {
    position: absolute;
    bottom: 100%;
  }
}
.card-purchase .box-price {
  gap: 0;
}
.card-purchase .box-price .old-price {
  color: var(--gray-text, #9E9C9B);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.28px;
  text-decoration-line: line-through;
}
@media (max-width: 1240px) {
  .card-purchase .box-price .old-price {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .card-purchase .box-price .old-price {
    font-size: 0.9375rem;
  }
}
.card-purchase .box-price .actual-price {
  color: var(--brown-20, #6B5F5B);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.448px;
}
@media (max-width: 1240px) {
  .card-purchase .box-price .actual-price {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .card-purchase .box-price .actual-price {
    font-size: 1.25rem;
  }
}
.card-purchase__group-btn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 1240px) {
  .card-purchase__group-btn {
    width: 100%;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .card-purchase__group-btn {
    gap: 0.25rem;
  }
}
@media (max-width: 1240px) {
  .card-purchase__bottom {
    display: none;
  }
}
@media (max-width: 991px) {
  .card-purchase .btn-buy-from {
    display: none;
  }
}

.status {
  width: fit-content;
  display: flex;
  padding: 0.25rem 0.5rem;
  color: var(--white, #FFF);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 0.224px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1240px) {
  .status {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 991px) {
  .status {
    padding: 0.125rem 0.375rem;
  }
}
.status.in-stock {
  background-color: var(--powder-20, #B5968C);
}
.status.in-stock i:last-child {
  display: none;
}
.status.sold {
  background-color: var(--brown-30, #3D3938);
}
.status.sold i:first-child {
  display: none;
}
.status i {
  font-style: normal;
}

.detail-tag {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 62.5rem;
  color: var(--powder-20, #B5968C);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  border: 0.0625rem solid var(--powder-20, #B5968C);
}

.card-delivery__window {
  padding: 2.75rem;
  width: 45.3125rem;
  max-width: 100%;
  background-color: var(--white);
}
@media (max-width: 1240px) {
  .card-delivery__window {
    width: 35.375rem;
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .card-delivery__window {
    padding: 1.5rem 1rem;
  }
}
.card-delivery__title {
  margin-bottom: 1.75rem;
  color: var(--black, #3D3938);
  text-align: center;
  font-family: IBMPlexSans;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.448px;
}
@media (max-width: 1240px) {
  .card-delivery__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .card-delivery__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.card-delivery__desc {
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
@media (max-width: 1240px) {
  .card-delivery__desc {
    font-size: 1.0625rem;
  }
}
@media (max-width: 991px) {
  .card-delivery__desc {
    font-size: 1rem;
  }
}
.card-delivery__desc h4 {
  margin-bottom: 0.75rem;
  color: var(--brown-20, #6B5F5B);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 1240px) {
  .card-delivery__desc h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 991px) {
  .card-delivery__desc h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .card-delivery__close {
    display: none !important;
  }
}
.card-delivery__close-mobile {
  display: none;
}
@media (max-width: 991px) {
  .card-delivery__close-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    width: 100%;
    height: 3.25rem;
    color: var(--brown-30, #3D3938);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.224px;
    text-transform: uppercase;
    background-color: var(--gray, #F5F5F5);
  }
}

.swiper-detail-card {
  overflow: hidden;
}
.swiper-detail-card .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.swiper-detail-card .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.swiper-detail-card .swiper-slide.js-trigger-gallery {
  cursor: pointer;
}

.wrapper-swiper-preview-card {
  position: relative;
  padding-top: 0.75rem;
}
.wrapper-swiper-preview-card__group-btn {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: calc(50% - 1rem);
  left: -1rem;
  right: -1rem;
}

.swiper-preview-card {
  overflow: hidden;
}
.swiper-preview-card .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.swiper-preview-card .swiper-slide .card-preview-img {
  opacity: 0.6;
  transition: opacity 0.4s ease-in-out;
}
.swiper-preview-card .swiper-slide.swiper-slide-thumb-active .card-preview-img {
  opacity: 1;
}

.card-detail-img {
  width: 100%;
  min-height: 37.1875rem;
  max-height: 37.1875rem;
  overflow: hidden;
}
.card-detail-img img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  min-height: 37.1875rem;
  max-height: 37.1875rem;
  object-fit: cover;
}

.card-preview-img {
  cursor: pointer;
  width: 100%;
  min-height: 8.5rem;
  max-height: 8.5rem;
  overflow: hidden;
}
.card-preview-img img {
  width: 100%;
  height: 100%;
  min-height: 8.5rem;
  max-height: 8.5rem;
  object-fit: cover;
}

.swiper-btn-type-2 {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--black);
  background-color: #F5F5F5;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.swiper-btn-type-2.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (min-width: 992px) {
  .swiper-btn-type-2:focus-visible, .swiper-btn-type-2:hover {
    background-color: var(--brown-20);
    color: var(--white);
  }
}

.modal-gallery {
  display: none; /* Скрыта по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.64); /* Прозрачный фон */
  z-index: 9999;
  justify-content: center;
  overflow: auto;
  padding: 1.875rem 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-gallery::-webkit-scrollbar {
  display: none;
}
.modal-gallery__content {
  max-width: 100%;
  margin: auto 0;
}

.modal-gallery.active {
  display: flex;
  animation: fadeIn 0.7s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-gallery .gtoup-tag {
  display: none;
}
.modal-gallery .btn-like {
  display: none;
}
.modal-gallery__close svg {
  pointer-events: none;
}
@media (max-width: 991px) {
  .modal-gallery__close {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
  }
}
.modal-gallery .detail-card__box-swiper {
  position: relative;
  inset: auto;
  width: 49.125rem;
  max-width: 100%;
}
@media (max-width: 1240px) {
  .modal-gallery .detail-card__box-swiper {
    width: 100%;
  }
}
.modal-gallery .wrapper-swiper-detail-card {
  padding: 0 3.75rem;
}
@media (max-width: 1240px) {
  .modal-gallery .wrapper-swiper-detail-card {
    padding: 0 5.25rem;
  }
}
@media (max-width: 991px) {
  .modal-gallery .wrapper-swiper-detail-card {
    padding: 0;
  }
}
.modal-gallery .swiper-detail-card {
  width: 100%;
}
.modal-gallery .card-detail-img {
  min-height: calc(100vh - 4.125rem - 11.4375rem);
  max-height: calc(100vh - 4.125rem - 11.4375rem);
}
.modal-gallery .card-detail-img img {
  min-height: calc(100vh - 4.125rem - 11.4375rem);
  max-height: calc(100vh - 4.125rem - 11.4375rem);
}
.modal-gallery .card-preview-img {
  min-height: 6.375rem;
  max-height: 6.375rem;
}
.modal-gallery .card-preview-img img {
  min-height: 6.375rem;
  max-height: 6.375rem;
}
@media (max-width: 991px) {
  .modal-gallery .card-preview-img {
    min-height: 6.25rem;
    max-height: 6.25rem;
  }
  .modal-gallery .card-preview-img img {
    min-height: 6.25rem;
    max-height: 6.25rem;
  }
}
.modal-gallery .swiper-detail-card .swiper-slide {
  opacity: 0 !important;
}
.modal-gallery .swiper-detail-card .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.modal-gallery .wrapper-swiper-preview-card {
  position: static;
  padding-top: 1rem;
}
@media (max-width: 1240px) {
  .modal-gallery .wrapper-swiper-preview-card {
    padding: 1rem 6.25rem 0 6.25rem;
  }
}
@media (max-width: 991px) {
  .modal-gallery .wrapper-swiper-preview-card {
    padding: 0.5rem 0 0 0;
  }
}
.modal-gallery .wrapper-swiper-preview-card__group-btn {
  top: calc(50% - 1.75rem);
}
@media (max-width: 1240px) {
  .modal-gallery .wrapper-swiper-preview-card__group-btn {
    left: 0;
    right: 0;
  }
}
@media (max-width: 991px) {
  .modal-gallery .wrapper-swiper-preview-card__group-btn {
    top: auto;
    bottom: 2.125rem;
    left: -0.5rem;
    right: -0.5rem;
  }
}
.modal-gallery .swiper-preview-card .swiper-slide {
  position: relative;
}
.modal-gallery .swiper-preview-card .swiper-slide::before {
  content: "";
  cursor: pointer;
  position: absolute;
  inset: 0;
  border: 0.25rem solid transparent;
  transition: border-color 0.4s ease-in-out;
}
.modal-gallery .swiper-preview-card .swiper-slide .card-preview-img {
  opacity: 1;
}
.modal-gallery .swiper-preview-card .swiper-slide-thumb-active::before {
  border-color: var(--powder-20, #B5968C);
}
.modal-gallery .swiper-btn-type-2 {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .modal-gallery .swiper-btn-type-2 {
    width: 2rem;
    height: 2rem;
  }
}

.js-zoom-result {
  position: absolute;
  top: 0;
  left: 30.5rem;
  right: 0;
  z-index: 2;
  display: none;
  height: 50rem;
  background-repeat: no-repeat;
  border: 0.0625rem solid #ddd;
}
@media (max-width: 1240px) {
  .js-zoom-result {
    left: 30.875rem;
  }
}

.js-zoom-result.active {
  display: block;
}

.basket {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1240px) {
  .basket {
    gap: 1.5rem;
  }
}
@media (max-width: 1020px) {
  .basket {
    flex-direction: column;
    gap: 2rem;
  }
}
.basket__left {
  width: 73.7463126844%;
}
@media (max-width: 1240px) {
  .basket__left {
    width: 71.9135802469%;
  }
}
@media (max-width: 1020px) {
  .basket__left {
    width: 100%;
  }
}
.basket__right {
  flex: 1;
}
.basket__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.basket__list li:last-child .card-basket {
  padding-bottom: 0;
  border-bottom: none;
}
.basket__order-success-text {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1240px) {
  .basket__order-success-text {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .basket__order-success-text {
    font-size: 1rem;
  }
}
.basket.order .basket__goup-input-text {
  color: var(--gray-text, #9E9C9B);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 991px) {
  .basket.order .basket__goup-input-text {
    font-size: 0.8125rem;
  }
}
.basket.order .basket__left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 991px) {
  .basket.order .basket__left {
    gap: 1.5rem;
  }
}
.basket.order .basket__choice-line {
  display: flex;
  align-items: center;
  width: 31.25rem;
  max-width: 100%;
}
@media (max-width: 1240px) {
  .basket.order .basket__choice-line {
    width: 100%;
  }
}
.basket.order .basket__choice-content {
  display: none;
  flex-direction: column;
  gap: 2.25rem;
}
.basket.order .basket__choice-content.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}
@media (max-width: 1240px) {
  .basket.order .basket__choice-content {
    gap: 2rem;
  }
}
.basket.order .basket__choice-content-item {
  width: 31.25rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 1240px) {
  .basket.order .basket__choice-content-item {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .basket.order .basket__choice-content-item {
    gap: 1rem;
  }
}
.basket.order .basket__choice-content-title {
  color: var(--black, #3D3938);
  font-family: IBMPlexSans;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.336px;
}
@media (max-width: 991px) {
  .basket.order .basket__choice-content-title {
    font-size: 1.25rem;
  }
}
.basket.order .basket__goup-input {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.basket.order .card-basket {
  padding-right: 2.25rem;
}
@media (max-width: 1240px) {
  .basket.order .card-basket {
    padding-right: 0px;
  }
}
@media (max-width: 1240px) {
  .basket.order .card-basket .box-container__left {
    display: none;
  }
}
.basket.order .card-basket .volume {
  padding: 0.5rem 1.125rem;
  color: #000;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.238px;
}

.card-basket-total {
  position: sticky;
  top: 8.125rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  background-color: var(--gray, #F5F5F5);
}
@media (max-width: 1240px) {
  .card-basket-total {
    top: 12.125rem;
    padding: 1.25rem;
  }
}
@media (max-width: 1020px) {
  .card-basket-total {
    position: static;
  }
}
.card-basket-total__top {
  margin-bottom: 1rem;
}
@media (max-width: 1240px) {
  .card-basket-total__top {
    margin-bottom: 0.75rem;
  }
}
.card-basket-total__title {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.card-basket-total__table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 1240px) {
  .card-basket-total__table {
    margin-bottom: 1rem;
  }
}
.card-basket-total__table-line {
  display: flex;
  justify-content: space-between;
}
.card-basket-total__table-line .name {
  color: var(--gray-text, #9E9C9B);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1240px) {
  .card-basket-total__table-line .name {
    font-size: 1rem;
  }
}
.card-basket-total__table-line .between {
  margin: 0 0.5rem;
  min-width: 1.625rem;
  flex: 1;
  background-image: linear-gradient(to right, #A1A1A2 0%, #A1A1A2 60%, transparent 40%, transparent 100%);
  background-size: 0.625rem 0.9px;
  background-position: left bottom 0.25rem;
  background-repeat: repeat-x;
}
.card-basket-total__table-line .info {
  color: var(--black, #3D3938);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1240px) {
  .card-basket-total__table-line .info {
    font-size: 1rem;
  }
}
.card-basket-total__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media (max-width: 1240px) {
  .card-basket-total__bottom {
    gap: 1.5rem;
  }
}
.card-basket-total__bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-basket-total__bottom-line .name {
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1240px) {
  .card-basket-total__bottom-line .name {
    font-size: 1.0625rem;
  }
}
.card-basket-total__bottom-line .between {
  display: none;
}
.card-basket-total__bottom-line .info {
  color: var(--black, #3D3938);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 1240px) {
  .card-basket-total__bottom-line .info {
    font-size: 1.375rem;
  }
}
.card-basket-total__check {
  padding-top: 0.75rem;
}

.card-basket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid var(--gray);
}
@media (max-width: 991px) {
  .card-basket {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    position: relative;
  }
}
.card-basket__main-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1240px) {
  .card-basket__main-info {
    gap: 0.75rem;
  }
}
@media (max-width: 991px) {
  .card-basket__main-info {
    gap: 0.5625rem;
    width: calc(100% - 2.5rem);
  }
}
.card-basket__img {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 1240px) {
  .card-basket__img {
    width: 4.25rem;
    height: 4.25rem;
  }
}
.card-basket__img img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-basket__info {
  max-width: 25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 1240px) {
  .card-basket__info {
    max-width: 13.9375rem;
    gap: 0.375rem;
  }
}
@media (max-width: 991px) {
  .card-basket__info {
    max-width: 100%;
    gap: 0.25rem;
  }
}
.card-basket__title {
  color: var(--black, #3D3938);
  font-family: "IBMPlexSans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.224px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1240px) {
  .card-basket__title {
    font-size: 0.9375rem;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 991px) {
  .card-basket__title {
    font-size: 0.875rem;
  }
}
.card-basket .table-character__line {
  flex-direction: row;
  gap: 0.125rem;
  align-items: center;
}
.card-basket .table-character__line .name {
  font-size: 0.75rem;
}
.card-basket .table-character__line .info {
  font-size: 0.875rem;
}
@media (max-width: 991px) {
  .card-basket__box-delete {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.box-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .box-container {
    width: 100%;
    justify-content: space-between;
  }
}
.box-container .box-price {
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
}
@media (max-width: 991px) {
  .box-container .box-price {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
}
.box-container .old-price {
  font-size: 1.0625rem;
}
@media (max-width: 991px) {
  .box-container .old-price {
    font-size: 0.875rem;
  }
}
.box-container .actual-price {
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .box-container .actual-price {
    font-size: 1.125rem;
  }
}

.box-count {
  display: flex;
  align-items: center;
}
.box-count__btn {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black, #3D3938);
  background-color: var(--gray);
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.box-count__btn:focus-visible, .box-count__btn:focus {
  outline: none;
}
@media (min-width: 992px) {
  .box-count__btn:focus-visible, .box-count__btn:hover {
    background-color: var(--brown-20);
    color: var(--white);
  }
}
.box-count__input {
  pointer-events: none;
  min-width: 2.75rem;
  width: 2.75rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.input-type-1 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (max-width: 991px) {
  .input-type-1 {
    gap: 0.5rem;
  }
}
.input-type-1.local-input {
  background-image: url("../images/local-input/icon.svg");
  background-position: 1rem center;
  background-repeat: no-repeat;
}
.input-type-1.local-input .input-type-1__input {
  padding: 0.9375rem 1.25rem 0.9375rem 3.25rem;
}
.input-type-1__input {
  width: 100%;
  height: 3.4375rem;
  padding: 0.9375rem 1.25rem;
  background-color: transparent;
  border: 0.0625rem solid var(--powder-20, #B5968C);
  color: var(--black, #3D3938);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
@media (max-width: 991px) {
  .input-type-1__input {
    height: 3.25rem;
    padding: 0.9375rem 1rem;
    font-size: 1rem;
  }
}
.input-type-1__input.error {
  border-color: #EC221F;
}
.input-type-1__input.error::placeholder {
  color: #EC221F;
}
.input-type-1__input.error + .error-message {
  display: block;
}
.input-type-1__input::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.input-type-1__input:focus-visible, .input-type-1__input:focus {
  outline: none;
}
.input-type-1 .error-message {
  display: none;
  color: #EC221F;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.textarea-type-1 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.textarea-type-1__text {
  resize: none;
  width: 100%;
  height: 10.25rem;
  padding: 1rem 1.25rem;
  background-color: var(--white, #FFF);
  border: 0.0625rem solid var(--powder-20, #B5968C);
  color: var(--black, #3D3938);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 991px) {
  .textarea-type-1__text {
    height: 7.375rem;
    padding: 0.9375rem 1rem;
    font-size: 1rem;
  }
}
.textarea-type-1__text::-webkit-scrollbar {
  display: none;
}
.textarea-type-1__text::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.textarea-type-1__text:focus-visible, .textarea-type-1__text:focus {
  outline: none;
}

.radio-type-1 {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  height: 3.5rem;
  padding: 1rem 1.25rem;
  border: 0.0625rem solid var(--brown-10, #D8D2D0);
  transition: border-color 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .radio-type-1 {
    height: 3.25rem;
    padding: 0.9375rem 0.875rem;
  }
}
.radio-type-1:has(.radio-type-1__input:checked) {
  border-color: var(--brown-20, #6B5F5B);
}
.radio-type-1__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  outline: none !important;
}
.radio-type-1__input:checked + .castom {
  border-color: var(--brown-20, #6B5F5B);
}
.radio-type-1__input:checked + .castom::before {
  opacity: 1;
}
.radio-type-1__input:checked + .castom + .text {
  color: var(--brown-20, #6B5F5B);
}
.radio-type-1 .castom {
  margin: 0.1875rem;
  border: 0.0625rem solid var(--gray-text, #9E9C9B);
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease-in-out;
}
.radio-type-1 .castom::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100%;
  background-color: var(--brown-20, #6B5F5B);
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
.radio-type-1 .text {
  color: var(--gray-text, #9E9C9B);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: color 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .radio-type-1 .text {
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.search-type-1 {
  width: 100%;
}
.search-type-1__box {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .search-type-1__box {
    position: relative;
    gap: 0;
  }
}
.search-type-1__label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/search-type-1/search.svg");
  background-repeat: no-repeat;
  background-position: center left 1rem;
}
@media (max-width: 991px) {
  .search-type-1__label {
    background-image: none;
  }
}
.search-type-1__input {
  width: 100%;
  height: 3.375rem;
  padding: 0.3125rem 1rem 0.3125rem 3rem;
  border: 0.0625rem solid var(--brown-10);
  background-color: transparent;
  color: var(--black);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.238px;
}
@media (max-width: 1240px) {
  .search-type-1__input {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .search-type-1__input {
    height: 3.125rem;
    padding: 0.3125rem 2.5rem 0.3125rem 1rem;
  }
}
.search-type-1__input::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.search-type-1__btn {
  width: 11.25rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 1rem;
  height: 3.375rem;
  border: 0.0625rem solid var(--powder-20, #B5968C);
  background-color: var(--powder-20, #B5968C);
  color: var(--white);
  color: var(--white, #FFF);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.224px;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .search-type-1__btn {
    position: absolute;
    top: 0.9375rem;
    right: 1rem;
    bottom: 0.9375rem;
    width: 1.375rem;
    height: 1.375rem;
    padding: 0;
    background-color: transparent;
    border: none;
    color: var(--black);
  }
}
@media (max-width: 991px) {
  .search-type-1__btn .text {
    display: none;
  }
}
.search-type-1__btn .svg {
  display: none;
}
@media (max-width: 991px) {
  .search-type-1__btn .svg {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.search-type-1__btn:focus-visible, .search-type-1__btn:focus {
  outline: none;
}
@media (min-width: 992px) {
  .search-type-1__btn:focus-visible, .search-type-1__btn:hover {
    background-color: transparent;
    color: var(--powder-20, #B5968C);
  }
}

.page-error__container {
  width: 49.75rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .page-error__container {
    width: 43.5rem;
  }
}
@media (max-width: 991px) {
  .page-error__container {
    width: 28.125rem;
    padding: 0 1rem;
  }
}
.page-error__content {
  display: flex;
  align-items: center;
  gap: 5.527638191%;
}
@media (max-width: 1240px) {
  .page-error__content {
    gap: 7.4712643678%;
  }
}
@media (max-width: 991px) {
  .page-error__content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.page-error__box-img {
  width: 15.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1240px) {
  .page-error__box-img {
    width: 11.3125rem;
  }
}
@media (max-width: 991px) {
  .page-error__box-img {
    width: 5.9375rem;
  }
}
.page-error__box-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.page-error__box-text {
  display: flex;
  flex-direction: column;
}
.page-error__title {
  margin-bottom: 1.25rem;
  color: var(--brown-20, #6B5F5B);
  font-family: "IBMPlexSans";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.504px;
}
@media (max-width: 1240px) {
  .page-error__title {
    font-size: 2rem;
    letter-spacing: 0.448px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .page-error__title {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.28px;
    margin-bottom: 1.5rem;
  }
}
.page-error__description {
  margin-bottom: 2rem;
  width: 28.75rem;
  max-width: 100%;
  color: var(--brown-20, #6B5F5B);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 2.75rem;
}
@media (max-width: 1240px) {
  .page-error__description {
    font-size: 1.0625rem;
  }
}
@media (max-width: 991px) {
  .page-error__description {
    display: none;
  }
}
.page-error__box-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 1240px) {
  .page-error__box-buttons {
    gap: 0.625rem;
  }
}
@media (max-width: 991px) {
  .page-error__box-buttons {
    flex-direction: column;
    gap: 0.625rem;
  }
}
.page-error__button {
  flex: 1;
  min-height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--powder-20, #B5968C);
  background-color: transparent;
  color: var(--powder-20, #B5968C);
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: 0.238px;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.page-error__button:focus-visible, .page-error__button:focus {
  outline: none;
}
@media (max-width: 1240px) {
  .page-error__button {
    min-height: 3.125rem;
  }
}
@media (max-width: 991px) {
  .page-error__button {
    min-height: 2.625rem;
    width: 12.875rem;
    max-width: 100%;
    font-size: 1rem;
    letter-spacing: 0.224px;
  }
}
.page-error__button.main {
  background-color: var(--powder-20, #B5968C);
  color: var(--white, #FFF);
}
@media (min-width: 992px) {
  .page-error__button.main:focus-visible, .page-error__button.main:hover {
    background-color: var(--white, #FFF);
    color: var(--powder-20, #B5968C);
  }
}
@media (min-width: 992px) {
  .page-error__button.catalog:focus-visible, .page-error__button.catalog:hover {
    background-color: var(--powder-20, #B5968C);
    color: var(--white, #FFF);
  }
}

.box-brands__box-search {
  width: 50%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
@media (max-width: 1240px) {
  .box-brands__box-search {
    width: 100%;
  }
}
.box-brands__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1240px) {
  .box-brands__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 991px) {
  .box-brands__list {
    width: 28.125rem;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.card-brand {
  min-height: 20.625rem;
  display: flex;
}
@media (max-width: 991px) {
  .card-brand {
    min-height: 16rem;
  }
}
.card-brand .title {
  display: none;
}
.card-brand__link {
  padding: 1.75rem;
  border: 0.0625rem solid var(--gray, #F5F5F5);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-brand__link:focus-visible, .card-brand__link:focus {
  outline: none;
}
@media (max-width: 991px) {
  .card-brand__link {
    padding: 1.25rem;
  }
}
@media (min-width: 992px) {
  .card-brand__link:focus-visible, .card-brand__link:hover {
    background-color: var(--gray);
  }
}
.card-brand__img {
  padding: 2rem 1.25rem;
  width: 100%;
  height: 11.5rem;
  min-height: 11.5rem;
  max-height: 11.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .card-brand__img {
    height: 9.5rem;
    min-height: 9.5rem;
    max-height: 9.5rem;
  }
}
.card-brand__img img {
  max-height: 7.5rem;
  object-fit: contain;
}
.card-brand__name {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .card-brand__name {
    font-size: 1.125rem;
  }
}

.detail-brand__content {
  display: flex;
  gap: 2.25rem;
}
@media (max-width: 1240px) {
  .detail-brand__content {
    flex-direction: column-reverse;
    gap: 1.75rem;
  }
}
@media (max-width: 1020px) {
  .detail-brand__content {
    gap: 1.5rem;
  }
}
.detail-brand__content-left {
  width: 63.1268436578%;
}
@media (max-width: 1240px) {
  .detail-brand__content-left {
    width: 100%;
  }
}
.detail-brand__content-left .detail-brand__text {
  margin-bottom: 1.25rem;
}
.detail-brand__content-left .detail-brand__text:last-child {
  margin-bottom: 0;
}
.detail-brand__content-left .detail-brand__img {
  margin-bottom: 1.25rem;
}
.detail-brand__content-left .detail-brand__img:last-child {
  margin-bottom: 0;
}
.detail-brand__content-right {
  flex: 1;
}
.detail-brand__main-slider .main-slider__bottom {
  padding-top: 0;
  border-top: none;
}
.detail-brand__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1240px) {
  .detail-brand__img {
    gap: 0.5rem;
  }
}
.detail-brand__img img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  max-height: 34.75rem;
  object-fit: contain;
}
.detail-brand__img-text {
  text-align: center;
  color: var(--gray-text, #9E9C9B);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1240px) {
  .detail-brand__img-text {
    font-size: 0.875rem;
  }
}

.card-brand-logo {
  position: sticky;
  top: 8.5rem;
}
.card-brand-logo__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  border: 0.0625rem solid var(--gray, #F5F5F5);
  width: 100%;
  height: 25rem;
  max-height: 25rem;
  min-height: 25rem;
}
.card-brand-logo__img img {
  pointer-events: none;
  max-height: 14rem;
  object-fit: contain;
}

.box-upload-next__link {
  cursor: pointer;
  padding: 1rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  color: var(--brown-20, #6B5F5B);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border: 0.0625rem solid var(--brown-20, #6B5F5B);
}
@media (max-width: 991px) {
  .box-upload-next__link {
    padding: 0.875rem 1.25rem;
    gap: 0.625rem;
  }
}
.box-upload-next__link:focus-visible, .box-upload-next__link:focus {
  outline: none;
}
.box-upload-next__link.disabled {
  pointer-events: none;
}
.box-upload-next__link.disabled .loader {
  display: flex;
}
.box-upload-next__link .loader {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid var(--brown-10, #D8D2D0);
  border-top-color: var(--brown-20, #6B5F5B);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.video-mag__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1240px) {
  .video-mag__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 991px) {
  .video-mag__list {
    width: 28.125rem;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}

.card-video {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-video__btn {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-video__btn:focus-visible, .card-video__btn:focus {
  outline: none;
}
@media (min-width: 992px) {
  .card-video__btn:focus-visible + .box-video .play, .card-video__btn:hover + .box-video .play {
    width: 3.625rem;
    height: 3.625rem;
  }
}
.card-video__btn span {
  display: none;
}
.card-video .box-video {
  position: relative;
  width: 100%;
  height: 22.25rem;
  max-height: 22.25rem;
  min-height: 22.25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .card-video .box-video {
    height: 14.5rem;
    max-height: 14.5rem;
    min-height: 14.5rem;
  }
}
.card-video .box-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-video .box-video .tag {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: var(--powder-20, #B5968C);
}
@media (max-width: 1240px) {
  .card-video .box-video .tag {
    right: 3.6875rem;
  }
}
@media (max-width: 991px) {
  .card-video .box-video .tag {
    display: none;
  }
}
.card-video .box-video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-video__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 1240px) {
  .card-video__bottom {
    gap: 0.5rem;
  }
}
.card-video__title {
  color: var(--brown-30, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1240px) {
  .card-video__title {
    font-size: 1.125rem;
  }
}
.card-video__desc {
  overflow: hidden;
  color: var(--gray-text, #9E9C9B);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.21px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1240px) {
  .card-video__desc {
    font-size: 0.875rem;
  }
}

.viewer-video__close {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
}
.viewer-video__window {
  width: 84.5625rem;
  /* height: 760px;
  max-height: 760px; */
  max-width: 100%;
}
@media (max-width: 1240px) {
  .viewer-video__window {
    width: 60.375rem;
    /* height: 647px;
    max-height: 674px; */
  }
}
@media (max-width: 991px) {
  .viewer-video__window {
    width: 37.5rem;
    /* height: 232px;
    max-height: 232px; */
  }
}
.viewer-video__window iframe {
  width: 100%;
  height: 47.5rem;
  max-height: 47.5rem;
  object-fit: cover;
}
@media (max-width: 1240px) {
  .viewer-video__window iframe {
    height: 40.4375rem;
    max-height: 42.125rem;
  }
}
@media (max-width: 991px) {
  .viewer-video__window iframe {
    height: 14.5rem;
    max-height: 14.5rem;
  }
}
.viewer-video__bottom {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.viewer-video__title {
  color: var(--white, #FFF);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.28px;
}
@media (max-width: 991px) {
  .viewer-video__title {
    font-size: 1rem;
  }
}
.viewer-video__desc {
  color: var(--white, #FFF);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.21px;
}
@media (max-width: 991px) {
  .viewer-video__desc {
    font-size: 0.8125rem;
  }
}

.contacts__content {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 1240px) {
  .contacts__content {
    gap: 1.5rem;
  }
}
@media (max-width: 991px) {
  .contacts__content {
    flex-direction: column;
    gap: 1.75rem;
  }
}
.contacts__left {
  width: 27rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1240px) {
  .contacts__left {
    width: 22.75rem;
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .contacts__left {
    width: 100%;
    gap: 1.5rem;
  }
}
.contacts__right {
  width: calc(100% - 27rem - 2.5rem);
}
@media (max-width: 1240px) {
  .contacts__right {
    width: calc(100% - 22.75rem - 1.5rem);
  }
}
@media (max-width: 991px) {
  .contacts__right {
    width: 100%;
    height: 19.5rem;
  }
}
.contacts__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1240px) {
  .contacts__top {
    gap: 1rem;
  }
}
.contacts .button-brown-main {
  width: 100%;
}
.contacts__map {
  width: 100%;
  height: 100%;
}

.box-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.box-info__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.box-info__group .address {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 1240px) {
  .box-info__group .address {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .box-info__group .address {
    font-size: 1.0625rem;
  }
}
.box-info__group .desc {
  color: var(--black, #3D3938);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 1240px) {
  .box-info__group .desc {
    font-size: 0.875rem;
  }
}
.box-info .name {
  color: var(--gray-text, #9E9C9B);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
@media (max-width: 1240px) {
  .box-info .name {
    font-size: 0.9375rem;
  }
}
@media (max-width: 991px) {
  .box-info .name {
    font-size: 0.875rem;
  }
}
.box-info .phone {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.box-info .phone span {
  margin-left: 0.25rem;
}
@media (max-width: 1240px) {
  .box-info .phone {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .box-info .phone {
    font-size: 1.0625rem;
  }
}
.box-info .phone:focus-visible, .box-info .phone:focus {
  outline: none;
}
@media (min-width: 992px) {
  .box-info .phone:focus-visible, .box-info .phone:hover {
    color: var(--powder-20);
  }
}
.box-info .mail {
  color: var(--black, #3D3938);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 1240px) {
  .box-info .mail {
    font-size: 1.125rem;
  }
}
@media (max-width: 991px) {
  .box-info .mail {
    font-size: 1.0625rem;
  }
}
.box-info .mail:focus-visible, .box-info .mail:focus {
  outline: none;
}
@media (min-width: 992px) {
  .box-info .mail:focus-visible, .box-info .mail:hover {
    color: var(--powder-20);
  }
}

.map-contact {
  width: 100%;
  height: 100%;
}

.requisites__window {
  width: 26.9375rem;
  max-width: 100%;
  padding: 1.75rem 1.5rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 1240px) {
  .requisites__window {
    width: 23.875rem;
    gap: 1.5rem;
  }
}
@media (max-width: 991px) {
  .requisites__window {
    width: 100%;
    padding: 1.5rem;
  }
}
.requisites__window .button-brown-main {
  width: 100%;
  gap: 0.5rem;
}
.requisites__window .button-brown-main .svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.requisites__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.requisites__title {
  color: var(--black, #3D3938);
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.336px;
}
.requisites__desc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--black, #3D3938);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media (max-width: 1240px) {
  .requisites__desc {
    font-size: 1.0625rem;
  }
}
@media (max-width: 991px) {
  .requisites__desc {
    font-size: 1rem;
  }
}

.feedback {
  padding: 3.25rem;
  background-color: var(--gray);
  background-image: url("../images/feedback/bg.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
@media (max-width: 1240px) {
  .feedback {
    padding: 2.25rem;
    background-image: url("../images/feedback/bg1200.svg");
  }
}
@media (max-width: 991px) {
  .feedback {
    padding: 1.5rem;
    background-image: none;
  }
}

.form-type-1 {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (max-width: 1240px) {
  .form-type-1 {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .form-type-1 {
    gap: 1.5rem;
  }
}
.form-type-1__title {
  color: var(--black, #3D3938);
  font-family: "IBMPlexSans";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.504px;
}
@media (max-width: 1240px) {
  .form-type-1__title {
    font-size: 2rem;
    letter-spacing: 0.448px;
  }
}
@media (max-width: 991px) {
  .form-type-1__title {
    font-size: 1.75rem;
    letter-spacing: 0.392px;
  }
}
.form-type-1__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1240px) {
  .form-type-1__wrapper {
    gap: 1.75rem;
  }
}
@media (max-width: 991px) {
  .form-type-1__wrapper {
    gap: 1.5rem;
  }
}
.form-type-1__group-input {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1240px) {
  .form-type-1__group-input {
    gap: 0.75rem;
  }
}
.form-type-1 .input-type-2 {
  width: calc(50% - 0.75rem);
}
@media (max-width: 1240px) {
  .form-type-1 .input-type-2 {
    width: calc(50% - 0.625rem);
  }
}
@media (max-width: 991px) {
  .form-type-1 .input-type-2 {
    width: 100%;
  }
}
.form-type-1 .textarea-type-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(50% - 0.75rem);
}
@media (max-width: 1240px) {
  .form-type-1 .textarea-type-2 {
    width: calc(50% - 0.625rem);
  }
}
@media (max-width: 991px) {
  .form-type-1 .textarea-type-2 {
    position: static;
    width: 100%;
  }
}
.form-type-1 .textarea-type-2__textarea {
  min-height: 9.75rem;
  height: 100%;
}
.form-type-1__group-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (max-width: 1240px) {
  .form-type-1__group-btns {
    gap: 1rem;
  }
}
.form-type-1 .check {
  align-items: start;
}
@media (min-width: 1241px) {
  .form-type-1 .check {
    align-items: center;
  }
}
.form-type-1 .check-label {
  max-width: 27.625rem;
}
@media (min-width: 1241px) {
  .form-type-1 .check-label {
    max-width: 100%;
  }
}

.input-type-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.input-type-2__input {
  width: 100%;
  height: 3.375rem;
  border: 0.0625rem solid var(--white);
  background-color: var(--white);
  padding: 0.9375rem 1.25rem;
  color: var(--black);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
@media (max-width: 1240px) {
  .input-type-2__input {
    font-size: 1.0625rem;
  }
}
.input-type-2__input.error {
  border-color: #EC221F;
}
.input-type-2__input.error::placeholder {
  color: #EC221F;
}
.input-type-2__input.error + .error-message {
  display: inline-block;
}
.input-type-2__input::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.input-type-2__input:focus-visible, .input-type-2__input:focus {
  outline: none;
}
.input-type-2 .error-message {
  display: none;
  color: #EC221F;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.textarea-type-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.textarea-type-2__textarea {
  width: 100%;
  height: 12.375rem;
  border: 0.0625rem solid var(--white);
  background-color: var(--white);
  padding: 1rem 1.25rem;
  color: var(--black);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  resize: none;
}
@media (max-width: 1240px) {
  .textarea-type-2__textarea {
    font-size: 1.0625rem;
  }
}
.textarea-type-2__textarea.error {
  border-color: #EC221F;
}
.textarea-type-2__textarea.error::placeholder {
  color: #EC221F;
}
.textarea-type-2__textarea.error + .error-message {
  display: inline-block;
}
.textarea-type-2__textarea::placeholder {
  color: var(--gray-text, #9E9C9B);
}
.textarea-type-2__textarea:focus-visible, .textarea-type-2__textarea:focus {
  outline: none;
}
.textarea-type-2 .error-message {
  display: none;
  color: #EC221F;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.cookie {
  display: none;
  opacity: 0;
  transform: translateY(-0.625rem);
  pointer-events: none;
  position: fixed;
  z-index: 20;
  left: 0;
  bottom: 3.5rem;
  width: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition-behavior: allow-discrete;
}
.cookie.show {
  display: block;
  opacity: 1;
  transform: none;
}
.cookie__container {
  display: flex;
  max-width: 114.5rem;
  align-items: center;
  justify-content: end;
}
.cookie__window {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: auto;
  padding: 1.5rem;
  width: 20rem;
  max-width: 100%;
  background-color: var(--gray, #F5F5F5);
}
@media (max-width: 991px) {
  .cookie__window {
    width: 28.125rem;
  }
}
.cookie__message {
  color: var(--black, #3D3938);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.cookie__message a {
  color: var(--powder-20, #B5968C);
  text-decoration-line: underline;
}
.cookie__message a:focus-visible, .cookie__message a:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cookie__message a:focus-visible, .cookie__message a:hover {
    color: var(--brown-20, #6B5F5B);
  }
}
.cookie__box-btn {
  width: 100%;
}
.cookie__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3125rem 1.5rem;
  height: 2.75rem;
  background-color: var(--brown-30, #3D3938);
  color: var(--white, #FFF);
  color: #FFF;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
.cookie__btn:focus-visible, .cookie__btn:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cookie__btn:focus-visible, .cookie__btn:hover {
    background-color: var(--brown-20, #6B5F5B);
  }
}

@starting-style {
  .cookie.show {
    opacity: 0;
    transform: translateY(-0.625rem);
  }
}
/* Стили для модалки */
.modal {
  display: none; /* Скрыта по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.64); /* Прозрачный фон */
  z-index: 9999;
  justify-content: center;
  overflow: auto;
  padding: 3.75rem 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 1000px) {
  .modal {
    padding: 1.875rem 1rem;
  }
}
@media (max-width: 550px) {
  .modal {
    padding: 1.25rem 0.625rem;
  }
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal__body {
  position: relative;
  max-width: 100%;
  margin: auto 0;
}
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.875rem;
  color: var(--black);
  justify-content: center;
  align-items: center;
  background-color: var(--gray, #F5F5F5);
  transition: border-radius 0.4s ease-in-out, background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}
@media (min-width: 1001px) {
  .modal__close:focus-visible, .modal__close:hover {
    background-color: var(--gray-2);
  }
}

/* Анимация для появления модалки */
.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --f-spinner-width: 2.25rem;
  --f-spinner-height: 2.25rem;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75 ;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 1rem, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 1rem, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-4.6875rem);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(4.6875rem);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-4.6875rem);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(4.6875rem);
    opacity: 0;
  }
}
:root {
  --f-button-width: 2.5rem;
  --f-button-height: 2.5rem;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 1.25rem;
  --f-button-svg-height: 1.25rem;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 0.625rem;
  --f-spinner-width: 3.125rem;
  --f-spinner-height: 3.125rem;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 0.25rem;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 2.5rem;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 0.0625rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0.875rem 0 0.25rem 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 0.5rem;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 2.125rem;
  --f-button-height: 2.125rem;
  --f-button-border-radius: 0.25rem;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 1.375rem;
  --f-button-svg-height: 1.375rem;
  position: absolute;
  top: -2.375rem;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 1.5rem;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 0.75rem;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 1.125rem;
  --f-button-svg-height: 1.125rem;
  --f-button-svg-filter: none;
  top: 0.3125rem;
  right: 0.3125rem;
}

.fancybox__nav {
  --f-button-width: 3.125rem;
  --f-button-height: 3.125rem;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 1.625rem;
  --f-button-svg-height: 1.625rem;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -1.875rem;
  right: -1.25rem;
  left: -1.25rem;
  bottom: -1.875rem;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 0.0625rem;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 7.5rem);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 60rem;
  height: 33.75rem;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 0.0625rem !important;
  margin: -0.0625rem !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 0.0625rem !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 6rem;
  --f-thumb-height: 4.5rem;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 0.125rem;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 0.5rem;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 0.25rem;
  --f-thumb-extra-gap: 1rem;
  --f-thumb-clip-width: 2.875rem ;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 62.5rem;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.125rem;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 0.0625rem + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -0.0625rem), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-0.0625rem 0px 0px var(--f-thumb-outline-color)) drop-shadow(0.125rem 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -0.0625rem 0px var(--f-thumb-outline-color)) drop-shadow(0px 0.125rem 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 0.5rem 0 0.75rem 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 6rem;
  --f-thumb-height: 4.5rem;
  --f-thumb-border-radius: 0.125rem;
  --f-thumb-outline: 0.125rem;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 0.5rem;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 0.25rem;
  --f-thumb-extra-gap: 1rem;
  --f-thumb-clip-width: 2.875rem;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 4rem;
  --f-thumb-clip-width: 2rem;
  --f-thumb-height: 3rem;
  --f-thumb-extra-gap: 0.625rem ;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 2.875rem;
  --f-button-height: 2.875rem;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 1.5rem;
  --f-button-svg-height: 1.5rem;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 0.3125rem;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 1.0625rem;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 0.3125rem;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1875rem;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: $themeColor;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper,
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 75rem;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 75rem;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 0.0625rem;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 0.0625rem;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 2.625rem;
  height: 2.625rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1.3125rem;
  margin-top: -1.3125rem;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 0.25rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-arrow-container {
  position: absolute;
  bottom: 0;
  right: 0;
  gap: 0.5rem;
  z-index: 1;
  display: flex;
}

.swiper-arrow {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s linear;
}
.swiper-arrow:hover {
  background: var(--powder-20);
}
.swiper-arrow:hover .icon {
  fill: var(--white);
}
.swiper-arrow.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 767px) {
  .swiper-arrow {
    width: 3rem;
    height: 3rem;
  }
}

.main-slider__swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: inherit;
}
.main-slider__swiper .button {
  height: 2.875rem;
}
@media (max-width: 767px) {
  .main-slider__swiper .button {
    height: 2.25rem;
  }
}

.main-slider__pic {
  padding-bottom: 117.6%;
  position: relative;
  overflow: hidden;
}
.main-slider__pic img {
  position: absolute;
  top: 0;
  transition: all 0.25s linear;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-slider__pic:hover img {
  transform: scale(1.1);
}

.main-slider__title {
  flex: 1 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-slider__title {
    font-size: 0.8125rem;
  }
}

.main-slider__bottom {
  padding-top: 2.25rem;
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.0625rem solid var(--gray);
}
.main-slider__bottom .swiper-arrow-container {
  position: relative;
  right: auto;
  bottom: auto;
}
@media (max-width: 991px) {
  .main-slider__bottom {
    padding-top: 0;
    margin-top: 1.75rem;
    border-top: none;
  }
}

.main-slider__tags {
  position: absolute;
  pointer-events: none;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.25rem;
  z-index: 1;
}

.main-slider__tag {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--white);
  padding: 0.25rem 0.5rem;
  background: var(--powder-20);
}
@media (max-width: 767px) {
  .main-slider__tag {
    padding: 0.0625rem 0.25rem;
  }
}

@media (max-width: 1240px) {
  .swiper-filter {
    /*overflow: visible;*/
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 991px) {
  .swiper-filter {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.swiper-filter .swiper-slide {
  height: auto;
  width: auto;
  box-sizing: border-box;
}
.swiper-filter-btns {
  display: none;
}
.swiper-card-product .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.swiper-card-product-pagination {
  position: absolute;
  bottom: 0.5rem;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 1240px) {
  .swiper-card-product-pagination {
    opacity: 1;
    pointer-events: auto;
  }
}
.swiper-card-product-pagination .swiper-pagination-bullet {
  cursor: pointer;
  position: relative;
  flex: 1;
  height: 0.1875rem;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.4s ease-in-out;
}
.swiper-card-product-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.125rem;
}
.swiper-card-product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
}
.swiper-card-product-pagination.swiper-pagination-lock {
  display: none;
}
/*# sourceMappingURL=async.css.map */
