.showrooms__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1,1fr);
  gap: 8px;
  margin-bottom: 112px
}
.showrooms__map {
  margin-bottom: 50px
}
.sr-card {
  background: var(--gray);
  min-height: 204px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border-radius: 0 4px 4px 0
}
.sr-card__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px
}
.sr-card__desc span {
  color: var(--black60)
}
.sr-card__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 11px
}
.sr-card__address a {
  text-decoration: none;
  color: inherit;
}
.sr-card__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 4px
}
.sr-card__icon span {
  font-size: .875rem;
  line-height: 1.3;
  color: var(--black60);
  white-space: nowrap;
  margin-left: 4px
}
.sr-card__street {
  font-weight: 700
}
.sr-card__hours {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[1];
  grid-template-rows: repeat(1,1fr);
  font-size: .875rem;
}
.sr-card__contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[1];
  grid-template-rows: repeat(1,1fr);
  gap: 2px;
  font-size: .875rem;
  line-height: 1.4;
  margin-top: 16px
}
.sr-card__contacts span {
  display: block
}
.sr-card__contacts a {
  color: inherit;
}
.sr-card__note {
  border-top: 1px solid var(--black-real10);
  margin-top: 20px
}
.sr-card__note .note {
  font-size: .875rem;
  line-height: 1.3;
  margin: 16px 0;
  padding-left: 16px
}
.sr-card__gallery {
  display: none;
  position: relative
}
.sr-card__gallery-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 8px;
  border-radius: 4px;
  z-index: 2
}
.sr-card__gallery-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 8px
}
body.is-touch .sr-card__gallery-item:not(:first-child) {
  display: none
}
.sr-card__gallery-item.is-active img {
  opacity: 1
}
.sr-card__gallery-item img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none
}
.sr-card__gallery-nav {
  display: block;
  position: relative;
  height: 100%
}
body:not(.is-touch) .sr-card__gallery-nav {
  margin: 0 3px 0 0
}
body:not(.is-touch) .sr-card__gallery-nav:last-child {
  margin-right: 0
}
.sr-card__gallery-nav::before {
  content: "";
  cursor: pointer;
  display: block;
  height: 1px;
  background-color: rgba(255,255,255,.3);
  -webkit-transition: background .2s ease-in-out;
  -o-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1
}
body.is-touch .sr-card__gallery-nav::before {
  display: none
}
body:not(.is-touch) .is-active .sr-card__gallery-nav::before {
  background: var(--white)
}
.heading._showroom {
  background: var(--gray);
  border-radius: 8px;
  margin-bottom: 112px;
  margin-left: -12px;
  margin-right: -12px
}
.heading._showroom .heading__left {
  background: 0 0;
  padding-top: 32px
}
.heading._showroom .heading__right {
  width: 100%;
  padding: 4px
}
.heading._showroom .heading__carousel {
  position: relative
}
.heading._showroom .heading__map {
  position: relative;
  height: 100%
}
.heading._showroom .heading__map [class$=inner-panes] {
  border-radius: 4px;
  border: 1px solid var(--black10)
}
.heading._showroom .heading__text {
  margin-right: 0
}
.heading._showroom .heading__button {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1,1fr);
  gap: 8px
}
.heading._showroom .heading__button .btn {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%
}
.heading._showroom .sr-card {
  display: block;
  min-height: auto;
  background: 0 0;
  border-radius: 0
}
.heading._showroom .sr-card__desc {
  display: block;
  padding: 0
}
.heading._showroom .sr-card__address {
  display: block;
  margin-bottom: 20px
}
.heading._showroom .sr-card__icon {
  margin-bottom: 4px
}
.heading._showroom .sr-card__street {
  font-size: 1.25rem
}
.heading._showroom .sr-card__hours {
  gap: 5px
}
.heading._showroom .sr-card__contacts {
  font-size: .9375rem;
  line-height: 1.2;
  gap: 5px;
  margin-top: 20px
}
.heading._showroom .sr-card__contacts span {
  margin-right: 3px
}
.heading._showroom .sr-card__note {
  margin-top: 20px
}
.showroom-trigger {
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-shadow: none!important;
  margin: 1px 0 8px;
  color: inherit;
}
.icon-map {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.icon-map svg {
  width: 10px;
  height: 14px;
  fill: currentColor
}
@media (min-width:375px) {
  .heading._showroom .heading__button {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr)
  }
}
@media (min-width:425px) {
  .heading._showroom .sr-card__contacts span {
    display: inline
  }
}
@media (min-width:577px) {
  .showrooms__list {
    gap: 12px
  }
  .sr-card {
    min-height: 260px
  }
  .sr-card__desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
  }
  .sr-card__address {
    display: block
  }
  .sr-card__icon {
    margin: 0 0 9px 0
  }
  .sr-card__street {
    font-size: 1.125rem
  }
  .sr-card__gallery {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%
  }
  .heading._showroom {
    margin-left: auto;
    margin-right: auto
  }
}
@media (min-width:768px) {
  .heading._showroom .heading__right {
    padding: 11px
  }
  .heading._showroom .sr-card__address {
    margin-bottom: 28px
  }
  .heading._showroom .sr-card__contacts {
    margin-top: 28px
  }
  .heading._showroom .sr-card__note {
    margin-top: 28px
  }
}
@media (min-width:1024px) {
  .showrooms__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2,1fr);
    gap: 16px
  }
  .heading._showroom .heading__right {
    padding: 8px
  }
  .heading._showroom .sr-card__address {
    margin-bottom: 32px
  }
  .heading._showroom .sr-card__street {
    max-width: 77%
  }
  .heading._showroom .sr-card__contacts {
    margin-top: 32px
  }
  .heading._showroom .sr-card__note {
    margin-top: 32px
  }
  .showroom-trigger {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
    overflow: hidden;
    color: var(--white)!important;
    margin: 0
  }
  .showroom-trigger::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -webkit-gradient(linear,left bottom,left top,from(#000),color-stop(33%,rgba(255,255,255,0)));
    background: -o-linear-gradient(bottom,#000 0,rgba(255,255,255,0) 33%);
    background: linear-gradient(0deg,#000 0,rgba(255,255,255,0) 33%);
    opacity: .5
  }
  .showroom-trigger span {
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 8px
  }
}
@media (max-width:1023px) {
  .showroom-trigger {
    width: 100%;
    height: 40px;
    background: var(--white);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 4px;
    text-decoration: none;
    margin: 1px 0 12px
  }
  .showroom-trigger::after {
    content: "";
    display: block;
    position: absolute;
    right: 18px;
    width: 8px;
    height: 11px;
    background: var(--svg-angle) center no-repeat
  }
  .showroom-trigger img {
    width: auto;
    height: 32px;
    border-radius: 2px
  }
  .showroom-trigger span {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: .875rem;
    margin-left: 12px
  }
}
@media (max-width:576px) {
  .heading._showroom .heading__left {
    padding-left: 12px;
    padding-right: 12px
  }
}
.h2 {
  margin-bottom: 24px;
  text-transform: unset;
}

@media (min-width: 768px) {
  .map_showroom {
      height:435px
  }
}

@media (min-width: 1024px) {
  .map_showroom {
      height:528px
  }

  .map_showroom-all {
      height: 606px
  }

  .map_delivery-zones {
      height: 580px
  }
}

.h1,h1 {
  font-size: 2rem;
  line-height: .9;
  font-weight: 600;
  letter-spacing: -1.28px;
  margin-bottom: 30px
}

@media (min-width: 768px) {
  .h1,h1 {
      font-size: 2.5rem;
      margin-bottom: 39px
  }
}

@media (min-width: 1024px) {
  .h1,h1 {
      font-size: 4rem;
      font-weight: 700
  }
}










.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-bottom: 96px
}

.heading .label {
  position: absolute;
  top: -15px;
  left: 15px;
  z-index: 2
}

.heading__left {
  background: var(--yellow);
  padding: 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.heading__right {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.heading__centered {
  margin-top: auto
}

.heading__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.heading__text .h1,.heading__text h1 {
  font-size: clamp(2rem,5vw,4rem)
}

.heading__descr {
  max-width: 500px;
  font-size: .875rem
}

.heading__button {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  gap: 6px
}

.heading__tile {
  position: relative;
  height: 100%;
  margin: 0
}

.heading__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-height: 351px
}

.heading__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1
}

.heading__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px
}

