/*!
Theme Name: ruscolor
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ruscolor
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ruscolor is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@font-face {
  font-family: "Jost";
  font-weight: 300;
  font-style: normal;
  src: url("assets/fonts/Jost-Light.woff2") format("woff2"), url("assets/fonts/Jost-Light.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  font-weight: 400;
  font-style: normal;
  src: url("assets/fonts/Jost-Regular.woff2") format("woff2"), url("assets/fonts/Jost-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  font-weight: 500;
  font-style: normal;
  src: url("assets/fonts/Jost-Medium.woff2") format("woff2"), url("assets/fonts/Jost-Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  font-weight: 600;
  font-style: normal;
  src: url("assets/fonts/Jost-SemiBold.woff2") format("woff2"), url("assets/fonts/Jost-SemiBold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  font-weight: 700;
  font-style: normal;
  src: url("assets/fonts/Jost-Bold.woff2") format("woff2"), url("assets/fonts/Jost-Bold.woff") format("woff");
  font-display: swap;
}

*,
:before,
:after {
  outline: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --section-offset: 100px;
  --box-offset: 80px;
  --light-bg: #F6F6F6;
  --dark-bg: #033B68;
  --bd-color: #eee;
  --text-color: #0E1724;
  --text-light-color: #82868D;
  --main-color: #DE5754;
  --main-color-hover: #c9423f;
  --accent-color: #FFA838;
  --accent-color-hover: #f79f2d;
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: var(--text-light-color);
}

::-moz-placeholder {
  opacity: 1;
  color: var(--text-light-color);
}

:-ms-input-placeholder {
  opacity: 1;
  color: var(--text-light-color);
}

::-ms-input-placeholder {
  opacity: 1;
  color: var(--text-light-color);
}

::placeholder {
  opacity: 1;
  color: var(--text-light-color);
}

body,
html {
  font-size: 18px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-family: "Jost", sans-serif;
  line-height: 1.4;
  color: var(--text-color);
}

a {
  text-decoration: underline;
  color: var(--main-color);
}

a:hover {
  text-decoration: none;
}

a[href^=tel] {
  cursor: default;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

strong {
  font-weight: 600;
}

b {
  font-weight: bold;
}

p,
blockquote,
ul,
ol {
  margin: 0 0 1.4rem;
}

ul,
ol {
  padding-left: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
}

h1,
.h1 {
  line-height: 1.1;
  font-size: 52px;
}

h2,
.h2 {
  line-height: 1.1;
  font-size: 40px;
}

h3,
.h3 {
  line-height: 1.2;
  font-size: 32px;
}

h4,
.h4 {
  line-height: 1.2;
  font-size: 28px;
}

h5,
.h5 {
  line-height: 1.3;
  font-size: 22px;
}

h6,
.h6 {
  font-size: 1rem;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: var(--app-height);
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1630px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}

.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.m-sect {
  margin: var(--section-offset) 0;
}

.mt-sect {
  margin-top: var(--section-offset);
}

.mb-sect {
  margin-bottom: var(--section-offset);
}

.p-sect {
  padding: var(--section-offset) 0;
}

.pt-sect {
  padding-top: var(--section-offset);
}

.pb-sect {
  padding-bottom: var(--section-offset);
}

.title {
  margin-bottom: 40px;
}

.title> :last-child {
  margin-bottom: 0;
}

.title__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 24px;
}

.title__grid .nav-arrows {
  margin: 0 0 0 auto;
}

.title__head {
  margin: 0;
  max-width: 50%;
}

.breadcrumbs {
  margin-bottom: 10px;
}

.breadcrumbs:last-child {
  margin-bottom: 0;
}

.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li,
.aioseo-breadcrumbs>span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 0.3em;
  padding-right: 1.1em;
}

.breadcrumbs li:after,
.aioseo-breadcrumbs>span:after {
  content: "/";
  position: absolute;
  top: 0;
  right: 2px;
  opacity: 0.7;
  font-weight: 300;
}

.breadcrumbs li:last-child,
.aioseo-breadcrumbs>span:last-child {
  margin-right: 0;
  padding-right: 0;
  font-weight: 300;
  opacity: 0.7;
}

.breadcrumbs li:last-child:after,
.aioseo-breadcrumbs>span:last-child:after {
  display: none;
}

.breadcrumbs a {
  text-decoration: none;
  color: inherit;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.aioseo-breadcrumbs>span.aioseo-breadcrumb-separator {
  display: none;
}

.pagination,
.woocommerce-pagination {
  margin-top: 80px;
  text-align: center;
}

.pagination__grid {
  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;
}

.pagination__arrow {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--light-bg);
  border-radius: 10px;
  text-decoration: none;
  line-height: 46px;
  font-size: 14px;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination__arrow:hover {
  border-color: var(--text-color);
  color: inherit;
}

.pagination__arrow._prev {
  margin-right: 20px;
}

.pagination__arrow._next {
  margin-left: 20px;
}

.pagination__list,
ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination__list a,
a.page-numbers,
span.page-numbers {
  display: block;
  min-width: 48px;
  padding: 0 7px;
  border: 1px solid var(--light-bg);
  border-radius: 10px;
  height: 48px;
  line-height: 46px;
  text-decoration: none;
  font-size: 20px;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}

.pagination__list a:hover,
a.page-numbers:hover,
span.page-numbers:hover {
  border-color: var(--text-color);
}

.pagination__list a.active,
a.page-numbers.current,
span.page-numbers.current {
  border-color: var(--main-color);
}

.content> :last-child {
  margin-bottom: 0;
}

.big-content {
  line-height: 1.3;
  font-size: 24px;
}

.big-content> :last-child {
  margin-bottom: 0;
}

.catalog-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.catalog-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: currentColor;
  -webkit-box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor, 16px 8px 0 currentColor, 0 16px 0 currentColor, 8px 16px 0 currentColor, 16px 16px 0 currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor, 16px 8px 0 currentColor, 0 16px 0 currentColor, 8px 16px 0 currentColor, 16px 16px 0 currentColor;
}

.btn,
.bapf_button {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 12px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 26px;
  background: var(--main-color);
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
  font-size: 1rem;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn>span {
  padding: 10px 12px;
}

.btn>.ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 20px;
}

.btn>.ic:first-child {
  margin-left: 12px;
}

.btn>.ic:last-child {
  margin-right: 12px;
}

.btn>.ic[class*=chevron] {
  margin: 0 !important;
  border-radius: 50%;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: var(--text-color);
}

.btn>.ic-chevron-left {
  padding-right: 2px;
}

.btn>.ic-chevron-right {
  padding-left: 2px;
}

.btn>.catalog-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.btn>.catalog-icon:first-child {
  margin-left: 12px;
}

.btn>.catalog-icon:last-child {
  margin-right: 12px;
}

.btn:hover {
  background-color: var(--main-color-hover);
}

.btn._medium {
  padding: 0 8px;
  border-radius: 23px;
  min-height: 46px;
}

.btn._big {
  border-radius: 30px;
  min-height: 60px;
}

.btn._full {
  width: 100%;
}

.btn._bd {
  border-color: currentColor;
  background: none;
  color: inherit;
}

.btn._bd:hover {
  color: var(--main-color);
}

.btn._accent {
  background-color: var(--accent-color);
}

.btn._accent:hover {
  background-color: var(--accent-color-hover);
}

.close-btn {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--main-color);
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.close-btn:hover {
  background-color: var(--main-color-hover);
}

.link-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.link-more>* {
  display: inline-block;
}

.link-more .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 50%;
  background: var(--main-color);
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding-left: 2px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.link-more:hover {
  color: var(--main-color);
}

.more-btn {
  display: inline-block;
  border-radius: 50%;
  background: var(--light-bg);
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding-left: 2px;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}

.form-title {
  margin-bottom: 40px;
}

.form-title>* {
  margin-bottom: 10px;
}

.form-title>*:last-child {
  margin-bottom: 0;
}

.form-title p {
  opacity: 0.8;
}

.form-item {
  margin-bottom: 20px;
}

.form-field,
.woocommerce-input-wrapper input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 15px 22px;
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 30px;
  line-height: 1.4;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-field:focus,
.woocommerce-input-wrapper input:focus {
  border-color: var(--main-color);
}

.form-field._search {
  padding: 11px 65px 11px 22px;
}

.form-field._cart,
.woocommerce-input-wrapper input {
  padding: 14px 18px;
  border-radius: 8px;
  background-color: #fff;
}

textarea.form-field {
  resize: none;
}

textarea.form-field:not([rows]) {
  height: 120px;
}

.form-policy {
  margin: 20px 0 0;
  opacity: 0.8;
  font-size: 15px;
}

.form-policy a {
  color: inherit;
}

.social__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 26px;
}

.social._ellips .social__grid {
  gap: 30px;
}

.social._ellips .social-item {
  border-radius: 50%;
  background: var(--text-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

.social._ellips .social-item:hover {
  background-color: var(--main-color);
}

.social-item {
  display: inline-block;
  text-decoration: none;
  font-size: 26px;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social-item:hover {
  color: var(--main-color);
}

.social-item.ic-whatsapp {
  font-size: 23px;
}

.nav-arrow-prev,
.nav-arrow-next {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-arrow-prev:hover,
.nav-arrow-next:hover {
  background-color: var(--main-color);
  color: #fff;
}

.nav-arrow-prev._shadow,
.nav-arrow-next._shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow-prev.disabled,
.nav-arrow-prev.swiper-button-disabled,
.nav-arrow-next.disabled,
.nav-arrow-next.swiper-button-disabled {
  cursor: default;
  background-color: #fff;
  color: #dee1e5;
}

.nav-arrow-prev.swiper-button-lock,
.nav-arrow-next.swiper-button-lock {
  display: none !important;
}

.nav-arrow-prev {
  left: 10px;
}

.nav-arrow-next {
  right: 10px;
}

.nav-arrows,
.nav-arrows__box {
  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: 10px;
}

.nav-arrows {
  margin-top: 40px;
}

.nav-arrows._lock {
  display: none;
}

.nav-arrows__box {
  padding: 5px;
  border-radius: 25px;
  background: var(--light-bg);
}

.nav-arrows .nav-arrow-prev,
.nav-arrows .nav-arrow-next {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.top-line {
  padding: 15px 0;
  background: var(--light-bg);
}

.top-line__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-line__menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-line__menu li {
  margin-right: 35px;
}

.top-line__menu a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-line__menu a:hover {
  color: var(--main-color);
}

.top-search {
  position: relative;
}

.top-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 30px;
  background: none;
  text-align: center;
  font-size: 22px;
  color: #82868D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-search__btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-color);
}

.sandwich {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: #fff;
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}

.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.sandwich span:nth-child(3) {
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}

.sandwich:hover {
  background-color: var(--main-color-hover);
}

.sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}

.sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--app-height);
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mob-menu__wrapper {
  overflow: hidden;
  padding: 90px 0 40px;
  min-height: var(--app-height);
}

.mob-menu__row {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EFF1F4;
}

.mob-menu__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mob-menu__row._top .top-search {
  margin-bottom: 20px;
}

.mob-menu__row._top>.btn {
  margin-bottom: 20px;
}

.mob-menu__row .top-contact {
  margin-bottom: 24px;
}

.mob-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mob-menu__list li {
  margin-bottom: 10px;
}

.mob-menu__list li:last-child {
  margin-bottom: 0;
}

.mob-menu__list a {
  text-decoration: none;
  font-size: 18px;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mob-menu__list a:hover {
  color: var(--main-color);
}

.tabs__btns {
  margin-bottom: 40px;
}

.tabs__btns-wrap {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 100%;
  gap: 16px;
}

.tabs__item:nth-child(n+2) {
  display: none;
}

.tab-btn {
  display: inline-block;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  background: var(--light-bg);
  text-align: left;
  font-size: 20px;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tab-btn:hover {
  background-color: #eee;
}

.tab-btn.active {
  background-color: var(--dark-bg);
  color: #fff;
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90px;
  border-radius: 8px;
  background: #F8F8F8;
  color: var(--text-color);
}

.quantity__btn {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.quantity__btn:before,
.quantity__btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #000;
}

.quantity__btn:before {
  width: 11px;
  height: 1px;
}

.quantity__btn:after {
  width: 1px;
  height: 11px;
}

.quantity__btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.quantity__btn._minus:after {
  display: none;
}

.quantity__btn[disabled] {
  cursor: default;
  background-color: transparent;
  opacity: 0.2;
}

.quantity__field {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.quantity__field input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
}

.header,
.header__grid {
  height: 110px;
}

.header {
  position: relative;
}

.header__scroll {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}

.header__scroll._fixed {
  position: fixed;
}

.header__scroll._fixed .header__menu {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__scroll._fixed:hover .header__menu {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.header__main {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid #EFF1F4;
}

.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__grid .top-search {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.header__toggle {
  display: none;
}

.header__logo {
  display: inline-block;
  margin: 0 70px;
  max-width: 220px;
}

.header__logo img {
  display: block;
  max-height: 90px;
}

.header__col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header__col._right {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__col._right> :first-child {
  margin-left: 15px;
	max-width: 201px;
}

.header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header__icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-bg);
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__icon:hover {
  background-color: var(--main-color);
  color: #fff;
}

.header__icon .ic {
  display: block;
  line-height: inherit;
}

.header__icon._notice:after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--main-color);
  -webkit-box-shadow: 0 0 0 3px #fff;
  box-shadow: 0 0 0 3px #fff;
}

.header__menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  padding: 15px 0;
  border-bottom: 1px solid #EFF1F4;
  background: #fff;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__menu-list a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__menu-list a:hover {
  color: var(--main-color);
}

.top-contact__descr {
  margin-top: 4px;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-light-color);
}

.bann {
  position: relative;
  padding-top: 95px;
}

.bann__bg {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  right: 0;
  height: 470px;
  background: var(--dark-bg);
}

.bann__bg img {
  position: absolute;
  top: 205px;
  left: 50%;
  margin-left: -1340px;
  max-width: none;
}

.bann-slider {
  overflow: hidden;
  border-radius: 30px;
}

.bann-slider .swiper-slide {
  height: auto;
}

.bann-slider__nav {
  position: absolute;
  left: var(--box-offset);
  right: var(--box-offset);
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.bann-slider__nav .nav-arrows {
  margin: 0 30px 0 0;
}

.bann-slider__nav .swiper-pagination-bullets {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0;
  width: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.bann-slide {
  padding: var(--box-offset) var(--box-offset) 140px;
  min-height: 700px;
  background: var(--light-bg) no-repeat center/cover;
}

.bann-slide__wrap {
  max-width: 600px;
}

.bann-slide__wrap> :last-child {
  margin-bottom: 0;
}

.bann-slide__action {
  margin-top: 50px;
}

.bann-advants {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.bann-advant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
  border-radius: 30px;
  background: var(--light-bg);
  text-align: center;
}

.bann-advant__icon {
  width: 140px;
  height: 100px;
  margin: 0 auto 25px;
}

.bann-advant .big-content {
  line-height: 1.1;
}

.bann-advant> :last-child {
  margin: auto 0 0;
}

.catalog-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.catalog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  line-height: 1.1;
}

.catalog-item>* {
  margin-bottom: 20px;
}

.catalog-item>*:last-child {
  margin-bottom: 0;
}

.catalog-item__img {
  position: relative;
  border-radius: 16px;
}

.catalog-item__img-bg {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border-radius: inherit;
  background: no-repeat center/cover;
}

.catalog-item__fav {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  border-radius: 0 14px;
  background: var(--light-bg);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  outline: none;
}

.catalog-item__fav:hover {
  color: var(--main-color);
}

.catalog-item__fav.active {
  color: var(--main-color);
}

.catalog-item__fav.active:before {
  content: "\e901";
}

.catalog-item__label {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 13px;
  background: var(--light-bg);
  line-height: 1;
  font-size: 16px;
  color: var(--main-color);
}

.catalog-item__top {
  margin-bottom: 4px;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-light-color);
}

.catalog-item__head {
  font-weight: 500;
  line-height: inherit;
}

.catalog-item__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.catalog-item__price {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0;
}

.home-about__box {
  padding: var(--box-offset);
  border-radius: 30px;
  background: var(--dark-bg);
  color: #fff;
}

.home-about__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-about__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  padding-right: 40px;
}

.home-about__img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
  padding-left: 40px;
}

.home-about__advants {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 80px;
  margin: var(--box-offset) 0 0;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  color: var(--text-color);
}

.home-about__advant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-about__advant-head {
  margin-right: 20px;
  color: var(--main-color);
}

.home-about__advant-descr {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.about-gallery {
  padding: var(--box-offset);
  border-radius: 30px;
  background: url("assets/img/about/gall-bg-left.svg") no-repeat 0 100%, url("assets/img/about/gall-bg-right.svg") no-repeat 100% 100%, var(--light-bg);
}

.about-gallery__slider {
  margin: 0 -15px;
}

.about-gallery__slider .swiper-slide {
  width: 25%;
  padding: 0 15px;
}

.about-gallery__slider .swiper-slide._big {
  width: 50%;
}

.about-gallery__item {
  height: 400px;
  border-radius: 16px;
  background: no-repeat center/cover;
}

.b-feedback {
  position: relative;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: 650px;
  color: #fff;
}

.b-feedback__bg {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--dark-bg);
}

.b-feedback__bg:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  max-height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #033B68), to(rgba(3, 59, 104, 0)));
  background: linear-gradient(to top, #033B68 10%, rgba(3, 59, 104, 0));
}

.b-feedback__bg-left {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}

.b-feedback__bg-right {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

.b-feedback__manager {
  position: absolute;
  left: 350px;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 600px;
  max-height: 98%;
}

.b-feedback__manager-content {
  position: absolute;
  z-index: 3;
  left: 520px;
  bottom: 40px;
  max-width: 260px;
  padding: 14px 22px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  line-height: 1.1;
}

.b-feedback__manager-content:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 100%;
  width: 115px;
  height: 48px;
  background: url("assets/img/feedback/arrow.svg") no-repeat center;
}

.b-feedback__manager-content h5 {
  line-height: inherit;
  font-weight: 500;
}

.b-feedback__manager-content p {
  opacity: 0.8;
  font-weight: 300;
}

.b-feedback__manager-content>* {
  margin-bottom: 10px;
}

.b-feedback__manager-content>*:last-child {
  margin-bottom: 0;
}

.b-feedback__container {
  position: relative;
  z-index: 5;
  width: 800px;
  padding-right: 200px;
}

.b-feedback .form-field:focus {
  border-color: #819BB1;
}

.date {
  opacity: 0.5;
  font-weight: 300;
  font-size: 15px;
}

.home-news__slider {
  margin: 0 -12px;
}

.home-news__slider .swiper-slide {
  width: 25%;
  padding: 0 12px;
}

.home-news__slider .swiper-slide._big {
  width: 50%;
}

.news-item-big {
  display: block;
  overflow: hidden;
  position: relative;
  max-height: 440px;
  min-height: 280px;
  border-radius: 16px;
  background: #000;
  text-decoration: none;
  line-height: 1.1;
  color: #fff;
}

.news-item-big:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 60%;
}

.news-item-big__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  opacity: 0.8;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.news-item-big__bg:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

.news-item-big__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}

.news-item-big__content>* {
  margin-bottom: 12px;
}

.news-item-big__content>*:last-child {
  margin-bottom: 0;
}

.news-item-big__head {
  line-height: 1.1;
  font-weight: 500;
}

.news-item-big:hover {
  color: #fff;
}

.news-item-big:hover .news-item-big__bg {
  opacity: 0.7;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.news-item {
  display: block;
  text-decoration: none;
  line-height: 1.1;
  color: inherit;
}

.news-item>* {
  margin-bottom: 12px;
}

.news-item>*:last-child {
  margin-bottom: 0;
}

.news-item__img {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #000;
}

.news-item__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 78.5%;
}

.news-item__img span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.news-item__head {
  line-height: 1.1;
  font-weight: 500;
}

.news-item:hover .news-item__img span {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.b-map {
  overflow: hidden;
  padding: var(--box-offset);
  border-radius: 30px;
  background: url("assets/img/map/b-map-left.png") no-repeat 0 200px, url("assets/img/map/b-map-right.svg") no-repeat 100% 0, var(--light-bg);
}

.b-map__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.b-map__aside {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  margin-right: 40px;
  width: 400px;
}

.b-map__aside>.scrollbar-inner {
  width: 100%;
  height: 550px;
}

.b-map__aside .scroll-content {
  padding-right: 18px;
}

.b-map__cities button {
  display: block;
  margin: 0 0 12px;
  padding: 18px 20px;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  line-height: 1.25;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.b-map__cities button:last-child {
  margin-bottom: 0;
}

.b-map__cities button:hover {
  color: var(--main-color);
}

.b-map__cities button.active {
  cursor: default;
  background-color: var(--main-color);
  color: #fff;
}

.b-map__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  position: relative;
}

.b-map__map-wrap {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
}

.b-map__map-wrap iframe {
  width: 100%;
  height: 100%;
}

.b-map .partners-slider {
  margin-top: var(--box-offset);
}

.partners-slider {
  overflow: visible;
}

.partners-slider .swiper-slide {
  width: 260px;
}

.partner-item {
  height: 160px;
  border-radius: 20px;
  background: #fff;
}

.partner-item img {
  max-width: 180px;
  max-height: 80px;
}

.footer {
  background: var(--dark-bg);
  color: #fff;
}

.foot-main {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.foot-main:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  margin-left: -500px;
  width: 2220px;
  height: 610px;
  background: url("assets/img/foot.svg") no-repeat 50% 100%;
}

.foot-main__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 87px;
}

.foot-main__col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.foot-main__col._first {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 215px;
}

.foot-main__content {
  margin-top: 50px;
  opacity: 0.5;
  font-weight: 300;
}

.foot-main__content>* {
  margin-bottom: 12px;
}

.foot-main__content>*:last-child {
  margin-bottom: 0;
}

.foot-main__head {
  opacity: 0.7;
  margin-bottom: 30px;
  font-weight: 300;
}

.foot-main__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-main__menu li {
  margin-bottom: 14px;
}

.foot-main__menu li:last-child {
  margin-bottom: 0;
}

.foot-main__menu a {
  text-decoration: none;
  color: inherit;
}

.foot-main__menu a:hover {
  text-decoration: underline;
}

.foot-main__contact {
  margin-bottom: 30px;
}

.foot-main__contact:last-child {
  margin-bottom: 0;
}

.foot-main__contact>* {
  margin-bottom: 14px;
}

.foot-main__contact>*:last-child {
  margin-bottom: 0;
}

.foot-main__contact a:not([href^=tel]) {
  text-decoration: none;
  color: inherit;
}

.foot-main__contact a:not([href^=tel]):hover {
  text-decoration: underline;
}

.foot-bot {
  padding: 25px 0;
  background-color: var(--text-color);
  font-weight: 300;
  color: #fff;
}

.foot-bot__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.foot-bot__links {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-bot__links li {
  margin-right: 50px;
}

.foot-bot__links a {
  opacity: 0.5;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.foot-bot__links a:hover {
  opacity: 1;
}

.foot-bot__dev a {
  opacity: 0.5;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.foot-bot__dev a:hover {
  opacity: 1;
}

.foot-bot__dev span,
.foot-bot__dev img {
  display: inline-block;
  vertical-align: middle;
}

.inn-title {
  padding: 85px 0 30px;
  background: var(--dark-bg);
  color: #fff;
}

.inn-title__content> :last-child {
  margin-bottom: 0;
}

.catalog {
  margin-top: 40px;
}

.cat-buttons {
  display: none;
  margin-bottom: 40px;
}

.cat-buttons__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: none;
  padding-left: 0;
}

.cat-buttons__more {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cat-buttons._show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.cat-buttons._open {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cat-buttons._open .cat-buttons__grid {
  width: 100%;
}

.cat-buttons._open .cat-buttons__grid .cat-btn,
.cat-buttons._open .cat-buttons__grid li {
  display: block !important;
}

.cat-btn,
.cat-buttons__grid li a {
  display: inline-block;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--light-bg);
  text-decoration: none;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cat-btn:hover,
.cat-buttons__grid li a:hover {
  border-color: #0E1724;
}

.reset-btn {
  cursor: pointer;
  display: inline-block;
  line-height: 1.1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.reset-btn>* {
  display: inline-block;
  vertical-align: middle;
}

.reset-btn .ic {
  margin: -1px 9px 0 0;
  font-size: 12px;
}

.reset-btn:hover {
  color: var(--main-color);
}

.filter {
  margin-bottom: 60px;
}

.filter-item:nth-child(n+2),
.berocket_single_filter_widget:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bd-color);
}

.filter-item__head,
.bapf_head h3 {
  color: var(--text-color);
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  padding-right: 25px;
  line-height: 1.1;
  font-weight: 500;
  font-size: 20px;
  border-color: transparent;
  padding-bottom: 0;
}

.filter-item__head:after,
.bapf_head h3:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  content: "\e908";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.filter-item__wrap,
.bapf_body {
  display: none;
  padding: 20px 0 0;
}

.filter-item._show .filter-item__head:after,
.berocket_single_filter_widget._show .bapf_head h3:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filter-price,
.bapf_slidr_all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.filter-price__field,
.bapf_slidr_all>span {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  width: 100% !important;
}

.filter-price__field input,
.bapf_slidr_jqrui .bapf_slidr_all>span input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 17px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--bd-color);
  line-height: 1;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.filter-price__field input:focus {
  border-color: var(--text-color);
}

.filter-action {
  margin-top: 30px;
  text-align: center;
}

.filter-action .reset-btn {
  margin-top: 22px;
}

.filter-options,
.bapf_sfilter .bapf_body>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.filter-option,
.bapf_sfilter ul li label {
  display: block !important;
  cursor: pointer;
  width: 100%;
  border-radius: 8px;
}

.filter-option input,
.bapf_sfilter ul li input {
  display: none !important;
}

.filter-option input:checked~span,
.bapf_sfilter ul li input:checked~label {
  background-color: var(--light-bg);
}

.filter-option input:checked~span:after,
.bapf_sfilter ul li input:checked~label:after {
  border-color: var(--main-color);
  background-color: var(--main-color);
}

.filter-option span,
.bapf_sfilter ul li label {
  display: block;
  position: relative;
  padding: 12px 50px 12px 20px;
  border-radius: 8px;
  line-height: 1.1;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.filter-option span:after,
.bapf_sfilter ul li label:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #82868D;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bapf_sfilter ul li label:hover {
  background-color: var(--light-bg);
}

.filter-option.disabled {
  pointer-events: none;
  opacity: 0.3;
}

.catalog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-wrap__aside {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 20%;
  padding-right: 24px;
}

.catalog-wrap__aside-wrap> :last-child {
  margin-bottom: 0;
}

.catalog-wrap__aside .close-btn {
  display: none;
  top: 8px;
  right: -20px;
}

.catalog-wrap__main {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 80%;
  padding-left: 24px;
}

.catalog-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px -50px;
}

.catalog-grid__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  padding: 0 12px 50px;
}

.aside-offer {
  position: relative;
  margin-bottom: 24px;
  border-radius: 16px;
  background: no-repeat center/cover;
}

.aside-offer:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.aside-offer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.aside-offer__content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  color: #fff;
}

.aside-offer__content>* {
  margin-bottom: 20px;
}

.aside-offer__content>*:last-child {
  margin-bottom: 0;
}

.aside-offer__content h5 {
  line-height: 1.1;
  font-weight: 500;
  font-size: 24px;
}

.catalog-mob-filter {
  display: none;
}

.catalog-filter-overlay {
  display: none;
  position: fixed;
  z-index: 195;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.75;
}

.product {
  margin-top: 50px;
}

.product__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.product__gallery {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 100px;
  width: 650px;
}

.product__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.product__main>* {
  margin-bottom: 40px;
}

.product__main>*:last-child {
  margin-bottom: 0;
}

.product__hr {
  border-bottom: 1px solid var(--bd-color);
}

.product__title>* {
  margin-bottom: 10px;
}

.product__top {
  font-weight: 300;
  color: var(--text-light-color);
}

.product__avail {
  position: relative;
  padding-left: 18px;
  color: var(--text-light-color);
}

.product__avail:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFA838;
}

.product__avail._green:before {
  background-color: #6DC861;
}

.woocommerce-variation-price .price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
}

.woocommerce-variation-price .price {
  margin-right: 0.4em;
  font-weight: 500;
  font-size: 28px;
  text-decoration: none;
}

.product__price strong,
.woocommerce-variation-price .price ins {
  display: inline-block;
  margin-right: 0.4em;
  font-weight: 500;
  font-size: 28px;
  text-decoration: none;
}

.woocommerce-variation-price .price del {
  position: relative;
  bottom: 4px;
  font-size: unset;
  font-weight: 300;
  font-size: 16px;
  color: #82868D;
}

.product__price s {
  font-weight: 300;
  color: var(--text-light-color);
}

.product__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product__buttons .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.product__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 80px 40px 40px;
  border-radius: 16px;
  background: var(--light-bg);
}

.product__social-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-right: 30px;
  font-weight: 300;
}

.product__social-content h5 {
  font-weight: normal;
}

.product__social-content>* {
  margin-bottom: 12px;
}

.product__social-content>*:last-child {
  margin-bottom: 0;
}

.pr-gallery__main .swiper-slide {
  border-radius: 16px;
  background: no-repeat center/cover;
}

.pr-gallery__main .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.pr-gallery__thumbs {
  margin-top: 20px;
}

.pr-gallery__thumbs .swiper-slide {
  cursor: pointer;
  border-radius: 10px;
  background: no-repeat center/cover;
}

.pr-gallery__thumbs .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border-radius: inherit;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.pr-gallery__thumbs .swiper-slide-thumb-active:before {
  -webkit-box-shadow: inset 0 0 0 2px var(--text-color);
  box-shadow: inset 0 0 0 2px var(--text-color);
}

.product-choice {
  margin-bottom: 24px;
}

.product-choice:last-child {
  margin-bottom: 0;
}

.product-choice__head {
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--text-light-color);
}

.product-choice__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.product-choice__item {
  cursor: pointer;
  display: inline-block;
  border-radius: 8px;
}

.product-choice__item>input {
  display: none;
}

.product-choice__item>input:checked~span {
  border-color: var(--text-color);
}

.product-choice__item>span {
  display: block;
  padding: 11px 19px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: var(--light-bg);
  font-weight: 300;
  color: var(--text-color);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.similar-catalog {
  background: var(--light-bg);
}

.product-tabs .tabs__item {
  padding: 40px 0;
  border-top: 1px solid var(--bd-color);
  border-bottom: 1px solid var(--bd-color);
}

.product-props {
  max-width: 650px;
}

.product-prop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 10px;
}

.product-prop:last-child {
  margin-bottom: 0;
}

.product-prop__head {
  color: var(--text-light-color);
}

.product-prop__dots {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0 10px 0.4em;
  min-width: 30px;
  border-bottom: 1px dashed #DADADA;
}

.product-prop__descr {
  text-align: right;
}

.product-prop__descr._accent {
  color: #FFA838;
}

.cart,
.checkout {
  margin: calc(var(--section-offset) - 20px) 0;
}

.cart__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-right: 80px;
  padding-right: 80px;
  border-right: 1px solid var(--dark-bg);
}

.cart__total {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 36.25%;
}

.cart_totals>* {
  margin-bottom: 40px;
}

.cart_totals>*:last-child {
  margin-bottom: 0;
}

.cart__total-props .product-prop {
  margin-bottom: 20px;
}

.cart__total-props .product-prop:last-child {
  margin-bottom: 0;
}

.cart__total-cond a {
  color: var(--dark-bg);
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.1;
}

.cart-item:nth-child(n+2) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.cart-item__img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 20px;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: no-repeat center/cover;
}

.cart-item__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.cart-item__main>* {
  margin-bottom: 12px;
}

.cart-item__main>*:last-child {
  margin-bottom: 0;
}

.cart-item__head {
  font-weight: normal;
  line-height: inherit;
}

.cart-item__descr {
  color: var(--text-light-color);
}

.cart-item__descr._small {
  font-size: 15px;
}

.cart-item__action {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 310px;
  margin-left: 50px;
}

.cart-item__action .quantity {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 15px;
}

.cart-item__price {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  text-align: right;
  font-size: 22px;
}

.cart-item__del {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  margin-left: 50px;
  padding: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--light-bg);
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: var(--text-light-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cart-item__del:hover {
  background-color: var(--main-color);
  color: #fff;
}

.cart-item._small {
  font-size: 15px;
}

.cart-item._small:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}

.cart-item._small .cart-item__img {
  width: 100px;
  height: 100px;
}

.cart-item._small .cart-item__head {
  font-size: 18px;
}

.cart-item._small .cart-item__action {
  width: auto;
}

.cart-item._small .cart-item__price {
  font-size: 18px;
}

.checkout__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.checkout__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-right: 100px;
}

.checkout__total {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 32.5%;
}

.checkout__total .cart__total {
  width: 100%;
}

.checkout__items {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--dark-bg);
}

.checkout-box {
  margin: 0 0 35px;
  padding: 30px;
  border-radius: 16px;
  background: var(--light-bg);
}

.checkout-box:last-child {
  margin-bottom: 0;
}

.checkout-box__title {
  margin-bottom: 35px;
}

.checkout-box__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}

.checkout-box__fields .form-item,
.checkout-box__fields .form-row,
.checkout-box__fields .checkout-option {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 40%;
  margin-bottom: 0;
}

.checkout-option {
  display: block;
  cursor: pointer;
}

.checkout-option__input {
  display: none;
}

.checkout-option__input:checked~.checkout-option__box {
  border-color: var(--main-color);
}

.checkout-option__input:checked~.checkout-option__box .checkout-option__descr {
  padding-left: 28px;
  padding-right: 0;
}

.checkout-option__input:checked~.checkout-option__box .checkout-option__descr:before {
  display: block;
}

.checkout-option__box {
  display: block;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.checkout-option__descr {
  display: block;
  position: relative;
  padding-right: 28px;
}

.checkout-option__descr:before {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
  content: "\e913";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 18px;
  color: var(--main-color);
}

.ab-bann {
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 60px 0;
  min-height: 700px;
  background-color: var(--light-bg);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.ab-bann__content {
  padding: 58px 78px;
  max-width: 800px;
  border: 2px solid rgba(14, 23, 36, 0.8);
  border-radius: 16px;
  background: rgba(14, 23, 36, 0.7);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.ab-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: var(--box-offset);
  border-radius: 30px;
  background: var(--light-bg) url("assets/img/about/ab-info.svg") no-repeat 76% 0;
}

.ab-info__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.ab-info__gallery {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 710px;
  margin-left: 90px;
  padding-top: 84px;
}

.ab-info__gallery .nav-arrows {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.ab-info__gallery .swiper-slide {
  border-radius: 16px;
  background: no-repeat center/cover;
}

.ab-info__gallery .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 57%;
}

.team {
  background: var(--dark-bg);
  color: #fff;
}

.team-item {
  position: relative;
  border-radius: 16px;
  background: no-repeat center/cover;
}

.team-item:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 132.45%;
}

.team-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 23, 36, 0)), to(rgba(14, 23, 36, 0.25)));
  background: linear-gradient(to bottom, rgba(14, 23, 36, 0), rgba(14, 23, 36, 0.25));
}

.team-item__content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 28px 30px;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(14, 23, 36, 0.1);
  font-weight: 300;
  color: #fff;
}

.team-item__content h5 {
  font-weight: 500;
}

.team-item__content>* {
  margin-bottom: 10px;
}

.team-item__content> :last-child {
  margin-bottom: 0;
}

.docs-slider .swiper-slide {
  height: auto;
}

.doc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 29px;
  border: 1px solid #D3D6DC;
  border-radius: 16px;
  line-height: 1.2;
}

.doc-item>* {
  margin-bottom: 12px;
}

.doc-item>*:last-child {
  margin-bottom: 0;
}

.doc-item__img {
  display: block;
  width: 100%;
  padding-bottom: 141%;
  margin-bottom: 24px;
  border-radius: 8px;
  background: no-repeat center/cover;
}

.doc-item__action {
  margin-top: auto;
}

.doc-item__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  color: #FFA838;
}

.doc-item__btn>* {
  display: inline-block;
}

.doc-item__btn .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 12px;
  font-size: 20px;
}

.doc-item__btn span {
  text-decoration: underline;
}

.doc-item__btn:hover span {
  text-decoration: none;
}

.ab-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}

.ab-numbers__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px 20px;
}

.ab-numbers__col:nth-child(6n+2) {
  width: 36%;
}

.ab-numbers__col:nth-child(6n+3) {
  width: 39%;
}

.ab-numbers__col:nth-child(6n+4) {
  width: 32%;
}

.ab-numbers__col:nth-child(6n+5) {
  width: 37%;
}

.ab-numbers__col:nth-child(6n+6) {
  width: 31%;
}

.ab-numbers__title {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px;
  border-radius: 16px;
  background: var(--light-bg);
  width: 100%;
}

.ab-numbers__title> :last-child {
  margin-bottom: 0;
}

.ab-numbers__item {
  overflow: hidden;
  position: relative;
  z-index: 3;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 16px;
  -webkit-box-shadow: inset 0 0 0 1px #E9ECF2;
  box-shadow: inset 0 0 0 1px #E9ECF2;
  width: 100%;
  min-height: 300px;
}

.ab-numbers__item-el {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  fill: var(--text-color);
  opacity: 0.1;
}

.ab-numbers__item-head {
  margin: 0;
  padding: 30px;
  line-height: 1;
  font-weight: bold;
  font-size: 80px;
}

.ab-numbers__item-content {
  padding: 30px;
  font-size: 20px;
}

.ab-numbers__item-content>* {
  margin-bottom: 10px;
}

.ab-numbers__item-content>*:last-child {
  margin-bottom: 0;
}

.ab-numbers__item._accent .ab-numbers__item-content,
.ab-numbers__item._dark .ab-numbers__item-content {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(14, 23, 36, 0.05);
}

.ab-numbers__item._accent {
  background: var(--main-color);
  color: #fff;
}

.ab-numbers__item._dark {
  background: var(--text-color);
  color: #fff;
}

.ab-numbers__item._dark .ab-numbers__item-el {
  fill: var(--dark-bg);
  opacity: 0.2;
}

.contacts-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
  padding: 39px;
  border: 1px solid #82868D;
  border-radius: 30px;
}

.contact-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.contact-item[href^=tel] {
  cursor: pointer;
}

.contact-item__icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 50%;
  background: #F6F6F6;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 22px;
  color: var(--dark-bg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-item__icon[class*=whatsapp],
.contact-item__icon.ic-phone {
  font-size: 20px;
}

.contact-item__descr {
  padding: 12px 19px;
  border: 1px solid #E9ECF2;
  border-radius: 25px;
  line-height: 24px;
  font-size: 20px;
}

.contact-item._accent .contact-item__icon {
  color: var(--main-color);
}

a.contact-item:hover .contact-item__icon {
  background-color: var(--dark-bg);
  color: #fff;
}

a.contact-item._accent:hover .contact-item__icon {
  background-color: var(--main-color);
}

.contacts-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-info__main {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  width: 40%;
  padding: 39px;
  border: 1px solid #82868D;
  border-radius: 30px;
}

.contacts-info__logo {
  display: block;
  width: 72%;
}

.contacts-info__contacts {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

.contacts-info__contacts>* {
  max-width: 100%;
}

.contacts-info__map {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  position: relative;
  min-height: 360px;
  margin-left: 50px;
}

.contacts-info__map-wrap {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

/* Customize plugins */
.swiper-pagination-bullets {
  position: relative;
  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: 8px;
  margin: 40px 0 0;
}

