* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:active,
:focus {
  outline: 0;
}

a:active,
a:focus {
  outline: 0;
}

aside,
footer,
header,
nav {
  display: block;
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

button,
input,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  display: inline-block;
  color: inherit;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

address {
  font-style: normal;
}

strong {
  display: block;
}

@font-face {
  font-family: Anta;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/maleenchancement-anta-regular.woff2) format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/maleenchancement-roboto-bold.woff2) format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/maleenchancement-roboto-medium.woff2) format("woff2");
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/maleenchancement-roboto-regular.woff2) format("woff2");
}

:root {
  --font-main: "Roboto", sans-serif;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 16px;
  --container-step-mobile: 16px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: #F7F7F7;
  --background-gray: #f7f7f7;
  --main: #000;
  --black: #000000;
  --white: #ffffff;
  --gray: #6e6e6e;
  --light-gray: #7d7d7d;
  --gold: #860103;
  --hover: #710506;
  --active: #390204;
}

.Anta {
  font-family: Anta;
  line-height: normal;
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
}

@media (max-width: 991px) {
  .container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 var(--container-step-mobile);
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background: var(--background-page);
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0;
}

a,
button {
  color: var(--main);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  position: static;
}

.pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
  border: 2px solid transparent;
  background-color: white;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--gold);
  border-color: var(--white);
}

.maleenchancement-blogs .pagination .swiper-pagination-bullet {
  border: 1px solid var(--gold);
}

.cp-link {
  display: block;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.cp-plawka {
  border-radius: 50px;
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #7d7d7d;
  background-color: #ebebeb;
}

.cp-title {
  position: relative;
  padding-bottom: 10px;
  min-width: 327px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 600px) {
  .cp-title {
    min-width: 0;
    width: 100%;
  }
}

.but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px;
  font-family: Anta;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--white);
  border-radius: 15px;
  background: #860103;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 156px;
  min-height: 40px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
  text-transform: uppercase;
}

.but_border {
  border-bottom: 1px solid var(--gray);
  border-radius: 0;
  color: var(--gray);
  background-color: transparent;
}

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

.but_gray {
  color: var(--gray);
  background-color: #F7F7F7;
  border: 1px solid var(--gray);
}

.but_h50 {
  min-height: 50px;
}

@media (any-hover: hover) {
  .but:hover {
    background-color: var(--hover);
  }

  .but_border:hover,
  .but_gray:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
  }
}

.but:focus-visible {
  background-color: var(--hover);
}

.but_border:focus-visible,
.but_gray:focus-visible {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.but:active {
  background-color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.but_border:active,
.but_gray:active {
  background-color: var(--white);
  border-color: var(--hover);
  color: var(--hover);
}

.solo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.solo-link svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.tr-2 {
  min-height: calc(1.5em * 2);
}

.tx-18 {
  font-size: 18px;
}

.tx-24 {
  font-size: 24px;
}

.tx-26 {
  font-size: 26px;
}

.tx-30 {
  font-size: 30px;
}

.tx-30-26 {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .tx-30-26 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .tx-30-26 {
    font-size: 26px;
  }
}

.tx-quantity {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
}

.tx-10 {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.3;
}

.logo {
  display: block;
  width: 98px;
  height: 30px;
}

.logo_big {
  width: 210px;
  height: 45px;
}

.tx-60-32 {
  font-weight: 400;
  font-size: 60px;
  line-height: normal;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
}

.tx-50-26 {
  font-weight: 400;
  font-size: 50px;
  line-height: normal;
}

@media (max-width: 1220px) {
  .tx-60-32 {
    font-size: 52px;
  }

  .tx-50-26 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .tx-60-32 {
    font-size: 42px;
  }

  .tx-50-26 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .tx-60-32 {
    font-size: 32px;
  }

  .tx-50-26 {
    font-size: 26px;
  }
}

.tx-20 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}

.tx-20.Anta {
  line-height: 1.5;
  font-size: 19px;
}

.tx-14 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.tx-main {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}

@media (max-width: 600px) {
  .tx-main {
    font-size: 12px;
  }
}

.tx-40-26 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.3;
}