.heading__tag {
  font-size: .8125rem;
  text-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
  padding: 0 9px;
  line-height: 1;
  margin-right: 8px;
  border-radius: 40px;
  background: rgba(255,255,255,.3);
  text-decoration: none;
  white-space: nowrap
}

.text-white .heading__tag {
  color: var(--white)!important
}

.heading__views {
  font-size: .8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.heading__views svg {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  fill: currentColor
}

.heading._singlecol {
  margin-bottom: 16px
}

.heading._singlecol .breadcrumbs {
  margin-top: 0
}

.heading._singlecol .heading__left {
  z-index: 1;
  background: 0 0;
  background: -webkit-gradient(linear,left bottom,left top,from(rgba(53,45,33,.5)),to(rgba(0,0,0,0)));
  background: -o-linear-gradient(bottom,rgba(53,45,33,.5) 0,rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg,rgba(53,45,33,.5) 0,rgba(0,0,0,0) 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0
}

.heading._singlecol .heading__text {
  margin-right: 0
}

.heading._singlecol .heading__text p {
  font-size: 1.125rem;
  line-height: 1.2
}

.heading._singlecol .heading__tile {
  position: static
}

.heading._singlecol .heading__tile a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.heading._singlecol .heading__image {
  min-height: 593px
}

.heading._high .heading__left {
  top: 0;
  padding: 45px 24px 40px
}

.heading._high .heading__text {
  max-width: 487px;
  text-align: center
}

.heading._high .heading__button {
  width: 100%;
  max-width: 327px;
  margin-top: auto
}

.heading._high .heading__image {
  min-height: 550px
}

.heading._video {
  position: relative;
  min-height: 540px
}

.heading._video .heading__left {
  background: 0 0
}

.heading._video .heading__right {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: none
}

.heading._video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.heading._video .heading__text {
  max-width: 400px!important;
  text-align: center
}

.heading._video .heading__button {
  width: 100%;
  max-width: 327px;
  margin: 0
}

.heading._image-only {
  min-height: auto;
  height: 400px;
  margin-bottom: 40px
}

.heading._image-only img,.heading._image-only picture {
  height: 100%
}

.heading._image-inside {
  min-height: 477px
}

.heading._image-inside .heading__right {
  padding: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.heading._image-inside .heading__text {
  max-width: 487px;
  text-align: center;
  margin-bottom: 40px
}

.heading._image-inside .heading__text .h1,.heading._image-inside .heading__text h1 {
  font-weight: 700;
  font-size: clamp(2rem,5vw,4rem)!important
}

.heading._image-inside .heading__button {
  width: 100%;
  max-width: 327px;
  margin-top: auto
}

.heading._image-inside .heading__image {
  min-height: auto
}

.heading._image-inside .heading__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

@media (min-width: 768px) {
  .heading {
      margin-top:16px
  }

  .heading__left {
      padding: 26px 24px 32px
  }

  .heading__centered {
      margin: auto 0
  }

  .heading__text {
      margin-right: 85px
  }

  .heading__button {
      margin-top: 27px
  }

  .heading._singlecol .heading__image {
      min-height: 647px
  }

  .heading._video {
      min-height: 307px
  }

  .heading._image-inside {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row
  }

  .heading._image-inside .heading__left {
      width: 50%;
      padding: 64px 16px 16px
  }

  .heading._image-inside .heading__right {
      padding: 16px 16px 16px 0
  }

  .heading._image-inside .heading__text {
      max-width: none;
      text-align: left
  }
}

@media (min-width: 1024px) {
  .heading {
      min-height:480px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      margin-bottom: 8px
  }

  .heading__left {
      width: 420px;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      padding: 40px 24px 24px;
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0
  }

  .heading__right {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1
  }

  .heading__text {
      margin-right: 35px
  }

  .heading__descr {
      font-size: 1.125rem
  }

  .heading__button {
      margin-top: auto
  }

  .heading__icons {
      -webkit-box-ordinal-group: unset;
      -ms-flex-order: unset;
      order: unset
  }

  .heading._singlecol .breadcrumbs {
      margin-top: -16px;
      margin-bottom: 13px
  }

  .heading._singlecol .heading__left {
      position: static;
      padding-top: 48px;
      background: -webkit-gradient(linear,left top,right top,from(rgba(53,45,33,.5)),to(rgba(0,0,0,0)));
      background: -o-linear-gradient(left,rgba(53,45,33,.5) 0,rgba(0,0,0,0) 100%);
      background: linear-gradient(90deg,rgba(53,45,33,.5) 0,rgba(0,0,0,0) 100%)
  }

  .heading._singlecol .heading__image {
      min-height: auto;
      position: absolute;
      top: 0;
      left: 0
  }

  .heading._high {
      min-height: 532px
  }

  .heading._high .heading__left {
      width: 50%;
      padding-left: 32px;
      padding-right: 0;
      padding-bottom: 48px
  }

  .heading._high .heading__text {
      max-width: none;
      text-align: left
  }

  .heading._high .heading__button {
      width: auto
  }

  .heading._high .heading__image {
      min-height: auto
  }

  .heading._video {
      min-height: 420px
  }

  .heading._video .heading__text {
      margin: 0!important;
      text-align: left!important
  }

  .heading._video .heading__button {
      margin: 0;
      width: auto
  }

  .heading._image-inside .heading__button {
      width: auto
  }
}

@media (min-width: 1280px) {
  .heading._video {
      min-height:525px
  }

  .heading._image-inside .heading__left {
      padding: 78px 50px 50px
  }
}

@media (min-width: 1440px) {
  .heading {
      min-height:520px
  }

  .heading__left {
      width: 520px
  }

  .heading._video {
      min-height: 595px
  }
}

@media (min-width: 1620px) {
  .heading__left {
      width:600px
  }

  .heading__right {
      max-height: 610px
  }

  .heading._video {
      min-height: 674px
  }

  .heading._image-inside .heading__left {
      width: 750px
  }
}

@media (min-width: 1920px) {
  .heading._video {
      min-height:775px
  }
}

@media (max-width: 1023px) {
  .heading__button .btn {
      width:50%
  }

  .heading._high .breadcrumbs__list {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center
  }

  .heading._high .heading__left {
      background: -webkit-gradient(linear,left top,left bottom,from(rgba(53,45,33,.5)),to(rgba(0,0,0,0)));
      background: -o-linear-gradient(top,rgba(53,45,33,.5) 0,rgba(0,0,0,0) 100%);
      background: linear-gradient(180deg,rgba(53,45,33,.5) 0,rgba(0,0,0,0) 100%)
  }

  .heading._high .heading__text {
      margin-left: auto;
      margin-right: auto
  }

  .heading._high .heading__button {
      margin-left: auto;
      margin-right: auto
  }

  .heading._high .heading__button .btn {
      width: 100%
  }

  .heading._video .heading__text {
      margin-left: auto;
      margin-right: auto
  }

  .heading._video .heading__button {
      margin-left: auto;
      margin-right: auto
  }

  .heading._video .heading__button .btn {
      width: 100%
  }

  .heading._image-inside .heading__button {
      margin-left: auto;
      margin-right: auto
  }

  .heading._image-inside .heading__button .btn {
      width: 100%
  }
}

@media (max-width: 767px) {
  .heading__button .btn {
      width:100%
  }

  .heading._image-inside .heading__text {
      margin-left: auto;
      margin-right: auto
  }
}

@media (max-width: 424px) {
  .heading__text .h1,.heading__text h1 {
      font-size:9.5vw!important
  }
}


.btn {
  cursor: pointer;
  display: block;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 0;
  border-radius: 4px;
  padding: 12px 24px 10px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.3px;
  color: var(--black)!important;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all .25s ease-in-out,text-indent 0s;
  -o-transition: all .25s ease-in-out,text-indent 0s;
  transition: all .25s ease-in-out,text-indent 0s;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.btn span::after {
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out
}

.btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor
}

.btn:focus-visible {
  -webkit-box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--black-real10)!important;
  box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--black-real10)!important;
  border-radius: 4px;
  outline: 0
}

.btn:disabled,.btn_disabled {
  cursor: default!important;
  pointer-events: none;
  color: rgba(51,51,51,.3)!important
}

.btn:disabled span::after,.btn_disabled span::after {
  opacity: .5
}

.btn_gray-dark {
  background: var(--gray-dark)
}

.btn_gray-dark:hover {
  background: var(--gray);
  -webkit-box-shadow: 0 0 0 1px var(--black10);
  box-shadow: 0 0 0 1px var(--black10)
}

.btn_gray-dark:active {
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60);
  color: var(--black60)!important
}

