@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 14px;
  background: #B00629;
  color: #838383;
}
body.inkmedirty {
  background: #FAF6EC;
}
@media (max-width: 1720px) {
  body {
    padding: 0 0px 0 0px;
  }
}
@media (max-width: 968px) {
  body {
    padding: 0 0px 0 0px;
  }
}

a {
  text-decoration: none;
}

.h1 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #FFFFFF;
  margin-bottom: 27px;
  text-align: left;
}
@media (max-width: 968px) {
  .h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
  }
}

.h2 {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #212121;
}
@media (max-width: 1440px) {
  .h2 {
    font-size: 50px;
    margin: 0 20px;
  }
}
@media (max-width: 968px) {
  .h2 {
    font-size: 38px;
  }
}

.h3 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  color: #FFFFFF;
}
@media (max-width: 968px) {
  .h3 {
    font-size: 24px;
  }
}

.picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.link_white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: #FFFFFF;
}
.link_white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='white' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.link_white:hover::after {
  opacity: 0;
}

.link_red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: #B00629;
}
.link_red::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.link_red:hover::after {
  opacity: 0;
}

.link_red_hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: #B00629;
}
.link_red_hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.link_red_hover:hover::after {
  opacity: 1;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 16px 40px 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 0;
}
@media (max-width: 1840px) {
  .header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 968px) {
  .header {
    padding: 8px 16px 8px 16px;
  }
}
.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 374px;
  height: auto;
  margin-right: 234px;
}
@media (max-width: 1840px) {
  .header .logo {
    margin-right: 0;
  }
}
@media (max-width: 968px) {
  .header .logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header .logo img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}
.header .burger {
  display: none;
}
@media (max-width: 1470px) {
  .header .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 32px;
    height: 32px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    background: url("/wp-content/themes/adult/assets/img/burger_menu.svg") center center no-repeat;
  }
}
.header .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 1840px) {
  .header .main-nav {
    width: 66%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1668px) {
  .header .main-nav {
    width: 70%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1470px) {
  .header .main-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0px;
    width: 100%;
    max-width: 360px;
    padding: 80px 15px 40px 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    z-index: 1000;
    background: #FAF6EC;
    -webkit-box-shadow: 0px 6px 10px rgba(83, 0, 17, 0.1);
            box-shadow: 0px 6px 10px rgba(83, 0, 17, 0.1);
    border-radius: 0px 0px 16px 16px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  }
  .header .main-nav.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header .main-nav .close {
  display: none;
}
@media (max-width: 1470px) {
  .header .main-nav .close {
    position: absolute;
    top: 24px;
    right: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 24px;
    height: 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    background: url("/wp-content/themes/adult/assets/img/cross_small_1.png") 0 0 no-repeat;
  }
}
.header .topnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  list-style: none;
  gap: 43px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 10px;
}
@media (max-width: 1470px) {
  .header .topnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.header .topnav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .topnav li a.menu {
  position: relative;
  display: inline-block;
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.1px;
  color: #FFFFFF;
  padding: 0 0 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px dashed transparent;
}
@media (max-width: 1440px) {
  .header .topnav li a.menu {
    font-size: 18px;
  }
}
@media (max-width: 1470px) {
  .header .topnav li a.menu {
    font-family: "Nunito";
    font-style: normal;
    font-variation-settings: "wght" 800;
    font-size: 24px;
    line-height: 96%;
    text-align: center;
    color: #B00629;
  }
}
.header .topnav li a.menu .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  height: 3px;
  pointer-events: none;
}
.header .topnav li a.menu .underline span {
  display: block;
  width: 12px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation-name: dashAppear;
          animation-name: dashAppear;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.header .topnav li a.menu .underline span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.header .topnav li a.menu .underline span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.header .topnav li a.menu .underline span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.header .topnav li a.menu .underline span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.header .topnav li a.menu .underline span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.header .topnav li a.menu .underline span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.header .topnav li a.menu .underline span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.header .topnav li a.menu .underline span:nth-child(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.header .topnav li a.menu:hover .underline span {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.header .topnav li a.menu .underline span {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.header .hi_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 234px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px 22px;
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1400px) {
  .header .hi_2 {
    padding-left: 25px;
  }
}
@media (max-width: 1840px) {
  .header .hi_2 {
    margin-left: 0;
  }
}
@media (max-width: 1470px) {
  .header .hi_2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header .hi_2 .lang {
  margin-right: auto;
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  list-style: none;
  text-transform: uppercase;
}
@media (max-width: 1470px) {
  .header .hi_2 .lang {
    margin: 0;
    color: #B00629;
  }
}
@media (max-width: 1470px) {
  .header .hi_2 .cart {
    display: none;
  }
}
.header .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33px;
  height: 32px;
  cursor: pointer;
  position: relative;
  text-transform: none;
  background: url("/wp-content/themes/adult/assets/img/search.svg") center center no-repeat;
}
@media (max-width: 1470px) {
  .header .search {
    position: absolute;
    top: 24px;
    left: 32px;
    background: url("/wp-content/themes/adult/assets/img/search_smart.svg") center center no-repeat;
  }
}
.header .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33px;
  height: 32px;
  cursor: pointer;
  position: relative;
  text-transform: none;
  background: url("/wp-content/themes/adult/assets/img/shopping-bag.svg") center center no-repeat;
}
.header .cart .cart-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 180px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  color: #1e1e1e;
}
.header .cart .cart-count.null {
  display: none;
}
.header .cart.smart_cart {
  display: none;
}
@media (max-width: 1470px) {
  .header .cart.smart_cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .user,
.header .user_autor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33px;
  height: 32px;
  cursor: pointer;
  text-transform: none;
  background: url("/wp-content/themes/adult/assets/img/user.svg") center center no-repeat;
}
@media (max-width: 1470px) {
  .header .user,
  .header .user_autor {
    background: url("/wp-content/themes/adult/assets/img/user_smart.svg") center center no-repeat;
  }
}

@media (max-width: 1470px) {
  .inkmedirty .header .burger {
    background: url("/wp-content/themes/adult/assets/img/burger_menu_gray.svg") center center no-repeat;
  }
}
.inkmedirty .header .topnav li a.menu {
  color: #9F9F9F;
}
.inkmedirty .header .topnav li a.menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%239F9F9F' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}
.inkmedirty .header .topnav li a.menu:hover::after {
  opacity: 1;
}
.inkmedirty .header .hi_2 .lang {
  color: #9F9F9F;
}
.inkmedirty .header .search {
  background: url("/wp-content/themes/adult/assets/img/search-lg.svg") center center no-repeat;
}
.inkmedirty .header .cart {
  background: url("/wp-content/themes/adult/assets/img/shopping-bag-02.svg") center center no-repeat;
}
.inkmedirty .header .user,
.inkmedirty .header .user_autor {
  background: url("/wp-content/themes/adult/assets/img/user-lg.svg") center center no-repeat;
}

.coloring {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0px 0 120px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 968px) {
  .coloring {
    padding: 0px 0 68px 0;
  }
}
.coloring:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 378px;
  height: 317px;
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0px;
  z-index: 1;
  background-image: url("/wp-content/themes/adult/assets/img/background_top.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 968px) {
  .coloring:after {
    display: none;
  }
}
.coloring .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  width: 100%;
  max-width: 1338px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 120px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .coloring .wrap {
    padding: 100px 0 0 0;
  }
}
@media (max-width: 968px) {
  .coloring .wrap {
    padding: 54px 16px 0 16px;
  }
}
.coloring .wrap::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 396px;
  height: 471px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  bottom: 50px;
  left: 0px;
  background-image: url("/wp-content/themes/adult/assets/img/union.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media (max-width: 1440px) {
  .coloring .wrap::before {
    bottom: 55px;
  }
}
@media (max-width: 1270px) {
  .coloring .wrap::before {
    display: none;
  }
}
.coloring .wrap::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 394px;
  height: 471px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  bottom: 50px;
  right: 0px;
  background-image: url("/wp-content/themes/adult/assets/img/union_2.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media (max-width: 1440px) {
  .coloring .wrap::after {
    bottom: 55px;
  }
}
@media (max-width: 1270px) {
  .coloring .wrap::after {
    display: none;
  }
}
.coloring h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #FFFFFF;
  margin-bottom: 27px;
  text-align: center;
}
@media (max-width: 1470px) {
  .coloring h1 {
    font-size: 70px;
    max-width: 910px;
  }
}
@media (max-width: 768px) {
  .coloring h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
  }
}
.coloring .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 640px;
  font-variation-settings: "wght" 500;
  font-size: 24px;
  line-height: 135%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 56px;
}
@media (max-width: 968px) {
  .coloring .description {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 48px;
  }
}
.coloring .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
.coloring a {
  font-family: "Nunito", sans-serif;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  padding: 0 0 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
}
@media (max-width: 1470px) {
  .coloring a {
    font-size: 32px;
  }
}
@media (max-width: 968px) {
  .coloring a {
    font-size: 24px;
    line-height: 96%;
    margin-bottom: 32px;
  }
}

@-webkit-keyframes dashAppear {
  from {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes dashAppear {
  from {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes dashDisappear {
  from {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes dashDisappear {
  from {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  to {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.underline-animated {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.underline-animated .underline-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}
.underline-animated .underline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  height: 3px;
}
.underline-animated .underline span {
  display: block;
  width: 12px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.products_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FAF6EC;
  padding: 140px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
@media (max-width: 968px) {
  .products_cat {
    padding: 100px 0 0 0;
  }
}
.products_cat::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 378px;
  height: 362px;
  position: absolute;
  top: -5px;
  position: absolute;
  left: 0px;
  background-image: url("/wp-content/themes/adult/assets/img/background_bottom_top.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 968px) {
  .products_cat::before {
    display: none;
  }
}
.products_cat .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1392px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 1390px) {
  .products_cat .wrap {
    padding: 0 16px 0 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 968px) {
  .products_cat .wrap {
    gap: 16px;
  }
}
@media (max-width: 1470px) {
  .products_cat .wrap .h2 {
    font-size: 50px;
  }
}
.products_cat .short_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 450px;
  font-variation-settings: "wgth" 500;
  font-size: 24px;
  line-height: 135%;
  text-align: center;
  color: #838383;
  margin-bottom: 24px;
}
@media (max-width: 968px) {
  .products_cat .short_description {
    font-size: 16px;
    line-height: 120%;
  }
}
.products_cat .categories {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 1225px) {
  .products_cat .categories {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .products_cat .categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.products_cat .categories .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 686px;
  min-height: 534px;
  max-height: 560px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 32px 71px;
  gap: 24px;
  position: relative;
  border-radius: 60px;
}
.products_cat .categories .item .picture img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1225px) {
  .products_cat .categories .item {
    margin: 0 auto;
    min-height: 413px;
    padding: 32px 28px;
  }
}
@media (max-width: 1470px) {
  .products_cat .categories .item .h2 {
    font-size: 50px;
    padding: 0 50px;
  }
}
.products_cat .categories .item .link {
  font-family: "Nunito";
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  padding: 0 0 7px 0;
}
@media (max-width: 1470px) {
  .products_cat .categories .item .link {
    font-size: 32px;
  }
}
@media (max-width: 968px) {
  .products_cat .categories .item .link {
    font-size: 23px;
  }
}
.products_cat .categories .item .h2 {
  margin-bottom: auto;
}

.recent_viewed {
  font-family: "Nunito";
  color: #000;
  font-size: 60px;
  font-variation-settings: "wght" 800;
  margin-bottom: 15px;
}

.lists_cards_recent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.lists_cards_recent .cards_slide {
  display: grid;
  width: 100%;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .lists_cards_recent .cards_slide {
    grid-template-columns: 1fr;
  }
}
.lists_cards_recent .cards_slide .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  border: 3px solid #B00629;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 100%;
}
.lists_cards_recent .cards_slide .card .picture img {
  min-height: initial;
  max-height: 904px;
}
@media (max-width: 1470px) {
  .lists_cards_recent .cards_slide .card .picture img {
    min-height: initial;
    max-height: 640px;
  }
}
@media (max-width: 768) {
  .lists_cards_recent .cards_slide .card .picture img {
    min-height: 312px;
  }
}
.lists_cards_recent .cards_slide .card .favorite {
  position: absolute;
  top: 16px;
  right: 16px;
}
.lists_cards_recent .cards_slide .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  height: 30px;
}
.lists_cards_recent .cards_slide .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #fff !important;
}
.lists_cards_recent .cards_slide .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #B00629 !important;
}
.lists_cards_recent .cards_slide .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.lists_cards_recent .cards_slide .card .favorite .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.lists_cards_recent .cards_slide .card .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 24px 16px 14px 16px;
  background: #fff;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lists_cards_recent .cards_slide .card .info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.lists_cards_recent .cards_slide .card .info .wrap_info {
  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;
}
.lists_cards_recent .cards_slide .card .name {
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 110%;
  color: #212121;
}

.lists_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FAF6EC;
  padding: 100px 40px 100px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 968px) {
  .lists_cards {
    padding: 50px 16px 50px 16px;
  }
}
.lists_cards .h2 {
  margin: 0 auto 48px;
}
@media (max-width: 1470px) {
  .lists_cards .h2 {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .lists_cards .h2 {
    margin: 0 0 16px 0;
    text-align: left;
  }
}
.lists_cards .wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1840px;
}
.lists_cards .wrap {
  display: grid;
  width: 100%;
  gap: 20px;
}
@media (min-width: 968px) {
  .lists_cards .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lists_cards .wrap > * {
  min-width: 0;
}
.lists_cards .item_big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
}
@media (max-width: 968px) {
  .lists_cards .item_big {
    display: none;
  }
}
.lists_cards .head_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lists_cards .head_block .text {
  margin-bottom: 21px;
}
.lists_cards .head_block .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
}
.lists_cards .head_block .view {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0 0 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lists_cards .item_small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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;
}
@media (max-width: 1775px) {
  .lists_cards .item_small {
    gap: 100px;
  }
}
.lists_cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  border: 3px solid #B00629;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.lists_cards .card .picture img {
  min-height: auto;
  max-height: 904px;
}
@media (max-width: 1470px) {
  .lists_cards .card .picture img {
    min-height: initial;
    max-height: 640px;
  }
}
@media (max-width: 768) {
  .lists_cards .card .picture img {
    min-height: 312px;
  }
}
.lists_cards .card .favorite {
  position: absolute;
  top: 16px;
  right: 16px;
}
.lists_cards .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  height: 30px;
}
.lists_cards .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #fff !important;
}
.lists_cards .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #B00629 !important;
}
.lists_cards .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.lists_cards .card .favorite .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.lists_cards .card .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 24px 16px 14px 16px;
  background: #fff;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lists_cards .card .info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.lists_cards .card .info .wrap_info {
  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;
}
.lists_cards .card .name {
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 110%;
  color: #212121;
}
.lists_cards .cards_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
}
@media (max-width: 968px) {
  .lists_cards .cards_slide {
    max-width: 100%;
    margin: 0 auto;
  }
}
.lists_cards .cards_slide .snake-track {
  gap: 20px;
}
@media (max-width: 968px) {
  .lists_cards .cards_slide .snake-track {
    gap: 0px;
  }
}
@media (max-width: 968px) {
  .lists_cards .cards_slide .card:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lists_cards .cards_slide .card {
  max-width: 437px;
}
@media (max-width: 1440px) {
  .lists_cards .cards_slide .card {
    max-width: 317px;
  }
}
@media (max-width: 968px) {
  .lists_cards .cards_slide .card {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .lists_cards .cards_slide .card {
    max-width: 100% !important;
  }
}
.lists_cards .cards_slide .snake-prev {
  top: -56px;
  right: 66px;
}
.lists_cards .cards_slide .snake-next {
  top: -56px;
  right: 10px;
}

.post-8 {
  color: #000;
}
.post-8 .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  margin-top: 20px;
  margin-bottom: 20px;
}
.post-8 .woocommerce-info {
  border-top: 0;
  background: transparent;
}
.post-8 .woocommerce-info::before {
  color: #B00629;
}
.post-8 .woocommerce form.login {
  border: solid 2px #B00629;
  border-radius: 16px;
  max-width: 650px;
  margin: 20px auto;
}
.post-8 .woocommerce form.login input {
  background: transparent;
  border-radius: 16px;
  height: 42px;
}
.post-8 .woocommerce form.login .form-row {
  display: grid;
}
.post-8 .woocommerce form.login .form-row .woocommerce-form__input.woocommerce-form__input-checkbox {
  height: initial;
}
.post-8 .woocommerce form.login .button {
  color: #fff;
  background: #B00629;
  border-radius: 50px;
  height: 42px;
  max-width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .post-8 .woocommerce form.login .button {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    max-width: 100%;
  }
}
.post-8 .woocommerce form.login a {
  color: #B00629;
}
@media (max-width: 768px) {
  .post-8 .woocommerce form.login {
    display: grid;
  }
  .post-8 .woocommerce form.login .form-row-first, .post-8 .woocommerce form.login .form-row-last {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    display: grid;
    gap: 15px;
  }
  .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    border-right: 0 !important;
    border-bottom: 2px dashed #B00629 !important;
    padding-bottom: 10px;
  }
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  -webkit-mask-image: none;
          mask-image: none;
  background-color: transparent;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 301px;
  height: 230px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("/wp-content/themes/adult/assets/img/oups_pepper_ec.svg") 0 0 no-repeat;
  background-size: 100%;
}
@media (max-width: 768px) {
  .wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
    margin-top: 35px;
  }
}

