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

html {
  --containerPadding: 60px;
  --promoHeight: 40px;
  --headerWidth: 90px;
  --headerHeight: 68px;
  --footerBottom: 77px;
  --longTransition: 1s;
  --basicTransition: 0.4s;
  --fastTransition: 0.2s;
  --translateY: 50px;
  --white: #fff !important;
  --black: #000 !important;
  --grey: #545454 !important;
  --orange: #fd2b0f !important;
  --blue: #007aff !important;
  --green: #d1ee22 !important;
  --activeColor: #000;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px var(--white);
  background-color: var(--white);
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--black);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--black) var(--white) !important;
}

@font-face {
  font-family: "InterExtraLight";
  src: url("/fonts/Inter/Inter-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "InterLight";
  src: url("/fonts/Inter/Inter-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "InterMedium";
  src: url("/fonts/Inter/Inter-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "InterBold";
  src: url("/fonts/Inter/Inter-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "InterSemiBold";
  src: url("/fonts/Inter/Inter-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "InterBlack";
  src: url("/fonts/Inter/Inter-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Bitum";
  src: url("/fonts/Bitum/Bitum.ttf") format("truetype");
}

@font-face {
  font-family: "BitumBold";
  src: url("/fonts/Bitum/Bitum-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Knewave";
  src: url("/fonts/Knewave/Knewave-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "CoveredByYourGrace";
  src: url("/fonts/Covered_By_Your_Grace/CoveredByYourGrace-Regular.ttf")
    format("truetype");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "InterSemiBold", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 33px;
}

h5 {
  font-size: 28px;
}

h6 {
  font-size: 22px;
}

body {
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
  font-family: "InterMedium", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--black);
}
body.overflow-fixed{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.home {
  max-width: 100vw;
  overflow-x: hidden;
}

svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.desktop_hidden {
  display: none;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  padding-right: var(--containerPadding);
  padding-left: var(--containerPadding);
}

a {
  display: block;
  color: var(--black);
  -webkit-transition: var(--fastTransition);
  -o-transition: var(--fastTransition);
  transition: var(--fastTransition);
}

a:hover {
/*  color: var(--activeColor);*/
  color: inherit;
  text-decoration: none;
}

b {
  font-family: "InterSemiBold", sans-serif;
}

.button-oval {
  font-family: "InterSemiBold", sans-serif;
  min-width: 305px;
  font-size: 19px;
  line-height: 1;
  text-align: center;
  padding: 40px;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.button-oval:hover {
  color: var(--white);
  text-decoration: none;
}

.text-orange {
  color: var(--activeColor) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-normal {
  font-family: "Inter", sans-serif !important;
}

.text-extra-light {
  font-family: "InterExtraLight", sans-serif !important;
}

.text-extra-bold {
  font-family: "InterSemiBold", sans-serif !important;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next::after {
  background: url(/img/icon/arrow_right.svg);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-prev::after {
  background: url(/img/icon/arrow_left.svg);
}

.swiper-button-next,
.swiper-button-prev {
  width: 10px;
  height: 16px;
  padding: 2px;
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  box-shadow: none !important;
  outline: none !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: auto;
  right: var(--containerPadding);
  bottom: 55px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 48px;
  height: 5px;
  background: var(--white);
  border-radius: 0;
  opacity: 1;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet-active {
  background: var(--activeColor);
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.black
  .swiper-pagination-bullet {
  background: var(--black);
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.black
  .swiper-pagination-bullet-active {
  background: var(--activeColor);
}

.swiper-container-horizontal > .swiper-pagination-bullets.center {
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.tab {
  font-family: "Bitum", sans-serif;
  font-size: 15px;
  color: var(--white);
  padding: 7px 20px;
  border: 1px solid var(--white);
  border-radius: 20px;
}

.tab:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

.breadcrumb .breadcrumb-item {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--black);
  text-transform: lowercase;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--black);
}

.breadcrumb .breadcrumb-item a {
  display: inline-block;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--black);
}

.breadcrumb .breadcrumb-item:first-of-type {
  margin-left: 0;
}

.select_wrapper {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 170px;
  padding: 10px 15px;
  border: 1px solid var(--black);
  border-radius: 40px;
  z-index: 1;
}

.select_wrapper select {
  display: none;
}

.select_wrapper select:not(:-moz-placeholder-shown) {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select_wrapper select:not(:-ms-input-placeholder) {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select_wrapper select:focus,
.select_wrapper select:active,
.select_wrapper select:not(:placeholder-shown) {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select_wrapper .label {
  top: 0;
  line-height: 1;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}

.select_wrapper .label.opacity {
  opacity: 0.5;
}

.select-selected {
  color: var(--black);
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  z-index: 4;
}

.select-selected::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 20px;
  height: 9px;
  background-image: url(/img/icon/dropdown.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.select-selected.select-arrow-active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-hide {
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.select-items {
  position: absolute;
  width: calc(100% + 2px);
  margin-left: -1px;
  background-color: var(--white);
  border-top: 0;
  top: 100%;
  padding: 15px 0 10px;
  font-size: 12px;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 210px;
  overflow-y: auto;
  border: 1px solid var(--black);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  z-index: -1;
}

.select-items div {
  font-size: 12px;
  padding: 2px 15px;
  cursor: pointer;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.select-styled {
  display: none;
}

.select-options {
  display: none;
}

.pagination {
  font-size: 24px;
}

.pagination .page-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 58px;
  margin-right: 20px;
}

.pagination .page-item:last-child {
  margin-right: 0;
}

.pagination .page-item.disabled {
  display: none;
}

.pagination .page-item.active .page-link {
  color: var(--activeColor);
  background: transparent;
}

.pagination .page-link {
  max-height: 100%;
  width: auto;
  border: none;
  padding: 0;
  color: var(--black);
  font-family: "InterSemiBold", sans-serif;
}

.pagination .page-link:hover,
.pagination .page-link:active,
.pagination .page-link:focus {
  background: transparent;
  color: var(--activeColor);
  box-shadow: none;
  outline: none;
}

.pagination .page-link img {
  height: 100%;
  width: auto;
}

.pagination .page-link-btn {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 58px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  padding: 18px 13px 18px 0;
}

.pagination .page-link-btn-prev {
  padding: 18px 0 18px 13px;
}

.pagination .page-link-btn img {
  height: 100%;
  width: auto;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.pagination .page-link-btn:hover img {
  -webkit-transform: translateX(7px);
  -ms-transform: translateX(7px);
  transform: translateX(7px);
}

.pagination .page-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--black);
}

.pagination .page-link-btn-prev::before {
  right: auto;
  left: 0;
}

.pagination .page-link-btn::after {
  display: none;
}

.valid-field:before {
  position: absolute;
  display: block;
  top: 50%;
  right: 23px;
  content: "";
  background: transparent;
  width: 13px;
  height: 25px;
  border-bottom: 3px solid var(--black);
  border-right: 3px solid var(--black);
  -webkit-transform: translateY(-65%) rotate(45deg);
  -ms-transform: translateY(-65%) rotate(45deg);
  transform: translateY(-65%) rotate(45deg);
}

.product_info-sizes-btn {
  cursor: pointer;
  font-family: "Inter";
  font-size: 13px;
}

.input_wrapper {
  position: relative;
  height: 60px;
}

.input_wrapper input {
  width: 100%;
  height: 100%;
  padding: 23px;
  border: 1px solid var(--black);
  line-height: 1;
  color: var(--black);
  border-radius: 30px;
  font-family: "Inter", sans-serif;
}

.input_wrapper input:focus,
.input_wrapper input:active {
  border: 1px solid var(--black);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.input_wrapper input::-webkit-input-placeholder {
  color: #9a9a9a;
}

.input_wrapper input::-moz-placeholder {
  color: #9a9a9a;
}

.input_wrapper input:-ms-input-placeholder {
  color: #9a9a9a;
}

.input_wrapper input::-ms-input-placeholder {
  color: #9a9a9a;
}

.input_wrapper input::placeholder {
  color: #9a9a9a;
}

.input_wrapper input.input-error {
  -webkit-box-shadow: 0px 0px 10px #d75e4433;
  box-shadow: 0px 0px 10px #d75e4433;
  border-color: var(--activeColor);
}

.input_radio:checked,
.input_radio:not(:checked) {
  position: absolute;
  left: -9999px;
}

.input_radio:checked + label,
.input_radio:not(:checked) + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  line-height: 20px;
}

.input_radio:checked + label:before,
.input_radio:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 23px;
  height: 23px;
  border: 1px solid var(--black);
  border-radius: 100%;
  background: var(--white);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input_radio:checked + label:after,
.input_radio:not(:checked) + label:after {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--activeColor);
  position: absolute;
  top: 50%;
  left: 6px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

.input_radio:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.input_radio:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1) translateY(-50%);
  -ms-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
}

.input_radio ~ label {
  margin-bottom: 0;
}

.input_checkbox:checked,
.input_checkbox:not(:checked) {
  position: absolute;
  left: -9999px;
}

.input_checkbox:checked + label,
.input_checkbox:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 41px;
  line-height: 20px;
  cursor: pointer;
  font-size: 18px;
  font-family: "InterSemiBold", sans-serif;
}

.input_checkbox:checked + label span,
.input_checkbox:not(:checked) + label span {
  font-size: 16px;
  color: #7a7a7a;
}

.input_checkbox:checked + label:before,
.input_checkbox:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid var(--black);
  background-color: var(--white);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input_checkbox:checked + label:after,
.input_checkbox:not(:checked) + label:after {
  content: "+";
  position: absolute;
  font-family: "InterSemiBold", sans-serif;
  font-size: 23px;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  color:#fff;
  background: var(--activeColor);
  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-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.input_checkbox:not(:checked) + label:after {
  opacity: 0;
}

.input_checkbox:checked + label:after {
  opacity: 1;
}

.input-error ~ .tooltip-error {
  position: absolute;
  bottom: -8px;
  right: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  padding: 5px 19px;
  background: #fd2b0f;
  border-radius: 20px;
  z-index: 5;
}

.input-error ~ .tooltip-error span {
  font-family: "Inter", sans-serif;
  color: var(--white);
  font-size: 13px;
}

.input-error ~ .tooltip-error::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -9px;
  right: 24px;
  margin-left: -25px;
  background: #fd2b0f;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  -webkit-box-shadow: 0 0 10px 0 #00000026;
  box-shadow: 0 0 10px 0 #00000026;
  z-index: -1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}

.textarea {
  width: 100%;
  height: 115px;
  padding: 22px 28px;
  background: transparent;
  color: var(--black);
  font-family: "Inter", sans-serif;
  border: 1px solid var(--black);
  border-radius: 0 !important;
  resize: none;
}

.textarea:focus,
.textarea:active {
  border: 1px solid var(--black);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.textarea::-webkit-input-placeholder {
  color: #9a9a9a;
}

.textarea::-moz-placeholder {
  color: #9a9a9a;
}

.textarea:-ms-input-placeholder {
  color: #9a9a9a;
}

.textarea::-ms-input-placeholder {
  color: #9a9a9a;
}

.textarea::placeholder {
  color: #9a9a9a;
}

.color-item_wrapp {
  position: relative;
  display: block;
  border-radius: 50%;
  padding: 5px;
  margin-right: 10px;
}

.color-item_wrapp.active {
  border: 1px solid var(--black);
}

.color-item_wrapp:last-child {
  margin-right: 0;
}

.color-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.color-item.transparent {
  border: 1px solid #00000080;
}

.color-item.transparent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #00000080;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.color-item.transparent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #00000080;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.color-item span {
  position: absolute;
  top: -4px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  font-size: 10px;
  padding: 2px 10px;
  background: #e5e5e5;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.color-item:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.btn-primary {
  width: 100%;
  font-family: "InterSemiBold", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  border-radius: 0;
  border: 1px solid var(--black);
  padding: 18px 20px;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #000;
  border-color: #000;
  background: #fff!important;
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary-light {
  color: #fff;
  background: var(--activeColor);
}

.btn-primary-light:hover,
.btn-primary-light:active,
.btn-primary-light:focus {
  color: #000;
  background: var(--black);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle{
  color: #000;
  border-color: #000;
  background: var(--black);
}

header {
  z-index: 100;
}

.header_promo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: var(--promoHeight);
/*  background: var(--activeColor);*/
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  z-index: 20;
  line-height: 1.2;
}

.header_promo-slider {
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 10px 0;
}

.header_promo-slider .swiper-slide a {
  width: 100%;
  text-align: center;
  color: var(--white);
}

.header_promo-line {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-family: "InterSemiBold", sans-serif;
  color: var(--black);
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

.header_promo-line:hover .category_slider-wrapp {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}

.header_promo-line-wrapp {
  white-space: nowrap;
  display: inline-block;
}

.header_promo-line-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  float: left;
}

.header_promo-line-item > div {
  position: relative;
  white-space: nowrap;
  padding-left: 35px;
  margin-left: 35px;
}
.header_promo-line-item > div a{
  color:#fff;
}
.header_promo-line-item > div::before {
  content: "M";
  position: absolute;
  left: 0;
  top: 50%;
  font-family: "InterBlack", sans-serif;
  transform: translate(-50%, -50%);
}

.header_promo-line-item > div:nth-child(2n)::before {
  content: "E";
}

.header_promo-line-item > div:nth-child(3n)::before {
  content: "L";
}

.header_promo-line-item > div:nth-child(4n)::before {
  content: "L";
}

.header_promo-line-item > div:nth-child(5n)::before {
  content: "Y";
}

.header_promo-line-item > div a:hover {
/*  color: var(--black);*/
  color: #fff;
}

.header_promo-line-item div{
  color: #fff;
}

.header_promo-line-item > div .text-extra-light {
  text-transform: none;
}

.header_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--headerWidth);
  height: 100%;
  padding-top: var(--promoHeight);
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: var(--basicTransition);
  -webkit-transition: var(--basicTransition);
  -moz-transition: var(--basicTransition);
  -ms-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  background: var(--black);
  z-index: 10;
}

/*.header_wrapper.active {
  background: var(--activeColor);
}*/

.header_content {
  position: -webkit-sticky;
  position: sticky;
  top: var(--promoHeight);
  max-width: 40px;
  height: calc(100vh - var(--promoHeight) - 80px);
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: var(--basicTransition);
  -webkit-transition: var(--basicTransition);
  -moz-transition: var(--basicTransition);
  -ms-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  padding-top: 40px;
/*  color: var(--activeColor);*/
  color: #fff;
  font-family: "InterSemiBold", sans-serif;
  text-align: center;
}

/*.header_wrapper.active .header_content {
  color: var(--black);
}
*/
.header_burger {
  width: 38px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.header_burger span {
  background-color: var(--white);
  position: absolute;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  -o-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 5px;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}

.header_burger.open span {
/*  background-color: var(--black);*/
}

.header_burger span:nth-child(1) {
  top: 0;
  left: 0;
}

.header_burger span:nth-child(2) {
  top: 12px;
  left: 0px;
  opacity: 1;
}

.header_burger span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}

.header_burger:not(.open):hover span:nth-child(1) {
  -webkit-transform: rotate(-3deg) scaleY(1.1);
  -ms-transform: rotate(-3deg) scaleY(1.1);
  transform: rotate(-3deg) scaleY(1.1);
}

.header_burger:not(.open):hover span:nth-child(2) {
  -webkit-transform: rotate(3deg) scaleY(1.1);
  -ms-transform: rotate(3deg) scaleY(1.1);
  transform: rotate(3deg) scaleY(1.1);
}

.header_burger:not(.open):hover span:nth-child(3) {
  -webkit-transform: rotate(-4deg) scaleY(1.1);
  -ms-transform: rotate(-4deg) scaleY(1.1);
  transform: rotate(-4deg) scaleY(1.1);
}

.header_burger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 13px;
}

.header_burger.open span:nth-child(2) {
  opacity: 0;
}

.header_burger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 13px;
}
.header_search.hidden{
  display: none;
}
.no-result{
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-top: 30px;
  text-align: center;
}
.no-result span{
  color:var(--activeColor);
}
.header_search img{
  cursor: pointer;
  width: 30px;
  margin-top: 29px;
  margin-left: auto;
  margin-right: auto;
}
/*.header_wrapper.active .header_search:not(.open){
  filter: invert(1);
}*/

.header_search .closed-search{
  display: none;
}
.header_search.open .closed-search{
  display: block;
}
.header_search.open .open-search{
  display: none;
}
.search_wrap {
  position: fixed;
  top: 0;
  right: var(--headerWidth);
  width: 750px;
  height: 100vh;
  background: var(--white);
  color: var(--white);
  padding: calc(var(--promoHeight) + 40px) 80px 25px;
  -webkit-box-shadow: 0px 4px 4px #00000040;
  box-shadow: 0px 4px 4px #00000040;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 5;
  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;

}

.search_wrap.active {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  z-index: 19;
  pointer-events: auto;
}

.search_form{
  background: var(--black);
  position: relative;
  border-radius: 35px;
}
.search_form button{
  position: absolute;
  left: 0;
  background: none;
  border: none;
  outline: none;
  padding: 20px 25px;
}
.search_form input{
  background: none;
  border:none;
  line-height: 67px;
  padding-left: 75px;
  color:#ffffff;
  width: 100%;
}
.search_form input:hover:active:focus:focus-visible {
  border: none;
  outline: none;
}
input:focus-visible {
  outline:none;
}
.search_form input::placeholder{
  color: var(--white);
}
.search_top_list_wrap{
  margin-top: 50px;
}
.search_top_list_title{
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 20px;
}
.search_top_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.search_top_list a{
  text-decoration: underline;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.01em;
}
.top_searches_title{
  font-size: 20px;
  line-height: 135%;
  color: var(--black);
  margin-bottom: 16px;
}
.carousel-top-search .swiper-pagination-bullet{
  width: 48px;
  height: 5px;
  border-radius: 0;
  opacity: 15px;
  background: #DADADA;
  opacity: 1;
}
.product-search .category_option{
  display: none;
}
.carousel-top-search .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: var(--activeColor);;
}
.top_searches{
  padding-bottom: 50px;
}
.carousel-top-search.swiper-pagination{
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 19px;
  margin-top: 19px;
}
.header_cart {
  cursor: pointer;
}

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

.header_link-item {
  width: 26px;
  margin-bottom: 21px;
  transition: var(--basicTransition);
}

.header_wrapper.active .header_link-item {
  filter: invert(1);
}

.header_link-item:last-of-type {
  margin-bottom: 0;
}

.header_developer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: var(--footerBottom);
  color: var(--grey);
  font-size: 14px;
}

.header_menu {
  position: fixed;
  width: 100%;
  top: var(--promoHeight);
  left: 0;
  padding: 35px 0;
  opacity: 1;
  visibility: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transition: var(--fastTransition);
  -o-transition: var(--fastTransition);
  transition: var(--fastTransition);
  z-index: 15;
}

.header_menu.hide {
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.header_menu-link {
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
  pointer-events: auto;
}

.header_menu-link:hover {
/*  color: var(--activeColor);*/
  color: inherit;
  text-decoration: underline;
}

.header_menu-main {
  margin-bottom: 50px;
  pointer-events: auto;
}

.header_menu-main .header_menu-link {
  font-family: "InterSemiBold", sans-serif;
  font-size: 22px;
}

.header_mobile {
  display: none;
  width: 100%;
  height: var(--headerHeight);
  padding: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_mobile .header_burger span {
  background: var(--black);
}
.header_wrapper.active .header_burger span{
/*  background: var(--black);*/
}
.header_mobile .menu_mobile {
  position: relative;
}
.header_mobile-icons-wrapper{
  display:-webkit-box;display:-ms-flexbox;display:flex;
  position: relative;
  z-index: 20;
}

.header_mobile .menu_mobile_wrapp {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  width: 100vw;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: var(--white) !important;
  -webkit-box-shadow: 0px 4px 4px #00000040;
  box-shadow: 0px 4px 4px #00000040;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 5;
}

.header_mobile .menu_mobile_wrapp.active {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.header_mobile .menu_mobile_content {
  width: 100%;
  max-height: calc(100% - var(--headerHeight) - var(--promoHeight));
  height: auto;
  background: var(--white);
}

.header_mobile .menu_mobile_top {
  width: 100%;
  padding: 16px 12px;
  background: var(--white);
}

.header_mobile .menu_mobile-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 19px;
}

.header_mobile .menu_mobile-collapse .menu_mobile-link {
  margin-bottom: 0;
}

.header_mobile .menu_mobile-collapse .collapse_icon {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  margin-left: 25px;
}

.header_mobile .menu_mobile-collapse .collapse_icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  border: 1px solid var(--black);
  background: var(--black);
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.header_mobile
  .menu_mobile-collapse.collapsed
  .collapse_icon
  span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header_mobile .menu_mobile-link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 15px;
  margin-bottom: 19px;
  line-height: 1;
}

.header_mobile .menu_mobile-link.big {
  font-size: 24px;
  font-family: "InterSemiBold", sans-serif;
}

.header_mobile .menu_mobile_bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px 12px;
  border-top: 1px solid var(--black);
  background: var(--white);
  -webkit-box-shadow: 0px 4px 4px #00000040;
  box-shadow: 0px 4px 4px #00000040;
}

.header_mobile .menu_mobile_bottom a {
  font-family: "InterSemiBold", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  margin-right: 30px;
}

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

.header_mobile-icon-item {
  height: 26px;
  width: auto;
  margin-left: 20px;
}

.header_mobile-icon-item img {
  height: 100%;
  width: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.header_mobile-icon-item:first-child {
  margin-left: 0;
}

.header_mobile-cart {
  position: relative;
}

.header_mobile-cart span {
  position: absolute;
  font-family: "InterSemiBold", sans-serif;
  font-size: 8px;
  line-height: 1;
  top: 11.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header_logo {
  max-width: 68px;
  margin-bottom: 75px;
  pointer-events: auto;
}

.header_logo_mobile {
  max-width: 68px;
}

/*.home .header_logo svg path {
  fill: var(--white);
}
*/
.menu_wrapp {
  position: fixed;
  top: 0;
  right: var(--headerWidth);
  width: 370px;
  height: 100vh;
  background: var(--black);
  color: var(--white);
  padding: calc(var(--promoHeight) + 40px) 33px 25px;
  -webkit-box-shadow: 0px 4px 4px #00000040;
  box-shadow: 0px 4px 4px #00000040;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 5;
}

.menu_wrapp.active {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.menu_content {
  max-height: calc(100% - var(--headerHeight));
  height: 100%;
}

.menu_top {
  height: 100%;
  padding: 16px 12px;
}

.menu-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 19px;
  cursor: pointer;
}

.menu-collapse .menu-link {
  margin-bottom: 0;
}

.menu-collapse .collapse_icon {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  margin-left: 25px;
}

.menu-collapse .collapse_icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  border: 1px solid var(--white);
  background: var(--white);
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.menu-collapse.collapsed .collapse_icon span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.menu_top .collapse .menu-link:first-child {
  margin-top: 25px;
}

.menu_top .collapse .menu-link:last-child {
  margin-bottom: 25px;
}

.menu-link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 19px;
  line-height: 1;
}

.menu-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-link.big {
  font-size: 24px;
  font-family: "InterSemiBold", sans-serif;
}

.menu_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 23px 12px;
  border-top: 1px solid var(--white);
}

.menu_bottom a {
  color: var(--white);
  font-family: "InterSemiBold", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  margin-right: 40px;
}

.checkout-checkout .header_menu {
  position: relative;
  top: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 35px 0 55px;
}

.checkout-checkout .header_menu-main,
.checkout-checkout .header_menu-category {
  display: none;
}

.checkout-checkout .header_logo {
  margin-bottom: 0;
}

footer {
  position: relative;
  margin-top: 20px;
  padding-top: 75px;
}

footer .footer_wrapp {
  display: grid;
  grid-template-columns: 3fr 3fr 2fr 4fr;
  grid-gap: 60px 30px;
  margin-bottom: 70px;
}

footer .footer_slogan {
  grid-column-start: 1;
  grid-column-end: 4;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

footer .footer_slogan-main {
  font-size: 50px;
  font-family: "InterSemiBold", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

footer .footer_form {
  position: relative;
  width: 100%;
  height: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--black);
}

footer .footer_form input {
  width: 100%;
  height: 100%;
  padding: 20px;
  border: none !important;
  outline: none;
  color: var(--black);
}

footer .footer_form input::-webkit-input-placeholder {
  color: var(--black);
}

footer .footer_form input::-moz-placeholder {
  color: var(--black);
}

footer .footer_form input:-ms-input-placeholder {
  color: var(--black);
}

footer .footer_form input::-ms-input-placeholder {
  color: var(--black);
}

footer .footer_form input::placeholder {
  color: var(--black);
}

footer .footer_form button {
  font-size: 26px;
  font-family: "Knewave", sans-serif;
  height: 100%;
  vertical-align: center;
  padding: 10px 30px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--black);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

footer .footer_form button:hover {
  background: var(--black);
  color: var(--white);
}

footer .footer_form_success {
  display: none;
  width: auto;
  padding: 0 17px;
}

footer .footer_form_success img {
  width: 26.5px;
}

footer .footer_form_success.active {
  display: block;
}

footer .footer_form .text-danger,
footer .footer_form .text-success {
  position: absolute;
  bottom: -14px;
  left: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  font-family: "InterSemiBold", sans-serif;
  font-size: 14px;
}

footer .footer_form .text-success {
  color: var(--activeColor) !important;
}

footer .footer_contact {
  height: max-content;
  align-self: center;
}

footer .footer_contact-name {
  font-family: "Inter", sans-serif;
  /* margin-bottom: 17px; */
}

footer .footer_contact-phone {
  font-size: 45px;
  font-family: "Knewave", sans-serif;
  white-space: nowrap;
}

footer .footer_contact-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

footer .footer_contact-schedule-day {
  margin-right: 15px;
}

footer .footer_menu {
  grid-column-start: 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 350px;
}

footer .footer_menu-category a {
  line-height: 1;
  font-family: "InterSemiBold", sans-serif;
  margin-bottom: 15px;
}

footer .footer_menu-info {
  -ms-flex-item-align: center;
  align-self: center;
}

footer .footer_menu-info a {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  line-height: 16px;
  margin-bottom: 15px;
}

footer .footer_bottom {
  border-top: 1px solid var(--black);
}

footer .footer_bottom-wrapp {
  width: 100%;
  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;
  height: var(--footerBottom);
}

footer .footer_bottom-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer_bottom-item {
  font-size: 12px;
  font-family: "Inter", sans-serif;
  margin-right: 44px;
}

footer .footer_bottom-item:last-child {
  margin-right: 0;
}

footer .footer_bottom-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer_bottom-pay img {
  height: 22px;
  width: auto;
  margin-left: 15px;
}

.product footer,
.checkout-checkout footer {
  background: var(--activeColor);
}

.product footer a:hover,
.checkout-checkout footer a:hover {
  color: var(--white);
}

.main {
  padding-right: var(--headerWidth);
}

.banner_slide {
  position: relative;
}

.banner_slide-img_mob {
  display: none;
}

.banner-title {
  position: absolute;
  max-width: 750px;
  bottom: 110px;
  right: var(--containerPadding);
  font-family: "InterExtraLight", sans-serif;
  text-align: right;
  text-transform: uppercase;
  color: var(--white);
  font-size: 150px;
  line-height: 0.88;
}

.banner-title b {
  font-family: "InterSemiBold", sans-serif;
}

.banner-link {
  position: absolute;
  bottom: 190px;
  right: 450px;
  z-index: 1;
}

.slogan {
  margin-top: 165px;
}

.slogan_text {
  position: relative;
  max-width: 97%;
  font-size: 5.9vw;
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  z-index: 1;
}

.slogan_text_1 {
  white-space: break-spaces;
}

.slogan_text_2 {
  text-align: right;
  margin: 0 0 0 auto;
}

.slogan_main {
  width: max-content;
  font-size: 5.9vw;
  font-family: "InterSemiBold", sans-serif;
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 auto;
/*  animation: changeColor 2s infinite;*/
}

@keyframes changeColor {
  0% {
    color: var(--blue);
  }
  33% {
    color: var(--blue);
  }
  34% {
    color: var(--green);
  }
  66% {
    color: var(--green);
  }
  67% {
    color: var(--orange);
  }
  100% {
    color: var(--orange);
  }
}

.slogan_img {
  max-width: 84%;
  margin: 0 auto;
}

.slogan_img_mob {
  display: none;
  max-width: 95%;
}

.slogan_decor {
  position: absolute;
  z-index: -1;
}

.slogan_decor_1 {
  top: 1%;
  left: 19.5vw;
  width: 26%;
  height: 54.5%;
  transform: translateY(-50%);
  z-index: 1;
}

.slogan_decor_2 {
  width: 27.2%;
  height: 89%;
  top: -19%;
  right: 3%;
}

.slogan_decor_3 {
  width: 21%;
  height: 77%;
  bottom: -20%;
  left: 5%;
}

.slogan_decor_4 {
  width: 30.5%;
  bottom: -20%;
  right: 15%;
}

.slogan_decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product_item {
  position: relative;
}

.sertificate .product_item {
  display: none;
}

.product_item-img {
  position: relative;
  margin: 2px 2px 38px;
  outline: 2px solid transparent;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

/*.product_item:hover .product_item-img {
  outline-color: var(--activeColor);
}*/

.product_item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.product_item:hover .product_item-hover {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.product_item-sizes {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.product_item-sizes span {
  font-family: "InterSemiBold", sans-serif;
  color: var(--black);
}

.product_item-sizes span:hover {
  color: var(--activeColor);
}

.product_item-name {
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
}

.product_item-price {
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
}

.product_item-price .price-old {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-decoration: line-through;
  margin-right: 10px;
}

/*.product_item:hover .product_item-price {
  color: var(--activeColor);
}*/

.product_item:hover .product_item-price .price-old{
  color: var(--black);
}

/*.product_item .product_item-price.product_item-price-special {
  color: var(--activeColor);
}*/

.product_item .product_item-price.product_item-price-special .price-old,
.product_item:hover .product_item-price.product_item-price-special .price-old
{
  color: var(--black);
}

.product_item-discount{
  font-size: 22px;
  line-height: 20px;
  color: var(--activeColor);
  font-family: "InterSemiBold", sans-serif;
  position: absolute;
  top:20px;
  left:20px;
  z-index: 3;
}
.category_slider {
  margin-top: 150px;
}
section.category{
  min-height: 650px;
}
.category_slider-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;
  margin-bottom: 60px;
}

.category_slider .swiper-container {
  width: calc(100% + var(--containerPadding));
  margin-right: calc(-1 * var(--containerPadding));
}

.category_slider-title {
  font-family: "InterSemiBold", sans-serif;
  font-size: 18px;
}

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

.category_slider-navigation.hidden {
  display: none !important;
}

.category_slider-navigation .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.category_slider-navigation .swiper-pagination-bullet {
  font-family: "InterSemiBold", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: var(--black);
  background: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  margin-right: 10px;
  opacity: 1;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.category_slider-navigation .swiper-pagination-bullet:last-of-type {
  margin-right: 0;
}

.category_slider-navigation .swiper-pagination-bullet-active {
  color: var(--activeColor);
}

.category_slider-navigation .swiper-pagination-bullet:hover {
  color: var(--activeColor);
}

.category_slider-navigation .swiper-button-next {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 58px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin-left: 35px;
  padding: 18px 13px 18px 0;
}

.category_slider-navigation .swiper-button-next img {
  height: 100%;
  width: auto;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.category_slider-navigation .swiper-button-next:hover img {
  -webkit-transform: translateX(7px);
  -ms-transform: translateX(7px);
  transform: translateX(7px);
}

.category_slider-navigation .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--black);
}

.category_slider-navigation .swiper-button-next::after {
  display: none;
}

.instagram {
  margin-top: 170px;
  max-width: 100%;
  overflow-x: hidden;
}

.instagram_line {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-family: "InterSemiBold", sans-serif;
  font-size: 37px;
  margin-bottom: 33px;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

.instagram_line:hover .category_slider-wrapp {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}

.instagram_line-wrapp {
  font-size: 2rem;
  white-space: nowrap;
  display: inline-block;
}

.instagram_line-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  text-transform: uppercase;
  float: left;
}

.instagram_line-item > div {
  white-space: nowrap;
}

.text-gray {
  color: rgba(0, 0, 0, 0.30);
}

.instagram_line-item > div .text-extra-light {
  text-transform: none;
}

/* .instagram_line_1 {
  -webkit-animation: sliderLineOne 10s linear infinite;
  animation: sliderLineOne 10s linear infinite;
}

.instagram_line_2 {
  -webkit-animation: sliderLineTwo 15s linear infinite;
  animation: sliderLineTwo 15s linear infinite;
} */

.instagram_content {
  width: 100%;
  display: grid;
  grid-template-columns: 45fr 66fr 45fr;
  grid-template-rows: 31fr 12fr 11fr 41fr;
  grid-gap: 15px;
}

.instagram_content-text {
  background: var(--black);
  color: var(--white);
  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: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 33px 45px 40px;
}

.instagram_content-link {
  font-family: "InterSemiBold", sans-serif;
  font-size: 53px;
  color: var(--white);
  margin-bottom: 7px;
}

.instagram_content-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.instagram_content-descr {
  font-family: "InterRegular", sans-serif;
  text-align: center;
  margin-bottom: 13px;
}

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

.instagram_content-tabs .tab {
  margin-right: 12px;
}

.instagram_content-tabs .tab:last-of-type {
  margin-right: 0;
}

.instagram_content-item {
  position: relative;
}

.instagram_content-item img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.instagram_content-item-1 {
  grid-row-start: 1;
  grid-row-end: 3;
}

.instagram_content-item-2 {
  grid-row-end: 3;
  grid-row-start: 1;
  grid-column-start: 3;
}

.instagram_content-item-3 {
  grid-row-start: 3;
  grid-row-end: 5;
}

.instagram_content-item-4 {
  grid-row-start: 2;
  grid-row-end: 5;
}

.instagram_content-item-5 {
  grid-row-start: 3;
  grid-row-end: 5;
}

@-webkit-keyframes sliderLineOne {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes sliderLineOne {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes sliderLineTwo {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes sliderLineTwo {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

.checkout-checkout .instagram_content {
  display: none;
}

.checkout-checkout footer {
  display: none;
}

.category {
  padding-top: 40px;
}

.category_name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 43px auto;
}

.category_option {
  display: none;
  width: 25px;
}

.category_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;
}

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

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

.category_filter-buttons button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent !important;
  border: none;
  outline: none;
  color: var(--black) !important;
  text-transform: uppercase;
  font-family: "InterSemiBold", sans-serif;
  font-size: 18px;
  padding: 0;
  margin-right: 45px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.category_filter-buttons button:last-of-type {
  margin-right: 0;
}

.category_filter-buttons button:hover,
.category_filter-buttons button:active,
.category_filter-buttons button:focus {
  background: transparent !important;
  color: var(--activeColor) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.category_filter-buttons button:hover .collapse_icon span,
.category_filter-buttons button:active .collapse_icon span,
.category_filter-buttons button:focus .collapse_icon span {
  border-color: var(--activeColor);
  background: var(--activeColor);
}

.category_filter-buttons button .collapse_icon {
  position: relative;
  width: 9px;
  height: 9px;
  margin-left: 20px;
}

.category_filter-buttons button .collapse_icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  border: 1px solid var(--black);
  background: var(--black);
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.category_filter-buttons button.collapsed .collapse_icon span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.category_filter-wrapp {
  padding-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: -15px;
}

.category_filter-wrapp .checkbox {
  margin-right: 55px;
  margin-bottom: 15px;
}

.category_filter-wrapp .checkbox.disabled {
  opacity: 0.3;
}

.category_filter-wrapp .checkbox .input_checkbox:checked + label,
.category_filter-wrapp .checkbox .input_checkbox:not(:checked) + label {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.category_filter-select {
  margin-left: 9vw;
}

.category_filter_mob {
  padding-top: 30px;
}

.category_filter_mob button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "InterSemiBold", sans-serif;
  font-size: 18px;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 27px;
  width: 100%;
  text-align: left;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.category_filter_mob button:hover,
.category_filter_mob button:active,
.category_filter_mob button:focus {
  background: transparent !important;
  color: var(--activeColor) !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.category_filter_mob button:hover .collapse_icon span,
.category_filter_mob button:active .collapse_icon span,
.category_filter_mob button:focus .collapse_icon span {
  border-color: var(--activeColor);
  background: var(--activeColor);
}

.category_filter_mob button .collapse_icon {
  position: relative;
  width: 9px;
  height: 9px;
  margin-left: 20px;
}

.category_filter_mob button .collapse_icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  border: 1px solid var(--black);
  background: var(--black);
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.category_filter_mob button.collapsed .collapse_icon span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.category_filter_mob .category_filter-wrapp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  padding-top: 0;
  padding-bottom: 27px;
}

.category_product {
  width: calc(100% + var(--containerPadding));
  margin-top: 43px;
  margin-right: calc(-1 * var(--containerPadding));
}

.category_product_wrapp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.category_product_wrapp.big {
  grid-template-columns: repeat(2, 1fr);
}

.category_pagination {
  margin-top: 70px;
}

.new {
  position: relative;
  margin-top: 110px;
}

.new_flip {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30vw;
  height: 30vw;
  max-width: 450px;
  max-height: 450px;
  margin: auto;
  border: 36px solid var(--black);
/*  animation: changeBorderColor 2s infinite;*/
}

.new_flip-wrapp {
  -ms-flex-item-align: center;
  align-self: center;
}

.new_flip-img {
  width: 80%;
  -webkit-transition: var(--fastTransition);
  -o-transition: var(--fastTransition);
  transition: var(--fastTransition);
}

.new_flip-img.filtered-img {
  width: 95%;
  filter: drop-shadow(-23px 26px 3px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.new_flip-mark {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 16px;
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
  transform: translateX(-50%);
  color: #fff;
}

.new_flip-mark_1 {
  top: -36px;
}

.new_flip-mark_2 {
  bottom: -36px;
}

.new_flip-title {
  position: absolute;
  left: 50%;
  width: 100%;
  font-family: "CoveredByYourGrace", sans-serif;
  font-size: 5vw;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: var(--fastTransition);
  -o-transition: var(--fastTransition);
  transition: var(--fastTransition);
}

.new_flip-title_1 {
  top: 17%;
}

.new_flip-title_2 {
  top: 87%;
}

.new_flip-text {
  position: absolute;
  width: calc(100% + 36px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
}

.new_flip:hover .new_flip-img {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.new_flip:hover .new_flip-title_1 {
  top: 87%;
}

.new_flip:hover .new_flip-title_2 {
  top: 17%;
}

@keyframes changeBorderColor {
  0% {
    border-color: var(--blue);
  }
  33% {
    border-color: var(--blue);
  }
  34% {
    border-color: var(--green);
  }
  66% {
    border-color: var(--green);
  }
  67% {
    border-color: var(--orange);
  }
  100% {
    border-color: var(--orange);
  }
}

.new_main {
  position: relative;
}

.new_main-img {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.new_main-title {
  position: absolute;
  top: 4.5vw;
  left: 50%;
  width: max-content;
  font-size: 6vw;
  font-family: "Knewave", sans-serif;
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--blue);
  transform: translateX(-50%);
}

.new_main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 16vw;
  text-transform: uppercase;
  font-family: "InterSemiBold";
  -webkit-text-stroke: 1px var(--black);
  color: transparent;
  z-index: -1;
}

.new_main-text.white {
  -webkit-text-stroke: 1px var(--white);
  z-index: 1;
}

.new_main-mark {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 18px;
  line-height: 1.35;
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.new_main-mark_1 {
  top: 1.5%;
}

.new_main-mark_2 {
  bottom: 1.5%;
}

.new_icon {
  position: absolute;
  top: 0;
  right: 48vw;
  width: 11vw;
  transform: translateY(-40%);
}

.new_icon-big {
  position: absolute;
  bottom: 0;
  right: 24vw;
  width: 30vw;
  transform: translateY(40%);
}

.product_back {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 35px auto;
}

.product_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 75px;
}

.product_top nav {
  margin-bottom: 30px;
}

.product_wrapp ~ .instagram .instagram_content {
  display: none;
}

.product_wrapp ~ footer {
/*  background: var(--activeColor);*/
}

.product_content {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 85fr 30fr;
  grid-gap: 135px;
}

.product_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.product_img a{
  position: relative;
}
.product_img-big {
  grid-column-start: 1;
  grid-column-end: 3;
}

.product_info {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding-top: 60px;
}

.product_info-text {
  font-size: 13px;
  margin-bottom: 35px;
}

.product_wrapp.sertificate .product_info-text {
  font-family: "Inter";
}

.product_info_slider {
  display: none;
}

.product_info h5 {
  max-width: 334px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  margin-bottom: 35px;
}

.product_info-price {
  text-align: left;
  font-family: "Bitum", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.product_info-price .old {
  font-size: 14px;
  text-decoration: line-through;
}

.product_info-color {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 55px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product_info-color .color-item {
  margin-right: 18px;
}

.product_info-color .color-item:last-child {
  margin-right: 0;
}

.product_info-sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "InterSemiBold", sans-serif;
  margin-bottom: 10px;
}

.product_info-sizes label {
  margin-right: 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
}
.product_info-sizes label.disabled,
.product_item-sizes span.disabled {
  opacity: 0.2;
}
.product_info-sizes label:last-child {
  margin-right: 0;
}
.product_info-sizes label:hover{
  text-decoration: underline;
}
.product_info-sizes input:checked + span {
  text-decoration: underline;
}

.product_info-title {
  font-size: 18px;
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
  margin-top: 45px;
  margin-bottom: 15px;
}

.product_info-descr {
  font-size: 13px;
  margin-bottom: 60px;
}

.product_wrapp.sertificate .product_info-descr-text {
  font-family: "Inter";
}

.product_info-descr.active .product_info-descr-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow-y: hidden !important;
  max-height: 83px;
  height: auto;
  font-family: "Inter";
}

.product_info-descr-btn {
  display: none;
  margin-top: 8px;
  border: none;
  background: transparent;
  color: #979797;
  padding: 0;
  outline: none;
}

.product_info-descr-btn:hover {
  text-decoration: underline;
}

.product_info-descr.active .product_info-descr-btn {
  display: block;
}

.product_info-buy {
  margin-bottom: 22px;
}

.product_info-ask {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-size: 14px;
  cursor: pointer;
}

.sertificate .product_info-descr.active .product_info-descr-text {
  max-height: max-content;
  overflow-y: visible !important;
  display: inline-block;
}

.sertificate_denomination {
  background: #ffffff;
  border: 1px solid #555555;
  padding: 17px 30px;
  text-align: center;
  margin-bottom: 22px;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sertificate_denomination::placeholder {
  color: #000000;
  text-indent: 0px;
  transition: text-indent 0.4s ease;
}

.sertificate_denomination::-webkit-outer-spin-button,
.sertificate_denomination::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

#modal-sertificate .modal-body {
  padding: 40px 60px;
  text-align: left;
}

#modal-sertificate .modal-body .modal-title {
  text-align: center;
  font-size: 20px;
}

#modal-sertificate .modal-body ol {
  font-family: "Inter";
  padding-left: 15px;
  margin-top: 20px;
}

#modal-sertificate .modal-body ol a {
  display: inline-block;
}

#modal-sertificate .modal-body ol li,
#modal-sertificate .modal-body .modal-text {
  font-size: 14px;
}

.sertificate .product_info-descr-btn {
  outline: none;
}

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

input.sertificate_denomination:focus::placeholder {
  text-indent: 500px;
  transition: text-indent 0.4s ease;
}

input.sertificate_denomination:focus::-webkit-input-placeholder {
  text-indent: 500px;
  transition: text-indent 0.4s ease;
}

input.sertificate_denomination:focus:-moz-placeholder {
  text-indent: 500px;
  transition: text-indent 0.4s ease;
}

input.sertificate_denomination:focus:-ms-input-placeholder {
  text-indent: 500px;
  transition: text-indent 0.4s ease;
}

#modal-measurements {
  padding: 0 !important;
}

#modal-measurements .modal-dialog {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

#modal-measurements .modal-content {
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#modal-measurements .modal-body {
  padding: 38px 48px;
  font-size: 15px;
}

#modal-measurements .modal-body .close {
  width: 21px;
  position: absolute;
  top: 23px;
  right: 18px;
}

#modal-measurements h6 {
  margin-bottom: 44px;
  text-align: center;
}

#modal-measurements ul {
  list-style-type: none;
  margin-bottom: 55px;
  font-family: "Inter";
}

#modal-measurements ul li {
  position: relative;
}

#modal-measurements ul li::first-letter {
  position: relative;
  padding-left: 15px;
}

#modal-measurements ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#modal-measurements .size-mob .size-link {
  display: none;
  margin-top: 40px;
}

#modal-measurements .size-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

#modal-measurements .size-title {
  font-family: "InterSemiBold", sans-serif;
  text-transform: uppercase;
}

#modal-measurements .size-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
}

#modal-measurements .size-link img {
  width: 31px;
  height: auto;
  margin-right: 13px;
}

#modal-measurements .size-table {
  width: 100%;
}

#modal-measurements .size-table table {
  width: 100%;
  font-size: 14px;
}

#modal-measurements .size-table tr th {
  max-width: 127px;
  padding: 16px;
  border: 1px solid #a9aeb2;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  line-height: 110%;
  font-weight: normal;
}
#modal-measurements .size-table tr td {
  max-width: 127px;
  padding: 16px;
  border: 1px solid #a9aeb2;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  line-height: 110%;
}