.btn_gray-dark:active span::after {
  opacity: .5
}

.btn_gray-light {
  background: var(--gray);
  -webkit-box-shadow: 0 0 0 1px var(--gray);
  box-shadow: 0 0 0 1px var(--gray)
}

.btn_gray-light:hover {
  background: var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--black10);
  box-shadow: 0 0 0 1px var(--black10)
}

.btn_gray-light:active {
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60);
  color: var(--black60)!important
}

.btn_gray-light:active span::after {
  opacity: .6
}

.btn_gray {
  background: var(--gray);
  -webkit-box-shadow: 0 0 0 1px var(--black30);
  box-shadow: 0 0 0 1px var(--black30)
}

.btn_gray:hover {
  -webkit-box-shadow: 0 0 0 1px var(--black70);
  box-shadow: 0 0 0 1px var(--black70)
}

.btn_gray:active {
  -webkit-box-shadow: 0 0 0 1px var(--black);
  box-shadow: 0 0 0 1px var(--black);
  color: var(--black60)!important
}

.btn_gray:active span::after {
  opacity: .5
}

.btn_yellow {
  background: var(--yellow);
  -webkit-box-shadow: 0 0 0 1px var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow)
}

.btn_yellow:hover {
  background: var(--yellow-dark);
  -webkit-box-shadow: 0 0 0 1px var(--yellow-dark);
  box-shadow: 0 0 0 1px var(--yellow-dark)
}