.woocommerce-message {
  background: transparent;
  border: 0;
}

/* контейнер */
.yith-wcwl-table-responsive {
  overflow: visible;
}

.yith-wcwl-form {
  margin-top: 0 !important;
}

/* сама таблица */
table.wishlist_table {
  display: block;
  border: none;
}

/* скрываем заголовки */
table.wishlist_table thead {
  display: none;
}

/* tbody как grid */
table.wishlist_table tbody {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  table.wishlist_table tbody {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* каждая строка = карточка */
table.wishlist_table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid #b00629;
  border-radius: 16px;
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.wc-block-components-quantity-selector:after {
  border: 0;
}

.wishlist_table td.product-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent !important;
}
.wishlist_table td.product-remove a {
  background: transparent !important;
}

.wishlist_table td.product-stock-status {
  display: none;
}

.wishlist_table td.product-thumbnail {
  width: 100%;
  padding: 0 !important;
}

.wishlist_table td.product-thumbnail img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.wishlist_table tr {
  position: relative;
}

.wishlist_table td.product-remove 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: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #b00629;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wishlist_table td.product-remove a:hover {
  background: transparent !important;
  color: #b00629 !important;
}

.wishlist_table td.product-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 0 !important;
  width: auto;
}

.wishlist_table td.product-name {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #000 !important;
  text-align: center !important;
  border-top: 3px dashed transparent !important;
  margin-top: 0 !important;
  -o-border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
}
.wishlist_table td.product-name a {
  color: #000 !important;
  text-align: center !important;
  font-variation-settings: "wght" 800;
}

.wishlist_table td.product-price {
  margin-top: 4px;
  font-weight: 500;
  color: #000 !important;
}