#modal-measurements .size-table tr th:first-child,
#modal-measurements .size-table tr td:first-child {
  width: 127px;
  text-align: left;
  white-space: normal;
}

#modal-question .modal-dialog,
#modal-not-available .modal-dialog {
  max-width: 550px;
}

#modal-question .modal-content,
#modal-not-available .modal-content {
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#modal-question .modal-body,
#modal-not-available .modal-body {
  padding: 41px 60px;
  font-size: 15px;
}

#modal-question .modal-body .close,
#modal-not-available .modal-body .close,
#modal-sertificate .modal-body .close {
  width: 21px;
  position: absolute;
  top: 23px;
  right: 18px;
}

#modal-question h6,
#modal-not-available h6 {
  margin-bottom: 44px;
  text-align: center;
}

#modal-not-available h6 {
  margin-bottom: 25px;
}

#modal-not-available .modal-text {
  font-size: 15px;
  line-height: 1.4;
  max-width: 365px;
  width: 100%;
  margin: 0 auto 30px;
}

#modal-question form .form-group,
#modal-not-available form .form-group {
  margin-bottom: 25px;
}

#modal-question form input,
#modal-not-available form input {
  height: auto;
  padding: 19px 25px;
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
}

#modal-question form input::placeholder,
#modal-not-available form input::placeholder {
  color: var(--black);
}