.btn_yellow:active {
  background: var(--yellow-dark);
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60);
  color: var(--black60)!important
}

.btn_yellow:active span::after {
  opacity: .6
}

.btn_yellow-dark {
  background: var(--yellow-dark);
  -webkit-box-shadow: 0 0 0 1px var(--yellow-dark);
  box-shadow: 0 0 0 1px var(--yellow-dark)
}

.btn_yellow-dark:hover {
  background: var(--yellow);
  -webkit-box-shadow: 0 0 0 1px var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow)
}

.btn_yellow-dark:active {
  background: var(--yellow);
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60);
  color: var(--black60)!important
}

.btn_yellow-dark:active span::after {
  opacity: .5
}

.btn_coral-dark {
  background: var(--red-coral-dark);
  -webkit-box-shadow: 0 0 0 1px var(--red-coral-dark);
  box-shadow: 0 0 0 1px var(--red-coral-dark)
}

.btn_coral-dark:hover {
  background: var(--red-coral);
  -webkit-box-shadow: 0 0 0 1px var(--red-coral);
  box-shadow: 0 0 0 1px var(--red-coral)
}

.btn_coral-dark:active {
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60);
  color: var(--black60)!important
}

.btn_coral-dark:active span::after {
  opacity: .6
}

.btn_white {
  background: var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--black30);
  box-shadow: 0 0 0 1px var(--black30)
}