.wishlist_table td.product-add-to-cart {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.wishlist_table td.product-add-to-cart a {
  border: 2px solid #b00629;
  border-radius: 10px;
  padding: 8px 10px;
}

.wishlist_table tr td.product-thumbnail a {
  max-width: 100% !important;
}

@media (max-width: 1440px) {
  table.wishlist_table tbody {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  table.wishlist_table tbody {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 480px) {
  table.wishlist_table tbody {
    grid-template-columns: 1fr;
  }
}
.wishlist-title-container {
  display: none;
}

.shop_table.cart.wishlist_table.wishlist_view {
  border: 0;
  color: #000;
}

.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile {
  width: 100%;
  display: grid;
  gap: 20px;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li {
  border: solid 2px #B00629;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .additional-info {
  display: none;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .product-add-to-cart {
  margin: 0 15px 15px;
  float: right;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-details-table {
  width: 100%;
  margin: 0;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-details-table .value {
  text-align: center;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-details-table .label {
  display: none;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .product-thumbnail {
  max-width: 100%;
  width: 100%;
  margin: 0;
  background-color: #fff;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .product-thumbnail img {
  width: 100%;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-wrapper {
  width: 100%;
  margin: 0;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-wrapper .item-details {
  width: 100%;
  background: #fff;
  border-top: 3px dashed transparent;
  -o-border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-wrapper .item-details .product-name {
  text-align: center;
  margin-top: 20px;
}
.shop_table.cart.wishlist_table.wishlist_view.responsive.mobile li .item-wrapper .item-details .product-name a {
  font-variation-settings: "wght" 800;
  color: #000;
}

.wpcf7-not-valid-tip {
  margin: 0 0 10px 10px !important;
}

.physical_goods .list_categories, .physical_goods .title {
  display: none !important;
}

.wc-block-cart {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  color: #000;
}
.wc-block-cart .wc-block-cart-items__header-image span {
  display: none;
}
.wc-block-cart .wc-block-components-product-metadata__description {
  display: none;
}
.wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title {
  display: none;
}
.wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__product, .wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__total, .wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__image {
  border-top: 3px dashed transparent;
  -o-border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
}
@media (max-width: 768px) {
  .wc-block-cart .wc-block-cart-items__row {
    grid-template-columns: auto !important;
  }
  .wc-block-cart .wc-block-cart-items__row td {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 0px !important;
  }
  .wc-block-cart .wc-block-cart-items__row th {
    padding-bottom: 20px !important;
    margin-bottom: 0px !important;
  }
}
.wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__image img {
  width: 128px !important;
  height: 128px;
  border: solid 2px #B00629;
  border-radius: 16px;
}
.wc-block-cart .wc-block-cart-items__row .wc-block-components-product-name {
  color: #000;
  font-size: 18px;
}
.wc-block-cart .wc-block-cart-items__row .price {
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__remove-link {
  font-size: 16px !important;
  font-style: normal !important;
  color: #838383 !important;
  font-variation-settings: "wght" 500 !important;
}
.wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  background: #fff;
  border-radius: 20px !important;
  overflow: hidden;
}
.wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button--minus {
  border-radius: 20px 0 0 20px !important;
}
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total span {
  display: none;
}
.wc-block-cart .wc-block-components-totals-wrapper {
  border-top: 3px dashed transparent;
  -o-border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-totals-block,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
  border: 0;
}
.wc-block-cart .wc-block-components-totals-wrapper .wc-block-components-totals-item .wc-block-components-totals-item__label, .wc-block-cart .wc-block-components-totals-wrapper .wc-block-components-totals-item .wc-block-components-totals-item__value {
  font-family: "Nunito";
  font-size: 24px !important;
  font-style: normal;
  font-variation-settings: "wght" 800 !important;
}
.wc-block-cart .wc-block-components-totals-coupon.wc-block-components-panel {
  font-family: "Nunito";
  font-size: 24px !important;
  font-style: normal;
  font-variation-settings: "wght" 800 !important;
}

.entry-summary .single_block_add .single_add_to_cart_button::before {
  content: none;
}

.wc-block-checkout {
  color: #000;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-totals-block, .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-shipping-block {
  border-top: 3px dashed transparent;
  -o-border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
}
.wc-block-checkout .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper {
  border-top: 3px dashed transparent;
  -o-border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
}
.wc-block-checkout .wc-block-components-checkout-order-summary__content .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-wrapper {
  border-top: 0;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block.wc-block-components-totals-wrapper .wc-block-components-totals-item {
  padding-bottom: 16px !important;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-totals-block .wp-block-woocommerce-checkout-order-summary-shipping-block {
  border-top: 3px dashed transparent !important;
  -o-border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #D4D4D4 0, #D4D4D4 16px, transparent 16px, transparent 24px) 1;
}
.wc-block-checkout .wc-block-components-text-input input {
  background-color: transparent !important;
  border-radius: 16px !important;
}
.wc-block-checkout .wc-block-components-radio-control__input, .wc-block-checkout .wc-blocks-components-select__select {
  background-color: transparent !important;
  border-radius: 16px !important;
}
.wc-block-checkout .wc-blocks-components-select__select, .wc-block-checkout .wc-blocks-components-select__container {
  background-color: transparent !important;
  border-radius: 16px !important;
}
.wc-block-checkout .wc-block-components-radio-control__option,
.wc-block-checkout .wc-block-components-radio-control.wc-block-components-radio-control--highlight-checked--first-selected.wc-block-components-radio-control--highlight-checked {
  border: 0 !important;
}
.wc-block-checkout .wc-block-components-radio-control__option::after, .wc-block-checkout .wc-block-components-radio-control--highlight-checked::after {
  background: none !important;
  border: none;
}
.wc-block-checkout .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-checkout .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  border: solid 2px #B00629 !important;
  border-radius: 16px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wc-block-checkout .wc-block-components-address-card {
  border-radius: 16px !important;
}
.wc-block-checkout .wc-block-components-order-summary-item .wc-block-components-product-metadata {
  display: none;
}
.wc-block-checkout .wc-block-components-checkbox__label a {
  color: #B00629 !important;
}
.wc-block-checkout .wc-block-components-checkout-order-summary__title-text {
  font-family: "Nunito";
  font-size: 38px;
  font-style: normal;
  font-variation-settings: "wght" 800 !important;
  line-height: 96%;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block {
  border: solid 2px #838383;
  border-radius: 14px;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-totals-wrapper {
  font-family: "Nunito";
  font-size: 18px;
  font-style: normal;
  font-variation-settings: "wght" 800 !important;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-product-name {
  font-size: 18px !important;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image {
  width: 128px !important;
  height: 128px !important;
  max-width: 128px !important;
}
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__content .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image img {
  width: 128px !important;
  height: 128px !important;
  max-width: 128px !important;
  border: solid 2px #000;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
    display: none;
  }
}
@media (max-width: 768px) {
  .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    border-bottom: 0;
    border-top: 0;
  }
  .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block {
    padding-left: 5px;
    padding-right: 5px;
  }
  .wc-block-checkout .wc-block-checkout__actions.wp-block-woocommerce-checkout-actions-block .wc-block-components-checkout-place-order-button {
    width: 100% !important;
  }
}
.wc-block-checkout .tmjs-open-modal-btn {
  background: #B00629 !important;
  border: 0 !important;
  color: #fff !important;
  margin-top: 10px !important;
}

.woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 18px;
  color: #000;
  padding: 15px 0;
}
.woocommerce-order .woocommerce-thankyou-order-details {
  font-size: 18px;
  color: #000;
}
.woocommerce-order .woocommerce-thankyou-order-details li {
  border-right: 2px dashed #B00629 !important;
}
.woocommerce-order .woocommerce-order-details {
  margin-top: 20px;
}
.woocommerce-order .woocommerce-order-details .order_details {
  margin-top: 20px;
}
.woocommerce-order .woocommerce-order-details .order_details.shop_table {
  font-size: 18px;
  font-variation-settings: "wght" 400 !important;
  color: #000;
  border-radius: 0;
  border: 0;
  border-top: 3px dashed transparent !important;
  -o-border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
}
.woocommerce-order .woocommerce-order-details .order_details.shop_table .order_item .product-name a {
  color: #B00629 !important;
}
@media (max-width: 768px) {
  .woocommerce-order .woocommerce-column--shipping-address.col-2 {
    margin-top: 15px;
  }
}
.woocommerce-order .woocommerce-customer-details address {
  margin-top: 20px;
  color: #000;
  border-radius: 16px;
  border-color: #B00629;
  border-width: 2px;
  padding: 15px;
  font-size: 18px;
}

.post-9 .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.post-9 .woocommerce .wishlist-empty {
  border: 0 !important;
}
.post-9 .woocommerce .woocommerce-notices-wrapper + h2 {
  display: none !important;
}
.post-9 .woocommerce form.woocommerce-form-login, .post-9 .woocommerce .lost_reset_password {
  color: #000;
  max-width: 700px !important;
  margin: 20px auto;
  width: 100% !important;
  border: solid 2px #B00629;
  border-radius: 16px;
}
.post-9 .woocommerce form.woocommerce-form-login .woocommerce-form-login__rememberme, .post-9 .woocommerce .lost_reset_password .woocommerce-form-login__rememberme {
  display: block !important;
}
.post-9 .woocommerce form.woocommerce-form-login a, .post-9 .woocommerce .lost_reset_password a {
  color: #B00629;
}
.post-9 .woocommerce form.woocommerce-form-login input, .post-9 .woocommerce .lost_reset_password input {
  background: transparent;
  border-radius: 16px;
  height: 42px;
}
.post-9 .woocommerce form.woocommerce-form-login .woocommerce-form__input-checkbox, .post-9 .woocommerce .lost_reset_password .woocommerce-form__input-checkbox {
  height: initial !important;
}
.post-9 .woocommerce form.woocommerce-form-login .button, .post-9 .woocommerce .lost_reset_password .button {
  color: #fff;
  background: #B00629;
  border-radius: 50px;
  height: 42px;
  width: 200px;
}
@media (max-width: 768px) {
  .post-9 .woocommerce form.woocommerce-form-login .button, .post-9 .woocommerce .lost_reset_password .button {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
.post-9 .woocommerce .lost_reset_password {
  padding: 15px;
  max-width: 600px !important;
}
.post-9 .woocommerce .lost_reset_password input {
  width: 100%;
}
.post-9 .woocommerce .woocommerce-MyAccount-navigation.adult-nav {
  min-width: 300px;
  border: solid 2px #B00629;
  border-radius: 16px;
  padding: 20px;
}
.post-9 .woocommerce .woocommerce-MyAccount-navigation.adult-nav ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.post-9 .woocommerce .woocommerce-MyAccount-navigation.adult-nav ul li {
  font-size: 24px;
  font-style: normal;
  font-variation-settings: "wght" 500 !important;
}
.post-9 .woocommerce .woocommerce-MyAccount-navigation.adult-nav ul li a {
  color: #838383;
}
.post-9 .woocommerce .woocommerce-MyAccount-navigation.adult-nav ul li.is-active a {
  color: #B00629;
}
@media (max-width: 768px) {
  .post-9 .woocommerce .woocommerce-MyAccount-navigation.adult-nav {
    width: 100%;
  }
}
.post-9 .woocommerce .woocommerce-MyAccount-content {
  width: 100%;
  font-family: "Nunito";
  color: #000;
  font-size: 18px;
  font-variation-settings: "wght" 500 !important;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .order-number, .post-9 .woocommerce .woocommerce-MyAccount-content .order-date, .post-9 .woocommerce .woocommerce-MyAccount-content .order-status {
  background: transparent;
}
.post-9 .woocommerce .woocommerce-MyAccount-content p {
  margin-bottom: 15px;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .shop_table.order_details {
  font-size: 18px;
  font-variation-settings: "wght" 400 !important;
  color: #000;
  border-radius: 0;
  border: 0;
  border-top: 3px dashed transparent !important;
  -o-border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .shop_table.order_details .order_item .product-name a {
  color: #B00629 !important;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .woocommerce-column--billing-address address, .post-9 .woocommerce .woocommerce-MyAccount-content .woocommerce-column--shipping-address address {
  margin-top: 20px;
  border: solid 2px #B00629;
  border-radius: 16px;
  padding: 15px;
}
@media (max-width: 768px) {
  .post-9 .woocommerce .woocommerce-MyAccount-content .woocommerce-column--billing-address {
    margin-bottom: 20px;
  }
}
.post-9 .woocommerce .woocommerce-MyAccount-content .button.wc-forward {
  display: none;
}
.post-9 .woocommerce .woocommerce-MyAccount-content input {
  background: transparent;
  border-radius: 16px;
  height: 42px;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
  background: transparent;
  border-top: 0;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .woocommerce-info::before {
  color: #B00629;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .button {
  color: #fff;
  background: #B00629;
  border-radius: 50px;
  height: 42px;
}
@media (max-width: 768px) {
  .post-9 .woocommerce .woocommerce-MyAccount-content .button {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
.post-9 .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
  margin-top: 20px;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .my_account_orders {
  width: 100%;
  font-size: 18px;
  font-variation-settings: "wght" 400 !important;
  color: #000;
  border-radius: 0;
  border: 0;
  border-top: 3px dashed transparent !important;
  -o-border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
     border-image: repeating-linear-gradient(to right, #B00629 0, #B00629 16px, transparent 16px, transparent 24px) 1;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .my_account_orders .order_item .product-name a {
  color: #B00629 !important;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .my_account_orders .order a {
  color: #B00629 !important;
}
.post-9 .woocommerce .woocommerce-MyAccount-content .my_account_orders .order .woocommerce-orders-table__cell-order-actions a {
  text-align: center;
  min-width: 200px;
  color: #fff !important;
}
@media (max-width: 768px) {
  .post-9 .woocommerce .woocommerce-MyAccount-content .form_edit_my .form-row-first, .post-9 .woocommerce .woocommerce-MyAccount-content .form_edit_my .form-row-last {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .post-9 .woocommerce {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .post-9 .woocommerce > div {
    width: 100%;
  }
}

.post-7 .wc-block-grid.wp-block-product-new.wp-block-woocommerce-product-new.wc-block-product-new .wc-block-grid__product-image img:is([sizes=auto i], [sizes^="auto," i]) {
  contain-intrinsic-size: 300px;
}
.post-7 .wc-block-grid__product {
  margin-top: 20px;
}
.post-7 .wc-block-grid__product .wc-block-grid__product-add-to-cart a {
  background: #B00629;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
.post-7 .wc-block-grid__product .woocommerce-Price-amount.amount {
  font-size: 14px;
}
.post-7 .wc-block-grid__product .wc-block-grid__product-title {
  color: #000;
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-variation-settings: "wght" 800 !important;
}

.search-results {
  max-width: 981px;
  margin: 30px auto;
  font-family: "Nunito";
  color: #000;
  font-size: 16px;
  font-variation-settings: "wght" 500 !important;
}
.search-results .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.search-results .search-form label {
  width: 100%;
}
.search-results .search-form input {
  border-radius: 16px;
  height: 42px;
  border: solid 1px #000;
  width: 100%;
  padding: 5px;
  background: transparent;
}
.search-results .search-form .search-submit {
  background: #B00629;
  text-align: center;
  color: #fff;
  height: 42px;
  border-radius: 50px;
  min-width: 200px;
  border: 0;
}
@media (max-width: 768px) {
  .search-results .search-form .search-submit {
    height: 45px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .search-results .search-form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
  }
  .search-results .search-form .search-submit {
    width: 100%;
  }
}
.search-results h1 {
  font-family: "Nunito";
  color: #B00629;
  font-size: 24px;
  font-variation-settings: "wght" 800 !important;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .search-results h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.search-results ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.search-results ul li a {
  color: #B00629;
  font-size: 24px;
  font-variation-settings: "wght" 500 !important;
}
.search-results ul li p {
  display: none;
}
.search-results p {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .search-results p {
    margin: 20px;
  }
}
.search-results .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #9F9F9F;
  font-size: 20px;
}
.search-results .nav-links a {
  color: #B00629;
}
.search-results .search-list {
  padding-left: 20px;
  padding-right: 20px;
}

.single_add_to_cart_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 52px;
  height: 52px;
  border: 2px solid #B00629;
  border-radius: 8px;
  background: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.single_add_to_cart_button::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("/wp-content/themes/adult/assets/img/bag-btn.svg") 0 0 no-repeat;
}

.how-it-works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FAF6EC;
  padding: 140px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}
@media (max-width: 1870px) {
  .how-it-works {
    padding: 140px 16px 50px 16px;
  }
}
.how-it-works .wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1840px;
}
.how-it-works .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 968px) {
  .how-it-works .head {
    gap: 16px;
    margin-bottom: 32px;
  }
}
@media (max-width: 1470px) {
  .how-it-works .head .h2 {
    font-size: 50px;
  }
}
.how-it-works .head p {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  text-align: center;
  color: #838383;
}
@media (max-width: 968px) {
  .how-it-works .head p {
    font-size: 18px;
  }
}
.how-it-works .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  border: 1px solid #b00629;
  border-radius: 50px;
  margin-bottom: 60px;
  background: #fff;
}
@media (max-width: 968px) {
  .how-it-works .tabs {
    margin-bottom: 48px;
  }
}
.how-it-works .tab-btn {
  background: #fff;
  border: 0px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 235px;
  height: 77px;
  border-radius: 50px;
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #B00629;
}
@media (max-width: 968px) {
  .how-it-works .tab-btn {
    width: 164px;
    height: 52px;
    font-size: 14px;
  }
}
@media (max-width: 340px) {
  .how-it-works .tab-btn {
    width: 150px;
  }
}
.how-it-works .tab-btn.active {
  background: #b00629;
  color: #fff;
}
.how-it-works .tab-content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 1580px) {
  .how-it-works .tab-content {
    gap: 16px;
  }
}
.how-it-works .tab-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.how-it-works .top_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media (max-width: 968px) {
  .how-it-works .top_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.how-it-works .top_block .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 110px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 380px;
  gap: 16px;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step {
    height: auto;
    padding: 110px 0 40px 0;
  }
}
.how-it-works .top_block .step p {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  text-align: center;
  color: #212121;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step p {
    font-size: 28px;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step p {
    font-size: 24px;
  }
}
.how-it-works .top_block .step .step_border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.how-it-works .top_block .step:nth-child(1) {
  max-width: 440px;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step:nth-child(1) {
    grid-column: 2/span 2;
  }
}
@media (max-width: 1400px) {
  .how-it-works .top_block .step:nth-child(1) {
    grid-column: 1/span 2;
    margin: 0 auto;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(1) {
    height: 248px;
    padding: 82px 0 0 0;
  }
}
.how-it-works .top_block .step:nth-child(1) .step_border {
  max-height: 332px;
}
.how-it-works .top_block .step:nth-child(2) {
  max-width: 195px;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step:nth-child(2) {
    grid-column: span 1;
  }
}
@media (max-width: 1400px) {
  .how-it-works .top_block .step:nth-child(2) {
    margin: 0 auto;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(2) {
    padding: 0;
    max-width: 28px;
    height: 100px;
    background: url("/wp-content/themes/adult/assets/img/step_6_smart.svg") top center no-repeat;
  }
}
.how-it-works .top_block .step:nth-child(2) .step_2 {
  position: absolute;
  bottom: 90px;
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(2) .step_2 {
    display: none;
  }
}
.how-it-works .top_block .step:nth-child(3) {
  max-width: 439px;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step:nth-child(3) {
    grid-column: span 2;
  }
}
@media (max-width: 1400px) {
  .how-it-works .top_block .step:nth-child(3) {
    margin: 0 auto;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(3) {
    height: 225px;
    padding: 62px 0 0 0;
  }
}
.how-it-works .top_block .step:nth-child(4) {
  max-width: 195px;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step:nth-child(4) {
    grid-row: 2;
    grid-column: 6/span 1;
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: hidden;
  }
}
@media (max-width: 1400px) {
  .how-it-works .top_block .step:nth-child(4) {
    grid-column: 5/span 1;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(4) {
    margin: 0 auto;
    padding: 0;
    max-width: 28px;
    height: 100px;
    background: url("/wp-content/themes/adult/assets/img/step_6_smart.svg") top center no-repeat;
  }
}
.how-it-works .top_block .step:nth-child(4) .step_4 {
  position: absolute;
  top: 90px;
}
@media (max-width: 1470px) {
  .how-it-works .top_block .step:nth-child(4) .step_4 {
    top: 30px;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(4) .step_4 {
    display: none;
  }
}
.how-it-works .top_block .step:nth-child(5) {
  max-width: 440px;
}
@media (max-width: 1580px) {
  .how-it-works .top_block .step:nth-child(5) {
    grid-column: 3/span 3;
    grid-row: 2;
    padding: 110px 0 110px 0;
    margin: 0 auto;
  }
}
@media (max-width: 1400px) {
  .how-it-works .top_block .step:nth-child(5) {
    grid-column: 2/span 3;
    margin: 0 auto;
  }
}
@media (max-width: 968px) {
  .how-it-works .top_block .step:nth-child(5) {
    height: 280px;
    padding: 68px 0 0 0;
  }
}
.how-it-works .bottom_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.how-it-works .bottom_block .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 426px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 433px;
  gap: 16px;
}
@media (max-width: 1280px) {
  .how-it-works .bottom_block .step {
    padding: 116px 0 0 0;
    margin-bottom: 130px;
  }
}
.how-it-works .bottom_block .step p {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  text-align: center;
  color: #212121;
  margin-bottom: 12px;
}
.how-it-works .bottom_block .bear_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 426px;
  height: auto;
}
.how-it-works .bottom_block .pos {
  max-width: 195px;
  height: 258px;
  position: absolute;
  top: -37px;
  right: -235px;
  background: url("/wp-content/themes/adult/assets/img/step_6.svg") 0 0 no-repeat;
}
@media (max-width: 1280px) {
  .how-it-works .bottom_block .pos {
    max-width: 28px;
    height: 100px;
    top: 0px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
    background: url("/wp-content/themes/adult/assets/img/step_6_smart.svg") 0 0 no-repeat;
  }
}
.how-it-works .step-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 88px;
  height: 41px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border: 1px solid #B00629;
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 18px;
  line-height: 96%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #B00629;
  border-radius: 50px;
  background: #fff;
}
.how-it-works #tab-0 {
  background-image: url("/wp-content/themes/adult/assets/img/digitalproduct.png");
  background-repeat: no-repeat;
  background-position: center calc(100% - 152px);
  background-size: contain;
}
.how-it-works #tab-1 {
  background-image: url("/wp-content/themes/adult/assets/img/printedbook.png");
  background-repeat: no-repeat;
  background-position: center calc(100% - 102px);
  background-size: contain;
}

.revies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FAF6EC;
  padding: 140px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 100px;
}
@media (max-width: 1870px) {
  .revies {
    padding: 140px 16px 50px 16px;
  }
}
.revies .h1 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  color: #212121;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media (max-width: 968px) {
  .revies .h1 {
    font-size: 38px;
    text-align: left;
  }
}
.revies .wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1840px;
}
@media (max-width: 1690px) {
  .revies .wraper {
    gap: 20px;
  }
}
@media (max-width: 978px) {
  .revies .wraper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.revies .blocktext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 445px;
}
.revies .wrap {
  width: 445px;
  position: relative;
  height: 261px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .revies .wrap {
    width: 300px;
    height: 263px;
    padding: 24px;
  }
}
.revies .recent-reviews {
  display: block;
  width: 100%;
  max-width: 1395px;
}
@media (max-width: 1690px) {
  .revies .recent-reviews {
    overflow: hidden;
  }
}
.revies .rew_list {
  display: none;
  width: 100%;
  max-width: 1395px;
  height: 261px;
}
.revies .rew_list.slick-initialized {
  display: block;
}
@media (max-width: 1690px) {
  .revies .rew_list {
    padding: 0 0 0 100px;
  }
}
@media (max-width: 968px) {
  .revies .rew_list {
    padding: 0 0 0 0px;
  }
}
@media (max-width: 768px) {
  .revies .rew_list {
    height: 263px;
  }
}
.revies .review-item {
  display: block;
  width: 465px;
  height: 261px;
  position: relative;
  padding: 0 10px 0 10px;
}
@media (max-width: 768px) {
  .revies .review-item {
    width: 310px;
    height: 263px;
    padding: 0 5px 0 5px;
  }
}
.revies .top_rew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.revies .top_rew .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 79px;
  height: 79px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 180px;
  overflow: hidden;
}
.revies .top_rew .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.revies .top_rew .meta_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.revies .top_rew .name {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #212121;
}
.revies .top_rew .date {
  font-variation-settings: "wght" 700;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
}
.revies .comment {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 130px;
  overflow: hidden;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  color: #838383;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  max-height: 6em;
}
.revies .slick-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  top: auto;
  left: -100px;
  bottom: 0;
}
@media (max-width: 1690px) {
  .revies .slick-prev {
    left: 0px;
  }
}
@media (max-width: 968px) {
  .revies .slick-prev {
    display: none !important;
  }
}
.revies .slick-prev::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: url("/wp-content/themes/adult/assets/img/chevron-left-black.svg") 0 0 no-repeat;
}
.revies .slick-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  right: auto;
  top: auto;
  left: -50px;
  bottom: 0;
}
@media (max-width: 1690px) {
  .revies .slick-next {
    left: 50px;
  }
}
@media (max-width: 968px) {
  .revies .slick-next {
    display: none !important;
  }
}
.revies .slick-next::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: url("/wp-content/themes/adult/assets/img/chevron-right_black.svg") 0 0 no-repeat;
}

.woocommerce p.stars a::before {
  color: #B00629;
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  background: #FAF6EC;
  padding: 100px 0 200px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 1600px) {
  .faq {
    gap: 20px;
  }
}
@media (max-width: 968px) {
  .faq {
    margin: 0 auto 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 50px 15px 100px 15px;
  }
}
.faq::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 510px;
  height: 448px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-image: url("/wp-content/themes/adult/assets/img/bg_footer_left.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 1040px) {
  .faq::before {
    display: none;
  }
}
.faq .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 910px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  z-index: 2;
}
@media (max-width: 968px) {
  .faq .container {
    padding: 0 0px 0 0px;
  }
}
.faq .h1 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  color: #212121;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media (max-width: 1440px) {
  .faq .h1 {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .faq .h1 {
    font-size: 38px;
  }
}
.faq.inpage {
  padding: 0 0 150px 0;
  background: none;
}
@media (max-width: 968px) {
  .faq.inpage .h1 {
    text-align: left;
    margin-bottom: 0;
  }
}
.faq.inpage::before {
  display: none;
}
.faq .faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 910px;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 968px) {
  .faq .faq-list {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.faq .faq-list .faq_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0px;
  position: relative;
}
@media (max-width: 968px) {
  .faq .faq-list .faq_item {
    border-radius: 0px;
    padding: 21px 16px;
  }
}
.faq .faq-list .faq_item .top_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .faq .faq-list .faq_item .top_item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.faq .faq-list .faq_item .top_item span:first-child {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #212121;
}
@media (max-width: 1440px) {
  .faq .faq-list .faq_item .top_item span:first-child {
    font-size: 24px;
  }
}
@media (max-width: 968px) {
  .faq .faq-list .faq_item .top_item span:first-child {
    font-size: 18px;
    line-height: 96%;
  }
}
@media (max-width: 768px) {
  .faq .faq-list .faq_item .top_item span:first-child {
    line-height: 120%;
  }
}
.faq .faq-list .faq_item .top_item .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 38px;
  height: 38px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: #B00629 url("/wp-content/themes/adult/assets/img/plus.svg") center center no-repeat;
  cursor: pointer;
  border-radius: 180px;
  -webkit-animation: rotateTo0 0.5s ease-in-out forwards;
          animation: rotateTo0 0.5s ease-in-out forwards;
}
@media (max-width: 968px) {
  .faq .faq-list .faq_item .top_item .plus {
    width: 28px;
    height: 28px;
    background: #B00629 url("/wp-content/themes/adult/assets/img/plus.svg") center center no-repeat;
  }
}
.faq .faq-list .faq_item .hidden_text {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 135%;
  color: #9F9F9F;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
@media (max-width: 968px) {
  .faq .faq-list .faq_item .hidden_text {
    font-size: 16px;
    line-height: 130%;
  }
}
.faq .faq-list .faq_item.active {
  gap: 8px;
}
.faq .faq-list .faq_item.active .plus {
  background: #B00629 url("/wp-content/themes/adult/assets/img/minus.svg") center center no-repeat;
  -webkit-animation: rotateTo90 0.5s ease-in-out forwards;
          animation: rotateTo90 0.5s ease-in-out forwards;
}
@media (max-width: 968px) {
  .faq .faq-list .faq_item.active .plus {
    background: #B00629 url("/wp-content/themes/adult/assets/img/minus.svg") center center no-repeat;
  }
}

@-webkit-keyframes rotateTo0 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@keyframes rotateTo0 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@-webkit-keyframes rotateTo90 {
  from {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotateTo90 {
  from {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 24px 40px 24px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 10px;
  list-style: none;
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 16px;
  line-height: 122%;
  color: #FFFFFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 968px) {
  .breadcrumbs {
    padding: 8px 16px 8px 16px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 15px;
  }
}
.breadcrumbs a {
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 16px;
  line-height: 122%;
  color: #FFFFFF;
}
.breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs li.colonticl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 7px;
  height: 16px;
  background: url("/wp-content/themes/adult/assets/img/bread_crambs_element.svg") 0 0 no-repeat;
}

.inkmedirty .breadcrumbs {
  color: #9F9F9F;
  margin-bottom: 0px !important;
}
.inkmedirty .breadcrumbs a {
  color: #9F9F9F;
}
.inkmedirty .breadcrumbs li.colonticl {
  background: url("/wp-content/themes/adult/assets/img/bread_crambs_element_gray.svg") 0 0 no-repeat;
}

.shadow-stroke-text {
  /* Основные стили шрифта */
  font-family: "Nunito", sans-serif;
  font-size: 50px; /* Размер шрифта, который будет масштабироваться CSS */
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4em;
  fill: transparent;
  /* 1. Делаем заливку текста прозрачной */
  color: transparent;
  /* 2. ГЛАВНОЕ: Используем text-shadow для создания обводки */
  text-shadow: 1px 1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, 1px 0px 0 #FFFFFF, -1px 0px 0 #FFFFFF, 0px 1px 0 #FFFFFF, 0px -1px 0 #FFFFFF, 2px 2px 0 #FFFFFF, -2px 2px 0 #FFFFFF, 2px -2px 0 #FFFFFF, -2px -2px 0 #FFFFFF, 2px 0px 0 #FFFFFF, -2px 0px 0 #FFFFFF, 0px 2px 0 #FFFFFF, 0px -2px 0 #FFFFFF, 3px 3px 0 #FFFFFF, -3px 3px 0 #FFFFFF, 3px -3px 0 #FFFFFF, -3px -3px 0 #FFFFFF, 3px 0px 0 #FFFFFF, -3px 0px 0 #FFFFFF, 0px 3px 0 #FFFFFF, 0px -3px 0 #FFFFFF;
  /* Дополнительное сглаживание для повышения качества */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.svg_txt {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
}

.svg_txt_wrapper {
  /* Фоновый цвет для демонстрации прозрачности */
  background-color: #A30018;
  padding: 20px;
}

.responsive-svg-text {
  width: 100%; /* SVG займет всю ширину родителя */
  height: auto; /* Высота будет адаптивной, сохраняя соотношение сторон из viewBox */
  /* background-color: lightgray; /* Для отладки */
}

.svg-styled-text {
  font-family: "Nunito", sans-serif; /* Подключаем шрифт */
  font-size: 40px; /* Размер шрифта в единицах viewBox (подберите под свой текст) */
  text-transform: uppercase; /* Текст в верхнем регистре */
  /* Делаем заливку прозрачной */
  fill: transparent;
  /* Обводка через CSS-свойства (может быть не идеально плавной на стыках) */
  -webkit-text-stroke-width: 1.5px; /* Толщина обводки */
  -webkit-text-stroke-color: #FFFFFF; /* Цвет обводки */
  /* Для Firefox, если нужен префикс: */
  /* -moz-text-stroke-width: 1.5px; */
  /* -moz-text-stroke-color: #FFFFFF; */
  /* Улучшенное сглаживание (может помочь) */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 52px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 80px;
}
@media (max-width: 1545px) {
  .about {
    padding: 30px 30px 0 30px;
  }
}
@media (max-width: 968px) {
  .about {
    margin-bottom: 61px;
  }
}
.about .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1522px;
  height: auto;
  min-height: 674px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1200px) {
  .about .wrap {
    min-height: 500px;
  }
}
@media (max-width: 968px) {
  .about .wrap {
    min-height: auto;
    padding: 0 0 458px 0;
    background-size: auto;
  }
}
@media (max-width: 767px) {
  .about .wrap {
    padding: 0 0 430px 0;
  }
}
@media (max-width: 360px) {
  .about .wrap {
    background-size: contain;
  }
}
.about .wrap .cloud_1 {
  position: absolute;
  left: 0;
  top: 70px;
}
@media (max-width: 767px) {
  .about .wrap .cloud_1 {
    top: 270px;
  }
}
.about .wrap .cloud_1::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 357px;
  height: 237px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/ab_cloud_1.svg");
}
@media (max-width: 767px) {
  .about .wrap .cloud_1::before {
    width: 240px;
    height: 237px;
    background-size: 100%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
.about .wrap .cloud_2 {
  position: absolute;
  left: 433px;
  top: 285px;
}
.about .wrap .cloud_2::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 339px;
  height: 205px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/ab_cloud_2.svg");
}
@media (max-width: 767px) {
  .about .wrap .cloud_2 {
    display: none;
  }
}
.about .wrap .cloud_3 {
  position: absolute;
  top: 75px;
  right: 0;
}
.about .wrap .cloud_3::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 293px;
  height: 196px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/ab_cloud_3.svg");
}
@media (max-width: 767px) {
  .about .wrap .cloud_3 {
    display: none;
  }
}
.about .wrap .arrow {
  position: absolute;
  left: 750px;
  top: 240px;
}
@media (max-width: 767px) {
  .about .wrap .arrow {
    left: 40px;
    top: 450px;
  }
}
.about .wrap .arrow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 411px;
  height: 395px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/ab_cloud_arrow.svg");
}
@media (max-width: 767px) {
  .about .wrap .arrow::before {
    width: 267px;
    height: 400px;
    background-size: 100%;
  }
}
.about .wrap .h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #FFFFFF;
  margin-bottom: 27px;
  text-align: center;
}
@media (max-width: 1470px) {
  .about .wrap .h1 {
    font-size: 70px;
    max-width: 670px;
  }
}
@media (max-width: 968px) {
  .about .wrap .h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 0 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1380px) {
  .about_description {
    padding: 0 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .about_description {
    padding: 0 15px 50px 15px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about_description {
    margin-top: 80px;
  }
}
.about_description .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1114px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 900;
  font-size: 60px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 1470px) {
  .about_description .wrap {
    font-size: 40px;
    max-width: 735px;
  }
}
@media (max-width: 968px) {
  .about_description .wrap {
    font-size: 32px;
  }
}
.about_description .wrap .aboute_text_1 {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/adult/assets/img/about_text_1.svg");
}
@media (max-width: 1280px) {
  .about_description .wrap .aboute_text_1 {
    background-position: center bottom;
    background-size: 67%;
  }
}
@media (max-width: 767px) {
  .about_description .wrap .aboute_text_1 {
    background-position: center bottom;
    background-image: url("/wp-content/themes/adult/assets/img/about_text_1_sm.svg");
    background-size: 100%;
    height: 330px;
  }
}
.about_description picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1440px) {
  .about_description picture {
    max-width: 756px;
    max-height: 285px;
  }
  .about_description picture img {
    max-width: 756px;
    max-height: 285px;
  }
}
@media (max-width: 1440px) {
  .about_description picture {
    font-size: 40px;
  }
}
@media (max-width: 968px) {
  .about_description picture img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 100px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1476px) {
  .subversive {
    padding: 100px 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .subversive {
    padding: 50px 15px 50px 15px;
  }
}
.subversive .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1476px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 968px) {
  .subversive .wrap {
    gap: 32px;
  }
}
.subversive .wrap .h2 {
  color: #FFFFFF;
}
@media (max-width: 1470px) {
  .subversive .wrap .h2 {
    font-size: 50px;
  }
}
.subversive .lists_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1430px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 53px;
}
@media (max-width: 1476px) {
  .subversive .lists_subversive {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1380px) {
  .subversive .lists_subversive {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.subversive .lists_subversive .item_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 420px;
  height: 365px;
  border-radius: 60px;
  position: relative;
  padding: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .subversive .lists_subversive .item_subversive {
    padding: 40px;
  }
}
@media (max-width: 1480px) {
  .subversive .lists_subversive .item_subversive {
    width: 368px;
    height: 341px;
  }
}
@media (max-width: 1024px) {
  .subversive .lists_subversive .item_subversive {
    width: 288px;
    height: 262px;
  }
}
@media (max-width: 968px) {
  .subversive .lists_subversive .item_subversive {
    width: 288px;
    height: 262px;
    padding: 40px;
  }
}
.subversive .lists_subversive .item_subversive .img_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.subversive .lists_subversive .item_subversive .text {
  position: relative;
  z-index: 2;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  color: #B00629;
}
@media (max-width: 1470px) {
  .subversive .lists_subversive .item_subversive .text {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .subversive .lists_subversive .item_subversive .text {
    font-size: 24px;
  }
}
@media (max-width: 968px) {
  .subversive .lists_subversive .item_subversive .text {
    font-size: 24px;
  }
}
.subversive .lists_subversive .item_subversive:nth-child(1) {
  top: 27px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media (max-width: 968px) {
  .subversive .lists_subversive .item_subversive:nth-child(1) {
    top: 10px;
  }
}
.subversive .lists_subversive .item_subversive:nth-child(2) {
  height: 365px;
}
@media (max-width: 1024px) {
  .subversive .lists_subversive .item_subversive:nth-child(2) {
    height: 280px;
  }
}
@media (max-width: 968px) {
  .subversive .lists_subversive .item_subversive:nth-child(2) {
    height: 262px;
  }
}
.subversive .lists_subversive .item_subversive:nth-child(3) {
  top: 27px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media (max-width: 968px) {
  .subversive .lists_subversive .item_subversive:nth-child(3) {
    top: 0px;
  }
}

.draws {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 100px 0;
}
@media (max-width: 1380px) {
  .draws {
    padding: 0 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .draws {
    padding: 0 0px 50px 0px;
  }
}
@media (max-width: 550px) {
  .draws {
    padding: 0 15px 50px 15px;
  }
}
.draws .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1350px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 620px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 968px) {
  .draws .wrap {
    background-size: cover;
  }
}
@media (max-width: 550px) {
  .draws .wrap {
    background-size: auto;
    padding: 0 0 422px 0;
  }
}
.draws .wrap .cloud_1 {
  position: absolute;
  left: 0px;
  top: 205px;
}
@media (max-width: 767px) {
  .draws .wrap .cloud_1 {
    top: 470px;
  }
}
.draws .wrap .cloud_1::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 341px;
  height: 198px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/draw_cloud_1.svg");
}
@media (max-width: 1280px) {
  .draws .wrap .cloud_1::before {
    background-size: 80%;
  }
}
@media (max-width: 767px) {
  .draws .wrap .cloud_1::before {
    width: 167px;
    height: 200px;
    background-size: 100%;
  }
}
.draws .wrap .cloud_2 {
  position: absolute;
  left: 779px;
  top: 550px;
}
@media (max-width: 767px) {
  .draws .wrap .cloud_2 {
    left: 150px;
    top: 570px;
  }
}
.draws .wrap .cloud_2::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 294px;
  height: 198px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/draw_cloud_2.svg");
}
@media (max-width: 1280px) {
  .draws .wrap .cloud_2::before {
    background-size: 80%;
  }
}
@media (max-width: 767px) {
  .draws .wrap .cloud_2::before {
    background-image: url("/wp-content/themes/adult/assets/img/plane.svg");
    width: 90px;
    height: 60px;
    background-size: 100%;
  }
}
.draws .wrap .cloud_3 {
  position: absolute;
  right: 0px;
  top: 100px;
}
@media (max-width: 767px) {
  .draws .wrap .cloud_3 {
    top: 630px;
    z-index: 5;
  }
}
.draws .wrap .cloud_3::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 231px;
  height: 137px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/draw_cloud_3.svg");
}
@media (max-width: 1280px) {
  .draws .wrap .cloud_3::before {
    background-size: 80%;
  }
}
@media (max-width: 767px) {
  .draws .wrap .cloud_3::before {
    width: 140px;
    height: 95px;
    background-size: 100%;
    background-image: url("/wp-content/themes/adult/assets/img/draw_cloud_2.svg");
  }
}
.draws .wrap .bear {
  position: absolute;
  left: 190px;
  top: 510px;
}
@media (max-width: 1470px) {
  .draws .wrap .bear {
    left: 210px;
  }
}
.draws .wrap .bear::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 360px;
  height: 460px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/banna_white.svg");
}
@media (max-width: 767px) {
  .draws .wrap .bear::before {
    width: 135px;
    height: 198px;
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .draws .wrap .bear {
    left: 0;
    top: 600px;
  }
}
.draws .wrap .plane_arrow {
  position: absolute;
  left: 600px;
  top: 412px;
}
@media (max-width: 1470px) {
  .draws .wrap .plane_arrow {
    top: 445px;
  }
}
@media (max-width: 767px) {
  .draws .wrap .plane_arrow {
    left: unset;
    right: 7px;
    top: 670px;
  }
}
.draws .wrap .plane_arrow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 760px;
  height: 600px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/ab_plane_arrow.svg");
}
@media (max-width: 1470px) {
  .draws .wrap .plane_arrow::before {
    width: 685px;
    background-size: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1350px) {
  .draws .wrap .plane_arrow::before {
    width: 610px;
  }
}
@media (max-width: 767px) {
  .draws .wrap .plane_arrow::before {
    width: 200px;
    height: 204px;
    background-image: url("/wp-content/themes/adult/assets/img/arrow_sm.svg");
    background-size: 100%;
  }
}
.draws .h2 {
  color: #fff;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 547px;
}
@media (max-width: 1470px) {
  .draws .h2 {
    font-size: 50px;
  }
}
.draws .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 448px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  gap: 20px;
}

.erotic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 100px 0 100px 0;
}
@media (max-width: 1470px) {
  .erotic {
    padding: 0 15px 0 15px;
  }
}
@media (max-width: 968px) {
  .erotic {
    padding: 0 15px 50px 15px;
  }
}
.erotic .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1471px;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 570px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .erotic .wrap {
    max-width: 1380px;
    padding: 0 0 0 50px;
  }
}
@media (max-width: 968px) {
  .erotic .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: auto;
    padding: 0 0 368px 0;
    background-size: auto;
  }
}
@media (max-width: 768px) {
  .erotic .wrap {
    margin-top: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .erotic .wrap .h2 {
    margin: 0 0 20px;
  }
}
.erotic .wrap .plane_arrow {
  position: absolute;
  left: 42px;
  top: 390px;
}
@media (max-width: 1470px) {
  .erotic .wrap .plane_arrow {
    top: 385px;
    left: 85px;
  }
}
@media (max-width: 767px) {
  .erotic .wrap .plane_arrow {
    top: 600px;
  }
}
.erotic .wrap .plane_arrow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 584px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/erotic_plane.svg");
}
@media (max-width: 1470px) {
  .erotic .wrap .plane_arrow::before {
    width: 537px;
    height: 181px;
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .erotic .wrap .plane_arrow::before {
    width: 286px;
    height: 100px;
    background-image: url("/wp-content/themes/adult/assets/img/erotic_plane_sm.svg");
    background-size: 100%;
  }
}
.erotic .wrap .bear {
  position: absolute;
  right: 335px;
  top: 25px;
}
@media (max-width: 1470px) {
  .erotic .wrap .bear {
    right: 235px;
    top: 15px;
  }
}
@media (max-width: 767px) {
  .erotic .wrap .bear {
    right: unset;
    left: 20px;
    top: 345px;
  }
}
.erotic .wrap .bear::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 394px;
  height: 377px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/kiwi_WHITE_reflected.svg");
}
@media (max-width: 1470px) {
  .erotic .wrap .bear::before {
    width: 315px;
    height: 302px;
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .erotic .wrap .bear::before {
    width: 180px;
    height: 173px;
    background-size: 100%;
  }
}
.erotic .wrap .cloud_1 {
  position: absolute;
  right: 0;
  top: 75px;
}
@media (max-width: 767px) {
  .erotic .wrap .cloud_1 {
    right: unset;
    left: 0;
    top: 370px;
  }
}
.erotic .wrap .cloud_1::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 731px;
  height: 422px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/erotic_cloud.svg");
}
@media (max-width: 1470px) {
  .erotic .wrap .cloud_1::before {
    width: 589px;
    right: 30px;
    background-size: 100%;
  }
}
@media (max-width: 767px) {
  .erotic .wrap .cloud_1::before {
    width: 345px;
    height: 200px;
    background-size: 100%;
  }
}
.erotic .h2 {
  color: #fff;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  max-width: 547px;
  text-align: left;
}
@media (max-width: 1470px) {
  .erotic .h2 {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .erotic .h2 {
    max-width: 448px;
  }
}
.erotic .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 448px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  gap: 20px;
}
@media (max-width: 968px) {
  .erotic .text {
    max-width: 448px;
  }
}

.digital {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 100px 0 100px 0;
}
@media (max-width: 1470px) {
  .digital {
    padding: 0 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .digital {
    padding: 50px 0 50px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .digital:before {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 328px;
    height: 262px;
    background-image: url("/wp-content/themes/adult/assets/img/why_cloud.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
  }
  .digital::after {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 448px;
    height: 97px;
    background-image: url("/wp-content/themes/adult/assets/img/digital_smart_2.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom;
  }
}
@media (max-width: 767px) {
  .digital::after {
    background-position: 40px bottom;
  }
}
.digital .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1466px;
  padding: 120px 195px 0 0;
  margin: 0 auto;
  min-height: 703px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .digital .wrap {
    max-width: 1380px;
    padding: 230px 195px 0 0;
  }
}
@media (max-width: 1300px) {
  .digital .wrap {
    padding: 0 195px 0 0;
    min-height: 800px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: center center;
  }
}
@media (max-width: 1150px) {
  .digital .wrap {
    padding: 0 50px 0 0;
    min-height: 600px;
  }
}
@media (max-width: 968px) {
  .digital .wrap {
    background: none;
    padding: 0;
    min-height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px 0 15px;
  }
}
.digital .wrap .bear {
  position: absolute;
  left: 360px;
  top: 60px;
}
@media (max-width: 1470px) {
  .digital .wrap .bear {
    top: 165px;
    left: 360px;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .digital .wrap .bear {
    top: 183px;
    left: 304px;
  }
}
.digital .wrap .bear::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 330px;
  height: 407px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/avocado_WHITE.svg");
}
@media (max-width: 1470px) {
  .digital .wrap .bear::before {
    width: 242px;
    height: 388px;
    background-size: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .digital .wrap .bear::before {
    width: 202px;
    height: 388px;
  }
}
@media (max-width: 768px) {
  .digital .wrap .bear::before {
    width: 135px;
    height: 220px;
    background-size: 100%;
  }
}
@media (max-width: 768px) {
  .digital .wrap .bear {
    left: unset;
    right: 40px;
    top: -305px;
  }
}
.digital .wrap .cloud_1 {
  position: absolute;
  left: 0;
  top: 70px;
}
@media (max-width: 1470px) {
  .digital .wrap .cloud_1 {
    top: 250px;
    left: 20px;
  }
}
.digital .wrap .cloud_1::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 625px;
  height: 410px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/why_cloud.svg");
}
@media (max-width: 1470px) {
  .digital .wrap .cloud_1::before {
    width: 600px;
    height: 390px;
    background-size: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .digital .wrap .cloud_1::before {
    width: 510px;
  }
}
@media (max-width: 768px) {
  .digital .wrap .cloud_1::before {
    display: none;
  }
}
.digital .wrap .plane_arrow {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1470px) {
  .digital .wrap .plane_arrow {
    top: 105px;
    right: 0;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .digital .wrap .plane_arrow {
    right: 20px;
  }
}
.digital .wrap .plane_arrow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 517px;
  height: 707px;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url("/wp-content/themes/adult/assets/img/erotic_digital_plane.svg");
}
@media (max-width: 1470px) {
  .digital .wrap .plane_arrow::before {
    width: 495px;
    background-size: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .digital .wrap .plane_arrow::before {
    width: 475px;
  }
}
@media (max-width: 768px) {
  .digital .wrap .plane_arrow {
    display: none;
  }
}
.digital .h2 {
  color: #fff;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  max-width: 448px;
  text-align: left;
}
@media (max-width: 1470px) {
  .digital .h2 {
    font-size: 50px;
  }
}
@media (min-width: 769px) and (max-width: 1350px) {
  .digital .h2 {
    margin: 0 0 20px;
  }
}
.digital .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 448px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #FFFFFF;
  gap: 20px;
}

.standfor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 100px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1476px) {
  .standfor {
    padding: 100px 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .standfor {
    padding: 50px 15px 50px 15px;
  }
}
.standfor .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1476px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 1470px) {
  .standfor .wrap {
    max-width: 1220px;
  }
}
.standfor .wrap .h2 {
  color: #FFFFFF;
}
@media (max-width: 1470px) {
  .standfor .wrap .h2 {
    font-size: 50px;
  }
}
.standfor .lists_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1430px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 51px;
}
@media (max-width: 1476px) {
  .standfor .lists_subversive {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 1380px) {
  .standfor .lists_subversive {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.standfor .lists_subversive .item_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 420px;
  height: 400px;
  border-radius: 60px;
  position: relative;
  padding: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .standfor .lists_subversive .item_subversive {
    width: 368px;
    height: 341px;
  }
}
@media (max-width: 968px) {
  .standfor .lists_subversive .item_subversive {
    width: 100%;
    max-width: 328px;
    height: 304px;
  }
}
.standfor .lists_subversive .item_subversive .img_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.standfor .lists_subversive .item_subversive .text {
  position: relative;
  z-index: 2;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  color: #B00629;
}
@media (max-width: 1024px) {
  .standfor .lists_subversive .item_subversive .text {
    font-size: 24px;
  }
}
.standfor .lists_subversive .item_subversive .text a {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  color: #B00629;
}
.standfor .h3 {
  padding: 0 0 8px 0;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contacts .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1476px;
  padding: 0 0 144px 0;
  position: relative;
}
@media (max-width: 968px) {
  .contacts .wrap {
    padding: 0 15px 144px 15px;
  }
}
.contacts .wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 485px;
  height: 502px;
  z-index: 2;
  background: url("/wp-content/themes/adult/assets/img/contacts_back_1.svg") 0 0 no-repeat;
}
@media (max-width: 1470px) {
  .contacts .wrap::before {
    bottom: -21px;
    z-index: 10;
    left: 40px;
    width: 450px;
    height: 465px;
    background-size: 100% !important;
  }
}
@media (max-width: 975px) {
  .contacts .wrap::before {
    display: none;
  }
}
.contacts .wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 480px;
  height: 352px;
  background: url("/wp-content/themes/adult/assets/img/contacts_back_2.svg") 0 0 no-repeat;
}
@media (max-width: 1470px) {
  .contacts .wrap::after {
    top: 100px;
    right: 40px;
    width: 440px;
    height: 344px;
    background-size: 100% !important;
  }
}
@media (max-width: 975px) {
  .contacts .wrap::after {
    position: relative;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 222px;
    height: 278px;
    margin-bottom: 60px;
    background: url("/wp-content/themes/adult/assets/img/contacts_back_2_smart.svg") 0 0 no-repeat;
  }
}
@media (max-width: 767px) {
  .contacts .wrap::after {
    top: 0px;
    margin-bottom: 60px;
  }
}
.contacts .wrap .h1 {
  text-align: center;
  margin-bottom: 32px;
  margin-top: 30px;
}
@media (max-width: 1470px) {
  .contacts .wrap .h1 {
    margin-bottom: 42px;
    margin-top: 40px;
    font-size: 70px;
  }
}
@media (max-width: 975px) {
  .contacts .wrap .h1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 24px;
  }
}
.contacts .wrap .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 640px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 120px;
}
@media (max-width: 975px) {
  .contacts .wrap .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 42px;
  }
}
.contacts .wrap .text p {
  font-size: inherit;
  color: inherit;
}
.contacts .wrap .emailblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 975px) {
  .contacts .wrap .emailblock {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    gap: 24px;
  }
}
.contacts .wrap .emailblock .title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 1470px) {
  .contacts .wrap .emailblock .title {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .contacts .wrap .emailblock .title {
    font-size: 38px;
  }
}
.contacts .wrap .emailblock .text_in {
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 24px;
  line-height: 135%;
  color: #FFFFFF;
}
.contacts .wrap .emailblock .h3 {
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0 0 8px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .contacts .wrap .emailblock .h3 {
    font-size: 32px;
  }
}
@media (max-width: 968px) {
  .contacts .wrap .emailblock .h3 {
    font-size: 20px;
  }
}

.wraper_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: #FAF6EC;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wraper_contact::before {
  position: absolute;
  inset: 0;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-image: url("/wp-content/themes/adult/assets/img/ellipse_contact.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 0;
}
.wraper_contact::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(180deg);
          transform: translate(-50%, 0) rotate(180deg);
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-image: url("/wp-content/themes/adult/assets/img/ellipse_contact.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 0;
}
.wraper_contact > * {
  position: relative;
  z-index: 1;
}
.wraper_contact .form_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 910px;
  padding: 150px 0 200px 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 968px) {
  .wraper_contact .form_block {
    padding: 150px 15px 100px 15px;
  }
}
@media (max-width: 450px) {
  .wraper_contact .form_block {
    padding: 75px 15px 100px 15px;
  }
}
.wraper_contact .form_block .bear {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin-bottom: 16px;
}
@media (max-width: 1470px) {
  .wraper_contact .form_block .bear {
    max-width: 380px;
  }
}
.wraper_contact .form_block .title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #212121;
  margin-bottom: 24px;
}
@media (max-width: 1470px) {
  .wraper_contact .form_block .title {
    font-size: 50px;
  }
}
@media (max-width: 450px) {
  .wraper_contact .form_block .title {
    font-size: 38px;
  }
}
.wraper_contact .form_block .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 520px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #838383;
  margin-bottom: 48px;
}
@media (max-width: 1470px) {
  .wraper_contact .form_block .text {
    font-size: 32px;
  }
}
@media (max-width: 450px) {
  .wraper_contact .form_block .text {
    font-size: 24px;
  }
}
.wraper_contact .form_block .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1470px) {
  .wraper_contact .form_block .form {
    width: 445px;
  }
}
@media (max-width: 767px) {
  .wraper_contact .form_block .form {
    width: 100%;
  }
}
.wraper_contact .form_block .form .hidden-fields-container {
  display: none;
}
.wraper_contact .form_block .form .input_pole {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1470px) {
  .wraper_contact .form_block .form .input_pole {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 700px) {
  .wraper_contact .form_block .form .input_pole {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wraper_contact .form_block .form .input_pole input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  background: none;
  height: 52px;
  padding: 0 0 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #000;
  line-height: 1;
}
.wraper_contact .form_block .form .input_pole input::-webkit-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
}
.wraper_contact .form_block .form .input_pole input::-moz-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
}
.wraper_contact .form_block .form .input_pole input:-ms-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
}
.wraper_contact .form_block .form .input_pole input::-ms-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
}
.wraper_contact .form_block .form .input_pole input::placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
}
.wraper_contact .form_block .form .input_ob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.wraper_contact .form_block .form .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 140px;
  position: relative;
  margin-bottom: 32px;
}
.wraper_contact .form_block .form .textarea textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: none;
  border: 0;
  outline: 0;
  padding: 16px 0 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #000;
  line-height: 1;
}
.wraper_contact .form_block .form .textarea textarea::-webkit-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
  padding: 0;
}
.wraper_contact .form_block .form .textarea textarea::-moz-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
  padding: 0;
}
.wraper_contact .form_block .form .textarea textarea:-ms-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
  padding: 0;
}
.wraper_contact .form_block .form .textarea textarea::-ms-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
  padding: 0;
}
.wraper_contact .form_block .form .textarea textarea::placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  color: #9F9F9F;
  line-height: 1;
  padding: 0;
}
.wraper_contact .form_block .btn_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 445px;
  height: 58px;
  background: #B00629;
  border-radius: 50px;
  border: 0;
  outline: 0;
  margin: 0 auto;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 1470px) {
  .wraper_contact .form_block .btn_form {
    max-width: 445px;
    height: 58px;
  }
}
.wraper_contact .form_block .text_bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 135%;
  color: #9F9F9F;
}
.wraper_contact .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1470px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 200px 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .wraper_contact .social {
    padding: 0 15px 200px 15px;
  }
}
@media (max-width: 968px) {
  .wraper_contact .social {
    padding: 0 15px 100px 15px;
  }
}
.wraper_contact .social::before {
  position: absolute;
  top: 70px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  width: 191px;
  height: 188px;
  background: url("/wp-content/themes/adult/assets/img/heart1.svg") 0 0 no-repeat;
}
@media (max-width: 968px) {
  .wraper_contact .social::before {
    display: none;
  }
}
.wraper_contact .social::after {
  position: absolute;
  top: 276px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  width: 191px;
  height: 188px;
  background: url("/wp-content/themes/adult/assets/img/heart1.svg") 0 0 no-repeat;
}
@media (max-width: 968px) {
  .wraper_contact .social::after {
    display: none;
  }
}
.wraper_contact .social .soc_pic {
  max-width: 1000px;
}
@media (max-width: 1440px) {
  .wraper_contact .social .soc_pic {
    max-width: 981px;
  }
}
.wraper_contact .social .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #212121;
  margin-bottom: 24px;
}
@media (max-width: 1470px) {
  .wraper_contact .social .title {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .wraper_contact .social .title {
    font-size: 38px;
  }
}
.wraper_contact .social .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 574px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #838383;
  margin-bottom: 48px;
}
@media (max-width: 968px) {
  .wraper_contact .social .description {
    font-size: 24px;
    text-align: left;
  }
}
.wraper_contact .social picture img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  max-width: 1470px;
}
.wraper_contact .social .footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  gap: 90px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .wraper_contact .social .footer__socials {
    gap: 22px;
  }
  .wraper_contact .social .footer__socials img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 64px;
    height: 64px;
  }
}

