:root {
  --primary: #0079ff;
  --secondary: #090101;
  --bg-color: #fff;
  --white: #fff;
  --gray: #F1F1F3;
  --dark-gray: #75767C;
  --black: #090101;
  --radius: 4px;
  --paddSection: 48px;
  --paddHalf: 24px;
  --border-color: #DEE0EA;
  --btn-sec-hover: #3a3a3a;
  --font-size: 16px;
  --line-height: 22px;
  --font-weight: 400;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@media (min-width: 576px) {
  :root {
    --paddSection: 70px;
    --paddHalf: 48px;
  }
}
@media (min-width: 992px) {
  :root {
    --paddSection: 87px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

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

body {
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  background: var(--bg-color);
  color: var(--black);
  line-height: var(--line-height);
}

body.overf {
  overflow: hidden;
}

.overf-x {
  overflow-x: hidden;
}

.overf-hidden {
  overflow: hidden;
}

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

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

ul {
  padding-left: 20px;
}

ul li {
  margin: 7px 0;
}

a,
input,
textarea,
select,
.btn,
svg path,
.btn-plain {
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.us-not {
  user-select: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  font-weight: 500;
}

h1, .h1 {
  font-size: 36px;
  line-height: 42px;
}

h2, .h2 {
  font-size: 30px;
  line-height: 36px;
}

h3, .h3 {
  font-size: 24px;
  line-height: 32px;
}

h4, .h4 {
  font-size: 20px;
  line-height: 28px;
}

h5, .h5 {
  font-size: 23px;
}

.subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.prod-link {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .subtitle {
    font-size: 14px;
    margin-bottom: 11px;
  }
}

.maxw800 {
  max-width: 800px;
}

.maxw680 {
  max-width: 680px;
}

.maxw650 {
  max-width: 650px;
}

.maxw550 {
  max-width: 550px;
}

.maxw415 {
  max-width: 415px;
}

@media (min-width: 575px) {
  .maxw340 {
    max-width: 340px;
  }
}
a {
  text-decoration: none;
  color: var(--black);
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  padding: 12px 25px;
  letter-spacing: 0.1px;
  color: var(--white);
  background: var(--primary);
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 21px;
}

.btn-icon {
  display: flex;
  align-items: center;
  line-height: 22px;
  letter-spacing: 0.5px;
  padding: 10px 25px;
}

.btn-icon path {
  transition: all 0.15s ease;
}

.btn:active,
.btn:hover {
  background: #d41b34;
  border-color: #d41b34;
}

.btn-secondary {
  background: var(--secondary);
  border-color: var(--black);
}

.btn-secondary:hover,
.btn-secondary:active {
  background: var(--btn-sec-hover);
  border-color: var(--btn-sec-hover);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-outline:hover,
.btn-outline:active {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.py-7 {
  padding-top: 7px;
  padding-bottom: 7px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-32 {
  padding-top: 32px;
}

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

.lh-1 {
  line-height: 1;
}

main {
  min-height: calc(100vh - 471px);
}

body.sticky main {
  margin-top: 81px;
}

@media (max-width: 991px) {
  body.sticky main {
    margin-top: 57px;
  }
}
@media (max-width: 575px) {
  body.sticky main {
    margin-top: 51px;
  }
}
p {
  margin: 0;
  line-height: 1.8;
}

p + p {
  margin-top: 2px;
}

.word-spacing {
  word-spacing: 100vw;
}

@media (min-width: 992px) {
  .word-lg-spacing {
    word-spacing: 100vw;
  }
}
.nice-select .current.black {
  color: #000 !important;
}

.f12 {
  font-size: 12px;
  line-height: 17px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
  line-height: 20px;
}

.f15 {
  font-size: 15px;
  line-height: 21px;
}

.f16 {
  font-size: 16px;
  line-height: 22px;
}

.f17 {
  font-size: 17px;
  line-height: 23px;
}

.f18 {
  font-size: 18px;
  line-height: 24px;
}

.f19 {
  font-size: 19px;
}

.f20 {
  font-size: 20px;
  line-height: 28px;
}

.f22 {
  font-size: 22px;
}

.f23 {
  font-size: 23px;
}

.f24 {
  font-size: 24px;
  line-height: 32px;
}

.f25 {
  font-size: 25px;
  line-height: 31px;
}

.f28 {
  font-size: 28px;
  line-height: 34px;
}

.f30 {
  font-size: 30px;
  line-height: 36px;
}

.f32 {
  font-size: 32px;
  line-height: 38px;
}

.f36 {
  font-size: 36px;
  line-height: 42px;
}

.f44 {
  font-size: 44px;
}

.f64 {
  font-size: 64px;
}

.f40 {
  font-size: 40px;
}

.f48 {
  font-size: 48px;
  line-height: 54px;
}

@media (max-width: 767px) {
  .f44 {
    font-size: 35px;
  }
  .f48 {
    font-size: 35px;
    line-height: 44px;
  }
  .f64 {
    font-size: 30px;
  }
}
.bold {
  font-weight: 500;
}

.bold600 {
  font-weight: 600;
}

.bold500,
.f-500 {
  font-weight: 500;
}

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

.ps-r {
  position: relative;
}

.gap6 {
  gap: 6px;
}

.gap12 {
  gap: 12px;
}

.gap16 {
  gap: 16px;
}

.gap20 {
  gap: 20px;
}

.gap32 {
  gap: 32px;
}

.gap-y-16 {
  gap: 16px 0;
}

.gap-y-20 {
  gap: 20px 0;
}

.gap-y-24 {
  gap: 24px 0;
}

.gap-y-32 {
  gap: 32px 0;
}

.gap-y-48 {
  gap: 48px 0;
}

.gap-x-25 {
  gap: 0 25px;
}

.gap-x-32 {
  gap: 0 32px;
}

.mr-20 {
  margin-right: 20px;
}

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

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

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

@media (max-width: 991px) {
  .mb-lg-32 {
    margin-bottom: 32px;
  }
}
.mr-12 {
  margin-right: 12px;
}

.mt70 {
  margin-top: 70px;
}

.mt60 {
  margin-top: 60px;
}

.mt52 {
  margin-top: 52px;
}

.mt32 {
  margin-top: 32px;
}

.mt12 {
  margin-top: 12px;
}

.mt38 {
  margin-top: 38px;
}

.ml32 {
  margin-left: 32px;
}

@media (max-width: 1199px) {
  .mb-xl-32 {
    margin-bottom: 32px;
  }
}
@media (max-width: 575px) {
  .mb-sm-32 {
    margin-bottom: 32px;
  }
}
.br-5 {
  border-radius: 5px;
}

.br-4 {
  border-radius: 4px;
}

.br-8 {
  border-radius: 8px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.py45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-10 {
  padding: 10px;
}

.p-16 {
  padding: 16px;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.p-32 {
  padding: 32px;
}

.p-48 {
  padding: 48px;
}

.p64 {
  padding: 64px;
}

.pt64 {
  padding-top: 64px;
}

.pb64 {
  padding-bottom: 64px;
}

.pt88 {
  padding-top: 88px;
}

.pb88 {
  padding-bottom: 88px;
}

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

.pb52 {
  padding-bottom: 52px;
}

.pt52 {
  padding-top: 52px;
}

.py52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.pb30 {
  padding-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.pb20 {
  padding-bottom: 20px;
}

.radius {
  border-radius: var(--radius);
}

.padd-top-sm {
  padding-top: 26px;
}

.padd-section {
  padding-top: var(--paddSection);
  padding-bottom: var(--paddSection);
}

.padd-top {
  padding-top: var(--paddSection);
}

.padd-bottom {
  padding-bottom: var(--paddSection);
}

.padd-y-half {
  padding-top: var(--paddHalf);
  padding-bottom: var(--paddHalf);
}

.padd-t-half {
  padding-top: var(--paddHalf);
}

.padd-b-half {
  padding-bottom: var(--paddHalf);
}

.padd-y-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.h100 {
  height: 100%;
}

.grecaptcha-badge {
  display: none;
}

input,
textarea,
select {
  border: 0;
  border: 1px solid var(--border-color);
  background: transparent;
  padding: 13px 16px;
  height: 46px;
  width: 100%;
  font-family: var(--font-family);
  font-size: 16px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: var(--black);
}

@media (max-width: 575px) {
  input {
    font-size: 15px;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--gray) inset !important;
}

textarea {
  height: 100px;
  max-width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
  border-color: #8b8b8b;
}

.law-note {
  font-size: 12px;
  color: var(--dark-gray);
  line-height: 17px;
  padding-top: 15px;
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  transform: translateY(0);
  pointer-events: none;
  padding: 5px 0;
  transition: transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.form-textarea label {
  top: 15px;
}

.form-group.active label {
  transform: translateY(-22px);
  font-size: 13px;
  color: var(--gray900);
}

.form-group.error label {
  transform: translateY(-33px);
  font-size: 13px;
  color: var(--gray900);
}

.form-group.error input, .form-group.error textarea {
  border-color: var(--primary900);
}

.form-textarea.active label, .form-group.error.form-textarea label {
  transform: translateY(-28px);
}

@media (min-width: 768px) {
  .novalidate.default label {
    transform: translateY(-13px);
  }
  .novalidate.default.active label {
    transform: translateY(-33px);
  }
}
.invalid-feedback {
  color: var(--primary900);
  padding: 7px 7px 0;
  width: 100%;
  display: none;
  font-size: 12px;
}

.checkbox-wrapper {
  padding: 12px 7px;
  border: 2px solid var(--black);
  width: 181px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-wrapper:hover,
.checkbox-wrapper.active {
  background: var(--primary900);
  color: var(--black);
}

.checkbox-wrapper .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary900);
  color: var(--black);
  border-radius: 0;
  border: none;
  transition: none;
  display: none;
}

.checkbox-wrapper input[type=radio]:checked ~ .checkbox {
  display: block;
}

.checkbox-text {
  z-index: 2;
}

.checkbox-label-first {
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.checkbox-label-second {
  border-right: 0;
}

.checkbox-label-last {
  border-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #a70000;
}

.invalid-feedback {
  color: #a70000;
  padding: 7px 7px 0;
  width: 100%;
  display: none;
  font-size: 12px;
}

.nice-select .option.disabled {
  display: none;
}

.valid {
  display: none;
  margin-top: 8px;
  color: #a70000;
  font-size: 14px;
}

.valid-el {
  position: relative;
}

.valid-el.error input,
.valid-el.error textarea {
  border-color: #a70000;
}

.valid-el.error::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 2px;
  right: 4px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M17 4.41L15.59 3L10 8.59L4.41 3L3 4.41L8.59 10L3 15.59L4.41 17L10 11.41L15.59 17L17 15.59L11.41 10L17 4.41Z' fill='%23a70000'/%3E%3C/svg%3E") no-repeat center;
  background-size: 20px;
}

input[type=checkbox] {
  display: none;
}

.checkbox {
  position: relative;
  min-width: 22px;
  width: 22px;
  height: 22px;
  background: #fff;
  margin-right: 12px;
  border: 1px solid #555555;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}

input[type=checkbox]:checked ~ .checkbox::after {
  display: block;
}

input[type=checkbox]:checked ~ .checkbox {
  border-color: #000;
  background: #fff;
}

input[type=radio],
.option-checkbox {
  width: 22px;
  height: 22px;
  padding: 0;
  cursor: pointer;
}

.radio-checked {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: var(--black);
  display: none;
}

input[type=radio]:checked ~ .radio-checked,
.option-checkbox:checked ~ .radio-checked {
  display: block;
}

.pointer-none, .pe-none {
  pointer-events: none;
}

label {
  display: block;
}

.checkbox-label:hover .checkbox {
  border-color: var(--gray600);
}

.form-check.error ~ .checkbox {
  border-color: #a70000;
}

.valid-el.active input,
.valid-el.active textarea {
  border-color: #a70000;
}

.valid-el.active::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 2px;
  right: 4px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M17 4.41L15.59 3L10 8.59L4.41 3L3 4.41L8.59 10L3 15.59L4.41 17L10 11.41L15.59 17L17 15.59L11.41 10L17 4.41Z' fill='%23a70000'/%3E%3C/svg%3E") no-repeat center;
  background-size: 20px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

@media (min-width: 768px) {
  .t-md-c {
    text-align: center;
  }
}
.t-r {
  text-align: right;
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w100 {
  width: 100%;
}

.prod-min-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 8px;
  background: #303030;
  color: #fff;
}

.prod-min-flag.last-qty {
  background: #47B486;
}

.min_prod-link {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
  .w-lg-100 {
    width: 100%;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .section-title-mob {
    font-size: 25px;
    line-height: 31px;
  }
}
@media (max-width: 575px) {
  .mt-sm-60 {
    margin-top: 60px;
  }
}
@media (max-width: 420px) {
  .btns-wrapper-xs-column {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px 0;
    width: 100%;
  }
  .btns-wrapper-xs-column a,
  .btns-wrapper-xs-column button {
    text-align: center;
    width: 100%;
  }
  .btn-xs-secondary {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 24px;
    background: transparent;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
  }
  .btn-xs-secondary:hover,
  .btn-xs-secondary:active {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
  }
}
.gray {
  color: var(--dark-gray);
}

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

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

.link:hover {
  text-decoration: underline;
}

.c-pointer {
  cursor: pointer;
}

.hr {
  max-width: 200px;
  border: none;
  border-top: 1px solid var(--border-color);
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.border-t {
  border-top: 1px solid var(--border-color);
}

.border-b {
  border-bottom: 1px solid var(--border-color);
}

.border-y {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.pb-0 {
  padding-bottom: 0;
}

.vis-auto {
  content-visibility: auto;
}

.label-hidden {
  height: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  margin: 0;
  width: 0;
  display: initial;
}

.nowrap {
  white-space: nowrap;
}

.alert {
  display: none;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-top: 12px;
}

.alert.d-b {
  display: block;
}

.alert-success {
  background: #91ff91;
}

.alert-danger {
  background: #ff5a5a;
}

.splide__sr {
  display: none;
}

.product-mini-img img {
  transition: transform 0.2s ease;
}

.product-mini-img {
  overflow: hidden;
}

.product-mini-img:hover img {
  transform: scale(1.04);
}

.product-mini-img:hover + div .prod-link,
.prod-link:hover {
  text-decoration: underline;
}

.offline-cont {
  position: fixed;
  bottom: 10px;
  left: 12px;
  right: 12px;
  max-width: 1358px;
  margin: 0 auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

.top-nav {
  background: #0079ff;
  color: var(--white);
  padding: 10px 0;
}

.top-nav-link {
  color: var(--white);
}

.nav-link:hover {
  text-decoration: underline;
}

.header-top {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 10;
  backdrop-filter: blur(0px);
  background: var(--white);
  transition: padding 0.2s ease, background-color 0.2s ease;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.2s ease;
}

body.sticky .header {
  position: fixed;
  animation: showMenu 0.25s forwards;
}

body.scroll-up .header {
  animation: hideMenu 0.25s forwards;
}

@keyframes showMenu {
  0% {
    transform: translateY(-220px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hideMenu {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200px);
  }
}
.search-inp {
  background: var(--gray);
  color: #4b4b4c;
  padding: 13px 16px;
  font-size: 14px;
  height: 46px;
  line-height: 20px;
  border-color: var(--gray);
}

.search-inp::-webkit-input-placeholder {
  font-size: 14px;
  color: #75767C;
}

.search-inp:hover, .search-inp:focus {
  border-color: var(--gray);
}

.nav-right-link {
  padding: 16px 32px;
  border: 1px solid var(--border-color);
  border-top: 0;
  border-bottom: 0;
  transition: none;
}

@media (min-width: 1200px) {
  .search-inp {
    width: 363px;
  }
  body.sticky .nav-right-link {
    padding: 12px 32px;
  }
}
.nav-right-user {
  border-right: 0;
}

.nav-right-link {
  transition: opacity 0.15s ease;
}

@media (min-width: 992px) {
  .nav-right-link:hover {
    opacity: 0.7;
  }
}
.nav-right-text {
  margin-top: 4px;
}

.menu {
  border-bottom: 1px solid var(--border-color);
}

.menu-container {
  gap: 32px;
}

.menu-link {
  letter-spacing: 0.5px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.menu-link-nosub {
  padding-top: 17px;
  padding-bottom: 17px;
}

.menu-link-promo {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.sub-cont-border {
  border: 1px solid var(--border-color);
  border-top: 0;
  border-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.nav-count-box {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  line-height: 17px;
  width: 26px;
  height: 23px;
  margin-left: 10px;
}

.nav-sub-menu_link {
  padding: 13px 16px;
}

@media (min-width: 1200px) {
  .nav-menu_box {
    position: absolute;
    top: 53px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
    display: block;
    min-width: 220px;
    max-width: 260px;
    z-index: 10;
  }
  .nav-menu_wrapper:hover .nav-menu_box {
    visibility: visible;
    opacity: 1;
  }
  .nav-menu-arrow {
    will-change: transform;
    transition: transform 0.15s ease;
  }
  .nav-menu_wrapper:hover .nav-menu-arrow {
    transform: rotate(-180deg);
  }
  .menu-link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.15s ease;
    transform-origin: left;
    will-change: transform;
  }
  .menu-link:hover::after,
  .nav-menu_wrapper:hover .menu-link::after {
    transform: scaleX(1);
  }
  .nav-sub-menu_link:hover {
    background: var(--gray);
  }
}
.cart-counter {
  position: absolute;
  top: -5px;
  right: 2px;
  width: 16px;
  height: 16px;
  line-height: 16px;
}

.cart-counter.hide {
  display: none;
}

.btn-search {
  padding: 10px 12px;
  background: #0079ff;
}

@media (max-width: 1345px) and (min-width: 1200px) {
  .menu-container {
    gap: 32px 16px;
  }
  .sub-cont-border {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1199px) {
  .top-nav, .pre-header {
    position: relative;
    z-index: 10;
  }
  .nav-menu_box {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: #fff;
    min-height: 100%;
    transform: translateX(200%);
    transition: transform 0.2s cubic-bezier(0.64, 0.03, 0.42, 1.01);
    padding-top: 164px;
  }
  body.sticky .nav-menu_box {
    padding-top: 81px;
  }
  .nav-menu_box.active {
    transform: translateX(0);
  }
  .go-back-menu {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 12px;
  }
  .nav-sub-menu_link {
    text-align: left;
    margin: 4px 0;
    color: var(--secondary600);
  }
  .nav-right-link {
    padding: 16px 22px;
  }
  .nav-right-search {
    border-right: 0;
  }
  .hamburger {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    padding-right: 0;
  }
  .nav-right-hamb {
    padding-right: 6px;
    border-right: 0;
    border-left: 0;
  }
  .hamburger:focus {
    outline: 0;
  }
  .hamburger::-moz-focus-inner {
    border: 0;
  }
  .hamburger.active .hamburger-inner,
  .hamburger.active .hamburger-inner::after,
  .hamburger.active .hamburger-inner::before {
    background-color: #222;
  }
  .hamburger-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  .hamburger-inner {
    display: block;
    top: 50%;
  }
  .hamburger-inner,
  .hamburger-inner::after {
    width: 24px;
  }
  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    height: 2px;
    background-color: #222;
    border-radius: 4px;
    position: absolute;
    transition-duration: 0.25s;
    transition-timing-function: ease;
  }
  .hamburger-inner::after,
  .hamburger-inner::before {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    width: 24px;
    top: -10px;
  }
  .hamburger-inner::after {
    bottom: -10px;
    left: 60%;
  }
  .hamburger--slider .hamburger-inner {
    top: 6px;
  }
  .hamburger--slider .hamburger-inner::before {
    top: 6px;
    transition-timing-function: ease;
    transition-duration: 0.25s;
  }
  .hamburger--slider .hamburger-inner::after {
    top: 12px;
    left: 0;
    width: 24px;
  }
  .hamburger--slider.active .hamburger-inner {
    -webkit-transform: translate3d(0, 6px, 0) rotate(45deg);
    transform: translate3d(0, 6px, 0) rotate(45deg);
    width: 24px;
  }
  .hamburger--slider.active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -7px, 0);
    transform: rotate(-45deg) translate3d(-5.71429px, -7px, 0);
    opacity: 0;
  }
  .hamburger--slider.active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -12px, 0) rotate(-90deg);
    transform: translate3d(0, -12px, 0) rotate(-90deg);
    left: 0;
    width: 24px;
  }
  .search-cont {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 81px;
    padding: 16px;
    background: #fff;
    display: none;
    z-index: 26;
    transition: all 0.1s ease;
    border-bottom: 1px solid var(--border-color);
  }
  .srch-x {
    position: absolute;
    top: 13px;
    right: 30px;
    color: var(--primary);
    display: flex;
    height: 10px;
    padding: 7px;
    width: 10px;
    background: #fff;
    font-size: 27px;
    opacity: 0;
    transition: opacity 0.15s ease;
  }
  .nav-right-search.active .srch-x {
    opacity: 1;
  }
  .nav-menu-arrow {
    transform: rotate(-90deg);
  }
  .menu-container {
    gap: 12px;
  }
  .sub-cont-border {
    border: 0;
    padding: 0;
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    padding: 16px 0;
    padding-top: 180px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.2s ease;
    border: 0;
    height: calc(100% - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
  .menu.active {
    transform: translate(0);
  }
  body.sticky .menu {
    padding-top: 96px;
  }
}
@media (max-width: 991px) {
  .menu {
    padding-top: 156px;
  }
  body.sticky .menu {
    padding-top: 73px;
  }
  .nav-menu_box {
    padding-top: 140px;
  }
  body.sticky .nav-menu_box {
    padding-top: 57px;
  }
  .logo-img {
    width: 120px;
  }
  .search-cont {
    top: 57px;
  }
  .srch-x {
    right: 20px;
    font-size: 24px;
  }
  .menu-link-counter {
    padding: 14px 0 15px;
  }
  .menu-container {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .menu {
    padding-top: 113px;
  }
  body.sticky .menu {
    padding-top: 72px;
  }
  .nav-menu_box {
    padding-top: 97px;
  }
  body.sticky .nav-menu_box {
    padding-top: 56px;
  }
}
@media (max-width: 575px) {
  .menu {
    padding-top: 100px;
  }
  body.sticky .menu {
    padding-top: 66px;
  }
  .nav-menu_box {
    padding-top: 84px;
  }
  body.sticky .nav-menu_box {
    padding-top: 50px;
  }
  .nav-right-link {
    padding: 13px 12px;
  }
  .logo-img {
    width: 100px;
  }
  .nav-right-hamb {
    padding-right: 0 !important;
  }
  .search-cont {
    top: 50px;
    border-top: 1px solid var(--border-color);
  }
  .srch-x {
    top: 10px;
    right: 12px;
    font-size: 16px;
  }
  .search-inp::-webkit-input-placeholder {
    font-size: 12px;
  }
  .top-nav-link, .top-nav span {
    font-size: 12px;
  }
  .top-nav {
    padding: 7px 0;
  }
  .search-cont {
    padding: 12px 16px;
  }
  .btn-search svg {
    width: 24px;
    height: 24px;
  }
  .btn-search {
    padding: 10px 12px;
  }
  .cart-counter {
    top: -3px;
    right: -4px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .nav-right-link {
    padding: 13px 10px;
  }
}
.subchild-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(99%);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
}

.nav-sub-with-child_link:hover .subchild-wrapper {
  opacity: 1;
  visibility: visible;
}

.footer {
  background: var(--white);
}

.footer-col-left {
  max-width: 330px;
}

.footer-col-right {
  max-width: 720px;
}

.footer-mini {
  border-top: 1px solid var(--border-color);
  padding: 28px 0;
}

@media (max-width: 991px) {
  .footer-col-left {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .footer-col-right {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-menu-block {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-desc {
    max-width: 350px;
  }
  .logo-footer {
    width: 165px;
  }
  .footer-wrapper {
    display: none;
  }
  .footer-header {
    padding: 12px 0;
  }
  .footer-header img {
    transition: transform 0.2s ease;
  }
  .footer-header.active img {
    transform: rotate(-180deg);
  }
  .footer-link {
    padding: 7px 0;
  }
}
.breadcrumb {
  padding: 22px 0;
}

.breadcrumb ol {
  list-style: none;
}

.breadcrumb li a {
  color: var(--dark-gray);
}

.breadcrumb li:last-of-type span {
  color: var(--secondary);
}

.breadcrumb li::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.69873 12.427L10.4274 7.69767L5.69873 2.96834' stroke='%2375767C' stroke-width='1.3'/%3E%3C/svg%3E");
  width: 39px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 12px 0 14px;
}

.breadcrumb li:first-of-type::before {
  display: none;
}

@media (max-width: 991px) {
  .container-breadcrumbs {
    padding-right: 0;
  }
  .goback-product {
    padding: 10px 16px 10px 14px;
  }
  .goback-product-link {
    padding: 8px 0;
    width: fit-content;
  }
  .breadcrumb {
    overflow-x: auto;
  }
  .breadcrumb ol {
    width: max-content;
    padding-right: 16px;
  }
  .breadcrumb::-webkit-scrollbar {
    height: 4px;
  }
  .breadcrumb::-webkit-scrollbar-thumb {
    border-radius: 3px;
  }
  .breadcrumb.touched::-webkit-scrollbar-thumb {
    background: #e2e2e2;
  }
  .breadcrumb::-webkit-scrollbar-track {
    background: #fff;
  }
}
.window-modal {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 100;
  padding: 24px 32px;
  max-width: 480px;
  min-height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.64, 0.03, 0.42, 1.01);
  min-width: 100%;
  display: grid;
  height: 100vh;
  grid-template-rows: 85px auto auto;
}

@media (min-width: 576px) {
  .window-modal {
    padding: 24px;
    min-width: 375px;
  }
}
@media (min-width: 992px) {
  .window-modal {
    min-width: 480px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .window-modal {
    padding: 32px;
    transform: translateX(100%);
  }
  html.fslightbox-open {
    scrollbar-gutter: auto;
  }
}
@media (max-width: 991px) {
  .window-modal {
    padding: 32px 16px;
    padding-bottom: calc(env(safe-area-inset-bottom, -70px) + 70px);
  }
}
.window-modal.active {
  transform: translateX(0);
}

.window-modal::-webkit-scrollbar {
  width: 8px;
}

.window-modal::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.window-modal::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
}

.modal-shadow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-shadow.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}

.modal-content::-webkit-scrollbar {
  width: 4px;
}

.modal-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
}

.modal-footer {
  padding-top: 21px;
  border-top: 1px solid var(--border-color);
  align-self: flex-end;
}

.cart-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-modal .modal-content {
  height: 100%;
}

.cart-modal .modal-footer {
  align-self: unset;
}

.cart-btn-qty-wrapper {
  border: 1px solid var(--border-color);
}

.cart-btn-qty {
  border: none;
  width: 42px;
  height: 44px;
  background: #fff;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1;
  user-select: none;
}

.cart-btn-plus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cart-btn-min {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cart-btn-qty:hover {
  background: var(--gray);
}

.cart-inp-qty {
  width: 46px;
  height: 44px;
  border: none;
  padding: 8px 5px;
  line-height: 1;
}

.cart-inp-qty:focus {
  border: none;
}

.cart-inp-qty:disabled {
  background: #fff;
  cursor: not-allowed;
}

.mini-cart-img {
  min-width: 117px;
}

.modal-cart-counter.hide {
  display: none;
}

@media (max-width: 575px) {
  .cart-inp-qty,
  .cart-btn-qty {
    width: 38px;
  }
}
.search-autocomplete {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
  border: 1px solid var(--border-color);
  display: none;
}

.search-autocomplete.show {
  display: block;
}

.btn-results-wrapper {
  padding: 12px;
}

.search-product_link {
  padding: 10px 12px;
  border-radius: 0;
}

.search-product_wrapper {
  margin-left: 10px;
  width: 100%;
}

.search-product_price {
  color: var(--primary);
  display: inline-block;
}

.search-product_link:hover .search-product_name {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .search-autocomplete {
    position: fixed;
    top: calc(100% + 71px);
  }
}
.lang-switcher-list {
  display: none;
}

.lang-container {
  width: 60px;
  padding-left: 16px;
  margin-left: 16px;
}

.lang-container::before {
  content: "";
  position: absolute;
  top: calc(50% - 21px);
  left: 0;
  height: 42px;
  width: 1px;
  background: var(--border-color);
}

.lang-switcher-btn {
  cursor: pointer;
  user-select: none;
  transition: opacity 0.15s ease;
}

@media (min-width: 992px) {
  .lang-switcher-btn:hover {
    opacity: 0.7;
  }
}
.lang-switcher-list {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  background: #fff;
  padding: 4px;
  width: 100%;
  z-index: 11;
  min-width: 100px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}

.lang-switcher-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 8px;
}

.lang-switcher-link:hover,
.lang-switcher-link.current {
  background-color: var(--gray);
}

.mobile-lang-switcher--topmenu {
  display: none;
}

@media (max-width: 991px) {
  .mobile-lang-switcher--topmenu {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 0;
    background: #fff;
    width: 100%;
    z-index: 12;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }
  .lang-container::before {
    display: none;
  }
  .lang-container {
    margin-left: 0;
    padding-right: 16px;
    border: 1px solid var(--border-color);
    width: calc(100% - 32px);
  }
  .menu.active ~ .lang-container {
    transform: translateX(-16px);
  }
  .lang-switcher-list {
    top: unset;
    bottom: calc(100% + 11px);
  }
  .lang-switcher-btn {
    padding: 10px 0;
  }
  .lang-switcher-arrow {
    transition: transform 0.15s ease;
  }
  .lang-switcher-btn.active .lang-switcher-arrow {
    transform: rotate(-180deg);
  }
  .lang-switcher-link {
    padding: 14px 8px;
  }
}
.mini-cart {
  width: 400px;
}

.cart-cont {
  max-height: 410px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .cart-cont::-webkit-scrollbar {
    width: 4px;
  }
  .cart-cont::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 5px;
  }
  .cart-cont::-webkit-scrollbar-thumb:hover {
    background: #686868;
  }
}
.nav-right_card {
  position: absolute;
  top: 80px;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  display: none;
}

body.sticky .nav-right_card {
  top: 72px;
}

@media (max-width: 991px) {
  .nav-right_card,
  body.sticky .nav-right_card {
    top: 56px;
  }
}
@media (max-width: 767px) {
  .nav-right_card {
    display: none;
  }
}
.mini-cart-item {
  padding: 15px 0;
  border-bottom: 1px solid #e8e8e8;
}

.mini-cart-item:last-of-type {
  border-bottom: none;
}

.mini-cart-summary {
  padding: 12px 0;
  border-top: 1px solid #e8e8e8;
}

.mini-cart-summary .col-5 {
  -ms-flex: 0 0 43.666667%;
  flex: 0 0 43.666667%;
  max-width: 43.666667%;
}

.mini-cart-summary .col-7 {
  -ms-flex: 0 0 56.333333%;
  flex: 0 0 56.333333%;
  max-width: 56.333333%;
}

@media (max-width: 420px) {
  .product-mini-price {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4px 0;
  }
  .product-mini-regular-price {
    margin-left: 0;
  }
}

/*# sourceMappingURL=theme.css.map */