.btn_white:hover {
  background: var(--gray);
  -webkit-box-shadow: 0 0 0 1px var(--black30);
  box-shadow: 0 0 0 1px var(--black30)
}

.btn_white:active {
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60);
  color: var(--black60)!important
}

.btn_white:active span::after {
  opacity: .6
}

.btn_white-transp {
  color: var(--white)!important;
  background: rgba(255,255,255,.2);
  -webkit-box-shadow: none;
  box-shadow: none
}

.btn_white-transp:hover {
  background: rgba(255,255,255,.4)
}

.btn_transparent {
  -webkit-box-shadow: 0 0 0 1px var(--black30);
  box-shadow: 0 0 0 1px var(--black30)
}

.btn_transparent:hover {
  -webkit-box-shadow: 0 0 0 1px var(--black70);
  box-shadow: 0 0 0 1px var(--black70)
}

.btn_transparent:active {
  -webkit-box-shadow: 0 0 0 1px var(--black);
  box-shadow: 0 0 0 1px var(--black);
  color: var(--black60)!important
}

.btn_transparent:active span::after {
  opacity: .6
}

.btn_svg {
  padding-left: 13px;
  padding-right: 13px;
  max-width: 43px!important
}

.btn_small {
  font-size: .8125rem;
  line-height: 1.1;
  padding: 5px 15px 4px
}

.btn_medium {
  padding-left: 61px;
  padding-right: 61px
}