.swiper-pagination-bullet {
  margin: 0 !important;
  width: 9px;
  height: 9px;
  opacity: 0.1;
  border-radius: 5px;
  background: currentColor;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.swiper-pagination-bullet-active {
  width: 28px;
  opacity: 0.2;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.scrollbar-inner>.scroll-element.scroll-x {
  bottom: 0;
  height: 8px;
}

.scrollbar-inner>.scroll-element.scroll-y {
  right: 0;
  width: 8px;
}

.scrollbar-inner>.scroll-element .scroll-element_track {
  opacity: 1;
  background: #fff;
}

.scrollbar-inner>.scroll-element .scroll-bar {
  opacity: 1;
  background: var(--dark-bg) !important;
}

.scroll-element .scroll-arrow,
.scroll-element .scroll-bar {
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
  border-radius: 17px;
  padding: 16px;
  font-size: 14px;
}

.divi_slider_class .bapf_slidr_all .bapf_slidr_main.ui-widget-content {
  display: none;
}

.bapf_slidr_jqrui .bapf_slidr_all:after {
  display: none;
}

.bapf_body {
  display: none;
  padding: 20px 0 0;
}

.divi_slider_class .bapf_slidr_all {
  margin-bottom: 0;
}

.bapf_sfilter.bapf_divi_button .bapf_button {
  background-color: var(--main-color);
  color: #fff;
  font-family: 'Jost', sans-serif;
}

.bapf_sfilter.bapf_divi_button .bapf_button:hover {
  background-color: var(--main-color-hover);
}

.bapf_sfilter.bapf_divi_button .bapf_button.bapf_reset {
  background-color: transparent;
  color: var(--text-color);
  border-color: transparent;
}

.bapf_sfilter.bapf_divi_button .bapf_button.bapf_reset:hover {
  color: #c9423f;
}

.bapf_divi_button .bapf_body {
  display: flex !important;
  padding-top: 0;
}

.filter-action .berocket_single_filter_widget:nth-child(n+2) {
  padding-top: 0;
  border-color: transparent;
  margin-top: 0;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
  border-radius: 8px;
}

.product__main .quantity {
  display: none !important;
}

.reset_variations {
  display: none !important;
}

.product__main .cart {
  margin-top: 0;
}

.product__main .price {
  margin-top: 40px;
}

@media(max-width: 1639px) {
  .product__main .price {
    margin-top: 30px;
  }
	.header__col._right> :first-child {
		max-width: 180px;
	}
}

@media(max-width: 575px) {
  .product__main .price {
    margin-top: 24px;
  }
}

.product__wrapper .onsale {
  display: none;
}

.product__price--simple {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 0.4em;
  font-weight: 500;
  font-size: 28px;
  text-decoration: none;
}

.product__price--simple del {
  display: inline-block;
  font-weight: 300;
  color: var(--text-light-color);
  position: relative;
  bottom: 3px;
  font-size: 16px;
}

.product__price--simple ins {
  margin-right: 0.4em;
  font-weight: 500;
  font-size: 28px;
  text-decoration: none;
}

.price-zapros {
  margin-bottom: 30px;
  font-size: 25px;
}

.relatedWrap {
  display: none;
}

.cart-item__del {
  text-decoration: none;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
.product__main .qib-container {
  display: none!important;
}
.product__main form.cart button[type='submit']:not(#qib_id):not(#qib_id), .product__main form.cart .qib-container + div:not(#qib_id):not(#qib_id) {
  display: unset;
}
.qib-button:not(#qib_id):not(#qib_id) {
  border-color: transparent;
  border-radius: 8px!important;
  background: #F8F8F8;
}
.qib-button:not(#qib_id):not(#qib_id):hover {
  background: rgba(0, 0, 0, 0.05);
}
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id) {
  border-color: transparent;
  border-radius: 0!important;
}
.qib-container {
  background-color: #F8F8F8;
  border-radius: 8px;
}
.cart.shop_table {
  margin-top: 0;
  margin-bottom: 0;
}
.error-404Btn {
  height: fit-content;
}
.errorTitle {
  text-align: center;
}
.errorDescr {
  text-align: center;
}
.error-404Btn {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.archive-news {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
.archive-news .swiper-slide{
  grid-column: 4 span;
}
@media(max-width: 767px){
  .archive-news .swiper-slide {
    grid-column: 6 span;
  }
}
@media(max-width: 575px){
  .archive-news .swiper-slide {
    grid-column: 12 span;
  }
  .archive-news {
    column-gap: 0;
    row-gap: 30px;
  }
}
.product_posts_empty {
  margin-bottom: 40px;
}
.cart__total-props {
  margin-bottom: 40px;
}
@media(max-width: 1639px){
  .cart__total-props {
    margin-bottom: 35px;
  }
}
.checkout__grid .woocommerce-NoticeGroup{
  min-width: 100%;
}
.modal {
	display: none;
}
#elastic {
/* 	display: none; */
}
.berocket_single_filter_widget_231 .bapf_body ul li.hide {
	display: none;
}