@charset "UTF-8";
/*FONTS*/
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-SemiBold.eot");
  src: url("./../fonts/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("./../fonts/Inter-SemiBold.woff") format("woff"), url("./../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Regular.eot");
  src: url("./../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("./../fonts/Inter-Regular.woff") format("woff"), url("./../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* variables */
:root {
  --success: #39A65E;
  --warning: #e1c300;
  --danger: #E61801;
  --base-color-1: #FFFFFF;
  --base-color-2: #F6F6F6;
  --base-color-3: #EBECF2;
  --base-color-4: #CECFD9;
  --base-color-5: #AAAAB2;
  --base-color-6: #85858A;
  --base-color-7: #626366;
  --base-color-8: #333333;
  --base-color-9: #1E1E1E;
  --main-color-1: #FF6E00;
  --main-color-2: #FF9C51;
  --main-color-3: #D95E00;
  --main-color-4: #E5D0BD;
  --main-color-5: #F7C398;
  --main-color-6: #FFD8BB;
  --main-color-7: #FFEFE2;
  --text-color: var(--base-color-9);
  --text-light: var(--base-color-5);
  --text-contrast: var(--base-color-2);
  --border-radius: 0px;
}

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

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

menu,
ul,
ol {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

img {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/*DROPDOWN*/
.dropdown {
  position: relative;
  height: 46px;
  z-index: 1;
  transition: width 0.3s;
}

.dropdown_short {
  width: 68px;
  height: 30px;
  margin: 0 20px;
  color: #1d1d1d;
}

.dropdown_short:hover .drop_arrow {
  background-color: #5ead5a;
}

.dropdown.dropdown-open {
  z-index: 1;
}

.dropdown.dropdown_short.dropdown-open {
  width: 68px;
}

.dropdown .overflow {
  width: 100%;
  height: 100%;
  padding: 0 40px 0 0;
  position: relative;
  float: left;
  background-color: var(--base-color-1);
  border: 1px solid var(--base-color-4);
  border-radius: var(--border-radius);
  z-index: 3;
}

.dropdown.dropdown-open .overflow {
  border-color: var(--main-color-1);
  z-index: 1;
}

.dropdown.short .overflow {
  width: 138px;
}

.dropdown.dropdown-open .overflow {
  z-index: 10;
}

.dropdown Span {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  height: 100%;
  padding: 0 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}

.dropdown_short Span {
  padding: 0 10px;
}

.dropdown UL {
  position: absolute;
  top: 40px;
  padding-top: 12px;
  width: 100%;
  max-height: 400px;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-bottom-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
  margin: 0;
  border-top: none;
  overflow-y: auto;
  display: none;
}

.dropdown_short ul {
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  top: 28px;
  overflow: auto;
}

.dropdown UL LI {
  position: relative;
  float: left;
  background: none;
  width: 100%;
  font-size: 15px;
  line-height: 1.2;
}

.dropdown_short UL LI {
  border: none;
}

.dropdown UL LI A {
  font-size: 14px;
  width: 100%;
  text-decoration: none;
  color: var(--text-color);
  position: relative;
  float: left;
  padding: 8px 15px;
  transition: 0.3s;
}

.dropdown_short ul li a {
  color: #1d1d1d;
  text-align: center;
  padding: 6px 0;
}

.dropdown UL LI A:hover {
  background-color: var(--main-color-7);
  color: var(--text-color);
}

.dropdown_short ul li a:hover {
  background-color: #e6e6e6;
  color: initial;
}

.dropdown UL LI A.selected {
  display: none;
}

.drop_arrow {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  transition: background-color 0.3s;
  cursor: pointer;
}

.drop_arrow::after,
.drop_arrow::before {
  content: "";
  width: 1px;
  height: 8px;
  background-color: var(--base-color-4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: bottom;
  transition: 0.3s;
}

.drop_arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drop_arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dropdown-open .drop_arrow::after,
.dropdown-open .drop_arrow::before {
  transform-origin: top;
}

.dropdown-open .drop_arrow::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dropdown-open .drop_arrow::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dropdown_short .drop_arrow {
  right: -1px;
  top: -1px;
  background-color: #70c46a;
  border-radius: 0 3px 3px 0;
  width: 31px;
  height: 30px;
}

.dropdown_short .drop_arrow:after {
  border-width: 6px 3.5px 0 3.5px;
  border-color: #fff transparent transparent transparent;
  margin-left: -3.5px;
}

.dropdown_alt {
  width: 100%;
  height: 50px;
  color: #504f4f;
}

.dropdown_alt span {
  font-size: 16px;
}

.dropdown_alt .drop_arrow {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  background-color: #73c86d;
  width: 50px;
  height: 50px;
  right: -1px;
  top: -1px;
}

.dropdown_alt .drop_arrow:hover {
  background-color: var(--main-active-color);
}

.dropdown_alt .drop_arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  margin: -5.5px 0 0 -8px;
}

.dropdown_alt ul {
  border: none;
  top: calc(100% + 1px);
}

.dropdown_alt UL LI {
  font-size: 16px;
  border: none;
}

.dropdown_alt UL LI A {
  background-color: #f7f7f7;
  border-right: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  color: #504f4f;
  padding: 14px 20px;
}

.dropdown_alt UL LI + LI A {
  border-top: 1px solid #d7d7d7;
}

.dropdown_alt UL LI:last-child A {
  border-bottom: 1px solid #d7d7d7;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.dropdown_alt UL LI A:hover {
  border-color: #73c86d;
}

.dropdown_alt UL LI:hover + LI A {
  border-top-color: #73c86d;
}

.dropdown_alt.dropdown-open {
  width: initial;
}

.dropdown_alt.dropdown-open .drop_arrow {
  border-bottom-right-radius: 0;
}

.dropdown_sm {
  background-color: #fff;
  height: 45px;
}

.dropdown_sm .drop_arrow {
  width: 45px;
  height: 45px;
}

.dropdown_sm .drop_arrow:after {
  border-width: 8px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  margin: -4px 0 0 -6px;
}

.options_dropdown_list UL LI {
  position: relative;
  padding: 0 0 0 10px;
}

.options_dropdown_list UL LI:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 11px;
}

.options_dropdown_list UL LI A {
  text-decoration: none;
  color: #117f8a;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.options_dropdown_list UL LI A:hover {
  color: #000;
}

.options_dropdown_tile UL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 0 0;
}

.options_dropdown_tile UL LI {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: 0 3px 3px 0;
}

.options_dropdown_tile UL LI A {
  text-decoration: none;
  background-color: #f3f3f3;
  color: #000;
  padding: 5px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.options_dropdown_tile UL LI A:hover {
  background-color: #117f8a;
  color: #fff;
}

.options_dropdown_tile UL LI.disabled {
  opacity: 0.5;
}

.options_dropdown_tile UL LI.disabled a {
  cursor: default;
}

.options_dropdown_tile UL LI.disabled a:hover {
  background-color: #f3f3f3;
  color: #000;
}

/**
 * Swiper 9.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 13, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #FF6E00 ;
}

.swiper, swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
  width: 100%;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide, swiper-slide {
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet, :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, #f7f7f7);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, #ff6e00);
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
  cursor: grab;
}

.swiper-scrollbar-drag:active {
  cursor: grabbing;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification, swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* SUFIX STYLE */
.slider_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(225, 110, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}

.slider_arrow::before,
.slider_arrow::after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #FF6E00;
  position: absolute;
  top: 50%;
  left: 50%;
}

.slider_arrow.arrow-next::before {
  transform-origin: right;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.slider_arrow.arrow-next::after {
  transform-origin: right;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider_arrow.arrow-prev::before {
  transform-origin: left;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.slider_arrow.arrow-prev::after {
  transform-origin: left;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider_arrow.arrow-next {
  right: 0;
}

.slider_arrow.arrow-prev {
  left: 0;
}

.slider_arrow:hover {
  background-color: #FF6E00;
}

.slider_arrow:hover::before,
.slider_arrow:hover::after {
  background-color: #fff;
}

.slider_arrow.swiper-button-disabled {
  background-color: rgba(229, 208, 189, 0.1);
  cursor: unset;
  display: none !important;
}

.slider_arrow.swiper-button-disabled::before,
.slider_arrow.swiper-button-disabled::after {
  background-color: #E6D0BD;
}

.custom-scrollbar {
  position: relative;
  margin-top: 20px;
  height: 3px;
  background-color: #F7F7F7;
  border-radius: 3px;
}

.swiper-pagination.slider_pag {
  position: relative;
  margin: 5px 0 0 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.swiper-pagination.slider_pag .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  position: relative;
  margin: 5px;
  background-color: #626366;
  opacity: 1;
}

.swiper-pagination.slider_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF6E00;
}

.swiper-pagination.slider_pag .swiper-pagination-bullet::before {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  transform: translate(-50%, -50%);
}

/*BASE*/
BODY, HTML {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  min-width: 360px;
  height: 100%;
  color: var(--text-color);
}

body {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--base-color-1);
}

body.overflow {
  overflow-x: hidden;
  overflow-y: hidden;
}

main {
  flex: 1 0 auto;
}

h1,
.headline_1 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 20px 0;
}

.headline_2 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 18px 0;
}

h2,
.sub_title_1 {
  font-size: 20px;
  line-height: 1.4;
  display: inline-block;
  margin: 0 0 18px 0;
}

.sub_title_2 {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 16px 0;
}

h3,
.sub_title_3 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  display: inline-block;
  margin: 0 0 16px 0;
}

h4,
.sub_title_4 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 12px 0;
}

h5,
.sub_title_5 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 10px 0;
}

h6,
.sub_title_6 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 10px 0;
}

h6.check_title {
  padding-left: 23px;
  position: relative;
}

h6.check_title::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: var(--main-color-1);
  border-radius: var(--border-radius);
}

h6.check_title::after {
  content: "";
  width: 7px;
  height: 5px;
  border-bottom: 2px solid var(--base-color-1);
  border-left: 2px solid var(--base-color-1);
  position: absolute;
  top: 6px;
  left: 3px;
  transform: rotate(-45deg);
}

.btn {
  color: var(--base-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  padding: 15px 22px;
  background-color: var(--main-color-1);
  border-radius: var(--border-radius);
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--main-color-1);
  box-shadow: 0px 8px 25px 0px rgba(132, 57, 0, 0);
}

.btn .icon {
  flex: 0 0 18px;
  fill: var(--base-color-1);
  width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
  transition: 0.3s;
}

.btn span {
  text-align: center;
  flex: 1 1 auto;
}

.btn:hover {
  background-color: var(--main-color-2);
  border-color: var(--main-color-2);
}

.btn:active {
  background-color: var(--main-color-3);
  border-color: var(--main-color-3);
}

.btn.loading span,
.btn.loading .icon {
  opacity: 0;
}

.btn.loading::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 4px solid white;
  border-left: 4px solid rgba(255, 255, 255, 0.2);
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  border-right: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: loader-btn 1s linear infinite;
}

.btn.loading:hover {
  background-color: var(--main-color-1);
  border-color: var(--main-color-1);
}

.btn[disabled],
.btn.disabled {
  pointer-events: none;
  background-color: var(--main-color-4);
  border-color: var(--main-color-4);
}

.btn.outline {
  background-color: transparent;
  color: var(--main-color-1);
}

.btn.outline .icon {
  fill: var(--main-color-1);
}

.btn.outline:hover {
  color: var(--base-color-1);
  background-color: var(--main-color-1);
  border-color: var(--main-color-1);
}

.btn.outline:hover .icon {
  fill: var(--base-color-1);
}

.btn.outline:active {
  color: var(--base-color-1);
  background-color: var(--main-color-3);
  border-color: var(--main-color-3);
}

.btn.outline:active .icon {
  fill: var(--base-color-1);
}

.btn.outline.loading {
  border-color: var(--main-color-3);
}

.btn.outline.loading::before {
  border-top: 4px solid #d95e00;
  border-left: 4px solid rgba(217, 94, 0, 0.2);
  border-bottom: 4px solid rgba(217, 94, 0, 0.2);
  border-right: 4px solid rgba(217, 94, 0, 0.2);
}

.btn.outline.loading:hover {
  background-color: transparent;
  border-color: var(--main-color-3);
}

.btn.outline[disabled],
.btn.outline.disabled {
  background-color: transparent;
  border-color: var(--main-color-4);
  color: var(--main-color-4);
}

.btn.outline[disabled] .icon,
.btn.outline.disabled .icon {
  fill: var(--main-color-4);
}

.btn.medium {
  font-weight: 600;
  font-size: 12px;
  padding: 15px 22px;
}

.btn.medium .icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}

.btn.medium.loading::before {
  width: 24px;
  height: 24px;
}

.btn.small {
  font-weight: 700;
  font-size: 10px;
  padding: 9px 14px;
}

.btn.small .icon {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-right: 7px;
}

.btn.small.loading::before {
  width: 18px;
  height: 18px;
  border-width: 3px;
}

.btn.big {
  font-weight: 700;
  font-size: 12px;
  padding: 15px 20px;
}

.btn.big.loading::before {
  width: 30px;
  height: 30px;
}

@keyframes loader-btn {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.btn_text {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  color: var(--main-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.btn_text:hover {
  background-color: var(--main-color-7);
}

.btn_text span {
  transition: 0.3s;
}

.btn_text .icon {
  fill: var(--main-color-1);
  transition: 0.3s;
  width: 20px;
  height: 20px;
}

.btn_text > span + .icon {
  margin-left: 8px;
}

.btn_text > .icon + span {
  margin-left: 8px;
}

.btn_text.disabled {
  pointer-events: none;
  color: var(--main-color-4);
}

.btn_text.disabled .icon {
  fill: var(--main-color-4);
}

.close_btn {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.close_btn:hover {
  background-color: var(--base-color-3);
}

.close_btn .icon {
  width: 18px;
  height: 18px;
  fill: var(--base-color-4);
  transition: 0.3s;
}

.close_btn:hover .icon {
  fill: var(--main-color-1);
}

.checkbox_styled {
  position: relative;
}

.checkbox_styled input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

.checkbox_styled input + span {
  padding-left: 25px;
  font-size: 13px;
  line-height: 1.3;
  position: relative;
  cursor: pointer;
}

.checkbox_styled input + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--base-color-4);
  transition: 0.3s;
}

.checkbox_styled input + span:hover::before {
  border: 1px solid var(--main-color-3);
}

.checkbox_styled input:focus + span::before {
  border: 2px solid var(--main-color-3);
}

.checkbox_styled input:checked + span::before {
  border: 1px solid var(--main-color-3);
  background-color: var(--main-color-3);
}

.checkbox_styled input[type=checkbox] + span::after {
  content: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.53981 8.90501C4.24754 8.90501 3.95529 8.7902 3.78829 8.56059L1.45024 5.80518C1.11622 5.42249 1.19974 4.88672 1.61725 4.58056C2.03475 4.2744 2.61926 4.35095 2.95328 4.73364L4.53981 6.60885L8.04691 2.43748C8.38092 2.05479 8.96544 1.97824 9.38294 2.2844C9.80044 2.59056 9.88396 3.12633 9.54995 3.50902L5.29133 8.56059C5.08257 8.75193 4.83208 8.90501 4.53981 8.90501Z' fill='white'/%3E%3C/svg%3E");
  width: 11px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 2px;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.checkbox_styled input[type=radio] + span::before {
  border-radius: 50%;
  border-width: 1px;
  background-color: transparent;
}

.checkbox_styled input[type=radio] + span::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--base-color-4);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
  transition: 0.3s;
}

.checkbox_styled input[type=radio]:focus + span::after {
  opacity: 1;
}

.checkbox_styled input[type=radio]:checked + span::after {
  opacity: 1;
  background-color: var(--main-color-3);
  border-color: var(--main-color-3);
}

.checkbox_styled input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.checkbox_styled input[disabled] + span {
  pointer-events: none;
  opacity: 0.5;
}

.input_wrap {
  display: flex;
  flex-direction: column;
}

.label_text {
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 6px;
  transition: 0.3s;
}

input,
textarea {
  min-width: 1px;
  font-size: 14px;
  color: var(--text-color);
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--base-color-4);
  border-radius: var(--border-radius);
  transition: border-color 0.3s, background-color 0.3s;
}

input.small {
  height: 46px;
  padding: 0 15px;
}

textarea {
  padding-top: 10px;
  height: 120px;
  resize: none;
}

input[type=text].error, input[type=password].error, input[type=tel].error, input[type=number].error, input[type=email].error, textarea.error {
  background-size: 22px;
  padding-right: 35px;
  border-color: var(--danger);
  background-image: url("../images/danger.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 11px) 11px;
}

input[type=text].small.error, input[type=password].small.error, input[type=tel].small.error, input[type=number].small.error, input[type=email].small.error {
  padding-right: 35px;
  background-size: 22px;
  background-position: calc(100% - 11px) 11px;
}

input[type=text]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=email]:focus, textarea:focus {
  border-color: var(--main-color-1);
  outline: 0;
  outline-offset: 0;
}