.btn_long {
  padding-left: 10%;
  padding-right: 10%
}

.btn_fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content
}

.btn_fill,.btn_wide {
  width: 100%
}

.btn_nav-second {
  width: 100%
}

.btn_angle span::after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 15px;
  height: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  background: var(--svg-angle) right center no-repeat;
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out
}

.btn_angle.btn_white {
  -webkit-box-shadow: 0 0 0 1px var(--white);
  box-shadow: 0 0 0 1px var(--white)
}

.btn_angle.btn_white:hover {
  -webkit-box-shadow: 0 0 0 1px var(--black10);
  box-shadow: 0 0 0 1px var(--black10)
}

.btn_angle.btn_white:active {
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60)
}

.btn_angle.btn_white:focus-visible {
  -webkit-box-shadow: 0 0 0 1px var(--black60)!important;
  box-shadow: 0 0 0 1px var(--black60)!important
}

.btn_arrow span::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 15px;
  height: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  background-image: var(--svg-arrow-black);
  background-repeat: no-repeat;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  margin-bottom: 1px
}

.btn_arrow:hover span::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn_arrow:focus-visible {
  -webkit-box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--gray-blue-light)!important;
  box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--gray-blue-light)!important;
  border-radius: 4px;
  outline: 0
}

.btn_arrow.btn_white {
  -webkit-box-shadow: 0 0 0 1px var(--white);
  box-shadow: 0 0 0 1px var(--white)
}

.btn_arrow.btn_white:hover {
  -webkit-box-shadow: 0 0 0 1px var(--black10);
  box-shadow: 0 0 0 1px var(--black10)
}

.btn_arrow.btn_white:active {
  -webkit-box-shadow: 0 0 0 1px var(--black60);
  box-shadow: 0 0 0 1px var(--black60)
}

.btn_arrow.btn_yellow:focus-visible {
  -webkit-box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--yellow-light)!important;
  box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--yellow-light)!important
}

.btn_arrow.btn_transparent:focus-visible {
  -webkit-box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--black10)!important;
  box-shadow: 0 0 0 1px var(--black60),0 0 0 7px var(--black10)!important
}

.btn_arrow-big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 56px;
  height: 36px;
  padding: 0 15px
}

.btn_arrow-big::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 17px;
  height: 17px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17px;
  flex: 0 0 17px;
  background-image: var(--svg-arrow-black);
  background-repeat: no-repeat;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  margin-bottom: 1px
}

.btn_arrow-big:hover::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.btn_arrow-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 56px;
  height: 36px;
  padding: 0 15px
}

.btn_arrow-right::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 17px;
  height: 17px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17px;
  flex: 0 0 17px;
  background-image: var(--svg-arrow-black);
  background-repeat: no-repeat;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  margin-bottom: 1px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.btn_arrow-right:hover::after {
  margin-right: -7px
}

.btn_arrow-forward {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.btn_arrow-forward span::after {
  content: "";
  display: block;
  margin-left: 13px;
  width: 17px;
  height: 17px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17px;
  flex: 0 0 17px;
  background-image: var(--svg-arrow-long);
  background-repeat: no-repeat;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  margin-bottom: 1px;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1)
}

.btn_arrow-forward:hover span::after {
  -webkit-transform: translateX(3px) scaleX(-1);
  -ms-transform: translateX(3px) scaleX(-1);
  transform: translateX(3px) scaleX(-1)
}

.btn_filter span::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  background-image: var(--svg-filter);
  background-repeat: no-repeat;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  margin-bottom: 2px
}

.btn_inset {
  position: absolute!important;
  right: 2px
}

.btn_close,.btn_remove {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 15px;
  right: 17px;
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: transparent
}

.btn_close::after,.btn_close::before,.btn_remove::after,.btn_remove::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: var(--black);
  -webkit-box-shadow: 0 0 1px 0 var(--black);
  box-shadow: 0 0 1px 0 var(--black)
}

.btn_close::before,.btn_remove::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) translate(9px, -5px);
  opacity: 1;
}

.btn_close::after,.btn_remove::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn_close-xl {
  width: 40px;
  height: 40px
}

.btn_close-xl::after,.btn_close-xl::before {
  height: 25px
}

.btn_close-modal {
  position: absolute;
  top: var(--modal-padding-y);
  right: calc(var(--modal-padding-x) - 5px)
}