#modal-question form textarea {
  height: 115px;
  padding: 19px 25px;
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  resize: none;
}

#modal-question form textarea::placeholder {
  color: var(--black);
}

#modal-question form .btn,
#modal-not-available form .btn {
  width: max-content;
  margin: 0 auto;
  padding: 18px 50px;
}

.checkout .breadcrumb {
  margin-bottom: 40px;
}

.checkout h3 {
  margin-bottom: 25px;
}

.checkout_wrapp {
  display: grid;
  grid-template-columns: 6fr 1fr 5fr;
}

.checkout_title {
  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;
  text-transform: none;
  margin-bottom: 44px;
}

.checkout_title_main {
  margin-bottom: 50px;
}

.checkout_title span {
  font-size: 24px;
}

.checkout_title a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #aaaaaa;
  text-decoration: underline;
}

.checkout_title a:hover {
  color: var(--activeColor);
}

.checkout_user_info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px 32px;
  margin-bottom: 43px;
}

.checkout_input_wrapper_valid {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.checkout_input_wrapper_valid input {
  width: 100%;
}

.checkout_input_wrapper_valid_name {
  grid-column-start: 1;
  grid-column-end: 3;
}

.checkout .radio {
  margin-bottom: 28px;
}

.checkout .radio.radio_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkout .radio_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 28px;
}

