

/* Start:/local/templates/bs_theme_2023/assets/css/style.css?175094060423959*/
:root {
  --primary-color: #930303;
  --secondary-color: #8c6e45;
  --third-color: #f9f8f5;
  --fourth-color: #755933;
  --black: #262524;
  --border: rgb(235, 231, 219);
  --transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Literata";
  src: url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata-Light.woff2") format("woff2"),
    url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata.woff2") format("woff2"),
    url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata-Medium.woff2") format("woff2"),
    url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata-Medium.woff2.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata-SemiBold.woff2") format("woff2"),
    url("/local/templates/bs_theme_2023/assets/css/../fonts/Literata-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/local/templates/bs_theme_2023/assets/css/../fonts/IBMPlexSans-Regular.woff2") format("woff2"),
    url("/local/templates/bs_theme_2023/assets/css/../fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/local/templates/bs_theme_2023/assets/css/../fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  aspect-ratio: attr(width) / attr(height);
}

.bold {
  font-weight: bold;
}

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.cru-icon {
  width: 28px;
  height: 28px;
}

.primary-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: inline-block;
  color: #fff;
  font-family: "Literata", serif;
  font-weight: 500;
  padding: 12px 32px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-align: center;
}

.primary-btn:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.second-btn {
  border: 1px solid var(--secondary-color);
  background: #fff;
  padding: 12px 32px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.second-btn:before,
.second-btn:after {
  content: "";
  background: inherit;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}

.second-btn:after {
  left: auto;
  right: -1px;
}

.section-main-title {
  font-family: "Literata", serif;
  font-size: 36px;
  font-weight: 500;
}

.secondary-header {
  font-family: "Literata", serif;
  font-size: 28px;
  font-weight: 500;
}

.third-title {
  font-family: "Literata", serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.overlay,
.overlayage-check {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(38, 37, 36, 0.1);
  z-index: 100;
}

.overlayage-check,
.overlay.active {
  display: block;
}

/* 
=======
HEADER
=======
*/

.header-top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 20px 0 30px 0;
  font-family: "Literata", serif;
}

.header-top__central {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-top__left,
.header-top__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-mob,
.search-mob,
.burger-icon,
.header-mob__phone,
.burger-icon,
.hidden,
.header-mob {
  display: none;
}

.menu-top__left {
  display: flex;
}

.menu-top__right {
  display: flex;
  align-items: center;
}

.menu-top__link {
  margin: 0 16px;
  display: flex;
  align-items: center;
}

.menu-top__link:hover {
  color: var(--secondary-color);
}

.menu-top__link.basket {
  position: relative;
}

.menu-top__link.social-link span {
  display: none;
}

.cru-icon.phone {
  display: none;
  width: 24px;
  height: 24px;
  stroke: var(--black);
}

.basket-counter {
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background: #fff;
}

.mob-basket-counter {
  position: absolute;
  top: -2px;
  right: 2px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background: #fff;
}

.hasDropdown {
  position: relative;
}

.dropdown-mini {
  display: none;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(168 135 90 / 20%);
  padding: 10px;
  width: 200px;
  animation: fadeIn 0.3s;
  z-index: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dropdown-mini:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom: 10px solid rgba(168 135 90 / 20%);
}

.dropdown-mini:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -19px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom: 10px solid rgba(168 135 90 / 20%);
  border-bottom: 10px solid white;
}

.dropdown-mini.active {
  display: block;
}

.dropdown-mini .menu-top__link {
  margin: 4px 16px;
}

.menu-top__link.logout {
  margin-top: 24px;
}

.header-location {
  display: flex;
  align-items: center;
  margin: 20px 16px 0 16px;
}

.header-top__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cru-icon.basket {
  width: 32px;
  height: 32px;
}

.cru-icon.clock {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.cru-icon.search-icon {
  width: 24px;
  height: 24px;
}

.cru-icon.logout {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

/* Menu bottom */

.menu-botton {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  font-family: "Literata", serif;
}

.menu-bottom__link {
  margin: 0 16px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  stroke: var(--secondary-color);
}

.menu-bottom__link:hover {
  color: var(--primary-color);
}

.menu-bottom__link .cru-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding-top: 2px;
}

.mega-menu {
  height: 70vh;
  max-width: 1400px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 52px;
  display: none;
  background: #fff;
  border: 1px solid rgba(168 135 90 / 20%);
  line-height: 1.4;
  animation: fadeIn 0.3s;
  z-index: 101;
}

.mega-menu.active {
  display: flex;
}

.mega-menu__links {
  background: var(--third-color);
  padding: 20px 0;
  width: 328px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.mega-menu__links::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

.mega-menu__links::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: var(--border);
}

.mega-menu-back-btn {
  display: none;
}

.mega-menu__content {
  padding: 20px 40px;
  flex: 1 1 auto;
}

.catalog-empty {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url(/local/templates/bs_theme_2023/assets/css/../images/catalog-empty-2.png) no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.empty-title {
  font-size: 24px;
  color: var(--fourth-color);
}

.mega-menu__link {
  padding: 8px 20px;
  position: relative;
  transition: 0.3s ease-in-out;
  line-height: 1.6;
  cursor: pointer;
}

.mega-menu__link a {
  display: block;
  width: 100%;
}

.mega-menu__link.active {
  background: #f8f3f0;
  text-shadow: 0 0 0.75px var(--black), 0 0 0.75px var(--black);
}

.mega-menu__link.active::after {
  content: "";
  border: 20px solid transparent;
  border-left: 20px solid #f8f3f0;
  position: absolute;
  right: -40px;
  top: 0;
}

.mega-menu-catalog {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  animation: fadeIN 0.5s;
}

.mega-menu-catalog.active {
  display: flex;
}

.mega-menu-row {
  display: flex;
}

.mega-menu-catalog__col {
  margin-right: 64px;
}

.mega-menu-catalog__link {
  margin: 8px 0;
}

.mega-menu-catalog__link_all a {
  font-style: italic;
  color: var(--secondary-color);
  position: relative;
}

.mega-menu-catalog__link_all a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--secondary-color);
}

.mega-menu-catalog__title {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 16px;
}

.header-bottom__footer {
  display: none;
}

.header-bottom__close,
.header-bottom__logo {
  display: none;
}

.mob-cart-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 120px;
  right: 40px;
  z-index: 2;
  stroke: var(--secondary-color);
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 1px solid var(--secondary-color);
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.scroll-to-top-btn.active {
  display: flex;
}

.arrow-top {
  transform: rotate(180deg);
}

.cru-icon.arrow {
  width: 10px;
  margin-left: 8px;
  padding-top: 4px;
}

/* 
=======
FOOTER
=======
*/

.footer {
  padding: 20px;
  background: var(--third-color);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--fourth-color);
}