.tx-32-26 {
  font-weight: 400;
  font-size: 32px;
}

@media (max-width: 1220px) {
  .tx-40-26 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .tx-40-26 {
    font-size: 32px;
  }

  .tx-32-26 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .tx-40-26 {
    font-size: 26px;
  }

  .tx-32-26 {
    font-size: 26px;
  }
}

.tx-12 {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}

.tx-14-12 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.tx-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3
}

@media (max-width: 991px) {
  .tx-14-12 {
    font-size: 13px;
    line-height: 15px;
  }
}

@media (max-width: 600px) {
  .tx-14-12 {
    font-size: 12px;
    line-height: 14px;
  }
}

.input,
.collect input {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 0 16px;
  width: 100%;
  height: 49px;
  background: var(--white);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #1a1a1a;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

.input_textarea {
  padding: 16px;
  height: 120px;
}

@media (any-hover: hover) {
  .input:hover {
    border-color: var(--hover);
  }
}

.input:focus-visible {
  border-color: var(--hover);
}

.brr-30 {
  border-radius: 30px;
}

.brr-20 {
  border-radius: 20px;
}

.brr-15 {
  border-radius: 15px;
}

.p-15 {
  padding: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-14 {
  padding-bottom: 14px;
}

.ptb-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.plr-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.plr-24-16 {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 600px) {
  .plr-24-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.plr-40-16 {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1220px) {
  .plr-40-16 {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 991px) {
  .plr-40-16 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .plr-40-16 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.bg-black {
  background-color: #0e0d0f;
}

.border-bottom {
  border-bottom: 1px solid #e6e6e6;
}

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

.pt-section {
  padding-top: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-15-10 {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 600px) {
  .ptb-15-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.mb-5:not(:last-child) {
  margin-bottom: 5px;
}

.mb-10:not(:last-child) {
  margin-bottom: 10px;
}

.mb-40:not(:last-child) {
  margin-bottom: 40px;
}

.mb-16:not(:last-child) {
  margin-bottom: 16px;
}

.mb-20:not(:last-child) {
  margin-bottom: 20px;
}

.mb-40-20:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .mb-40-20:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .mb-40-20:not(:last-child) {
    margin-bottom: 20px;
  }
}

.mb-section:not(:last-child) {
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .mb-section:not(:last-child) {
    margin-bottom: 75px;
  }
}

@media (max-width: 600px) {
  .mb-section:not(:last-child) {
    margin-bottom: 50px;
  }
}

.bg-gray {
  background-color: var(--background-gray);
}

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

.color-red {
  color: #860103;
}

.color-gray {
  color: #7d7d7d;
}

.color-gray-lite {
  color: #4B4B4B;
}

.color-gold {
  color: var(--gold);
}

.hover-opacity {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .hover-opacity:hover {
    opacity: 0.5;
  }
}

.hover-opacity:focus-visible {
  opacity: 0.5;
}

.hover-opacity:active {
  opacity: 0.5;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.hover-color {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .hover-color:hover {
    color: var(--hover);
  }
}

.hover-color:focus-visible {
  color: var(--hover);
}

.hover-color:active {
  color: var(--active);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

.d-block {
  display: block;
}

.w100 {
  min-width: 0;
  width: 100%;
}

.relative-z2 {
  position: relative;
  z-index: 2;
}

.word-break {
  word-break: break-all;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.underline {
  text-decoration: underline;
}

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

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.rd-load img {
  opacity: 1;
}

.scroll {
  overflow: auto;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 2px;
  background-color: var(--white);
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #1ad0d5;
}

.maleenchancement-terms {
  padding-top: 60px;
}

@media (max-width: 991px) {
  .maleenchancement-terms {
    padding-top: 40px;
  }
}

.maleenchancement-terms h1 {
  font-size: 42px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700;
}

@media (max-width: 991px) {
  .maleenchancement-terms h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms h1 {
    font-size: 16px;
  }
}

.maleenchancement-terms h1:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .maleenchancement-terms h1:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms h1:not(:last-child) {
    margin-bottom: 15px;
  }
}

.maleenchancement-terms h2 {
  font-size: 36px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 700;
}

@media (max-width: 991px) {
  .maleenchancement-terms h2 {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms h2 {
    font-size: 14px;
  }
}

.maleenchancement-terms h2:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .maleenchancement-terms h2:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms h2:not(:last-child) {
    margin-bottom: 15px;
  }
}

.maleenchancement-terms p {
  font-size: 20px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400;
}

@media (max-width: 991px) {
  .maleenchancement-terms p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms p {
    font-size: 12px;
  }
}

.maleenchancement-terms p:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .maleenchancement-terms p:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.maleenchancement-terms ul:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .maleenchancement-terms ul:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms ul:not(:last-child) {
    margin-bottom: 15px;
  }
}

.maleenchancement-terms li {
  font-size: 18px;
  line-height: 1.3;
  color: var(--main);
  font-weight: 400;
}

@media (max-width: 991px) {
  .maleenchancement-terms li {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms li {
    font-size: 12px;
  }
}

.maleenchancement-terms li:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .maleenchancement-terms li:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-terms li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.maleenchancement-lang {
  position: relative;
}

.maleenchancement-lang.active .maleenchancement-lang__list {
  opacity: 1;
  visibility: visible;
}

.maleenchancement-lang.active .maleenchancement-lang__active span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.maleenchancement-lang__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.maleenchancement-lang__active span {
  width: 9px;
  height: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.maleenchancement-lang__list {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
  opacity: 0;
  padding: 5px;
  visibility: hidden;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background-color: var(--white);
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

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

.maleenchancement-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.maleenchancement-header__auths {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}

.maleenchancement-header__profile {
  width: 24px;
  height: 24px;
}

.maleenchancement-header__basket {
  position: relative;
  width: 38px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.maleenchancement-header__basket img {
  width: 26px;
  height: 24px;
}

.maleenchancement-header__basket span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  min-width: 20px;
  min-height: 18px;
  color: var(--white);
  border-radius: 80px;
  background: #860103;
}

@media (max-width: 991px) {
  .maleenchancement-nav_none {
    display: none;
  }
}

.maleenchancement-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 55px;
}

@media (max-width: 1220px) {
  .maleenchancement-nav__list {
    gap: 10px 20px;
  }
}

.maleenchancement-nav__list_footer {
  display: block;
}

.maleenchancement-hero {
  background-image: url(../img/maleenchancement-hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 600px) {
  .maleenchancement-hero {
    background-image: url(../img/maleenchancement-hero-mob.webp);
  }
}

.maleenchancement-hero_about {
  background-image: url(../img/maleenchancement-about-us-background.webp);
}

@media (max-width: 600px) {
  .maleenchancement-hero_about {
    background-image: url(../img/maleenchancement-about-us-background-mob.webp);
  }
}

.maleenchancement-hero__img {
  max-width: 400px;
  max-height: 320px;
}

@media (max-width: 991px) {
  .maleenchancement-hero__img {
    max-width: 300px;
    max-height: 240px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-hero__img {
    max-width: 200px;
    max-height: 160px;
  }
}

.maleenchancement-hero__container {
  padding-top: 140px;
  padding-bottom: 40px;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .maleenchancement-hero__container {
    padding-top: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}

.maleenchancement-hero__descr {
  max-width: 610px;
  width: 100%;
}

.maleenchancement-hero__descr_about {
  max-width: 684px;
}

.maleenchancement-benefits {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1440px;
  padding-right: var(--container-step);
  margin: 0 auto;
}

.maleenchancement-benefits__img {
  max-width: 710px;
  -o-object-fit: cover;
  object-fit: cover;
}

.maleenchancement-benefits__text {
  max-width: 610px;
}

@media (max-width: 768px) {
  .maleenchancement-benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
    padding-left: var(--container-step-mobile);
  }

  .maleenchancement-benefits__text {
    max-width: max-content;
  }
}

.maleenchancement-benefits__icon {
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 600px) {
  .maleenchancement-benefits__icon {
    width: 50px;
    height: 50px;
  }
}

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

@media (max-width: 991px) {
  .maleenchancement-featured__top {
    display: block;
  }
}

@media (max-width: 991px) {
  .maleenchancement-featured__link {
    display: none;
  }
}

.maleenchancement-featured__link_hidden {
  display: none;
}

@media (max-width: 991px) {
  .maleenchancement-featured__link_hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-top: 40px;
  }
}

.maleenchancement-products,
.maleenchancement-products-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template: auto/repeat(3, 1fr);
  gap: 20px;
}

.maleenchancement-products_3 {
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template: auto/repeat(3, 1fr);
}

@media (max-width: 991px) {

  .maleenchancement-products,
  .maleenchancement-products-main {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template: auto/repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .maleenchancement-products,
  .maleenchancement-products-main {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
    grid-template: auto/repeat(1, 1fr);
  }
}

.maleenchancement-products__image {
  position: relative;
  padding-bottom: 100%;
}

.maleenchancement-products__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 15px;
}

.maleenchancement-products__item.disabled {
  display: none;
}

.maleenchancement-products__title {
  color: #1d1d1d;
}

.maleenchancement-products__bottom-brand {
  padding-top: 15px;
  padding-bottom: 5px;
  color: var(--light-gray);
}

.maleenchancement-products__bottom-descr {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* @media (max-width: 991px) {
  .maleenchancement-products__bottom-descr {
    padding: 0 15px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-products__bottom-descr {
    padding: 0 10px;
  }
}

.maleenchancement-products__bottom-descr:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 1220px) {
  .maleenchancement-products__bottom-descr:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .maleenchancement-products__bottom-descr:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-products__bottom-descr:not(:last-child) {
    margin-bottom: 5px;
  }
} */

.maleenchancement-products__price {
  color: #860103;
}

.maleenchancement-products__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 44px;
  gap: 14px;
}

.maleenchancement-products__link {
  max-width: 207px;
  width: 100%;
}

@media (max-width: 600px) {
  .maleenchancement-products__links {
    min-height: 40px;
  }
}

@media (max-width: 991px) {
  .maleenchancement-products__link {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-products__link {
    font-size: 12px;
  }
}

.maleenchancement-products__basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  max-width: 168px;
  width: 100%;
}

.maleenchancement-products__basket.simple {
  max-width: 100%;
}

.maleenchancement-products__basket img {
  width: 18px;
  height: 16px;
}

.maleenchancement-unlock__img {
  background-image: url(../img/maleenchancement-unlock.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .maleenchancement-unlock__img {
    min-height: 316px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-unlock__img {
    min-height: 180px;
    background-image: url(../img/maleenchancement-unlock-mob.webp);
  }
}

@media (max-width: 768px) {
  .maleenchancement-unlock__descr {
    margin-bottom: 20px;
  }
}

.maleenchancement-unlock {
  min-height: 316px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template: auto/repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .maleenchancement-unlock {
    -ms-grid-rows: initial;
    -ms-grid-columns: initial;
    grid-template: none;
    gap: 0;
  }
}

.maleenchancement-unlock__descr {
  max-width: 610px;
  width: 100%;
}

@media (max-width: 768px) {
  .maleenchancement-unlock__descr {
    max-width: 100%;
  }
}

.maleenchancement-unlock__descr--sale {
  font-size: 16px;
  line-height: 1.5;
  color: #860103;
}

.maleenchancement-section-reviews {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #000;
}

.maleenchancement-reviews_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  height: 100%;
}

.maleenchancement-reviews-slider__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template: auto/repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1368px) {
  .maleenchancement-reviews-slider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}

.maleenchancement-reviews-slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  max-width: 295px;
  border-radius: 15px;
  background-color: var(--white);
  height: 409px;
}

/* @media (max-width: 991px) {
  .maleenchancement-reviews-slider__slide {
    width: 610px;
  }
} */

@media (max-width: 768px) {
  .maleenchancement-reviews-slider__slide {
    width: 100%;
    height: 380px;
  }
}

.maleenchancement-reviews-slider__image {
  width: 265px;
  height: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.maleenchancement-reviews-slider__pagination {
  margin-top: 20px;
  display: none;
}

@media (max-width: 1368px) {
  .maleenchancement-reviews-slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

@media (max-width: 991px) {
  .maleenchancement-blogs__top {
    display: block;
  }
}

@media (max-width: 991px) {
  .maleenchancement-blogs__link {
    display: none;
  }
}

.maleenchancement-blogs__link_hidden {
  display: none;
  margin: 20px auto 0 auto;
}

@media (max-width: 991px) {
  .maleenchancement-blogs__link_hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.maleenchancement-blogs-slider__pagination {
  display: none;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .maleenchancement-blogs-slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.maleenchancement-blogs-slider__wrapper,
.maleenchancement-blogs-item__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 40px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template: auto/repeat(3, 1fr);
  gap: 40px 20px;
}

@media (max-width: 991px) {
  .maleenchancement-blogs-slider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }

  .maleenchancement-blogs-item__wrapper {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template: auto/repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .maleenchancement-blogs-item__wrapper {
    -ms-grid-columns: initial;
    grid-template: none;
  }
}

.maleenchancement-blogs-slider__slide,
.maleenchancement-blogs-item {
  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;
  height: auto;
}

@media (max-width: 991px) {
  .maleenchancement-blogs-slider__slide {
    width: 402px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-blogs-slider__slide {
    width: 100%;
  }
}

.maleenchancement-blogs-slider__descr,
.maleenchancement-blogs-item__descr {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.maleenchancement-blogs-slider__image,
.maleenchancement-blogs-item__image {
  position: relative;
  padding-bottom: 40%;
  pointer-events: none;
}

.maleenchancement-blogs-slider__image img,
.maleenchancement-blogs-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.maleenchancement-blogs-slider__bottom,
.maleenchancement-blogs-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.maleenchancement-blogs-slider__link::before,
.maleenchancement-blogs-item__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.maleenchancement-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 991px) {
  .maleenchancement-footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.maleenchancement-footer__left {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 312px;
  flex: 0 1 312px;
}

.maleenchancement-footer__left img {
  -o-object-position: left;
  object-position: left;
}

@media (max-width: 991px) {
  .maleenchancement-footer__left {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-footer__pays {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 254px;
  flex: 0 1 254px;
  height: 56px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .maleenchancement-footer__pays {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 360px;
  flex: 0 1 360px;
}

@media (max-width: 991px) {
  .maleenchancement-footer__nav {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-isblog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .maleenchancement-isblog__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.maleenchancement-isblog__top h1 {
  max-width: 609px;
}

.maleenchancement-isblog__image img {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
}

.maleenchancement-isblog__content {
  max-width: 1029px;
  width: 100%;
}

.maleenchancement-wrapper-products__top {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 320px;
  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;
}

.all-prod-hero {
  background-image: url(../img/maleenchancement-all-products-hero.webp);
}

.custom-prod-hero {
  background-image: url(../img/maleenchancement-daily-vitality-hero.webp);
}

.custom-prod-hero__second {
  background-image: url(../img/maleenchancement-elite-stamina-hero.webp);
}

@media (max-width: 600px) {
  .all-prod-hero {
    background-image: url(../img/maleenchancement-all-products-hero-mob.webp);
  }
  .custom-prod-hero {
    background-image: url(../img/maleenchancement-daily-vitality-hero-mob.webp);
  }
  .custom-prod-hero__second {
    background-image: url(../img/maleenchancement-elite-stamina-hero-mob.webp);
  }

}

.maleenchancement-categories {
  max-width: 400px;
  width: 100%;
}

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

@media (max-width: 991px) {
  .maleenchancement-wrapper-products__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.maleenchancement-wrapper-products__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 296px;
  flex: 0 0 296px;
  width: 100%;
}

@media (max-width: 991px) {
  .maleenchancement-wrapper-products__left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-wrapper-products__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .maleenchancement-wrapper-products__right {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

@media (max-width: 991px) {
  .maleenchancement-wrapper-products .maleenchancement-categories {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    padding: 20px 16px 0;
  }
}

.maleenchancement-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  padding: 0 20px 40px;
}

.maleenchancement-filter__wrapper {
  min-width: 400px;
}

@media (max-width: 991px) {
  .maleenchancement-filter__wrapper {
    width: 100%;
    min-width: 250px;
  }

  .maleenchancement-filter {
    padding-left: 0;
  }
}

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

.maleenchancement-filter__label.hidden {
  display: none;
}

.maleenchancement-filter__button {
  font-size: 12px;
  min-width: 105px;
  min-height: 50px;
}

@media (max-width: 991px) {
  .maleenchancement-filter__button {
    border: 1px solid #a2a2a2;
  }
}

@media (max-width: 600px) {
  .maleenchancement-filter__button {
    min-height: 40px;
  }
}

.maleenchancement-filter .noUi-target {
  height: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--white);
  border: none;
}

.maleenchancement-filter .noUi-connect {
  background-color: #1c0d0a;
}

.maleenchancement-filter .noUi-connects {
  background-color: #dddcdc;
}

.maleenchancement-filter__range .noUi-tooltip {
  /*opacity: 0;
    visibility: hidden;*/
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .maleenchancement-filter__range:hover .noUi-tooltip {
    opacity: 1;
    visibility: visible;
  }
}

.maleenchancement-filter__range.active .noUi-tooltip {
  opacity: 1;
  visibility: visible;
}

.maleenchancement-filter .noUi-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #1c0d0a;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.maleenchancement-filter .noUi-handle::after {
  display: none;
}

.maleenchancement-filter .noUi-handle::before {
  display: none;
}

.maleenchancement-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .maleenchancement-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.maleenchancement-about__descr {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

@media (max-width: 991px) {
  .maleenchancement-about__descr {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-about__image {
  position: relative;
  padding-bottom: 49%;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

@media (max-width: 991px) {
  .maleenchancement-about__image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding-bottom: 60%;
  }
}

@media (max-width: 600px) {
  .maleenchancement-about__image {
    padding-bottom: 100%;
  }
}

.maleenchancement-about__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.maleenchancement-contacts {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
}

.maleenchancement-contacts__title {
  padding-bottom: 40px;
  border-bottom: 1px solid #860103;
  text-align: center;
}

@media (max-width: 991px) {
  .maleenchancement-contacts__title {
    padding-bottom: 30px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .maleenchancement-contacts__title {
    padding-bottom: 20px;
  }
}

.maleenchancement-contacts__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .maleenchancement-contacts__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.maleenchancement-contacts__item-icon {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 17px;
  background: #860103;
}

.maleenchancement-contacts__item-icon svg {
  width: 14px;
  height: 14px;
}

.maleenchancement-contacts__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media (max-width: 991px) {
  .maleenchancement-contacts__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.maleenchancement-contacts__bottom-item {
  width: 100%;
}

.maleenchancement-contacts__bottom-item:nth-child(1) {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 400px;
  flex: 0 1 400px;
}

@media (max-width: 991px) {
  .maleenchancement-contacts__bottom-item:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-contacts__bottom-item:nth-child(2) {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 609px;
  flex: 0 1 609px;
}

@media (max-width: 991px) {
  .maleenchancement-contacts__bottom-item:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-contacts__bottom-title {
  border-bottom: 6px solid #860103;
  max-width: 327px;
  width: 100%;
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.form__button {
  min-width: 350px;
  min-height: 50px;
}

@media (max-width: 600px) {
  .form__button {
    min-width: 0;
    width: 100%;
  }
}

.status {
  display: none;
  margin-top: 20px;
  background-color: #1dc8cc;
  padding: 10px;
}

.form.active .status {
  display: block;
}

.maleenchancement-detail-product__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.maleenchancement-detail-product-container {
  max-width: 50%;
}

.maleenchancement-detail-product-slider {
  height: 80%;
  width: 100%;
}

.product-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.product-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.product-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

@media (max-width: 991px) {
  .maleenchancement-detail-product__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .maleenchancement-detail-product-container {
    max-width: 100%;
  }
}

.maleenchancement-detail-product__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

@media (max-width: 991px) {
  .maleenchancement-detail-product__image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (max-width: 600px) {
  .maleenchancement-detail-product__image {
    padding-bottom: 100%;
  }
}

.maleenchancement-detail-product__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.maleenchancement-detail-product__top-descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 100%;
  align-self: stretch;
}

@media (max-width: 991px) {
  .maleenchancement-detail-product__top-descr {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .maleenchancement-detail-product-container {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 2;
  }
}

.maleenchancement-detail-product__caps {
  width: 100%;
}

@media (max-width: 991px) {
  .maleenchancement-detail-product__caps {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.maleenchancement-detail-product__counts {
  padding-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.maleenchancement-detail-product__counts::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #860103;
  z-index: 1;
}

.maleenchancement-detail-product__bottom {
  background-color: #F4F4F4;
}

.maleenchancement-detail-product__count {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #e3e3e3;
  border-radius: 30px;
  color: #a6a6a6;
  border-radius: 30px;
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.maleenchancement-detail-product__count.active {
  color: var(--white);
  border: 1px solid #E3E3E3;
  background: #860103;
}

.maleenchancement-basket__coupone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  max-width: 820px;
  width: 100%;
}

@media (max-width: 991px) {
  .maleenchancement-basket__coupone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: none;
  }
}

.maleenchancement-basket__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px 24px;
}

@media (max-width: 991px) {
  .maleenchancement-basket__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.maleenchancement-basket__left {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 792px;
  flex: 0 1 792px;
}

@media (max-width: 991px) {
  .maleenchancement-basket__left {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

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

.maleenchancement-basket__buttons-link {
  font-size: 12px;
  min-width: 149px;
  color: var(--black);
  background-color: var(--white);
}

.maleenchancement-basket__buttons-link:hover,
.maleenchancement-basket__buttons-link:focus-visible {
  background-color: var(--white);
  opacity: 0.6;
}

.maleenchancement-basket__heading {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: minmax(0, 294px) 20px minmax(0, 133px) 20px minmax(0, 158px) 20px 70px 20px 24px;
  grid-template: auto/minmax(0, 294px) minmax(0, 133px) minmax(0, 158px) 70px 24px;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 1340px) {
  .maleenchancement-basket__heading {
    display: none;
  }
}

.maleenchancement-basket__right {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 424px;
  flex: 0 1 424px;
}

@media (max-width: 991px) {
  .maleenchancement-basket__right {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.item-solo {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.form-coupone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .form-coupone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
}

.form-coupone__input {
  border-radius: 30px 0 0 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: auto;
  margin-right: -20px;
}

@media (max-width: 991px) {
  .form-coupone__input {
    margin-right: 0;
    border-radius: 30px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 50px;
  }
}

.form-coupone__button {
  position: relative;
  z-index: 2;
  min-height: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  width: 100%;
}

@media (max-width: 991px) {
  .form-coupone__button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-basket-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;
  gap: 20px;
}

@media (max-width: 600px) {
  .maleenchancement-basket-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.maleenchancement-basket-item {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 12px;
}

.maleenchancement-basket-item__left {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 368px;
  flex: 0 1 368px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 768px) {
  .maleenchancement-basket-item__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 420px;
    flex: 0 1 420px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-basket-item__left {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

.maleenchancement-basket-item__left-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.maleenchancement-basket-item__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  height: 126px;
}

@media (max-width: 600px) {
  .maleenchancement-basket-item__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    height: 100px;
  }
}

.maleenchancement-basket-item__right {
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 332px;
  flex: 0 1 332px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 768px) {
  .maleenchancement-basket-item__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 200px;
    flex: 0 1 200px;
  }
}

@media (max-width: 600px) {
  .maleenchancement-basket-item__right {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

@media (max-width: 768px) {
  .maleenchancement-basket-item__subtotal {
    display: none;
  }
}

.maleenchancement-basket-item__exit {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.maleenchancement-counters {
  border: 1px solid #e6e6e6;
  border-radius: 170px;
  padding: 8px;
  width: 130px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  background-color: var(--white);
}

.maleenchancement-counters__button {
  width: 34px;
  height: 34px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.checkout-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.checkout-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkout-form__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.checkout-form__labels {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template: auto/repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 600px) {
  .checkout-form__labels_1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.wrapper-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  position: relative;
}

.wrapper-checkbox__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid #666;
  border-radius: 5px;
  width: 15px;
  height: 15px;
  position: relative;
}

.wrapper-checkbox__icon span {
  position: relative;
  display: none;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(-45deg) translate(1px, -2px);
  transform: rotate(-45deg) translate(1px, -2px);
}

.wrapper-checkbox__icon span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 60%;
  background-color: #999397;
  z-index: 1;
}

.wrapper-checkbox__icon span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #999397;
  z-index: 1;
}

.wrapper-checkbox__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.wrapper-checkbox__checkbox:checked+.wrapper-checkbox__icon {
  background-color: var(--white);
}

.wrapper-checkbox__checkbox:checked+.wrapper-checkbox__icon span {
  display: block;
}

.isbasket {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: 340px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

@media (max-width: 500px) {
  .isbasket {
    width: 100%;
  }
}

.isbasket.active {
  opacity: 1;
  visibility: visible;
}

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

.isbasket__lists {
  width: 100%;
  max-height: 600px;
  padding-right: 10px;
}

.isbasket__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;
  gap: 10px;
}

.isbasket__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  height: 100px;
}

.isbasket__close {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.isbasket__exit {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/maleenchancement-icons/maleenchancement-icon-exit.webp");
}

.isbasket__button.disabled {
  pointer-events: none;
  background: #bfb9b9;
}

.mb-34 {
  margin-bottom: 34px;
}


.pop-up {
  position: fixed;
  padding: 143px 20px 20px 20px;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1000;
  overflow-y: auto;
  display: none;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out
}

.pop-up.click-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.pop-up-card {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 453px;
  min-height: 166px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background: #f7f7f7;
  z-index: 3
}

@media (max-width:600px) {
  .pop-up-card {
    padding: 20px 20px
  }
}

.pop-up-close {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 16px;
  top: 16px;
  z-index: 2;
  cursor: pointer
}

.pop-up-close::after {
  position: relative;
  display: block;
  content: "";
  background-color: #000000;
  width: 100%;
  height: 1px;
  left: 0;
  top: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.pop-up-close::before {
  position: relative;
  display: block;
  content: "";
  background-color: #000000;
  width: 100%;
  height: 1px;
  top: 4px;
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.pop-up-exit {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0
}

.privacy-policy__link,
.shopping-policy__link,
.return-policy__link {
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
  text-decoration-color: rgba(0, 0, 0, 0.283);
  text-underline-offset: 10%;
  opacity: 0.7
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0D0D0D;
  padding: 20px 0;
  z-index: 1000;
  color: var(--white);
}

.cookie-container,
.cookie-container__left {
  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: 20px;
}

.cookie-action {
  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;
  max-width: 260px;
  width: 100%;

}

.capitalize {
  text-transform: capitalize;
}

.cookie-action a {
  border: 1px solid #FFF;
}

.cookie_image {
  width: 70px;
  height: 70px;
}

@media (max-width:600px) {
  .cookie-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cookie-action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
  }
}