.btn_reset {
  background: 0 0;
  font-size: .8125rem;
  color: var(--black60)!important;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.btn_reset::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 4px;
  background: var(--svg-close) center no-repeat;
  opacity: .6;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out
}

.btn_reset:hover {
  color: var(--black)!important
}

.btn_reset:hover::after {
  opacity: 1
}

.btn_download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.btn_download::after {
  content: "";
  display: block;
  margin-left: 5px;
  width: 17px;
  height: 17px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17px;
  flex: 0 0 17px;
  background-image: var(--svg-download);
  background-repeat: no-repeat
}

.btn_animated-pro {
  --frame-bgr: var(--black);
  width: 230px;
  height: 29px;
  font-size: .8125rem;
  font-weight: 600;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.btn_animated-pro:hover {
  --frame-bgr: var(--white)
}

.btn_animated-pro svg {
  -webkit-transition: none;
  -o-transition: none;
  transition: none
}

.btn_animated-pro:hover .btn-frame-1 svg {
  fill: var(--yellow)
}

.btn_animated-pro:hover .btn-frame-2 span {
  color: var(--yellow)
}

.btn_animated-pro:hover .btn-frame-3 svg .pro1 {
  fill: var(--yellow)
}

.btn_animated-pro:hover .btn-frame-3 svg .pro2 {
  fill: var(--black-brown)
}

.btn-frame-1,.btn-frame-2,.btn-frame-3 {
  position: absolute;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  background: var(--frame-bgr);
  -webkit-transition: background .25s ease-in-out;
  -o-transition: background .25s ease-in-out;
  transition: background .25s ease-in-out
}

.btn-frame-1 {
  -webkit-animation-name: frame-1;
  animation-name: frame-1;
  z-index: 2;
  background: 0 0!important
}

.btn-frame-1 svg {
  fill: var(--white);
  width: 21px;
  height: 21px
}

@-webkit-keyframes frame-1 {
  0% {
      left: -1000%
  }

  40% {
      left: 15px
  }

  45%,50% {
      left: 10px
  }

  100% {
      left: 300%
  }
}

@keyframes frame-1 {
  0% {
      left: -1000%
  }

  40% {
      left: 15px
  }

  45%,50% {
      left: 10px
  }

  100% {
      left: 300%
  }
}

.btn-frame-2 {
  -webkit-animation-name: frame-2;
  animation-name: frame-2;
  z-index: 1;
  left: 0;
  margin: 0 7px;
  width: calc(100% - 14px);
  text-align: center;
  opacity: 0
}

.btn-frame-2 span {
  display: inline;
  color: var(--white)
}

@-webkit-keyframes frame-2 {
  0%,40% {
      left: 0;
      opacity: 1
  }

  45%,50% {
      left: 5px;
      opacity: 1
  }

  100% {
      left: 300%
  }
}

@keyframes frame-2 {
  0%,40% {
      left: 0;
      opacity: 1
  }

  45%,50% {
      left: 5px;
      opacity: 1
  }

  100% {
      left: 300%
  }
}

.btn-frame-3 {
  -webkit-animation-name: frame-3;
  animation-name: frame-3;
  left: 0;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px
}

.btn-frame-3 svg {
  width: 99px;
  height: 15px
}

.btn-frame-3 svg .pro1 {
  fill: var(--white)
}

.btn-frame-3 svg .pro2 {
  fill: var(--yellow)
}

@-webkit-keyframes frame-3 {
  50%,95% {
      opacity: 1
  }

  100% {
      opacity: 0
  }
}

@keyframes frame-3 {
  50%,95% {
      opacity: 1
  }

  100% {
      opacity: 0
  }
}

.btn-inset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative
}

.btn-trash {
  display: block;
  width: 20px;
  height: 20px
}

.btn-trash svg {
  width: 100%;
  height: 100%;
  fill: var(--gray-dark-second)
}

.btn-trash:active svg,.btn-trash:focus svg,.btn-trash:hover svg {
  fill: var(--black)
}

.btn-plus {
  position: relative;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: var(--white);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  text-align: left
}

.btn-plus::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: 15px;
  height: 14px;
  border-left: 2px solid #858585;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out
}

.btn-plus::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  right: 9px;
  width: 14px;
  border-top: 2px solid #858585
}

