@charset "UTF-8";
@import "../fonts/stylesheet.css";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --black: #000000;
  --dark: #1b2024;
  --black_rgba: rgba(0, 0, 0, 0.2);
  --main: #162f44;
  --main_hover: #122536;
  --main_active: #0b151d;
  --main2: #bca174;
  --border_c: #d9cebc;
  --orange: #ac5b36;
  --orange_hover: #7c4127;
  --orange_active: #61321e;
  --bg2: #f2e9d8;
  --light: #f5f5f5;
  --light_text: #dad9d4;
  --grey: #c1c9cf;
  --grey2: #889097;
  --icon_hover: #eedcbf;
  --arrow_hover: #f8f1e7;
}

.c_wh {
  color: var(--white);
}

.c_light {
  color: var(--light);
}

.c_black {
  color: var(--black);
}

.c_dark {
  color: var(--dark);
}

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

.c_main_2 {
  color: var(--main2);
}

.c_orange {
  color: var(--orange);
}

.c_grey {
  color: var(--grey);
}

.c_grey2 {
  color: var(--grey2);
}

.bg_wh {
  background-color: var(--white);
}

.bg_light {
  background-color: var(--light);
}

.bg_dark {
  background-color: var(--dark);
}

.bg_black {
  background-color: var(--black);
}

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

.bg_main2 {
  background-color: var(--main2);
}

.bg_orange {
  background-color: var(--orange);
}

.bg_grey {
  background-color: var(--grey);
}

.bg_grey2 {
  background-color: var(--grey2);
}

.elem__anim > h1, .elem__anim > h2, .elem__anim > h3, .elem__anim > h4, .elem__anim > a, .elem__anim > button, .elem__anim > p, .elem__anim > ul, .elem__anim > ol {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

body,
html {
  scrollbar-color: var(--main) var(--main2);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

.ui-widget {
  font-family: "Manrope", sans-serif !important;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  color: var(--dark);
  padding-top: 95px;
}

section {
  position: relative;
}

.ff_m {
  font-family: "Marianna";
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--main2);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: block;
}

p {
  margin-bottom: 0;
  line-height: 1.3em;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "Manrope", sans-serif;
}

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

button,
button:focus,
button:active,
button:hover {
  outline: none;
}

svg,
path,
stroke {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  height: 50px;
  width: 100%;
  position: relative;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 50px;
}
a.btn:hover,
button.btn:hover {
  color: var(--white);
  background-color: var(--main_hover);
  border: 1px solid var(--main_hover);
}
a.btn:active,
button.btn:active {
  color: var(--white);
  background-color: var(--main_active);
  border: 1px solid var(--main_active);
}
a.btn.btn_orange,
button.btn.btn_orange {
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
}
a.btn.btn_orange:hover,
button.btn.btn_orange:hover {
  color: var(--white);
  background-color: var(--orange_hover);
  border: 1px solid var(--orange_hover);
}
a.btn.btn_orange:active,
button.btn.btn_orange:active {
  color: var(--white);
  background-color: var(--orange_active);
  border: 1px solid var(--orange_active);
}
a.btn.btn_orange_tr,
button.btn.btn_orange_tr {
  color: var(--orange);
  background-color: transparent;
  border: 1px solid var(--orange);
}
a.btn.btn_orange_tr:hover,
button.btn.btn_orange_tr:hover {
  color: var(--orange);
  background-color: var(--icon_hover);
  border: 1px solid var(--orange);
}
a.btn.btn_orange_tr:active,
button.btn.btn_orange_tr:active {
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
}

/*Animation*/
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }
.delay-6 { transition-delay: 1.2s; }
/*End animation*/

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 15px 0;
}

.header #promo-banner{
    background: #152E44;
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    padding: 10px;
    margin: -18px 0 10px;
}
.header #promo-banner strong{
    font-weight: 800;
}
.header .header__search {
  position: relative;
}

.header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{
    padding: 0;
}

.header .dgwt-wcas-search-wrapp {
    color: var(--light_text);
    max-width: 218px!important;
    margin: unset;
}
.header .dgwt-wcas-search-wrapp input.dgwt-wcas-search-input {
    padding-left: 55px !important;
    font-size: 14px !important;
    font-weight: 400;
    height: 40px !important;
    color: var(--light_text);
    border-radius: 50px !important;
    border: 1px solid transparent !important;
    font-family: "Manrope", sans-serif !important;
    transition: all 0.4s ease;
    background: transparent !important;
}
.header .dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{
    left: 16px;
    top: 5px;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg path{
    fill: var(--grey);
}
.header .dgwt-wcas-style-pirx .dgwt-wcas-preloader{
    margin-right: 0;
    right: 10px;
}
.dgwt-wcas-search-wrapp input.dgwt-wcas-search-input:hover,
.dgwt-wcas-search-wrapp input.dgwt-wcas-search-input:focus {
    border-color: var(--grey) !important;
    color: var(--main);
}
.dgwt-wcas-search-wrapp input.dgwt-wcas-search-input::placeholder {
    font-size: 14px;
    color: var(--light_text);
}

.header .header__search input {
  display: block;
  height: 40px;
  width: 100%;
  max-width: 280px;
  padding-left: 55px;
  font-size: 14px;
  font-weight: 400;
  color: var(--light_text);
  border-radius: 50px;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .header__search input:hover, .header .header__search input:focus {
  border-color: var(--grey);
  color: var(--main);
}
.header .header__search input::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.header .header__search input::-moz-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.header .header__search input:-ms-input-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.header .header__search input::-ms-input-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.header .header__search input::placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.header .header__search button {
  width: 20px;
  height: 20px;
  background: url(../img/icon_search.svg) no-repeat center;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 10px;
}
.header .menu__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .menu__icons .menu__item {
  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;
  margin-left: 25px;
  position: relative;
  width: 20px;
  height: 20px;
}
.header .menu__icons .menu__item * {
  pointer-events: none;
}
.header .menu__icons .menu__item .menu__item_count {
  position: absolute;
  min-width: 10px;
  height: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 2px;
  bottom: 0;
  right: 0;
  background-color: var(--orange);
  color: var(--white);
  font-size: 8px;
  font-weight: 500;
  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;
  border-radius: 20px;
}
.header .menu__icons .menu__item svg {
  width: 20px;
  height: 20px;
}
.header .menu__icons .menu__item:hover path {
  fill: var(--orange);
}
.header .social a {
  width: 24px;
  height: 24px;
  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;
}
.header .social a img {
  width: 100%;
  height: auto;
}
.header .social a:not(:last-child) {
  margin-right: 12px;
}
.header .header__contact a:hover {
  color: var(--main);
  text-decoration: underline;
}

.woocommerce-product-search {
  position: relative;
  width: 100%;
  max-width: 672px;
  margin: 0 auto 25px;
  display: none;
}
.woocommerce-product-search .screen-reader-text {
  display: none;
}

.woocommerce-product-search .dgwt-wcas-search-wrapp{
    max-width: 672px;
}

.woocommerce-product-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{
    background: transparent;
    padding: 10px 0;
}
.woocommerce-product-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{
    left: auto;
    right: 28px;
}
.woocommerce-product-search .dgwt-wcas-search-wrapp input{
    height: 60px !important;
    width: 100%;
    max-width: 100%;
    padding: 13px 24px 13px 48px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--main);
    border-radius: 50px;
    border: 1px solid var(--grey)!important;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-family: "Manrope", sans-serif !important;
    background-color: var(--light) !important;
}
.woocommerce-product-search .dgwt-wcas-enable-mobile-form{
    display: none!important;
}
.woocommerce-product-search input {
  display: block;
  height: 60px;
  width: 100%;
  max-width: 100%;
  padding-left: 55px;
  font-size: 14px;
  font-weight: 400;
  color: var(--main);
  border-radius: 50px;
  border: 1px solid var(--grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--light);
}
.woocommerce-product-search input:hover, .woocommerce-product-search input:focus {
  border-color: var(--grey);
  color: var(--main);
}
.woocommerce-product-search input::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.woocommerce-product-search input::-moz-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.woocommerce-product-search input:-ms-input-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.woocommerce-product-search input::-ms-input-placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.woocommerce-product-search input::placeholder {
  font-size: 14px;
  color: var(--light_text);
}
.woocommerce-product-search button {
  width: 30px;
  height: 30px;
  background: url(../img/icon_search.svg) no-repeat center/20px;
  cursor: pointer;
  position: absolute;
  left: auto;
  right: 20px;
  top: 15px;
}

.archive.search .woocommerce-product-search {
  display: block;
}

.woocommerce-info {
  border-top-color: var(--main2);
}

.woocommerce-info::before {
  color: var(--main2);
}

@media screen and (min-width: 1200px) {
  .header.header_fixed.scroll__up {
    top: 0;
  }
  .header.header_fixed.scroll__down {
    top: -155px;
  }
}
.custom-logo-link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  width: 120px;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  padding: 13px 0;
}
.nav__menu .menu-item {
  position: relative;
  margin-right: 40px;
}
.nav__menu .menu-item:last-child {
  margin-right: 0;
}
.nav__menu .menu-item a {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  padding: 0;
  color: var(--main);
  position: relative;
  display: block;
  border-bottom: 1px solid transparent;
}
.nav__menu .menu-item a:hover {
  color: var(--main);
  border-bottom: 1px solid var(--main);
}

@media screen and (min-width: 1200px) {
  .nav__menu .menu-item.menu-item-has-children:hover > a:before {
    opacity: 0;
  }
  .nav__menu .menu-item.menu-item-has-children:hover > a::after {
    opacity: 1;
  }
  .nav__menu .menu-item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
}
.menu__burger {
  margin-left: 30px;
  width: 24px;
  height: 24px;
  display: none;
  -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;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 6px 3px;
}
.menu__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--main);
  border-radius: 0px;
}