input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.input_message {
  color: var(--base-color-6);
  font-size: 11px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.input_message.success {
  color: var(--success);
}

.input_message.error {
  color: var(--danger);
}

.input_message .icon {
  margin-right: 6px;
}

a.site_link,
a:not([class]) {
  font-size: inherit;
  text-decoration: none;
  color: var(--main-color-1);
  transition: 0.3s;
}

a.site_link:hover,
a:not([class]):hover {
  color: var(--main-color-2);
}

a.site_link.disabled {
  color: var(--main-color-4);
  pointer-events: none;
}

a.site_link.black {
  color: var(--base-color-9);
}

a.site_link.black:hover {
  color: var(--main-color-1);
}

a.site_link.black.disabled {
  pointer-events: none;
  color: var(--base-color-3);
}

a.site_link.gray {
  color: var(--base-color-4);
}

a.site_link.gray:hover {
  color: var(--main-color-1);
}

a.site_link.gray.disabled {
  pointer-events: none;
  color: var(--base-color-4);
}

article > * {
  margin-bottom: 20px;
}

article h1,
article h2 {
  max-width: 820px;
}

article * + h1 {
  margin-top: 50px;
}

article * + h2 {
  margin-top: 40px;
}

article * + h3 {
  margin-top: 30px;
}

article * + h4 {
  margin-top: 20px;
}

article * + h5 {
  margin-top: 10px;
}

article li {
  position: relative;
  padding-left: 10px;
}

article ul,
article ol {
  margin-bottom: 40px;
}

article ul {
  list-style: none !important;
  list-style-type: none !important;
}

article ol {
  list-style: decimal;
  padding-left: 20px;
}

article ol li {
  padding: 0;
}

article ol li::before {
  display: none;
}

article ol li::marker {
  color: var(--main-color-1)
}

article iframe {
  max-width: 100%;
  height: auto;
  min-height: 250px;
}

article li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

article img {
  max-width: 100%;
  height: auto !important;
}

article blockquote {
  padding-left: 18px;
  position: relative;
}

article blockquote::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--main-color-1);
  position: absolute;
  border-radius: 0 3px 3px 0;
  top: 0;
  left: 0;
}

article h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

article h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

article h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

article h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

article h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
}

article h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

a:not([class]):active {
  color: inherit;
  /* НЕ УДАЛЯТИ */
}

.centre {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  max-width: 1190px;
}

.icon {
  display: block;
  width: 16px;
  height: 16px;
}

.shadow {
  font-size: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1E1E1E;
  opacity: 0.85;
  z-index: 10;
  transition: 0.3s;
  visibility: visible;
}

.shadow.hidden {
  display: block !important;
  opacity: 0;
  visibility: hidden;
}

.hidden {
  display: none !important;
}

.info_list {
  display: flex;
}

.info_list > .icon {
  flex: 0 0 14px;
  display: block;
  margin: 4px 6px 0 0;
  width: 14px;
  height: 14px;
  fill: var(--main-color-1);
}

.info_list ul a {
  font-size: 16px;
  text-decoration: none;
}

.info_list ul a {
  color: var(--base-color-1);
  transition: 0.3s;
}

.info_list ul a:hover {
  color: var(--main-color-1);
}

.to_up {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  padding: 0 10px 10px 10px;
  transform: rotate(-90deg);
  position: fixed;
  left: -32px;
  bottom: 68px;
  color: var(--main-color-1);
  z-index: 2;
  transition: 0.3s;
}

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

.to_up .icon {
  margin-left: 6px;
  width: 14px;
  height: 14px;
  fill: var(--main-color-1);
}

.cookie {
  display: flex;
  padding: 10px 10px 20px 10px;
  width: calc(100% - 20px);
  max-width: 1170px;
  background-color: var(--base-color-1);
  border-radius: var(--border-radius);
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0px 60px 80px rgba(0, 0, 0, 0.4);
}

.cookie > svg {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
}

.cookie_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  padding: 0 10px;
}

.cookie_text {
  font-size: 14px;
  color: var(--base-color-7);
  margin-bottom: 15px;
}

.cookie .close_btn {
  flex: 0 0 26px;
}

.not-found_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 10px;
  width: 100%;
}

.not-found_box > img {
  display: block;
  margin-bottom: 40px;
  max-width: 640px;
  width: 100%;
  height: auto;
}

.not-found_box .sub_title_1 {
  margin-bottom: 20px;
  text-align: center;
}

.not-found_text {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 770px;
}

/*product item*/
.product_item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--base-color-3);
  transition: border 0.3s, box-shadow 0.3s;
  border-radius: var(--border-radius);
}

.product_item.loading {
  position: relative;
  border-color: var(--main-color-1);
}

.product_item.loading::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--main-color-1);
  border-radius: var(--border-radius);
  opacity: 0.08;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.product_item.loading::after {
  content: "";
  width: 50px;
  height: 50px;
  border-left: 8px solid #e16e00;
  border-top: 8px solid rgba(225, 110, 0, 0.2);
  border-right: 8px solid rgba(225, 110, 0, 0.2);
  border-bottom: 8px solid rgba(225, 110, 0, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loader-btn 1s linear infinite;
}

.product_photo-wrap {
  position: relative;
  margin-bottom: 6px;
}

.compare_btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.compare_btn .compare_icon {
  width: 16px;
  height: 16px;
  fill: var(--base-color-5);
  transition: 0.3s;
}

.compare_btn .compare_added {
  display: none;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 0;
  right: 0;
}

.compare_btn.compare_active .compare_added {
  display: block;
}

.compare_btn.compare_active .compare_icon {
  fill: var(--base-color-8);
}

.compare_btn:hover {
  background-color: var(--base-color-4);
}

.compare_btn:hover .compare_icon {
  fill: var(--main-color-1);
}

.product_photo {
  display: block;
  height: 138px;
  width: 100%;
}

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

.status_list {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
}

.status_list li {
  background-color: var(--main-color-1);
  color: var(--base-color-1);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  padding: 0 6px;
  height: 18px;
}

.product_item figcaption {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product_bottom {
  margin-top: auto;
}

.product_name {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
  max-height: 46px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.3s;
}

.product_name:hover {
  color: var(--main-color-1);
}

.product_available {
  color: var(--base-color-5);
  font-size: 11px;
  padding-left: 12px;
  position: relative;
  margin-bottom: 10px;
}

.product_available.not-available {
  padding-left: 0;
}

.product_available::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--success);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}

.product_available.to-order::before {
  background-color: var(--warning);
}

.product_available.not-available::before {
  display: none;
}

.product_price {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.product_price del {
  font-size: 11px;
  color: var(--base-color-5);
}

.product_price span {
  font-size: 14px;
}

.product_price span b {
  font-size: 20px;
}

.product_price .btn.small span {
  font-size: 10px;
}

.fixed_mob-product {
  display: flex;
  align-items: center;
  padding: 6px 15px;
  width: 100%;
  background-color: var(--base-color-2);
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: 0px -4px 10px 0px rgba(27, 28, 32, 0.15);
  z-index: 2;
}

.fixed_mob-photo {
  flex: 0 0 35px;
  display: block;
}

.fixed_mob-photo {
  width: 35px;
  height: 35px;
}

.fixed_mob-name {
  text-decoration: none;
  color: var(--text-color);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  padding-left: 6px;
  padding-right: 6px;
  flex: 1 1 auto;
  max-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fixed_mob-price {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  padding-right: 8px;
}

.fixed_mob-price > span {
  font-size: 11px;
  font-weight: 600;
}

.fixed_mob-price > span b {
  font-size: 16px;
}

.fixed_mob-price > del {
  font-size: 11px;
  color: var(--text-light);
}

.fixed_mob-btn {
  font-size: 10px;
  padding: 10px 14px;
}

/*product item*/
.breadcrumbs {
  padding-top: 10px;
  padding-bottom: 16px;
}

.breadcrumbs .centre {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs a {
  text-decoration: none;
  font-size: 11px;
  color: var(--base-color-7);
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
}

.breadcrumbs a:hover {
  color: var(--main-color-2);
}

.breadcrumbs a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--base-color-5);
  border-right: 1px solid var(--base-color-5);
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}

.breadcrumbs a:hover::before {
  border-color: var(--main-color-2);
}

.breadcrumbs li:last-child a {
  color: var(--base-color-5);
  padding-top: 0;
  margin-right: 0;
  cursor: unset;
}

.breadcrumbs li:last-child a::before {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  font-size: 16px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  margin: 0 1px;
  padding: 0 5px;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.pagination a.active,
.pagination a:not(.not_active):hover {
  color: var(--text-color);
  background-color: var(--base-color-3);
}

.pagination a .icon {
  width: 16px;
  height: 16px;
  color: var(--text-color);
}

.pagination span.not_active,
.pagination a.not_active {
  opacity: 0.5;
  pointer-events: none;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/*POPUPS*/
.popup_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(30, 30, 30, 0.85);
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.popup_box.hidden {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
}

.popup {
  display: none;
  flex-direction: column;
  margin: auto;
  padding: 40px 15px 48px 15px;
  width: 100%;
  max-width: 500px;
  background-color: var(--base-color-1);
  position: relative;
}

.popup.active {
  display: flex;
}

.popup .close_btn {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
}

.popup .close_btn:hover {
  background-color: transparent;
}

.popup .sub_title_5 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.popup .popup_subtitle {
  color: var(--base-color-7);
  text-align: center;
  margin-bottom: 25px;
}

.popup_form {
  display: flex;
  flex-direction: column;
}

.content_popup-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup_form .input_wrap {
  margin-bottom: 10px;
}

.popup_form .btn[type=submit] {
  margin-bottom: 15px;
}

.popup-privacy_policy {
  color: var(--text-light);
  font-size: 11px;
  text-align: center;
}

.popup_product-name {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.icon-thank_you {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px auto;
}

.popup.eco_popup {
  padding: 25px 15px;
  border-radius: 20px 20px 0 0;
}

.eco_popup-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding-right: 30px;
  margin-bottom: 10px;
}

.eco_popup-title .icon {
  margin-right: 24px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.eco_text {
  margin-bottom: 16px;
}

.eco_popup-link {
  display: flex;
  align-items: center;
}

.eco_popup-link .icon {
  fill: currentColor;
  width: 10px;
  height: 10px;
  margin-left: 6px;
}

.popup.video_popup {
  padding: 0;
  border-radius: 0;
  background-color: var(--base-color-8);
  max-width: 1170px;
}

.popup.video_popup iframe {
  width: 100%;
  height: 300px;
}

.popup.where_buy-popup {
  max-width: 1170px;
}

.back_btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  width: max-content;
  color: var(--base-color-7);
  font-size: 14px;
  margin-bottom: 18px;
  transition: 0.3s;
}

.back_btn .icon {
  fill: var(--base-color-7);
  width: 24px;
  height: 24px;
  margin-right: 10px;
  transition: 0.3s;
}

.back_btn:hover {
  color: var(--main-color-1);
}

.back_btn:hover .icon {
  fill: var(--main-color-1)
}

.popup_select_country {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup.where_buy-popup .headline_2 {
  font-size: 20px;
}

.where_popup-text {
  font-size: 13px;
  color: var(--base-color-7);
  margin-bottom: 25px;
}

#reg_sms_popup .popup_subtitle {
  color: var(--text-color);
}

.choose_title {
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.country_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.country_list li {
  width: 100%;
}

.country_list a {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  margin: 0 0 10px 0;
  padding: 15px 30px 15px 15px;
  border: 1px solid var(--base-color-4);
  position: relative;
}

.country_list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--base-color-6);
  border-bottom: 1px solid var(--base-color-6);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}

.country_list a:hover::before {
  border-color: var(--main-color-1);
}

.country_list a img {
  width: 34px;
  height: 34px;
  margin-right: 25px;
  object-fit: contain;
}

.popup-privacy_policy {
  margin-bottom: 12px;
}

.close_sms_form,
.popup-privacy_policy.repeat_sms a {
  color: var(--main-color-1);
  font-size: 14px;
}

.lpopup-privacy_policy {
  margin-bottom: 16px;
}

.choose_city-store {
  margin-bottom: 10px;
}

.big_city-list {
  display: flex;
  margin-bottom: 20px;
}

.big_city-list ul {
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}

.big_city-list ul li {
  margin-right: 20px;
}

.big_city-list ul li a {
  font-size: inherit;
  text-decoration: none;
  color: var(--main-color-1);
  transition: 0.3s;
}

.big_city-list ul li a.active {
  font-size: inherit;
  color: var(--main-color-1);
  text-decoration: underline;
  transition: 0.3s;
}

.where_box {
  display: flex;
  flex-direction: column-reverse;
}

.stores_map > * {
  width: 100%;
  height: 330px;
  border-radius: var(--border-radius);
}

.stores_map {
  margin-bottom: 15px;
  padding-bottom: 100%;
  height: 0;
  position: relative;
}

.where_store-list.hidden + .stores_map {
  display: none;
}

.stores_map #popup_shops_map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.store_item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.store_item-title a {
  color: var(--text-color);
}

.store_item-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.where_store-list > li {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  padding: 15px;
}

.where_store-list > li + li {
  border-top: 1px solid var(--base-color-3);
}

.store_info-list > li + li {
  margin-top: 15px;
}

.store_info-list .info_list {
  display: flex;
}

.store_info-list .info_list ul a {
  color: var(--text-color);
}

.store_info-list .info_list ul a:hover {
  color: var(--main-color-1);
}

.store_info-list .site_link {
  display: flex;
  align-items: center;
}

.store_info-list .site_link .icon {
  fill: var(--main-color-1);
  width: 10px;
  height: 10px;
  margin-left: 6px;
}

.info_time {
  display: flex;
}

.info_time .icon {
  flex: 0 0 14px;
  display: block;
  margin: 4px 6px 0 0;
  width: 14px;
  height: 14px;
  fill: var(--main-color-1);
}

.info_time .time_box {
  font-size: 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.info_time .time_box b {
  font-weight: 400;
  margin-bottom: 6px;
}

.info_time .time_box span {
  color: var(--base-color-7);
}

.popup.certificate_popup {
  padding: 50px 15px 10px 15px;
  max-width: 1000px;
}

.popup.certificate_popup .slider_arrow {
  display: none;
}

.swiper-slide.certificate_slide {
  display: flex;
  flex-direction: column;
}

.certificate_img {
  width: 100%;
  border-radius: var(--border-radius);
  border: 1px solid var(--base-color-3);
  margin-bottom: 30px;
}

.certificate_img img {
  display: block;
  width: 100%;
  height: auto;
}

.certificate_slide figcaption {
  font-size: 14px;
}

.popup_swipe-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 22px;
  height: 22px;
  fill: var(--base-color-4);
}

.full_screen-popup {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 12;
}

.full_screen-popup.active {
  opacity: 1;
  visibility: visible;
}

.full_screen-popup .close_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 12;
}

.full_screen-photo {
  flex: 1 1 auto;
  height: 400px;
}

.full_screen-photo .arrow-next {
  right: 10px;
}

.full_screen-photo .arrow-prev {
  left: 10px;
}

.full_screen-photo .swiper-wrapper {
  height: 100%;
}

.full_screen-photo .swiper-slide {
  height: 100%;
}

.full_screen-photo:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
  min-width: 100%;
}

.full_screen-photo:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
  width: 100%;
}

.full_screen-photo:not(.swiper-initialized) .swiper-wrapper .swiper-slide:not(:nth-child(1)) {
  display: none;
}

.full_screen-photo .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
}

.full_screen-photo .swiper-slide #circlr {
  height: 100%;
}

.full_screen-photo .swiper-slide.twist-cursor {
  position: relative;
  cursor: grab;
}

.full_screen-photo .swiper-slide.twist-cursor:active {
  cursor: grabbing;
}