.checkout .radio_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 17px;
  margin-left: 26px;
}

.checkout .radio_img img {
  max-width: none;
  width: auto;
  height: 100%;
  margin-right: 16px;
}

.checkout .radio_img img:last-child {
  margin-right: 0;
}

.checkout_shipping_methods_wrapper {
  margin-bottom: 49px;
}

.checkout_payment_methods_wrapper {
  margin-bottom: 35px;
}

.checkout_comment {
  margin-bottom: 41px;
}

.checkout_call label {
  font-size: 15px !important;
}
@media (max-width: 768px) {
  #carousel-top-search .swiper-slide{
    width: 36%;
  }
}
@media (max-width: 575px) {
  .modal-dialog {
    width: 90vw;
    margin: 0.5rem auto;
  }
  .search_top_list_title{
    font-size: 14px;
  }
  .search_top_list a{
    font-size: 14px;
  }
  .header_promo{
    height: 30px;
  }
  .top_searches{
    padding-bottom: 24px;
    width: calc( 100% + 12px);
  }
  .search_top_list{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 35px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .checkout_call {
    margin-bottom: 1em;
  }
  .search_wrap{
    padding: 30px 12px;
    top:100px;
    width: 100%;
    height: calc( 100vh - 94px);
    bottom:0;
    top: 90px;
  }
  .search_wrap.active{
    padding: 30px 12px!important;
  }
}

.checkout_product_item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 40px;
  padding-bottom: 25px;
  padding-top: 25px;
  border-bottom: 1px solid var(--black);
}