@media (max-width: 968px) {
  .faq.inpage {
    padding: 0 15px 150px 15px;
  }
}

.ink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 52px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
}
@media (max-width: 1545px) {
  .ink {
    padding: 30px 15px 0 15px;
  }
}
@media (max-width: 968px) {
  .ink {
    margin-bottom: 24px;
  }
}
.ink .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1522px;
  height: auto;
}
.ink .wrap .h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #B00629;
  margin-bottom: 27px;
  text-align: center;
}
@media (max-width: 1470px) {
  .ink .wrap .h1 {
    font-size: 70px;
    max-width: 670px;
  }
}
@media (max-width: 968px) {
  .ink .wrap .h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.ink .wrap .h3 {
  padding: 0 0 8px 0;
}

.inkfor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 30px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1476px) {
  .inkfor {
    padding: 30px 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .inkfor {
    padding: 30px 15px 50px 15px;
  }
}
.inkfor .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1476px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.inkfor .wrap .h2 {
  color: #FFFFFF;
}
.inkfor .lists_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1450px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1380px) {
  .inkfor .lists_subversive {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.inkfor .lists_subversive .item_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 470px;
  height: 470px;
  border-radius: 0px;
  position: relative;
  padding: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .inkfor .lists_subversive .item_subversive {
    width: 372px;
    height: 372px;
  }
}
@media (max-width: 1405px) {
  .inkfor .lists_subversive .item_subversive {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 968px) {
  .inkfor .lists_subversive .item_subversive {
    width: 100%;
    max-width: 328px;
    height: 304px;
  }
}
.inkfor .lists_subversive .item_subversive .img_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.inkfor .lists_subversive .item_subversive .text {
  position: relative;
  z-index: 2;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #B00629;
}
.inkfor .lists_subversive .item_subversive .text a {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #B00629;
}
@media (max-width: 1470px) {
  .inkfor .lists_subversive .item_subversive .text a {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .inkfor .lists_subversive .item_subversive .text {
    font-size: 38px;
  }
  .inkfor .lists_subversive .item_subversive .text a {
    font-size: 38px;
  }
}
.inkfor .h3 {
  padding: 0 0 8px 0;
}

.ink_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 100px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1380px) {
  .ink_description {
    padding: 0 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .ink_description {
    padding: 0 15px 50px 15px;
    gap: 40px;
  }
}
.ink_description .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1114px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 900;
  font-size: 60px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B00629;
}
@media (max-width: 1470px) {
  .ink_description .wrap {
    font-size: 40px;
  }
}
@media (max-width: 968px) {
  .ink_description .wrap {
    font-size: 32px;
  }
}
.ink_description .short_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 602px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  color: #838383;
}
@media (max-width: 968px) {
  .ink_description .short_text {
    font-size: 24px;
  }
}
.ink_description picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 968px) {
  .ink_description picture img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.whatyoullfind {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 100px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1476px) {
  .whatyoullfind {
    padding: 30px 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .whatyoullfind {
    padding: 30px 15px 50px 15px;
  }
}
.whatyoullfind .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1841px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.whatyoullfind .wrap .h2 {
  color: #FFFFFF;
}
.whatyoullfind .lists_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1841px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  position: relative;
}
.whatyoullfind .lists_subversive::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 440px;
  height: 149px;
  position: absolute;
  top: 0px;
  left: 35%;
  background: url("/wp-content/themes/adult/assets/img/drops.svg") 0 0 no-repeat;
}
@media (max-width: 1470px) {
  .whatyoullfind .lists_subversive::before {
    max-width: 280px;
    background-size: 100%;
    left: 33%;
  }
}
@media (max-width: 1360px) {
  .whatyoullfind .lists_subversive::before {
    display: none;
  }
}
@media (max-width: 1360px) {
  .whatyoullfind .lists_subversive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.whatyoullfind .lists_subversive .item_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 915px;
  height: 792px;
  border-radius: 0px;
  position: relative;
  padding: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .whatyoullfind .lists_subversive .item_subversive {
    width: 775px;
    height: 668px;
  }
}
.whatyoullfind .lists_subversive .item_subversive:first-child {
  width: 776px;
  height: 825px;
}
@media (max-width: 1470px) {
  .whatyoullfind .lists_subversive .item_subversive:first-child {
    width: 525px;
    height: 558px;
  }
}
@media (max-width: 968px) {
  .whatyoullfind .lists_subversive .item_subversive:first-child {
    width: 100%;
    max-width: 328px;
    height: 304px;
    padding: 0px;
  }
}
.whatyoullfind .lists_subversive .item_subversive .img_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 968px) {
  .whatyoullfind .lists_subversive .item_subversive:nth-child(2) {
    width: 100%;
    max-width: 328px;
    height: auto;
    padding: 0px;
  }
  .whatyoullfind .lists_subversive .item_subversive:nth-child(2) .img_sub {
    display: none;
  }
}
.whatyoullfind .lists_subversive .item_subversive .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 495px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1470px) {
  .whatyoullfind .lists_subversive .item_subversive .text {
    margin-top: 35px;
  }
}
.whatyoullfind .lists_subversive .item_subversive .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #212121;
  margin-bottom: 32px;
}
@media (max-width: 1470px) {
  .whatyoullfind .lists_subversive .item_subversive .title {
    font-size: 50px;
  }
}
.whatyoullfind .lists_subversive .item_subversive .limit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 968px) {
  .whatyoullfind .lists_subversive .item_subversive .limit_list {
    margin-bottom: 32px;
  }
}
.whatyoullfind .lists_subversive .item_subversive .limit_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  counter-increment: item;
  gap: 0 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.whatyoullfind .lists_subversive .item_subversive .limit_list li::before {
  content: counter(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;
  border: 1px solid #B00629;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
}
.whatyoullfind .lists_subversive .item_subversive .limit_list li .wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10px;
}
.whatyoullfind .lists_subversive .item_subversive .limit_list li .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 35px;
  color: #838383;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.whatyoullfind .lists_subversive .item_subversive .limit_list li .sub_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
}
@media (max-width: 968px) {
  .whatyoullfind .lists_subversive .item_subversive .limit_list li .sub_text {
    font-size: 16px;
    line-height: 130%;
  }
}
.whatyoullfind .lists_subversive .item_subversive .link_lim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0 0 6px 0;
}
.whatyoullfind .h3 {
  padding: 0 0 8px 0;
}