.full_screen-photo .swiper-slide.twist-cursor::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.45);
  opacity: 1;
  background-image: url(../images/twist-slide.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.full_screen-photo .swiper-slide.twist-cursor:hover::before {
  opacity: 0;
}

.full_screen-list {
  display: none;
  flex: 0 0 70px;
  max-width: 565px;
  margin: 20px auto 0 auto;
  padding: 0 60px;
}

.full_screen-list .swiper-slide {
  width: 70px;
  height: 70px;
  position: relative;
}

.full_screen-list .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.mini_slider .swiper-slide.twist-icon::after,
.full_screen-list .swiper-slide.twist-icon::after {
  background-color: rgba(30, 30, 30, 0.45);
  opacity: 1;
  background-image: url(../images/twist-slide.svg);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.full_screen-list .swiper-slide.swiper-slide-thumb-active::after {
  background-color: rgba(225, 110, 0, 0.25);
}

.full_screen-list .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

  /*HEADER*/
.site_header {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.site_header.is_searching,
.site_header.compare_popup-opened {
  z-index: 12;
}

.top_header {
  color: var(--text-contrast);
  background-color: var(--base-color-9);
  padding: 8px 0;
  height: 60px;

}

.top_header .centre {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.top_header .col-1 {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-right: 15px;
}

.top_header.top_header-search .col-1 {
  padding-right: 0px;
}

.site_header.is_searching .top_header .col-1 {
  padding-right: 0;
}

.header_logo {
  display: block;
}

.top_header.top_header-search .header_logo {
  display: none;
}

.header_logo img.mobile {
  display: block;
  width: auto;
  height: 34px;
}

.header_logo img.desktop {
  display: none;
}

.top_header .header_slogan {
  display: none;
}

.header_catalog-btn {
  display: none;
}

.top_header .search_box {
  width: auto;
  margin-left: auto;
}

.top_header .col-2 {
  display: none;
}

.top_header .col-3 {
  display: none;
}

.mob_menu-btn {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.mob_menu-btn .icon {
  fill: var(--main-color-1);
  display: block;
  width: 26px;
  height: 26px;
}

.top_header.top_header-search .mob_menu-btn {
  display: none;
}

.menu_header {
  display: none;
}

.mobile_menu {
  color: var(--base-color-1);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--base-color-8);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

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

.mobile_menu-header {
  display: flex;
  align-items: center;
  padding: 0 15px;
  min-height: 60px;
  background-color: var(--base-color-9);
}

.mobile_menu-logo {
  display: block;
  margin-right: 10px;
  width: auto;
  height: 34px;
}

.mobile_menu-logo img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.mobile_menu .header_slogan {
  display: flex;
  align-items: center;
  width: calc(100% - 180px);
  max-height: 46px;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.4;
  color: var(--base-color-5);
}

.close-mobile_menu {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 40px;
  height: 40px;
}

.close-mobile_menu .icon {
  width: 24px;
  height: 24px;
  fill: var(--base-color-5);
}

.mobile_menu-body {
  padding: 0 10px;
  flex: 0 0 calc(100% - 62px);
  overflow-x: hidden;
  overflow-y: auto;
}

.mobile_menu hr {
  width: 100%;
  margin: 10px 0;
  border-color: var(--base-color-7);
}

.mob-bottom_menu li a {
  font-size: 14px;
  line-height: 1.2;
  display: block;
  padding: 10px 0;
}

.mob-choose_lang {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.mob-choose_lang a {
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-contrast);
  display: flex;
  align-items: center;
  padding: 6px 15px;
  border-radius: var(--border-radius);
}

.mob-choose_lang a.active {
  background-color: var(--base-color-6);
}

.mob-choose_lang a .icon {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.mobile_item-link {
  text-decoration: none;
  color: var(--text-contrast);
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

li.active > .mobile_item-link {
  color: var(--main-color-1);
}

.mobile_item-link.has_drop {
  padding-right: 10px;
}

.mobile_item-link.has_drop::after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--base-color-6);
  border-right: 1px solid var(--base-color-6);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.mobile_item-link .icon {
  display: block;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  fill: var(--base-color-5);
}

.mobile_item-link.mob-choose_city .icon {
  fill: var(--main-color-1);
  width: 14px;
  height: 14px;
}

.mobile_menu-phone {
  display: flex;
  padding: 10px 0;
}

.mobile_menu-phone > .icon {
  fill: var(--main-color-1);
  margin-right: 8px;
  width: 14px;
  height: 14px;
}

.mobile_menu-phone ul a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-contrast);
}

.mobile_menu-phone .btn {
  margin-left: auto;
  padding: 9px 25px;
}

.mobile_social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.mobile_social li {
  margin: 0 15px;
}

.mobile_social li a {
  font-size: 0;
}

.mobile_social .icon {
  display: block;
  width: 25px;
  height: 25px;
  fill: var(--base-color-5);
}

.sub_menu-box {
  position: fixed;
  top: 62px;
  left: 100%;
  width: 100%;
  height: calc(100% - 62px);
  background-color: var(--base-color-1);
  padding: 57px 10px 10px 10px;
  transition: left 0.3s;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
}

.sub_menu-box.active {
  left: 0;
}

.back_mob-top {
  color: var(--text-contrast);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  display: table-row;
  padding: 12px 10px 0 16px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 47px;
  background-color: var(--base-color-8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.back_mob-top::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--base-color-6);
  border-left: 1px solid var(--base-color-6);
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.mob_grid-photo {
  display: flex;
  flex-wrap: wrap;
}

.mob_grid-photo > li {
  display: flex;
  width: 50%;
  padding: 6px;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mob_grid-photo > li.active {
  position: relative;
  z-index: 1;
  border-color: var(--main-color-1);
}

.mob_grid-photo > li.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color-1);
  z-index: -1;
  opacity: 0.1;
}

.mob_grid-photo > li:nth-child(2n+1) {
  margin: 0 -1px -1px 0;
}

.mob_grid-photo > li:nth-child(2n+2) {
  margin: 0 0 -1px 0;
}

.mob_grid-photo > li > a {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mob_grid-photo > li > a > img {
  display: block;
  margin-bottom: 6px;
  width: 100%;
  height: 122px;
  object-fit: contain;
}

.mob_grid-photo > li > a > span {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 12px;
  line-height: 1.2;
  max-height: 30px;
  text-align: center;
  margin: auto 0;
}

.desk-top_menu {
  display: none;
}

.search_box {
  position: relative;
  z-index: 1;
}

.search_box.not_active {
  pointer-events: none;
  opacity: 0.7;
}

.search_form {
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.search_text {
  display: flex;
  position: relative;
  flex: 1 1 auto;
}

.search_form .search_icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  fill: var(--main-color-1);
  pointer-events: none;
}

.search_form input[type=text] {
  font-size: 14px;
  width: 0;
  padding-left: 30px;
  height: 40px;
}

.search_box.dark .search_form input[type=text] {
  color: var(--base-color-2);
  background-color: var(--base-color-8);
  border-color: var(--base-color-6);
}

.search_box.dark .search_form input[type=text]::placeholder {
  color: var(--base-color-4);
}

.delete_content {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}

.delete_content .icon {
  fill: var(--base-color-5);
  width: 18px;
  height: 18px;
  transition: 0.3s;
}

.delete_content:hover .icon {
  fill: var(--main-color-1);
}

.search_form .btn {
  display: none;
  min-height: 40px;
  padding: 0 22px;
  margin: 0 0 0 -6px;
  min-height: 1px;
  align-self: stretch;
}

.search_box.search_opened .search_form input[type=text] {
  padding-right: 46px;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border-color: var(--main-color-1);
  padding-left: 40px;
  width: 100%;
}

.search_box.search_opened .delete_content {
  display: flex;
}

.search_box.search_opened .search_form .btn {
  display: flex;
}

.result_box {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  top: calc(100% - 6px);
  z-index: 1;
  background-color: var(--base-color-1);
  border: 1px solid var(--base-color-4);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

.search_box.search_opened .result_box {
  display: flex;
}

.empty_result {
  display: block;
  width: 100%;
  font-size: 14px;
  color: var(--text-light);
  padding: 16px;
}

.result_list {
  width: 100%;
}

.result_items {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  margin-bottom: 10px;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  border-bottom: 1px solid var(--base-color-4);
}

.result_items a {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.2;
  display: block;
  padding: 8px 16px;
  transition: 0.3s;
}

.popular-result_title {
  color: var(--text-color);
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  padding: 0 15px;
  margin-bottom: 15px;
}

.popular-result_items {
  padding: 10px 0;
}

.popular-result_items ul {
  max-height: 220px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: inset 0px -13px 10px rgba(27, 28, 32, 0.15);
  margin-bottom: 10px;
  padding-bottom: 12px;
}

.popular-result_item {
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  align-items: center;
  padding: 10px 5px;
}

.popular-result_item img {
  display: block;
  margin-right: 5px;
  object-fit: contain;
  width: 50px;
  height: 45px;
}

.result_box .show_more-result {
  margin-bottom: 20px;
}

.popular-item_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  flex: 1 1 auto;
  padding-right: 10px;
  max-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-price {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
}

.popular-price del {
  font-size: 11px;
  line-height: 1.2;
  color: var(--text-light);
  white-space: nowrap;
}

.popular-price span {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}

.popular-price span b {
  font-size: 16px;
  font-weight: 600;
}

.search-loading_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px;
}

.search-loading_list li {
  display: block;
  width: 100%;
  height: 20px;
  background-color: var(--base-color-3);
  border-radius: var(--border-radius);
}

.search-loading_list li + li {
  margin-top: 20px;
}

.compare_popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--base-color-1);
  padding-top: 30px;
  padding-bottom: 30px;
  top: 127px;
  z-index: 12;
  box-shadow: 0px 60px 80px rgba(0, 0, 0, 0.4);
}

body.header_fixed .compare_popup {
  position: fixed;
  top: 54px;
  left: 0;
}

.compare_popup.active {
  display: block;
}

.compare_popup .become_partner {
  margin-bottom: 40px;
}

.compare_popup .centre {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.close-compare_popup {
  position: absolute;
  top: -15px;
  right: 15px;
  z-index: 1;
}

.compare_popup-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 20px;
  padding-right: 45px;
  max-height: 284px;
  overflow-x: hidden;
  overflow-y: auto;
}

.compare_popup-grid .top_product {
  padding: 10px;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
}

.compare_popup-grid .top_product-image {
  height: 70px;
}

.compare_popup-grid .top_product-info a {
  font-size: 11px;
  margin-bottom: 5px;
  height: auto;
}

.compare_popup-grid .top_product-price del {
  font-size: 11px;
  height: auto;
}

.compare_popup-grid .top_product-price {
  height: auto;
}

.compare_popup-grid .top_product-price span {
  font-size: 11px;
  height: auto;
}

.compare_popup-grid .top_product-price span b {
  font-size: 16px;
  height: auto;
}

/*FOOTER*/
.site_footer {
  color: var(--text-contrast);
  padding: 30px 0;
  background-color: var(--base-color-9);
}

.footer_text {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.footer_logo {
  display: block;
  width: auto;
  height: 34px;
  margin-bottom: 10px;
}

.footer_logo img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.footer_title {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.3;
  display: block;
  margin-bottom: 10px;
}

.footer_subtitle {
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-light);
}

.footer_text .footer_social {
  display: none;
}

.footer_menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--base-color-7);
  margin-bottom: 15px;
}

.footer_menu-list > li + li {
  margin-top: 8px;
}

.footer_menu-title {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-contrast);
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer_menu-item .info_list > .icon {
  fill: var(--base-color-1);
}

.footer_menu-list a,
.footer_menu-item .info_list ul a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-light);
}

.footer_menu-list .btn.callback_footer {
  width: max-content;
  margin-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

.footer_social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_social a {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 25px;
  margin: 20px;
}

.footer_social a .icon {
  fill: var(--base-color-1);
  width: 25px;
  height: 25px;
  transition: 0.3s;
}

.footer_confident {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  padding-top: 30px;
  border-top: 1px solid var(--base-color-7);
}

.copyright {
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: 20px;
}

.copyright a {
  color: var(--text-light);
}

.copyright a:hover {
  color: var(--main-color-1);
  text-decoration: underline;
}

.dev {
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  color: var(--text-light);
}

.dev a {
  color: var(--text-light);
}

.dev a:hover {
  color: var(--main-color-1);
  text-decoration: underline;
}

/*MAIN_SLIDER*/
.main_slider {
  position: relative;
}

.main_slider-item {
  width: 100%;
  position: relative;
  align-self: stretch;
  height: auto;
}

.main_slider-item.dark_slide {
  color: var(--text-contrast);
}

.main_slide-video,
.main_slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_slide-video {
  object-fit: cover;
}

.main_slide-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_slider-item.dark_slide .main_slide-video,
.main_slider-item.dark_slide .main_slide-bg img {
  filter: brightness(0.65);
}

.main_slider-item .centre {
  position: relative;
  z-index: 1;
  padding-top: 55px;
  padding-bottom: 196px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide_slogan {
  text-align: center;
  font-size: 16px;
  margin-bottom: 3px;
  max-width: 830px;
}

.main_slider-item.dark_slide .slide_slogan {
  color: var(--base-color-4);
}

.main_slider-item .headline_1 {
  max-width: 955px;
  text-align: center;
  margin-bottom: 30px;
}

.main_slider-item .big.search_product {
  width: 100%;
}

/*CATEGORIES*/
.categories {
  margin-bottom: 60px;
}

.main_slider + .categories {
  margin-top: -110px;
  margin-bottom: 0;
  padding-bottom: 40px;
  position: relative;
}

.main_slider + .categories::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--base-color-2);
  z-index: -1;
}

.categories .centre {
  display: flex;
  flex-direction: column;
}

.categories_header {
  display: flex;
  flex-direction: column;
  position: relative;
}

.categories_header-text {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--base-color-7);
}

.main_slider + .categories .categories_header-text {
  display: none;
}

.categories .headline_1 {
  font-size: 20px;
  padding-right: 30px;
}

.main_slider + .categories .headline_1 {
  display: none;
}

.main_slider + .categories .categories_item {
  padding-top: 5px;
}

.main_slider + .categories .categories_item img {
  position: relative;
  top: auto;
  left: auto;
  object-fit: contain;
  margin-bottom: 12px;
  height: auto;
}

/* 2026-08-04 (E1): SUBCAT NAV — nawigacja po podkategoriach nad listingiem.
   Celowo nie korzysta z `.categories` / `.categories_item`: tamten kafelek to
   pionowa biała karta z dużym zdjęciem, czyli dokładnie to, czym jest kafelek
   produktu pod spodem — dwa takie same języki kart jeden nad drugim czytały się
   jak jedna lista. Tutaj odwrotnie: szara plansza grupująca (ten sam szary co
   rząd sortowania), a w niej poziome pastylki z małym zdjęciem obok nazwy.
   Inny kierunek, inna skala, inne tło — od razu widać, że to nawigacja. */
.subcat_nav {
  background-color: var(--base-color-2);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 10px;
}

.subcat_nav-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--base-color-5);
  margin-bottom: 10px;
}

.subcat_nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subcat_nav-list > li {
  flex: 1 1 100%;
  min-width: 0;
}

.subcat_nav-item {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px;
  background-color: var(--base-color-1);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.3s, box-shadow 0.3s;
}

.subcat_nav-item img,
.subcat_nav-thumb {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: 12px;
}

/* kategoria bez zdjęcia — neutralne pole, żeby nazwy w rzędzie trzymały linię */
.subcat_nav-thumb {
  background-color: var(--base-color-2);
  border-radius: var(--border-radius);
}

/* własna klasa, nie samo `span` — pod tamten selektor podpadał też
   `.subcat_nav-thumb`, a `max-height` zjadało mu wysokość */
.subcat_nav-name {
  max-height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.subcat_nav-item:hover {
  color: var(--main-color-1);
}

.swipe_icon {
  width: 24px;
  height: 24px;
  fill: var(--base-color-6);
  margin: 0 0 10px auto;
}

.categories_header .swipe_icon {
  position: absolute;
  bottom: 20px;
  right: 0;
  margin: 0;
  z-index: 1;
}

.swiper.categories_slider {
  margin: -15px -15px 0 -15px;
  width: calc(100% + 30px);
  padding: 16px 10px 0 10px;
}

.swiper.categories_slider .swiper-wrapper {
  padding: 30px 0;
  margin: -30px 0;
}

.custom-scrollbar {
  margin-top: 15px;
  margin-bottom: 18px;
}

.categories_item {
  font-weight: 600;
  text-decoration: none;
  font-size: 11px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 137px 5px 5px 5px;
  width: 170px;
  height: auto;
  background-color: var(--base-color-1);
  border-radius: var(--border-radius);
  box-shadow: 0px 10px 30px rgba(27, 28, 32, 0.15);
  position: relative;
}

.categories_item img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.categories_item span {
  font-size: 14px;
  text-align: center;
  margin: auto 0;
  max-height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  z-index: 1;
}

.show_catalog {
  margin-top: 10px;
}

.btn.catalog_btn span {
  flex: 0 1 auto;
}

/*PREFERENCE*/
.preference {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 80px;
  background-color: var(--base-color-2);
}

.main_slider + .categories + .preference {
  padding-top: 0;
}

.preference .headline_2 {
  max-width: 850px;
  margin: 0 auto 20px auto;
}

.preference .sub_title_5 {
  font-weight: 400;
  line-height: 1.5;
  max-width: 850px;
  margin: 0 auto 20px auto;
}

.preference.preference-temp_2 {
  background-color: var(--base-color-2);
}

.preference.preference-temp_2 {
  padding-top: 25px;
}

.preference .centre {
  display: flex;
  flex-direction: column;
}

.preference_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 14px;
}

.preference.preference-temp_2 .preference_grid {
  grid-gap: 20px;
}

.preference_grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preference_grid li.danger {
  background-color: var(--main-color-6);
}