.checkout_product_item:first-child {
  padding-top: 0;
}

.checkout_product_item:last-child {
  padding-bottom: 55px;
}

.checkout_product_item_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.checkout_product_item_name {
  font-family: "InterSemiBold", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.checkout_product_item_close {
  max-width: 16px;
  width: 100%;
  padding: 1px 0;
  cursor: pointer;
}

.checkout_product_item_size {
  font-family: "InterSemiBold", sans-serif;
  font-size: 14px;
  margin-bottom: 25px;
}

.checkout_product_item_price {
  font-family: "InterSemiBold", sans-serif;
  font-size: 14px;
  margin-bottom: 11px;
}

.checkout_product_item_amount .box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 28px;
}

.checkout_product_item_amount .minus,
.checkout_product_item_amount .plus {
  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: 28px;
  height: 28px;
  border: 1px solid #0e0e0e;
  cursor: pointer;
}

.checkout_product_item_amount .minus img,
.checkout_product_item_amount .plus img {
  width: 9px;
}

.checkout_product_item_amount-input {
  font-weight: 300;
  position: relative;
  width: 34px;
  height: 100%;
  text-align: center;
  border: none;
  outline: 0;
  background: #fff;
  border-radius: 0;
}

.checkout-totals_mob {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% + var(--containerPadding) + var(--containerPadding));
  margin-left: calc(-1 * var(--containerPadding));
  font-size: 22px;
  font-family: "InterSemiBold", sans-serif;
  padding: 22px var(--containerPadding);
  border-bottom: 1px solid var(--black);
}

