@charset "UTF-8";
body {
  font-family: "SuisseIntl";
}

* {
  outline: none;
  line-height: 130%;
}

strong {
  font-weight: 600;
}

.wrapper {
  width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section {
  padding-bottom: 120px;
}

.section-title {
  margin: 0 0 50px 0;
  font-size: 36px;
  line-height: 130%;
  font-family: "next_artregular";
  color: #202020;
  font-weight: normal;
}

.section-title_center {
  text-align: center;
}

.h1-title {
  margin: 0;
  font-size: 54px;
  line-height: 130%;
  font-weight: normal;
  font-family: "next_artregular";
}
.h1-title span {
  font-size: 16px;
}

.section-title {
  font-size: 36px;
  font-family: "next_artregular";
  text-align: center;
  text-transform: uppercase;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.header {
  background: #202020;
  height: 80px;
}
.header .wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__logo {
  height: 60px;
}
.header .header__logo img {
  width: 191px;
}

.header__nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 81px;
}
.header__nav ul li {
  list-style: none;
}
.header__nav ul li a {
  color: #BBBBBB;
  text-decoration: none;
  font-size: 16px;
  line-height: 130%;
  transition: 0.2s;
}
.header__nav ul li a:hover {
  color: #fff;
}
.header__nav ul .active a {
  color: #fff;
}

.header__search {
  position: relative;
  width: 250px;
}
.header__search input[type=text] {
  font-size: 16px;
  line-height: 130%;
  background: none;
  border: none;
  border-bottom: 1px solid #BBBBBB;
  transition: 0.2s;
  outline: none;
  color: #fff;
  width: 100%;
  height: 30px;
  font-family: "SuisseIntl";
}
.header__search button {
  display: flex;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.header__search button svg path {
  transition: 0.2s;
}
.header__search input:focus, .header__search input:hover {
  border-bottom: 1px solid #fff;
}
.header__search input:focus + button svg path, .header__search input:hover + button svg path {
  stroke: #fff;
}
.header__search button:hover svg path {
  stroke: #fff;
}

.header__mnavbtn {
  display: none;
}

.header__mbtns {
  display: none;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1200px) {
  .header__nav ul {
    gap: 40px;
  }
  .header__search {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .header {
    height: 54px;
  }
  .header .header__logo {
    width: 116px;
    height: 36px;
  }
  .header .header__logo img {
    width: 116px;
  }
  .header__search {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__mnavbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
  }
  .header__mbtns {
    display: flex;
  }
}
.m-block {
  position: absolute;
  top: 0;
  left: -9999px;
  width: 100%;
  background: #fff;
  min-height: 100%;
  z-index: 101;
}
.m-block .form {
  margin-top: 20px;
  position: relative;
}
.m-block .form input[type=text] {
  border: none;
  border-bottom: 1px solid black;
  padding: 0 1px;
  height: 34px;
  box-sizing: border-box;
  outline: none;
  color: #202020;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
}
.m-block .form input[type=text]::-webkit-input-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
  font-weight: 600;
}
.m-block .form input[type=text]:-moz-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
  font-weight: 600;
}
.m-block .form input[type=text]::-moz-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
  font-weight: 600;
}
.m-block .form input[type=text]:-ms-input-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
  font-weight: 600;
}
.m-block .form input[type=text]:focus {
  border: none;
  border-bottom: 1px solid black;
}
.m-block .form button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
}

.m-block.open {
  left: 0;
}

.m-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 53px;
  box-sizing: border-box;
  border-bottom: 1px solid #EBEBEB;
  padding: 0 15px;
}

.m-block__close {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.m-block__nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-block__nav li {
  list-style: none;
}
.m-block__nav li a {
  text-decoration: none;
  color: #141414;
  font-size: 16px;
  line-height: 130%;
  display: block;
  margin-bottom: 0;
  font-weight: 600;
}
.m-block__nav li .m-block__nav__more {
  font-size: 13px;
  color: #202020;
  text-decoration: underline;
  font-weight: 400;
  margin-top: 14px;
}
.m-block__nav li ul {
  margin: 10px 0 0 0;
  padding: 0 0 0 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.m-block__nav li ul li a {
  margin-bottom: 0;
  font-weight: 400;
}

.m-block__nav.hide {
  display: none;
}

.m-block__nav_dop {
  display: none;
}
.m-block__nav_dop li ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  flex-direction: row;
}
.m-block__nav_dop li ul li {
  width: calc((100% - 15px) / 2);
}
.m-block__nav_dop li ul li > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.m-block__nav_dop li ul li button {
  border: none;
  background: none;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
}
.m-block__nav_dop li ul li button img {
  max-width: 100%;
  transition: 0.2s;
}
.m-block__nav_dop li ul li ul {
  flex-direction: column;
  padding: 0 0 0 9px;
  display: none;
}
.m-block__nav_dop li ul li ul li {
  width: 100%;
}
.m-block__nav_dop li ul li.open > div a {
  font-weight: bold;
}
.m-block__nav_dop li ul li.open ul {
  display: flex;
}
.m-block__nav_dop li ul li.open button img {
  transform: rotate(180deg);
}

.m-block__nav_dop.open {
  display: flex;
}

.m-block__nav__more:hover {
  text-decoration: none;
}

.m-block__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 24px 0;
}
.m-block__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.m-block__title {
  font-family: "next_artregular";
  color: #202020;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 130%;
  margin: 19px 0 20px 0;
  padding: 0 0 11px 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 11px;
}
.m-block__title svg {
  margin-top: -5px;
  display: none;
}