.inside_drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 30px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1476px) {
  .inside_drop {
    padding: 30px 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .inside_drop {
    padding: 50px 15px 50px 15px;
  }
}
.inside_drop .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1450px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 968px) {
  .inside_drop .wrap {
    gap: 40px;
  }
}
.inside_drop .wrap .h2 {
  color: #212121;
}
.inside_drop .lists_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1449px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1476px) {
  .inside_drop .lists_subversive {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1250px;
  }
}
@media (max-width: 1440px) {
  .inside_drop .lists_subversive {
    max-width: 1200px;
  }
}
@media (max-width: 1380px) {
  .inside_drop .lists_subversive {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.inside_drop .lists_subversive .item_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 470px;
  height: 470px;
  border-radius: 0px;
  position: relative;
  padding: 85px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .inside_drop .lists_subversive .item_subversive {
    width: 377px;
    height: 377px;
  }
}
@media (max-width: 968px) {
  .inside_drop .lists_subversive .item_subversive {
    width: 100%;
    max-width: 328px;
    height: 304px;
  }
}
.inside_drop .lists_subversive .item_subversive .img_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.inside_drop .lists_subversive .item_subversive .text {
  position: relative;
  z-index: 2;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  text-align: center;
  color: #212121;
}
@media (max-width: 1470px) {
  .inside_drop .lists_subversive .item_subversive .text {
    font-size: 30px;
  }
}
@media (max-width: 968px) {
  .inside_drop .lists_subversive .item_subversive .text {
    font-size: 24px;
  }
}
.inside_drop .h3 {
  padding: 0 0 8px 0;
}

.lookbooks {
  overflow: hidden;
}
.lookbooks .inks.lists_video {
  margin-top: 30px;
}
.lookbooks .inks.lists_video .slick-slide {
  padding: 0 15px;
}

.why_limited {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 100px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1476px) {
  .why_limited {
    padding: 30px 15px 100px 15px;
  }
}
@media (max-width: 968px) {
  .why_limited {
    padding: 50px 15px 50px 15px;
  }
}
.why_limited .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1841px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.why_limited .wrap .h2 {
  color: #FFFFFF;
}
.why_limited .lists_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1834px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media (max-width: 968px) {
  .why_limited .lists_subversive {
    gap: 40px;
  }
}
.why_limited .lists_subversive::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 440px;
  height: 149px;
  position: absolute;
  top: 0px;
  left: 45%;
  background: url("/wp-content/themes/adult/assets/img/drops_2.svg") 0 0 no-repeat;
}
@media (max-width: 1470px) {
  .why_limited .lists_subversive::before {
    left: 48%;
    max-width: 200px;
    background-size: 100%;
  }
}
@media (max-width: 968px) {
  .why_limited .lists_subversive::before {
    display: none;
  }
}
@media (max-width: 968px) {
  .why_limited .lists_subversive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 15px 0px 15px;
  }
}
.why_limited .lists_subversive .item_subversive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 778px;
  height: 851px;
  border-radius: 0px;
  position: relative;
  padding: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1470px) {
  .why_limited .lists_subversive .item_subversive {
    width: 515px;
    height: 564px;
  }
}
.why_limited .lists_subversive .item_subversive:first-child {
  width: 945px;
  height: 832px;
}
@media (max-width: 1470px) {
  .why_limited .lists_subversive .item_subversive:first-child {
    width: 740px;
    height: 650px;
  }
}
@media (max-width: 968px) {
  .why_limited .lists_subversive .item_subversive:first-child {
    width: 100%;
    max-width: 328px;
    height: auto;
    padding: 0;
  }
  .why_limited .lists_subversive .item_subversive:first-child .img_sub {
    display: none;
  }
}
@media (max-width: 968px) {
  .why_limited .lists_subversive .item_subversive {
    width: 100%;
    max-width: 328px;
    height: 304px;
  }
}
.why_limited .lists_subversive .item_subversive .short_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 135%;
  color: #838383;
  margin-bottom: 40px;
}
@media (max-width: 1470px) {
  .why_limited .lists_subversive .item_subversive .short_desc {
    font-size: 24px;
  }
}
@media (max-width: 968px) {
  .why_limited .lists_subversive .item_subversive .short_desc {
    font-size: 18px;
    line-height: 120%;
  }
}
.why_limited .lists_subversive .item_subversive .img_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.why_limited .lists_subversive .item_subversive .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 448px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1470px) {
  .why_limited .lists_subversive .item_subversive .text {
    max-width: 390px;
  }
}
.why_limited .lists_subversive .item_subversive .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #212121;
  margin-bottom: 32px;
}
@media (max-width: 1470px) {
  .why_limited .lists_subversive .item_subversive .title {
    font-size: 50px;
  }
}
@media (max-width: 968px) {
  .why_limited .lists_subversive .item_subversive .title {
    text-align: left;
    font-size: 38px;
  }
}
.why_limited .lists_subversive .item_subversive .limit_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  gap: 24px;
  margin-bottom: 40px;
}
.why_limited .lists_subversive .item_subversive .limit_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  counter-increment: item;
  gap: 0 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.why_limited .lists_subversive .item_subversive .limit_list li::before {
  content: counter(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;
  border: 1px solid #B00629;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 1;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
}
.why_limited .lists_subversive .item_subversive .limit_list li .wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10px;
}
.why_limited .lists_subversive .item_subversive .limit_list li .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #838383;
}
.why_limited .lists_subversive .item_subversive .limit_list li .sub_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
}
.why_limited .lists_subversive .item_subversive .link_lim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0 0 6px 0;
}
.why_limited .h3 {
  padding: 0 0 8px 0;
}