.preference.preference-temp_2 .preference_grid li {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.preference_img {
  display: block;
  margin: 0 0 10px 0;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1;
}

.preference_grid li.danger .preference_img {
  flex: 0 0 36px;
  margin-top: 5px;
  margin-right: 12px;
  margin-left: 15px;
  width: 36px;
  height: 36px;
}

.preference.preference-temp_2 .preference_img {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

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

.preference-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.preference-text b {
  font-size: 13px;
  margin-bottom: 5px;
  text-align: center;
}

.preference_grid li.danger .preference-text b {
  font-size: 15px;
}

.preference-text span {
  font-size: 13px;
  color: var(--base-color-7);
  text-align: center;
}

/*CERTIFICATE TEXT*/
.certificate_text {
  margin-bottom: 80px;
}

.certificate_text .centre {
  display: flex;
  flex-direction: column;
}

.certificate_image {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 8px;
}

.certificate_image img {
  display: block;
  width: 100%;
  height: auto;
  z-index: -1;
  position: relative;
}

.certificate_image .btn {
  position: absolute;
  right: 0;
  bottom: 8px;
  padding: 8px 10px;
  font-size: 10px;
}

.certificate_list li {
  position: relative;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}

.certificate_list li + li {
  margin-top: 16px;
}

.certificate_list .icon.check_icon {
  width: 20px;
  height: 20px;
  fill: var(--main-color-1);
  position: absolute;
  top: 0;
  left: 0;
}

.certificate_list li b {
  font-size: 16px;
  margin-bottom: 6px;
}

.certificate_list li span {
  font-size: 14px;
  color: var(--base-color-7);
  line-height: 1.4;
}

/*PRODUCT PREF*/
.product_pref {
  position: relative;
  color: var(--text-color);
  margin-bottom: 80px;
  padding-top: 40px;
  padding-bottom: 45px;
}

.product_pref-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.product_pref-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_pref .centre {
  display: flex;
  flex-direction: column;
}

.product_pref-list ul {
  margin-bottom: 192px;
}

.product_pref-list li {
  display: flex;
  position: relative;
}

.product_pref-list li + li {
  margin-top: 15px;
}

.product_pref-icon {
  flex: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: var(--main-color-1);
}

.product_pref-icon img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.product_pref-list li span {
  font-size: 13px;
  line-height: 1.3;
  color: var(--text-color);
  flex: 1 1 auto;
  padding-left: 15px;
}

.product_pref-text {
  margin-bottom: 10px;
  padding: 60px 15px 15px 15px;
  position: relative;
  border-radius: var(--border-radius);
}

.product_pref-text::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--base-color-1);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.product_pref-video .btn span {
  flex: 0 1 auto;
}

.play_btn {
  font-size: 0;
  display: flex;
  width: 70px;
  height: 70px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.play_btn:hover {
  background-color: var(--main-color-2);
}

.play_btn::before {
  content: "";
  width: 100px;
  height: 100px;
  background-color: var(--main-color-1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
  transition: 0.3s;
}

.play_btn:hover::before {
  width: 120px;
  height: 120px;
}

.play_btn .icon {
  margin: 25px 0 0 28px;
  width: 20px;
  height: 20px;
  fill: var(--base-color-1);
}

.product_pref-text span {
  font-weight: 600;
  display: block;
  text-align: center;
}

.product_pref-text span small {
  font-size: inherit;
  color: var(--base-color-5);
}

/*MAIN ARTICLE*/
.main_article {
  margin-bottom: 60px;
}

.main_article .centre {
  display: flex;
  flex-direction: column;
  max-width: 986px;
}

.main_article.short_article .centre {
  max-height: 900px;
  overflow: hidden;
}

.main_article.short_article.article_opened {
  max-height: unset;
}

.open-short_article {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 20px auto 0 auto;
}

.open-short_article .icon {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  fill: var(--main-color-1);
}

.main_article.article_opened .open-short_article .icon {
  transform: rotate(180deg);
}

/*PRODUCT SLIDER*/
.product_slider {
  margin-bottom: 48px;
  overflow: hidden;
}

.product_slider .centre {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

.product_slider-header {
  display: flex;
  padding-right: 15px;
}

.product_slider-header .sub_title_2 {
  text-transform: none;
  font-size: 20px;
  margin-bottom: 16px;
}

.product_slider .slider_arrow {
  display: none;
}

.product_swiper .custom-scrollbar {
  display: none;
  margin-right: 15px;
}

.product_swiper.swiper-initialized .custom-scrollbar {
  display: block;
}

.product_swiper .product_item {
  width: 165px;
  align-self: stretch;
  height: auto;
}

.product_slider .btn.show_more {
  margin: 10px 10px 40px 0;
}

.product_slider .btn.open_all {
  margin: 12px 0 0 0;
  width: calc(100% - 15px);
}

/*ONE COL FORM*/
.one_col_form {
  position: relative;
  margin-bottom: 80px;
}

.one_col_form.temp-2 {
  margin-bottom: 0;
}

.one_col_form .centre {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--text-color);
  padding: 40px 15px 20px 15px;
}

.one_col_form .sub_title_1 span {
  font-weight: 700;
}

.one_col_form .sub_title_1 b {
  position: relative;
}

.one_col_form .sub_title_1 b::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--main-color-1);
  z-index: -1;
}

.one_form-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: 100%;
  z-index: -1;
}

.one_col_form.temp-2 .one_form-bg {
  max-width: none;
}

.one_form-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.one_col_form.temp-2 .one_form-bg img {
  border-radius: 0;
}

.one_form-text {
  margin-bottom: 10px;
}

.one_col_form ul {
  margin: 5px 0 10px;
}

.one_col_form ul li {
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.one_col_form ul li::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 4px;
  left: 0px;
  background-color: var(--main-color-1);
  border-radius: 50%;
}

.one_col_form ul li::after {
  content: "";
  width: 5px;
  height: 7px;
  position: absolute;
  top: 6px;
  left: 4px;
  transform: rotate(45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.phone_form {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  margin-top: 92px;
  padding: 25px 25px 40px 25px;
  background-color: var(--base-color-2);
}

.phone_form-title {
  font-size: 16px;
  margin-bottom: 5px;
}

.phone_form-text {
  font-size: 13px;
  color: var(--base-color-7);
  margin-bottom: 15px;
}

.phone_form-inner {
  margin-bottom: 15px;
  position: relative;
}

.phone_form-inner .input_wrap {
  margin-bottom: 10px;
}

.phone_form-inner .btn {
  padding: 10px;
}

.language_wrap {
  position: relative;
}

.language_wrap .input_wrap input {
  padding-left: 46px;
}

.selected_lang {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 46px;
  height: 46px;
  top: 0;
  left: 0;
}

.selected_lang::after {
  content: "";
  width: 8px;
  height: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--base-color-7);
  margin-left: 5px;
  transition: 0.3s;
}

.selected_lang:hover::after {
  border-top: 6px solid var(--main-color-1);
}

.language_wrap.opened .selected_lang::after {
  transform: rotate(180deg);
}

.selected_lang img {
  display: block;
  width: 18px;
  height: auto;
}

.one_col_form ul.languages_box {
  margin: 0;
}

.languages_box {
  width: 100%;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--base-color-4);
  background-color: var(--base-color-1);
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.language_wrap.opened .languages_box {
  opacity: 1;
  visibility: visible;
}

.one_col_form ul.languages_box li {
  padding-left: 0;
}

.one_col_form ul.languages_box li::before,
.one_col_form ul.languages_box li::after {
  display: none;
}

.one_col_form ul.languages_box li + li {
  margin-top: 0;
}

.languages_box a {
  font-size: 14px;
  color: var(--base-color-7);
  display: flex;
  align-items: center;
  padding: 6px 8px;
  transition: 0.3s;
}

.languages_box a:hover {
  color: var(--main-color-1);
}

.languages_box a img {
  display: block;
  margin-right: 8px;
  width: 18px;
  height: auto;
}

.privacy_policy {
  color: var(--text-light);
  font-size: 11px;
  text-align: center;
}

.one_col_form.temp-2.is_details::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--base-color-2);
  z-index: -2;
}

/*REVIEWS*/
.reviews {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 80px;
  background-color: var(--base-color-2);
  overflow: hidden;
}

.reviews_header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.reviews_header-rating {
  font-size: 11px;
  color: var(--base-color-7);
  display: flex;
  flex-direction: column;
}

.reviews-star_wrap {
  display: flex;
  align-items: center;
}

.reviews-star_wrap b {
  color: var(--text-color);
  font-weight: 600;
  font-size: 24px;
  margin-right: 10px;
}

.reviews-star_wrap ul {
  display: flex;
}

.reviews-star_wrap ul li {
  display: flex;
  margin: 0 2px;
}

.reviews-star_wrap ul .icon {
  width: 20px;
  height: 20px;
  fill: var(--main-color-1);
  filter: grayscale(1);
}

.reviews-star_wrap ul .icon.active {
  filter: grayscale(0);
}

.reviews_header .swipe_icon {
  position: absolute;
  margin: 0;
  bottom: 0;
  right: 0;
}

.reviews_slider .slider_arrow {
  display: none;
}

.reviews_slider .custom-scrollbar {
  background-color: var(--base-color-1);
}

.review_item {
  width: 300px;
  min-height: 200px;
  background-color: var(--base-color-1);
  padding: 10px;
  border-radius: var(--border-radius);
}

.review_item > img {
  display: block;
  width: 100%;
  height: auto;
}

.review_item-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.review_item-photo {
  max-width: 30px;
  flex: 0 0 30px;
  display: block;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.review_item-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.review_item-info b {
  font-size: 13px;
  font-weight: 400;
}

.review_item-info {
  font-size: 11px;
}

.review-btn {
  flex: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
}

.review-btn .icon {
  fill: var(--base-color-7);
}

.review_item-rating {
  display: flex;
  align-items: center;
}

.review_item-rating ul {
  display: flex;
  margin-right: 6px;
}

.review_item-rating li {
  display: flex;
  margin: 0 1px;
}

.review_item-rating ul .icon {
  width: 12px;
  height: 12px;
  fill: var(--main-color-1);
  filter: grayscale(1);
}

.review_item-rating ul .icon.active {
  filter: grayscale(0);
}

.review_item-rating > span {
  font-size: 13px;
  color: var(--text-light);
}

.review_item-rating {
  margin-bottom: 4px;
}

.review_text {
  font-size: 13px;
  color: var(--base-color-7);
}

.review_bottom-btn {
  display: flex;
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px solid var(--base-color-3);
}

.review_bottom-btn a {
  text-align: center;
  padding: 5px 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-color);
}

.review_bottom-btn a .icon {
  fill: var(--text-color);
  margin-right: 6px;
}

/*INTERIOR*/
.interior {
  padding: 40px 0 80px 0;
  margin-bottom: 80px;
  color: var(--text-color);
  background-color: var(--base-color-2);
}

.interior .centre {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  max-width: 1640px;
}

.interior .headline_2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.interior_info {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}

.interior_info > span {
  font-size: 16px;
}

.interior_info .show_gallery {
  display: none;
}

.interior_item {
  width: 100%;
  height: auto;
}

.interior_item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.interior_slider + .show_gallery {
  margin: 0 15px;
}

.interior_slider .slider_arrow.arrow-prev {
  left: 15px;
}

.interior_slider .slider_arrow.arrow-next {
  right: 15px;
}

.interior_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
  padding: 0 5px;
}

.interior_grid-item {
  position: relative;
}

.interior_grid-img {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 115%;
}

.interior_grid-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--base-color-9);
  opacity: 0.7;
  transition: 0.3s;
  z-index: 1;
}

.interior_grid-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.center_interior-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 12px 36px 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.center_interior-menu .interior_image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 10px;
}

.center_interior-menu .interior_text {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--base-color-1);
}

.bottom_interior-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.bottom_interior-menu .col:nth-child(1) {
  display: none;
}

.bottom_interior-menu .col:nth-child(2) {
  padding: 5px;
}

  /*TWO COL FORM*/
.two_col_form {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 80px;
  color: var(--text-color);
}

.two_col_form.temp-2 {
  margin-bottom: 0;
}

.interior + .two_col_form {
  margin-top: -80px;
}

.interior + .two_col_form::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--base-color-8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.two_form-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1600px;
  z-index: -1;
}

.two_form-bg

.two_col_form.temp-2 .two_form-bg {
  max-width: none;
}

.two_form-bg img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.two_col_form.temp-2 .two_form-bg img {
  border-radius: 0;
}

.two_col_form .centre > .col-1 {
  display: flex;
  flex-direction: column;
}

.two_form-header {
  color: var(--base-color-7);
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.two_col_form .headline_2 b {
  position: relative;
  display: inline-block;
}

.two_col_form .headline_2 b::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--main-color-1);
  z-index: -1;
}

.two_form-header .icon {
  flex: 0 0 40px;
  height: 40px;
  margin-right: 15px;
}

.two_form-header span {
  flex: 1 1 auto;
}

.two_form-text {
  font-size: 14px;
  color: var(--text-color);
}

.two_col_form .phone_form .input_wrap {
  margin-bottom: 10px;
}

.two_col_form .phone_form .btn {
  margin-bottom: 8px;
}

/*LAST NEWS*/
.last_news {
  margin-bottom: 80px;
}

.last_news .centre {
  padding-right: 0;
}

.last_news-header {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}

.last_news-header .headline_2 {
  font-size: 20px;
  margin-bottom: 0;
  padding-right: 30px;
}

.last_news-header .swipe_icon {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}

.last_news-slider .custom-scrollbar {
  margin-right: 15px;
}

.last_news-item {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--base-color-2);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.last_news-img {
  display: block;
  width: 100%;
  height: 196px;
}

.last_news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last_news-item figcaption {
  flex: 1 1 auto;
  padding: 10px 15px 15px 15px;
  display: flex;
  flex-direction: column;
}

.last_news-item figcaption time {
  font-size: 11px;
  color: var(--base-color-5);
  margin-bottom: 4px;
}

.last_news-name {
  font-weight: 700;
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  margin-bottom: 4px;
  transition: 0.3s;
}

.last_news-item figcaption span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  margin-bottom: 15px;
  max-height: 46px;
}

.last_news-item figcaption .site_link {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.last_news-item figcaption .site_link .icon {
  width: 8px;
  height: 8px;
  margin-left: 8px;
  fill: var(--main-color-1);
}

.btn.show-news_list {
  width: max-content;
  margin: 0 auto;
}

/*SHOPS MAP*/
.shops_map {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 565px;
}

.two_col_form + .shops_map {
  margin-top: -80px;
}

.shops_map .centre {
  padding: 0;
  position: relative;
}

.shops_map-text {
  color: var(--base-color-5);
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px 15px 24px 15px;
  z-index: 1;
}

.shops_map-text::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--base-color-9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
}

.shops_map-text .headline_2 {
  font-size: 20px;
  color: var(--text-contrast);
}

.shops_map-info {
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.5;
}

.find_countries {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  right: 15px;
  top: calc(22px + 100%);
}

.find_countries li {
  display: flex;
}

.find_countries li + li {
  margin-top: 5px;
}

.country_item {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 2px 10px 2px 6px;
  position: relative;
}

.country_item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--base-color-9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
  transition: 0.3s;
}

.country_item:hover::before {
  background-color: var(--main-color-2);
}

.country_item.active::before {
  background-color: var(--main-color-1);
}

.country_item img {
  display: block;
  margin-right: 6px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.country_item span {
  color: var(--base-color-1);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  line-height: 140%;
}

.shops_map > #shops_map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*BECOME PARTNER*/

.temp-2.is_details + .become_partner {
  background-color: var(--base-color-2);
  margin-bottom: 0;
}

.temp-2.is_details + .become_partner .centre {
  margin-bottom: 0;
}

.become_partner .centre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 68px 15px 80px 40px;
  margin-bottom: 20px;
  background-color: var(--base-color-2);
}

.become_header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  z-index: 1;
}

.become_icon {
  flex: 0 0 50px;
  margin-right: 15px;
  position: relative;
  z-index: 1;
}

.become_icon::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/img-bg-2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.become_icon svg {
  display: block;
  width: 46px;
  height: 46px;
}

.become_header span {
  z-index: 1;
}

.become_partner .headline_2 {
  z-index: 1;
  text-align: center;
}

.become_partner .btn {
  width: 100%;
}

/*CATALOG*/
.catalog {
  padding-bottom: 80px;
}

.catalog .centre {
  display: flex;
  flex-direction: column;
}

.catalog.serach_catalog .headline_1 {
  margin-bottom: 20px;
}

.search_subtitle {
  font-size: 16px;
  margin-bottom: 40px;
}

.mob-catalog_control {
  display: flex;
  margin-bottom: 10px;
  position: sticky;
  top: 60px;
  z-index: 1;
}

.mob-catalog_control .btn {
  flex: 0 0 calc(50% - 1px);
  padding: 13px 10px;
}

.open-sort_cat.btn {
  margin-right: 2px;
  color: var(--text-color);
  background-color: var(--base-color-2);
  border-color: var(--base-color-2);
}

.open-sort_cat.btn .icon {
  fill: var(--text-color);
}

.btn.open-filter_cat span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.open-filter_cat span b {
  font-size: 11px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  margin-left: 6px;
  padding: 0 5px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background-color: var(--main-color-6);
}

.catalog_filters {
  position: fixed;
  top: 0;
  right: -345px;
  width: 345px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--base-color-1);
  z-index: 12;
  transition: 0.3s;
}

.catalog_filters.filter_overflow {
  overflow-y: hidden;
}

.catalog_filters.active {
  right: 0;
}

.close_filters {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
}

.filters_cat {
  display: flex;
  flex-direction: column;
}

.filters_cat > li {
  display: flex;
}

.turn_back,
.filters_cat > li > a {
  color: var(--text-contrast);
  font-size: 20px;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background-color: var(--base-color-8);
}

.turn_back {
  text-align: center;
  justify-content: center;
  padding-right: 50px;
  position: relative;
}

.filters_cat > li:nth-child(1) > a.has_drop {
  min-height: 82px;
}

.filters_cat > li > a.has_drop {
  padding-right: 50px;
  position: relative;
}

.turn_back::before,
.filters_cat > li > a.has_drop::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--base-color-5);
  border-right: 1px solid var(--base-color-5);
  position: absolute;
  bottom: 24px;
  right: 22px;
  transform: rotate(-45deg);
}

.turn_back::before {
  left: 22px;
  transform: rotate(135deg);
}

.filters_cat .for_drop {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--base-color-1);
  transition: 0.3s;
  z-index: 1;
}

.filters_cat li.active .for_drop {
  left: 0;
}

.filter_wrap {
  padding: 20px 15px 64px 15px;
}

.filter-cat_grid {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 8px;
}

.filter-cat_grid li {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  width: 50%;
}

.filter-cat_grid li:nth-child(2n+1) {
  margin: 0 -1px -1px 0;
}

.filter-cat_grid li:nth-child(2n+2) {
  margin: 0 0 -1px 0;
}

.filter-cat_grid li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 11px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 8px 5px;
  width: 100%;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
}

.filter-cat_grid li a img {
  margin-bottom: 8px;
  height: 120px;
  width: 100%;
  object-fit: contain;
}

.filter-cat_grid li a.active {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 110, 0, 0.1);
  border-color: var(--main-color-1);
}

.filter-cat_grid li a span {
  text-align: center;
  margin: auto 0;
  max-height: 31px;
  overflow: hidden;
}

.filter_wrap-title {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.counter_filters {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.selected_filters {
  display: flex;
  flex-direction: column;
}

.selected_filters > span {
  color: var(--base-color-7);
  font-size: 13px;
  margin-bottom: 6px;
}

.selected_filters ul {
  display: flex;
  overflow-y: hidden;
  overflow-x: auto;
  width: 100%;
}

.selected_filters li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 8px;
  padding: 6px 8px;
  border: 1px solid var(--base-color-4);
  border-radius: var(--border-radius);
}

.selected_filters .reset_item {
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  padding: 2px;
}

.selected_filters .reset_item .icon {
  width: 10px;
  height: 10px;
  fill: var(--base-color-5);
  transition: 0.3s;
}

.selected_filters .reset_item:hover .icon {
  fill: var(--danger);
}

.filter_item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--base-color-3);
}