.m-block__title:before {
  content: "";
  width: 50px;
  height: 1px;
  background: #202020;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.m-block__title:after {
  content: "Меню";
}

.m-block__title.level2 svg {
  display: inline;
}

.m-block__title.level2:after {
  content: "Каталог";
}

.search-hints {
  position: absolute;
  background: #ffffff;
  top: 34px;
  left: 0;
  padding: 14px 0;
  display: none;
}
.search-hints .search-hints__row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.search-hints .search-hints__row a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0 17px;
  height: 40px;
  white-space: nowrap;
  text-decoration: none;
  color: #202020;
  border: 1px solid #202020;
  border-radius: 24px;
}
.search-hints .search-hints__column {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 12px;
}
.search-hints .search-hints__column a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #202020;
  text-decoration: none;
  font-size: 16px;
}
.search-hints .search-hints__column a:before {
  content: url("../images/search-lg.svg");
  height: 24px;
}

.search-hints.open {
  display: block;
}

.main-slider {
  height: 660px;
  background-size: cover;
  position: relative;
  margin-bottom: 120px;
}
.main-slider .wrapper {
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
.main-slider .breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.main-slider .breadcrumbs ul li {
  color: #fff;
}
.main-slider .breadcrumbs ul li a {
  color: #fff;
}

.main-slider:before {
  content: "";
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-slider__title {
  font-size: 54px;
  line-height: 130%;
  color: #fff;
  font-family: "next_artregular";
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.main-slider__subtitle {
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
  max-width: 522px;
}

.main-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #fff;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  font-family: "next_artregular";
  font-size: 16px;
  line-height: 130%;
  color: #202020;
  transition: 0.2s;
  position: relative;
}

.main-slider__btn:hover {
  color: #fff;
  background: #202020;
}

.main-slider__btn:after {
  content: url("../images/vertical_arrow.svg");
  position: absolute;
  bottom: -43px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0;
  line-height: 100%;
  transition: 0.2s;
}

.main-slider__btn:hover:after {
  content: url("../images/vertical_arrow_black.svg");
}

.main-slider_404 {
  margin: 0;
}
.main-slider_404 .main-slider__btn:after {
  display: none;
}

@media (max-width: 1470px) {
  .main-slider .breadcrumbs {
    left: 15px;
  }
}
@media (max-width: 992px) {
  .main-slider {
    height: 493px;
    margin-bottom: 80px;
  }
  .main-slider__title {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .main-slider_404 {
    margin-bottom: 0;
  }
  .main-slider_404 .main-slider__title {
    font-size: 28px;
  }
  .main-slider__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .main-slider__btn {
    width: 94px;
    height: 94px;
    font-size: 13px;
  }
}
.product__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 74px;
}

.product__list__item {
  width: calc((100% - 12px) / 2);
  height: 545px;
  background-position: center;
  background-repeat: repeat;
  border-radius: 14px;
  box-sizing: border-box;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
  background-size: 100%;
}

.product__list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.6;
  transition: 0.2s;
  border-radius: 14px;
}

.product__list__item__info {
  position: relative;
}

.product__list__item__info:before {
  content: "";
  width: calc(100% + 44px);
  left: -22px;
  height: calc(100% + 44px);
  top: -22px;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  transition: 0.2s;
}

.product__list__item__title {
  font-size: 24px;
  line-height: 130%;
  color: #fff;
  font-family: "next_artbold";
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.product__list__item__price {
  font-size: 20px;
  line-height: 130%;
  color: #BBBBBB;
  position: relative;
  z-index: 2;
  transition: 0.2s;
}

.product__list__item__info {
  position: relative;
  z-index: 2;
}

/*.product__list__item:hover:before{
    opacity:0;
}*/
.product__list__item__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #202020;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 130%;
  left: 50%;
  top: 153px;
  transform: translate(-50%, 0);
  position: absolute;
  z-index: 2;
  font-family: "next_artregular";
  opacity: 0;
  transition: 0.2s;
}

.product__list__item:hover {
  background-size: 110%;
  /*.product__list__item__info:before{
      opacity:1;
  }*/
  /*.product__list__item__more{
      opacity:1;
  }*/
}
.product__list__item:hover .product__list__item__title {
  color: #fff;
}
.product__list__item:hover .product__list__item__price {
  color: #fff;
}

@media (max-width: 992px) {
  .product__list {
    gap: 8px;
  }
  .product__list__item {
    width: calc((100% - 8px) / 2);
    height: 250px;
    border-radius: 4px;
    padding: 10px;
    background-size: cover;
  }
  .product__list__item:before {
    border-radius: 4px;
  }
  .product__list__item__title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .product__list__item__price {
    font-size: 12px;
  }
  .product__list {
    margin-bottom: 32px;
  }
}
.footer {
  background: linear-gradient(to bottom, #868686 0%, #202020 100%);
  padding: 80px 0;
}

.footer__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__block__flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  margin-bottom: 46px;
}
.footer__logo img {
  width: 191px;
}

.footer__phone {
  font-size: 24px;
  line-height: 130%;
  font-family: "next_artbold";
  text-decoration: none;
  color: #fff;
  display: inline-block;
  border-bottom: 1px solid #BBBBBB;
  padding-bottom: 15px;
  margin-bottom: 17px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__social svg path {
  transition: 0.2s;
  fill: #fff;
}

.footer__social a:hover svg path {
  fill: #BBBBBB;
}

.footer__line {
  display: flex;
  justify-content: space-between;
}

.footer__block__title {
  font-size: 18px;
  line-height: 130%;
  font-family: "next_artbold";
  color: #fff;
  margin-bottom: 16px;
}

.footer__block__title_big {
  margin-bottom: 8px;
}

.footer__nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav li a {
  font-size: 13px;
  line-height: 130%;
  color: #BBBBBB;
  text-decoration: none;
  transition: 0.2s;
  display: block;
}
.footer__nav li a:hover {
  color: #fff;
}

.footer__block__text {
  color: #fff;
  font-size: 13px;
  line-height: 130%;
  margin-bottom: 12px;
}

.form_footer {
  width: 300px;
}
.form_footer button {
  width: 120px;
  height: 120px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 130%;
  color: #202020;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  padding: 0;
}
.form_footer button:after {
  content: "Отправить";
  font-family: "next_artregular";
  font-size: 16px;
}
.form_footer button:hover {
  background: #202020;
  color: #fff;
}
.form_footer .form__btnwrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.form_footer .form__btnwrap:after {
  content: url("../images/horizontal_arrow.svg");
}
.form_footer .form__btnwrap.active button {
  border: 1px solid #fff;
  background: none;
  color: #fff;
}
.form_footer .form__btnwrap.active button:after {
  content: "Ожидайте звонка";
}
.form_footer .form__btnwrap.active:after {
  display: none;
}

.footer__copyright {
  font-size: 13px;
  line-height: 130%;
  color: #BBBBBB;
  padding-bottom: 17px;
}

.footer__dev {
  font-size: 13px;
  line-height: 130%;
  color: #BBBBBB;
  padding-bottom: 17px;
}

.footer__dev:hover {
  text-decoration: none;
}

.footer__info {
  display: flex;
  flex-direction: column;
}

.footer__mlogo {
  display: none;
}

.footer__dev_m {
  display: none;
}

@media (max-width: 992px) {
  .footer__form {
    order: 1;
    width: 100%;
  }
  .footer__block {
    order: 2;
  }
  .footer__line {
    gap: 20px;
    flex-direction: column;
  }
  .footer__logo {
    display: none;
  }
  .footer__block:nth-child(1) {
    order: 4;
  }
  .footer {
    padding: 80px 0 40px 0;
  }
  .footer__form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__block__title {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .footer__block__title_big {
    font-size: 24px;
    margin-bottom: 8px;
    font-family: "next_artregular";
  }
  .footer__block__text {
    text-align: center;
    margin-bottom: 4px;
  }
  .form_footer button {
    width: 94px;
    height: 94px;
    font-size: 13px;
  }
  .form_footer button:after {
    content: "Получить";
    font-size: 13px;
  }
  .footer__block__flex {
    width: 100%;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 6px;
    flex-direction: row;
    width: 100%;
  }
  .footer__nav li {
    width: calc((100% - 6px) / 2);
  }
  .footer__phone {
    font-size: 16px;
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
    order: 2;
  }
  .footer__dev {
    display: none;
  }
  .footer__info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer__copyright {
    padding-bottom: 0;
  }
  .form_footer .form__btnwrap {
    gap: 18px;
  }
  .footer__copyright {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .footer__dev_m {
    color: #BBBBBB;
  }
  .footer__mlogo {
    order: 2;
  }
  .footer__mlogo img {
    width: 146px;
  }
  .footer__dev_m {
    display: block;
  }
}
@media (max-width: 450px) {
  .form_footer {
    width: 100%;
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form input, .form button, .form textarea {
  outline: none;
}
.form input[type=text], .form textarea {
  border: 1px solid #BBBBBB;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  padding: 0 16px;
  transition: 0.2s;
  font-family: "SuisseIntl";
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}
.form input[type=text]::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  font-family: "SuisseIntl";
  font-size: 13px;
  color: #BBBBBB;
  font-weight: 400;
}
.form input[type=text]:-moz-placeholder, .form textarea:-moz-placeholder {
  font-family: "SuisseIntl";
  font-size: 13px;
  color: #BBBBBB;
  font-weight: 400;
}
.form input[type=text]::-moz-placeholder, .form textarea::-moz-placeholder {
  font-family: "SuisseIntl";
  font-size: 13px;
  color: #BBBBBB;
  font-weight: 400;
}
.form input[type=text]:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  font-family: "SuisseIntl";
  font-size: 13px;
  color: #BBBBBB;
  font-weight: 400;
}
.form input[type=text]:focus, .form textarea:focus {
  background: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
}
.form .form__alert {
  font-size: 9px;
  line-height: 130%;
  color: #BBBBBB;
  margin-bottom: 4px;
}
.form .form__alert a {
  color: #BBBBBB;
}

.btn {
  background: #202020;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 130%;
  border-radius: 50%;
  color: #fff;
  font-family: "next_artregular";
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  background: #fff;
  border: 1px solid #202020;
  color: #202020;
}

.btn.invert {
  background: #fff;
  color: #202020;
  border: 1px solid #202020;
}

.btn.invert:hover {
  background: #202020;
  border: 1px solid #202020;
  color: #fff;
}

@media (max-width: 992px) {
  .btn {
    width: 94px;
    height: 94px;
    font-size: 13px;
  }
}
.features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.features__item {
  display: flex;
  flex-direction: column;
}

.features__item__num {
  font-family: "next_artbold";
  color: #BBBBBB;
  font-size: 28px;
  line-height: 130%;
  margin-bottom: 8px;
}

.features__item__title {
  font-family: "next_artbold";
  color: #202020;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 4px;
}

.features__item__subtitle {
  color: #202020;
  font-size: 13px;
  line-height: 130%;
}

@media (max-width: 992px) {
  .features {
    flex-wrap: wrap;
    gap: 4px 28px;
  }
  .features__item {
    width: calc((100% - 28px) / 2);
  }
  .features__item__num {
    font-size: 24px;
  }
  .features__item__title {
    font-size: 18px;
  }
  .features__item__subtitle {
    font-size: 12px;
  }
}
.breadcrumbs {
  padding: 24px 0 18px 0;
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 10px 16px;
}
.breadcrumbs ul li {
  list-style: none;
  font-size: 12px;
  display: flex;
  gap: 16px;
}
.breadcrumbs ul li a {
  font-size: 12px;
  text-decoration: none;
  color: #202020;
}
.breadcrumbs ul li:after {
  content: "/";
}
.breadcrumbs ul li:last-child:after {
  content: "";
}

.catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 11;
}

.catalog {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 120px;
  margin-top: 24px;
}

.catalog__content {
  width: calc(100% - 363px);
}

.catalog__content_search {
  width: 100%;
}
.catalog__content_search .catalog__list__item {
  width: calc((100% - 36px) / 4);
}

.catalog__sidebar {
  width: 351px;
  box-sizing: border-box;
  border: 1px solid #BBBBBB;
  border-radius: 10px;
  padding: 20px 30px;
}
.catalog__sidebar ul {
  margin: 0;
  padding: 0;
}
.catalog__sidebar ul li {
  list-style: none;
}
.catalog__sidebar ul li button {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: 0.2s;
}
.catalog__sidebar ul li a {
  color: #202020;
  text-decoration: none;
  font-size: 16px;
  line-height: 130%;
}
.catalog__sidebar ul li a:hover {
  font-weight: 600;
}
.catalog__sidebar ul li li.active > a {
  font-weight: 600;
}
.catalog__sidebar ul li li.active > div a {
  font-weight: 600;
}
.catalog__sidebar ul li ul {
  padding: 0 0 0 20px;
  display: none;
}
.catalog__sidebar ul li ul li ul {
  display: none;
}
.catalog__sidebar ul li ul li ul li a {
  font-size: 13px;
}
.catalog__sidebar ul li.open > div button {
  transform: rotate(180deg);
}
.catalog__sidebar ul li.open > ul {
  display: flex;
  flex-direction: column;
}
.catalog__sidebar > ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.catalog__sidebar > ul > li {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 11px;
}
.catalog__sidebar > ul > li > ul {
  margin-top: 12px;
  gap: 12px;
}
.catalog__sidebar > ul > li > ul li ul {
  margin-top: 10px;
  gap: 10px;
}
.catalog__sidebar > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.catalog__sidebar__cat {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.catalog__sidebar__title {
  font-size: 24px;
  line-height: 130%;
  font-family: "next_artregular";
  margin-bottom: 20px;
  margin-top: 32px;
}

.catalog__sidebar__title:first-child {
  margin-top: 0;
}

.catalog__list {
  width: 100%;
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
}

.catalog__list__item {
  height: 436px;
  box-sizing: border-box;
  width: calc((100% - 24px) / 3);
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
  overflow: hidden;
}

.catalog__list__item__bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.2s;
}

.catalog__list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.6;
  transition: 0.2s;
  border-radius: 10px;
  z-index: 2;
}

.catalog__list__item__info {
  position: relative;
  z-index: 3;
}

.catalog__list__item__title {
  font-family: "next_artbold";
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  transition: 0.2s;
  position: relative;
}

.catalog__list__item__price {
  font-size: 20px;
  color: #BBBBBB;
  font-family: "next_artregular";
  transition: 0.2s;
  position: relative;
}

.catalog__list__item__info:before {
  content: "";
  width: calc(100% + 20px);
  left: -10px;
  height: calc(100% + 20px);
  top: -10px;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  transition: 0.2s;
}

.catalog__list__item:hover {
  background-size: 110%;
  /*.catalog__list__item__info:before{
      opacity:1;
  }*/
}
.catalog__list__item:hover .catalog__list__item__title {
  color: #fff;
}
.catalog__list__item:hover .catalog__list__item__price {
  color: #fff;
}
.catalog__list__item:hover .catalog__list__item__bg {
  transform: scale(1.1);
}

/*.catalog__list__item:hover:before{
    opacity:0;
}*/
.catalog-more-btn {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.catalog-more-btn .btn {
  width: 94px;
  height: 94px;
}

.catalog-top__chapter {
  display: none;
}

.catalog-top__filter-btn {
  display: none;
}

.catalog__sidebar__close-btn {
  display: none;
}

@media (max-width: 1250px) {
  .catalog__list__item {
    height: 380px;
    width: calc((100% - 12px) / 2);
  }
}
@media (max-width: 992px) {
  .catalog__list__item {
    height: 380px;
    width: calc((100% - 24px) / 3);
  }
  .catalog__sidebar {
    display: none;
  }
  .catalog__sidebar.open {
    display: block;
    position: absolute;
    left: 0;
    top: -54px;
    width: 100%;
    z-index: 101;
    background: #fff;
    padding: 20px;
  }
  .catalog__sidebar > ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .catalog__sidebar ul li a {
    font-size: 13px;
  }
  .catalog__sidebar > ul > li {
    border-bottom: none;
    padding-bottom: 0;
  }
  .catalog__sidebar__title {
    font-size: 16px;
    font-weight: 600;
    font-family: "SuisseIntl";
    margin-bottom: 14px;
    margin-top: 20px;
  }
  .catalog__sidebar__title:first-child {
    margin-top: 0;
  }
  .catalog__content {
    width: 100%;
  }
  .catalog-top {
    flex-wrap: wrap;
  }
  .catalog-top .h1-title {
    width: 100%;
    font-size: 36px;
  }
  .catalog-top .h1-title span {
    font-size: 12px;
  }
  .catalog-top__filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    width: 64px;
    height: 40px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 24px;
    border: 1px solid #202020;
  }
  .catalog {
    margin-top: 14px;
    position: relative;
  }
  .catalog__sidebar__close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
  }
  .catalog__sidebar__categories > li:nth-child(n+9) {
    display: none;
  }
  .catalog__sidebar__categories.active > li:nth-child(n+9) {
    display: list-item;
  }
  .catalog__more-btn {
    width: 100%;
    text-align: center;
    border: none;
    background: none;
    padding: 0;
    color: #202020;
    font-size: 13px;
    text-decoration: underline;
    display: block;
    margin-top: 20px;
  }
  .catalog__more-btn:after {
    content: "Больше категорий";
  }
  .catalog__more-btn.active:after {
    content: "Свернуть";
  }
}
@media (max-width: 768px) {
  .catalog__list {
    gap: 6px;
  }
  .catalog__list__item {
    height: 250px;
    width: calc((100% - 6px) / 2);
    padding: 10px;
  }
  .catalog__content_search .catalog__list__item {
    width: calc((100% - 6px) / 2);
  }
  .catalog__list__item__title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .catalog__list__item__price {
    font-size: 12px;
  }
  .catalog-top__chapter {
    display: flex;
    width: 100%;
    gap: 1px;
    margin: 10px 0 13px 0;
  }
  .catalog-top__chapter a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: calc((50% - 1px) / 2);
    border-radius: 4px;
    position: relative;
    transition: 0.2s width;
  }
  .catalog-top__chapter a span {
    position: relative;
    z-index: 2;
  }
  .catalog-top__chapter a:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.32) 100%);
  }
  .catalog-top__chapter a.active {
    width: calc(50% - 1px);
    font-size: 24px;
    font-family: "next_artregular";
    font-weight: normal;
    background-image: none !important;
  }
}
@media (max-width: 370px) {
  .catalog-top__chapter a {
    font-size: 12px;
  }
  .catalog-top__chapter a.active {
    font-size: 16px;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.pagination ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.pagination ul li {
  list-style: none;
}
.pagination ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #202020;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  line-height: 30px;
}
.pagination ul li a:hover {
  background: #202020;
  color: #fff;
}
.pagination ul li.active a {
  background: #202020;
  color: #fff;
}
.pagination ul span {
  font-size: 13px;
  margin: 0 14px;
  display: flex;
  height: 22px;
  align-items: flex-end;
}
.pagination ul .prev {
  margin-right: 14px;
}
.pagination ul .prev a {
  background: none;
  width: 34px;
  height: 34px;
  border: 1px solid #202020;
}
.pagination ul .prev a svg path {
  transition: 0.2s;
}
.pagination ul .prev a:hover svg path {
  stroke: #fff;
}
.pagination ul .next {
  margin-left: 14px;
}
.pagination ul .next a {
  background: none;
  width: 34px;
  height: 34px;
  border: 1px solid #202020;
}
.pagination ul .next a svg path {
  transition: 0.2s;
}
.pagination ul .next a:hover svg path {
  stroke: #fff;
}
.pagination ul .prev.disabled a, .pagination ul .next.disabled a {
  border: 1px solid #BBBBBB;
}
.pagination ul .prev.disabled a svg path, .pagination ul .next.disabled a svg path {
  stroke: #BBBBBB;
}

.contacts {
  display: flex;
  align-items: flex-start;
  gap: 88px;
  margin-top: 24px;
}

.contacts__text {
  border: 1px solid #BBBBBB;
  border-radius: 18px;
  padding: 26px 36px 9px 36px;
  box-sizing: border-box;
  width: 776px;
}

.contacts__text__title {
  font-size: 28px;
  color: #202020;
  font-family: "next_artregular";
  margin-bottom: 16px;
}

.contacts__text__description {
  font-size: 16px;
  width: 467px;
}

.content-columns {
  display: flex;
  align-items: flex-start;
  gap: 88px;
  margin-top: 24px;
}

.content-columns__text {
  border: 1px solid #BBBBBB;
  border-radius: 18px;
  padding: 26px 36px;
  box-sizing: border-box;
  width: 776px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.content-columns__text__title {
  font-size: 28px;
  color: #202020;
  font-family: "next_artregular";
  margin-bottom: 16px;
}
.content-columns__text__title span {
  display: block;
}
.content-columns__text__title br {
  display: none;
}

.content-columns__text__description {
  font-size: 16px;
  width: 467px;
}

.content-columns__params {
  width: calc(100% - 864px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-columns__param__title {
  font-size: 20px;
  color: #202020;
  font-family: "next_artregular";
  margin-bottom: 16px;
}

.content-columns__param__title_big {
  margin-bottom: 24px;
}

.content-columns__param__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.content-columns__param__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.content-columns__param__item__key {
  font-size: 13px;
}

.content-columns__param__item__val {
  font-family: "next_artregular";
  font-size: 20px;
}
.content-columns__param__item__val a {
  color: #202020;
  text-decoration: none;
  transition: 0.2s;
}
.content-columns__param__item__val a:hover {
  color: #ADADAD;
}

.content-columns__param__item__text {
  font-size: 16px;
}
.content-columns__param__item__text ul {
  margin: 0;
  padding: 0;
  font-size: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-columns__param__item__text ul span {
  font-weight: 600;
}
.content-columns__param__item__text p {
  font-size: 16px;
}

.content-columns__wide {
  width: 100%;
  color: #202020;
}
.content-columns__wide p {
  font-size: 13px;
  color: #202020;
  margin-top: 0;
}
.content-columns__wide h3 {
  font-size: 20px;
  font-family: "next_artbold";
}
.content-columns__wide .big {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.content-columns__param__item__deliverytypes {
  display: flex;
  gap: 12px;
}

.content-columns__param__item__deliverytypes__item {
  border: 1px solid #BBBBBB;
  border-radius: 12px;
  height: 50px;
  box-sizing: border-box;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-columns__param__item__deliverytypes__item img {
  max-height: 100%;
  border-radius: 3px;
}

@media (max-width: 1300px) {
  .content-columns {
    gap: 40px;
  }
  .content-columns__text {
    width: 60%;
  }
  .content-columns__text__description {
    width: 60%;
  }
  .content-columns__params {
    width: calc(100% - 40px - 60%);
  }
}
.content-columns__text__description_m {
  display: none;
}

@media (max-width: 1100px) {
  .content-columns__param__item__deliverytypes__item {
    width: auto;
    padding: 0 6px;
  }
  .content-columns__param__item__deliverytypes__item img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 992px) {
  .content-columns {
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }
  .content-columns__text {
    width: 100%;
    order: 1;
  }
  .content-columns__params {
    gap: 20px;
    order: 2;
  }
  .content-columns__params {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .content-columns {
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }
  .content-columns__text {
    width: 100%;
    padding: 15px;
    min-height: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }
  .content-columns__params {
    gap: 20px;
  }
  .content-columns__text__description {
    display: none;
  }
  .content-columns__params {
    width: 100%;
  }
  .content-columns__param__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .content-columns__param__title_big {
    text-align: center;
    font-size: 20px;
  }
  .content-columns__param__item__val {
    font-size: 16px;
  }
  .content-columns__param__item__text {
    font-size: 13px;
  }
  .content-columns__text__title {
    font-size: 16px;
    font-family: "SuisseIntl";
    margin-bottom: 0;
    font-weight: 600;
  }
  .content-columns__text__title br {
    display: inline;
  }
  .content-columns__text__description_m {
    display: block;
    font-size: 13px;
  }
  .content-columns__param__item__text ul {
    gap: 12px;
  }
  .content-columns__param__item__deliverytypes {
    gap: 6px;
  }
  .content-columns__param__item__deliverytypes__item {
    border-radius: 4px;
    height: 54px;
    width: auto;
    padding: 0 6px;
    gap: 6px;
  }
  .content-columns__param__item__deliverytypes__item img {
    max-width: 100%;
    height: auto;
  }
}
.map {
  height: 600px;
  background: #000;
}

@media (max-width: 768px) {
  .map-wrap {
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 80px;
  }
  .map-wrap .map {
    border-radius: 4px;
    border: 1px solid #BBBBBB;
  }
  .map-wrap .map > .ymaps-map {
    border-radius: 4px;
  }
}
.catalog__sort {
  position: relative;
}

.catalog__sort__select {
  display: none;
}

.catalog__sort__current {
  box-sizing: border-box;
  min-width: 181px;
  height: 57px;
  border: 1px solid #202020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 15px;
  color: #202020;
  cursor: pointer;
  position: relative;
  border-radius: 24px;
  padding: 0 19px;
  gap: 10px;
}

.catalog__sort__select {
  flex-direction: column;
  position: absolute;
  top: 38px;
  background: #fff;
  border: 1px solid #202020;
  border-top: none;
  min-width: 181px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 19px 10px 19px;
  transition: 0.2s;
  display: none;
  border-radius: 0 0 24px 24px;
}

.catalog__sort__select > div {
  font-weight: 400;
  font-size: 16px;
  color: #ADADAD;
  cursor: pointer;
  border-top: 1px solid #ADADAD;
  padding: 10px 0;
  transition: 0.2s;
}

.catalog__sort__select > div:hover {
  color: #202020;
}

.catalog__sort__current__arrow {
  height: 20px;
  transition: 0.2s;
}

.catalog__sort.active .catalog__sort__current {
  border: 1px solid #202020;
  border-bottom: 1px solid transparent;
  border-radius: 24px 24px 0 0;
}
.catalog__sort.active .catalog__sort__current__arrow {
  transform: rotate(180deg);
}

.catalog__sort.active .catalog__sort__select {
  display: flex;
  border: 1px solid #202020;
  border-top: none;
}

@media (max-width: 992px) {
  .catalog__sort__current {
    min-width: 150px;
    height: 40px;
    font-size: 13px;
  }
  .catalog__sort__select {
    min-width: 150px;
  }
  .catalog__sort__select > div {
    font-size: 13px;
  }
  .catalog__sort__select {
    top: 29px;
  }
}
.product {
  display: flex;
  margin-top: 24px;
  gap: 88px;
}

.product__photos {
  width: 728px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product__photos__main {
  width: 100%;
  height: 568px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  position: relative;
}

.product__photos__main__furniture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.product__photos__variants {
  display: flex;
  gap: 8px;
}

.product__photos__variant {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 98px;
  border-radius: 8px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /*transition:0.5s;*/
}
.product__photos__variant .product__photos__variant__title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.product__photos__variant:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  transition: 0.2s;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.4));
  background-size: 100% 139%;
  background-position: bottom;
  transition: background-position 0.2s ease;
}

.product__photos__variant.active {
  border: 1px solid #202020;
  width: 160px;
}

.product__photos__variant.active:before, .product__photos__variant:hover:before {
  background-position: top;
}

.product__photos__variant__furniture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.product__calc {
  width: calc(100% - 816px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product__calc__title {
  font-size: 20px;
  color: #202020;
  font-family: "next_artregular";
  margin-bottom: 20px;
}

.product__calc__sizes {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product__calc__sizes input {
  border: 1px solid #202020;
  height: 50px;
  text-align: center;
  border-radius: 12px;
  font-size: 20px;
  color: #202020;
  font-family: "next_artregular";
  width: 130px;
}
.product__calc__sizes input::-webkit-input-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
}
.product__calc__sizes input:-moz-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
}
.product__calc__sizes input::-moz-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
}
.product__calc__sizes input:-ms-input-placeholder {
  font-family: "SuisseIntl";
  font-size: 16px;
  color: #BBBBBB;
}
.product__calc__sizes > span {
  color: #141414;
  font-size: 13px;
}
.product__calc__sizes .product__calc__sizes__area {
  color: #141414;
  font-size: 28px;
  font-family: "next_artregular";
}

.product__calc__materials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product__calc__material {
  width: 120px;
  height: 120px;
  border: 1px solid #BBBBBB;
  border-radius: 5px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  cursor: pointer;
  transition: 0.2s;
  box-sizing: border-box;
  background-size: cover;
}

.product__calc__material__name {
  font-size: 16px;
  font-weight: 600;
}

.product__calc__material__price {
  font-size: 13px;
}

.product__calc__material.active, .product__calc__material:hover {
  border: 1px solid #202020;
}

.product__calc__extra {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #EBEBEB;
}
.product__calc__extra label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.product__calc__extra label input {
  display: none;
}
.product__calc__extra label .product__calc__extra__checkbox {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  border: 1px solid #202020;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.product__calc__extra label .product__calc__extra__checkbox:after {
  content: url("../images/check.svg");
  opacity: 0;
}
.product__calc__extra label input:checked + .product__calc__extra__checkbox {
  background: #202020;
}
.product__calc__extra label input:checked + .product__calc__extra__checkbox:after {
  opacity: 1;
}
.product__calc__extra label .product__calc__extra__name {
  color: #202020;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  text-decoration: none;
  position: relative;
}
.product__calc__extra label .product__calc__extra__name > span {
  visibility: hidden;
}
.product__calc__extra label .product__calc__extra__name:before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  white-space: nowrap;
}
.product__calc__extra label input:checked + .product__calc__extra__checkbox + .product__calc__extra__name:before {
  font-weight: 600;
}

.product__calc__extra__item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.product__calc__extra:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.product__calc__extra__price {
  color: #141414;
  font-size: 20px;
  font-family: "next_artregular";
}

.product__calc__extra__help {
  height: 24px;
  position: relative;
}
.product__calc__extra__help button {
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

.product__calc__extra__item:hover, .product__calc__extra__item.open {
  z-index: 2;
}

.product__calc__extra__help__content {
  position: absolute;
  width: 330px;
  box-sizing: border-box;
  border-radius: 9px;
  border: 1px solid #202020;
  padding: 16px;
  left: -153px;
  background: #fff;
  display: none;
}
.product__calc__extra__help__content button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: none;
}

.product__calc__extra__help__content__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product__calc__extra__help__content__text {
  font-size: 13px;
}

.product__calc__extra__item.open .product__calc__extra__help__content {
  display: block;
}

@media (min-width: 993px) {
  .product__calc__extra__help:hover .product__calc__extra__help__content {
    display: block;
  }
}
.product__calc__result {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product__calc__result__price {
  font-size: 28px;
  color: #202020;
  font-family: "next_artregular";
  margin-bottom: 8px;
}
.product__calc__result__price br {
  display: none;
}

.product__calc__result__minrpice {
  font-size: 13px;
}

.product__calc__chars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product__calc__char {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #EBEBEB;
}

.product__calc__char:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.product__calc__char__key {
  font-size: 16px;
  color: #202020;
}

.product__calc__char__val {
  font-size: 20px;
  color: #141414;
  font-family: "next_artregular";
}

@media (max-width: 1300px) {
  .product {
    gap: 40px;
  }
  .product__calc__sizes input {
    width: 100px;
  }
  .product__photos {
    width: 550px;
  }
  .product__photos__main {
    height: 429px;
  }
  .product__calc {
    width: calc(100% - 590px);
  }
}
@media (max-width: 992px) {
  .product {
    margin-top: 14px;
    gap: 20px;
    flex-direction: column;
  }
  .product__photos {
    width: 100%;
  }
  .product__calc {
    width: 100%;
  }
  .product__calc__material {
    width: 106px;
    height: 106px;
    border-radius: 4px;
    padding: 8px;
  }
  .product__calc__material__name {
    font-size: 13px;
  }
  .product__calc__sizes {
    gap: 8px;
  }
  .product__calc__sizes input {
    height: 37px;
    font-size: 16px;
  }
  .product__calc__extra__help__content > button {
    display: block;
  }
  .product__calc__sizes .product__calc__sizes__area {
    font-size: 24px;
  }
  .product__calc__title {
    font-size: 16px;
    font-family: "SuisseIntl";
    font-weight: 600;
    margin-bottom: 14px;
  }
  .product__calc__result__minrpice {
    font-size: 10px;
  }
  .product__calc__result__price {
    font-size: 28px;
    color: #202020;
    font-family: "next_artregular";
    margin-bottom: 8px;
  }
  .product__photos__variant {
    height: 90px;
  }
  .product__photos__variant .product__photos__variant__title {
    font-size: 9px;
    text-align: center;
  }
  .product__photos__variants {
    gap: 1px;
  }
  .product__calc__extra label .product__calc__extra__name {
    font-size: 13px;
  }
  .product__calc__result__price {
    margin-bottom: 2px;
  }
  .product__calc__result__price br {
    display: inline;
  }
  .product__calc__extra__item {
    gap: 10px;
  }
  .product__calc {
    gap: 20px;
  }
  .product__calc__extra__help__content {
    left: -138px;
  }
  .product__calc__char__key {
    font-size: 13px;
  }
  .product__calc__char__val {
    font-size: 16px;
    font-family: "SuisseIntl";
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .product__photos__main {
    height: 330px;
  }
  .product__calc__sizes input {
    width: 80px;
  }
  .product__calc__sizes {
    gap: 4px;
  }
}
@media (max-width: 500px) {
  .product__calc__material {
    width: calc((100% - 12px) / 3);
  }
  .product__calc__extra__help__content {
    width: 100%;
    left: 0;
    top: -2px;
  }
  .product__calc__extra__item {
    position: static;
  }
  .product__calc__extra {
    position: relative;
  }
  .product__calc__extra__help {
    position: static;
  }
}
.popup {
  display: none;
  background: linear-gradient(to bottom, #868686 0%, #202020 100%);
}

.fancybox-slide--html .fancybox-close-small {
  color: #fff;
}

.fancybox-bg {
  background: #202020;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.7;
}

@media (max-width: 1470px) {
  .wrapper {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .section-title {
    margin: 0 0 32px 0;
    font-size: 28px;
  }
  .section {
    padding-bottom: 80px;
  }
  .h1-title {
    font-size: 28px;
    text-align: center;
    width: 100%;
  }
  .h1-title_search {
    text-align: left;
  }
  .h1-title_search span {
    font-size: 12px;
  }
  .h1-title_s {
    font-size: 24px;
  }
  .section_contacts {
    padding-bottom: 24px;
  }
}/*# sourceMappingURL=style.css.map */