.lookbook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 60px;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0 100px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 968px) {
  .lookbook {
    display: none;
  }
}
.lookbook .slide_lookbook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 54px;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lookbook .slide_lookbook .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lookbook .slide_lookbook .item img {
  width: 100%;
  height: auto;
}
.lookbook .slide_lookbook .item img:nth-child(1) img {
  max-width: 490px;
}
.lookbook .slide_lookbook .item img:nth-child(2) img {
  max-width: 918x;
}
.lookbook .slide_lookbook .item img:nth-child(3) img {
  max-width: 490px;
}

.lists_cards_big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #FAF6EC;
  padding: 100px 40px 200px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 968px) {
  .lists_cards_big {
    padding: 50px 16px 50px 16px;
  }
}
.lists_cards_big .h2 {
  margin: 0 auto 48px;
}
@media (max-width: 968px) {
  .lists_cards_big .h2 {
    margin: 0 0 16px 0;
    text-align: left;
  }
}
.lists_cards_big .wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1840px;
}
.lists_cards_big .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 20px;
}
@media (max-width: 968px) {
  .lists_cards_big .wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lists_cards_big .head_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lists_cards_big .head_block .text {
  margin-bottom: 21px;
}
.lists_cards_big .head_block .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
}
.lists_cards_big .head_block .view {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0 0 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lists_cards_big .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  border: 3px solid #B00629;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lists_cards_big .card .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 24px 16px 14px 16px;
  background: #fff;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lists_cards_big .card .info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.lists_cards_big .card .info .wrap_info {
  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;
}
.lists_cards_big .card .name {
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 110%;
  color: #212121;
}
.lists_cards_big .cards_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
}
@media (max-width: 968px) {
  .lists_cards_big .cards_slide {
    max-width: 320px;
    margin: 0 auto;
  }
}
.lists_cards_big .cards_slide .snake-track {
  gap: 20px;
}
@media (max-width: 968px) {
  .lists_cards_big .cards_slide .snake-track {
    gap: 0px;
  }
}
.lists_cards_big .cards_slide .card {
  max-width: 445px;
}
@media (max-width: 968px) {
  .lists_cards_big .cards_slide .card {
    max-width: 320px;
  }
}
.lists_cards_big .cards_slide .snake-prev {
  top: -56px;
  right: 66px;
}
.lists_cards_big .cards_slide .snake-next {
  top: -56px;
  right: 10px;
}

.privat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 76px 0 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px;
  position: relative;
}
.privat::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
@media (max-width: 1545px) {
  .privat {
    padding: 30px 15px 32px 15px;
  }
}
@media (max-width: 968px) {
  .privat {
    margin-bottom: 24px;
  }
}
.privat .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1522px;
  height: auto;
}
.privat .wrap .h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #B00629;
  margin-bottom: 0;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 968px) {
  .privat .wrap .h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 0;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.privat .wrap .h3 {
  padding: 0 0 8px 0;
}

.privat_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 auto 54px;
  max-width: 600px;
}
@media (max-width: 968px) {
  .privat_text {
    padding: 0 16px 0 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.privat_text .h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 96%;
  color: #212121;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 968px) {
  .privat_text .h2 {
    font-size: 38px;
    margin-bottom: 32px;
  }
}
.privat_text .h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 38px;
  line-height: 96%;
  color: #212121;
  margin-bottom: 16px;
}
@media (max-width: 968px) {
  .privat_text .h3 {
    font-size: 24px;
  }
}
.privat_text .text {
  font-style: normal, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
  margin-bottom: 32px;
}

.eror_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 98px 0 166px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 968px) {
  .eror_block {
    padding: 98px 16px 50px 16px;
  }
}
.eror_block .bear_404 {
  position: absolute;
  top: 170px;
  z-index: 3;
}
@media (max-width: 1470px) {
  .eror_block .bear_404 {
    top: 145px;
  }
}
.eror_block .bear_404 svg, .eror_block .bear_404 img {
  width: 425px;
  height: 350px;
}
@media (max-width: 768px) {
  .eror_block .bear_404 {
    bottom: initial;
    top: 135px;
  }
  .eror_block .bear_404 svg, .eror_block .bear_404 img {
    width: 185px;
    height: 165px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
}
.eror_block .bear_404::before {
  position: absolute;
  bottom: -70px;
  left: 70px;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 307px;
  height: 170px;
  z-index: -1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("/wp-content/themes/adult/assets/img/cloud_404_2.svg") 0 0 no-repeat;
  background-size: 100%;
}
@media (max-width: 768px) {
  .eror_block .bear_404::before {
    width: 160px;
    height: 100px;
    bottom: -35px;
    left: 10px;
  }
}
.eror_block picture.pic_404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.eror_block picture.pic_404::before {
  position: absolute;
  left: 0px;
  bottom: -130px;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 234px;
  height: 138px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("/wp-content/themes/adult/assets/img/cloud_404_1.svg") 0 0 no-repeat;
}
@media (max-width: 1200px) {
  .eror_block picture.pic_404::before {
    background: none;
  }
}
.eror_block picture.pic_404 img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 880px;
  height: auto;
}
.eror_block picture.pic_404::after {
  position: absolute;
  right: 0px;
  bottom: -130px;
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 265px;
  height: 154px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("/wp-content/themes/adult/assets/img/cloud_404_3.svg") 0 0 no-repeat;
}
@media (max-width: 1200px) {
  .eror_block picture.pic_404::after {
    background: none;
  }
}
.eror_block .link_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 600px;
  gap: 32px;
  margin-top: 40px;
}
.eror_block .link_block .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 968px) {
  .eror_block .link_block .text {
    font-size: 24px;
  }
}
.eror_block .link_block .h3 {
  -ms-flex-item-align: center;
      align-self: center;
  padding: 0 0 8px 0;
}

.slide_container {
  display: block;
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  padding: 28px 0 0 0;
}
@media (max-width: 1865px) {
  .slide_container {
    padding: 0 40px 0 40px;
  }
}
.slide_container .wrap {
  max-width: 910px;
  margin: 0 auto;
}
.slide_container .catalog_slider {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slide_container .catalog_slider .item_slide {
  display: none;
  width: 1840px;
}
.slide_container .catalog_slider .item_slide picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slide_container .catalog_slider .item_slide picture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1840px;
}
.slide_container .catalog_slider.slick-initialized .item_slide {
  display: block;
}
.slide_container .catalog_slider .slick-dots li {
  width: 120px;
  height: 8px;
  margin: 0 4px;
}
@media (max-width: 678px) {
  .slide_container .catalog_slider .slick-dots li {
    width: 60px;
  }
}
.slide_container .catalog_slider .slick-dots li button {
  width: 120px;
  height: 8px;
  padding: 0;
}
@media (max-width: 678px) {
  .slide_container .catalog_slider .slick-dots li button {
    width: 60px;
  }
}
.slide_container .catalog_slider .slick-dots li button::before {
  content: "";
  width: 120px;
  height: 8px;
  border: 2px solid #B00629;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 1;
}
@media (max-width: 678px) {
  .slide_container .catalog_slider .slick-dots li button::before {
    width: 60px;
  }
}
.slide_container .catalog_slider .slick-dots li.slick-active button {
  width: 120px;
  height: 8px;
  padding: 0;
}
@media (max-width: 678px) {
  .slide_container .catalog_slider .slick-dots li.slick-active button {
    width: 60px;
  }
}
.slide_container .catalog_slider .slick-dots li.slick-active button::before {
  content: "";
  border: 2px solid #B00629;
  background: #B00629;
}

.catalog_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 52px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 120px;
}
@media (max-width: 1545px) {
  .catalog_desc {
    padding: 30px 15px 0 15px;
  }
}
@media (max-width: 968px) {
  .catalog_desc {
    margin-bottom: 24px;
  }
}
.catalog_desc .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 910px;
  height: auto;
}
.catalog_desc .wrap .h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #B00629;
  margin-bottom: 27px;
  text-align: center;
}
@media (max-width: 968px) {
  .catalog_desc .wrap .h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.catalog_desc .wrap .h3 {
  padding: 0 0 8px 0;
}
.catalog_desc .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  color: #9F9F9F;
  gap: 8px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .catalog_desc .text {
    font-size: 18px;
  }
}
.catalog_desc .text strong {
  font-variation-settings: "wght" 800;
  padding: 8px 0 0 0;
}
.catalog_desc .h3 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
}

.category_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 52px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 95px;
}
@media (max-width: 1545px) {
  .category_desc {
    padding: 30px 40px 0 40px;
  }
}
@media (max-width: 968px) {
  .category_desc {
    margin-bottom: 24px;
  }
}
.category_desc .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1840px;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.category_desc .wrap .h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 96px;
  line-height: 96%;
  color: #B00629;
  margin-bottom: 27px;
  text-align: center;
}
@media (max-width: 968px) {
  .category_desc .wrap .h1 {
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
    max-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.category_desc .wrap .h3 {
  padding: 0 0 8px 0;
}
.category_desc .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 910px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  color: #9F9F9F;
  gap: 8px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .category_desc .text {
    font-size: 18px;
  }
}
.category_desc .text strong {
  font-variation-settings: "wght" 800;
  padding: 8px 0 0 0;
}
.category_desc .h3 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: left;
}