.filter_inner {
  display: none;
  padding: 5px 0 15px 0;
}

.filter_item.active .filter_inner {
  display: block;
}

.filter_title {
  font-size: 16px;
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 40px 10px 0;
  position: relative;
  transition: 0.3s;
}

.filter_item.active .filter_title {
  font-weight: 600;
}

.filter_title::before,
.filter_title::after {
  content: "";
  width: 1px;
  height: 7px;
  background-color: var(--base-color-6);
  position: absolute;
  top: 50%;
  right: 16px;
  transform-origin: bottom;
  transition: 0.3s;
}

.filter_title::before {
  transform: translateY(-50%) rotate(-45deg) translateX(0.5px);
}

.filter_title::after {
  transform: translateY(-50%) rotate(45deg) translateX(-0.5px);
}

.filter_item.active .filter_title::before,
.filter_item.active .filter_title::after {
  transform-origin: top;
}

.filter_item.active .filter_title::before {
  transform: translateY(-50%) rotate(45deg) translateX(0.5px);
}

.filter_item.active .filter_title::after {
  transform: translateY(-50%) rotate(-45deg) translateX(-0.5px);
}

.price_filter {
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 16px;
}

.price_filter span:nth-child(1) {
  font-size: 11px;
  margin-right: auto;
}

.price_filter span:nth-child(3) {
  font-size: 11px;
  margin: 0 auto;
}

.price_filter input[type=text] {
  text-align: center;
  padding: 0 10px;
  height: 30px;
  width: 90px;
}

.price_filter .btn {
  margin-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 30px;
}

.list_filter {
  display: flex;
  flex-direction: column;
}

.list_filter li + li {
  margin-top: 10px;
}

.list_filter a {
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 13px;
  color: var(--text-color);
  padding-left: 25px;
  position: relative;
}

.list_filter a::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--base-color-1);
  border: 1px solid var(--base-color-4);
  border-radius: 2px;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

.list_filter a.active::before {
  background-color: var(--main-color-1);
  border-color: var(--main-color-1);
}

.list_filter a::after {
  content: "";
  width: 8px;
  height: 6px;
  border-bottom: 2px solid var(--base-color-1);
  border-left: 2px solid var(--base-color-1);
  position: absolute;
  top: 3px;
  left: 4px;
  transform: rotate(-45deg);
}

.filter_inner .slider {
  margin: 0 10px;
}

.show_more-filters {
  margin-top: 15px;
}

.list_grid {
  display: flex;
  flex-wrap: wrap;
}

.list_grid li {
  display: flex;
  margin: 0 5px 5px 0;
}

.list_grid a {
  text-decoration: none;
  font-size: 11px;
  color: var(--text-color);
  padding: 5px 10px;
  border: 1px solid var(--base-color-4);
  border-radius: 5px;
  transition: 0.3s;
}

.list_grid a.active {
  color: var(--text-contrast);
  background-color: var(--main-color-1);
  border-color: var(--main-color-1);
}

.submit_filters {
  display: flex;
  padding: 8px 15px;
  width: 345px;
  position: fixed;
  bottom: 0;
  right: -345px;
  box-shadow: 0px -4px 10px rgba(27, 28, 32, 0.15);
  background-color: var(--base-color-1);
  transition: 0.3s;
}

.catalog_filters.active .submit_filters {
  right: 0;
}

.submit_filters a {
  flex: 1 1 auto;
}

.reset_filters {
  margin-right: 4px;
}

.desk-cat_control .selected_filters {
  display: none;
}

/* 2026-08-04 (E1): NIE podnosić tu z-index. `.filter_sort` (panel sortowania,
   wysuwany poniżej 1024px) jest dzieckiem `.desk-cat_control` i leci na
   `z-index: 12`, żeby wyjść ponad `.shadow` (z-index: 10). Kontekst układania
   na rodzicu zamyka tę dwunastkę w środku i przyciemnienie ląduje NAD opcjami
   sortowania — nie da się ich kliknąć. Zwisające pudełko slidera kafelków
   rozwiązane jest inaczej: zerowaniem jego pionowego paddingu w adaptive.css. */

.filter_sort {
  position: fixed;
  top: 0;
  right: -345px;
  display: flex;
  flex-direction: column;
  padding: 15px 15px 20px 15px;
  width: 345px;
  background-color: var(--base-color-1);
  z-index: 12;
  border-radius: 0 0 0 20px;
  transition: 0.3s;
}

.filter_sort.active {
  right: 0;
}

.close-filter_sort {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 34px;
  height: 34px;
}

.close-filter_sort .icon {
  width: 24px;
  height: 24px;
}

.filter_sort-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.filter_sort ul li + li {
  margin-top: 20px;
}

.filter_sort ul a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  padding-left: 25px;
  position: relative;
}

.filter_sort ul a::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--base-color-4);
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 0;
  transition: 0.3s;
}

.filter_sort ul a.active::before {
  border-color: var(--main-color-1);
}

.filter_sort ul a::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 3px;
  opacity: 0;
  transition: 0.3s;
}

.filter_sort ul a.active::after {
  opacity: 1;
}

.desk-selected_filters {
  display: none;
}

.catalog_grid {
  display: flex;
  flex-wrap: wrap;
}

.catalog_grid .product_item {
  flex: 0 1 50%;
}

.catalog_grid .product_item:nth-child(2n+1) {
  margin: 0 -1px -1px 0;
}

.catalog_grid .product_item:nth-child(2n+2) {
  margin: 0 0 -1px 0;
}

.catalog_navigation {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

/*CATALOG DETAILS*/
.catalog_details {
  margin-bottom: 60px;
}

.product_navigation {
  margin-bottom: 16px;
  position: sticky;
  top: 60px;
  background-color: var(--base-color-2);
  border-bottom: 1px solid var(--base-color-3);
  z-index: 2;
}

.product_navigation ul {
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product_navigation ul::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.product_navigation ul li {
  flex: 0 0 auto;
}

.product_navigation ul a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  padding: 8px 0;
  margin: 0 16px 0 0;
  transition: 0.3s;
  position: relative;
}

.product_navigation ul a:hover {
  color: var(--main-color-1);
}

.product_navigation ul a.active {
  color: var(--main-color-1);
}

.product_navigation ul a::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--main-color-1);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
}

.product_navigation ul a.active::before {
  opacity: 1;
}

.cat_details-banner picture {
  display: block;
  width: 100%;
  height: auto;
}

.cat_details-banner picture img {
  display: block;
  width: 100%;
  height: auto;
}

.cat_details-banner .centre {
  display: none;
}

.cat_details-info {
  margin-bottom: 40px;
}

.cat_details-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.cat_details-code {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.cat_details-header .headline_1 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 0;
}

.cat_details-info > .centre > .col-1 {
  position: relative;
}

.big_slider {
  width: calc(100% + 30px);
  margin: 0 -15px 22px -15px;
  overflow: hidden;
}

.big_slider:not(.swiper-initialized) {
  display: flex;
  overflow: hidden;
}

.big_slider .swiper-slide {
  height: 360px;
  cursor: pointer;
}

.big_slider:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 100%;
}

.big_slider .swiper-slide.twist_slide-active::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.45);
  opacity: 1;
  background-image: url(../images/twist-slide.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}

/*.big_slider .swiper-slide.twist_slide-active:hover::before {*/
/*  background-color: rgba(225, 110, 0, 0.25);*/
/*}*/

.big_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
}

#circlr_inline {
  height: 100%;
  background-color: #fff;
}

.big_slider .swiper-slide.twist-cursor::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.45);
  opacity: 1;
  background-image: url(../images/twist-slide.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.big_slider .swiper-slide.twist-cursor:hover::before {
  opacity: 0;
}

.big_slider .slider_arrow.arrow-prev {
  left: 10px;
}

.big_slider .slider_arrow.arrow-next {
  right: 10px;
}

.big_slider .swiper-pagination.slider_pag .swiper-pagination-bullet {
  background-color: var(--main-color-6);
}

.big_slider .swiper-pagination.slider_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color-1);
}

.big_slider .zoom_btn {
  bottom: 30px;
}

.zoom_btn {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  color: var(--base-color-1);
  display: flex;
  align-items: center;
  padding: 6px 10px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-color: var(--base-color-5);
  opacity: 0.75;
  transition: 0.3s
}

.zoom_btn .icon {
  fill: var(--base-color-1);
  width: 14px;
  height: 14px;
  margin-right: 8px;
  transition: 0.3s;
}

.zoom_btn:hover {
  background-color: transparent;
  color: var(--main-color-1);
  opacity: 1;
}

.zoom_btn:hover .icon {
  fill: var(--main-color-1);
}

.mini_slider {
  display: none;
}

.cat_details-status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  position: absolute;
  top: 8px;
  left: 0;
}

.cat_details-status li {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-contrast);
  padding: 1px 6px;
  background-color: var(--danger);
  margin-bottom: 6px;
}

.cat_details-info > .centre > .col-2 {
  display: flex;
  flex-direction: column;
}

.cat_details-info > .centre > .col-2 .cat_details-code {
  display: none;
}

.cat_details-info > .centre > .col-2 .headline_1 {
  display: none;
}

.cat_details-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.cat_details-available {
  white-space: nowrap;
  margin-right: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  color: var(--success);
  position: relative;
}

.cat_details-available.not-available {
  color: var(--base-color-6);
}

.cat_details-available.to-order {
  color: var(--warning);
}

.cat_details-available::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--success);
  position: relative;
}

.cat_details-available.not-available::before {
  display: none;
}

.cat_details-available.to-order::before {
  background-color: var(--warning);
}

.cat_details-available::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--success);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}

.cat_details-available.not-available::after {
  background-color: var(--base-color-6);
}

.cat_details-available.to-order::after {
  background-color: var(--warning);
}

.cat_details-compare {
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--base-color-6);
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.cat_details-compare.active {
  color: var(--text-color);
}

.cat_details-compare .icon_wrap {
  position: relative;
  margin-right: 12px;
}

.cat_details-compare.active .icon_wrap::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 50%;
  background-color: var(--success);
}

.cat_details-compare.active .icon_wrap::after {
  content: "";
  width: 6px;
  height: 4px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: -3px;
  right: -3px;
  transform: rotate(-45deg);
}

.cat_details-compare .icon {
  width: 24px;
  height: 24px;
  fill: var(--base-color-6);
  transition: 0.3s;
}

.cat_details-compare.active .icon {
  fill: var(--text-color);
}

.cat_details-compare:hover .icon {
  fill: var(--main-color-1);
}

.prise_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 16px;
}

.prise_wrap del {
  width: 100%;
  font-size: 16px;
  color: var(--text-light);
}

.prise_wrap .product_price {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 0 20px 0 0;
}

.prise_wrap .product_price b {
  font-size: 32px;
}

.prise_wrap .product_price.medium_size b {
  font-size: 32px;
}

.prise_wrap .product_price.small_size b {
  font-size: 26px;
}

.prise_wrap .saving_money {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 7px;
}

.prise_wrap .saving_money b {
  color: var(--success);
  font-weight: 600;
}

.price_btns {
  display: flex;
  flex-direction: column;
}

.price_btns .buy_btn {
  margin-bottom: 10px;
}

.price_btns .find_dealer {
  font-size: 10px;
  padding: 7px;
}

.energy_saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eco_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.eco_icon {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-right: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.energy_saving-title {
  font-size: 13px;
  color: var(--base-color-5);
}

.energy_saving-icon {
  text-decoration: none;
  color: var(--text-contrast);
  display: flex;
  align-items: center;
  height: 30px;
  font-size: 18px;
  margin-right: 16px;
  padding: 0 11px;
  border-radius: 3px 0 0 3px;
  position: relative;
}

a.energy_saving-icon:hover {
  text-decoration: underline;
}

.energy_saving-icon::after {
  content: "";
  width: 16px;
  height: 30px;
  border-left: 16px solid;
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-right: none;
  position: absolute;
  left: 100%;
  top: 0;
}

.energy_saving-icon.a-plus-plus {
  background-color: #00a750;
}

.energy_saving-icon.a-plus-plus::after {
  border-left-color: #00a750;
}

.energy_saving-icon.a-plus {
  background-color: #50b948;
}

.energy_saving-icon.a-plus::after {
  border-left-color: #50b948;
}

.energy_saving-icon.a {
  background-color: #bfd72e;
}

.energy_saving-icon.a::after {
  border-left-color: #bfd72e;
}

.energy_saving-icon.b {
  background-color: #fdef04;
}

.energy_saving-icon.b::after {
  border-left-color: #fdef04;
}

.energy_saving-icon.c {
  background-color: #fdb912;
}

.energy_saving-icon.c::after {
  border-left-color: #fdb912;
}

.energy_saving-icon.d {
  background-color: #f37020;
}

.energy_saving-icon.d::after {
  border-left-color: #f37020;
}

.energy_saving-icon.e {
  background-color: #ed1c24;
}

.energy_saving-icon.e::after {
  border-left-color: #ed1c24;
}

.energy_saving-icon.f {
  background-color: #ed1c24;
}

.energy_saving-icon.f::after {
  border-left-color: #ed1c24;
}

.energy_saving-icon.g {
  background-color: #ed1c24;
}

.energy_saving-icon.g::after {
  border-left-color: #ed1c24;
}

.advantages_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.advantages_title {
  font-size: 16px;
  font-weight: 600;
  padding-right: 20px;
}

.advantages_header .advantages_icon {
  flex: 0 0 165px;
  color: var(--base-color-5);
  font-size: 11px;
  display: flex;
  align-items: center;
}

.advantages_header .advantages_icon .icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  fill: var(--base-color-5);
}

.advantages ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 24px;
}

.advantages_icon {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages_icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.advantages_icon span {
  font-size: 11px;
  text-align: center;
  color: var(--base-color-7);
}

.video_slider {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.video_slider-header {
  display: flex;
  margin-bottom: 15px;
}

.video_slider.big_video-slider .video_slider-header {
  position: relative;
}

.video_slider-header .col {
  display: flex;
  flex-direction: column;
}

.video_slider-header .details_desc-title::before {
  width: calc(100% - 34px);
}

.video_slider-header .btn {
  display: none;
}

.video_slider-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.video_slider-subtitle {
  font-size: 13px;
  color: var(--text-light);
}

.video_swiper {
  margin-right: -15px;
  width: calc(100% + 15px);
}

.video_swiper .slider_arrow {
  display: none;
  margin-top: -18px;
}

.video_swiper .custom-scrollbar {
  margin-right: 15px;
  margin-bottom: 0;
}

.video_swiper-item {
  text-decoration: none;
  color: var(--text-color);
  font-size: 11px;
  font-weight: 600;
  width: 215px;
  transition: 0.3s;
}

.video_swiper-item:hover {
  color: var(--main-color-1);
}

/*.video_swiper:not(.swiper-initialized) .video_swiper-item {*/
/*  padding-right: 10px;*/
/*}*/

.video_swiper-img {
  margin-bottom: 5px;
  height: 125px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.video_swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.video_swiper-title {
  font-size: 11px;
  font-weight: 600;
}

.play-btn {
  display: flex;
  border-radius: 50%;
  background-color: var(--main-color-1);
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.play-btn::before {
  content: "";
  width: 80px;
  height: 80px;
  background-color: var(--main-color-1);
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.play-btn .icon {
  fill: var(--base-color-1);
  margin: 20px 0 0 22px;
  width: 16px;
  height: 16px;
}

.video_swiper + .btn {
  margin-top: 20px;
  align-self: center;
}

.details_spec {
  margin-bottom: 60px;
}

.details_spec-header {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 15px;
}

.details_desc-title {
  font-size: 20px;
  font-weight: 600;
  background-color: var(--base-color-1);
  margin-bottom: 5px;
  padding-right: 10px;
  width: max-content;
}

.details_desc-title::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 23px;
  left: 0;
  background-color: var(--base-color-3);
  z-index: -1;
}

.details_desc-subtitle {
  font-size: 13px;
  color: var(--text-light);
}

.char_box {
  font-size: 13px;
  margin-bottom: 10px;
}

.char_grid.char-desk {
  display: none;
}

.details_spec-section {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
}

.details_spec ul + .details_spec-section {
  margin-top: 10px;
}

.details_spec li {
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
}

.details_spec li:nth-child(2n+1) {
  background-color: var(--base-color-2);
}

.details_spec li span {
  width: 60%;
  color: var(--base-color-7);
}

.details_spec li b {
  text-align: end;
  padding-left: 10px;
  width: 40%;
  font-weight: 600;
  color: var(--text-color);
}

.cat_article-header {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 15px;
}

.video_grid {
  margin-bottom: 60px;
}

.interior_details-header {
  position: relative;
  display: flex;
  margin-bottom: 20px;
}

.interior_details-header .col {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.interior_details-header .details_desc-title::before {
  width: calc(100% - 34px);
}

.interior_swiper .slider_arrow {
  display: none;
  margin-top: -25px;
}

.interior_image {
  display: block;
  width: 100%;
  height: auto;
}

.interior_image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.interior_swiper .swiper-pagination.slider_pag .swiper-pagination-bullet {
  background-color: var(--main-color-6);
}

.interior_swiper .swiper-pagination.slider_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-color-1);
}

.cat_details-description {
  margin-bottom: 60px;
}

.cat_details-description > .centre > .col-2 {
  display: none;
}


.cat_details-description article * + h1,
.cat_details-description article * + h2,
.cat_details-description article * + h3,
.cat_details-description article * + h4,
.cat_details-description article * + h5 {
  margin-top: 0;
}


/* new stile */
.cat_details-header > .row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cat_details-header > .row .cat_details-code {
  font-size: 13px;
  margin-bottom: 0;
  margin-right: auto;
}

.cat_details-header > .row .cat_details-compare {
  margin-left: auto;
  padding: 0;
}

.cat_details-header > .row .cat_details-compare:hover {
  background-color: transparent;
}

.cat_details-header > .row .cat_details-compare .icon_wrap {
  margin-right: 0;
}

.cat_details-info > .centre > .col-2 .row.details_desk-code {
  display: none;
}

.cat_details-variants {
  display: flex;
  flex-direction: column;
}

.cat_details-variants .col.col-variant {
  display: flex;
  flex-direction: column;
}

.details_variants {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.details_variants-title {

  font-size: 13px;
  font-weight: 700;
  flex: 0 1 auto;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 0 0 0;
}

.details_variants-title span {
  text-transform: lowercase;
}
.details_variants-title span:first-letter {
  text-transform: uppercase;
}

.details_variants ul {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
}

.details_variants ul li {
  margin: 0 0 10px 10px;
}

.details_variants ul a {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid var(--base-color-4);
  transition: 0.3s;
  position: relative;
}

.details_variants ul a:hover,
.details_variants ul a.active {
  border-color: var(--success);
}

.details_variants ul a.active::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--success);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -4px;
}

.details_variants ul a.active::after {
  content: "";
  width: 6px;
  height: 4px;
  border-left: 1px solid var(--base-color-1);
  border-bottom: 1px solid var(--base-color-1);
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-45deg);
}

.details_variants ul a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat_details-variants .col.col-discount {
  display: flex;
  flex-direction: column;
}

.details_discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--main-color-5);
  background-color: var(--main-color-7);
  padding: 8px;
  margin-bottom: 20px;
  position: relative;
  transition: 0.3s;
}