.btn-plus.is-active::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}

.btn-round {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out
}

.btn-round:active,.btn-round:focus,.btn-round:hover {
  background: var(--yellow)
}

.btn-round svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor
}

.btn-round[data-box-type=video] svg {
  margin-left: 3px;
  width: 13px;
  height: 13px
}

.btn-zones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  height: 40px
}

.btn-zones img {
  border-radius: 4px;
  margin: 0 8px 0 4px
}

.showroom-carousel .f-carousel__dots {
  position: absolute;
}

.showroom-carousel .f-carousel__dots li.is-current .f-carousel__dot {
  background-color: white;
}

.showroom-carousel .f-carousel__dots li button {
  width: 22px;
  height: 30px;
}

.showroom-carousel .f-carousel__dot {
  width: 16px;
  height: 5px;
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .showroom-carousel .f-carousel__dots li.is-current .f-carousel__dot {
    background-color: black;
  }
}

.note {
  position: relative;
  border-radius: 8px;
  padding: 8px 8px 8px 20px;
  margin: 24px 0;
  background: var(--white)
}

.note::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background: var(--black);
  border-radius: 2px
}

.note_yellow {
  background: var(--yellow-light)
}

.note_yellow::before {
  background: var(--yellow-dark)
}

.note_yellow-black {
  background: var(--yellow-light)
}

.note_yellow-black::before {
  background: var(--black)
}

.note_transparent {
  background: 0 0
}

.note_transparent::before {
  background: currentColor
}

.note_big {
  padding: 12px 12px 12px 20px;
  font-weight: 700
}

.note_big::before {
  top: 12px;
  bottom: 12px;
  left: 12px
}

.note-important {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 32px 0
}

.note-important svg {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: 12px
}

.note-important b,.note-important strong {
  display: block;
  margin-bottom: 3px
}

.note-important span {
  color: var(--black60);
  font-size: .875rem;
  line-height: 1.3
}

.overlay::before {
  content: "";
  display: block;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(51,51,51,.1);
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out
}

.overlay.is-active::before {
  opacity: 1
}

.modal {
  --modal-padding-y: 24px;
  --modal-padding-x: 32px;
  min-width: 320px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity .25s ease-in-out;
  -o-transition: opacity .25s ease-in-out;
  transition: opacity .25s ease-in-out;
  padding: var(--modal-padding-y) var(--modal-padding-x);
  background: var(--gray);
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 132px 0 rgba(54,45,21,.2);
  box-shadow: 0 4px 132px 0 rgba(54,45,21,.2)
}

.modal.is-active {
  z-index: 130;
  opacity: 1
}

.modal.is-video {
  width: 100%
}

.modal.is-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none
}

.modal.is-image img {
  display: block;
  max-height: 90vh;
  max-height: 90dvh;
  max-width: 100%;
}

.modal__head {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 40px 32px 0
}

.modal__head svg {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  margin-right: 8px
}

.modal__close {
  position: relative
}

.modal__close .btn {
  position: relative;
  top: auto;
  right: auto
}

.modal__body._player {
  background: var(--black-real);
  border-radius: 3px;
  height: 0;
  overflow: hidden;
  margin-top: 40px;
  padding-bottom: 56.25%;
  position: relative
}

.modal__body._player iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px
}

.modal__body._image {
  margin-top: 40px
}

.modal__form {
  margin-bottom: 14px
}

.modal__form label>input {
  margin-top: 7px
}

@media (min-width: 768px) {
  .modal {
    max-width: 100%;
    top: 143px;
    right: auto;
    left: 50%;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  .modal.is-image img {
      margin: 0 auto;
      max-height: calc(100vh - 143px - 143px);
      max-height: calc(100dvh - 143px - 143px)
  }

  .modal__head {
      font-size: 1.625rem
  }
}

@media (max-width: 767px) {
  .content_padding-md-0 {
    padding-left:0;
    padding-right: 0
  }

  .hidden-to-md {
    display: none!important
  }

  .btn_close-modal::after,.btn_close-modal::before {
    height: 25px
  }

  .btn_close::before, .btn_remove::before {
    transform: rotate(45deg) translate(9px, -8px);
  }

  .modal {
    width: 70dvw!important
  }
}

.page:has(.showrooms) > .container {
  padding-top: 28px;
}