.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1840px;
  margin: 0 auto 104px;
  gap: 40px;
}
@media (max-width: 1850px) {
  .categories {
    padding: 0 10px 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 32px;
    margin: 0 auto 60px;
  }
}
@media (max-width: 1180px) {
  .categories {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.categories .title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #212121;
}
@media (max-width: 768px) {
  .categories .title {
    font-size: 38px;
  }
}
.categories .list_categories {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
@media (max-width: 1180px) {
  .categories .list_categories {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    max-width: 910px;
  }
}
@media (max-width: 768px) {
  .categories .list_categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.categories .list_categories .ietm_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .categories .list_categories .ietm_cat {
    padding: 24px;
  }
}
.categories .list_categories .ietm_cat:nth-child(1) {
  grid-column: 1/span 2;
  width: 100%;
  max-width: 445px;
  height: 446px;
  grid-row: 1/span 2;
}
@media (max-width: 1180px) {
  .categories .list_categories .ietm_cat:nth-child(1) {
    grid-column: 1/span 1;
    grid-row: 1/span 2;
  }
}
@media (max-width: 768px) {
  .categories .list_categories .ietm_cat:nth-child(1) {
    min-height: 329px;
    height: auto;
  }
}
.categories .list_categories .ietm_cat:nth-child(2) {
  grid-column: 3/span 2;
  grid-row: 1;
  width: 100%;
  max-width: 445px;
  height: 213px;
}
@media (max-width: 1180px) {
  .categories .list_categories .ietm_cat:nth-child(2) {
    grid-column: 2/span 1;
    grid-row: 1;
  }
}
.categories .list_categories .ietm_cat:nth-child(3) {
  grid-column: 5/span 2;
  grid-row: 1;
  width: 100%;
  max-width: 445px;
  height: 213px;
}
@media (max-width: 1180px) {
  .categories .list_categories .ietm_cat:nth-child(3) {
    grid-column: 2/span 1;
    grid-row: 2;
  }
}
.categories .list_categories .ietm_cat:nth-child(4) {
  grid-column: 3/span 2;
  grid-row: 2;
  width: 100%;
  max-width: 445px;
  height: 213px;
}
@media (max-width: 1180px) {
  .categories .list_categories .ietm_cat:nth-child(4) {
    grid-column: 1/span 1;
    grid-row: 3;
  }
}
.categories .list_categories .ietm_cat:nth-child(5) {
  grid-column: 5/span 2;
  grid-row: 2;
  width: 100%;
  max-width: 445px;
  height: 213px;
}
@media (max-width: 1180px) {
  .categories .list_categories .ietm_cat:nth-child(5) {
    grid-column: 1/span 1;
    grid-row: 4;
  }
}
.categories .list_categories .ietm_cat:nth-child(6) {
  grid-column: 7/span 2;
  grid-row: 1/span 2;
  width: 100%;
  max-width: 445px;
  height: 446px;
}
@media (max-width: 1180px) {
  .categories .list_categories .ietm_cat:nth-child(6) {
    grid-column: 2/span 1;
    grid-row: 3/span 2;
  }
}
.categories .list_categories .ietm_cat .head_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 48px;
  line-height: 87%;
  color: #B00629;
  position: relative;
  z-index: 2;
}
@media (min-width: 978px) {
  .categories .list_categories .ietm_cat .head_cat {
    max-width: 50%;
  }
}
@media (max-width: 1440px) {
  .categories .list_categories .ietm_cat .head_cat {
    font-size: 39px;
  }
}
@media (max-width: 768px) {
  .categories .list_categories .ietm_cat .head_cat {
    font-size: 24px;
  }
}
.categories .list_categories .cat_img {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.categories .list_categories .cat_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products {
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  width: 100%;
  max-width: 1860px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}
@media (max-width: 1180px) {
  .product-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.product-grid .wrap_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product-grid .wrap_card:nth-child(1) {
  grid-column: 1/span 1;
  grid-row: 1/span 2;
}
.product-grid .wrap_card:nth-child(2) {
  grid-column: 2/span 1;
  grid-row: 1/span 2;
}
.product-grid .wrap_card:nth-child(3) {
  grid-column: 3/span 2;
  grid-row: 1/span 3;
}
.product-grid .wrap_card:nth-child(4) {
  grid-column: 1/span 1;
  grid-row: 4/span 2;
}
.product-grid .wrap_card:nth-child(5) {
  grid-column: 2/span 1;
  grid-row: 4/span 2;
}
.product-grid .wrap_card:nth-child(6) {
  grid-column: 3/span 1;
  grid-row: 4/span 2;
}
.product-grid .wrap_card:nth-child(7) {
  grid-column: 4/span 1;
  grid-row: 4/span 2;
}
.product-grid .wrap_card:nth-child(8) {
  grid-column: 1/span 1;
  grid-row: 6/span 2;
}
.product-grid .wrap_card:nth-child(9) {
  grid-column: 2/span 2;
  grid-row: 6/span 2;
}
.product-grid .wrap_card:nth-child(10) {
  grid-column: 4/span 1;
  grid-row: 6/span 2;
}
.product-grid .wrap_card:nth-child(11) {
  grid-column: 1/span 2;
  grid-row: 8/span 2;
}
.product-grid .wrap_card:nth-child(12) {
  grid-column: 3/span 1;
  grid-row: 8/span 2;
}
.product-grid .wrap_card:nth-child(13) {
  grid-column: 4/span 1;
  grid-row: 8/span 2;
}
.product-grid .wrap_card:nth-child(14) {
  grid-column: 1/span 1;
  grid-row: 10/span 2;
}
.product-grid .wrap_card:nth-child(15) {
  grid-column: 2/span 1;
  grid-row: 10/span 2;
}
.product-grid .wrap_card:nth-child(16) {
  grid-column: 3/span 1;
  grid-row: 10/span 2;
}
.product-grid .wrap_card:nth-child(17) {
  grid-column: 4/span 1;
  grid-row: 10/span 2;
}
.product-grid .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 445px;
  height: 537px;
  overflow: hidden;
  border: 3px solid #B00629;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
}
@media (max-width: 1865px) {
  .product-grid .card {
    height: auto;
  }
}
.product-grid .card .favorite {
  position: absolute;
  top: 16px;
  right: 16px;
}
.product-grid .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  height: 30px;
}
.product-grid .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #fff !important;
}
.product-grid .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #B00629 !important;
}
.product-grid .card .favorite .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.product-grid .card .favorite .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.product-grid .card .picture {
  min-height: initial;
}
.product-grid .card .picture img {
  min-height: initial;
  max-height: 676px;
}
@media (max-width: 768px) {
  .product-grid .card .picture {
    min-height: 320px;
  }
  .product-grid .card .picture img {
    max-width: 320px;
    max-height: 320px;
    min-height: 320px;
  }
}
.product-grid .card .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 92px;
  padding: 24px 16px 14px 16px;
  background: #fff;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-grid .card .info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.product-grid .card .info .wrap_info {
  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;
}
.product-grid .card .name {
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 110%;
  color: #212121;
}
.product-grid .size-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-grid .size-large .card {
  max-width: 930px;
  height: 772px;
}
@media (max-width: 1865px) {
  .product-grid .size-large .card {
    max-height: 772px;
    height: auto;
  }
}

.slide_gategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1000%;
  max-width: 1014px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .slide_gategory {
    display: none;
  }
}
.slide_gategory.tovin {
  margin: 0 auto 200px;
}
.slide_gategory .gategory_slider {
  display: block;
  width: 100%;
  max-width: 910px;
}
.slide_gategory .gategory_slider .ietm_cat {
  padding: 10px;
}
.slide_gategory .gategory_slider .ietm_cat .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 445px;
  height: 213px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slide_gategory .gategory_slider .ietm_cat .head_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 48px;
  line-height: 87%;
  color: #B00629;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  .slide_gategory .gategory_slider .ietm_cat .head_cat {
    max-width: 50%;
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .slide_gategory .gategory_slider .ietm_cat .head_cat {
    font-size: 24px;
  }
}
.slide_gategory .gategory_slider .cat_img {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide_gategory .gategory_slider .cat_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#ajax-load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0 48px 0;
}
#ajax-load-more #load-more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 445px;
  height: 58px;
  background: #B00629;
  border-radius: 50px;
  border: 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px 0 200px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}
.pagination .page-numbers li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 39px;
  overflow: hidden;
}
.pagination .page-numbers li .current {
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #B00629;
  padding: 0 0 7px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid #B00629;
}
.pagination .page-numbers li a {
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #9F9F9F;
  padding: 0 0 7px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 2px solid transparent;
  overflow: hidden;
}
.pagination .page-numbers li .next {
  text-indent: -1000px;
}
.pagination .page-numbers li .next::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25px;
  height: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: url("/wp-content/themes/adult/assets/img/nav_pagination.png") 0 0 no-repeat;
}

.woocommerce .star-rating span::before {
  color: #B00629;
}

.woocommerce #review_form #respond .form-submit .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 300px;
  height: 58px;
  background: #B00629;
  border-radius: 50px;
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.woocommerce .product p.stars a::before {
  color: #B00629;
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1920px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 968px) {
  .product {
    padding: 0 16px;
  }
}
.product .wrap_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 98px;
  margin-bottom: 200px;
}
@media (max-width: 1540px) {
  .product .wrap_top {
    gap: 15px;
  }
}
@media (max-width: 1230px) {
  .product .wrap_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 968px) {
  .product .wrap_top {
    margin-bottom: 100px;
  }
}
.product .wrap_top .block_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 840px;
  gap: 16px;
  overflow: hidden;
}
@media (max-width: 1540px) {
  .product .wrap_top .block_img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1230px) {
  .product .wrap_top .block_img {
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 968px) {
  .product .wrap_top .block_img {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.product .wrap_top .block_img .slick-prev.slick-arrow {
  z-index: 10;
}
.product .wrap_top .block_img .slick-next {
  top: auto;
  right: 0;
  width: 32px;
  height: 32px;
  background: none;
  bottom: -10px;
}
@media (min-width: 1541px) {
  .product .wrap_top .block_img .slick-next {
    top: 44%;
  }
}
.product .wrap_top .block_img .slick-next:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("/wp-content/themes/adult/assets/img/chevron-right_black.svg") 0 0 no-repeat;
}
.product .wrap_top .block_img .slick-prev {
  top: auto;
  right: 40px;
  left: auto;
  width: 32px;
  height: 32px;
  background: none;
  bottom: -10px;
}
@media (min-width: 1541px) {
  .product .wrap_top .block_img .slick-prev {
    top: 44%;
  }
}
.product .wrap_top .block_img .slick-prev:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("/wp-content/themes/adult/assets/img/chevron-left-black.svg") 0 0 no-repeat;
}
.product .wrap_top .block_img .product-gallery-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 655px;
}
.product .wrap_top .block_img .product-gallery-only .gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 655px;
}
.product .wrap_top .block_img .product-gallery-only .gallery-item img {
  width: 100%;
  max-width: 655px;
  height: 100%;
  max-height: 655px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .product .wrap_top .block_img .adl.product-gallery-only.slick-slider {
    height: 360px;
  }
}
@media (min-width: 1230px) {
  .product .wrap_top .block_img .product-gallery-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 161px;
  }
}
@media (min-width: 1230px) and (max-width: 1540px) {
  .product .wrap_top .block_img .product-gallery-nav {
    max-width: none;
  }
}
@media (min-width: 1230px) and (max-width: 1230px) {
  .product .wrap_top .block_img .product-gallery-nav {
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 968px) {
  .product .wrap_top .block_img .product-gallery-nav {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 0 0 50px 0;
  }
}
.product .wrap_top .block_img .product-gallery-nav .gallery-item {
  width: 161px;
  padding: 4px 0 4px 0;
}
@media (max-width: 1540px) {
  .product .wrap_top .block_img .product-gallery-nav .gallery-item {
    margin-right: 10px;
  }
}
@media (max-width: 968px) {
  .product .wrap_top .block_img .product-gallery-nav .gallery-item {
    width: 92px;
    height: 92px;
    padding: 0px 0px 0px 0px;
  }
}
.product .wrap_top .block_img .product-gallery-nav .gallery-item div {
  display: block;
  width: 159px;
  height: 159px;
}
@media (max-width: 968px) {
  .product .wrap_top .block_img .product-gallery-nav .gallery-item div {
    width: 92px;
    height: 92px;
  }
}
.product .wrap_top .block_img .product-gallery-nav .gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 159px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .wrap_top .entry-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 640px;
}
@media (max-width: 1230px) {
  .product .wrap_top .entry-summary {
    margin: 0 auto;
    max-width: 1200px;
  }
}
.product .wrap_top .entry-summary .line_title {
  margin-bottom: 16px;
}
.product .wrap_top .entry-summary .product_title {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
}
@media (max-width: 1880px) {
  .product .wrap_top .entry-summary .product_title {
    font-size: 47px;
  }
}
.product .wrap_top .entry-summary .product_title {
  line-height: 96%;
  color: #212121;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .product_title {
    font-size: 38px;
  }
}
.product .wrap_top .entry-summary .woocommerce-product-rating {
  display: none;
}
.product .wrap_top .entry-summary .price_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .price_block {
    margin-bottom: 24px;
  }
}
.product .wrap_top .entry-summary .price {
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 115%;
  color: #212121;
}
.product .wrap_top .entry-summary .price ins {
  text-decoration: none !important;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .price {
    font-size: 38px;
  }
}
.product .wrap_top .entry-summary .btn_dg_pr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
@media (max-width: 620px) {
  .product .wrap_top .entry-summary .btn_dg_pr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product .wrap_top .entry-summary .btn_dg_pr .pvdv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 177px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  padding: 8px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #212121;
}
.product .wrap_top .entry-summary .btn_dg_pr .pvdv::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.product .wrap_top .entry-summary .btn_dg_pr .pvdv.active {
  background: #fff;
  border: 1px solid #212121;
}
.product .wrap_top .entry-summary .btn_dg_pr .pvdv.dv::before {
  background: url("/wp-content/themes/adult/assets/img/dv.svg") 0 0 no-repeat;
}
.product .wrap_top .entry-summary .btn_dg_pr .pvdv.pv {
  width: 184px;
}
.product .wrap_top .entry-summary .btn_dg_pr .pvdv.pv::before {
  background: url("/wp-content/themes/adult/assets/img/pv.svg") 0 0 no-repeat;
}
.product .wrap_top .entry-summary .acf-version {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #9F9F9F;
  margin-bottom: 32px;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .acf-version {
    font-size: 16px;
  }
}
.product .wrap_top .entry-summary .acf-warning {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 445px;
  gap: 8px;
  margin-bottom: 32px;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .acf-warning {
    font-size: 16px;
  }
}
.product .wrap_top .entry-summary .acf-warning:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url("/wp-content/themes/adult/assets/img/info-circle.svg") 0 0 no-repeat;
}
.product .wrap_top .entry-summary .acf-sub-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #8F8F8F;
  gap: 20px;
  margin-bottom: 35px;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .acf-sub-text {
    font-size: 16px;
  }
}
.product .wrap_top .entry-summary .acf-sub-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
}
.product .wrap_top .entry-summary .acf-sub-block .acf-sub-title {
  font-family: "Nunito";
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #8F8F8F;
  margin-bottom: 16px;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .acf-sub-block .acf-sub-title {
    font-size: 18px;
  }
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
  margin-bottom: 48px;
  padding: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .woocommerce-simple-add-to-cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .single_add_to_cart_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 445px;
  height: 58px;
  background: #B00629;
  border: 0px;
  border-radius: 50px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 144px;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 56px;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm {
    height: 48px;
  }
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .quantity-minus {
  background: #fff;
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 0px;
  cursor: pointer;
  background: url("/wp-content/themes/adult/assets/img/minus_cart.svg") center center no-repeat;
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .quantity-minus:hover {
  background: url("/wp-content/themes/adult/assets/img/minus_cart_black.svg") center center no-repeat;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .quantity-minus {
    width: 48px;
    height: 48px;
  }
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .input-text {
  background: #fff;
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 0px;
  text-align: center;
  outline: 0;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 24px;
  line-height: 115%;
  text-transform: uppercase;
  color: #212121;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .input-text {
    width: 48px;
    height: 48px;
  }
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .quantity-plus {
  background: #fff;
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 0px;
  cursor: pointer;
  background: url("/wp-content/themes/adult/assets/img/plus_cart.svg") center center no-repeat;
}
.product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .quantity-plus:hover {
  background: url("/wp-content/themes/adult/assets/img/plus_cart_black.svg") center center no-repeat;
}
@media (max-width: 968px) {
  .product .wrap_top .entry-summary .woocommerce-simple-add-to-cart .wrap_pm .quantity-plus {
    width: 48px;
    height: 48px;
  }
}
.product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  height: 30px;
}
.product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #fff !important;
}
.product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--added .yith-wcwl-icon {
  display: block;
  width: 34px;
  height: 30px;
  color: #B00629 !important;
  fill: #B00629 !important;
}
.product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label {
  display: none;
}
.product .custom-additional-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 80px;
}
@media (max-width: 968px) {
  .product .custom-additional-info {
    margin-bottom: 48px;
  }
}
.product .custom-additional-info .custom-additional-title {
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #212121;
  margin-bottom: 24px;
}
@media (max-width: 968px) {
  .product .custom-additional-info .custom-additional-title {
    font-size: 18px;
  }
}
.product .custom-additional-info .attributes tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #D6D6D6;
}
.product .custom-additional-info .attributes .woocommerce-product-attributes-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #D6D6D6;
}
.product .custom-additional-info .attributes .woocommerce-product-attributes-item .woocommerce-product-attributes-item__label {
  font-style: normal;
  font-variation-settings: "wght" 700;
  font-size: 18px;
  line-height: 135%;
  color: #9F9F9F;
}
@media (max-width: 968px) {
  .product .custom-additional-info .attributes .woocommerce-product-attributes-item .woocommerce-product-attributes-item__label {
    font-size: 16px;
  }
}
.product .custom-additional-info .attributes .woocommerce-product-attributes-item .woocommerce-product-attributes-item__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  text-align: right;
  color: #838383;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 968px) {
  .product .custom-additional-info .attributes .woocommerce-product-attributes-item .woocommerce-product-attributes-item__value {
    font-size: 16px;
  }
}
.product .product_meta {
  display: none;
}
.product .tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product .tabs-wrapper .tabs {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  list-style: none;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 115%;
  text-transform: uppercase;
  color: #9F9F9F;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #9F9F9F;
  margin-bottom: 40px;
  padding: 0 0 12px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 968px) {
  .product .tabs-wrapper .tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.product .tabs-wrapper .tabs li {
  cursor: pointer;
}
.product .tabs-wrapper .tabs .active {
  color: #B00629;
}
.product .tabs-wrapper .tabspanel {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.product .tabs-wrapper .tabspanel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
  color: #8F8F8F;
}
.product .tabs-wrapper .tabspanel.active ul {
  margin-left: 25px !important;
}
@media (max-width: 968px) {
  .product .tabs-wrapper .tabspanel.active {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .product .tabs-wrapper .tabspanel.active ul {
    margin-left: 25px !important;
  }
}
.product .related {
  display: none;
}
.product .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1105px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-bottom: 200px;
}
@media (max-width: 968px) {
  .product .reviews {
    margin-bottom: 100px;
  }
}
.product .reviews .comment-form-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product .reviews .rew_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-bottom: 24px;
}
.product .reviews .woocommerce-Reviews-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  color: #212121;
  margin-bottom: 32px;
  text-transform: capitalize;
}
@media (max-width: 968px) {
  .product .reviews .woocommerce-Reviews-title {
    font-size: 38px;
    margin-bottom: 24px;
  }
}
.product .reviews .q_rew {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 35px;
  line-height: 96%;
  color: #212121;
}
.product .reviews .average-rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.product .reviews #reply-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 6px 12px;
  border: 2px solid #B00629;
  border-radius: 50px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #B00629;
  margin-bottom: 60px;
  cursor: pointer;
}
@media (max-width: 968px) {
  .product .reviews #reply-title {
    margin-bottom: 40px;
  }
}
.product .reviews .comment-form {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.product .reviews .comment-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .reviews .commentlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  gap: 40px;
}
.product .reviews .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 16px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product .reviews .review::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.product .reviews .comment_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 116px;
  gap: 16px;
}
.product .reviews .comment_container img {
  border-radius: 180px;
  width: 79px;
  height: 79px;
}
.product .reviews .com_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.product .reviews .com_left .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product .reviews .com_left .meta .woocommerce-review__author {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #212121;
  margin-bottom: 5px;
}
.product .reviews .com_left .meta .woocommerce-review__published-date {
  font-style: normal;
  font-variation-settings: "wght" 700;
  font-size: 18px;
  line-height: 135%;
  color: #838383;
  margin-bottom: 5px;
}
.product .reviews .com_left .meta .woocommerce-review__dash {
  display: none;
}
.product .reviews .comment-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 968px) {
  .product .reviews .comment-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product .reviews .comment-text .com_rigth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 640px;
}
.product .reviews .comment-text .com_rigth .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  padding: 16px 40px 20px 40px;
}
@media (max-width: 968px) {
  .page {
    padding: 16px 16px 20px 16px;
  }
}
.page h2 {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  color: #B00629;
}
.page h2 a {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 38px;
  line-height: 96%;
  color: #B00629;
}
.page .wc-block-components-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 445px;
  height: 58px;
  background: #B00629;
  border-radius: 50px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 0;
}

.modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8) !important;
  visibility: hidden;
  -webkit-transform: translateY(-500%);
          transform: translateY(-500%);
  opacity: 0;
  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: background-color 0.3s, opacity 0.2s;
  transition: background-color 0.3s, opacity 0.2s;
}
.modal .container {
  width: 100%;
  max-width: 910px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal.active {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FAF6EC;
  padding: 88px 20px 100px 20px;
  -webkit-transform: scale(0);
          transform: scale(0);
  border-radius: 20px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  position: relative;
}

@media (max-width: 768px) {
  .modal__content {
    width: 360px;
    padding: 30px 15px;
    margin: 0 auto;
  }
}
.modal.active .modal__content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 455px;
}

.js-modal-confirm .modal__inner {
  max-width: 495px;
}
.js-modal-confirm .form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.js-modal-confirm .form_text {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #9F9F9F;
  margin-bottom: 40px;
}
.js-modal-confirm .form_confirm {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #B00629;
  cursor: pointer;
  padding: 0 0 8px 0;
}
.js-modal-confirm .form_confirm_age {
  margin-bottom: 30px;
}

.modal__title {
  padding-top: 60px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 60px;
  line-height: 96%;
  text-align: center;
  color: #B00629;
  opacity: 0.8;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .modal__title {
    font-size: 33px;
  }
}
.modal__text {
  margin-bottom: 20px;
}

.modal__close-btn {
  position: absolute;
  top: 40px;
  right: 64px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 768px) {
  .modal__close-btn {
    top: 32px;
    right: 10px;
  }
}

.modal__wrapper {
  width: 328px;
  height: 534px;
  overflow: auto;
  margin: 0 auto;
}

.modal__wrapper-items {
  padding: 10px;
}

.modal__wrapper-subtitle {
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #333;
  opacity: 0.8;
  margin-bottom: 15px;
}

.modal__wrapper-list {
  margin-bottom: 35px;
}

.modal__wrapper-list:last-child {
  margin-bottom: 0;
}

.modal__wrapper-item {
  font-size: 18px;
  line-height: 125%;
  color: #2b2b2b;
  opacity: 0.6;
}

.modal__text-order {
  position: relative;
  font-size: 18px;
  line-height: 125%;
  color: #50c96c;
  padding: 40px 40px 40px 90px;
  border: 1px solid #50c96c;
  border-radius: 14px;
  margin-bottom: 45px;
}

.modal__text-order::before {
  position: absolute;
  top: 40px;
  left: 40px;
}

@media (max-width: 768px) {
  .modal__text-order {
    font-size: 14px;
  }
}
a.modal__link {
  display: block;
  font-size: 18px;
  line-height: 118%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1e1e1e;
  text-decoration: underline;
  text-align: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}

a.modal__link:hover {
  color: rgb(55.5, 55.5, 55.5);
}

.autor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.rega {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.resetpass {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.form__message {
  display: none;
}
.form__message.red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fa0000;
  margin-bottom: 20px;
}
.form__message.green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #50c96c;
}

form .form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}

@media (max-width: 1000px) {
  .form .form__content {
    gap: 25px;
  }
}
.form .form__label,
.form .form__textarea-text,
.form .form__textarea-num {
  font-size: 14px;
  line-height: 125%;
  color: #1e1e1e;
  position: relative;
}

.form .form__label-box {
  position: relative;
}

.form .form__title {
  margin-bottom: 50px;
}

.form .form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0px;
  background: none;
  padding: 0 0 0px 16px;
  width: 100%;
  height: 52px;
  outline: none;
  color: #1e1e1e;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 113%;
}
.form .form__input::-webkit-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 113%;
  color: #A5A5A5;
}
.form .form__input::-moz-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 113%;
  color: #A5A5A5;
}
.form .form__input:-ms-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 113%;
  color: #A5A5A5;
}
.form .form__input::-ms-input-placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 113%;
  color: #A5A5A5;
}
.form .form__input::placeholder {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 113%;
  color: #A5A5A5;
}

.form .form__textarea {
  border: 1px solid #d6d6d6;
  padding: 15px;
  width: 100%;
  height: 130px;
  outline: none;
  color: #1e1e1e;
  resize: vertical;
}

.form .form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.form .form__btn {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 58px;
  -ms-flex-item-align: center;
      align-self: center;
  background: #B00629;
  border: 0px;
  border-radius: 50px;
  cursor: pointer;
  font-style: normal;
  font-variation-settings: "wght" 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
}

.form .form__btn:hover {
  opacity: 0.6;
}

@media (max-width: 1000px) {
  .form .form__btn {
    font-size: 17px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .form .form__btn {
    margin-top: 15px;
  }
}
.form .form__password-viev {
  position: absolute;
  top: 18px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 0;
  cursor: pointer;
}

.form .form__box {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.form .form__link {
  cursor: pointer;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 135%;
  color: #838383;
}

.form .label-name {
  padding-left: 34px;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 135%;
  color: #838383;
}

.form .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.form .for_strela {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form .form_strela {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 135%;
  color: #838383;
}

.modal .checkbox {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}
.modal .checkbox-marker {
  position: absolute;
  width: 23px;
  height: 23px;
  border-radius: 5px;
  border: 1px solid #838383;
  background-color: #FAF6EC;
}
.modal .checkbox:checked + .checkbox-marker {
  background-image: url("/wp-content/themes/adult/assets/img/checkbox-done.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #B00629;
  border: 1px solid #B00629;
}

.modal_success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}

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

.modal_content {
  background: #FAF6EC;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  -webkit-animation: slideUp 0.3s ease;
          animation: slideUp 0.3s ease;
}

.modal_content p {
  margin-bottom: 20px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 96%;
  text-align: center;
  color: #B00629;
  opacity: 0.8;
}

.close_modal {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.close_modal:hover {
  background-color: #444;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  padding: 100px 40px 24px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
}
footer.line_wt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='white' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
@media (max-width: 968px) {
  footer {
    padding: 56px 16px 16px 16px;
  }
}
footer .wrap {
  width: 100%;
  max-width: 1840px;
  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-sizing: border-box;
          box-sizing: border-box;
  gap: 16px 0;
}
footer.index:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 408px;
  height: 305px;
  content: "";
  position: absolute;
  top: -2px;
  right: 0px;
  z-index: 1;
  background-image: url("/wp-content/themes/adult/assets/img/bg_footer_rigth.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1040px) {
  footer.index:after {
    display: none;
  }
}
footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
}
footer .top {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  footer .top {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
footer .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
footer .top .left img {
  width: 100%;
  max-width: 230px;
  height: auto;
  margin-left: 50px;
}
@media (max-width: 768px) {
  footer .top .left img {
    display: none;
  }
}
footer .top .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
footer .top .right .wraper {
  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;
}
@media (max-width: 968px) {
  footer .top .right .wraper {
    gap: 40px;
  }
}
footer .top .right .footer__title {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
  font-size: 24px;
  line-height: 96%;
  color: #FFFFFF;
  margin-bottom: 24px;
}
footer .top .right .footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
footer .top .right .footer__list a {
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px;
  line-height: 135%;
  color: #FFFFFF;
}
footer .top .right .footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .top .right .footer__logo img {
  width: 100%;
  max-width: 571px;
  height: auto;
}
footer .top .right .footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 40px 0;
}
@media (max-width: 968px) {
  footer .top .right .footer__columns {
    grid-template-columns: repeat(1, 1fr);
    padding: 0px 0 0 0;
  }
}
footer .top .right .footer__columns ol {
  list-style: none !important;
}
footer .top .right .footer__columns ol li {
  list-style: none !important;
}
footer .top .right .footer__columns .footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
footer .top .right .footer__columns .footer__socials .icon path {
  fill: #fff;
}
footer .top .right .footer__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  padding-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 968px) {
  footer .top .right .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer .top .right .footer__bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='white' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
footer .bottom {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1370px) {
  footer .bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media (max-width: 968px) {
  footer .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
footer .bottom .left {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 968px) {
  footer .bottom .left {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
footer .bottom .rigth {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}
@media (max-width: 968px) {
  footer .bottom .rigth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.inkmedirty footer {
  color: #838383;
}
.inkmedirty footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: auto 3px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none;
}
.inkmedirty footer a {
  color: #838383;
}
.inkmedirty footer .top .right .footer__title {
  color: #B00629;
}
.inkmedirty footer .top .right .footer__list a {
  color: #838383;
}
.inkmedirty footer .top .right .footer__columns .footer__socials .icon path {
  fill: #B00629;
}
.inkmedirty footer .top .right .footer__bottom::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='2'><line x1='0' y1='1' x2='100%' y2='1' stroke='%23B00629' stroke-width='2' stroke-dasharray='15 12' stroke-linecap='round'/></svg>");
}

.myNewStyle {
  color: rgb(0, 234, 255);
  background: red;
  width: 100%;
}

.woocommerce-message {
  display: none !important;
}

.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
  max-width: 90vw; /* подгоняем под ширину экрана */
  white-space: normal; /* переносим текст на несколько строк */
  overflow-wrap: break-word; /* перенос слов при необходимости */
  word-break: break-word;
}

@media (max-width: 1280px) {
  .lists_cards .cards_slide .card {
    max-width: 280px !important;
  }
  .lists_cards .head_block .text p {
    font-size: 15px;
  }
  .inkfor .lists_subversive .item_subversive {
    width: 350px;
    height: 420px;
  }
  .whatyoullfind .wrap .lists_subversive {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 30px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive {
    width: 675px;
    height: 668px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text {
    margin-left: 50px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text .title {
    font-size: 42px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text .link_lim {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text .limit_list {
    margin-bottom: 20px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text .limit_list li .head {
    font-size: 22px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text .limit_list li::before {
    width: 30px;
    height: 30px;
    font-size: 19px;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive:first-child {
    width: 425px;
    height: 558px;
  }
  .why_limited .wrap .lists_subversive {
    padding: 0 30px;
  }
  .why_limited .wrap .lists_subversive .item_subversive {
    width: 415px;
  }
  .why_limited .wrap .lists_subversive .item_subversive::before {
    max-width: 185px;
    left: 49%;
    top: 20px;
  }
  .why_limited .wrap .lists_subversive .item_subversive:first-child {
    width: 675px;
  }
  .why_limited .wrap .lists_subversive .item_subversive:first-child .text {
    margin-left: 50px;
  }
  .why_limited .wrap .lists_subversive .item_subversive:first-child .text .title {
    font-size: 42px;
  }
  .why_limited .wrap .lists_subversive .item_subversive:first-child .text .link_lim {
    font-size: 21px;
  }
  .why_limited .wrap .lists_subversive .item_subversive:first-child .text .limit_list li .head {
    font-size: 22px;
  }
}
@media (mim-width: 1540px) {
  .block_img .images .nswiper.nickx-slider-for {
    height: auto !important;
  }
  .nswiper-autoheight, .nswiper-autoheight .nswiper-slide {
    height: auto !important;
  }
}
@media (max-width: 768px) {
  .whatyoullfind .wrap .lists_subversive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive {
    height: auto;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive .text {
    margin-left: 0;
  }
  .whatyoullfind .wrap .lists_subversive .item_subversive:first-child {
    height: 419px;
  }
  .lists_cards .cards_slide .card {
    max-width: 100% !important;
  }
}
.select2-selection.select2-selection--single {
  background-color: transparent !important;
  border-radius: 16px !important;
}

.wc-block-checkout__add-note .wc-block-components-textarea {
  background-color: transparent !important;
  border-radius: 16px !important;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
}

.wc-block-components-totals-coupon__form {
  display: grid;
}
.wc-block-components-totals-coupon__form #wc-block-components-totals-coupon__input-coupon {
  background-color: transparent !important;
  border-radius: 16px !important;
}

textarea {
  resize: none;
}

.wraper_contact .form_block .form textarea::-webkit-input-placeholder, .wraper_contact .form_block .form input::-webkit-input-placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px !important;
  opacity: 1;
}

.wraper_contact .form_block .form textarea::-moz-placeholder, .wraper_contact .form_block .form input::-moz-placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px !important;
  opacity: 1;
}

.wraper_contact .form_block .form textarea:-ms-input-placeholder, .wraper_contact .form_block .form input:-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px !important;
  opacity: 1;
}

.wraper_contact .form_block .form textarea::-ms-input-placeholder, .wraper_contact .form_block .form input::-ms-input-placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px !important;
  opacity: 1;
}

.wraper_contact .form_block .form textarea::placeholder, .wraper_contact .form_block .form input::placeholder {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 400;
  font-size: 20px !important;
  opacity: 1;
}

footer .top .left .payment-cards {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
footer .top .left .payment-cards img {
  height: 20px;
  max-width: auto;
  width: auto;
  margin: 0;
}
footer .top .left .payment-cards ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .payment-cards-mobile {
  display: grid;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
}
@media (min-width: 768px) {
  footer .payment-cards-mobile {
    display: none;
  }
}
footer .payment-cards-mobile img {
  height: 20px;
  max-width: auto;
  width: auto;
  margin: 0;
}
footer .payment-cards-mobile ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}/*# sourceMappingURL=styles.css.map */