@media screen and (max-width: 1199px) {
  .nav__menu .menu-item {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  body {
    padding-top: 65px;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: 9;
    right: -320px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 0 0px 40px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--white);
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .dgwt-wcas-search-wrapp input.dgwt-wcas-search-input{
    border-color: var(--light) !important;
 }
.nav .dgwt-wcas-search-wrapp{
    width: 95%;
    margin: 0 auto 60px;
    max-width: unset !important;
}
.nav .dgwt-wcas-enable-mobile-form{
    display: none !important;
}

    .nav .nav__row {
    width: 100%;
    padding: 20px 12px;
    position: relative;
    margin-bottom: 40px;
  }

    width: 95%;
    margin: 0 auto 60px;
  .nav .menu__close {
    width: 25px;
    height: 25px;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: auto;
    background: url(../img/close_menu.svg) no-repeat center/contain;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .header__search {
    width: 95%;
    margin: 0 auto 60px;
  }
  .nav .header__search input {
    border-color: var(--light);
  }
  .nav .header__search input::-webkit-input-placeholder {
    color: var(--light_text);
  }
  .nav .header__search input::-moz-placeholder {
    color: var(--light_text);
  }
  .nav .header__search input:-ms-input-placeholder {
    color: var(--light_text);
  }
  .nav .header__search input::-ms-input-placeholder {
    color: var(--light_text);
  }
  .nav .header__search input::placeholder {
    color: var(--light_text);
  }
  .nav .nav__menu {
    padding: 0;
    width: 150px;
    display: block;
    margin-bottom: 30px;
    margin: 0 auto;
  }
  .nav .nav__menu .menu-item {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    margin-right: 0;
    padding: 0;
  }
  .nav .nav__menu .menu-item:last-child {
    margin-bottom: 0;
  }
  .nav .nav__menu .menu-item a {
    font-size: 16px;
    font-weight: 300;
    position: relative;
    color: var(--main);
    display: block;
    padding: 0px 0;
    border: none;
    line-height: 1.8em;
  }
  .nav .nav__menu .menu-item a:hover {
    color: var(--main);
    border-bottom-color: var(--main);
  }
  .nav .nav__menu .menu-item a::after, .nav .nav__menu .menu-item a::before {
    display: none;
  }
  .nav .nav__menu .menu-item.menu-item-has-children > a {
    padding-right: 10px;
  }
  .nav .nav__menu .menu-item.menu-item-has-children > a.open .open_child_menu {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav .nav__menu .menu-item.menu-item-has-children .open_child_menu {
    position: absolute;
    display: block;
    right: -8px;
    top: calc(50% - 13px);
    width: 26px;
    height: 26px;
    background-color: var(--grey);
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .open_child_menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/menu_arrow.svg) no-repeat center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu {
    width: 100%;
    min-width: 250px;
    padding: 0 10px;
    background-color: transparent;
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    border-radius: 0;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 20px;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li a {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    display: block;
    padding: 5px 0;
    border: none;
    text-transform: uppercase;
    line-height: 1.8em;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li a:hover {
    color: var(--gold);
  }
  .nav .header__contact {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto auto 30px;
  }
  .menu__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 50px;
  }
}
@media screen and (max-width: 576px) {
  body {
    padding-top: 40px;
  }
}
.title_1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2em;
}

.section__title {
  font-family: "KyivType Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1em;
}
.section__title b,
.section__title strong {
  font-weight: 500;
}
.section__title.section__title2 {
  font-size: 40px;
}

.entry-header .entry-title {
  text-align: center;
}

.entry-header .entry-title,
h1.page-title,
.title_main {
  font-size: 70px;
  font-family: "KyivType Serif", serif;
  font-weight: 300;
  line-height: 1.1em;
}

.section__offer {
  margin-bottom: 20px;
}

.section__label {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.title_2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
}

.title_3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

.title_4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
}

.text__content h1 {
  font-size: 70px;
  font-family: "KyivType Serif", serif;
  font-weight: 300;
  margin-bottom: 0.8em;
}
.text__content h2 {
  font-family: "KyivType Serif", serif;
  font-weight: 300;
  margin-bottom: 1em;
  font-size: 28px;
}
.text__content h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 1.1em;
}
.text__content h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.text__content p,
.text__content li {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2em;
  margin-bottom: 1.4em;
}
.text__content p a,
.text__content li a {
  text-decoration: underline;
  font-weight: 500;
}
.text__content p b,
.text__content p strong,
.text__content li b,
.text__content li strong {
  font-weight: 700;
}
.text__content li:last-child {
  margin-bottom: 0;
}
.text__content p {
  margin-bottom: 1.4em;
}
.text__content p:last-child {
  margin-bottom: 0;
}
.text__content p a {
  color: var(--red);
}
.text__content p a:hover {
  color: #80181c;
}
.text__content ol,
.text__content ul {
  margin-bottom: 1.5em;
}
.text__content ul li {
  font-weight: 300;
}
.text__content ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--main);
  border-radius: 50px;
  position: absolute;
  left: 5px;
  top: 7px;
}
.text__content li {
  padding-left: 20px;
  position: relative;
  color: var(--black);
}
.text__content li:not(:last-child) {
  margin-bottom: 15px;
}
.text__content ol {
  list-style: none;
  counter-reset: item;
}
.text__content ol li {
  counter-increment: item;
  color: var(--black);
  font-size: 18px;
}
.text__content ol li:before {
  margin-right: 16px;
  content: counter(item) ".";
  background: transparent;
  color: var(--black);
  font-size: 18px;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  height: 16px;
  top: 0px;
}

@media screen and (max-width: 1439px) {
  .text__content h2 {
    font-size: 24px;
  }
  .entry-header .entry-title,
  h1.page-title,
  .text__content h1,
  .title_main {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .title_1 {
    font-size: 44px;
  }
  .text__content h2 {
    font-size: 24px;
  }
  .section__title.section__title2 {
    font-size: 36px;
  }
  .entry-header .entry-title,
  h1.page-title,
  .text__content h1,
  .title_main {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .title_1 {
    font-size: 36px;
  }
  .section__title {
    font-size: 24px;
  }
  .section__title.section__title2 {
    font-size: 32px;
  }
  .entry-header .entry-title,
  h1.page-title,
  .text__content h1,
  .title_main {
    font-size: 36px;
  }
  .section_space.mb_50,
  section.mb_50 {
    margin-bottom: 30px;
  }
  .section_space.mt_50,
  section.mt_50 {
    margin-top: 30px;
  }
  .section_space.pt_50,
  section.pt_50 {
    padding-top: 50px;
  }
  .section_space.pb_50,
  section.pb_50 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .title_1 {
    font-size: 28px;
  }
  .text__content h2 {
    font-size: 24px;
  }
  .entry-header .entry-title,
  .text__content h1,
  .title_main {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
    .section_space.pt_50,
    section.pt_50 {
        padding-top: 60px;
    }
  .text__content h2,
  .section__title {
    font-size: 20px;
  }
  .text__content h2.section__title2,
  .section__title.section__title2 {
    font-size: 20px;
  }
  .about .text__content p a,
  .about .text__content li a {
    font-size: 14px;
  }
  .text__content p,
  li {
    font-size: 16px;
  }
  .text__content ol li:before {
    font-size: 16px;
  }
  .text__content ol li,
  .text__content ul li {
    font-size: 16px;
  }
  .entry-header .entry-title,
  .text__content h1,
  .title_main {
    font-size: 28px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 12px;
}
.form__wrap .input__group p {
  margin: 0 !important;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 50px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 20px;
  border: 1px solid var(--white);
  border-radius: 5px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--black);
  border-radius: 3px;
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--grey);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus {
  border-color: var(--black);
}
.form__wrap .accept__block label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  display: flex;
  align-items: center;
  color: var(--white);
}
.form__wrap .accept__block label span {
  color: var(--white);
}
.form__wrap input[type=checkbox] {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 1px solid var(--white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  background-color: transparent;
}
.form__wrap input[type=checkbox]:checked {
  background-color: var(--white);
  -webkit-box-shadow: inset 0 0 0 2px var(--main);
          box-shadow: inset 0 0 0 2px var(--main);
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 16px;
  color: var(--orange);
}
.form__wrap span {
  display: block;
}
.form__wrap .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}
.form__wrap .btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
}

.circle {
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--white);
}

.head__section {
  padding-top: 90px;
  padding-bottom: 55px;
  overflow: hidden;
}
.head__section:before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  max-height: 860px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(29%, #fff), color-stop(60%, rgba(255, 255, 255, 0.35)), color-stop(98%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(180deg, #fff 0%, #fff 29%, rgba(255, 255, 255, 0.35) 60%, rgba(255, 255, 255, 0) 98%);
}
.head__section .offer__subtitle {
  padding-top: 15px;
}
.head__section .offer__labels {
  padding-top: 40px;
}
.head__section .offer__labels .offer__label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0 35px;
  border-radius: 25px;
  height: 40px;
  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;
  text-align: center;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  margin-bottom: 70px;
}
.head__section .offer__labels .offer__label:last-child {
  margin-bottom: 0;
}
.head__section .offer__labels .offer__label:nth-child(even) {
  margin-left: auto;
}
.head__section .offer__list {
  padding-top: 240px;
}
.head__section .offer__list .offer__card {
  padding: 15px;
  border-radius: 20px;
  border: 1px solid var(--white);
  background-color: rgba(55, 55, 55, 0.2);
  backdrop-filter: blur(5px);
}
.head__section .offer__list .offer__card:hover .offer__card_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.head__section .offer__list .offer__card p {
  font-family: "KyivType Serif";
  font-weight: 300;
}
.head__section .offer__list .offer__card .offer__card_img {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 9px;
}
.head__section .offer__list .offer__card .offer__card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

@media screen and (max-width: 1439px) {
  .head__section:before {
    height: 600px;
  }
}
@media screen and (max-width: 1199px) {
  .head__section:before {
    height: 500px;
  }
  .head__section .offer__labels .offer__label {
    margin-bottom: 45px;
  }
  .head__section .offer__list .offer__card p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
    .header #promo-banner{
        margin: -18px 0 8px;
    }
  .head__section:before {
    height: 400px;
  }
  .head__section {
    padding-top: 50px;
  }
  .head__section .offer__labels .offer__label {
    margin-bottom: 35px;
  }
  .head__section .offer__list {
    padding-top: 200px;
  }
  .head__section .offer__list .offer__card {
    border-radius: 10px;
  }
  .head__section .offer__list .offer__card .offer__card_img {
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .head__section:before {
    height: 300px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(54%, #fff), color-stop(98%, rgba(255, 255, 255, 0)));
    background-image: linear-gradient(180deg, #fff 0%, #fff 54%, rgba(255, 255, 255, 0) 98%);
  }
  .head__section .offer__list .offer__card .offer__card_img {
    display: none;
  }
}
@media screen and (max-width: 576px) {
    .header #promo-banner{
        font-size: 12px;
        padding: 10px 0;
    }
    .cookie-notice-container #cn-notice-buttons{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .head__section{
        padding-top: 65px;
    }
  .head__section .offer__labels .offer__label {
    font-size: 12px;
    height: 28px;
    padding: 0 24px;
  }
  .head__section .offer__subtitle {
    padding-top: 12px;
    font-size: 14px;
  }
  .head__section .offer__labels {
    padding-top: 30px;
    padding-left: 30px;
  }
  .head__section:before {
    height: 280px;
  }
  .head__section .offer__list .offer__card {
    padding: 14px 8px;
  }
  .head__section .offer__list .offer__card p {
    font-size: 12px;
  }
}
.faq .faq__item {
  padding: 9px 0;
  border-bottom: 1px solid var(--main2);
}
.faq .faq__item:last-child {
  border-bottom: none;
}
.faq .faq__item.open {
  border-color: var(--orange);
}
.faq .faq__item.open .faq__question {
  color: var(--orange);
}
.faq .faq__item.open .faq__question::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.faq .faq__item .faq__question {
  padding-right: 20px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
.faq .faq__item .faq__question:hover {
  color: var(--orange);
}
.faq .faq__item .faq__question::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 4px;
  background: url(../img/faq_icon.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq .faq__item .faq__answer .text__content p,
.faq .faq__item .faq__answer .text__content ul li,
.faq .faq__item .faq__answer .text__content ol li {
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 0.5em;
}
.faq .faq__item .faq__answer .text__content ul li,
.faq .faq__item .faq__answer .text__content ol li {
  padding-left: 15px;
}
.faq .faq__item .faq__answer .text__content ul li:last-child,
.faq .faq__item .faq__answer .text__content ol li:last-child {
  margin-bottom: 0;
}
.faq .faq__item .faq__answer .text__content ul li::before,
.faq .faq__item .faq__answer .text__content ol li::before {
  font-size: 14px;
  color: var(--dark);
  margin: 0;
}
.faq .more_faq_read {
  width: 300px;
}

@media screen and (max-width: 576px) {
  .faq .more_faq_read {
    width: 200px;
    height: 36px;
    font-size: 14px;
  }
}
.swiper__arrow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--main2);
  border-radius: 50%;
  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;
  position: absolute;
  top: calc(50% - 25px);
  z-index: 2;
}
.swiper__arrow.swiper__arrow_left {
  left: -60px;
}
.swiper__arrow.swiper__arrow_right {
  right: -60px;
}
.swiper__arrow:hover {
  background-color: var(--arrow_hover);
}
.swiper__arrow:active {
  background-color: var(--main2);
}
.swiper__arrow:active path {
  fill: var(--white);
}

.bg_main .swiper__arrow {
  border: 1px solid var(--light);
}
.bg_main .swiper__arrow path {
  fill: var(--light);
}
.bg_main .swiper__arrow:hover {
  background-color: var(--arrow_hover);
}
.bg_main .swiper__arrow:hover path {
  fill: var(--main2);
}
.bg_main .swiper__arrow:active {
  background-color: var(--main2);
  fill: var(--white);
}
.bg_main .swiper__arrow:active path {
  fill: var(--white);
}

.swiper__pag {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper__pag .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  border: 1px solid var(--main2);
  margin: 0 4px;
  border-radius: 20px;
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.swiper__pag .swiper-pagination-bullet:hover {
  background-color: var(--main2);
}
.swiper__pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  background-color: var(--main2);
}