.details_discount-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.details_discount-box > a {
  display: block;
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 1;
}

.details_discount-box > a:not(:nth-child(1)):not(:nth-child(3)) {
  display: none;
}

.details_discount-box > a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/discount-gift.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.details_discount-box > div:nth-child(1)::before {
  transform: translateX(-20px);
}

.details_discount-box > div:nth-child(3)::before {
  transform: translateX(20px);
}

.details_discount-box > div img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--main-color-5);
}

.details_discount-box > span {
  color: var(--main-color-1);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin: 0 8px;
}

.details_discount-title {
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.cat_details-price > .col.col-price {
  display: none;
}

.cat_details-price > .col.col-btns {
  width: 100%;
}

.popup.details_zoom {
  max-width: 1190px;
}

.eco_popup {
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  max-width: calc(100% - 40px);
}

.eco_popup-icon {
  width: 38px;
  height: 30px;
  margin: 0 0 5px 10px;
  object-fit: contain;
}

.popup.details_sketch-popup {
  max-width: 1190px;
}

.sketch_wrap {
  position: relative;
}

.sketch_wrap .btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.sketch_wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/*DOCUMENTATIONS*/
.sketch {
  margin-bottom: 60px;
}

.sketch-header {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 16px;
}

.sketch li {
  width: 100%;
  height: auto;
  position: relative;
}

.sketch li + li {
  margin-top: 15px;
}

.sketch li img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
  cursor: pointer;
}

.zoom_btn.open_sketch-popup {
  display: none;
}

.sketch li .btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.sketch li .btn .icon {
  margin-right: 0;
}

.btn.model-btn {
  margin: 0;
}

.btn.model-btn span {
  flex: 0 1 auto;
}

.download_doc-header {
  position: relative;
  display: flex;
  padding-bottom: 42px;
  margin-bottom: 26px;
}

.download_doc-header .details_desc-title::before {
  width: calc(100% - 34px);
}

.download_doc-header .btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.download_shadow {
  display: none;
}

.download_doc-swiper {
  width: calc(100% + 15px);
  margin-right: -15px;
}

.download_doc-swiper .custom-scrollbar {
  margin-right: 15px;
}

.doc_item {
  display: flex;
  width: 250px;
  padding: 10px;
  background-color: var(--base-color-2);
  border-radius: var(--border-radius);
}

.doc_item .col:nth-child(1) {
  flex: 1 1 auto;
  padding-right: 10px;
}

.doc_item-title {
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.doc_item-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.doc_item-size {
  font-size: 11px;
  color: var(--text-light);
}

.doc_item .col:nth-child(2) .btn .icon {
  margin-right: 0;
}

.model_list li + li {
  margin-top: 10px;
}

.model_list .doc_item {
  width: 100%;
}

/*PHOTO PREFER*/
.photo_prefer {
  padding-bottom: 80px;
  overflow: hidden;
  padding-top: 60px;
  margin-top: -60px;
}

.photo_prefer .centre {
  display: flex;
  flex-direction: column;
}

.mobile_info {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.mobile_info-wrap {
  display: flex;
  flex-direction: column;
}

.plus_icon {
  font-size: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: relative;
}

.plus_icon::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: var(--main-color-1);
  opacity: 0.2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plus_icon .icon {
  fill: var(--base-color-1);
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fireplace_prefer.active .plus_icon .icon {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile_info-wrap > .icon {
  margin-top: -5px;
  margin-left: 12px;
  width: 28px;
  height: 28px;
  fill: var(--base-color-5);
}

.mobile_info span {
  max-width: 190px;
  color: var(--text-light);
  padding-left: 8px;
}

.photo_fireplace {
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
  height: auto;
  position: relative;
}

.photo_fireplace::before {
  content: "";
  display: block;
  width: 150%;
  height: 125%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/bg-logo-preferences.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.fireplace_image {
  display: block;
  width: 100%;
  height: auto;
}

.fireplace_prefer {
  position: absolute;
}

.popup_prefer {
  display: flex;
  align-items: center;
  width: 190px;
  padding: 15px;
  border-radius: var(--border-radius);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--base-color-1);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.55);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}

.fireplace_prefer.active .popup_prefer {
  visibility: visible;
  opacity: 1;
}

.fireplace_prefer.mob-left .popup_prefer {
  left: -6px;
  transform: translateX(0);
}

.fireplace_prefer.mob-right .popup_prefer {
  left: auto;
  right: -6px;
  transform: translateX(0);
}

.popup_prefer::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: var(--base-color-1);
}

.fireplace_prefer.mob-left .popup_prefer::before {
  left: 8px;
  transform: translate(0, 50%) rotate(45deg);
}

.fireplace_prefer.mob-right .popup_prefer::before {
  left: auto;
  right: 8px;
  transform: translate(0, 50%) rotate(45deg);
}

.popup_prefer img {
  flex: 0 0 34px;
  max-width: 34px;
  display: block;
  height: auto;
  object-fit: contain;
}

.popup_prefer-text {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}

.popup_prefer-text b {
  font-size: 13px;
  font-weight: 600;
}

.popup_prefer-text span {
  font-size: 11px;
  color: var(--text-light);
}

/*COMPARE*/
.compare {
  margin-bottom: 80px;
}

.compare > .centre {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.compare .headline_1 {
  padding: 0 15px;
}

.compare .become_partner .centre {
  margin: 0;
}

.compare_control {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding: 0 15px;
}

.compare_toggle {
  display: flex;
  margin-bottom: 30px;
}

.compare_control b {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.compare_toggle label {
  position: relative;
  width: 50%;
  cursor: pointer;
}

.compare_toggle label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  padding: 0;
  opacity: 0;
}

.compare_toggle label span {
  font-size: 13px;
  position: relative;
  padding: 0 10px 0 25px;
}

.compare_toggle label span::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid var(--base-color-4);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.compare_toggle label input[type=radio]:checked + span::before {
  border-color: var(--main-color-1);
}

.compare_toggle label span::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  opacity: 0;
}

.compare_toggle label input[type=radio]:checked + span::after {
  opacity: 1;
}

.compare_buttons {
  display: flex;
  justify-content: space-between;
}

.compare_buttons .btn {
  width: calc(50% - 14px);
}

.fixed_compare {
  display: block;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: var(--base-color-1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

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

.fixed_compare .centre {
  padding: 0;
}

.fixed_compare .compare_control {
  display: none;
}

.fixed_compare .swiper-slide {
  width: 160px;
}

.fixed_compare .top_product-image {
  height: 44px;
}

.fixed_compare .top_product-info a {
  font-size: 11px;
  -webkit-line-clamp: 2;
  height: 28px;
}

.fixed_compare .top_product-price {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: auto;
}

.compare_inner {
  position: relative;
}

.compare_inner + .compare_inner {
  margin-top: 45px;
}

.compare_inner aside {
  position: absolute;
  top: 257px;
  left: 0;
  width: 100%;
}

.compare_inner .characteristics > b {
  height: 57px;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0 10px 0;
}

.compare_inner .characteristics ul {
  display: flex;
  flex-direction: column;
}

.compare_inner .characteristics ul li {
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 8px;
  border-bottom: 1px solid var(--base-color-3);
}

.compare_inner .characteristics ul li + li {
  margin-top: 35px;
}

.compare_inner .characteristics ul li:nth-child(2n+1) {
  background-color: var(--base-color-2);
}

.compare_inner .characteristics ul li span {
  height: 19px;
  overflow: hidden;
  text-align: center;
  color: var(--base-color-7);
}

.compare_inner aside .compare_control {
  display: none;
}

.compare_inner.compare_list-item aside{
  position: relative;
  top: auto;
  left: auto;
}

.compare_inner.compare_list-item aside .compare_control {
  display: flex;
  margin-bottom: 18px;
}

.compare_slider .swiper-slide {
  position: relative;
  width: 160px;
  border-top: 1px solid var(--base-color-3);
}

.compare_slider .custom-scrollbar {
  margin-left: 15px;
  margin-right: 15px;
}

.delete_compare-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  right: 4px;
  border-radius: var(--border-radius);
}

.delete_compare-item .icon {
  width: 16px;
  height: 16px;
  fill: var(--danger);
}

.top_product,
.bottom_product {
  display: flex;
  flex-direction: column;
  padding: 6px 6px 10px 6px;
  border-right: 1px solid var(--base-color-3);
  border-bottom: 1px solid var(--base-color-3);
  border-top: 1px solid var(--base-color-3);
}

.top_product-image,
.bottom_product-image {
  display: block;
  width: 100%;
  height: 140px;
}

.top_product-image img,
.bottom_product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_product-info,
.bottom_product-info {
  display: flex;
  flex-direction: column;
}

.top_product-info a,
.bottom_product-info a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  height: 54px;
}

.top_product-price,
.bottom_product-price {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 40px;
}

.top_product-price del,
.bottom_product-price del {
  height: 16px;
  overflow: hidden;
  font-size: 11px;
  color: var(--base-color-5);
}

.top_product-price span,
.bottom_product-price span {
  font-size: 11px;
  font-weight: 600;
  height: 23px;
  overflow: hidden;
}

.top_product-price span b,
.bottom_product-price span b {
  font-size: 16px;
  margin-right: 3px;
}

.compare_slider .swiper-slide ul {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
}

.compare_slider .swiper-slide ul li {
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  padding: 8px;
  z-index: 1;
  border-right: 1px solid var(--base-color-3);
}

.bottom_product-btns {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.bottom_product-btns .btn + .btn {
  margin-top: 6px;
}

.compare_slider .swiper-slide ul li:nth-child(2n+1) {
  background-color: var(--base-color-2);
}

.compare_slider .swiper-slide ul li span {
  height: 19px;
  overflow: hidden;
  text-align: center;
}

/*BLOG TEM 1*/
.blog_temp-1 {
  margin-bottom: 80px;
}

.blog_temp-1 .centre {
  display: flex;
  flex-direction: column;
}

.blog_1-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.blog_1-item {
  font-size: 13px;
  color: var(--text-contrast);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
  height: 0px;
  background-color: var(--base-color-6);
  padding-bottom: 100%;
}

.blog_1-item img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.75);
  object-fit: cover;
}

.blog_1-item span {
  display: block;
  width: auto;
  max-width: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
}

.blog_1-item span::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--base-color-1);
  border-right: 1px solid var(--base-color-1);
  transform: rotate(-45deg);
  position: relative;
  transition: 0.3s;
}

.blog_1-item:hover span::after {
  transform: translateX(4px) rotate(-45deg);
}

/*BLOG TEM 2*/
.blog_temp-2 {
  margin-bottom: 80px;
}

.blog_temp-2 .centre {
  display: flex;
  flex-direction: column;
}

.blog_2-grid {
  display: grid;
  grid-gap: 15px;
}

.blog_2-item {
  display: flex;
  padding: 10px;
  border: 1px solid var(--base-color-2);
  border-radius: var(--border-radius);
}

.blog_2-image {
  flex: 0 0 86px;
  display: block;
  height: 65px;
}

.blog_2-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.blog_2-item figcaption {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.blog_2-title {
  order: -1;
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.blog_2-item figcaption time {
  font-size: 11px;
  color: var(--base-color-5);
  display: block;
  margin-bottom: 5px;
}

.blog_2-text {
  font-size: 11px;
  color: var(--base-color-7);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 48px;
  margin-bottom: 10px;
}

.blog_2-read_more {
  color: var(--main-color-1);
  text-decoration: none;
  font-size: 13px;
}

.blog_2-read_more::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--main-color-1);
  border-right: 1px solid var(--main-color-1);
  position: relative;
  margin-left: 6px;
  margin-bottom: 1px;
  transform: rotate(-45deg);
}

/*BLOG DETAILS*/
.blog_details {
  margin-bottom: 80px;
}

.blog_details .centre {
  display: flex;
  flex-direction: column;
}

.blog_details-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.blog_details-header time {
  font-size: 11px;
  color: var(--base-color-5);
}

.blog_details .centre aside {
  display: flex;
  flex-direction: column;
  order: 1;
}

.interested_title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.interested_item {
  display: flex;
  padding: 10px;
  border: 1px solid var(--base-color-2);
  border-radius: var(--border-radius);
}

.interested_item + .interested_item {
  margin-top: 15px;
}

.interested_item .col-1 {
  flex: 0 0 86px;
}

.interested_image {
  margin-bottom: 8px;
  display: block;
  width: 100%;
  height: 65px;
}

.interested_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.interested_item time {
  font-size: 11px;
  color: var(--base-color-5);
}