.footer__link {
  margin-bottom: 6px;
}

.footer__link a:hover {
  color: var(--secondary-color);
}

.footer-social__links {
  display: flex;
  align-items: center;
}

.footer-social__links li {
  margin-right: 16px;
}

.footer-bottom {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fourth-color);
}

.footer-bottom__info {
  margin: 32px 0 16px 0;
}

.footer-bottom__note {
  text-align: center;
}

/* 
=========
MODAL 18+
=========
*/

.age-check {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  padding: 40px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--third-color);
  /* z-index: 99999; */
}

.age-check__img {
  position: absolute;
  left: 0;
  top: 0;
}

.age-check__title {
  font-family: "Literata", serif;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 49px;
}

.age-check__text {
  font-size: 18px;
}

.age-check__text--bold {
  font-weight: bold;
  margin-bottom: 40px;
}

.age-check__text p {
  margin-bottom: 20px;
}

.age-check__text a {
  color: var(--primary-color);
  font-style: italic;
}

.age-check__btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-check__btns .primary-btn {
  margin: 60px 0 20px 0;
}

.age-check__note {
  font-size: 12px;
  text-align: center;
}

/* 
=========
MAIN PAGE
=========
*/

/* Catalog navigation */
.nav-catalog__list {
  column-count: 4;
  column-fill: balance;
  column-gap: 80px;
  column-rule: 1px solid var(--border);
  padding: 20px;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.nav-catalog__item {
  font-family: "Literata", serif;
  font-size: 18px;
  margin-top: 10px;
}

.nav-catalog__item--bold {
  font-weight: 500;
}

.nav-catalog__title {
  font-family: "Literata", serif;
  font-size: 20px;
  font-weight: 500;
  margin-top: 28px;
}

.nav-catalog__title:first-child {
  margin-top: 0;
}

.nav-catalog__subtitle {
  font-size: 16px;
  margin: 10px 0 10px 20px;
  font-weight: 400;
}

.nav-catalog__sublist {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  height: 196px;
  overflow-x: unset;
  overflow-y: scroll;
}

.nav-catalog__sublist::-webkit-scrollbar {
  background: var(--border);
  border-radius: 5px;
  width: 4px;
}

.nav-catalog__sublist::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

.nav-catalog__sublist .nav-catalog__item {
  font-size: 14px;
  margin-left: 20px;
}

.nav-catalog-separator {
  height: 42px;
}
.CheckboxCaptcha-Icon {
  width: 0px !important;
  height: 0px !important;
  opacity: 0;
  display: none !important;
}
svg.CloudIcon {
  width: 0px !important;
  height: 0px !important;
  opacity: 0;
  display: none !important;
}

@media (max-width: 1024px) {
  .nav-catalog__list {
    column-gap: 40px;
  }

  .nav-catalog__title {
    font-size: 18px;
  }

  .nav-catalog__item {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .nav-catalog__list {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .nav-catalog__list {
    column-count: 1;
  }

  .nav-catalog-separator {
    height: 0;
  }
}

/* About */

.cru-profi {
  margin: 60px 0;
  text-align: center;
  position: relative;
}

.cru-profi__about {
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.cru-profi::before {
  content: "";
  background: url(/local/templates/bs_theme_2023/assets/css/../images/image-for-main-page-1.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  right: 2%;
  top: 0;
  width: 25vw;
  height: 15vw;
}

.cru-profi::after {
  content: "";
  background: url(/local/templates/bs_theme_2023/assets/css/../images/image-for-main-page-2.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36vw;
  height: 20vw;
}

.cru-profi__text {
  max-width: 680px;
  margin-top: 32px;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .cru-profi__about {
    height: 460px;
  }
}

@media (max-width: 576px) {
  .cru-profi__text {
    font-size: 16px;
    margin-top: 20px;
  }

  .cru-profi__about {
    height: 420px;
  }

  .cru-profi::before {
    height: 28vw;
    width: 40vw;
  }

  .cru-profi::after {
    height: 38vw;
    width: 64vw;
  }
}

/* End About */

/* Main contacts */

.main-contacts {
  margin-top: 90px;
  padding: 40px 0 80px 0;
  background: var(--third-color);
  text-align: center;
}

.main-contacts-wrap {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.main-contacts-info__item {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.cru-icon.main-contacts__icon {
  margin-right: 10px;
}

.cru-icon.main-contacts__icon.phone {
  stroke: var(--secondary-color);
}

.main-contacts-info {
  width: 40%;
}

.main-contacts-map {
  width: 60%;
  filter: sepia(15%);
  -ms-filter: sepia(15%);
  -webkit-filter: sepia(15%);
  -moz-filter: sepia(15%);
  -o-filter: sepia(15%);
  opacity: 0.85;
}

@media (max-width: 576px) {
  .main-contacts {
    padding: 40px 0;
  }

  .main-contacts-wrap {
    flex-direction: column;
  }

  .main-contacts-info {
    margin-bottom: 20px;
  }

  .main-contacts-info,
  .main-contacts-map {
    width: 100%;
  }

  .main-contacts-info__item {
    margin-top: 10px;
    font-size: 14px;
  }

  .main-contacts-info__item .cru-icon {
    width: 24px;
    height: 24px;
  }
}

/* End contacts */

@media (max-width: 1200px) {
  .header-top__left,
  .header-top__right {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .menu-top__link,
  .header-location,
  .catalog-menu__close {
    display: none;
  }

  .burger-icon,
  .menu-top__link.basket,
  .cru-icon.phone {
    display: block;
    margin: 0;
  }

  .header-top {
    align-items: center;
  }

  .header-top__left,
  .header-top__right {
    width: 120px;
  }

  .header-top__right {
    flex-direction: row-reverse;
    position: relative;
    align-items: center;
  }

  .header-top__central {
    width: 50%;
  }

  .header-top__social {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 101;
    width: 200px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 10%);
    flex-direction: column;
    align-items: flex-start;
  }

  .header-top__social.active {
    display: flex;
    flex-direction: column-reverse;
  }

  .header-top__social .menu-top__link {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }

  .menu-top__link.social-link span {
    display: block;
    margin-left: 10px;
  }

  .header-top__social .cru-icon {
    width: 24px;
    height: 24px;
  }

  .menu-top__link.phone .cru-icon {
    stroke: var(--secondary-color);
    margin-right: 10px;
  }

  .header-bottom {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    height: 100%;
    z-index: 100;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    z-index: 101;
  }

  .header-bottom.active {
    left: 0;
    visibility: visible;
  }

  .header-bottom__footer {
    display: block;
  }

  .header-bottom__location {
    text-align: center;
  }

  .header-bottom__work-hours {
    font-size: 14px;
    margin: 5px 0 10px 0;
  }

  .header-bottom__phone {
    font-size: 18px;
    font-family: "Literata", serif;
    font-weight: 500;
  }

  .header-bottom-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-bottom-social a {
    margin: 0 10px;
  }

  .mega-menu {
    display: flex;
    top: 0;
    border: none;
    height: 100%;
  }

  .mega-menu__links {
    width: 100%;
    background: #fff;
    padding: 0;
  }

  .mega-menu__link.has-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    stroke: var(--black);
  }

  .mega-menu__link .cru-icon {
    transform: rotate(270deg);
  }

  .mega-menu-back-btn {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s ease-in-out;
    line-height: 1.6;
    cursor: pointer;
    padding: 6px 20px;
    margin-bottom: 10px;
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    stroke: var(--secondary-color);
  }

  .mega-menu-back-btn .arrow {
    transform: rotate(90deg);
    margin-right: 4px;
    width: 12px;
    height: 12px;
    pointer-events: none;
  }

  .mega-menu__content {
    display: none;
  }

  .mega-menu__content {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: scroll;
    background: #fff;
  }

  .mega-menu__content.active {
    display: block;
  }

  .catalog-empty {
    display: none;
  }

  .mega-menu-catalog {
    display: none;
    background: #fff;
  }

  .mega-menu-catalog.active {
    display: flex;
    justify-content: flex-start;
  }

  .mega-menu-row {
    display: flex;
    flex-direction: column;
  }

  .mega-menu-catalog .second-btn {
    margin: 20px auto;
  }

  .menu-botton {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    margin-bottom: 20px;
    border-top: none;
    justify-content: flex-start;
  }

  .menu-botton li {
    width: 100%;
  }

  .menu-bottom__link {
    justify-content: space-between;
    margin: 0;
    width: 100%;
  }

  .mega-menu-catalog__link:first-child {
    margin: 0 0 8px;
  }

  .menu-bottom__link .arrow {
    transform: rotate(270deg);
  }

  .mob-mega-menu .menu-top__link {
    display: block;
  }

  .hasDropdown.has-mob-mega-menu {
    position: static;
  }

  .dropdown-mini.mob-mega-menu.active {
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .dropdown-mini.mob-mega-menu.active::before,
  .dropdown-mini.mob-mega-menu.active::after {
    content: none;
  }

  .logo-wrapper {
    width: 168px;
  }

  .cru-icon.search-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer__column {
    text-align: center;
    margin: 16px 0;
  }

  .footer-social__links li {
    margin: 0 12px;
  }

  .footer-bottom__info {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-main-title {
    font-size: 24px;
  }

  .secondary-header {
    font-size: 20px;
  }

  .third-title {
    font-size: 16px;
  }

  .menu-top__link.basket {
    display: none;
  }

  .container {
    padding: 0 16px;
  }

  .burger-icon {
    display: block;
  }

  .cru-icon.phone {
    display: block;
  }

  .header-top {
    align-items: center;
    margin: 20px 0;
  }

  .header-top__left,
  .header-top__right {
    width: auto;
  }

  .header-top__central {
    width: auto;
  }

  .logo-wrapper {
    width: 144px;
  }

  .cru-icon.basket {
    width: 28px;
    height: 28px;
  }

  .header-mob {
    display: block;
  }

  .mob-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    padding: 8px 16px;
    width: 100%;
    border-top: 1px solid var(--secondary-color);
    background: #fff;
  }

  .mob-menu__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .mob-menu__btn .cru-icon {
    width: 24px;
    height: 24px;
  }

  .mob-menu__btn span {
    font-size: 13px;
    margin-top: 4px;
  }

  .mob-menu__btn a {
    font-size: 13px;
    margin-top: 4px;
  }

  .header-bottom.active {
    width: 100%;
    padding: 0 20px 62px 20px;
  }

  .header-bottom__logo {
    display: block;
    width: 148px;
    margin: 20px auto;
  }

  .header-bottom__close {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 20px;
  }

  .header-bottom-social {
    margin: 20px 0;
  }

  .footer {
    padding: 20px 0 80px 0;
  }

  .age-check {
    width: 100%;
    padding: 20px;
  }

  .age-check__img {
    width: 120px;
  }

  .age-check__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .age-check__text {
    font-size: 16px;
  }

  .age-check__text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .age-check__text p {
    margin-bottom: 10px;
  }

  .age-check__btns .primary-btn {
    margin: 20px 0;
  }

  .scroll-to-top-btn {
    right: 20px;
  }
}

.btn__copy_share_wrapper {
  position: absolute;
  right: 0;
  top: 40px;
}

.category-catalog .btn__copy_share_wrapper {
  position: static;
  text-align: right;
}
.btn__copy_share {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.btn__copy_share .icon {
  width: 28px;
  height: 28px;
  transition: var(--transition);
  fill: #999;
}
.btn__copy_share:hover .icon {
  fill: var(--secondary-color);
}

@media (max-width: 768px) {
  .btn__copy_share.btn__copy {
    display: none;
  }
}

@media (min-width: 768px) {
  .btn__copy_share.btn__share {
    display: none;
  }
}
.category-catalog-item .btn__copy_share.btn__copy {
  display: none !important;
}
.category-catalog-item .btn__copy_share_wrapper {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 1;
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin: 0;
}

@media (max-width: 576px) {
  .category-catalog-item .btn__copy_share_wrapper {
    top: 20px;
    right: 34px;
    width: 17px;
    height: 17px;
  }
  .category-catalog-item .btn__copy_share.btn__share .icon {
    width: 17px;
    height: 17px;
  }
}

/* End */


/* Start:/local/templates/bs_theme_2023/components/bitrix/search.title/it_search/style.css?16976157652186*/
.title-search-result {
    position: absolute;
    z-index: 100;
    width: 100%;
    background: #fff;
}
td.title-search-item {
    background: #fff;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    padding: 6px 12px;
    display: block;
}
a.item_title_search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper_content_search {
    display: flex;
    align-items: center;
}
#title-search {
    position: relative;
}
.search {
    position: relative;
    width: 100%;
}

.search__input {
    margin-top: 8px;
    padding: 4px 8px;
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid var(--black);
    -webkit-appearance: none;
}

.search__input:focus {
    outline: none;
}

.search__btn {
    position: absolute;
    right: 7px;
    bottom: 4px;
}
.title-search-result {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
}
.price_search {
    flex: 0 0 auto;
    margin-left: 8px;
}

.search-close {
    display: none;
}

@media (max-width: 576px) {
    #title-search {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        height: 100%;
        z-index: 104;
        padding: 20px;
    }
    #title-search.active {
        display: block;
    }
    .search {
        display: flex;
        align-items: center;
    }
    .search__input {
        border: 1px solid var(--black);
        margin: 0 20px 0 0;
    }
    .search__btn {
        right: 60px;
    }
    .search-close {
        display: block;
    }
    .title-search-result {
        top: 60px;
        padding: 0 20px;
    }
}



#title-search-input_microphone { position: absolute; right: 35px; bottom: 2px; background: 0 0; border: unset; cursor: pointer; /*stroke: #202020;*/ padding: 2px 0px 0px 0px; }
#title-search-input_microphone.active { /*stroke: #9c1a1a;*/ }
.search__input { padding-right: 70px; }
@media (max-width: 576px) {
	#title-search-input_microphone { right: 84px; bottom: 0px; }
	#title-search-input_microphone svg { width: 26px; height: 26px; }
}
/* End */


/* Start:/local/templates/bs_theme_2023/components/alkodesign/search.suggest.input/.default/style.css?16976157653095*/
input.search-suggest {  height: 26px;}
div.search-popup{border: 1px solid #333333;background: #FFFFFF;padding: 2px;margin: 0px;}
div.search-popup-row, div.search-popup-row-active{position: relative; padding: 2px 4px;margin: 0px;cursor: hand;cursor: pointer;}
div.search-popup-row{background:#FFFFFF;}
div.search-popup-row-active{background:#EEEEEE;}
div.search-popup-el-name, div.search-popup-el-cnt{position: relative; margin:0px;padding:0px;text-align:left;}
div.search-popup-el-cnt{text-align:right; float:right;}
#search_speech.phone, #microphone.phone, .speech-phone.phone{
background-repeat: no-repeat;
background-position: right center;
cursor: text;
background-image: url("data:image/svg+xml;utf8,<svg version=\"1.1\" id=\"Layer_1\"  xmlns:sketch=\"http://www.bohemiancoding.com/sketch/ns\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  x=\"0px\" y=\"0px\" viewBox=\"0 0 112 112\" enable-background=\"new 0 0 112 112\" xml:space=\"preserve\"> <g id=\"tuts\" sketch:type=\"MSPage\"> <g id=\"mic_ff\" sketch:type=\"MSLayerGroup\"> <g id=\"speechkit_vector-9\" transform=\"translate(39.000000, 32.000000)\"  sketch:type=\"MSShapeGroup\" opacity=\"0.9\"> <path id=\"Shape\" d=\"M17,4c2.8,0,5,2.3,5,5.2v15.6c0,2.9-2.2,5.2-5,5.2s-5-2.3-5-5.2V9.2C12,6.3,14.2,4,17,4 M17,0 c-5,0-9,4.1-9,9.2v15.6c0,5.1,4,9.2,9,9.2s9-4.1,9-9.2V9.2C26,4.1,22,0,17,0L17,0z\"/> <path id=\"Shape_1_\"  d=\"M34,23v1.1C34,34,26.4,42,17,42S0,34,0,24.1V23h4v0.1C4,31.3,9.8,38,17,38s13-6.7,13-14.9V23H34z\"/> <rect id=\"Rectangle-311\" x=\"15\" y=\"41\" width=\"4\" height=\"10\"/> </g> </g> </g> </svg>");
}
#search_speech.phone.active, #microphone.active.phone, .speech-phone.active.phone{
background-image: url("data:image/svg+xml;utf8,<svg version=\"1.1\" id=\"Layer_1\"  xmlns:sketch=\"http://www.bohemiancoding.com/sketch/ns\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"  x=\"0px\" y=\"0px\" viewBox=\"0 0 112 112\" enable-background=\"new 0 0 112 112\" xml:space=\"preserve\"> <g id=\"tuts\" sketch:type=\"MSPage\"> <g id=\"mic_ff\" sketch:type=\"MSLayerGroup\"> <g sketch:type=\"MSShapeGroup\"> <circle id=\"path-1\" fill=\"rgb(255, 0, 0)\" cx=\"56\" cy=\"56\" r=\"56\"/> </g> <g id=\"speechkit_vector-9\" transform=\"translate(39.000000, 32.000000)\"  sketch:type=\"MSShapeGroup\" opacity=\"0.9\"> <path id=\"Shape\" d=\"M17,4c2.8,0,5,2.3,5,5.2v15.6c0,2.9-2.2,5.2-5,5.2s-5-2.3-5-5.2V9.2C12,6.3,14.2,4,17,4 M17,0 c-5,0-9,4.1-9,9.2v15.6c0,5.1,4,9.2,9,9.2s9-4.1,9-9.2V9.2C26,4.1,22,0,17,0L17,0z\"/> <path id=\"Shape_1_\"  d=\"M34,23v1.1C34,34,26.4,42,17,42S0,34,0,24.1V23h4v0.1C4,31.3,9.8,38,17,38s13-6.7,13-14.9V23H34z\"/> <rect id=\"Rectangle-311\" x=\"15\" y=\"41\" width=\"4\" height=\"10\"/> </g> </g> </g> </svg>");
}
#microphone.phone, .speech-phone.phone{
	width: 26px;
	height: 26px;
	position: absolute;
	right: 0px;
	cursor: pointer;
	top: 5px;
}
.top-search .search-block.has-microphone form .speech-phone {
	width: 40px;
	height: 40px;
	right: 40px;
}
.top-search .search-block.has-microphone  form .search-btn {
	width: 40px;
}
/* End */


/* Start:/local/templates/bs_theme_2023/components/bitrix/system.pagenavigation/.default/style.css?16976157651976*/
.category-catalog-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-catalog-bottom__observer {
    font-size: 14px;
    color: #696969;
}

.category-catalog-bottom__load {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    stroke: var(--secondary-color);
    cursor: pointer;
    transition: .3s ease-in-out;
}

.category-catalog-bottom__load .cru-icon {
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

.category-catalog-bottom__load:hover {
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.pagination__list {
    display: flex;
    align-items: center;
}

.pagination__item {
    color: var(--secondary-color);
    margin-left: 20px;
}

.pagination__item.active {
    color: #696969;
    position: relative;
    margin-right: 3px;
    font-weight: 700;
}

.pagination__item.active::after {
    content: "";
    background: #696969;
    position: absolute;
    top: 50%;
    left: 20px;
    height: 0px;
    width: 0px;
}

.pagination__item.last-page.active {
    margin-right: 0;
    margin-left: 80px;
}
.pagination__item.last-page.active:after {
    left: -60px;
}

.cru-icon.pagination-arrow {
    stroke: var(--secondary-color);
    transform: rotate(270deg);
    width: 12px;
    height: 12px;
}

.cru-icon.pagination-double-arrow {
    stroke: var(--secondary-color);
    width: 12px;
    height: 12px;
}

.cru-icon.pagination-arrow.prev-page {
    transform: rotate(90deg);
}
.cru-icon.pagination-double-arrow.first-page {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .category-catalog-bottom__observer {
        display: none;
    }

    .category-catalog-bottom {
        flex-direction: column;
    }

    .category-catalog-bottom__load {
        margin-bottom: 20px;
    }
    .pagination {
        margin: 20px 0;
    }
}
/* End */
/* /local/templates/bs_theme_2023/assets/css/style.css?175094060423959 */
/* /local/templates/bs_theme_2023/components/bitrix/search.title/it_search/style.css?16976157652186 */
/* /local/templates/bs_theme_2023/components/alkodesign/search.suggest.input/.default/style.css?16976157653095 */
/* /local/templates/bs_theme_2023/components/bitrix/system.pagenavigation/.default/style.css?16976157651976 */