.checkout-totals_mob_bottom {
  display: none;
}

.checkout_coupone {
  border-bottom: 1px solid var(--black);
}

.checkout_coupone-btn {
  padding: 28px 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;
  font-family: "Inter";
}

.checkout_coupone-btn img {
  width: 16px;
}

.checkout_coupone-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 28px;
  height: 88px;
}

.checkout_coupone-wrapp input {
  width: 100%;
  height: 100%;
  border: 1px solid #dddddd;
  border-right: none;
  padding: 28px;
  background: var(--white);
  outline: none;
}

.checkout_coupone-wrapp button {
  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;
  height: 100%;
  padding: 0 40px;
  border: 1px solid var(--activeColor);
  background: var(--activeColor);
  color: var(--black);
  font-family: "InterSemiBold", sans-serif;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.checkout_coupone-wrapp button:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.checkout_certificate {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--black);
}

.checkout_certificate-btn {
  padding: 28px 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;
  font-family: "Inter";
}

.checkout_certificate-btn img {
  width: 16px;
}

.checkout_certificate-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 28px;
  height: 88px;
}

.checkout_certificate-wrapp input {
  width: 100%;
  height: 100%;
  border: 1px solid #dddddd;
  border-right: none;
  padding: 28px;
  background: var(--white);
  outline: none;
}

.checkout_certificate-wrapp button {
  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;
  height: 100%;
  padding: 0 40px;
  border: 1px solid var(--activeColor);
  background: var(--activeColor);
  color: var(--black);
  font-family: "InterSemiBold", sans-serif;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
}

.checkout_certificate-wrapp button:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.checkout_certificate-detail {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  font-family: "Inter";
  text-decoration: underline;
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin-bottom: 25px;
}

.checkout_certificate-detail svg {
  width: 18px;
  height: auto;
}

.checkout_certificate-detail svg circle {
  fill: var(--activeColor);
}

.checkout_promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.checkout_promo input[name="coupon"] {
  width: 100%;
  color: #2c2c2c;
  height: auto;
  border: 1px solid #c6c6c6;
  padding: 20px;
  line-height: 16px;
}

.checkout_promo input[name="coupon"]:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkout_promo input[type="button"] {
  background-color: #939cad;
  padding: 21px;
  border: 1px solid #939cad;
  color: #fff;
  min-width: 250px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: auto;
  line-height: 17px;
}

.checkout_promo input[type="button"]:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkout_promo input[type="button"]:hover {
  text-decoration: underline;
}

.checkout_sum {
  margin-bottom: 30px;
  margin-top: 32px;
}

.checkout_sum_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;
  font-family: "InterBold", sans-serif;
  margin-bottom: 5px;
}

.checkout_sum_item_total {
  margin-top: 23px;
  font-size: 24px;
}

.checkout_sum_item:first-child {
  margin-top: 0;
}

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

.checkout_sum_button {
  padding: 30px;
}

.checkout_sum_button_mob {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: calc(100% + var(--containerPadding) + var(--containerPadding));
  margin-left: calc(-1 * var(--containerPadding));
  padding: 18px var(--containerPadding);
  line-height: 1.2;
}

.checkout_sum_button-price {
  text-align: right;
  font-size: 24px;
  line-height: 1;
}