.interested_item .col-2 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.interested_name {
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.interested_text {
  font-size: 11px;
  color: var(--base-color-7);
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 46px;
}

.interested_link {
  color: var(--main-color-1);
  position: relative;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.interested_link:hover {
  color: var(--main-color-2);
}

.interested_link::after {
  content: "";
  display: inline-block;
  margin: 0 0 1px 6px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--main-color-1);
  border-right: 1px solid var(--main-color-1);
  position: relative;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.interested_link:hover::after {
  border-color: var(--main-color-2);
}

.blog_details article {
  margin-bottom: 80px;
}

/*GALLERY*/
.gallery {
  margin-bottom: 80px;
}

.gallery .centre {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 auto;
  padding: 0 0 0 15px;
  max-width: none;
}

.gallery_slider .slider_arrow {
  display: none;
}

.gallery_item {
  display: flex;
  flex-direction: column;
}

.gallery_item img {
  width: auto;
  height: 265px;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.gallery_bottom {
  display: flex;
  flex-direction: column;
}

.gallery_bottom span {
  color: var(--base-color-7);
  font-size: 13px;
  margin-bottom: 5px;
}

.gallery_bottom a {
  font-size: inherit;
  text-decoration: none;
  color: var(--main-color-1);
  transition: 0.3s;
}

.gallery_bottom a:hover {
  color: var(--main-color-2);
}

.gallery_bottom a::after {
  content: "";
  display: inline-block;
  margin: 0 0 1px 6px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--main-color-1);
  border-right: 1px solid var(--main-color-1);
  transform: rotate(-45deg);
  transition: 0.3s;
}

.gallery_bottom a:hover::after {
  border-color: var(--main-color-2);
}

.gallery_slider .custom-scrollbar {
  max-width: 1070px;
}

/*DEALER LIST*/
.dealer_list {
  margin-bottom: 80px;
}

.dealer_list .centre {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.dealer_list .headline_1 {
  padding: 0 15px;
}

.dealer_list .dealer_title.headline_1 {
  text-align: center;
}

.dealer_list-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 0 15px;
}

.dealer_list-header > .col-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.select_city {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}

.select_city > * {
  margin-right: 20px;
}

.select_city a {
  font-size: inherit;
  text-decoration: none;
  color: var(--main-color-1);
  transition: 0.3s;
}

.select_city a.active {
  text-decoration: underline;
}

.select_city a:hover {
  color: var(--main-color-2);
}

.dealer_list-header > .col-2 {
  display: flex;
  flex-direction: column;
}

.city_list {
  margin-bottom: 20px;
}

.verify_code {
  display: flex;
  flex-direction: column;
}

.verify_code .input_wrap {
  margin-bottom: 10px;
}

.dealer_list #shops_map {
  margin-bottom: 40px;
  width: 100% !important;
  height: 360px !important;
}

.map_link {
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  color: var(--main-color-1);
  margin: 5px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: max-content;
  max-width: 100%;
  position: relative;
}

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

.map_link::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
  margin-right: 6px;
  background-image: url(../images/trail.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

.dealer_grid {
  display: grid;
  grid-gap: 10px;
  font-size: 13px;
}

.dealer_grid-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
}

.dealer_grid-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dealer_grid-title a {
  display: block;
  color: var(--text-color);
  transition: 0.3s;
}

.dealer_grid-inner {
  display: flex;
}

.dealer_grid-inner > .col:nth-child(1) {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.dealer_grid-inner > .col:nth-child(2) {
  padding-left: 10px;
  flex: 0 0 auto;
}

.dealer_image {
  width: 120px;
  height: 120px;
}

.dealer_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.where_store,
.work_time,
.dealer_phone,
.dealer_email {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.where_store > .icon,
.work_time .icon,
.dealer_phone > .icon,
.dealer_email > .icon {
  display: block;
  width: 12px;
  height: 12px;
  fill: var(--main-color-1);
  position: absolute;
  left: 0;
  top: 3px;
}

.site_link.where_store-link {
  display: flex;
  align-items: center;
}

.site_link.where_store-link::after {
  content: "";
  display: block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid var(--main-color-1);
  border-right: 1px solid var(--main-color-1);
  position: relative;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.site_link.where_store-link:hover::after {
  border-color: var(--main-color-2);
}

.work_time-info {
  color: var(--base-color-7);
}

.dealer_phone ul a,
.dealer_email ul a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  transition: 0.3s;
}

.dealer_phone ul a:hover,
.dealer_email ul a:hover {
  color: var(--main-color-1);
}

.dealer_email ul a {
  font-weight: 400;
  color: var(--main-color-1);
}

.dealer_email ul a:hover {
  color: var(--main-color-2);
}

.dealer_grid-btns {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
}

.dealer_grid-item .btn {
  font-size: 10px;
  margin: 0;
  padding: 8px 14px;
  min-height: 46px;
}

.dealer_grid-item .btn:nth-child(1) {
  flex: 1 1 auto;
}

.dealer_grid-item .btn:nth-child(2) {
  margin-left: 10px;
}

.show-dealer_page {
  margin-top: 16px;
  align-self: flex-start;
}

.dealer_bottom-btns {
  display: flex;
}

.dealer_bottom-btns .btn:nth-child(1) {
  flex: 1 1 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.dealer_bottom-btns .btn:nth-child(2) {
  flex: 0 1 auto;
  margin-left: 10px;
  padding-left: 16px;
  padding-right: 16px;
}

.dealer_bottom-btns .btn:nth-child(2) .icon {
  flex: 0 0 14px;
}

/*FOR CUSTOMERS*/
.for_customers {
  margin-bottom: 80px;
}

.for_customers-aside {
  display: none;
  flex-direction: column;
  padding: 34px 15px 30px 15px;
  border-radius: var(--border-radius);
  background-color: var(--base-color-2);
}

.for_customers-aside.active,
.for_customers-aside.main_page {
  display: flex;
}

.for_customers-menu {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--base-color-3);
}

.for_customers-menu a {
  text-decoration: none;
  font-size: 16px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  padding: 5px 0;
  transition: 0.3s;
}

.for_customers-menu a.active {
  font-weight: 600;
}

.for_customers-menu a:hover {
  color: var(--main-color-1);
}

.for_customers-menu a .icon {
  flex: 0 0 16px;
  margin-right: 14px;
}

.for_customers-menu a.active .icon {
  fill: var(--main-color-1);
}

.for_customers-contacts {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--base-color-3);
}

.for_customers-contacts > b {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.for_customers-contacts > ul > li + li {
  margin-top: 10px;
}

.for_customers-contacts .info_list > .icon {
  margin-right: 14px;
}

.for_customers-contacts .info_list ul a {
  color: var(--text-color);
}

.for_customers-contacts .info_list ul a:hover {
  color: var(--main-color-1);
}

.for_customers-bottom {
  font-size: 13px;
  color: var(--base-color-7);
}


.customers_menu {
  display: flex;
  flex-direction: column;
}

.customers_menu ul {
  display: flex;
  flex-wrap: wrap;
}

.customers_menu ul li {
  margin: 0 0 16px 0;
  padding-left: 0;
  width: 100%;
}

.customers_menu ul li::before {
  display: none;
}

.customers_menu ul a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 10px 30px 10px 10px;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
  position: relative;
}

.customers_menu ul a:hover {
  color: var(--main-color-1);
}

.customers_menu ul a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
}

.customers_menu ul a .icon {
  margin-right: 16px;
  width: 22px;
  height: 22px;
}


.for_customers-content {
  padding-top: 50px;
}

.for_customers-content .centre {
  padding: 0;
}

.delivery_methods {
  display: flex;
  flex-direction: column;
}

.delivery_list {
  padding-left: 25px;
}

.delivery_list li {
  list-style: auto;
}

.delivery_list li + li {
  margin-top: 20px;
}

.delivery_list li::marker {
  color: var(--main-color-1);
  font-weight: 600;
}

.delivery_list li b {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
}

.delivery_list li > span {
  font-size: 13px;
}

.delivery_list .btn {
  margin-top: 10px;
}

.payment_methods {
  display: flex;
  flex-direction: column;
}

.payment_list > li {
  display: flex;
}

.payment_list > li:before {
  display: none;
}

.payment_list > li + li {
  margin-top: 40px;
}

.payment_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background-image: url("../images/payment-item-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.payment_icon img {
  width: 30px;
  height: 30px;
}

.payment_list li > .payment_icon {
  display: none;
}

.payment_column {
  display: flex;
  flex-direction: column;
}

.payment_title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.payment_title .payment_icon {
  margin-right: 12px;
}

.payment_title > span {
  font-size: 16px;
  font-weight: 600;
}

.payment_text {
  font-size: 13px;
  margin-bottom: 10px;
}

.payment_percent {
  display: flex;
}

.payment_percent b {
  flex: 0 0 auto;
}

.payment_percent b span {
  color: var(--main-color-1);
  margin-right: 6px;
}

.payment_percent ul {
  display: flex;
  flex-direction: column;
}

.payment_percent ul li {
  padding-left: 25px;
  position: relative;
}

.payment_percent ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 10px;
}

.for_customers-content .one_col_form {
  margin: 80px 0 0 0;
}

.for_customers-content .phone_form {
  background-color: transparent;
  padding: 0;
}

.how_buy {
  display: flex;
  flex-direction: column;
}

.how_buy-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.how_buy-list {
  padding-left: 25px;
  font-size: 14px;
}

.how_buy-list li {
  list-style: auto;
}

.how_buy-list li + li {
  margin-top: 15px;
}

.how_buy-list li::marker {
  color: var(--main-color-1);
  font-weight: 600;
}

.reg_guarantee {
  border-radius: 40px;
  padding: 30px 15px 35px 15px;
  display: flex;
  flex-direction: column;
  width: calc(100% + 30px);
  margin: 0 -15px 80px -15px;
  background-color: var(--base-color-2);
  position: relative;
  overflow: hidden;
}

.progress_line {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--main-color-6);
  height: 8px;
}

.fill_line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url("../images/fill-line.png");
  background-size: contain;
  border-radius: 4px;
  animation: loading 5s linear 0s infinite;
}

@keyframes loading {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 70px 0;
  }
}

.progress_info {
  position: absolute;
  top: -3px;
  right: 40px;
  font-size: 11px;
  color: var(--main-color-3);
}

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

.reg_guarantee .input_wrap {
  margin-bottom: 15px;
}

.input_wrap.sms_code .input_message a {
  margin-left: 6px;
}

.reg_guarantee .checkbox_styled {
  margin-bottom: 10px;
}

.reg_guarantee .checkbox_styled span {
  display: block;
}

.input_wrap.sms_code input {
  text-align: center;
}

.reg_guarantee button.btn {
  margin-top: 20px;
}

.warning_info {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 10px 10px 15px 10px;
  background-color: var(--main-color-6);
  border-radius: var(--border-radius);
}

.warning_info .icon {
  flex: 0 0 70px;
  height: 70px;
}

.warning_info > div {
  display: flex;
  flex-direction: column;
}

.warning_info b {
  font-size: 16px;
  font-weight: 600;
}

.register_process {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

article ul.register_process {
  padding-left: 0;
}

.register_process > li {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
  background-color: var(--base-color-2);
  padding: 15px 15px 20px 15px;
}

.register_process > li::before {
  display: none;
}

.process_image {
  margin-right: 15px;
  flex: 0 0 45px;
  max-width: 45px;
  height: auto;
  display: block;
}

.process_content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.process_title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process_title span {
  color: var(--main-color-1);
}

.process_text {
  font-size: 16px;
  margin-bottom: 6px;
}

.process_list {
  font-size: 14px;
  line-height: 1.7;
}

.process_list li {
  padding-left: 15px;
}

.process_list li + li {
  margin-top: 5px;
}

.process_list li::before {
  background-color: var(--main-color-1);
  width: 7px;
  height: 7px;
}

.become_auth {
  display: flex;
  flex-direction: column;
}

.become_auth-subtitle {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--base-color-6);
}

.become_auth-text {
  font-size: 16px;
  margin-bottom: 30px;
}

.become_auth-call {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
  padding: 20px;
  background-color: var(--base-color-2);
  border-radius: var(--border-radius);
}

.become_auth-call > span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.become_auth-form {
  display: flex;
  flex-direction: column;
}

.become_auth-form .input_wrap {
  margin-bottom: 20px;
  position: relative;
}

.become_auth-form .btn {
  margin-top: 5px;
}

.show_pass {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.become_auth-form .show_pass {
  right: 12px;
  top: 34px;
}

.show_pass .icon {
  width: 20px;
  height: 20px;
  fill: var(--base-color-3);
}

.show_pass .icon.hidden_icon {
  display: none;
}

.show_pass.active .icon.hidden_icon {
  display: block;
}

.show_pass.active .icon.show_icon {
  display: none;
}

.input_wrap.password_box input {
  background-image: none;
}

/*CONTACTS*/
.contacts {
  padding: 50px 0;
  position: relative;
}

.breadcrumbs + .contacts {
  margin-top: -55px;
}

.contacts_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--base-color-6);
}

.contacts_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts .centre {
  display: flex;
  flex-direction: column;
}

.contacts .headline_1 {
  margin-bottom: 20px;
}

.contacts_row > .col-1 {
  margin-bottom: 20px;
}

.contacts_info {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.contacts_info .icon {
  display: block;
  width: 12px;
  height: 12px;
  fill: var(--main-color-1);
  position: absolute;
  top: 6px;
  left: 0;
}

.contacts_info ul a {
  color: var(--text-color);
  font-size: 16px;
  text-decoration: none;
}

.contacts_info.phone_info ul a {
  font-weight: 600;
}

.store_info li {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.store_info li .icon {
  display: block;
  width: 12px;
  height: 12px;
  fill: var(--main-color-1);
  position: absolute;
  top: 6px;
  left: 0;
}

.store_info li small {
  color: var(--base-color-5);
  font-size: 11px;
}

.store_info li span {
  font-size: 16px;
  margin-bottom: 5px;
}

.store_info-link {
  font-size: inherit;
  text-decoration: none;
  color: var(--main-color-1);
  transition: 0.3s;
}

.store_info-link:hover {
  color: var(--main-color-2);
}

.store_info-link::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  margin-bottom: 1px;
  border-bottom: 1px solid var(--main-color-1);
  border-right: 1px solid var(--main-color-1);
  transform: rotate(-45deg);
}

.contacts_social {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.contacts_social > b {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.contacts_social ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contacts_social ul li {
  margin: 0 15px 15px 15px;
}

.contacts_social ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--main-color-1);
  border-radius: 50%;
}

.contacts_social ul a .icon {
  width: 25px;
  height: 25px;
  fill: var(--main-color-1);
}

.contacts_btns {
  display: flex;
  flex-direction: column;
}

.contacts_btns .btn + .btn {
  margin-top: 10px;
}

/*CHOOSE MAP*/
.choose_map {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--base-color-2);
}

.choose_map-bg {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.choose_map .centre {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

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

/*FEEDBACK*/
.feedback {
  padding: 60px 0 80px 0;
}

.feedback > .centre > .col-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.feedback_text {
  font-size: 16px;
}

.feedback_form {
  display: flex;
  flex-direction: column;
}

.feedback_form .input_wrap {
  margin-bottom: 10px;
}

.feedback_form .checkbox_styled {
  margin-bottom: 20px;
  text-align: start;
}

.feedback_bottom {
  display: flex;
  flex-direction: column-reverse;
}

.feedback_bottom .btn {
  margin-bottom: 15px;
}

.feedback_bottom > span {
  font-size: 11px;
  text-align: center;
  color: var(--base-color-5);
}

.feedback .feedback_form {
  color: var(--text-color);
  position: relative;
  right: auto;
  bottom: auto;
  padding: 0;
  z-index: 0;
  background-color: transparent;
}

.feedback .feedback_form input[type=text],
.feedback .feedback_form textarea {
  width: 100%;
}

/*CATALOG DOWNLOAD*/
.catalog_download {
  margin-bottom: 80px;
}

.catalog_download .centre {
  display: flex;
  flex-direction: column;
}

.catalog_download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.catalog_download-grid li {
  display: flex;
  flex-direction: column;
}

.catalog_download-image {
  display: block;
  width: 100%;
  height: auto;
}

.catalog_download-grid li img {
  display: block;
  width: 100%;
  height: 252px;
  object-fit: contain;
  margin-bottom: 15px;
}

.magazine_name {
  font-size: 13px;
  margin-bottom: 5px;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
}

.magazine_download {
  display: flex;
  flex-direction: column;
}

.magazine_size {
  font-size: 11px;
  color: var(--base-color-6);
  margin-bottom: 15px;
}

/*GET MAGAZINE*/
.get_magazine {
  margin-bottom: 80px;
  overflow: hidden;
}

.get_magazine .col-1 {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
  position: relative;
}

.get_magazine .col-1::before {
  content: "";
  width: 280px;
  height: 210px;
  background-image: url("../images/magazine-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -30px;
  right: -45px;
  z-index: -1;
}

.get_magazine-subtitle {
  font-size: 13px;
  width: calc(100% - 122px);
}

.get_magazine-form {
  display: flex;
  flex-direction: column;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 30px 15px 40px 15px;
  background-color: var(--base-color-2);
  border-radius: 20px;
}

.get_magazine-form .input_wrap {
  margin-bottom: 20px;
}

.get_magazine-bottom {
  display: flex;
  flex-direction: column-reverse;
}

.get_magazine-bottom .btn {
  margin-bottom: 15px;
}

.get_magazine-bottom > span {
  text-align: center;
  font-size: 11px;
  color: var(--base-color-5);
}

/*LOGIN*/
.login {
  padding-top: 20px;
  margin-bottom: 80px;
}

.login_form {
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
  background-color: var(--base-color-2);
  border-radius: 20px;
}

.login_form .col-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.login_form .col-1 .btn {
  margin-bottom: 5px;
}

a.site_link.remind_pass {
  font-size: 13px;
}

.remind_pass {
  margin-bottom: 5px;
}

.login_form .col-2 {
  display: flex;
  flex-direction: column;
}

.login_form .input_wrap {
  margin-bottom: 20px;
}

.enter_with {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.enter_with > span {
  font-size: 16px;
  width: 100%;
  margin-bottom: 6px;
}

.enter_with a {
  margin: 0 8px 8px 0;
  padding: 5px 8px;
  border: 1px solid var(--base-color-4);
  color: var(--text-color);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.enter_with a:hover {
  color: var(--main-color-1);
}

.enter_with a .icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: var(--main-color-1);
  margin-right: 6px;
}

.enter_with .abcRioButtonBlue {
  margin: 0 8px 8px 0;
  padding: 5px 8px;
  border: 1px solid var(--base-color-4);
  color: var(--text-color);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  width: auto !important;
  height: auto !important;
  border-radius: var(--border-radius);
  transition: 0.3s;
  background-color: transparent;
  box-shadow: none;
}

.enter_with .abcRioButtonBlue:hover {
  color: var(--main-color-1);
  background: transparent;
  box-shadow: none;
}

.enter_with .abcRioButtonBlue .abcRioButtonContentWrapper {
  display: flex;
  align-items: center;
}

.enter_with .abcRioButtonBlue * {
  font-size: 13px !important;
  line-height: 1.2 !important;
}

.enter_with .abcRioButtonBlue .abcRioButtonIcon {
  padding: 0 !important;
}

.enter_with .abcRioButtonContents {
  margin: 0 0 0 6px !important;
}

/*CABINET*/
.cabinet {
  margin-bottom: 80px;
}

.cabinet .centre {
  display: flex;
  flex-wrap: wrap;
}

.cabinet .headline_1 {
  width: 100%;
}

.cabinet > .centre > .col-1 {
  display: flex;
  flex-direction: column;
  padding: 34px 15px 30px 15px;
  border-radius: var(--border-radius);
  background-color: var(--base-color-2);
  width: 100%;
}

.cabinet > .centre > .col-1 a {
  text-decoration: none;
  font-size: 16px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  padding: 5px 0;
  transition: 0.3s;
}

.cabinet > .centre > .col-1 a:hover {
  color: var(--main-color-1);
}

.cabinet > .centre > .col-1 a.exit:hover {
  color: var(--danger);
}

.cabinet > .centre > .col-1 a.active {
  font-weight: 600;
}

.cabinet > .centre > .col-1 a .icon {
  flex: 0 0 16px;
  margin-right: 14px;
}

.cabinet > .centre > .col-1 a.active .icon {
  fill: var(--main-color-1);
}

.cabinet > .centre > .col-2 {
  width: 100%;
  padding-top: 30px;
}

.edit_user-info {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
}

.edit_user-info .input_wrap {
  margin-bottom: 20px;
}

.order_row {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  padding: 10px;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid var(--base-color-3);
  transition: 0.3s;
}

.order_row.active {
  background-color: #fff;
}

.order_show {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.order_row-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 250px;
  margin-right: 10px;
}

.order_sum {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  width: 100%;
  max-width: 280px;
  position: relative;
}

.order_sum::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #898989;
  border-left: 1px solid #898989;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}

.order_sum-price {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--text-color);
}

.order_row.active .order_sum::after {
  transform: translateY(-50%) rotate(135deg);
}

.order_number {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}

.order_status {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.status_completed {
  color: var(--sub_main-color);
}

.status_completed::before {
  content: "";
  width: 10px;
  height: 5px;
  border-bottom: 1px solid var(--sub_main-color);
  border-left: 1px solid var(--sub_main-color);
  position: absolute;
  top: 6px;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.status_canceled {
  color: #eb2e2e;
}

.status_canceled::before,
.status_canceled::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #eb2e2e;
  position: absolute;
  top: 50%;
  left: 0;
}

.status_canceled::before {
  transform: translateY(-50%) rotate(-45deg);
}

.status_canceled::after {
  transform: translateY(-50%) rotate(45deg);
}

.status_process {
  color: var(--text-light);
}

.status_process::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--text-light);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.order_hidden {
  display: none;
}

.order_row.active .order_hidden {
  display: block;
  padding-top: 20px;
}

.order_details {
  padding-top: 15px;
}

.order_columns.header_colums {
  display: none;
}

.order_columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--base-color-3);
}

.order_name {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.order_image-wrap {
  display: block;
  margin-bottom: 15px;
  width: 100px;
  height: 100px;
}

.order_image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order_price {
  display: none;
}

.order_name a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  transition: 0.3s;
}

.order_name a:hover {
  color: var(--main-color-1);
}

.order_amount {
  display: inline-block;
  width: 100%;
}

.order_item-price {
  display: inline-block;
  width: 100%;
}

.order_info {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}

.order_info > span {
  display: inline-block;
  width: max-content;
  margin-right: 20px;
}

/* DEALER DETAILS */

.dealer_details {
  padding-bottom: 5px;
}

.dealer_details .centre {
  display: flex;
  flex-direction: column;
}

.dealer_details .headline_1 {
  width: 100%;
}

.dealer_details-inner {
  display: flex;
  flex-wrap: wrap;
}

.dealer_details .col-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  width: 100%;
}

