:root {
  --font-family: "Google Sans", sans-serif;
  --content-width: 1780px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --background-color: #fff;
  --white-color: #fff;
  --red-color: #c00000;
  --gray-color: #f5f5f5;
  --dgray-color: #ebebeb;
  --lgray-color: #747474;
  --rect-color: #000;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
* {
  padding: 0px;
  margin: 0px;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

ul,
ul li {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input[type="submit"] {
  cursor: pointer;
}

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

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* Reset and base styles  */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page-html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

.page-body {
  font-family: var(--font-family, sans-serif);
  margin: 0;
  min-width: 320px;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  background-color: var(--background-color);
  color: #000;
}
@media (max-width: 991px) {
  .page-body {
    font-size: 15px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

a {
  color: inherit;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}
@media (max-width: 991px) {
  a {
    cursor: default;
  }
}

a:hover {
  text-decoration: underline;
}

a[href*="tel:"] {
  white-space: nowrap;
}

input[type="submit"] {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

*:has(> .ic) {
  line-height: 1;
}

.page-container {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: clip;
  position: relative;
}

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

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

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

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

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

ul {
  list-style-type: none;
  padding: 0;
}

.anim-scale {
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  -o-transition: transform 0.1s;
  transition: transform 0.1s;
  transition:
    transform 0.1s,
    -webkit-transform 0.1s;
}

.anim-scale:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.youtube-video {
  width: 100%;
  aspect-ratio: 16/9;
}

.body-disable-scroll {
  overflow-y: hidden;
}

.video-js {
  background: transparent;
}

form.wpcf7-form.submitting .wpcf7-submit,
form.wpcf7-form.submitting [type="submit"] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  pointer-events: none;
}

.sect-p {
  padding: 100px 0;
}

.sect-m {
  margin: 100px 0;
}

.page-p {
  padding: 50px 0;
}

.page-m {
  margin: 50px 0;
}

.h1 {
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 991px) {
  .h1 {
    font-size: 28px;
  }
}

.h2 {
  font-size: 28px;
}
@media (max-width: 991px) {
  .h2 {
    font-size: 22px;
  }
}

.content-box > *:not(:last-child) {
  margin-bottom: 16px;
}

.content-box ul,
.content-box li {
  list-style: disc;
}

.content-box li {
  margin-left: 25px;
  line-height: 1.4;
}

.content-box li:not(:last-child) {
  margin-bottom: 3px;
}

.content-box img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  font-weight: 600;
  line-height: 1.2;
}
.content-box h2:not(:first-child),
.content-box h3:not(:first-child),
.content-box h4:not(:first-child),
.content-box h5:not(:first-child),
.content-box h6:not(:first-child) {
  padding-top: 10px;
}

.content-box h2 {
  font-size: 32px;
}

.content-box h3 {
  font-size: 24px;
}

.content-box h4 {
  font-size: 20px;
}

.content-box h5 {
  font-size: 16px;
}

.content-box h6 {
  font-size: 14px;
}

.content-box .wp-block-heading {
  margin-bottom: 1em;
}

@media (max-width: 575px) {
  .content-box h2 {
    font-size: 26px;
  }
  .content-box h3 {
    font-size: 20px;
  }
  .content-box h4 {
    font-size: 18px;
  }
}
.content-box .alignright {
  float: right;
  margin-bottom: 16px;
}

.content-box .alignleft {
  float: left;
  margin-bottom: 16px;
}

@media (min-width: 481px) {
  .content-box .alignright {
    padding-left: 16px;
  }
  .content-box .alignleft {
    padding-right: 16px;
  }
}
.content-box ol li {
  list-style: decimal;
}

.content-box a:not(.btn) {
  text-decoration: underline;
}

.content-box a:hover {
  text-decoration: none;
}

.content-box table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-left: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.content-box table td {
  padding: 3px;
  border-right: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.success__inner {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.form {
  width: 100%;
}
.form__title {
  margin-bottom: 25px;
}
.form__fields {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.form__fields .form-row:not(:last-child) {
  margin-bottom: 10px;
}
.form__btn {
  width: 100%;
}
.form__btn.btn {
  width: 100%;
}
.form__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__accept {
  font-size: 14px;
}
.form__accept a {
  text-decoration: underline;
}
.form__accept input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.form__accept input[type="checkbox"]:checked + span::before {
  content: "\e907";
  font-family: "icomoon";
  background: var(--rect-color);
}
.form__accept label > span::before {
  content: "";
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "icomoon";
  font-size: 8px;
  line-height: 1;
  color: #fff;
  border: 1px solid var(--rect-color);
  margin-right: 5px;
  vertical-align: bottom;
  position: relative;
  bottom: 1px;
  border-radius: 3px;
}

.form-row {
  position: relative;
  width: 100%;
}
.form-row._file label {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form-row._file::after {
  content: "\e90f";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  display: inline-block;
  font-family: "icomoon";
  line-height: 1;
  font-size: 16px;
  margin-right: 10px;
  pointer-events: none;
}
.form-row label {
  font-weight: 300;
  font-size: 14px;
  color: var(--label-color);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  cursor: text;
  text-align: start;
  margin-bottom: 5px;
  display: none;
}
.form-row input:focus-visible,
.form-row textarea:focus-visible,
.form-row select:focus-visible {
  outline: none;
}
.form-row input,
.form-row textarea,
.form-row select {
  padding: 15px 25px;
  width: 100%;
  background-color: #fff;
  color: #000;
  border: 1px solid var(--dgray-color);
  border-radius: 6px;
}
.form-row.woocommerce-invalid input,
.form-row.woocommerce-invalid textarea,
.form-row.woocommerce-invalid select {
  border-color: var(--red-color);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #000;
}
@media (max-width: 991px) {
  .form-row input,
  .form-row textarea,
  .form-row select {
    padding: 12px 20px;
  }
}
.form-row textarea {
  overflow: auto;
  outline: none;
  resize: none;
}
.form-row select {
  cursor: pointer;
}

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

.ic {
  font-size: inherit;
  vertical-align: middle;
}
.ic::before,
.ic::after {
  font-family: "icomoon";
  line-height: 1;
  font-size: inherit;
}

.s-pagination {
  text-align: center;
  margin-top: 20px;
  display: none;
  line-height: 0;
}
@media (max-width: 991px) {
  .s-pagination {
    display: block;
  }
}
.s-pagination span {
  background: #000;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.s-pagination.swiper-pagination-lock {
  display: none;
}

.s-scrollbar {
  height: 4px;
  background: var(--gray-color);
  border-radius: 8px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .s-scrollbar {
    margin-top: 10px;
  }
}
.s-scrollbar .swiper-scrollbar-drag {
  background: #000;
  border-radius: 8px;
}

.zoom-bg:hover::after {
  opacity: 1;
  visibility: visible;
}
.zoom-bg::after {
  content: "\e901";
  position: absolute;
  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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "gulp";
  line-height: 1;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6980392157);
  background: rgba(0, 0, 0, 0.2392156863);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}

.page-head {
  margin: 30px 0 50px;
}
@media (max-width: 991px) {
  .page-head {
    margin: 20px 0;
  }
}
.page-head .h1 {
  margin-top: 15px;
}
@media (max-width: 991px) {
  .page-head .h1 {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .aioseo-breadcrumbs {
    font-size: 14px;
  }
}
.aioseo-breadcrumbs .aioseo-breadcrumb:last-child {
  color: #747474;
}
.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  display: inline-block;
  color: #747474;
  margin: 0 5px;
}

.plyr {
  height: 100%;
  --plyr-color-main: #8c0014;
}

.plyr--stopped video {
  -o-object-fit: cover;
  object-fit: cover;
}

.plyr__poster {
  background-size: cover;
}

.plyr--stopped .plyr__controls {
  display: none;
}

[class*="gototech"],
[class*="gototaxi"],
[class*="copyright__wrap"] {
  display: none !important;
}

select {
  padding: 0px 20px 0 5px;
  background-image: url("../img/svg/angle-arrow-down.svg");
  background-size: 11px 6px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.SumoSelect {
  width: auto;
  cursor: pointer;
}
.SumoSelect.open .CaptionCont label::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.SumoSelect .CaptionCont {
  padding: 0;
  width: 100%;
  min-height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  color: #000;
  border-radius: 0;
  border: none;
  background: transparent;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
@media (max-width: 991px) {
  .SumoSelect .CaptionCont {
    gap: 10px;
  }
}

.SumoSelect .CaptionCont span {
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.SumoSelect .CaptionCont label {
  width: auto;
  position: static;
  line-height: 0;
}

.SumoSelect .CaptionCont label::before {
  content: "\e900";
  font-family: "icomoon";
  font-size: 7px;
  line-height: 1;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}
@media (max-width: 991px) {
  .SumoSelect .CaptionCont label::before {
    font-size: 5px;
  }
}

.SumoSelect .CaptionCont label i {
  display: none;
}

.SumoSelect .CaptionCont span.placeholder {
  color: #636363;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.SumoSelect > .optWrapper {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: none;
}

.SumoSelect.open > .optWrapper {
  padding: 10px;
  width: auto;
  top: 30px;
  border-radius: 0;
  border: none;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.SumoSelect > .optWrapper > .options {
  color: #000;
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: none;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.SumoSelect > .optWrapper > .options li.opt.selected::after {
  opacity: 1;
}
.SumoSelect > .optWrapper > .options li.opt::after {
  content: "\e907";
  width: 16px;
  height: 16px;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "icomoon";
  line-height: 1;
  font-size: 8px;
  border-radius: 3px;
  margin-left: auto;
  opacity: 0;
}

.SumoSelect > .optWrapper > .options li.opt:first-child {
  border-radius: 5px;
}

.SumoSelect > .optWrapper > .options li.opt:last-child {
  border-radius: 5px;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: var(--dgray-color);
}

.nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 20px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 991px) {
  .nav-box {
    display: none;
  }
}
.nav-box._center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  width: calc(100% - 30px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.nav-box--white {
  color: #fff;
}
.nav-box--white .nav-left,
.nav-box--white .nav-right {
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-left,
.nav-right {
  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: 49px;
  height: 49px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--dgray-color);
  border-radius: 50%;
  pointer-events: all;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .nav-left,
  .nav-right {
    cursor: pointer;
  }
}
.nav-left.swiper-button-lock,
.nav-right.swiper-button-lock {
  display: none;
}
.nav-left:not(.swiper-button-disabled):hover,
.nav-right:not(.swiper-button-disabled):hover {
  opacity: 0.85;
}
.nav-left::before,
.nav-right::before {
  content: "\e901";
  position: relative;
  font-family: "icomoon";
  line-height: 1;
  right: 2px;
}
.nav-left.swiper-button-disabled,
.nav-right.swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}

.nav-right::before {
  content: "\e902";
  left: 2px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  color: #000;
  font-size: 18px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media (max-width: 991px) {
  .btn {
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 4px;
  }
}
.btn--medium {
  padding: 12px 18px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .btn--medium {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.btn--more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}
@media (max-width: 991px) {
  .btn--more {
    margin: 30px auto 0;
  }
}
.btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.btn--gray {
  background: var(--gray-color);
}
.btn--bk {
  background: #000;
  color: #fff;
}
.btn--wh {
  border-color: var(--dgray-color);
}
.btn--square {
  padding: 14px;
}
@media (max-width: 991px) {
  .btn--square {
    padding: 12px;
  }
}

@media (max-width: 575px) {
  .fancybox-slide--video {
    padding-left: 6px;
    padding-right: 6px;
  }
}
form.wpcf7-form.submitting [type="submit"],
form.wpcf7-form.submitting [type="button"] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.7;
  pointer-events: none;
}

form.wpcf7-form:not(.submitting) .wpcf7-spinner {
  display: none;
}

.search__grid h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.search__grid > div:not(:last-child) {
  margin-bottom: 20px;
}

.accept-box {
  cursor: pointer;
}

.accept-box a {
  text-decoration: underline;
}

input[name="f_accept"] {
  width: 0;
  height: 0;
  margin: 0 22px 16px 0;
}

input[name="f_accept"]::before {
  content: "";
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  font-family: "icomoon";
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  vertical-align: middle;
}

input[name="f_accept"]:checked::before {
  content: "\e912";
}

.side-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 90;
  display: none;
}
.side-popup._show .side-popup-wrapper {
  opacity: 1;
}
.side-popup._show .side-popup-wrap {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.side-popup__close {
  padding: 14px;
  font-size: 12px;
  border-radius: 50%;
  border: 1px solid var(--dgray-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .side-popup__close {
    padding: 8px;
    font-size: 10px;
  }
}
.side-popup__close:hover {
  opacity: 0.8;
}
.side-popup__row:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .side-popup__row:not(:last-child) {
    margin-bottom: 20px;
  }
}
.side-popup__row._top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.side-popup__title {
  font-size: 28px;
}
@media (max-width: 991px) {
  .side-popup__title {
    font-size: 22px;
  }
}
.side-popup .table-wrap {
  overflow-x: auto;
}

.side-popup-wrapper {
  min-height: var(--app-height);
  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: end;
  -ms-flex-align: end;
  align-items: end;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .side-popup-wrapper {
    padding-top: 90px;
  }
}

.side-popup-wrap {
  padding: 50px;
  width: 100%;
  max-width: 700px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 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-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  position: relative;
  background: var(--background-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .side-popup-wrap {
    padding: 20px 15px;
    max-width: 100%;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-top: auto;
  }
}

.w-100 {
  width: 100%;
}

html [data-showmore-btn] {
  display: none;
}

html [data-showmore-items] > * {
  display: none;
}

.fancybox-container {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fancybox-bg {
  background: rgba(0, 0, 0, 0.5);
}

.s-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .s-top {
    margin-bottom: 20px;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .s-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.s-top .nav-box {
  margin-left: auto;
}

.reset_variations_alert,
.single_variation_wrap,
.reset_variations {
  display: none !important;
}

.ic-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.ic-link:hover {
  color: var(--red-color);
  text-decoration: none;
}
.ic-link .ic {
  font-size: 21px;
}

.header {
  height: 148px;
  z-index: 10;
}
@media (max-width: 991px) {
  .header {
    height: 61px;
  }
}
.header._fixed {
  position: relative;
}
.header._fixed .header__bottom {
  position: fixed;
}
.header__burger {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media (max-width: 991px) {
  .header__burger {
    width: 36px;
    height: 36px;
    border-radius: 4px;
  }
}
.header__burger:hover {
  background-color: var(--red-color);
}
.header__burger:hover span {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.header__burger:hover span:first-child,
.header__burger:hover span:last-child {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.header__burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}
@media (max-width: 991px) {
  .header__burger span {
    width: 16px;
  }
}
.header__burger span:first-child,
.header__burger span:last-child {
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}
.header__top {
  padding: 20px 0;
  background: var(--gray-color);
}
@media (max-width: 991px) {
  .header__top {
    display: none;
  }
}
.header__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header__top-nav {
  margin-right: auto;
}
.header__top-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .header__top-nav ul {
    gap: 20px;
  }
}
.header__top-nav ul a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.header__top-tel {
  font-weight: 700;
  margin-right: 50px;
}
.header__top-tel:hover {
  color: var(--red-color);
  text-decoration: none;
}
.header__logo img {
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 991px) {
  .header__logo img {
    height: 35px;
  }
}
.header__bottom {
  background: #fff;
  border-bottom: 1px solid var(--dgray-color);
  top: 0;
  left: 0;
  right: 0;
  position: relative;
}
@media (max-width: 991px) {
  .header__bottom {
    position: fixed;
  }
}
.header__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
}
.header__bottom .container {
  position: relative;
}
@media (max-width: 991px) {
  .header__bottom .lang-box {
    display: none;
  }
}
.header__bottom-inner {
  padding: 17px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .header__bottom-inner {
    padding: 12px 0;
  }
}
.header__bottom-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__bottom-nav {
  font-weight: 700;
  margin-left: 50px;
}
@media (max-width: 991px) {
  .header__bottom-nav {
    display: none;
  }
}
.header__bottom-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .header__bottom-nav ul {
    gap: 20px;
  }
}
.header__bottom-nav ul a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.header__bottom-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.header__bottom-right .lang-box {
  margin-left: 45px;
}
.header__bottom-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  font-size: 25px;
}
@media (max-width: 991px) {
  .header__bottom-actions {
    gap: 10px;
    font-size: 20px;
  }
}
.header__bottom-actions a {
  position: relative;
}
.header__bottom-actions a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.header__bottom-actions a._marked::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-color);
}
.header__fxd {
  left: 0;
  right: 0;
}
.header__fxd._fixed {
  position: fixed;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header__fxd._show {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__fxd._show .header__bottom {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.mob-menu-overlay {
  display: none;
  position: absolute;
  z-index: 105;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 100%;
  width: 100%;
  max-width: 500px;
  height: 100dvh;
  color: #000;
  background: #fff;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
  z-index: 110;
  font-size: 17px;
}
.mob-menu._show {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.mob-menu__close-btn {
  padding: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
}
.mob-menu a {
  display: block;
}
.mob-menu__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
}
.mob-menu__wrapper {
  padding: 50px 70px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .mob-menu__wrapper {
    padding: 50px 30px;
  }
}
.mob-menu__wrapper ._row:not(:last-child) {
  margin-bottom: 50px;
}
.mob-menu__wrapper ._row._catalog ul li a {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--dgray-color);
}
.mob-menu__wrapper ._row._catalog ul li a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.mob-menu__wrapper ._row._catalog ul li.has-child > ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}
.mob-menu__wrapper ._row._catalog ul li.has-child > ul._show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mob-menu__wrapper ._row._catalog ul li.has-child > a:not(._back)::after {
  content: "\e902";
  font-family: "icomoon";
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
}
.mob-menu__wrapper ._row._catalog ul li.has-child a._back {
  border: none;
  margin-bottom: 20px;
}
.mob-menu__wrapper ._row._catalog ul li.has-child a._back::before {
  content: "\e901";
  font-family: "icomoon";
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  margin-right: 25px;
}
.mob-menu__wrapper ._row._menu ul li:not(:last-child) {
  margin-bottom: 15px;
}
.mob-menu__wrapper ._row._menu ul li a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mob-menu__wrapper ._row._menu ul li a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.mob-menu__wrapper ._row._bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.header-drop {
  position: absolute;
  left: 0;
  width: 100%;
  max-height: 80svh;
  background: #fff;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  overflow: auto;
  -webkit-transform: translateY(-101%);
  -ms-transform: translateY(-101%);
  transform: translateY(-101%);
  border-top: 1px solid var(--dgray-color);
}
.header-drop__wrap {
  display: none;
}
.header-drop._cat .header-drop__inner {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-drop._cat .header-drop__col {
  padding-right: 4%;
  margin-right: 4%;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
}
.header-drop._cat .header-drop__col:first-child {
  text-transform: uppercase;
}
.header-drop._cat .header-drop__col:not(:last-child) {
  border-right: 1px solid var(--dgray-color);
}
.header-drop._cat .header-drop__col ul {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}
.header-drop._cat .header-drop__col ul li:not(:last-child) {
  margin-bottom: 15px;
}
.header-drop._cat .header-drop__col:nth-child(2) {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.header-drop._cat .header-drop__col:nth-child(3) {
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
}
.header-drop._cat .header-drop__item {
  break-inside: avoid;
  margin-bottom: 50px;
}
.header-drop._cat .header-drop__item-title {
  font-weight: 700;
  margin-bottom: 30px;
}

.header__fxd._fixed .header-drop {
  max-height: 50svh;
}

.header-drop._show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header-drop-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100svh;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -2;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.header-drop-overlay._show {
  opacity: 1;
  visibility: visible;
}

.drop-search {
  padding: 30px 0 70px;
}
@media (max-width: 991px) {
  .drop-search {
    padding: 30px 0;
  }
}
.drop-search__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  gap: 70px;
}
.drop-search__row:not(:first-child) {
  margin-top: 30px;
}
.drop-search__row._hide {
  display: none;
}
@media (max-width: 991px) {
  .drop-search__row._results {
    display: none;
  }
}
.drop-search__left {
  width: 280px;
}
@media (max-width: 991px) {
  .drop-search__left {
    display: none;
  }
}
.drop-search__title {
  color: #747474;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .drop-search__title {
    margin-bottom: 15px;
  }
}
.drop-search__cat-list li:not(:last-child) {
  margin-bottom: 20px;
}
.drop-search__cat-list li a {
  position: relative;
}
.drop-search__cat-list li a:not(:last-child) {
  padding-right: 5px;
  margin-right: 5px;
}
.drop-search__cat-list li a:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -5px;
  color: #747474;
}
.drop-search__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
@media (max-width: 991px) {
  .drop-search__right {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
}
.drop-search .search-form .form-row {
  position: relative;
}
.drop-search .search-form .form-row input {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 991px) {
  .drop-search .search-form .form-row input {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.drop-search .search-form .form-row button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .drop-search .search-form .form-row button {
    left: 10px;
    font-size: 15px;
  }
}
.drop-search .search-form .form-row button._clear {
  left: auto;
  right: 20px;
  font-size: 11px;
}
@media (max-width: 991px) {
  .drop-search .search-form .form-row button._clear {
    right: 10px;
  }
}
.drop-search__hint-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.drop-search__hint-list li a {
  padding: 10px;
  display: inline-block;
  background: var(--gray-color);
  border-radius: 6px;
}
@media (max-width: 991px) {
  .drop-search__hint-list li a {
    padding: 5px;
    font-size: 13px;
    border-radius: 4px;
  }
}
.drop-search__hint-list li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.drop-search__prods {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 230px));
  gap: 5px;
}
.drop-search__show-all {
  margin-top: 25px;
}

.footer {
  padding: 70px 0;
  background: var(--gray-color);
}
@media (max-width: 1199px) {
  .footer {
    padding: 40px 0;
    font-size: 15px;
  }
}
.footer a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.footer ._row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [6];
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2.8%;
}
@media (max-width: 1199px) {
  .footer ._row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
.footer ._row:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .footer ._row:not(:last-child) {
    margin-bottom: 30px;
  }
}
.footer ._row._bottom {
  color: var(--lgray-color);
}
@media (max-width: 1199px) {
  .footer ._row._bottom {
    gap: 10px;
  }
}
.footer__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.footer__logo img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .footer__logo img {
    height: 50px;
  }
}
.footer .search-form {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  width: 100%;
}
.footer .search-form .form-row {
  position: relative;
}
.footer .search-form .form-row input {
  padding: 12px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.footer .search-form .form-row button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  color: var(--lgray-color);
}
.footer .lang-box {
  background-color: var(--dgray-color);
}
.footer__contacts {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 1199px) {
  .footer__contacts {
    gap: 10px;
  }
}
.footer__tel {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  white-space: nowrap;
}
.footer__email {
  color: var(--lgray-color);
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .footer .social-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__nav-col li {
  color: var(--lgray-color);
}
.footer__nav-col li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .footer__nav-col li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer__nav-title {
  font-size: 20px;
  margin-bottom: 20px;
}
.footer__copyright {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.footer__dev i {
  color: #000;
  font-size: 26px;
}

.social-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
}
.social-box._circle {
  gap: 5px;
}
.social-box._circle a {
  width: 52px;
  height: 52px;
  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;
  color: #000;
  border-radius: 50%;
  background: var(--dgray-color);
}
.social-box a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.social-box a._tg {
  font-size: 18px;
}
.social-box a._vk {
  font-size: 15px;
}

a.lang-box {
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: var(--gray-color);
  border-radius: 6px;
}
a.lang-box:hover {
  text-decoration: none;
}
a.lang-box ._img {
  width: 23px;
  height: 23px;
  border: 1px solid var(--dgray-color);
  border-radius: 2px;
}
a.lang-box ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
a.lang-box .ic {
  font-size: 7px;
}
a.lang-box span {
  text-transform: uppercase;
}

.popup-select-lang {
  width: 365px;
}
.popup-select-lang ul li {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.popup-select-lang ul li:not(:last-child) {
  margin-bottom: 5px;
}
.popup-select-lang ul li:hover {
  background-color: #f8f8f8;
}
.popup-select-lang ul li._selected {
  background-color: var(--gray-color);
}
.popup-select-lang ul li._selected ._dot {
  background: var(--red-color);
  border-color: var(--red-color);
}
.popup-select-lang ul li ._dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #747474;
}
.popup-select-lang ul li ._imgwrap {
  width: 24px;
  /* border: 1px solid var(--dgray-color); */
  border-radius: 2px;
  overflow: hidden;
}
.popup-select-lang ul li ._imgwrap img {
  width: 100%;
  object-fit: contain;
}
.popup-select-lang ul li span {
  color: #747474;
  margin-left: auto;
}

.sect-bann {
  color: #fff;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .sect-bann {
    margin-bottom: 40px;
  }
}
.sect-bann__swiper-box {
  position: relative;
}
.sect-bann .nav-box.container {
  left: 0;
  right: 0;
  bottom: 70px;
  position: absolute;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.sect-bann .swiper-slide {
  padding: 70px 0;
  height: calc(100svh - 148px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: relative;
}
@media (max-width: 991px) {
  .sect-bann .swiper-slide {
    height: calc(100svh - 61px);
  }
}
.sect-bann .swiper-slide img,
.sect-bann .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 992px) {
  .sect-bann .swiper-slide video._mob {
    display: none;
  }
}
@media (max-width: 991px) {
  .sect-bann .swiper-slide:has(video._mob) video:not(._mob) {
    display: none;
  }
}
.sect-bann .container {
  position: relative;
}
.sect-bann__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .sect-bann__wrap {
    gap: 20px;
  }
}
.sect-bann__title {
  text-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  line-height: normal;
}
@media (max-width: 991px) {
  .sect-bann__title br {
    display: none;
  }
}
.sect-bann__desc {
  max-width: 750px;
  font-size: 18px;
  text-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.sect-bann__actions {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sect-bann .s-pagination {
  display: block;
  position: absolute;
  z-index: 1;
  margin: 0 0 20px;
}
.sect-bann .s-pagination span {
  width: 100%;
  max-width: 50px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  margin: 0 10px !important;
}

.cat-slider {
  display: none;
}
.cat-slider .swiper {
  overflow: visible;
}
.cat-slider .swiper-slide {
  height: auto;
}

.cat-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 128%;
}
.cat-card:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .cat-card:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.cat-card._short {
  padding: 0;
}
.cat-card._short .cat-card__img-box {
  position: static;
  aspect-ratio: 1;
  height: auto;
}
.cat-card._short .cat-card__title {
  position: static;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.cat-card__img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cat-card__img-box {
    border-radius: 4px;
  }
}
.cat-card__img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  will-change: transform;
}
.cat-card__title {
  padding: 10px 14px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  left: 10px;
  right: 10px;
  bottom: 25px;
  bottom: 5%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
  -webkit-transform: translate3d(0, 0, 0);
}
@media (max-width: 991px) {
  .cat-card__title {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
  }
}

.prod-card {
  position: relative;
}
.prod-card._faved .prod-card__fav::before {
  content: "\e90d";
  color: var(--red-color);
}
.prod-card._mini .prod-card__mark {
  padding: 2px 5px;
  font-size: 11px;
  border-radius: 0 5px 5px 0;
}
.prod-card._mini .prod-card__fav {
  width: 25px;
  height: 25px;
  font-size: 12px;
}
.prod-card._mini .prod-card__img-box {
  border-radius: 6px;
  margin-bottom: 7px;
}
.prod-card._mini ._vars {
  display: none !important;
}
.prod-card._mini .prod-card__title {
  font-size: 15px;
  margin-bottom: 5px;
}
.prod-card._mini .prod-card__rating {
  display: none;
  margin-bottom: 5px;
}
.prod-card._mini .prod-card__price {
  font-size: 16px;
}
.prod-card__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
}
.prod-card__marks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .prod-card__marks {
    gap: 3px;
  }
}
.prod-card__mark {
  padding: 10px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border-radius: 0 10px 10px 0;
}
@media (max-width: 991px) {
  .prod-card__mark {
    padding: 2px 5px;
    font-size: 11px;
    border-radius: 0 5px 5px 0;
  }
}
.prod-card__mark:first-child {
  border-radius: 0 0 10px 0;
}
@media (max-width: 991px) {
  .prod-card__mark:first-child {
    border-radius: 0 0 5px 0;
  }
}
.prod-card__fav {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  background: #fff;
  border-radius: 0 0 0 10px;
  margin-left: auto;
  cursor: pointer;
}
@media (max-width: 991px) {
  .prod-card__fav {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}
@media (hover: hover) {
  .prod-card__fav:hover::before {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
  }
}
.prod-card__fav::before {
  content: "\e90b";
  font-family: "icomoon";
  line-height: 1;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
  will-change: transform;
}
.prod-card__img-box {
  display: block;
  padding-bottom: 148%;
  position: relative;
  border: 1px solid var(--dgray-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .prod-card__img-box {
    border-radius: 6px;
    margin-bottom: 7px;
  }
}
.prod-card .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.prod-card .swiper-slide {
  background: no-repeat center/cover;
}
.prod-card__bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.prod-card__bottom ._top {
  padding: 10px;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .prod-card__bottom ._top {
    padding: 3px;
  }
}
.prod-card .s-pagination {
  padding: 2px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin: 0;
}
.prod-card .s-pagination span {
  background: #fff;
  width: 30px;
  height: 2px;
  border-radius: 5px;
  margin: 0 2px !important;
}
@media (max-width: 991px) {
  .prod-card .s-pagination span {
    width: 10px;
    height: 1px;
  }
}
.prod-card__rating {
  padding: 3px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  border-radius: 50px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .prod-card__rating {
    padding: 2px 5px;
    gap: 3px;
    font-size: 11px;
  }
}
.prod-card__rating .ic {
  font-size: 10px;
}
@media (max-width: 991px) {
  .prod-card__rating .ic {
    font-size: 8px;
  }
}
.prod-card ._vars {
  display: none;
}
.prod-card .variations_form .label {
  display: none;
}
.prod-card .variations_form ul {
  padding: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #000;
  border-radius: 10px;
}
.prod-card .variations_form ul li {
  padding: 10px;
  -webkit-box-flex: 24%;
  -ms-flex: 24% 1 0px;
  flex: 24% 1 0;
  background: #161616;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 6px;
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  cursor: pointer;
}
.prod-card .variations_form ul li:hover {
  border-color: #fff;
}
.prod-card .variations_form ul li.disabled {
  display: none;
}
.prod-card__title {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .prod-card__title {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
.prod-card__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .prod-card__price-box {
    gap: 10px;
  }
}
.prod-card__price {
  font-size: 18px;
}
@media (max-width: 991px) {
  .prod-card__price {
    font-size: 16px;
  }
}
.prod-card__old-price {
  color: #a6a6a6;
  font-size: 14px;
  text-decoration: line-through;
}
@media (max-width: 991px) {
  .prod-card__old-price {
    font-size: 13px;
  }
}
.prod-card__note {
  color: #747474;
  font-size: 14px;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .prod-card__note {
    font-size: 12px;
    margin-top: 3px;
  }
}

.sect-amap {
  background: no-repeat center/cover;
}
@media (max-width: 991px) {
  .sect-amap {
    background-position-x: 77%;
  }
}
.sect-amap__inner {
  padding: 70px 0;
  max-width: 500px;
  min-height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .sect-amap__inner {
    padding: 30px 0;
    min-height: 0;
  }
}
.sect-amap__img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 162px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: auto;
}
@media (max-width: 991px) {
  .sect-amap__img {
    height: 40px;
  }
}
.sect-amap__title {
  font-size: 66px;
  text-transform: uppercase;
  margin-top: auto;
}
@media (max-width: 991px) {
  .sect-amap__title {
    font-size: 40px;
  }
}
.sect-amap__decs {
  line-height: 1.45;
}

.social-card__img {
  display: block;
  padding-bottom: 146%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .social-card__img {
    border-radius: 5px;
    margin-bottom: 5px;
  }
}
.social-card__img:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.social-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  -o-transition: filter 0.4s ease;
  transition: filter 0.4s ease;
  transition:
    filter 0.4s ease,
    -webkit-filter 0.4s ease;
  will-change: transform;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.social-card__title {
  font-size: 20px;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .social-card__title {
    font-size: 14px;
  }
}
.social-card__link {
  padding-left: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #747474;
  position: relative;
}
@media (max-width: 991px) {
  .social-card__link {
    padding-left: 15px;
    font-size: 13px;
  }
}
.social-card__link .ic {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
}
@media (max-width: 991px) {
  .social-card__link .ic {
    font-size: 11px;
  }
}

.sect-chess__row {
  position: relative;
}
@media (max-width: 991px) {
  .sect-chess__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .sect-chess__row:nth-child(2n) .sect-chess__bg {
    left: auto;
    right: 0;
  }
  .sect-chess__row:nth-child(2n) .sect-chess__left .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  .sect-chess__row:nth-child(2n) .sect-chess__left-inner {
    padding: 70px;
    max-width: 100%;
  }
  .sect-chess__row:nth-child(2n) .sect-chess__right {
    left: 0;
    right: 50%;
  }
}
.sect-chess__left {
  width: 100%;
  height: 850px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .sect-chess__left {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .sect-chess__left {
    height: auto;
    min-height: 400px;
  }
}
.sect-chess__left:hover {
  text-decoration: none;
}
.sect-chess__left:hover .sect-chess__bg {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.sect-chess__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.sect-chess__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  -o-transition: transform 1s ease;
  transition: transform 1s ease;
  transition:
    transform 1s ease,
    -webkit-transform 1s ease;
  will-change: transform;
}
@media (max-width: 991px) {
  .sect-chess__bg {
    width: 100%;
  }
}
.sect-chess__left-inner {
  padding: 70px 0;
  width: 50%;
  max-width: 500px;
  position: relative;
  color: #fff;
}
@media (max-width: 991px) {
  .sect-chess__left-inner {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
  }
}
.sect-chess__title {
  font-size: 40px;
  text-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .sect-chess__title {
    font-size: 32px;
  }
}
.sect-chess__note {
  line-height: 1.45;
  text-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  margin-top: 15px;
}
@media (max-width: 991px) {
  .sect-chess__note {
    font-size: 14px;
    margin-top: 10px;
  }
}
.sect-chess__right {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
}
@media (min-width: 992px) {
  .sect-chess__right {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .sect-chess__right {
    padding: 30px 0;
  }
}
.sect-chess__right-inner {
  position: relative;
  width: 440px;
}
@media (max-width: 1199px) {
  .sect-chess__right-inner {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .sect-chess__right-inner {
    width: 250px;
  }
}
.sect-chess .nav-box {
  left: -80px;
  width: calc(100% + 160px);
}
@media (max-width: 991px) {
  .sect-chess .nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 575px) {
  .sect-chess .nav-box {
    left: -60px;
    width: calc(100% + 120px);
  }
}

.sect-gridbann {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .sect-gridbann {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sect-gridbann__item {
  width: 50%;
  min-height: 600px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .sect-gridbann__item {
    width: 100%;
    min-height: 300px;
    position: relative;
  }
}
@media (min-width: 992px) {
  .sect-gridbann__item:nth-child(2n) {
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .sect-gridbann__item:nth-child(2n) .container {
    padding-left: 70px;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.sect-gridbann__item:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .sect-gridbann__item:hover .sect-gridbann__item-bg {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.sect-gridbann__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.sect-gridbann__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  -o-transition: transform 1s ease;
  transition: transform 1s ease;
  transition:
    transform 1s ease,
    -webkit-transform 1s ease;
}
@media (max-width: 991px) {
  .sect-gridbann__item-bg {
    width: 100%;
  }
}
.sect-gridbann .container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 70px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 991px) {
  .sect-gridbann .container {
    bottom: 40px;
  }
}
.sect-gridbann__item-title {
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 40px;
  text-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .sect-gridbann__item-title {
    font-size: 26px;
  }
}
.sect-gridbann__item-title .ic {
  font-size: 26px;
}
@media (max-width: 991px) {
  .sect-gridbann__item-title .ic {
    font-size: 16px;
  }
}

.sect-video {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}
.sect-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.sect-socials {
  padding: 90px 0;
  background: #fbfbfb;
  border-top: 1px solid var(--gray-color);
}
@media (max-width: 991px) {
  .sect-socials {
    padding: 40px 0;
  }
}
.sect-socials__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .sect-socials__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.sect-socials__inner div:first-child,
.sect-socials__inner div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.sect-socials__inner div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  text-align: right;
}
@media (max-width: 991px) {
  .sect-socials__inner div:last-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.catalog-main {
  margin-bottom: 30px;
}
.catalog-main.filter-open .catalog-aside {
  margin-left: 0;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .catalog-main.filter-open .catalog-aside {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
}

.catalog-head {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .catalog-head {
    margin-bottom: 30px;
  }
}
.catalog-head a:hover {
  color: var(--red-color);
  text-decoration: none;
}
.catalog-head__inner {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  background: var(--gray-color);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .catalog-head__inner {
    padding: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    border-radius: 5px;
  }
}
.catalog-head__filter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .catalog-head__filter-btn {
    gap: 10px;
  }
}
.catalog-head__filter-btn .ic {
  font-size: 18px;
}
@media (max-width: 991px) {
  .catalog-head__filter-btn .ic {
    font-size: 15px;
  }
}
.catalog-head__mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media (max-width: 991px) {
  .catalog-head__mode {
    display: none;
  }
}
.catalog-head__mode a {
  color: #bdbdbd;
  border-radius: 6px;
  border: 10px solid transparent;
}
.catalog-head__mode a:hover {
  color: #bdbdbd;
  border-color: var(--dgray-color);
}
.catalog-head__mode a._active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.catalog-head__mode a .ic {
  font-size: 18px;
}

@media (max-width: 991px) {
  .catalog-sorting {
    margin-left: auto;
  }
}

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

.catalog-aside {
  width: 400px;
  background: #fff;
  margin-right: 45px;
  opacity: 0;
  visibility: hidden;
  margin-left: -445px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 3;
  position: relative;
}
@media (max-width: 991px) {
  .catalog-aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    overflow: auto;
    z-index: 15;
  }
}
.catalog-aside__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  color: #747474;
}
@media (min-width: 992px) {
  .catalog-aside__close {
    display: none;
  }
}
@media (max-width: 991px) {
  .catalog-aside__inner {
    padding: 40px 15px;
  }
}

.catalog-grid {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.catalog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [var(--cols)];
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 40px 10px;
}
@media (max-width: 991px) {
  .catalog-grid {
    -ms-grid-columns: (minmax(0, 1fr)) [3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 5px;
  }
}
@media (max-width: 767px) {
  .catalog-grid {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .catalog-selected {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.product-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 1399px) {
  .product-main__inner {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .product-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.product-main__gallery {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
}
@media (max-width: 991px) {
  .product-main__gallery {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}
.product-main__swiper-box {
  position: relative;
}
@media (min-width: 992px) {
  .product-main__swiper-box {
    position: sticky;
    top: 110px;
  }
}
.product-main__swiper-box .nav-box {
  left: 0;
  width: 100%;
  font-size: 34px;
  mix-blend-mode: difference;
}
.product-main__swiper-box .nav-left,
.product-main__swiper-box .nav-right {
  border: none;
  width: 34px;
  height: 34px;
  color: #fff;
  background: none;
  border-radius: 0;
}
.product-main .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 148%;
}
.product-main .swiper-slide img,
.product-main .swiper-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .product-main .swiper-slide img,
  .product-main .swiper-slide video {
    border-radius: 5px;
  }
}
.product-main__summary {
  width: 100%;
  max-width: 600px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1399px) {
  .product-main__summary {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .product-main__summary {
    max-width: 100%;
  }
}
.product-main__row:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .product-main__row:not(:last-child) {
    margin-bottom: 30px;
  }
}
.product-main__title {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .product-main__title {
    margin-bottom: 15px;
  }
}
.product-main__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.product-main__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .product-main__price-box {
    gap: 15px;
  }
}
.product-main__price {
  font-size: 22px;
}
@media (max-width: 991px) {
  .product-main__price {
    font-size: 18px;
  }
}
.product-main__old-price {
  color: #a6a6a6;
  font-size: 18px;
  text-decoration: line-through;
}
@media (max-width: 991px) {
  .product-main__old-price {
    font-size: 16px;
  }
}
.product-main__rating-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.product-main__rating-box .ic {
  font-size: 14px;
}
.product-main__sync-box {
  margin-bottom: 20px;
}
.product-main__sync-title {
  color: var(--lgray-color);
  margin-bottom: 10px;
}
.product-main__sync-title span {
  color: #000;
}
.product-main__sync-list {
  display: flex;
  gap: 4px;
}
.product__sync-item {
  width: 54px;
  display: block;
  background: no-repeat center/cover;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border 0.2s ease;
}
.product__sync-item::before {
  content: "";
  display: block;
  padding-bottom: 148%;
}
.product__sync-item._active {
  border-color: #000;
}
.product__sync-item:not(._active):hover {
  border-color: var(--dgray-color);
}
.product-main__vars .variations_form {
  margin-bottom: 20px;
}
.product-main__vars tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 10px;
}
.product-main__vars .label {
  font-weight: 400;
}
.product-main__vars .label label {
  color: #747474;
}
.product-main__vars .single-product-variable-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.product-main__vars .single-product-variable-items li {
  padding: 9px;
  min-width: 65px;
  background: var(--gray-color);
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.product-main__vars .single-product-variable-items li.selected {
  border-color: #000;
}
.product-main__vars .single-product-variable-items li:hover {
  background-color: var(--dgray-color);
}
.product-main__vars .single-product-variable-items li.disabled {
  background: #fff;
  color: #aaa;
  border-color: var(--dgray-color);
  text-decoration: line-through;
  pointer-events: none;
}
.product-main__vars-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 991px) {
  .product-main__vars-bottom {
    -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: start;
  }
}
.product-main__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.product-main__actions .btn {
  height: auto;
}
.product-main__fav-btn {
  font-size: 18px;
  line-height: 1;
}
.product-main__fav-btn::before {
  content: "\e90b";
  font-family: "icomoon";
  line-height: 1;
}
.product-main._faved .product-main__fav-btn::before {
  content: "\e90d";
  color: var(--red-color);
}
.product-main__actions ._add-to-cart {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.product-main__split-btn {
  width: 100%;
  margin-top: 25px;
}
@media (max-width: 991px) {
  .product-main__split-btn {
    margin-top: 15px;
  }
}
.product-main__popups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.product-main__desc {
  padding: 40px 0;
  line-height: 1.45;
  border-top: 1px solid var(--dgray-color);
  border-bottom: 1px solid var(--dgray-color);
}
@media (max-width: 991px) {
  .product-main__desc {
    padding: 30px 0;
  }
}
@media (max-width: 991px) {
  .product-main__spec-list {
    font-size: 13px;
  }
}
.product-main__spec-list li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.product-main__spec-list li:not(:last-child) {
  margin-bottom: 10px;
}
.product-main__spec-list li ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: #747474;
}
.product-main__spec-list li ._title::after {
  content: "";
  position: relative;
  height: 1px;
  top: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  border-bottom: 1px dotted #e1e1e1;
}

.split-box {
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  background: #000;
  color: #fff;
  font-size: 11px;
  border-radius: 20px 4px 4px 20px;
}

.size-popup table {
  width: 100%;
  text-align: center;
  border: none;
}
@media (max-width: 991px) {
  .size-popup table {
    font-size: 13px;
  }
}
.size-popup table th {
  padding: 30px 15px;
  background: var(--gray-color);
  font-weight: 500;
}
@media (max-width: 991px) {
  .size-popup table th {
    padding: 10px 5px;
  }
}
.size-popup table th:first-child {
  border-radius: 10px 0 0 10px;
}
@media (max-width: 991px) {
  .size-popup table th:first-child {
    border-radius: 5px 0 0 5px;
  }
}
.size-popup table th:last-child {
  border-radius: 0 10px 10px 0;
}
@media (max-width: 991px) {
  .size-popup table th:last-child {
    border-radius: 0 5px 5px 0;
  }
}
.size-popup table td {
  padding: 20px 15px;
  border: none;
}
@media (max-width: 991px) {
  .size-popup table td {
    padding: 10px 5px;
  }
}
.size-popup table tbody tr:nth-child(2n) {
  background: #f8f8f8;
}
.size-popup table tbody td:first-child {
  border-radius: 10px 0 0 10px;
}
@media (max-width: 991px) {
  .size-popup table tbody td:first-child {
    border-radius: 5px 0 0 5px;
  }
}
.size-popup table tbody td:last-child {
  border-radius: 0 10px 10px 0;
}
@media (max-width: 991px) {
  .size-popup table tbody td:last-child {
    border-radius: 0 5px 5px 0;
  }
}
@media (min-width: 992px) {
  .size-popup .content-box > *:not(:last-child) {
    margin-bottom: 30px;
  }
}

.adv-item {
  width: 100%;
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 20px;
}
@media (max-width: 991px) {
  .adv-item {
    max-width: 100%;
    gap: 10px;
  }
}
.adv-item__icon {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 991px) {
  .adv-item__icon {
    height: 80px;
  }
}
.adv-item__title {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .adv-item__title {
    font-size: 18px;
  }
}
.adv-item__desc {
  line-height: 1.45;
}
@media (max-width: 991px) {
  .adv-item__desc {
    font-size: 14px;
  }
}

.sect-gallery .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
@media (max-width: 991px) {
  .sect-gallery .swiper-slide {
    border-radius: 5px;
  }
}
.sect-gallery .swiper-slide:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.sect-gallery .swiper-slide::before {
  content: "";
  display: block;
  padding-bottom: 148%;
}
.sect-gallery .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  -o-transition: transform 0.8s ease;
  transition: transform 0.8s ease;
  transition:
    transform 0.8s ease,
    -webkit-transform 0.8s ease;
  will-change: transform;
}

.product-video {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .product-video {
    margin-top: 40px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.product-video__inner {
  position: relative;
}
.product-video__inner::before {
  content: "";
  display: block;
  padding-bottom: 56%;
}
.product-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .product-video video {
    border-radius: 0px;
  }
}

.product-reviews .s-top {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.product-reviews__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.product-reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .product-reviews__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.product-reviews__rating-box {
  padding: 15px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  background: var(--gray-color);
  text-align: center;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .product-reviews__rating-box {
    padding: 12px 15px;
    width: 100%;
  }
}
.product-reviews__rating-box .ic {
  font-size: 13px;
}
.product-reviews__add-btn {
  border-color: #000;
  margin-left: auto;
}
@media (max-width: 991px) {
  .product-reviews__add-btn {
    width: 100%;
  }
}
.product-reviews__btn-more {
  width: 100%;
}
.product-reviews__not-found {
  text-align: center;
}

.review-item {
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--dgray-color);
}
@media (max-width: 991px) {
  .review-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.review-item:last-child {
  border-bottom: 1px solid var(--dgray-color);
}
.review-item__left {
  width: 100%;
  max-width: 220px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .review-item__left {
    max-width: 100%;
  }
}
.review-item__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}
.review-item__date {
  color: #747474;
  font-size: 14px;
  margin-top: 5px;
}
.review-item__right {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.review-item__content {
  line-height: 1.45;
}
.review-item__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.review-item__media-item {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  position: relative;
  text-decoration: none !important;
}
.review-item__media-item:has(video) {
  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;
}
.review-item__media-item:has(video)::after {
  content: "\e91b";
  padding-left: 3px;
  width: 36px;
  height: 36px;
  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;
  font-family: "icomoon";
  line-height: 1;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border: 1px solid #fff;
}
.review-item__media-item:hover {
  opacity: 0.8;
}
.review-item__media-item img,
.review-item__media-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}

.leave-review {
  width: 100%;
}
.leave-review .popup__body a {
  text-decoration: underline;
}
.leave-review__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  font-size: 23px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .leave-review__stars {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px;
  }
}
.leave-review__stars .ic {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
  will-change: transform;
}
.leave-review__stars .ic:hover {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

@media (min-width: 992px) {
  .cart-popup.side-popup {
    overflow: unset;
  }
}
.cart-popup .side-popup__row._list {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cart-popup .side-popup__row._list {
    padding-right: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
  }
}
.cart-popup .side-popup__row._list::-webkit-scrollbar {
  width: 4px;
}
.cart-popup .side-popup__row._list::-webkit-scrollbar-track {
  background: var(--dgray-color);
  border-radius: 10px;
}
.cart-popup .side-popup__row._list::-webkit-scrollbar-thumb {
  background: #b7b7b7;
  border-radius: 10px;
}
.cart-popup .side-popup__row._actions {
  background: #fff;
  border-top: 1px solid #ebebeb;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 992px) {
  .cart-popup .side-popup__row._actions {
    padding: 30px;
    width: calc(100% + 100px);
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    margin: 0 0 -50px -50px;
  }
}
.cart-popup__row:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dgray-color);
}
@media (max-width: 991px) {
  .cart-popup__row:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.cart-popup__line {
  width: 100%;
  height: 6px;
  background: var(--dgray-color);
  position: relative;
  border-radius: 8px;
  margin-bottom: 10px;
}
.cart-popup__line-handler {
  position: absolute;
  left: 0;
  height: 100%;
  background: #000;
  border-radius: 8px;
}
.cart-popup__line-note {
  color: var(--lgray-color);
}
@media (max-width: 991px) {
  .cart-popup__line-note {
    font-size: 14px;
  }
}
.cart-popup__submit-btn {
  margin: 15px 0;
}
.cart-popup__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 10px;
  margin-top: 15px;
}
.cart-popup__link-box a {
  text-decoration: underline;
}

.cart-item {
  padding-bottom: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--dgray-color);
}
@media (max-width: 991px) {
  .cart-item {
    gap: 10px;
  }
}
.cart-item:not(:first-child) {
  padding-top: 25px;
}
.cart-item__img {
  display: block;
  width: 100px;
  height: 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cart-item__img {
    width: 60px;
  }
}
.cart-item__img::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 150%;
}
.cart-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cart-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 991px) {
  .cart-item__content {
    gap: 10px;
  }
}
.cart-item__title {
  font-size: 18px;
}
@media (max-width: 991px) {
  .cart-item__title {
    font-size: 16px;
  }
}
.cart-item__vars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.cart-item__var {
  padding: 5px 10px;
  background: var(--gray-color);
  font-size: 14px;
  border-radius: 6px;
}
.cart-item__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.cart-item__old-price {
  text-decoration: line-through;
  color: #a6a6a6;
  font-size: 14px;
}
.cart-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.cart-item__qty-box {
  padding: 6px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--dgray-color);
  border-radius: 6px;
  margin-right: auto;
}
.cart-item__qty-btn {
  font-size: 18px;
  cursor: pointer;
}
.cart-item .cart-item__fav-btn {
  line-height: 0;
}
.cart-item .cart-item__fav-btn::before {
  content: "\e90b";
  font-family: "icomoon";
  line-height: 1;
}
.cart-item._faved .cart-item__fav-btn::before {
  content: "\e90d";
  color: var(--red-color);
}
.cart-item__fav-btn:hover {
  opacity: 0.8;
  text-decoration: none;
}
.cart-item__remove:hover {
  opacity: 0.8;
  text-decoration: none;
}
.cart-item__qty-box > .quantity {
  display: none;
}

.order-list__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 991px) {
  .order-list__items li {
    font-size: 14px;
  }
}
.order-list__items li:not(:last-child) {
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .order-list__items li:not(:last-child) {
    margin-bottom: 5px;
  }
}
.order-list__items li > span:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: var(--lgray-color);
}
.order-list__items li > span:first-child::after {
  content: "";
  position: relative;
  height: 1px;
  top: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  border-bottom: 1px dotted #e1e1e1;
}
.order-list__total {
  font-size: 20px;
}
@media (max-width: 991px) {
  .order-list__total {
    font-size: 16px;
  }
}
.order-list__total li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.order-list__total li:not(:last-child) {
  margin-bottom: 7px;
}

.coupon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.coupon-box__input {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
.coupon-box__btn {
  border-color: #000;
}

.checkout-main__auth-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .checkout-main__auth-box {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.checkout-main__auth-frame {
  padding: 14px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  background: var(--gray-color);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .checkout-main__auth-frame {
    padding: 10px 15px;
    width: 100%;
    border-radius: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.checkout-main__auth-frame a {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .checkout-main__reg-btn {
    width: 100%;
  }
}
.checkout-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
@media (max-width: 1399px) {
  .checkout-main__inner {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .checkout-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.checkout-main__left {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}
@media (max-width: 1199px) {
  .checkout-main__left {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}
.checkout-main__right {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .checkout-main__right {
    padding: 50px;
    width: 42%;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #ebebeb;
  }
}
@media (max-width: 1199px) {
  .checkout-main__right {
    width: 100%;
  }
}
.checkout-main__row:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dgray-color);
}
@media (max-width: 1199px) {
  .checkout-main__row:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.checkout-main__order-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 991px) {
  .checkout-main__order-list {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.checkout-main__submit {
  margin: 15px 0;
}

.checkout-step {
  padding: 30px 0;
  border-top: 1px solid var(--dgray-color);
  border-bottom: 1px solid var(--dgray-color);
}
@media (max-width: 991px) {
  .checkout-step {
    padding: 20px 0;
  }
}
.checkout-step:first-child {
  padding-top: 0;
  border-top: none;
}
.checkout-step:not(._validated) .checkout-step__submit {
  pointer-events: none;
  opacity: 0.1;
}
.checkout-step:not(._passed) .checkout-step__edit,
.checkout-step:not(._passed) .checkout-step__passed {
  display: none;
}
.checkout-step._hidden .checkout-step__title,
.checkout-step._hidden .checkout-step__info {
  opacity: 0.5;
}
.checkout-step__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .checkout-step__top {
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .checkout-step__title {
    width: 100%;
  }
}
.checkout-step__body {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .checkout-step__body {
    margin-top: 20px;
  }
}
.checkout-step__info {
  font-size: 14px;
}
.checkout-step__passed {
  font-size: 12px;
}
.checkout-step__edit {
  gap: 10px;
  font-size: 14px;
  margin-left: auto;
}
.checkout-step__edit .ic {
  font-size: 13px;
}
.checkout-step__submit {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .checkout-step__submit {
    margin-top: 20px;
  }
}

.woocommerce-shipping-methods,
.form-grid,
.wc_payment_methods {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 767px) {
  .woocommerce-shipping-methods,
  .form-grid,
  .wc_payment_methods {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.woocommerce-shipping-methods input,
.wc_payment_methods input {
  display: none;
}
.woocommerce-shipping-methods input:checked + label,
.woocommerce-shipping-methods input[type="hidden"] + label,
.wc_payment_methods input:checked + label {
  border-color: #000;
}
.woocommerce-shipping-methods label,
.wc_payment_methods label {
  padding: 20px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--dgray-color);
  border-radius: 6px;
  text-align: center;
  -webkit-transition: border 0.2s ease;
  -o-transition: border 0.2s ease;
  transition: border 0.2s ease;
}
.wc_payment_methods img {
  height: 25px;
  object-fit: contain;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .woocommerce-shipping-methods label,
  .wc_payment_methods label {
    padding: 10px !important;
    border-radius: 3px;
  }
}
.iba-shipping-table ~ button {
  text-decoration: underline;
}

#billing_comment_field {
  grid-column: -1/1;
}

.place-order {
  display: none !important;
}

.order-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 14px;
}
.order-item__img {
  width: 60px;
  background: no-repeat center/cover;
  border-radius: 6px;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 991px) {
  .order-item__img {
    border-radius: 3px;
  }
}
.order-item__img:hover {
  opacity: 0.8;
}
.order-item__img::before {
  content: "";
  display: block;
  padding-bottom: 150%;
}
.order-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.order-item__vars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.order-item__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.popup {
  display: none;
  min-width: 350px;
  max-width: 740px;
  padding: 30px;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  overflow: visible;
}
.popup-wrap {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .popup {
    padding: 20px;
    border-radius: 5px;
  }
  .popup-wrap {
    border-radius: 5px;
  }
}
.popup.content {
  max-width: 1000px;
  text-align: left;
}
.popup.content h4 {
  margin-bottom: 15px;
}
.popup.content p {
  margin-bottom: 15px;
  text-align: start;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.popup.content b {
  font-weight: 700;
  font-size: 16px;
}
.popup__title {
  color: #000;
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 991px) {
  .popup__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.popup .js-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.popup .js-form .form-policy a {
  color: red;
}
.popup input:not([type="checkbox"]) {
  width: 100%;
}
.popup__tx {
  max-width: 450px;
}
.popup__tx p {
  font-weight: 400;
  font-size: 16px;
}
.popup__video {
  padding: 0;
  width: 100%;
  max-width: 1200px;
  background: none;
}
.popup__video .plyr__video-wrapper {
  background: transparent;
  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;
}
.popup__video video {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
}

.popup-callback {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 991px) {
  .sect-p {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .sect-m {
    margin: 40px 0;
  }
}

@media (max-width: 991px) {
  .page-p {
    padding: 30px 0;
  }
}

@media (max-width: 991px) {
  .page-m {
    margin: 30px 0;
  }
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

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

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.wpcf7 form .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form .wpcf7-not-valid {
  border: 1px solid rgb(255, 83, 83) !important;
}

._processing,
._disabled {
  pointer-events: none;
  opacity: 0.6;
  filter: grayscale(1);
}

.cart-added-popup .popup__body {
  display: flex;
  gap: 10px;
}
.cart-added-popup .popup__body a {
  flex: 1 0 0;
}

.woocommerce .woocommerce-ordering,
.woocommerce div.product form.cart,
.woocommerce div.product form.cart .variations,
.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  line-height: normal;
}

.catalog-aside__inner > * {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}
.catalog-aside__inner > *:first-child {
  padding-top: 0;
}
.catalog-aside__inner > *:last-child {
  border: none;
}
.bapf_sfilter {
  margin: 0;
}
.bapf_head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.bapf_head::after {
  content: "\e900";
  font-family: "icomoon";
  line-height: 1;
  font-size: 7px;
  margin-left: auto;
}
.bapf_sfilter.bapf_ccolaps .bapf_head::after {
  transform: rotate(-180deg);
}
.bapf_sfilter:not(.bapf_sfa_valueonly) .bapf_body {
  margin-top: 15px;
}
.bapf_slidr_main,
.bapf_slidr_jqrui .bapf_slidr_all:after {
  display: none;
}
.bapf_slidr_all {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.bapf_slidr_jqrui .bapf_from,
.bapf_slidr_jqrui .bapf_to {
  width: 100%;
  position: relative;
}
.bapf_slidr_jqrui .bapf_from input,
.bapf_slidr_jqrui .bapf_to input {
  padding: 15px;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  color: transparent;
  caret-color: black;
}
.bapf_taprice {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
}
.bapf_ckbox .bapf_body li:not(:last-child) {
  margin-bottom: 2px !important;
}
.bapf_ckbox .bapf_body li label {
  padding: 12px 15px;
  display: flex !important;
  align-items: center;
  gap: 15px;
  color: #000;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.bapf_ckbox .bapf_body li label::before {
  content: "";
  font-family: "icomoon";
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 8px;
  border: 1px solid #ebebeb;
  border-radius: 3px;
}
.bapf_ckbox .bapf_body li.checked label {
  background: var(--gray-color);
}
.bapf_ckbox .bapf_body li.checked label::before {
  content: "\e907";
  background: #000;
  color: #fff;
}
.bapf_ckbox .bapf_body li label:hover {
  color: currentColor !important;
}
.bapf_ckbox .bapf_body li:not(.checked) label:hover {
  background: #fafafa;
}
.bapf_sfa_taxonomy,
.bapf_sfa_unall {
  display: none;
}
.berocket_aapf_widget_selected_area ul {
  padding: 0 !important;
}
.berocket_aapf_widget_selected_filter {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.berocket_aapf_widget_selected_filter li {
  list-style: none;
}
.berocket_aapf_widget_selected_filter a .fa {
  display: none;
}
.braapf_unselect {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  font-size: 14px;
  border-radius: 6px;
}
.braapf_unselect::after {
  content: "\e908";
  font-family: "icomoon";
  line-height: 1;
  font-size: 10px;
  color: #a3a3a3;
}
.braapf_unselect_all {
  color: var(--lgray-color);
  font-size: 14px;
  text-decoration: underline;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .braapf_unselect {
    padding: 5px;
    border-radius: 3px;
    font-size: 13px;
  }
}

.catalog-main__no-products-found {
  width: 100%;
  text-align: center;
}

.wpcf7-list-item {
  margin: 0;
}

#popup-size {
  max-width: 600px;
}

.woocommerce-form-coupon-toggle {
  display: none;
}
.wc_payment_method:not(.payment_method_stripe_cc) .payment_box {
  display: none !important;
}
.payment_method_stripe_cc .payment_box {
  margin-top: 10px;
}
.woocommerce-NoticeGroup {
  margin-bottom: 20px;
}

#order_comments_field {
  display: none;
}

.woocommerce-order {
  --wc-max-width: 980px;
  --wc-gap: 18px;
  --wc-radius: 10px;
  --wc-bg: #ffffff;
  --wc-muted: #6b7280;
  --wc-border: #e6e7e9;
  --wc-accent: #0f766e;
  --wc-success: #ecfdf5;
  --wc-success-border: #bbf7d0;

  box-sizing: border-box;
  max-width: var(--wc-max-width);
  margin: 0 auto;
  padding: 20px;
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.woocommerce-notice--success.woocommerce-thankyou-order-received {
  display: block;
  background: linear-gradient(180deg, var(--wc-success) 0%, #ffffff 100%);
  border: 1px solid var(--wc-success-border);
  color: #064e3b;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--wc-gap);
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  align-items: start;
}

.woocommerce-order-overview li {
  background: #fbfbfb;
  border: 1px solid var(--wc-border);
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

.woocommerce-order-overview li strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: #0b1220;
}

.woocommerce-order p,
.woocommerce-order > p {
  margin: 0 0 18px 0;
  color: var(--wc-muted);
  font-size: 15px;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: 18px;
  margin: 18px 0 12px 0;
  color: #0b1220;
  font-weight: 700;
}

.woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 15px;
}

.woocommerce-table thead th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 14px;
  color: #374151;
  border-bottom: 2px solid var(--wc-border);
}

.woocommerce-table tbody td,
.woocommerce-table tfoot td,
.woocommerce-table tfoot th {
  padding: 12px;
  vertical-align: middle;
  border-bottom: 1px solid #f3f4f6;
}

.woocommerce-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.woocommerce-table tbody tr:nth-child(even) {
  background: #fbfbfb;
}

.woocommerce-table__product-name a {
  color: var(--wc-accent);
  text-decoration: none;
}

.woocommerce-table__product-name .product-quantity {
  color: var(--wc-muted);
  font-weight: 600;
  margin-left: 8px;
}

.wc-item-meta {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--wc-muted);
  font-size: 13px;
}

.wc-item-meta li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wc-item-meta-label {
  min-width: 74px;
  font-weight: 600;
  color: #111827;
}

.woocommerce-table tfoot th {
  text-align: left;
  font-weight: 600;
  color: #111827;
}

.woocommerce-table tfoot td {
  text-align: right;
  font-weight: 700;
}

.woocommerce-customer-details address {
  background: #fbfbfb;
  border: 1px solid var(--wc-border);
  padding: 12px;
  border-radius: 8px;
  font-style: normal;
  color: #111827;
}

@media (max-width: 720px) {
  .woocommerce-order {
    padding: 14px;
    margin: 14px;
  }

  .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .woocommerce-table thead {
    display: none;
  }

  .woocommerce-table tbody td,
  .woocommerce-table tbody tr {
    display: block;
    width: 100%;
  }

  .woocommerce-table tbody tr {
    margin-bottom: 12px;
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
  }

  .woocommerce-table__product-name,
  .woocommerce-table__product-total {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .woocommerce-table tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
  }

  .woocommerce-table tfoot th,
  .woocommerce-table tfoot td {
    display: block;
    padding: 0;
  }

  .woocommerce-table tfoot td {
    text-align: right;
  }
}

.page-template-default:not(.woocommerce-page) .main .container {
  max-width: 1000px;
}

.sect-docs__inner {
  display: flex;
  gap: 50px;
}
.sect-docs__aside {
  width: 100%;
  max-width: 390px;
  background: #fff;
}
.sect-docs__menu {
  position: sticky;
  top: 100px;
}
.sect-docs__menu a {
  padding: 15px 20px;
  display: block;
  border-radius: 6px;
  transition: background 0.2s ease;
  text-decoration: none;
}
.sect-docs__menu a._active {
  background: var(--gray-color);
}
@media (hover: hover) {
  .sect-docs__menu a:hover {
    background: #fafafa;
  }
}
@media (max-width: 991px) {
  .sect-docs__menu a {
    white-space: nowrap;
  }
}
.sect-docs__content {
  flex: 1 0 0;
}
.sect-docs__page:not(:last-child) {
  margin-bottom: 100px;
}
.sect-docs__page-title {
  font-size: 28px;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .sect-docs__aside {
    max-width: 300px;
  }
  .sect-docs__inner {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .sect-docs__inner {
    flex-direction: column;
  }
  .sect-docs__aside {
    padding: 5px 0;
    max-width: 100%;
    position: sticky;
    top: 60px;
  }
  .sect-docs__menu {
    padding-bottom: 5px;
    position: static;
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }
  .sect-docs__menu a {
    padding: 0;
  }
  .sect-docs__menu a._active {
    background: none;
    text-decoration: underline;
  }
  .sect-docs__content {
    flex: none;
  }
  .sect-docs__page:not(:last-child) {
    margin-bottom: 60px;
  }
  .sect-docs__page-title {
    margin-bottom: 15px;
  }
}

.account-inner {
  display: flex;
  gap: 50px;
}
.account-aside {
  width: 100%;
  max-width: 400px;
}
.account-content {
  flex: 1 0 0;
}
.woocommerce-MyAccount-navigation a {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 6px;
  white-space: nowrap;
}
.woocommerce-MyAccount-navigation a:hover {
  background: #f8f8f8;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation li.is-active a {
  background: var(--gray-color);
}
.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link--customer-logout
  a::before {
  content: "\e912";
  font-family: "icomoon";
  line-height: 1;
}

.account-personal-data {
  width: 100%;
  max-width: 900px;
}
.account-personal-data .form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.account-personal-data .form-row._full {
  grid-column: 1/-1;
}
.account-personal-data input[readonly] {
  background: var(--gray-color);
  pointer-events: none;
}
.account-personal-data .form-actions {
  margin-top: 30px;
}

.woocommerce-notices-wrapper:not(:has(*)) {
  display: none;
}
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  outline: none;
}
.woocommerce-message {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.woocommerce-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}
.woocommerce-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}
@media (max-width: 991px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    padding: 10px 12px;
    font-size: 13px;
  }
}

.account-orders {
  width: 100%;
  max-width: 960px;
}
.account-order {
  width: 100%;
  border: 1px solid var(--dgray-color);
  border-radius: 10px;
}
.account-order:not(:last-child) {
  margin-bottom: 10px;
}
.account-order.is-open .account-order__top .ic {
  transform: rotate(-180deg);
}
.account-order__top {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 5.5%;
  cursor: pointer;
}
.account-order__top .ic {
  font-size: 7px;
  transition: transform 0.4s ease;
}
.account-order__title {
  margin-right: auto;
}
.account-order__status {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #000;
}
.account-order.pending .account-order__status {
  color: #999999;
  border-color: #999999;
}
.account-order.processing .account-order__status {
  color: #37569e;
  border-color: #37569e;
}
.account-order.completed .account-order__status {
  color: #44af68;
  border-color: #44af68;
}
.account-order.on-hold .account-order__status {
  color: #dad614;
  border-color: #dad614;
}
.account-order.cancelled .account-order__status,
.account-order.failed .account-order__status {
  color: var(--red-color);
  border-color: var(--red-color);
}
.account-order__body-wrap {
  display: none;
}
.account-order__body {
  padding: 0 30px 30px 30px;
  display: flex;
  gap: 5%;
}
.account-order__items {
  flex: 1 0 0;
}
.account-order__item:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--dgray-color);
  margin-bottom: 25px;
}
.account-order__item {
  display: flex;
  gap: 30px;
}
.account-order__item-img {
  width: 80px;
  background: no-repeat center/cover;
  border-radius: 6px;
}
.account-order__item-img::before {
  content: "";
  display: block;
  padding-bottom: 148%;
}
.account-order__item-title {
  display: block;
  margin-bottom: 5px;
}
.account-order__item-vars {
  display: flex;
  gap: 10px;
}
.account-order__item-vars div {
  padding: 5px 10px;
  background: var(--gray-color);
  border-radius: 6px;
}
.account-order__item-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.account-order__total-wrap {
  width: 100%;
  max-width: 350px;
  height: 100%;
}
.account-order__total {
  padding: 20px;
  background: var(--gray-color);
  border-radius: 6px;
}
.account-order__total li {
  display: flex;
  align-items: center;
}
.account-order__total li:not(:last-child) {
  margin-bottom: 10px;
}
.account-order__total li > span:first-child {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  color: var(--lgray-color);
}
.account-order__total li > span:first-child::after {
  content: "";
  position: relative;
  top: 6px;
  flex: 1 0 0;
  display: block;
  border-bottom: 1px dashed #e1e1e1;
  margin: 0 10px;
}
.account-order__actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.account-order__actions > * {
  flex: 1 0 0;
}
@media (max-width: 1399px) {
  .account-inner {
    gap: 20px;
  }
  .account-aside {
    max-width: 250px;
  }
  .account-order__body {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .account-inner {
    flex-direction: column;
  }
  .account-aside {
    max-width: 100%;
  }
  .woocommerce-MyAccount-navigation ul {
    display: flex;
    overflow-x: auto;
  }
  .woocommerce-MyAccount-navigation a {
    padding: 10px 15px;
    gap: 10px;
    font-size: 14px;
  }
  .account-content {
    flex: none;
  }
  .account-order {
    font-size: 14px;
    border-radius: 5px;
  }
  .account-order__top {
    padding: 15px;
    flex-wrap: wrap;
    gap: 10px;
    cursor: default;
  }
  .account-order__title {
    width: 90%;
    order: -2;
    margin-right: 0;
  }
  .account-order__status {
    margin-right: auto;
  }
  .account-order__top .ic {
    order: -1;
    margin-left: auto;
  }
  .account-order__body {
    padding: 0 15px 15px 15px;
    flex-direction: column;
  }
  .account-order__items {
    flex: none;
  }
  .account-order__total-wrap {
    max-width: 100%;
  }
  .account-order__item {
    gap: 20px;
  }
  .account-order__item:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .account-order__total {
    padding: 15px;
  }
}

.woocommerce-order-pay .shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.woocommerce-order-pay .shop_table thead th {
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: #444;
  padding: 14px 16px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.woocommerce-order-pay .shop_table tbody tr {
  border-bottom: 1px solid #f1f1f1;
}
.woocommerce-order-pay .shop_table td,
.woocommerce-order-pay .shop_table th {
  padding: 12px 16px;
  vertical-align: middle;
  font-size: 14px;
}
.woocommerce-order-pay .shop_table .product-name {
  font-weight: 600;
}
.woocommerce-order-pay .shop_table .wc-item-meta {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #666;
}
.woocommerce-order-pay .shop_table .wc-item-meta li {
  display: inline-block;
  margin-right: 10px;
}
.woocommerce-order-pay .shop_table .wc-item-meta .wc-item-meta-label {
  font-weight: 700;
  margin-right: 6px;
  color: #333;
}
.woocommerce-order-pay .shop_table .wc-item-meta p {
  display: inline;
  margin: 0;
  font-weight: 500;
}
.woocommerce-order-pay .shop_table .product-quantity {
  text-align: center;
  color: #333;
  font-weight: 600;
}
.woocommerce-order-pay .shop_table .product-subtotal,
.woocommerce-order-pay .shop_table .product-total {
  text-align: right;
  font-weight: 700;
}
.woocommerce-order-pay .shop_table .woocommerce-Price-amount {
  white-space: nowrap;
}
.woocommerce-order-pay .shop_table .woocommerce-Price-currencySymbol {
  margin-left: 4px;
  font-weight: 700;
}
.woocommerce-order-pay .shop_table tfoot th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 700;
  background: #fff;
}
.woocommerce-order-pay .shop_table tfoot td {
  text-align: right;
  padding: 12px 16px;
  font-weight: 700;
}
.woocommerce-order-pay .shop_table .shipped_via {
  display: inline-block;
  font-weight: 500;
  color: #777;
  margin-left: 8px;
  font-size: 13px;
}
.woocommerce-order-pay .shop_table tbody tr:nth-child(odd) {
  background: #fff;
}
.woocommerce-order-pay .shop_table tbody tr:nth-child(even) {
  background: #fbfbfb;
}
.woocommerce-terms-and-conditions-wrapper {
  display: none;
}
.woocommerce-order-pay button[type="submit"] {
  margin-top: 15px;
}
@media (max-width: 991px) {
  .woocommerce-order-pay .shop_table {
    border-radius: 6px;
    font-size: 14px;
  }
  .woocommerce-order-pay .shop_table thead {
    display: none;
  }
  .woocommerce-order-pay .shop_table tbody,
  .woocommerce-order-pay .shop_table tfoot {
    display: block;
  }
  .woocommerce-order-pay .shop_table tbody tr,
  .woocommerce-order-pay .shop_table tfoot tr {
    display: block;
    margin: 10px 0;
    padding: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
  }
  .woocommerce-order-pay .shop_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: none;
  }
  .woocommerce-order-pay .shop_table .product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.2;
  }
  .woocommerce-order-pay .shop_table .wc-item-meta {
    display: block;
    margin-top: 0;
    font-size: 13px;
    color: #666;
  }
  .woocommerce-order-pay .shop_table tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .woocommerce-order-pay .shop_table tfoot th {
    font-weight: 700;
    padding: 0;
  }
  .woocommerce-order-pay .shop_table tfoot td {
    padding: 0;
    font-weight: 800;
  }
}

.auth-form ._links {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  font-size: 14px;
}

form.lost_reset_password,
.loginform-wrap {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}

.woocommerce-password-strength {
  margin-top: 10px;
}
.woocommerce-password-strength.short {
  color: red;
}
.woocommerce-password-strength.bad {
  color: rgb(255, 94, 0);
}
.woocommerce-password-strength.good {
  color: rgb(255, 174, 0);
}
.woocommerce-password-strength.strong {
  color: rgb(23 225 23);
}

.woocommerce-form-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partners-main__video-box {
  height: 400px;
  margin-bottom: 50px;
}
.partners-main__video-box video {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 10px;
}
.partners-main__wrap {
  display: flex;
  gap: 50px;
}
.partners-main__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.partners-main__form-box {
  padding: 30px;
  width: 36.5%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 10px;
}
.partners-main__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
}
.partners-main__step {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  position: relative;
}
.partners-main__step:not(._last)::after {
  content: "\e902";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  font-family: "icomoon";
  font-size: 33px;
  line-height: 1;
  color: var(--dgray-color);
}
.partners-main__step-digit {
  background: linear-gradient(180deg, #37569e 0%, #161a68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}
.partners-main__step-title {
  font-size: 20px;
  font-weight: 500;
}
.partners-main__step-desc {
  line-height: 1.45;
}
.partners-main__form-title {
  font-size: 28px;
  margin-bottom: 30px;
}
.partners-main__form-box .form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
}
.partners-main__form-box .form-row._full {
  grid-column: 1/-1;
}
@media (max-width: 1399px) {
  .partners-main__video-box {
    margin-bottom: 20px;
  }
  .partners-main__wrap {
    gap: 30px;
  }
  .partners-main__content {
    flex: none;
    gap: 30px;
  }
  .partners-main__form-box .form__fields {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .partners-main__video-box {
    height: auto;
    aspect-ratio: 21/9;
  }
  .partners-main__video-box video {
    border-radius: 5px;
  }
  .partners-main__wrap {
    flex-direction: column;
  }
  .partners-main__steps {
    gap: 15px;
  }
  .partners-main__step:not(._last)::after {
    display: none;
  }
  .partners-main__step {
    padding: 15px;
    gap: 10px;
  }
  .partners-main__step-digit {
    font-size: 42px;
  }
  .partners-main__step-title {
    font-size: 18px;
  }
  .partners-main__form-box {
    padding: 15px;
    width: 100%;
    border-radius: 5px;
  }
  .partners-main__form-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.contacts-main__inner {
  display: flex;
  gap: 5%;
}
.contacts-main__part {
  width: 100%;
  max-width: 700px;
}
.contacts-main__part-title {
  font-size: 32px;
  margin-bottom: 30px;
}
.contacts-main__shop-selector + .SelectBox {
  padding: 15px 20px;
  background: var(--gray-color);
  border-radius: 6px;
}
.SumoSelect .contacts-main__shop-selector ~ .optWrapper {
  top: 50px;
  left: 0;
  right: auto;
}
.contacts-main__shop-wrap {
  margin-top: 30px;
}
.contacts-main__shop-body {
  font-size: 18px;
}
.contacts-main__shop-body li {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contacts-main__shop-body li:not(:last-child) {
  margin-bottom: 20px;
}
.contacts-main__shop-body li span:first-child {
  color: var(--lgray-color);
}

@media (min-width: 992px) {
  [data-wpcf7-id="959"] .form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
  }
  [data-wpcf7-id="959"] ._full {
    grid-column: 1/-1;
  }
}
@media (max-width: 991px) {
  .contacts-main__inner {
    flex-direction: column;
    gap: 30px;
  }
  .contacts-main__part {
    max-width: 100%;
  }
  .contacts-main__part-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .contacts-main__shop-body {
    font-size: 14px;
  }
  .contacts-main__shop-body li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.ambassador-popup {
  max-width: 1025px;
}
.ambassador-popup .popup__body {
  display: flex;
  gap: 30px;
}
.ambassador-popup__img {
  width: 36%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}
.ambassador-popup__content {
  flex: 1 0 0;
}
.ambassador-popup .popup__title {
  text-align: start;
}
.promocode-box {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--dgray-color);
  margin: 30px 0;
  transition: border 0.2s ease;
}
.promocode-box._copied {
  border-color: #14a037;
}
.promocode-box span {
  text-transform: uppercase;
  word-break: break-word;
}
.promocode-box button {
  padding: 5px;
  background: none;
  border: none;
  outline: none;
  line-height: 0;
  position: relative;
}
.promocode-box button .ic {
  font-size: 17px;
}
@media (max-width: 767px) {
  .ambassador-popup .popup__body {
    flex-direction: column;
    gap: 15px;
  }
  .ambassador-popup__img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .ambassador-popup__content {
    flex: none;
  }
  .promocode-box {
    padding: 10px;
    margin: 15px 0;
  }
}

.checkout-inline-error-message {
  color: var(--red-color);
  font-size: 13px;
}

.lmp_products_loading {
  display: none !important;
}

.fancybox-button[data-fancybox-close] {
  padding: 0;
  width: auto;
  height: auto;
  top: -30px;
  line-height: 0;
}
.fancybox-button[data-fancybox-close]::before {
  content: "\e908";
  font-family: "icomoon";
  line-height: 1;
  color: #fff;
  font-size: 20px;
}
.fancybox-button[data-fancybox-close] svg {
  display: none;
}
@media (min-width: 992px) {
  .fancybox-button[data-fancybox-close] {
    right: -30px;
  }
}

.promo-popup {
  padding: 0;
  max-width: 700px;
}
.promo-popup__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}
.promo-popup__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.promo-popup__title {
  font-size: 32px;
}
@media (max-width: 991px) {
  .promo-popup__img {
    height: 360px;
  }
  .promo-popup__content {
    padding: 20px;
    gap: 20px;
    font-size: 15px;
  }
  .promo-popup__title {
    font-size: 24px;
  }
}

.cookie-box {
  padding: 15px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 100%;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  z-index: 99;
}
@media (max-width: 575px) {
  .cookie-box {
    left: 0;
    bottom: 0;
    max-width: 100%;
  }
}