.checkout_sum_button-price span {
  font-family: "InterMedium", sans-serif;
  font-size: 13px;
  line-height: 1;
  text-transform: lowercase;
  margin-bottom: 3px;
}

.checkout_privacy {
  width: 100%;
  margin-bottom: 45px;
  font-size: 14px;
}

.checkout_privacy label {
  font-size: 14px !important;
  margin-bottom: 0;
}

.checkout_privacy label a {
  display: inline;
  text-decoration: underline;
}

.checkout_sticky {
  grid-column-start: 3;
  grid-column-end: 4;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  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;
  width: 430px;
  max-height: 100%;
  background: var(--white);
  padding: 33px 37px 55px;
  -webkit-box-shadow: -6px -1px 11px #00000040;
  box-shadow: -6px -1px 11px #00000040;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transition: var(--basicTransition);
  -o-transition: var(--basicTransition);
  transition: var(--basicTransition);
  z-index: 20;
}

.cart.active {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.cart_title {
  font-family: "InterSemiBold", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cart_close {
  display: none;
  width: 26px;
}

.cart_product {
  display: block;
  margin-bottom: 30px;
}

.cart_product .checkout_product_item {
  grid-template-columns: 1fr 2fr;
  grid-gap: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.cart_product .checkout_product_item:first-of-type {
  padding-top: 0;
}

.cart_product .checkout_product_item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.cart_product .checkout_product_item_price {
  color: var(--activeColor);
  margin-bottom: 5px;
}

.cart_product .checkout_product_item_name {
  font-size: 20px;
}

.cart_like {
  padding-bottom: 22px;
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
}

.cart_like-title {
  font-family: "InterSemiBold", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.cart_like .product_item-img {
  margin-bottom: 15px;
}

.cart_total {
  margin-bottom: 15px;
}

.information_wrapp {
  padding-top: 130px;
}

.information_wrapp .breadcrumb {
  margin-bottom: 38px;
}

.information_wrapp h2 {
  margin-bottom: 26px;
}

.information_wrapp p {
  margin-bottom: 0;
}

.information_wrapp ul:not(.breadcrumb) {
  list-style-type: none;
  margin-bottom: 55px;
}

.information_wrapp ul:not(.breadcrumb) li {
  position: relative;
}

.information_wrapp ul:not(.breadcrumb) li::first-letter {
  position: relative;
  padding-left: 15px;
}

.information_wrapp ul:not(.breadcrumb) li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/* .information_wrapp b {
  margin-bottom: 20px;
} */

.error-title {
  padding-top: 110px;
  width: 100%;
  font-size: 404px;
  font-family: "InterSemiBold", sans-serif;
  line-height: 1;
  text-align: center;
}

.error-subtitle {
  text-transform: lowercase;
  margin-bottom: 60px;
}

.success {
  padding-top: 150px;
}

.success h2 {
  margin-bottom: 36px;
}

.success .btn {
  margin-top: 43px;
  margin-bottom: 200px;
  width: max-content;
  padding-left: 46px;
  padding-right: 46px;
}

.header_promo-slider .swiper-button-next.disabled,
.header_promo-slider .swiper-button-prev.disabled {
  display: none;
}

.popup-new-collection {
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: none;
}

.popup-new-collection_in {
  max-width: 520px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.popup-new-collection_bottom {
  padding: 30px 23px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-new-collection_bottom p {
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  max-width: 250px;
  width: 70%;
  margin: 0;
}

.popup-new-collection_link {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  border: 2px solid #000000;
  position: relative;
}

.popup-new-collection_link img {
  width: 116%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  transition: 0.4s all;
}

.popup-new-collection_link:hover img {
  left: -13px;
}

.btn-close-popup {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  right: 0;
  top: 0;
}

.btn-close-popup::before,
.btn-close-popup::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #000;
}

.btn-close-popup::before {
  transform: rotate(45deg);
}

.btn-close-popup::after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100vw;
    width: 100%;
  }
}

@media screen and (max-width: 1550px) {
  html {
    --headerMenuPadding: 60px;
  }
}

@media screen and (max-width: 1300px) {
  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 34px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 24px;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 15px;
  }

  .pagination .page-link-btn {
    height: 50px;
    padding: 15px 13px 15px 0;
  }

  .pagination .page-link-btn-prev {
    padding: 15px 0 15px 13px;
  }

  .pagination .page-link-btn::before {
    width: 50px;
    height: 50px;
  }

  .header_promo {
    font-size: 14px;
  }

  .header_menu-main {
    margin-bottom: 50px;
  }

  .header_menu-main .header_menu-link {
    font-size: 21px;
  }

  .header_logo {
    margin-bottom: 90px;
  }

  footer .footer_wrapp {
    grid-template-columns: 3fr 3fr 4fr;
    grid-gap: 40px 30px;
  }

  footer .footer_slogan {
    grid-column-end: 3;
  }

  footer .footer_slogan-main {
    font-size: 44px;
  }

  footer .footer_form {
    height: 55px;
  }

  footer .footer_form button {
    font-size: 18px;
    padding: 0 10px;
  }

  footer .footer_contact-phone {
    font-size: 34px;
  }

  footer .footer_menu {
    grid-column-start: 3;
  }

  .banner-title {
    font-size: 112px;
    bottom: 60px;
  }

  .banner-link {
    bottom: 115px;
    right: 320px;
  }

  .slogan {
    margin-top: 125px;
  }

  .slogan_decor_1 {
    left: 20.8vw;
  }

  .category_slider {
    margin-top: 105px;
  }

  .category_slider-navigation .swiper-button-next {
    height: 50px;
    padding: 15px 13px 15px 0;
  }

  .category_slider-navigation .swiper-button-next::before {
    width: 50px;
    height: 50px;
  }

  .instagram {
    margin-top: 125px;
  }

  .instagram_content-text {
    padding: 20px 30px 30px;
  }

  .instagram_content-link {
    font-size: 44px;
  }

  .category_top {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .category_top nav {
    display: none;
  }

  .category_filter-select {
    margin-left: 5vw;
  }

  .new {
    margin-top: 90px;
  }

  .new_main-text {
    font-size: 16px;
  }

  .product_content {
    grid-template-columns: 85fr 60fr;
    grid-gap: 35px;
  }

  .checkout_wrapp {
    grid-template-columns: 6fr 5fr;
    grid-gap: 30px;
  }

  .checkout_user_info {
    grid-gap: 17px 20px;
  }

  .checkout_sticky {
    grid-column-start: 2;
    grid-column-end: 3;
  }

  .error-title {
    font-size: 360px;
    padding-top: 90px;
  }
}

@media screen and (max-width: 992px) {
  html {
    --headerWidth: 0;
    --containerPadding: 30px;
  }

  body {
    padding-top: calc(var(--promoHeight) + var(--headerHeight));
  }

  h2 {
    font-size: 34px;
  }
  .search_wrap.active{
    padding-top: 120px;
  }
  .header_search{
    margin-right: 22px;
  }
  .header_search img{
    width: 25px;
    margin-top: 0;
  }
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
  }

  .header_wrapper {
    display: none;
  }

  .header_menu {
    display: none;
  }

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

  footer .footer_wrapp {
    grid-template-columns: 100%;
    grid-gap: 28px;
    margin-bottom: 40px;
  }

  footer .footer_slogan {
    grid-column-end: auto;
  }

  footer .footer_form button {
    padding: 0 30px;
  }

  footer .footer_form .text-danger,
  footer .footer_form .text-success {
    bottom: -4px;
    font-size: 10px;
  }

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

  footer .footer_contact-name {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 0;
  }

  footer .footer_contact-phone {
    font-size: 38px;
  }

  footer .footer_menu {
    display: none;
  }

  .banner_slide {
    /*height: calc(100vh - var(--headerHeight) - var(--promoHeight));*/
  }

  .banner_slide-img {
    display: none;
  }

  .banner_slide-img_mob {
    display: block;
  }

  .banner_slide img {
    width: 100%;
    /*  height: 100%;*/
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  .banner-title {
    font-size: 90px;
    max-width: 450px;
  }

  .banner-link {
    display: none;
  }

  .slogan_text {
    font-size: 11vw;
  }

  .slogan_main {
    font-size: 21vw;
    margin: -4vw auto -2vw;
  }

  .slogan_decor_1 {
    display: none;
  }

  .slogan_decor_2 {
    width: 34%;
    top: -15%;
    right: 6%;
  }

  .slogan_decor_3 {
    width: 32%;
    bottom: -6%;
    left: 5%;
  }

  .slogan_decor_4 {
    display: none;
  }

  .instagram_content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 4fr 13fr 6fr 1fr 7fr;
  }

  .instagram_content-text {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .instagram_content-item-1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 5;
  }

  .instagram_content-item-2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }

  .instagram_content-item-3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
  }

  .instagram_content-item-4 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }

  .instagram_content-item-5 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 6;
  }

  .checkout-checkout .instagram {
    display: none;
  }

  .category {
    padding-top: 15px;
  }

  .category_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
  }

  .category_option {
    display: block;
  }

  .category_top {
    display: none;
  }

  .category_product {
    width: calc(100% + var(--containerPadding) + var(--containerPadding));
    margin-left: calc(-1 * var(--containerPadding));
    overflow: hidden;
  }

  .new_flip {
    width: 385px;
    height: 385px;
  }

  .new_flip-title {
    font-size: 80px;
  }

  .new_icon {
    right: 10vw;
    width: 15vw;
  }

  .new_icon-big {
    right: 68vw;
    width: 28vw;
  }

  .new_main {
    display: none;
  }

  .product_back {
    margin-left: 0;
  }

  .product_top {
    display: none;
  }

  .product_content {
    grid-template-columns: 100%;
  }

  .product_info_slider {
    display: block;
    margin-bottom: 30px;
  }

  .product_info-price {
    text-align: left;
  }

  .product_info-color {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .product_info-ask {
    color: var(--activeColor);
  }

  .sertificate .product_item {
    margin-bottom: 40px;
    display: block;
  }

  .checkout_wrapp {
    grid-template-columns: 100%;
  }

  .checkout_title {
    font-size: 28px;
  }

  .checkout_product_item {
    width: calc(100% + var(--containerPadding) + var(--containerPadding));
    margin-left: calc(-1 * var(--containerPadding));
    padding-left: var(--containerPadding);
    padding-right: var(--containerPadding);
  }

  .checkout-totals {
    display: none;
  }

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

  .checkout-totals_mob_bottom {
    display: block;
  }

  .checkout_sum_button {
    display: none;
  }

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

  .checkout_sticky {
    grid-row-start: 1;
    position: relative;
    grid-column-start: 1;
    grid-column-end: 2;
  }

  .cart {
    width: 100%;
    z-index: 100;
  }

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

  .cart_close {
    display: block;
  }

  .information_wrapp {
    padding-top: 100px;
  }

  .error-title {
    font-size: 300px;
    padding-top: 80px;
  }

  .success {
    padding-top: 100px;
  }
  .success .btn {
    margin-bottom: 170px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
  .desktop_hidden {
    display: block;
  }
  .mobile_hidden {
    display: none !important;
  }
  #modal-measurements .modal-dialog {
    max-width: 345px;
  }
  #modal-measurements .modal-body {
    padding: 24px 22px;
  }
  #modal-measurements .modal-body .close {
    width: 16px;
    top: 14px;
    right: 14px;
  }
  #modal-measurements h6 {
    margin-bottom: 28px;
  }
  #modal-measurements ul {
    margin-bottom: 30px;
  }
  #modal-measurements .size-table {
    max-width: 100%;
    overflow-y: auto;
  }
  #modal-measurements .size-table table {
    width: max-content;
  }
  #modal-measurements .size .size-link {
    display: none;
  }
  #modal-measurements .size-mob .size-link {
    display: flex;
  }
  .information_wrapp {
    padding-top: 50px;
  }
  .error-title {
    font-size: 260px;
    padding-top: 70px;
  }
  .success {
    padding-top: 50px;
  }
  .success .btn {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 600px) {
  html {
    --containerPadding: 13px;
  }

  h2 {
    font-size: 30px;
  }

  h6 {
    font-size: 18px;
  }

  .swiper-container-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet {
    width: 36px;
    margin: 0 6px;
  }

  .tab {
    font-size: 12px;
    padding: 5px 12px;
  }

  .pagination {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .pagination .page-link {
    font-size: 20px;
  }
  .product_item-discount{
    font-size: 16px;
    line-height: 16px;
  }
  .pagination .page-link-btn {
    height: 42px;
    padding: 13px 13px 13px 0;
  }

  .pagination .page-link-btn-prev {
    padding: 13px 0 13px 13px;
  }

  .pagination .page-link-btn::before {
    height: 42px;
    width: 42px;
  }

  .header_promo-slider {
    font-size: 12px;
  }

  .header_promo-slider .swiper-button-next,
  .header_promo-slider .swiper-button-prev {
    display: none;
  }

  footer .footer_slogan {
    font-size: 14px;
  }

  footer .footer_slogan-main {
    font-size: 40px;
  }

  footer .footer_form input {
    font-size: 14px;
  }

  footer .footer_contact-name {
    font-size: 14px;
  }

  footer .footer_contact-phone {
    white-space: nowrap;
  }

  footer .footer_contact-schedule {
    font-size: 14px;
    font-family: "Inter", sans-serif;
  }

  footer .footer_bottom-link {
    -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;
  }

  footer .footer_bottom-item {
    margin-right: 0;
    font-size: 9px;
  }

  .banner-title {
    max-width: 295px;
    font-size: 60px;
  }

  .slogan {
    margin-bottom: 105px;
  }

  .slogan_img {
    display: none;
  }

  .slogan_img_mob {
    display: block;
  }

  .slogan_decor_2 {
    width: 36%;
    top: -21%;
    right: 8%;
  }

  .slogan_decor_3 {
    width: 35%;
    bottom: -14%;
    left: 7%;
  }

  .product_wrapp {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .product_item:hover .product_item-img {
    outline: none;
  }

  .product_item:hover .product_item-hover {
    display: none;
  }

  .product_item-img {
    margin: 0 0 15px;
  }

  .product_item-name {
    padding: 0 var(--containerPadding);
    font-size: 14px;
  }

  .product_item-price {
    padding: 0 var(--containerPadding);
    font-size: 14px;
  }

  .category_slider {
    margin-top: 70px;
  }

  .category_slider .swiper-container {
    width: calc(100% + var(--containerPadding) + var(--containerPadding));
    margin-left: calc(-1 * var(--containerPadding));
  }

  .category_slider-navigation .swiper-pagination {
    display: none;
  }

  .category_slider-navigation .swiper-button-next {
    height: 42px;
    padding: 13px 13px 13px 0;
    margin-left: 20px;
  }

  .category_slider-navigation .swiper-button-next::before {
    height: 42px;
    width: 42px;
  }

  .instagram {
    margin-top: 50px;
  }

  .instagram_line {
    font-size: 32px;
  }

  .instagram_content {
    grid-template-rows: 7fr 11fr 6fr 1fr 6fr;
  }

  .instagram_content-link {
    font-size: 35px;
  }

  .instagram_content-descr {
    font-size: 14px;
  }

  .category_filter_mob .category_filter-wrapp {
    font-size: 16px;
    grid-gap: 15px 5px;
  }

  .category_filter_mob .category_filter-wrapp .checkbox {
    margin-right: 0;
  }

  .category_filter_mob .category_filter-wrapp .input_checkbox:checked + label,
  .category_filter_mob
    .category_filter-wrapp
    .input_checkbox:not(:checked)
    + label {
    font-family: "Inter", sans-serif;
  }

  .category_name {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .category_product_wrapp {
    grid-template-columns: repeat(2, 1fr);
  }

  .category_product_wrapp.big {
    grid-template-columns: 100%;
  }

  .category_pagination {
    margin-top: 40px;
  }

  .new_flip {
    width: 305px;
    height: 305px;
    border-width: 25px;
  }

  .new_flip-mark {
    height: 25px;
    font-size: 14px;
  }

  .new_flip-mark_1 {
    top: -25px;
  }

  .new_flip-mark_2 {
    bottom: -25px;
  }

  .new_flip-title {
    font-size: 54px;
  }

  .new_flip-text {
    width: calc(100% + 25px);
  }

  .product_info {
    padding-top: 15px;
  }

  .product_info h5 {
    font-size: 28px;
    text-align: left;
    margin-bottom: 30px;
  }

  .product_info-price {
    margin-bottom: 30px;
  }

  .product_info-color {
    margin-bottom: 40px;
  }

  .product_info-sizes-btn {
    font-size: 14px;
  }

  .product_info-title {
    margin-top: 40px;
  }

  #modal-measurements h6 {
    margin-bottom: 28px;
  }

  #modal-question .modal-body,
  #modal-sertificate .modal-body {
    padding: 24px 22px;
  }

  #modal-question form .btn {
    width: 100%;
  }

  .checkout_user_info {
    grid-template-columns: 1fr;
  }

  .checkout_input_wrapper_valid_name {
    grid-column-end: 2;
  }

  .checkout .radio_form {
    grid-template-columns: 1fr;
    grid-gap: 22px;
  }

  .checkout_product_item {
    grid-template-columns: 1fr 2fr;
    grid-gap: 25px;
  }

  .checkout_product_item_name {
    font-size: 16px;
  }

  .checkout_product_item_price {
    font-size: 12px;
  }

  .checkout_product_item_close {
    transform: translateY(-30px);
  }

  .checkout_coupone-btn {
    border-top: 1px solid var(--black);
  }

  .checkout_coupone-wrapp {
    height: 75px;
  }

  .checkout_coupone-wrapp input {
    padding: 15px;
    font-size: 14px;
  }

  .checkout_certificate-btn {
    border-top: 1px solid var(--black);
  }

  .checkout_certificate-wrapp {
    height: 75px;
  }

  .checkout_certificate-wrapp input {
    padding: 15px;
    font-size: 14px;
  }

  .checkout_sticky .checkout_title {
    display: none;
  }

  .cart {
    padding: 20px;
  }
  .information_wrapp {
    padding-top: 20px;
  }
  .error-title {
    font-size: 180px;
  }
  .success {
    padding-top: 20px;
  }
  .success .btn {
    margin-bottom: 50px;
  }
}