.sertificate .sertificate__img {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.sertificate .sertificate__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sertificate .sertificate__img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 1199px) {
  .sertificate .sertificate__img {
    height: 350px;
  }
  .sertificate .swiper__wrapper .swiper__arrow.swiper__arrow_left {
    left: -40px;
  }
  .sertificate .swiper__wrapper .swiper__arrow.swiper__arrow_right {
    right: -40px;
  }
}
@media screen and (max-width: 991px) {
  .sertificate {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .swiper__wrapper .sertificate__list {
    overflow: visible;
  }
  .swiper__wrapper .swiper__arrow {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .sertificate .swiper-slide {
    width: 280px;
  }
  .sertificate .sertificate__img {
    height: 400px;
  }
}
.callback.callback_social .callback__wrap {
  border-radius: 20px;
  padding: 60px 20px;
}
.callback.callback_social .callback__wrap .social {
  padding-top: 30px;
}
.callback.callback_social .callback__wrap .social a {
  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;
  width: 40px;
  height: 40px;
  margin: 0 10px;
}
.callback.callback_social .callback__wrap .social a svg {
  width: 40px;
  height: 40px;
}
.callback.callback_social .callback__wrap .social a:hover path {
  fill: var(--arrow_hover);
}
.callback.callback_social .callback__wrap .form__wrap .wpcf7-not-valid-tip {
  font-size: 14px;
}
.callback.callback_social .callback__wrap form .wpcf7-response-output {
  color: var(--white);
  font-size: 14px;
  margin: 1em 0em 0.5em;
}
.callback.callback_subscribe .callback__wrap {
  border-radius: 20px;
}
.callback.callback_subscribe .callback__wrap .social a {
  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;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  margin-right: 12px;
}
.callback.callback_subscribe .callback__wrap .social a:hover path {
  fill: var(--icon_hover);
}
.callback.callback_subscribe .callback__wrap .form__wrap .wpcf7-not-valid-tip {
  font-size: 14px;
}
.callback.callback_subscribe .callback__wrap form .wpcf7-response-output {
  color: var(--white);
  font-size: 14px;
  margin: 1em 0em 0.5em;
}
.callback.callback_simple .section__title {
  font-size: 50px;
}
.callback.callback_simple .callback_simple_subtitle span {
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

@media screen and (max-width: 1439px) {
  .callback.callback_simple .section__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 1199px) {
  .callback.callback_simple .section__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .callback .callback_simple_subtitle,
  .callback .callback_social_subtitle {
    font-size: 16px;
  }
  .callback.callback_simple .section__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .callback.callback_simple .section__title {
    font-size: 28px;
  }
  .callback.callback_subscribe .callback__wrap {
    padding: 40px 26px 80px;
  }
  .callback.callback_subscribe .callback__wrap .social {
    margin-bottom: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .callback.callback_subscribe .callback__wrap .social a {
    margin: 0 6px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .input__group .order__input {
    font-size: 14px;
    height: 36px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .input__group .order__input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .input__group .order__input::-moz-placeholder {
    font-size: 14px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .input__group .order__input:-ms-input-placeholder {
    font-size: 14px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .input__group .order__input::-ms-input-placeholder {
    font-size: 14px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .input__group .order__input::placeholder {
    font-size: 14px;
  }
  .callback.callback_subscribe .callback__wrap .form__wrap .btn {
    font-size: 14px;
    height: 36px;
  }
  .callback.callback_subscribe .callback__subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .callback .callback_simple_subtitle,
  .callback .callback_social_subtitle {
    font-size: 14px;
  }
  .callback.callback_simple .section__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .alert_block .alert_block__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .alert_block .alert_block__subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .alert_block .alert_block__subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .alert_block .alert_block__subtitle {
    font-size: 14px;
  }
}
.cardtext .cardtext__card {
  min-height: 162px;
  border: 1px solid var(--border_c);
  border-radius: 15px;
}
.cardtext .cardtext__card .cardtext__name {
  font-family: "KyivType Serif", serif;
  font-weight: 500;
}
.cardtext .cardtext__card .text__content p,
.cardtext .cardtext__card .text__content li {
  color: var(--main);
}

@media screen and (max-width: 1199px) {
  .cardtext .cardtext__card .cardtext__name {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .cardtext .cardtext__card .cardtext__name {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .cardtext .text__content {
    font-size: 16px;
  }
  .cardtext .cardtext__card {
    padding: 24px 13px;
  }
  .cardtext .cardtext__card .cardtext__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .cardtext .text__content {
    font-size: 14px;
  }
  .cardtext .cardtext__card .cardtext__name {
    font-size: 18px;
  }
  .cardtext .cardtext__card .text__content br {
    display: none;
  }
}
.contact .contact__item .icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.contact .contact__item .icon svg {
  width: 16px;
  height: 16px;
}
.contact .contact__item a:hover {
  color: var(--main);
  text-decoration: underline;
}
.contact .contact__form {
  padding: 40px 100px;
  border-radius: 20px;
}
.contact .contact__form .form__wrap .input__group {
  margin-bottom: 20px;
}
.contact .contact__form .form__wrap .input__group .order__input {
  border: 1px solid var(--grey);
}

.about_number .about_number__card {
  border-radius: 15px;
  border: 1px solid var(--border_c);
  padding: 32px 15px;
  min-height: 140px;
}
.about_number .about_number__card .about_number__value {
  font-family: "KyivType Serif", serif;
  font-weight: 700;
}

.simple_text.bg__style {
  margin-top: -15px;
  padding-top: 150px;
  padding-bottom: 110px;
}
.simple_text.bg__style::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #102638;
  opacity: 0.5;
}
.simple_text.bg__style .text__content h1 {
  color: var(--white);
}
.simple_text .more_read {
  cursor: pointer;
  text-decoration: underline;
  color: var(--main);
}
.simple_text .more_read:hover {
  color: var(--orange);
}

@media screen and (max-width: 576px) {
  .contact .contact__item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact__item .info p {
    font-size: 4vw;
    margin-bottom: 0;
  }
  .contact .contact__item .info p.pt-1 {
    padding-top: 0 !important;
  }
  .contact .contact__item .info p.fz_18 {
    margin-right: 4px;
  }
  .contact .contact__item .info p a {
    font-size: 4vw;
  }
  .contact .contact__form {
    margin: 0 -12px;
    padding: 30px 12px;
    border-radius: 0;
    text-align: center;
  }
  .contact .contact__form .fz_24 {
    font-size: 20px;
  }
  .contact .contact__form .fz_18 {
    font-size: 14px;
  }
  .simple_text .more_read {
    font-size: 14px;
  }
  .simple_text .text__content ol li,
  .simple_text .text__content ul li {
    font-size: 14px;
  }
}
.about.bg_light {
  padding-top: 70px;
  padding-bottom: 70px;
}
.about .about__img {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}
.about .about__img.about__img_medium {
  height: 460px;
}
.about .about__img.about__img_height {
  height: 515px;
}
.about .about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__img .about__labels {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  padding: 20% 40px 20px 20px;
}
.about .about__img .about__labels .about__label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0 24px;
  border-radius: 25px;
  height: 40px;
  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;
  text-align: center;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}
.about .about__img .about__labels .about__label:nth-child(even) {
  margin-left: auto;
}
.about .about__img .about__labels .about__label:last-child {
  margin-right: 20px;
}
.about .text__content p,
.about .text__content li {
  font-size: 18px;
}
.about .text__content p a,
.about .text__content li a {
  font-size: 18px;
  text-decoration: underline;
  color: var(--dark);
}
.about .text__content ul li {
  font-size: 16px;
  padding-left: 24px;
}
.about .text__content ul li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 3px;
  top: 1px;
  background: url(../img/list_icon.svg) no-repeat center;
}
.about .text__content ol li {
  font-size: 16px;
  padding-left: 0;
}
.about .text__content ol li:before {
  color: var(--orange);
  font-size: 16px;
  margin-right: 0;
}
.about .about_btn {
  margin-top: 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 26px;
}

@media screen and (max-width: 576px) {
  .about .about__img .about__labels .about__label {
    height: 30px;
    font-size: 14px;
  }
  .about .about__img .about__labels {
    padding: 27px 15px;
  }
  .about_number .about_number__card {
    height: auto;
    padding: 20px 15px;
    min-height: initial;
  }
  .about_number .about_number__card .about_number__value {
    font-size: 20px;
  }
  .about_number .about_number__card .fz_18 {
    font-size: 14px;
  }
  .about .text__content p a,
  .about .text__content li a,
  .about .text__content p,
  .about .text__content li {
    font-size: 14px;
  }
  .about .text__content ul li,
  .about .text__content ol li {
    font-size: 14px;
  }
  .about .about_btn {
    height: 36px;
    font-size: 14px;
    margin: 25px auto 0;
  }
  .about .text__content ul li:before {
    top: 0;
  }
  .about .about__img.about__img_medium {
    height: 310px;
  }
  .about .about__img.about__img_height {
    height: 310px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.product__single .reset_variations {
  font-size: 16px !important;
  margin-top: -15px !important;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.product__single .variable-items-wrapper {
  margin-bottom: 20px;
}
.product__single .thumbnail__slider_wrap {
  width: 136px;
}
.product__single .thumbnail__slider_wrap .swiper__arrow {
  position: relative;
  top: 0;
  width: 100%;
  height: 30px;
  background-color: var(--light);
  border: none;
  border-radius: 5px;
}
.product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_left {
  left: 0;
}
.product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_left svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_right {
  right: 0;
}
.product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_right svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.product__single .thumbnail__slider_wrap .thumbnail__slider {
  height: 590px;
  margin: 10px 0;
}
.product__single .thumbnail__slider_wrap .thumbnail__slider .swiper-slide {
  border-radius: 5px;
  overflow: hidden;
}
.product__single .thumbnail__slider_wrap .thumbnail__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__single .main__slider_wrap {
  width: calc(100% - 160px);
}
.product__single .main__slider_wrap .main__slider {
  height: 670px;
}
.product__single .main__slider_wrap .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.product__single .main__slider_wrap .swiper-slide .product__zoom {
  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;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  border: 1px solid var(--white);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  z-index: 2;
  border-radius: 50%;
}
.product__single .main__slider_wrap .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-pname a small{
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-pname a small.product-total-default{
    font-size: 16px !important;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-pname a small.product-total-default span{
    font-size: 18px;
}
.product__single .product__title {
  font-size: 32px;
  font-weight: 400;
  font-family: "KyivType Serif3";
  margin-bottom: 20px;
  line-height: 1.15em;
}
.product__single p.product__stock {
  font-size: 16px;
}
.product__single p.product__stock.product__stock_in {
  color: #7ebf66;
}
.product__single p.price {
  font-size: 32px !important;
  font-weight: 400;
  color: var(--main);
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__single p.price span {
  color: var(--main);
  font-size: 32px;
  font-weight: 400;
}
.product__single p.price del {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  opacity: 1;
  text-decoration: none;
}
.product__single p.price del span.amount {
  color: #c8cfda;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}
.product__single p.price del span.amount span{
    color: #c8cfda;
}
.product__single p.price del .woocommerce-Price-currencySymbol {
  font-size: 18px;
}
.product__single p.price ins {
  text-decoration: none;
  margin-right: 20px;
}
.product__single .reset_variations {
  color: var(--orange);
}
.product__single .woocommerce-variation-price .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__single .woocommerce-variation-price .price span.amount {
  color: var(--main);
  font-size: 26px;
  font-weight: 400;
}
.product__single .woocommerce-variation-price .price del {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  opacity: 1;
  text-decoration: none;
}
.product__single .woocommerce-variation-price .price del span.amount {
  color: #c8cfda;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}
.product__single .woocommerce-variation-price .price ins {
  text-decoration: none;
  margin-right: 20px;
}
.product__single .stock__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product__single .stock__block p {
  font-size: 16px;
  color: var(--orange);
  background: url(../img/icon_out_stock.svg) no-repeat center left/16px;
  padding-left: 24px;
}
.product__single .stock__block p.in-stock {
  color: #7ebf66;
  background: url(../img/icon_in_stock.svg) no-repeat center left/16px;
}
.product__single .woocommerce-variation-availability p {
  display: none;
}
.product__single .woocommerce-variation-availability .reset_variations p.stock {
  font-size: 16px;
  color: var(--orange);
  margin-bottom: 20px;
}
.product__single .woocommerce-variation-availability .reset_variations p.stock.in-stock {
  color: #7ebf66;
  padding-left: 24px;
  background: url(../img/icon_in_stock.svg) no-repeat center left/16px;
}
.product__single .cart,
.product__single .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product__single .cart .quantity,
.product__single .woocommerce-variation-add-to-cart .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*margin: 0 30px 0 3px !important;*/
  position: relative;
  float: none;
}
.product__single .cart .quantity p,
.product__single .woocommerce-variation-add-to-cart .quantity p {
  margin-right: 5px;
  white-space: nowrap;
}
.product__single .cart .quantity.quantity_hidden .quantity__change,
.product__single .woocommerce-variation-add-to-cart .quantity.quantity_hidden .quantity__change {
  left: 65px;
  bottom: 10px;
  top: auto;
}
.product__single .cart .quantity .quantity__change,
.product__single .woocommerce-variation-add-to-cart .quantity .quantity__change {
  width: 24px;
  height: 30px;
  position: absolute;
  right: 10px;
  cursor: pointer;
  top: calc(50% - 15px);
}
.product__single .cart .quantity .quantity__change button,
.product__single .woocommerce-variation-add-to-cart .quantity .quantity__change button {
  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;
  width: 100%;
  height: 50%;
  color: var(--grey);
  font-size: 12px;
}
.product__single .cart .quantity .quantity__change button:hover,
.product__single .woocommerce-variation-add-to-cart .quantity .quantity__change button:hover {
  color: var(--main);
}
.product__single .cart .quantity input,
.product__single .woocommerce-variation-add-to-cart .quantity input {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  width: 90px;
  height: 50px;
  border: 1px solid var(--main);
  color: var(--main);
  border-radius: 5px;
  font-size: 20px;
  padding-left: 15px;
  text-align: left;
}
.product__single .cart .quantity input:disabled,
.product__single .woocommerce-variation-add-to-cart .quantity input:disabled {
  border: 1px solid var(--grey);
  color: var(--gold);
}
.product__single .cart .quantity input:hover, .product__single .cart .quantity input:active,
.product__single .woocommerce-variation-add-to-cart .quantity input:hover,
.product__single .woocommerce-variation-add-to-cart .quantity input:active {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.product__single .cart .total-price-output{
    width: max-content;
    margin-top: 12px;
    padding: 6px 12px;
    margin-right: 5px;
    white-space: nowrap;
    height: 50px;
    border: 1px solid var(--main);
    color: var(--main);
    border-radius: 5px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.product__single .cart .button.btn,
.product__single .woocommerce-variation-add-to-cart .button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  height: 50px;
  width: 220px;
  position: relative;
  background-color: var(--main);
  border: none;
  border-radius: 50px;
  border: 1px solid var(--main);
}
.product__single .cart .button.btn.disabled,
.product__single .woocommerce-variation-add-to-cart .button.btn.disabled {
  pointer-events: none;
  background-color: var(--grey);
  border-color: var(--grey);
}
.product__single .cart .button.btn:hover,
.product__single .woocommerce-variation-add-to-cart .button.btn:hover {
  color: var(--white);
  background-color: var(--main_hover);
  border: 1px solid var(--main_hover);
}
.product__single .cart .button.btn:active,
.product__single .woocommerce-variation-add-to-cart .button.btn:active {
  color: var(--white);
  background-color: var(--main_active);
  border: 1px solid var(--main_active);
}
.product__single .variations {
  margin-bottom: 0 !important;
}
.product__single .variations th.label label {
  font-size: 16px;
  font-weight: 500 !important;
  color: var(--dark);
  padding: 0;
}
.product__single .variations .button-variable-items-wrapper .variable-item.button-variable-item.button-variable-item {
  border: 1px solid var(--grey);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50px;
  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;
  height: 40px;
  min-width: 120px;
  margin: 0;
  margin-right: 5px !important;
  margin-bottom: 5px !important;
}
.product__single .variations .button-variable-items-wrapper .variable-item.button-variable-item.button-variable-item .variable-item-span.variable-item-span-button {
  font-size: 18px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  color: var(--grey);
  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;
}
.product__single .variations .button-variable-items-wrapper .variable-item.button-variable-item.button-variable-item.selected {
  border-color: var(--orange);
}
.product__single .variations .button-variable-items-wrapper .variable-item.button-variable-item.button-variable-item.selected .variable-item-span.variable-item-span-button {
  color: var(--orange);
}
.product__single .wishlist {
  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;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: var(--light);
  margin-left: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0;
}
.product__single .wishlist svg {
  width: 20px;
  height: 20px;
}
.product__single .wishlist svg .wish_inner {
  fill: transparent;
}

.product__alert {
  font-size: 14px !important;
}
.product__alert .open__form {
  cursor: pointer;
  text-decoration: underline;
}

.ad_to_wishlist > * {
  pointer-events: none;
}
.ad_to_wishlist.favorite .wish_inner {
  fill: var(--orange) !important;
}

.xoo-wsc-container span.xoo-wsch-items-count {
  border-radius: 50px;
  width: auto;
  min-width: 20px;
  padding: 0 3px;
}
.xoo-wsc-container .xoo-wsc-header {
  margin-bottom: 20px;
}
.xoo-wsc-container .xoo-wsc-header .xoo-wsch-text {
  font-family: "KyivType Serif", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1em;
}
.xoo-wsc-container .xoo-wsc-ft-totals {
  text-align: left;
}
.xoo-wsc-container .xoo-wsc-ft-totals .xoo-wsc-ft-amt-subtotal {
  display: block;
  font-size: 16px;
  color: var(--main);
  font-weight: 600;
  padding-left: 0;
}
.xoo-wsc-container .xoo-wsc-footer-txt {
  text-align: left;
  padding-left: 0;
  display: block;
  font-size: 14px;
  color: var(--main);
}
.xoo-wsc-container .xoo-wsc-ft-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  height: 50px;
  width: 100%;
  position: relative;
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  padding: 0 !important;
}
.xoo-wsc-container .xoo-wsc-ft-btn:hover {
  color: var(--white);
  background-color: var(--orange_hover);
  border: 1px solid var(--orange_hover);
}
.xoo-wsc-container .xoo-wsc-ft-btn:active {
  color: var(--white);
  background-color: var(--orange_active);
  border: 1px solid var(--orange_active);
}
.xoo-wsc-container .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart, .xoo-wsc-container .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue {
  background-color: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
}
.xoo-wsc-container .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:hover, .xoo-wsc-container .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue:hover {
  color: var(--white);
  background-color: var(--orange_hover);
  border: 1px solid var(--orange_hover);
}
.xoo-wsc-container .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:active, .xoo-wsc-container .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue:active {
  color: var(--white);
  background-color: var(--orange_active);
  border: 1px solid var(--orange_active);
}
.xoo-wsc-container .xoo-wsc-sm-right {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.xoo-wsc-container .xoo-wsc-sm-right .xoo-wsc-icon-cross {
  width: 16px;
  height: 16px;
  display: block;
}
.xoo-wsc-container .xoo-wsc-sm-right .xoo-wsc-icon-cross:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/icon_delete_light.svg) no-repeat center;
  pointer-events: none;
}
.xoo-wsc-container .xoo-wsch-new .xoo-wsch-close {
  width: 24px;
  height: 24px;
  display: block;
}
.xoo-wsc-container .xoo-wsch-new .xoo-wsch-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/close_menu.svg) no-repeat center;
}
.xoo-wsc-container .xoo-wsc-product {
  border-radius: 5px;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-pname {
  width: 100%;
  margin-bottom: 12px;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-pname a {
  font-family: "KyivType Serif3";
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-img-col {
  width: 25%;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-img-col a {
  display: block;
  height: 112px;
  border-radius: 5px;
  overflow: hidden;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-img-col a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-sml-qty {
  font-size: 0;
  color: var(--main);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-sml-qty::after {
  content: "x";
  font-size: 24px;
  color: var(--main);
  margin: 0 5px;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-sml-qty span {
  font-size: 24px;
  color: var(--main);
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-priceBox {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-priceBox .xoo-wsc-pprice {
  font-size: 0;
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-priceBox .amount {
  font-size: 24px;
  color: var(--main);
}
.xoo-wsc-container .xoo-wsc-product .xoo-wsc-sm-info .xoo-wsc-sm-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.woocommerce-message {
  border-top-color: var(--main2);
}
.woocommerce-message::before {
  color: var(--main2);
}

.woocommerce-cart .woocommerce-notices-wrapper {
  display: none;
}

.woocommerce .woocommerce-cart-form {
  margin-top: 30px;
}
.woocommerce .woocommerce-cart-form .thead .th {
  font-family: "KyivType Serif3";
  font-size: 16px !important;
  color: var(--main) !important;
  font-weight: 600;
}
.woocommerce .woocommerce-cart-form a.remove {
  font-weight: 400;
  color: var(--grey2) !important;
}
.woocommerce .woocommerce-cart-form .product-thumbnail a {
  display: block;
  height: 112px;
  border-radius: 5px;
  overflow: hidden;
  width: 84px;
}
.woocommerce .woocommerce-cart-form .product-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.woocommerce .woocommerce-cart-form .product-name a {
  font-family: "KyivType Serif3";
  font-size: 16px !important;
  color: var(--main) !important;
  font-weight: 400;
}
.woocommerce .woocommerce-cart-form .product-name a:hover {
  color: var(--main2);
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px 0 3px !important;
  position: relative;
  float: none;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity .qty_wrap p {
  display: block;
  white-space: nowrap;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity p {
  display: none;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity.quantity_hidden .quantity__change {
  left: 64px;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity .quantity__change {
  width: 24px;
  height: 30px;
  position: absolute;
  right: 10px;
  cursor: pointer;
  bottom: 10px;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity .quantity__change button {
  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;
  width: 100%;
  height: 50%;
  color: var(--grey);
  font-size: 12px;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity .quantity__change button:hover {
  color: var(--main);
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity input {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
  width: 90px;
  height: 50px;
  border: 1px solid var(--main);
  color: var(--main);
  border-radius: 5px;
  font-size: 20px;
  padding-left: 15px;
  text-align: left;
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity input:disabled {
  border: 1px solid var(--grey);
  color: var(--gold);
}
.woocommerce .woocommerce-cart-form .product-quantity .quantity input:hover, .woocommerce .woocommerce-cart-form .product-quantity .quantity input:active {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.woocommerce .woocommerce-cart-form .actions .coupon {
  display: none;
}

.woocommerce .woocommerce-cart-form .product-subtotal,
.woocommerce .woocommerce-cart-form .product-price{
    white-space: nowrap;
}
.woocommerce-checkout .product-total-default,
.woocommerce .woocommerce-cart-form .product-total-m2,
.woocommerce .woocommerce-cart-form .product-total-default{
    display: none;
}

.woocommerce .woocommerce-cart-form .actions button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  height: 50px;
  width: 100%;
  position: relative;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 50px;
}
.woocommerce .woocommerce-cart-form .actions button[type=submit]:hover {
  color: var(--white);
  background-color: var(--main_hover);
  border: 1px solid var(--main_hover);
}
.woocommerce .woocommerce-cart-form .actions button[type=submit]:active {
  color: var(--white);
  background-color: var(--main_active);
  border: 1px solid var(--main_active);
}

.woocommerce-cart .cart-collaterals .woocommerce-shipping-totals.shipping {
  display: none;
}
.woocommerce-cart .cart-collaterals .checkout-button.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  height: 50px;
  width: 100%;
  position: relative;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 50px;
}
.woocommerce-cart .cart-collaterals .checkout-button.button:hover {
  color: var(--white);
  background-color: var(--main_hover);
  border: 1px solid var(--main_hover);
}
.woocommerce-cart .cart-collaterals .checkout-button.button:active {
  color: var(--white);
  background-color: var(--main_active);
  border: 1px solid var(--main_active);
}

.woocommerce-checkout .entry-title {
  margin-bottom: 30px;
}
.woocommerce-checkout .checkout__custom h3 {
  font-size: 20px;
  font-family: "KyivType Serif", serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.woocommerce-checkout .checkout__custom .form-row {
  margin-bottom: 20px;
}
.woocommerce-checkout .checkout__custom .form-row.place-order {
  padding: 0 !important;
  margin-bottom: 0;
}
.woocommerce-checkout .checkout__custom .form-row label {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.1em;
}
.woocommerce-checkout .checkout__custom .form-row .input-text {
  height: 50px;
  border-color: var(--grey);
  padding-left: 20px;
}
.woocommerce-checkout .checkout__custom .form-row textarea.input-text {
  padding-top: 20px;
  height: 120px;
}
.woocommerce-checkout .checkout__custom .woocommerce-additional-fields h3 {
  font-size: 20px;
  font-family: "KyivType Serif", serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1em;
  margin-bottom: 20px;
}
.woocommerce-checkout .checkout__custom #payment {
  background-color: transparent;
  padding: 0;
}
.woocommerce-checkout .checkout__custom #payment .wc_payment_methods {
  margin-bottom: 30px;
  padding: 0 !important;
  border: none;
}
.woocommerce-checkout .checkout__custom #payment .wc_payment_methods li {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.woocommerce-checkout .checkout__custom #payment .wc_payment_methods li:last-child {
  margin-bottom: 0;
}
.woocommerce-checkout .checkout__custom #payment .wc_payment_methods li .payment_box {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: 24px;
  background: transparent;
}
.woocommerce-checkout .checkout__custom #payment .wc_payment_methods li .payment_box::after, .woocommerce-checkout .checkout__custom #payment .wc_payment_methods li .payment_box:before {
  display: none;
}
.woocommerce-checkout .checkout__custom #payment .wc_payment_methods li .payment_box p {
  font-size: 12px;
  color: var(--grey2);
}
.woocommerce-checkout .checkout__custom .wc_payment_methods,
.woocommerce-checkout .checkout__custom .woocommerce-shipping-methods {
  margin-bottom: 20px;
}
.woocommerce-checkout .checkout__custom .wc_payment_methods li,
.woocommerce-checkout .checkout__custom .woocommerce-shipping-methods li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-checkout .checkout__custom .wc_payment_methods li input,
.woocommerce-checkout .checkout__custom .woocommerce-shipping-methods li input {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  border: 1px solid var(--grey2);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 !important;
  margin-right: 8px !important;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  background-color: transparent;
}
.woocommerce-checkout .checkout__custom .wc_payment_methods li input:checked,
.woocommerce-checkout .checkout__custom .woocommerce-shipping-methods li input:checked {
  background-color: var(--orange);
  -webkit-box-shadow: inset 0 0 0 2px var(--white);
          box-shadow: inset 0 0 0 2px var(--white);
  border: 1px solid var(--orange);
}
.woocommerce-checkout .checkout__custom .wc_payment_methods li label,
.woocommerce-checkout .checkout__custom .woocommerce-shipping-methods li label {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}
.woocommerce-checkout .checkout__custom .checkout__total {
  padding: 40px;
  background-color: var(--light);
  border-radius: 10px;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table {
  border: none;
  border-bottom: 1px solid var(--grey);
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tr {
  border-color: transparent;
  border: none;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table td {
  padding-left: 0;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table thead th {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  padding-left: 0;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tbody .product-name {
  font-size: 14px;
  font-family: "KyivType Serif", serif;
  line-height: 1.1em;
}

.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tbody .cart_item .product-total .amount {
  font-size: 18px;
  font-weight: 400;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot th {
  font-size: 14px;
  font-family: "KyivType Serif", serif;
  line-height: 1.1em;
  font-weight: 300;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot td {
  padding-left: 0;
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot .cart-discount td.amount {
  color: var(--orange);
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot .cart-discount .woocommerce-remove-coupon {
  color: var(--orange_active);
}
.woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot .order-total th {
  font-family: "Manrope", sans-serif !important;
  font-weight: 600;
  font-size: 18px;
}
.woocommerce-checkout .checkout__custom .checkout__total .checkout__coupon .form-row-first {
  width: 100%;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .checkout__custom .checkout__total .checkout__coupon .form-row-last {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.woocommerce-checkout .checkout__custom .checkout__total .checkout__coupon .form-row-last [name=apply_coupon] {
  cursor: pointer;
  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;
  width: 30px;
  height: 30px;
}
.woocommerce-checkout .checkout__custom .checkout__total .checkout__coupon .form-row-last [name=apply_coupon] img {
  pointer-events: none;
}
.woocommerce-checkout .checkout__custom .woocommerce-privacy-policy-text {
  margin-bottom: 20px;
}
.woocommerce-checkout .checkout__custom .woocommerce-privacy-policy-text p {
  font-size: 14px;
  color: var(--grey2);
}
.woocommerce-checkout .checkout__custom .woocommerce-privacy-policy-text p a {
  color: var(--main);
  font-weight: 500;
  text-decoration: underline;
}
.woocommerce-checkout .checkout__custom .woocommerce-privacy-policy-text p a:hover {
  color: var(--main2);
}
.woocommerce-checkout .checkout__custom #place_order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-weight: 500;
  height: 50px;
  width: 100%;
  position: relative;
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
}
.woocommerce-checkout .checkout__custom #place_order:hover {
  color: var(--white);
  background-color: var(--orange_hover);
  border: 1px solid var(--orange_hover);
}
.woocommerce-checkout .checkout__custom #place_order:active {
  color: var(--white);
  background-color: var(--orange_active);
  border: 1px solid var(--orange_active);
}

@media screen and (max-width: 1520px) {
  .product__single .cart .quantity p,
  .product__single .woocommerce-variation-add-to-cart .quantity p {
    font-size: 15px;
  }
  .product__single .cart .quantity,
  .product__single .woocommerce-variation-add-to-cart .quantity {
    margin: 0 15px 0 3px !important;
  }
    .product__single .cart,
    .product__single .woocommerce-variation-add-to-cart {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px 0;
    }
}
@media screen and (max-width: 1199px) {
    .product__single .cart, .product__single .woocommerce-variation-add-to-cart{
        align-items: center;
    }
  .product__single .product__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .product__single p.price {
    margin-bottom: 15px;
  }
  .product__single p.price span {
    font-size: 28px;
  }
  .product__single p.price del span {
    font-size: 20px;
  }
  .product__single .main__slider_wrap .main__slider {
    height: 570px;
  }
  .product__single .thumbnail__slider_wrap .thumbnail__slider {
    height: 490px;
  }
  .product__single .cart > p,
  .product__single .woocommerce-variation-add-to-cart > p {
    margin-bottom: 10px;
  }
  .product__single .cart .quantity,
  .product__single .woocommerce-variation-add-to-cart .quantity {
    margin-right: 20px !important;
    margin-bottom: 10px !important;
  }
  .product__single .cart .quantity input,
  .product__single .woocommerce-variation-add-to-cart .quantity input {
    width: 70px;
    padding-left: 10px;
    height: 50px;
  }
  .product__single .woocommerce-variation-add-to-cart .quantity .quantity__change {
    right: 0;
  }
  .product__single .product__attr_item {
    font-size: 18px;
  }
  .product__single .cart .quantity.quantity_hidden .quantity__change,
  .product__single .woocommerce-variation-add-to-cart .quantity.quantity_hidden .quantity__change {
    left: 48px;
  }
}
@media screen and (max-width: 991px) {
    .product__single .cart .total-price-output{
        margin-right: 30px;
    }
  .product__single .thumbnail__slider_wrap .thumbnail__slider {
    margin-bottom: 15px;
  }
  .product__single .thumbnail__slider_wrap .thumbnail__slider {
    height: 420px;
  }
  .product__single .main__slider_wrap .main__slider {
    height: 500px;
  }
  .checkout__billing {
    padding-top: 0;
  }
  .product__single .cart .quantity,
  .product__single .woocommerce-variation-add-to-cart .quantity {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .product__single .thumbnail__slider_wrap .thumbnail__slider {
    height: 90px;
    width: 90%;
    margin: 0 auto;
  }
  .product__single .thumbnail__slider_wrap {
    position: relative;
  }
  .product__single .thumbnail__slider_wrap .swiper__arrow {
    width: 30px;
    height: 60px;
    top: -210px;
    position: absolute;
  }
  .product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_left {
    left: 12px;
  }
  .product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_left svg {
    -webkit-transform: none;
            transform: none;
  }
  .product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_right {
    position: absolute;
    right: 12px;
  }
  .product__single .thumbnail__slider_wrap .swiper__arrow.swiper__arrow_right svg {
    -webkit-transform: none;
            transform: none;
  }
  .product__single .thumbnail__slider_wrap {
    width: 100%;
    margin-bottom: 15px;
  }
  .product__single .main__slider_wrap {
    width: 100%;
  }
  .product__single .main__slider_wrap .main__slider {
    width: 340px;
    margin: 0 auto 15px;
    height: 340px;
  }
  .woocommerce .woocommerce-cart-form .product-quantity .quantity {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .woocommerce .woocommerce-cart-form .product-quantity .quantity .quantity__change {
    left: 64px;
  }
  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    float: none;
  }
  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    text-align: left !important;
  }
  .product__single .variations .button-variable-items-wrapper .variable-item.button-variable-item.button-variable-item {
    height: 30px;
    min-width: 100px;
  }
  .product__single .variations .button-variable-items-wrapper .variable-item.button-variable-item.button-variable-item .variable-item-span.variable-item-span-button {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
    .product__single .cart .total-price-output{
        height: 40px;
        margin-top: 0;
        margin-right: 0;
    }
  .product__single .main__slider_wrap .main__slider {
    width: calc(100% - 80px);
    margin: 0 auto 25px;
    height: 340px;
  }
  .product__single .product__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .product__single .cart,
  .product__single .woocommerce-variation-add-to-cart {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product__single .cart .quantity,
  .product__single .woocommerce-variation-add-to-cart .quantity {
    display: block;
    margin-bottom: 20px !important;
  }
  .product__single .cart .quantity.quantity_hidden,
  .product__single .woocommerce-variation-add-to-cart .quantity.quantity_hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product__single .cart .quantity.quantity_hidden .quantity__change,
  .product__single .woocommerce-variation-add-to-cart .quantity.quantity_hidden .quantity__change {
    bottom: 6px;
  }
  .product__single .cart .quantity input,
  .product__single .woocommerce-variation-add-to-cart .quantity input {
    height: 40px;
    font-size: 20px;
  }
  .product__single .cart .quantity .quantity__change,
  .product__single .woocommerce-variation-add-to-cart .quantity .quantity__change {
    top: auto;
    bottom: 10px;
  }
  .product__single .cart .quantity > p,
  .product__single .woocommerce-variation-add-to-cart .quantity > p {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .product__single .cart .btn_wrap,
  .product__single .woocommerce-variation-add-to-cart .btn_wrap {
    width: 100%;
  }
  .product__single .cart .quantity .quantity__change,
  .product__single .woocommerce-variation-add-to-cart .quantity .quantity__change,
  .product__single .cart .quantity.quantity_hidden .quantity__change,
  .product__single .woocommerce-variation-add-to-cart .quantity.quantity_hidden .quantity__change {
    bottom: 6px;
    left: 48px;
  }
  .product__single p.price span {
    font-size: 24px;
  }
  .product__single p.price del span {
    font-size: 14px;
  }
  .product__single .main__slider_wrap .swiper-slide .product__zoom {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
  .product__single .main__slider_wrap .swiper-slide .product__zoom svg {
    width: 20px;
    height: 20px;
  }
  .xoo-wsc-container .xoo-wsc-ft-btn {
    font-size: 14px;
    height: 36px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xoo-wsc-container .xoo-wsc-product .xoo-wsc-sml-qty span,
  .xoo-wsc-container .xoo-wsc-product .xoo-wsc-sml-qty::after,
  .xoo-wsc-container .xoo-wsc-product .xoo-wsc-priceBox .amount {
    font-size: 16px;
  }
  .woocommerce-checkout .checkout__custom .woocommerce-billing-fields__field-wrapper .form-row.form-row-last, .woocommerce-checkout .checkout__custom .woocommerce-billing-fields__field-wrapper .form-row.form-row-first {
    float: none;
    width: 100%;
  }
  .woocommerce-checkout .checkout__custom .form-row .input-text {
    font-size: 14px;
    height: 36px;
  }
  .woocommerce-checkout .checkout__custom .form-row .input-text::-webkit-input-placeholder {
    font-size: 14px;
  }
  .woocommerce-checkout .checkout__custom .form-row .input-text::-moz-placeholder {
    font-size: 14px;
  }
  .woocommerce-checkout .checkout__custom .form-row .input-text:-ms-input-placeholder {
    font-size: 14px;
  }
  .woocommerce-checkout .checkout__custom .form-row .input-text::-ms-input-placeholder {
    font-size: 14px;
  }
  .woocommerce-checkout .checkout__custom .form-row .input-text::placeholder {
    font-size: 14px;
  }
  .woocommerce-checkout .checkout__custom .woocommerce-shipping-methods,
  .woocommerce-checkout .checkout__custom .woocommerce-billing-fields__field-wrapper {
    margin-bottom: 12px;
  }
  .woocommerce-checkout .checkout__custom .checkout__total {
    padding: 30px 12px;
    margin: 0 -12px;
    border-radius: 0;
  }
  .woocommerce-checkout .checkout__custom .checkout__total .checkout__coupon .form-row-last {
    top: 0;
  }
  .woocommerce-checkout .checkout__custom .checkout__total .checkout__coupon .form-row-last img {
    width: 20px;
    height: auto;
  }
  .woocommerce-checkout .checkout__custom h3 {
    margin-bottom: 15px;
  }
  .woocommerce-checkout .checkout__custom .form-row {
    margin-bottom: 8px;
  }
  .woocommerce-checkout .checkout__custom .form-row textarea.input-text {
    padding-top: 10px;
  }
  .woocommerce-checkout .checkout__custom #place_order {
    height: 36px;
    font-size: 14px;
  }
  .woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table thead th {
    font-size: 16px;
  }
  .woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tbody .cart_item .product-total .amount {
    font-size: 16px;
  }
  .woocommerce-checkout .checkout__custom .checkout__total .shop_table.woocommerce-checkout-review-order-table tfoot .order-total th {
    font-size: 14px;
  }
  .product__single .product__attr_item {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .product__single .product__sku {
    font-size: 14px;
  }
  .price_dorizky {
    font-size: 14px;
    font-weight: 400;
  }
  .product__single .variations th.label label,
  .product__single .cart .quantity p,
  .product__single .woocommerce-variation-add-to-cart .quantity p {
    font-size: 14px;
    font-weight: 500 !important;
  }
  .product__single .reset_variations {
    font-size: 14px !important;
  }
  .woocommerce div.product p.stock {
    font-size: 14px !important;
  }
  .woocommerce p.custom-stock-status,
  .woocommerce p.stock {
    font-size: 14px !important;
  }
}
[data-tabcontent] {
  position: absolute;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  width: initial;
  max-width: 100%;
  top: 0;
}
[data-tabcontent].active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: all;
}

.product_about .product_about__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  font-weight: 500;
  color: var(--grey2);
  border-bottom: 1px solid transparent;
  margin-right: 22px;
  text-align: center;
}
.product_about .product_about__tab:last-child {
  margin-right: 0;
}
.product_about .product_about__tab:hover, .product_about .product_about__tab.active {
  border-color: var(--main);
  color: var(--main);
}
.product_about .text__content p,
.product_about .text__content li {
  margin-bottom: 0.5em;
}
.product_about .text__content p:last-child,
.product_about .text__content li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .product_about .product_about__tab {
    width: auto;
    padding: 0 10px;
    height: 38px;
    margin-right: 8px;
    font-size: 16px;
  }
  .text__content p,
  .text__content li {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .product_about .product_about__tab {
    font-size: clamp(8px, 3.5vw, 14px);
  }
  .text__content p,
  .text__content li {
    font-size: 14px;
  }
}
.onsale {
  display: none;
}

.product__card {
  border-radius: 15px;
  border: 1px solid var(--border_c);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
  position: relative;
}
.product__card:hover {
  border-color: var(--main2);
}
.product__card:hover .product__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__card > .woocommerce-loop-product__link {
  height: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product__card .product__thumb {
  height: 290px;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.product__card .product__thumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.product__card .woocommerce-loop-product__link .woocommerce-loop-product__title,
.product__card .product__name {
  font-family: "KyivType Serif Light3";
  font-size: 14px;
  line-height: 1.15em;
  color: var(--dark);
  margin-bottom: 14px;
  width: calc(100% - 25px);
  font-weight: 300;
}
.product__card .price,
.product__card .woocommerce-loop-product__link .price,
.product__card .product__price {
  font-size: 24px !important;
  color: var(--main) !important;
  margin-bottom: 0 !important;
  margin-top: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  font-weight: 400 !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__card .price .price,
.product__card .woocommerce-loop-product__link .price .price,
.product__card .product__price .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0 !important;
  margin-top: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__card .price ins,
.product__card .woocommerce-loop-product__link .price ins,
.product__card .product__price ins {
  text-decoration: none;
  font-weight: 400 !important;
}
.product__card .price del,
.product__card .woocommerce-loop-product__link .price del,
.product__card .product__price del {
  padding-left: 15px;
  font-size: 18px;
  color: var(--grey);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.product__card .wishlist {
  width: 20px;
  height: 20px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: 12px;
  top: 316px;
  z-index: 3;
}
.product__card .wishlist svg {
  pointer-events: none;
  width: 20px;
  height: 20px;
  display: block;
}
.product__card .wishlist path.wish_inner {
  fill: transparent;
}
.product__card .wishlist:hover path.wish_inner {
  fill: var(--main2);
}
.product__card .berocket_better_labels {
  position: absolute !important;
  left: 0px !important;
  top: 0px !important;
  padding: 10px !important;
}
.product__card .berocket_better_labels .berocket_better_labels_position {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.product__card .berocket_better_labels .berocket_better_labels_line {
  margin-right: 6px !important;
  margin-bottom: 6px !important;
}
.product__card div.br_alabel > span,
.product__card .sale__label {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  height: 23px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding: 0 20px !important;
  color: var(--white) !important;
  font-size: 12px !important;
  text-transform: none;
  font-weight: 500 !important;
  border: 1px solid var(--white) !important;
  border-radius: 50px !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(5px) !important;
  margin: 0 !important;
}
.product__card .button {
  display: none !important;
}
.product_cards .swiper-container .swiper-slide {
  height: auto;
}

.shop_wrap ul.products li.product.product-category {
  padding: 15px !important;
  border-radius: 20px;
  border: 1px solid var(--white);
  background-color: rgba(55, 55, 55, 0.2);
  backdrop-filter: blur(5px);
  text-align: center;
}
.shop_wrap ul.products li.product.product-category .woocommerce-loop-category__title {
  font-family: "KyivType Serif";
  font-weight: 300;
  font-size: 18px;
  color: var(--white);
}
.shop_wrap ul.products li.product.product-category .woocommerce-loop-category__title .count {
  background-color: transparent;
  font-weight: 600;
  color: var(--white);
}
.shop_wrap ul.products li.product.product-category a img {
  border-radius: 10px;
  display: block;
  width: 100%;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.shop_wrap ul.products li.product.product-category a:hover img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tax_page.simple_text.bg__style {
  padding-top: 80px;
  padding-bottom: 50px;
}
.tax_page .tax__subtitle {
  font-size: 24px;
}
.tax_page .tax__list.tax__list_first {
  padding: 0 15px 0 80px;
}
.tax_page .tax__list.tax__list_second {
  margin-top: -26px;
}
.tax_page .tax__list.tax__list_second .tax__list_item:nth-child(even) {
  margin-top: -15px;
}
.tax_page .tax__list .tax__list_item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0 24px;
  border-radius: 25px;
  height: 40px;
  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;
  text-align: center;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  margin-bottom: 0;
}
.tax_page .tax__list .tax__list_item:nth-child(even) {
  margin-left: auto;
}

.filter__wrap .filter__close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 25px;
  height: 25px;
  background: url(../img/close_menu.svg) no-repeat center/contain;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  outline: none;
  cursor: pointer;
}
.filter__wrap .wpfFilterWrapper {
  border-bottom: 1px solid var(--light);
  margin-bottom: 12px;
}
.filter__wrap .wpfFilterWrapper .wpfPriceInputs {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  margin-left: -10px !important;
  margin-top: 15px !important;
}
.filter__wrap .wpfFilterWrapper .wpfCurrencySymbol {
  font-size: 14px;
  color: var(--main);
}
.filter__wrap .wpfFilterWrapper .wpfPriceRangeField#wpfMinPrice,
.filter__wrap .wpfFilterWrapper .wpfPriceRangeField#wpfMaxPrice {
  font-size: 14px;
  height: 20px;
  border: 1px solid var(--orange);
  color: var(--orange);
  border-radius: 2px;
}
.filter__wrap .wpfFilterWrapper .wpfFilterDelimeter {
  font-size: 14px;
  color: var(--orange);
}
.filter__wrap .wpfFilterWrapper .wfpTitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--main);
}
.filter__wrap .wpfFilterWrapper .wpfTitleToggle.fa:before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
}
.filter__wrap .wpfFilterWrapper .wpfTitleToggle.fa.fa-minus:before {
  background: url(../img/filter_item_arrow_open.svg) no-repeat center/100%;
}
.filter__wrap .wpfFilterWrapper .wpfTitleToggle.fa.fa-plus:before {
  background: url(../img/filter_item_arrow.svg) no-repeat center/100%;
}
.filter__wrap .wpfFilterButtons {
  display: block;
}
.filter__wrap .wpfFilterButtons .wpfButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  min-height: 35px;
  height: 35px;
  width: 100%;
  position: relative;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 50px;
  color: var(--main2);
  background-color: transparent;
  border: 1px solid var(--main2);
}
.filter__wrap .wpfFilterButtons .wpfButton:hover {
  color: var(--orange);
  background-color: var(--icon_hover);
  border: 1px solid var(--orange);
}
.filter__wrap .wpfFilterButtons .wpfButton:active {
  color: var(--white);
  background-color: var(--orange);
  border: 1px solid var(--orange);
}
.filter__wrap .wpfFilterWrapper .wpfCheckbox label {
  width: 12px !important;
  height: 12px !important;
}
.filter__wrap .wpfFilterWrapper .wpfCheckbox label::before {
  border: 1px solid var(--grey) !important;
  border-radius: 1px;
}
.filter__wrap .wpfFilterWrapper .wpfCheckbox input[type=checkbox]:checked + label::before {
  background: url(../img/filtre_check.svg) !important;
  background-size: 100% 100% !important;
  border: 1px solid var(--orange) !important;
}
.filter__wrap .wpfFilterWrapper .wpfFilterTaxNameWrapper {
  font-size: 14px !important;
  color: var(--grey) !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.filter__wrap .wpfFilterWrapper .wpfFilterTaxNameWrapper:hover {
  color: var(--orange) !important;
}
.filter__wrap .wpfFilterWrapper .wpfDisplay.active .wpfFilterTaxNameWrapper {
  color: var(--orange) !important;
}
.filter__wrap .ui-slider.ui-widget-content .ui-slider-handle {
  border-radius: 50%;
  background-color: var(--main2);
  border: 1px solid var(--main2) !important;
  outline: none;
}
.filter__wrap .ui-slider.ui-widget-content .ui-slider-handle:hover, .filter__wrap .ui-slider.ui-widget-content .ui-slider-handle:active {
  outline: none;
  border: 1px solid var(--orange) !important;
}
.filter__wrap .ui-slider.ui-widget-content:not(.iris-slider-offset) {
  border: 1px solid var(--main2) !important;
  border-radius: 20px;
  margin-top: 0 !important;
  margin-bottom: 5px;
}
.filter__wrap .wpfPriceInputs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.text__content .woocommerce ul li:before {
  display: none;
}

.woocommerce .products ul,
.woocommerce ul.products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -6px;
  height: auto;
}
.woocommerce .products ul.swiper-wrapper,
.woocommerce ul.products.swiper-wrapper {
  width: auto;
}

.swiper__wrapper .woocommerce {
  overflow: hidden;
}
.swiper__wrapper .woocommerce ul.products.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 !important;
  height: 100%;
}
.swiper__wrapper .woocommerce ul.products.swiper-wrapper li.product {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
  width: 33.3333333333%;
  padding: 0 6px;
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
}

.woocommerce .product_list_filter ul.products.columns-4 li.product,
.woocommerce-page .product_list_filter ul.products.columns-4 li.product {
  width: 33.3333333333%;
}

.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product {
  width: 25%;
  padding: 0 6px;
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
}

.product_list .tax__top .tax_sale {
  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;
  background-color: var(--light);
  border-radius: 5px;
  color: var(--grey2);
  height: 35px;
  font-size: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
}
.product_list .tax__top .tax_sale:hover {
  color: var(--white);
  background-color: var(--main2);
}
.product_list .tax__top .woocommerce-notices-wrapper {
  display: none;
}
.product_list .tax__top .woocommerce-result-count {
  display: none;
}

.woocommerce-ordering {
  width: 188px;
}
.woocommerce-ordering select {
  width: 100%;
  height: 35px;
  font-size: 16px;
  color: var(--main);
  background-color: var(--light);
  border-radius: 5px;
  border: none;
  padding-left: 5px;
  color: var(--grey2);
  -webkit-transition: all 0.4se ease;
  transition: all 0.4se ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.woocommerce-ordering select:hover, .woocommerce-ordering select:focus {
  color: var(--main);
}
.woocommerce-ordering select option:hover {
  background-color: var(--main2);
  color: white;
  font-size: 12px;
}
.woocommerce-ordering .ui-selectmenu-button {
  width: 100%;
  height: 35px;
  font-size: 16px;
  color: var(--main);
  background-color: var(--light);
  border-radius: 5px;
  border: none;
  padding-left: 0;
  color: var(--grey2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-ordering .ui-selectmenu-button .ui-selectmenu-text {
  margin: 0;
  padding: 0 20px 0 8px;
  border: none;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.woocommerce-ordering .ui-selectmenu-button:hover {
  color: var(--main);
  border: none;
}
.woocommerce-ordering .ui-selectmenu-button:hover span.ui-icon {
  opacity: 1;
}
.woocommerce-ordering .ui-selectmenu-button.ui-selectmenu-button-open {
  color: var(--main);
}
.woocommerce-ordering .ui-selectmenu-button.ui-selectmenu-button-open span.ui-icon {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  opacity: 1;
}
.woocommerce-ordering .ui-selectmenu-button span.ui-icon {
  width: 16px;
  height: 16px;
  right: 10px;
  background: url(../img/order_icon.svg) no-repeat center !important;
  opacity: 0.7;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  float: none;
  position: absolute;
  left: auto;
}
.woocommerce-ordering select:not(:-internal-list-box):not([multiple]) option:hover,
.woocommerce-ordering select:not(:-internal-list-box):not([multiple]) option:enabled:hover {
  background-color: var(--main2); /* Зеленый фон при наведении */
}

.ui-selectmenu-menu.ui-selectmenu-open {
  z-index: 555;
}

#ui-id-1-menu.ui-menu {
  width: 188px;
  padding: 4px 6px;
}
#ui-id-1-menu.ui-menu .ui-menu-item {
  padding: 0;
}
#ui-id-1-menu.ui-menu .ui-menu-item:hover {
  border: none;
  font-weight: 400;
  margin: 0;
}
#ui-id-1-menu.ui-menu .ui-menu-item:hover .ui-menu-item-wrapper {
  background: var(--main2);
  color: var(--white);
  border: none;
  font-weight: 400;
  margin: 0;
}
#ui-id-1-menu.ui-menu .ui-menu-item .ui-menu-item-wrapper {
  background-color: transparent;
  color: var(--main);
  font-size: 12px;
  padding: 5px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 3px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: none;
  font-weight: 400;
}
#ui-id-1-menu.ui-menu .ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  background: var(--main2);
  color: var(--white);
  border: none;
  margin: 0;
}

.checkout__custom .woocommerce-form-coupon-toggle .woocommerce-info {
  display: none !important;
}
.checkout__custom ~ .woocommerce-form-coupon-toggle {
  display: none;
}
.checkout__custom ~ .checkout_coupon {
  display: none;
}
.checkout__custom ~ .woocommerce-notices-wrapper {
  display: none;
}
.checkout__custom ~ .checkout_coupon.woocommerce-form-coupon {
  display: none !important;
}
.checkout__custom ~ .checkout.woocommerce-checkout {
  display: none;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  margin: 0 3px;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li a {
  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;
  padding: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--main2);
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover {
  background-color: var(--light);
  color: var(--main2);
}
.woocommerce nav.woocommerce-pagination ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--main2);
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
}
.woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li span:focus, .woocommerce nav.woocommerce-pagination ul li span:hover {
  background-color: var(--light);
  color: var(--main2);
}

@media screen and (max-width: 1439px) {
  .product__card .woocommerce-loop-product__link .price,
  .product__card .product__price {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 1199px) {
  .woocommerce .product_list_filter ul.products.columns-4 li.product,
  .woocommerce-page .product_list_filter ul.products.columns-4 li.product {
    width: 50%;
  }
  .woocommerce-page .product_list .filter_eneble ul.products.columns-3 li.product,
  .woocommerce .product_list .filter_eneble ul.products.columns-3 li.product {
    width: 50%;
    padding: 0 6px;
    margin: 0 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: 33%;
  }
  .tax_page .tax__subtitle {
    margin-bottom: 10px;
  }
  .tax_page .tax__list.tax__list_first {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: 50%;
  }
  .filter__open {
    width: 35px;
    height: 35px;
    background-color: var(--orange);
    cursor: pointer;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 3px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .filter__open > * {
    pointer-events: none;
  }
  .filter__open:hover {
    background-color: var(--orange_active);
  }
  .filter__wrap {
    width: 100%;
    height: 100dvh;
    max-width: 300px;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background-color: var(--white);
    padding-top: 45px;
    padding-bottom: 40px;
    overflow-y: auto;
    left: -100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .filter__wrap.open_filter {
    left: 0;
  }
  .tax_page .tax__subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .tax_page .tax__list .tax__list_item {
    font-size: 18px;
  }
  .tax_page .tax__list.tax__list_first {
    padding: 0;
    margin-bottom: 10px;
  }
  .tax_page .tax__list.tax__list_first .tax__list_item:last-child {
    margin-top: 24px;
  }
  .tax_page .tax__list.tax__list_second {
    margin-top: 0;
    padding: 0;
  }
  .tax_page .tax__list.tax__list_second .tax__list_item:nth-child(even) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .tax_page .tax__subtitle {
    font-size: 16px;
  }
  .product__card .price,
  .product__card .woocommerce-loop-product__link .price,
  .product__card .product__price {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 576px) {
  .tax_page .tax__subtitle {
    font-size: clamp(14px, 3.5vw, 3.5vw);
  }
  .tax_page .tax__list .tax__list_item {
    font-size: 12px;
    height: 32px;
  }
  .filter__open {
    width: 28px;
    height: 28px;
  }
  .product_list .tax__top .tax_sale {
    height: 28px;
    font-size: 12px;
    padding: 0 8px;
  }
  .woocommerce-ordering .ui-selectmenu-button {
    height: 28px;
    font-size: 12px;
    font-size: 12px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis ellipsis;
  }
  .woocommerce-ordering {
    width: 128px;
  }
  .woocommerce-ordering select {
    height: 28px;
    font-size: 12px;
    padding: 0 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis ellipsis;
  }
  .woocommerce-ordering .ui-selectmenu-button span.ui-icon {
    right: 5px;
    background-size: 14px !important;
  }
  .accesuar .product__card .product__thumb,
  .product_cards .product__card .product__thumb {
    height: 66vw;
  }
  .accesuar .product__card .wishlist,
  .product_cards .product__card .wishlist {
    top: calc(66vw + 20px);
  }
  .product_list .product__card .product__thumb {
    height: clamp(220px, 43vw, 266px);
  }
  .product_list .product__card .wishlist {
    top: clamp(238px, 44vw + 20px, 286px);
  }
  .woocommerce-page .product_list ul.products li.product .product__card .product__thumb,
  .woocommerce .product_list ul.products li.product .product__card .product__thumb {
    height: clamp(220px, 43vw, 266px);
  }
  .woocommerce-page .product_list ul.products li.product .product__card .wishlist,
  .woocommerce .product_list ul.products li.product .product__card .wishlist {
    top: clamp(238px, 44vw + 20px, 286px);
  }
  .product__card {
    padding: 12px;
  }
  .product__card .woocommerce-loop-product__link .woocommerce-loop-product__title,
  .product__card .product__name {
    font-size: 3.8vw !important;
  }
  .product__card .price .price,
  .product__card .woocommerce-loop-product__link .price .price,
  .product__card .product__price .price,
  .product__card .woocommerce-loop-product__link .price,
  .product__card .product__price {
    font-size: 3.7vw !important;
  }
  .product__card .woocommerce-loop-product__link .price del,
  .product__card .product__price del {
    font-size: 3.3vw !important;
  }
  .product__card div.br_alabel > span,
  .product__card .sale__label {
    height: 20px !important;
    font-size: 10px !important;
    padding: 0 8px !important;
  }
}
.thankyou_order .entry-title {
  font-weight: 500;
}
.thankyou_order .woocommerce .woocommerce-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thankyou_order .woocommerce ul.order_details {
  width: 48%;
  display: block;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thankyou_order .woocommerce ul.order_details + p {
  display: none;
}
.thankyou_order .woocommerce ul.order_details li {
  float: none;
  margin-bottom: 8px;
  margin-right: 0;
  border-right: none;
  width: 50%;
  padding-right: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2em;
  text-transform: none;
}
.thankyou_order .woocommerce ul.order_details li strong {
  font-weight: 300;
  font-size: 14px;
  color: var(--grey2);
  display: block;
  padding-top: 15px;
}
.thankyou_order .woocommerce .woocommerce-notice.woocommerce-notice--success {
  height: 0;
  overflow: hidden;
  width: 100%;
}
.thankyou_order .woocommerce .woocommerce-order-details {
  display: none;
}
.thankyou_order .woocommerce .woocommerce-customer-details {
  width: 48%;
}
.thankyou_order .woocommerce .woocommerce-customer-details .woocommerce-column__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.thankyou_order .woocommerce .woocommerce-customer-details address {
  font-size: 14px;
  color: var(--grey2);
  padding: 0;
  border: none;
}
.thankyou_order .thankyou_order__text b {
  font-weight: 600;
}
.thankyou_order .thankyou_order__callback {
  border-radius: 10px;
  padding: 60px 100px;
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio {
  margin-bottom: 25px;
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio .wpcf7-list-item {
  margin: 0 20px !important;
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio label input {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  border: 1px solid var(--grey2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 !important;
  margin-right: 8px !important;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  background-color: transparent;
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio label input:checked {
  background-color: var(--orange);
  -webkit-box-shadow: inset 0 0 0 2px var(--white);
          box-shadow: inset 0 0 0 2px var(--white);
  border: 1px solid var(--orange);
}
.thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio label .wpcf7-list-item-label {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}
.thankyou_order .thankyou_order__callback .form__wrap .input__group .order__input.order__input_message {
  max-width: 580px;
  margin: 0 auto;
  font-size: 14px;
  padding: 14px 20px;
  height: 140px;
}
.thankyou_order .thankyou_order__callback .form__wrap .input__group .order__input.order__input_message::-webkit-input-placeholder {
  font-size: 14px;
}
.thankyou_order .thankyou_order__callback .form__wrap .input__group .order__input.order__input_message::-moz-placeholder {
  font-size: 14px;
}
.thankyou_order .thankyou_order__callback .form__wrap .input__group .order__input.order__input_message:-ms-input-placeholder {
  font-size: 14px;
}
.thankyou_order .thankyou_order__callback .form__wrap .input__group .order__input.order__input_message::-ms-input-placeholder {
  font-size: 14px;
}
.thankyou_order .thankyou_order__callback .form__wrap .input__group .order__input.order__input_message::placeholder {
  font-size: 14px;
}
.thankyou_order .thankyou_order__callback .form__wrap .btn {
  max-width: 230px;
}
.thankyou_order .success__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
}
.thankyou_order .success__icon img {
  width: 110px;
  height: auto;
}

@media screen and (max-width: 1439px) {
  .thankyou_order .thankyou_order__text {
    font-size: 20px;
  }
  .thankyou_order .thankyou_order__callback {
    padding: 50px 80px;
  }
}
@media screen and (max-width: 1199px) {
  .thankyou_order .thankyou_order__callback {
    padding: 40px 80px;
  }
  .thankyou_order .thankyou_order__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .thankyou_order .thankyou_order__callback {
    padding: 30px 36px;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .thankyou_order__label {
    font-size: 14px;
    text-align: left;
    width: 200px;
    margin: 0 auto;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio label .wpcf7-list-item-label {
    font-size: 14px;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .inputs__radio {
    width: 200px;
    margin: 0 auto;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .inputs__radio .wpcf7-radio .wpcf7-list-item {
    margin: 0 15px 0 0 !important;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .inputs__radio.inputs__radio_place .wpcf7-radio {
    display: block;
  }
  .thankyou_order .thankyou_order__callback .form__wrap .inputs__radio.inputs__radio_place .wpcf7-radio .wpcf7-list-item {
    margin: 0 !important;
  }
  .thankyou_order .thankyou_order__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .thankyou_order .success__icon img {
    width: 50px;
    height: auto;
  }
  .thankyou_order .thankyou_order__text {
    font-size: 14px;
  }
  .thankyou_order .woocommerce .woocommerce-customer-details,
  .thankyou_order .woocommerce ul.order_details {
    width: 100%;
  }
  .thankyou_order .woocommerce .woocommerce-customer-details .woocommerce-column__title {
    margin-bottom: 10px;
  }
  .thankyou_order .woocommerce .woocommerce-customer-details .woocommerce-column__title,
  .thankyou_order .woocommerce ul.order_details li {
    font-size: 14px;
  }
  .thankyou_order .woocommerce ul.order_details li strong {
    padding-top: 4px;
  }
  .thankyou_order .woocommerce ul.order_details {
    margin-bottom: 10px;
  }
}
.accesuar .swiper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accesuar .swiper__arrow {
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.accesuar .swiper__pag {
  padding-top: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.accesuar .viewed__swiper {
  margin-bottom: 30px;
}
.accesuar .viewed__swiper .swiper-slide {
  height: auto;
}
.accesuar .accesuar__btn {
  width: 240px;
}

@media screen and (min-width: 992px) {
  .accesuar .viewed__swiper {
    width: 50vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .accesuar .viewed__swiper .swiper-slide {
    width: 280px;
  }
  .accesuar .swiper__wrapper .woocommerce {
    width: 50vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .accesuar .swiper__wrapper .woocommerce ul.products.columns-4 .product {
    width: 280px;
  }
}
.more_interest.bg_main .btn.btn_more {
  width: 220px;
}
.more_interest.bg_main .section__title,
.more_interest.bg_main .more_interest__subtitle {
  color: var(--white);
}
.more_interest .btn.btn_more {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .accesuar {
    padding-top: 80px;
  }
  .accesuar .viewed__swiper {
    width: 100%;
  }
  .accesuar .swiper__wrapper .woocommerce {
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .accesuar .swiper__pag {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .accesuar {
    padding-top: 50px;
  }
  .more_interest .more_interest__subtitle {
    font-size: 16px;
  }
  .accesuar .accesuar__subtitle {
    font-size: 16px;
  }
  .accesuar .accesuar__btn {
    width: 200px;
    height: 36px;
    font-size: 14px;
    margin: 0 auto;
  }
  .more_interest .btn.btn_more {
    font-size: 14px;
    height: 36px;
  }
}
.advant .advant_card {
  margin-bottom: 50px;
}
.advant .advant_card .advant__icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 20px;
}
.advant .advant_card .advant__icon img {
  max-width: 100%;
  max-height: 100%;
}
.advant .advant_card .advant__text {
  max-width: 290px;
}

@media screen and (max-width: 767px) {
  .advant .advant_card .advant__text {
    font-size: 16px;
  }
  .advant .advant_card {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant_card .advant__text {
    font-size: 14px;
  }
}
.catlist .catlist__item_wrap {
  margin-bottom: 20px;
}
.catlist .catlist__item_wrap:last-child {
  margin-bottom: 0;
}
.catlist .catlist__item .catlist_img {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  width: 180px;
  height: 160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 26px;
}
.catlist .catlist__item .catlist_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.catlist .catlist__item .catlist_img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.catlist .catlist__item .catlist_img.catlist_img_big {
  margin-bottom: 24px;
  height: 235px;
  width: 100%;
  margin-right: 0;
}
.catlist .catlist__item .catlist__info {
  padding-right: 25px;
}
.catlist .catlist__item .catlist__name {
  font-family: "KyivType Serif", serif;
  font-weight: 300;
}
.catlist .catlist__item .catlist__name a {
  color: var(--dark);
}
.catlist .catlist__item .catlist__name a:hover {
  color: var(--dark);
  text-decoration: underline;
}
.catlist .catlist__item.catlist__item_big .catlist__info {
  width: calc(100% - 80px);
}
.catlist .catlist__item .swiper__arrow {
  position: static;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 1px solid var(--light);
  background-color: var(--light);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.catlist .catlist__item .swiper__arrow.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.catlist .catlist__item .swiper__arrow:hover {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-color: var(--light);
}
.catlist .catlist__item .swiper__arrow:hover path {
  fill: var(--main2);
}
.catlist .catlist__item .swiper__arrow:active {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-color: var(--grey);
}
.catlist .catlist__item .swiper__arrow:active path {
  fill: var(--white);
}

@media screen and (max-width: 1199px) {
  .catlist .catlist__item.catlist__item_big .catlist__info {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 991px) {
  .catlist .catlist__item .catlist__info,
  .catlist .catlist__item.catlist__item_big .catlist__info {
    width: calc(100% - 30px);
  }
  .catlist .catlist__item .catlist__info {
    padding-right: 2px;
  }
  .catlist .catlist__item .catlist_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .catlist .swiper__arrow {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 576px) {
  .catlist .catlist__item .catlist__name {
    font-size: 4.5vw;
  }
  .catlist .catlist__item .catlist__text {
    font-size: 3.2vw;
  }
  .catlist .catlist__item .catlist_img {
    height: 34vw;
  }
  .catlist .catlist__item .catlist_img.catlist_img_big {
    height: 178px;
  }
  .catlist .catlist__item .catlist__info,
  .catlist .catlist__item.catlist__item_big .catlist__info {
    width: 100%;
  }
  .catlist .catlist__item .swiper__arrow {
    display: none !important;
  }
}
.complex .complex__wrap {
  border-radius: 20px;
  overflow: hidden;
}
.complex .complex__wrap .complex__block {
  width: 65%;
  padding: 50px 100px;
  margin-left: auto;
  position: relative;
}
.complex .complex__wrap .complex__block:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(19, 33, 44, 0.7) url(../img/blue_bg_pattern2.png) no-repeat center/cover;
}
.complex .complex__wrap .complex__social a {
  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;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  margin-right: 12px;
}
.complex .complex__wrap .complex__social a:hover path {
  fill: var(--icon_hover);
}

@media screen and (max-width: 1199px) {
  .complex .complex__wrap .complex__block {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 991px) {
  .complex .complex__wrap {
    padding-bottom: 250px;
  }
  .complex .complex__wrap .complex__block {
    width: 100%;
    margin-left: 0;
    padding: 44px 25px 30px;
  }
}
@media screen and (max-width: 576px) {
  .complex .complex__wrap {
    padding-bottom: 250px;
  }
  .complex .complex__wrap .complex__block .text__content p,
  .complex .complex__wrap .complex__block .text__content li {
    font-size: 14px;
  }
}
.review .review__swiper {
  height: 600px;
}
.review .review__swiper .swiper-slide {
  width: 380px;
  border-radius: 15px;
  border: 1px solid var(--main2);
  overflow: hidden;
}
.review .review__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review .swiper-3d .swiper-slide-shadow-right,
.review .swiper-3d .swiper-slide-shadow-left {
  display: none !important;
}
.review .review_rate {
  width: 240px;
  height: auto;
  max-width: 100%;
}
.review .review__info span {
  color: var(--orange);
}

@media screen and (max-width: 1199px) {
  .review .review__swiper {
    height: 540px;
  }
  .review .review__swiper .swiper-slide {
    width: 340px;
  }
}
@media screen and (max-width: 991px) {
  .review .review_rate {
    width: 200px;
    margin: 0 auto;
  }
  .review .review__info {
    text-align: center;
  }
  .review .review__swiper {
    height: 450px;
  }
  .review .review__swiper .swiper-slide {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .review #carousel .slide {
    height: 400px !important;
  }
  .review .review__swiper {
    height: 380px;
  }
  .review .review__swiper .swiper-slide {
    width: 280px;
  }
}
@media screen and (max-width: 576px) {
  .review .review__subtitle {
    font-size: 16px;
  }
  .review .review_rate {
    width: 170px;
    height: auto;
    max-width: 100%;
  }
  .review .review__swiper {
    height: 340px;
  }
  .review .review__swiper .swiper-slide {
    width: 220px;
  }
}
.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 15, 15, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 500px;
  padding: 0;
  position: relative;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-height: 96%;
  overflow-y: auto;
  padding: 40px 30px;
  border-radius: 10px;
}
.popup .popup__content .popup__head {
  padding: 45px 30px;
  background-color: var(--btn_hover);
}
.popup .popup__content .close_popup {
  background: transparent url(../img/close_menu.svg) no-repeat center/16px;
  border: none;
  width: 30px;
  height: 30px;
  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;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.popup .popup__content .form__wrap .input__group {
  margin-bottom: 20px;
}
.popup .popup__content .form__wrap .input__group .order__input {
  border: 1px solid var(--grey2);
  border-radius: 5px;
}
.popup .popup__content .form__wrap .wpcf7-not-valid-tip {
  font-size: 14px;
}
.popup .popup__content form .wpcf7-response-output {
  color: var(--main);
  font-size: 14px;
  margin: 1em 0em 0.5em;
}

.open__form > * {
  pointer-events: none;
}

.footer .footer__menu {
  margin-bottom: 30px;
}
.footer .footer__menu li:not(:last-child) {
  margin-bottom: 18px;
}
.footer .footer__menu li a {
  font-size: 18px;
  color: var(--white);
  border-bottom: 1px solid transparent;
}
.footer .footer__menu li a:hover {
  color: var(--icon_hover);
  border-color: var(--icon_hover);
}
.footer .footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer__policy li:not(:last-child) {
  margin-right: 34px;
}
.footer .footer__policy li a {
  font-size: 12px;
  color: var(--white);
  border-bottom: 1px solid transparent;
}
.footer .footer__policy li a:hover {
  color: var(--icon_hover);
  border-color: var(--icon_hover);
}
.footer .google_rate {
  width: 240px;
  height: auto;
}
.footer .contact__item .icon {
  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;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 3px;
}
.footer .contact__item a {
  font-size: 18px;
  border-bottom: 1px solid transparent;
  color: var(--white);
}
.footer .contact__item a:hover {
  color: var(--icon_hover);
  border-bottom-color: var(--icon_hover);
}
.footer .social a {
  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;
  width: 24px;
  height: 24px;
  margin-right: 9px;
}
.footer .social a:hover svg path {
  fill: var(--icon_hover);
}
.footer .form__wrap .wpcf7-not-valid-tip {
  font-size: 14px;
}
.footer form .wpcf7-response-output {
  color: var(--white);
  font-size: 14px;
  margin: 1em 0em 0.5em;
}

.success__btn {
  max-width: 220px;
}

@media screen and (max-width: 576px) {
  .footer .footer__title {
    font-size: 20px;
  }
  .footer .footer__menu li a {
    font-size: 14px;
  }
  .footer .footer__menu li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.page_404 {
  height: calc(100vh - 43px);
  min-height: 560px;
  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;
  text-align: center;
}
.page_404 .page_404__title {
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  font-family: "Manrope";
  text-transform: uppercase;
  color: var(--lightgrey);
  margin-bottom: 30px;
  line-height: 0.75em;
}
.page_404 .page_404_subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1em;
}
.page_404 .page_404__text {
  font-size: 18px;
  max-width: 284px;
  margin: 0 auto 30px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 150px;
  }
}
.cky-prefrence-btn-wrapper .cky-btn {
  font-size: 18px !important;
  border-radius: 10px !important;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences {
  border-width: 1px;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject:hover, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}

.cky-preference-body-wrapper p {
  font-size: 16px;
}

.cky-consent-container.cky-box-bottom-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 15, 15, 0.15);
  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;
}
.cky-consent-container.cky-box-bottom-left.cky-hide {
  display: none;
}
.cky-consent-container.cky-box-bottom-left .cky-consent-bar {
  width: 100%;
  border-radius: 20px;
  max-width: 420px;
  padding: 40px;
}
.cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1em;
}
.cky-consent-container.cky-box-bottom-left .cky-notice-des {
  margin-bottom: 40px;
}
.cky-consent-container.cky-box-bottom-left .cky-notice-des p {
  font-size: 18px;
  line-height: 1.4em;
}
.cky-consent-container.cky-box-bottom-left .cky-btn {
  font-size: 18px;
  border-radius: 10px;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-reject, .cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-preferences {
  border-width: 1px;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-reject:hover, .cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}
@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 120px;
  }
  .page_404 .page_404_subtitle {
    font-size: 32px;
  }
  .page_404 .page_404__text {
    font-size: 16px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-consent-bar {
    width: 100%;
    max-width: 90%;
    padding: 30px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice-des p {
    font-size: 16px;
  }
  .popup .popup__content ifrane {
    padding-bottom: 45px;
  }
}/*# sourceMappingURL=main.css.map */