.dealer_details-photo {
  display: block;
  margin-bottom: 30px;
  width: 100%;
  height: auto;
}

.dealer_details-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.dealer_details-desc {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.dealer_details-contacts {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.dealer_details .col-2 {
  width: 100%;
}

.details_map {
  width: 100%;
  height: 360px;
}

.search_articles {
  padding-bottom: 80px;
}

.search_articles .centre {
  display: flex;
  flex-direction: column;
}

.search_list {
  display: flex;
  flex-direction: column;
}

.search_item + .search_item {
  margin-top: 20px;
}

.search_item {
  display: flex;
  border: 1px solid var(--base-color-3);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.search_item > .col-1 {
  flex: 0 0 86px;
  display: flex;
  flex-direction: column;
}

.search_article-img {
  display: block;
  width: 100%;
  height: auto;
}

.search_article-img img {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search_item time {
  font-size: 11px;
  line-height: 1.2;
  color: var(--text-light);
  padding-left: 8px;
}

.search_item > .col-2 {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  padding: 5px 10px 10px 10px;
}

.search_item > .col-2 time {
  display: none;
}

.search_article-title {
  text-decoration: none;
  color: var(--text-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: 0.3s;
}

.search_article-title b {
  background-color: var(--main-color-5);
}

.search_article-prev {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 8px;
  max-height: 140px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  white-space: pre-wrap;
}

.search_article-prev b {
  background-color: var(--main-color-5);
}

.show-search_article {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--main-color-1);
  font-size: 13px;
  position: relative;
  transition: 0.3s;
}

.show-search_article::after {
  content: "";
  margin-left: 6px;
  width: 6px;
  height: 6px;
  position: relative;
  border-right: 1px solid var(--main-color-1);
  border-bottom: 1px solid var(--main-color-1);
  transform: rotate(-45deg);
  transition: 0.3s;
}








.btn_feedback {
  width: 70px;
  height: 70px;
  padding: 0;
  background-color: var(--main-color-1);
  color: var(--base-color-1);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  position: fixed;
  bottom: 80px;
  right: 20px;
  border-radius: 100%;
  border: none;
  cursor: pointer;
  transition: background-color .3s;
  z-index: 7
}

.btn_feedback.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  border-radius: 100%;
  background-color: #ff8019;
  background-image: url(../images/close.svg);
  background-position: 50%;
  background-repeat: no-repeat;
}

.btn_feedback:not(.active):hover {
  background-color: var(--base-color-9)
}

.btn_feedback.active .btn_feedback_pulsation {
  display: none
}

.btn_feedback:hover .btn_feedback_pulsation {
  background-color: var(--base-color-9)
}

.btn_feedback svg {
  fill: var(--base-color-1);
  width: 20px;
  height: 20px
}

.btn_feedback_static {
  -webkit-animation: show-stat 6s infinite;
  animation: show-stat 6s infinite;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.btn_feedback_icons {
  background-color: var(--base-color-1);
  border-radius: 100%;
  width: 44px;
  height: 44px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  -webkit-animation: show-icons 6s infinite;
  animation: show-icons 6s infinite
}

.btn_feedback_icons_line {
  position: absolute;
  height: 24px;
  top: 10px;
  left: 12px;
  display: flex;
  -webkit-transition: cubic-bezier(.13,1.49,.14,-.4);
  transition: cubic-bezier(.13,1.49,.14,-.4);
  -webkit-animation: icon-change 6s infinite;
  animation: icon-change 6s infinite;
  transform: translateX(30px)
}

.btn_feedback_icons_line img {
  margin-right: 50px;
  max-width: 100%
}

.btn_feedback_pulsation {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  width: 84px;
  height: 84px;
  background-color: var(--main-color-1);
  transform: scale(0);
  position: absolute;
  left: -7px;
  top: -7px;
  z-index: -1;
  border-radius: 50px
}

.btn_feedback_pulsation:nth-of-type(2n) {
  -webkit-animation-delay: .5s;
  animation-delay: .5s
}

.feedback_dropdown {
  background-color: var(--base-color-1);
  width: 235px;
  position: fixed;
  right: 10px;
  bottom: 152px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.2));
  border-radius: var(--border-radius);
  padding: 20px;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

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

.feedback_dropdown:after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 38px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: var(--base-color-1) transparent transparent transparent
}

.feedback_dropdown svg {
  fill: var(--base-color-1)
}

.feedback_dropdown a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 400;
  padding: 6px;
  border-radius: var(--border-radius);
  transition: 0.3s;
}


.feedback_dropdown a span::first-letter {
  text-transform: uppercase;
}

.feedback_dropdown a+a {
  margin-top: 12px
}

.feedback_dropdown a:before {
  content: '';
  background-repeat: no-repeat;
  background-position: 50%;
  width: 40px;
  flex-shrink: 0;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0
}

.feedback_dropdown a.fb:before {
  background-color: #0084ff;
  background-image: url(../images/fb_w.svg)
}

.feedback_dropdown a.viber:before {
  background-color: #7c529d;
  background-image: url(../images/viber_w.svg)
}

.feedback_dropdown a.whatsapp:before {
  background-color: #4caf50;
  background-image: url(../images/whatsapp-logo-variant.svg)
}

.feedback_dropdown a.telegram:before {
  background-color: #2ca5e0;
  background-image: url(../images/telegram_w.svg);
  background-position: 43%
}

.feedback_dropdown a.skype {
  height: auto
}

.feedback_dropdown a.skype:before {
  background-color: #31c4ed;
  background-image: url(../images/skype_w.svg);
  background-position: 45%
}

.feedback_dropdown a.tech_support:before {
  background-color: #7eb105;
  background-image: url(../images/tech_w.svg)
}

.feedback_dropdown a.email:before {
  background-color: #ff8400;
  background-image: url(../images/supp_w.svg)
}

.feedback_dropdown a.call_back:before {
  background-color: #54cd81;
  background-image: url(../images/cback_w.svg)
}

.feedback_form {
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(0,0,0,.8);
  position: fixed;
  right: 20px;
  bottom: 80px;
  color: var(--base-color-1);
  font-weight: 400;
  max-width: 470px;
  z-index: 100;
  display: flex;
  flex-wrap: wrap
}

.feedback_form.hidden {
  display: none
}

.feedback_form label {
  width: 100%;
  display: block;
  margin: 0 0 10px;
  text-align: center
}

.feedback_form button[type="submit"] {
  border: none;
  background-color: var(--main-color-1);
  padding: 0 20px;
  color: var(--base-color-1);
  border-radius: 3px;
  cursor: pointer;
  transition: .3s
}

.feedback_form button[type="submit"]:hover {
  background-color: var(--base-color-9)
}

.feedback_form input[type="tel"] {
  width: auto;
  height: 34px;
  flex: 1;
  margin-right: 10px
}

.feedback_form_close {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 15px;
  height: 15px;
  border: none;
  background-color: transparent;
  cursor: pointer
}

.feedback_form_close:after,.feedback_form_close:before {
  content: '';
  height: 2px;
  width: 100%;
  background-color: var(--main-color-1);
  position: absolute;
  left: 0;
  top: 50%
}

.feedback_form_close:before {
  transform: rotate(45deg)
}

.feedback_form_close:after {
  transform: rotate(-45deg)
}


@keyframes show-icons {
  0%,20% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  21%,84% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  85%,to {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
}

@keyframes show-stat {
  0%,20% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  21%,84% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  85%,to {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes icon-change {
  0%,5% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px)
  }

  10%,25% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  30%,35% {
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px)
  }

  40%,45% {
    -webkit-transform: translateX(-145px);
    transform: translateX(-145px)
  }

  50%,55% {
    -webkit-transform: translateX(-216px);
    transform: translateX(-216px)
  }

  60%,65% {
    -webkit-transform: translateX(-287px);
    transform: translateX(-287px)
  }

  70%,75% {
    -webkit-transform: translateX(-360px);
    transform: translateX(-360px)
  }

  80%,85% {
    -webkit-transform: translateX(-433px);
    transform: translateX(-433px)
  }

  90%,to {
    -webkit-transform: translateX(-480px);
    transform: translateX(-480px)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1
  }

  50% {
    opacity: .5
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0
  }
}

/* CERTIFICATES */

.certificates {
  margin-bottom: 80px;
}

.certificates .headline_2 {
  font-size: 20px;
  line-height: 1.4;
}

.certificates_top {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.certificates_help {
  display: flex;
  flex-direction: row;
  max-width: 244px;
}

.certificates_help > .icon {
  fill: var(--base-color-5);
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.certificates_help > .icon.desk {
  display: none;
}

.certificates_help > span {
  font-size: 13px;
  line-height: 1.3;
  color: var(--base-color-5);
}

.certificates_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 22px;
}

.certificate_item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 15px 15px 15px 86px;
  position: relative;
  background-color: var(--base-color-2);
}

.certificate_item-img {
  width: 86px;
  height: 125px;
  position: absolute;
  top: -15px;
  left: -15px;
}

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

.certificate_item-title {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
  transition: 0.3s;
}

.certificate_item-text {
  font-size: 14px;
  line-height: 1.3;
  color: var(--base-color-7);
}
/* FAQ */
.faq {
  margin-bottom: 80px;
}

.faq .centre {
  display: flex;
  flex-direction: column;
}

.faq .centre > .col:nth-child(1) {

}

.faq_image {
  display: block;
  width: 100%;
  height: auto;
}

.faq_image img {
  display: block;
  width: 100%;
  height: auto;
}

.faq .centre > .col:nth-child(2) {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  order: -1
}

.faq_main-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

.faq_list {
  display: flex;
  flex-direction: column;
}

.faq_item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--base-color-4);
}

.faq_item + .faq_item {
  margin-top: 10px;
}

.faq_title {
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  padding: 5px 10px 5px 0;
  color: var(--text-color);
  position: relative;
  transition: 0.3s;
}

.faq_item .faq_title:hover {
  color: var(--main-color-1);
}

.faq_item.active .faq_title {
  font-weight: 700;
}

.faq_title .icon {
  fill: var(--base-color-6);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.faq_item.active .faq_title .icon {
  fill: var(--main-color-1);
  transform: translateY(-50%) rotate(90deg);
}

.faq_hidden {
  display: none;
  font-size: 14px;
  line-height: 1.3;
  padding: 0 0 5px 0;
}

.faq_item.active .faq_hidden {
  display: block;
}

/* PREFER LIST */

.prefer_list {
  margin-bottom: 40px;
}

.prefer_list .centre {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
}

.prefer_list .headline_2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

.prefer_item {
  padding: 15px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--base-color-2);
}

.prefer_item + .prefer_item {
  margin-top: 20px;
}

.prefer_item > .col:nth-child(1) {
  margin-bottom: 20px;
}

.prefer_item-image {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 60%;
}

.prefer_item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.prefer_item > .col:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.prefer_item-title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 16px;
}

.prefer_item-list li {
  font-size: 13px;
  line-height: 1.3;
  padding-left: 22px;
  position: relative;
}

.prefer_item-list li + li {
  margin-top: 15px;
}

.prefer_item-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--main-color-1);
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 0;
}

.prefer_item-list li::after {
  content: "";
  width: 6px;
  height: 4px;
  border-bottom: 1px solid var(--base-color-1);
  border-left: 1px solid var(--base-color-1);
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(-45deg);
}
/* CALCULATE */

.calculate {
  margin-bottom: 60px;
}

.calculate .centre {
  display: flex;
  flex-direction: column;
}

.calculate .centre > .col:nth-child(1) {
  display: flex;
  flex-direction: column;
  order: 1;
}

.calculate_image {
  margin-bottom: 6px;
  width: 100%;
  height: auto;
}

.calculate_image img {
  display: block;
  width: 100%;
  height: auto;
}

.calculate_info {
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: var(--base-color-7);
  max-width: 370px;
  margin: 0 auto;
}

.calculate .centre > .col:nth-child(2) {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.calculate_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.calculate_item {
  display: flex;
  margin-bottom: 10px;
}

.calculate_item-img {
  flex: 0 0 48px;
  min-height: 48px;
}

.calculate_item-img img {
  display: block;
  width: 100%;
  height: auto;
}

.calculate_item-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}

.calculate_item-text b {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.calculate_item-text span {
  font-size: 11px;
  line-height: 1.4;
  color: var(--base-color-6);
}

.calculate_text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* PRODUCT PHOTOS */

.product_photos {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}

.product_photos-item {
  position: relative;
  padding-bottom: 112%;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--base-color-3);
}

.product_photos-item img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VIDEO GRID */

.video_box {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

.video_box-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.video_box-img {
  display: block;
  margin-bottom: 6px;
  height: 0;
  padding-bottom: 60%;
  position: relative;
}

.video_box-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video_box-title {
  color: var(--text-color);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  transition: 0.3s;
}

.video_box-title:hover {
  color: var(--main-color-1);
}

.select_country_box {
  display: flex;
  flex-direction: column;
}


.docs {display:flex; flex-direction:column; margin:0 0 32px 0;}
  .select_lang {display:flex; flex-wrap:wrap; padding:16px 8px 8px 16px; background:var(--base-color-2);}
    .select_lang A {border:1px solid var(--base-color-3); text-decoration:none; color:var(--text-color); transition:.3s; margin:0 8px 8px 0; display:flex; align-items:center; padding:8px;}
    .select_lang A:hover {color:var(--main-color-1); border-color:var(--base-color-5);}
    .select_lang A.active {background:var(--base-color-5); color:var(--base-color-1); border-color:var(--base-color-5);}
      .select_lang A Img {width:32px; height:20px; margin:0 8px 0 0;}

.docs_box .faq_list {width:100%;}
  .docs_box .faq_item + .faq_item {margin:0;}
  .docs_box .faq_hidden {padding:0 0 6px 0;}
  .cat_description {width:100%; display:flex; margin:0 0 8px 0; font-size:16px;}
  .cat_links {display:flex; flex-wrap:wrap; margin:0 0 6px 16px; align-items:center;}
    .cat_links A.name {margin:0 16px 0 0; text-decoration:none; transition:.3s; color:var(--text-color); font-size:13px;}
    .cat_links A.name:hover {color:var(--main-color-1);}
    .cat_links A.download, .cat_links A.youtube {display:flex; border:1px solid var(--base-color-3); justify-content:center; align-items:center; width:24px; height:24px; transition:.3s; margin:0 8px 0 0;}
    .cat_links A:hover, .cat_links A.youtube:hover {border-color:var(--base-color-5);}
      .cat_links A .icon {fill:var(--main-color-1); width:12px; height:12px;}
      .cat_links A.youtube .icon {fill:red; width:17px; height:17px;}

@media only screen and (min-width: 1024px) {
  .docs_box .faq_title {padding:6px 16px 6px 0; font-size:18px; line-height:1.4;}
}

/* FAQ */
.faq {
  margin-bottom: 80px;
}

.faq .centre {
  display: flex;
  flex-direction: column;
}

.faq .centre > .col:nth-child(1) {

}

.faq_image {
  display: block;
  width: 100%;
  height: auto;
}

.faq_image img {
  display: block;
  width: 100%;
  height: auto;
}

.faq .centre > .col:nth-child(2) {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  order: -1
}

.faq_main-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

.faq_list {
  display: flex;
  flex-direction: column;
}

.faq_item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--base-color-4);
}

.faq_item + .faq_item {
  margin-top: 10px;
}

.faq_title {
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  padding: 5px 10px 5px 0;
  color: var(--text-color);
  position: relative;
  transition: 0.3s;
}

.faq_item .faq_title:hover {
  color: var(--main-color-1);
}

.faq_item.active .faq_title {
  font-weight: 700;
}

.faq_title .icon {
  fill: var(--base-color-6);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}

.faq_item.active .faq_title .icon {
  fill: var(--main-color-1);
  transform: translateY(-50%) rotate(90deg);
}

.faq_hidden {
  display: none;
  font-size: 14px;
  line-height: 1.3;
  padding: 0 0 5px 0;
}

.faq_item.active .faq_hidden {
  display: block;
}