@charset "UTF-8";
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "STIHLContrafaceText";
  font-display: swap;
  src: url("../fonts/STIHLContrafaceText-Regular.woff2") format("woff2"), url("../fonts/STIHLContrafaceText-Regular.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "STIHLContrafaceText";
  font-display: swap;
  src: url("../fonts/STIHLContrafaceText-Bold.woff2") format("woff2"), url("../fonts/STIHLContrafaceText-Bold.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 600;
  font-family: "STIHLContrafaceTextDemi";
  font-display: swap;
  src: url("../fonts/STIHLContrafaceTextDemi.woff2") format("woff2"), url("../fonts/STIHLContrafaceTextDemi.woff") format("woff");
}
@font-face {
  font-style: bold;
  font-weight: 900;
  font-family: "STIHLContrafaceDisplay";
  font-display: swap;
  src: url("../fonts/STIHLContrafaceDisplayTitling.woff2") format("woff2"), url("../fonts/STIHLContrafaceDisplayTitling.woff") format("woff");
}
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Open Sans";
  font-display: swap;
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
}
/* stylelint-disable */
.burger {
  position: relative;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 90;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger:hover {
  gap: 5px;
}
.burger span {
  width: 100%;
  border: 1.5px solid rgba(var(--cl-a), 1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger.active:hover {
  gap: 3px;
}
.burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  -ms-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  -ms-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}

.overlay {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: calc(var(--header-height) + 20px) 0;
  overflow-y: scroll;
  background: var(--overlay-bg);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  pointer-events: none;
}
.overlay::-webkit-scrollbar {
  display: none;
}
.overlay.active {
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  pointer-events: initial;
}

/* stylelint-disable */
.radio-checkbox {
  position: relative;
}
.radio-checkbox input {
  position: absolute;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
}
.radio-checkbox span {
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  font-style: normal;
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: rgba(var(--cl-c), 1);
}
.radio-checkbox span a {
  color: rgba(var(--cl-c), 0.7);
}
.radio-checkbox span a:hover {
  text-decoration: underline;
}
.radio-checkbox span::before {
  cursor: pointer;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Crect width='18' height='18' x='3' y='3' stroke='%232F2F2F' stroke-opacity='0.5' stroke-width='2' rx='9'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.radio-checkbox input:checked + span::after {
  opacity: 1;
  visibility: visible;
}
.radio-checkbox input:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Crect width='18' height='18' x='3' y='3' fill='%230D7768' stroke='%230D7768' stroke-width='2' rx='9'/%3E%3Crect width='10' height='10' x='7' y='7' fill='%23fff' rx='5'/%3E%3C/svg%3E");
}

.custom-checkbox {
  position: relative;
}
.custom-checkbox input {
  position: absolute;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox span {
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  font-style: normal;
  font-family: var(--font-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: rgba(var(--cl-c), 1);
}
.custom-checkbox span a {
  color: rgba(var(--cl-c), 0.7);
}
.custom-checkbox span a:hover {
  text-decoration: underline;
}
.custom-checkbox span::before {
  cursor: pointer;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Crect width='18' height='18' x='3' y='3' stroke='%232F2F2F' stroke-opacity='0.5' stroke-width='2' rx='2'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
}
.custom-checkbox input:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Crect width='18' height='18' x='3' y='3' fill='%230D7768' stroke='%230D7768' stroke-width='2' rx='2'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7 12.833 4 3.3333 6-8.3333'/%3E%3C/svg%3E");
}

:root {
  --body-bg: #ffffff;
  --body-font-size: 16px;
  --content-width: 1230px;
  --container-offset: clamp(15px, 3.906vw, 40px);
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --header-height: 80px;
  --overlay-bg: rgba(39, 39, 39, 0.3);
  --font-family: "STIHLContrafaceText" , sans-serif;
  --font-second: "STIHLContrafaceTextDemi" , sans-serif;
  --font-third: "STIHLContrafaceDisplay" , sans-serif;
  --font-opensans: "Open Sans" , sans-serif;
  --cl-a: 255, 255, 255;
  --cl-b: 0, 0, 0;
  --cl-c: 31, 32, 35;
  --cl-d: 89, 94, 105;
  --cl-e: 244, 103, 23;
  --cl-f: 31, 169, 86;
  --cl-g: 185, 185, 185;
  --cl-h: 226, 48, 48;
  --bg-a: 255, 255, 255;
  --bg-b: 0, 0, 0;
  --bg-c: 249, 249, 249;
  --bg-d: 241, 241, 241;
  --bg-e: 244, 103, 23;
  --bg-f: 247, 247, 247;
  --bg-h: 235, 235, 235;
  --bg-g: 233, 233, 233;
  --bg-k: 31, 169, 86;
  --bg-l: 226, 48, 48;
  --bg-m: 253, 225, 210;
  --bg-n: 232, 232, 232;
  --bg-o: 255, 205, 205;
  --br-a: 224, 224, 224;
  --br-b: 244, 103, 23;
  --br-c: 226, 48, 48;
}

/**
 * Swiper 10.3.1
 * 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: September 28, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

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

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

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

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

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

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

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tabs {
  position: relative;
}

.tabcontent {
  display: none;
}
.tabcontent.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

body {
  background: var(--body-bg);
  position: relative;
  overflow-x: hidden;
  width: 100%;
  min-height: -webkit-fill-available;
  margin: 0 auto;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.active {
  overflow: hidden;
}

.dialog-off-canvas-main-canvas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0;
  line-height: initial;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(var(--cl-b), 1);
  font-style: normal;
  line-height: 130%;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

svg {
  fill: currentColor;
}

picture {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}
input::-webkit-input-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input::-moz-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input:-ms-input-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input::-ms-input-placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
input::placeholder {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

textarea {
  border: none;
  outline: none;
  resize: none;
}

.just-validate-error-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  font-size: 12px;
}

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

.panel,
[data-content] {
  z-index: 20;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
}

.main-inner {
  padding: clamp(50px, 4.6154vw, 60px) 0;
}
.main-inner__box {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 309px 1fr;
}
@media (max-width: 1024px) {
  .main-inner__box {
    grid-template-columns: 1fr;
  }
}

.dis-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -ms-scroll-chaining: none !important;
  overscroll-behavior: none !important;
  scroll-behavior: none !important;
}

.test {
  display: block;
  margin: 20px 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.hidden,
.js-hide,
.visually-hidden {
  display: none !important;
  visibility: hidden !important;
}

.user-logged-in .block-section__wrapp {
  display: grid;
  grid-template-columns: 1fr 75.2%;
  grid-gap: clamp(15px, 3.906vw, 30px);
}
@media (max-width: 1240px) {
  .user-logged-in .block-section__wrapp {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1024px) {
  .user-logged-in .block-section__wrapp .block-section__aside {
    display: none;
  }
}

.table-wrapper {
  margin: 30px 0;
  overflow-x: auto;
}
@media (max-width: 1024px) {
  .table-wrapper {
    width: calc(100% + 20px);
    padding-right: 20px;
    overflow-x: auto;
  }
}

.table {
  width: 100%;
  border-spacing: 0;
}
.table thead {
  background-color: #fff9c3;
}
.table thead th {
  padding: 7px 11px 9px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: rgba(var(--cl-c), 1);
  border-right: 1px solid #efc8b3;
}
.table thead th:last-child {
  border-right: none;
}
.table tbody {
  background-color: #fff;
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table tbody td {
  padding: 10px 10px 15px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 100%;
  font-weight: 400;
  color: rgba(var(--cl-c), 1);
  border-right: 1px solid rgba(var(--br-a), 1);
  border-bottom: 1px solid rgba(var(--br-a), 1);
}
.table tbody td:last-child {
  border-right: none;
  text-transform: capitalize;
}
.table tbody td:last-child div + div {
  margin-top: 5px;
}
.table tbody a {
  padding: 4px 6px;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
  color: rgba(var(--cl-d), 1);
  background-color: rgba(var(--bg-n), 1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-wrap: nowrap;
}
.table tbody a:hover {
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 1024px) {
  .table {
    min-width: 985px;
  }
}

.bottom {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.grid-3-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
@media (max-width: 767px) {
  .grid-3-rows {
    grid-template-columns: 100%;
    grid-gap: 15px;
  }
}

.views-exposed-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .views-exposed-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.js-form-type-textfield,
.js-form-type-email,
.js-form-type-date,
.js-form-type-password,
.js-form-type-textarea,
.js-form-type-entity-autocomplete {
  width: 100%;
  position: relative;
}
.js-form-type-textfield label,
.js-form-type-email label,
.js-form-type-date label,
.js-form-type-password label,
.js-form-type-textarea label,
.js-form-type-entity-autocomplete label {
  position: absolute;
  top: 9px;
  left: 12px;
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield input,
.js-form-type-email input,
.js-form-type-date input,
.js-form-type-password input,
.js-form-type-textarea input,
.js-form-type-entity-autocomplete input {
  padding: 29px 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 53px;
  background-color: rgba(var(--bg-a), 1);
  border: 1px solid rgba(var(--br-a), 1);
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-c), 1);
}
.js-form-type-textfield input::-webkit-input-placeholder, .js-form-type-email input::-webkit-input-placeholder, .js-form-type-date input::-webkit-input-placeholder, .js-form-type-password input::-webkit-input-placeholder, .js-form-type-textarea input::-webkit-input-placeholder, .js-form-type-entity-autocomplete input::-webkit-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield input::-moz-placeholder, .js-form-type-email input::-moz-placeholder, .js-form-type-date input::-moz-placeholder, .js-form-type-password input::-moz-placeholder, .js-form-type-textarea input::-moz-placeholder, .js-form-type-entity-autocomplete input::-moz-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield input:-ms-input-placeholder, .js-form-type-email input:-ms-input-placeholder, .js-form-type-date input:-ms-input-placeholder, .js-form-type-password input:-ms-input-placeholder, .js-form-type-textarea input:-ms-input-placeholder, .js-form-type-entity-autocomplete input:-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield input::-ms-input-placeholder, .js-form-type-email input::-ms-input-placeholder, .js-form-type-date input::-ms-input-placeholder, .js-form-type-password input::-ms-input-placeholder, .js-form-type-textarea input::-ms-input-placeholder, .js-form-type-entity-autocomplete input::-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield input::placeholder,
.js-form-type-email input::placeholder,
.js-form-type-date input::placeholder,
.js-form-type-password input::placeholder,
.js-form-type-textarea input::placeholder,
.js-form-type-entity-autocomplete input::placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield input:-moz-read-only, .js-form-type-email input:-moz-read-only, .js-form-type-date input:-moz-read-only, .js-form-type-password input:-moz-read-only, .js-form-type-textarea input:-moz-read-only, .js-form-type-entity-autocomplete input:-moz-read-only {
  background-color: rgba(var(--bg-h), 1);
}
.js-form-type-textfield input:read-only,
.js-form-type-email input:read-only,
.js-form-type-date input:read-only,
.js-form-type-password input:read-only,
.js-form-type-textarea input:read-only,
.js-form-type-entity-autocomplete input:read-only {
  background-color: rgba(var(--bg-h), 1);
}
.js-form-type-textfield textarea,
.js-form-type-email textarea,
.js-form-type-date textarea,
.js-form-type-password textarea,
.js-form-type-textarea textarea,
.js-form-type-entity-autocomplete textarea {
  width: 100%;
  padding: 29px 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(var(--bg-a), 1);
  border: 1px solid rgba(var(--br-a), 1);
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-c), 1);
}
.js-form-type-textfield textarea::-webkit-input-placeholder, .js-form-type-email textarea::-webkit-input-placeholder, .js-form-type-date textarea::-webkit-input-placeholder, .js-form-type-password textarea::-webkit-input-placeholder, .js-form-type-textarea textarea::-webkit-input-placeholder, .js-form-type-entity-autocomplete textarea::-webkit-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield textarea::-moz-placeholder, .js-form-type-email textarea::-moz-placeholder, .js-form-type-date textarea::-moz-placeholder, .js-form-type-password textarea::-moz-placeholder, .js-form-type-textarea textarea::-moz-placeholder, .js-form-type-entity-autocomplete textarea::-moz-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield textarea:-ms-input-placeholder, .js-form-type-email textarea:-ms-input-placeholder, .js-form-type-date textarea:-ms-input-placeholder, .js-form-type-password textarea:-ms-input-placeholder, .js-form-type-textarea textarea:-ms-input-placeholder, .js-form-type-entity-autocomplete textarea:-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield textarea::-ms-input-placeholder, .js-form-type-email textarea::-ms-input-placeholder, .js-form-type-date textarea::-ms-input-placeholder, .js-form-type-password textarea::-ms-input-placeholder, .js-form-type-textarea textarea::-ms-input-placeholder, .js-form-type-entity-autocomplete textarea::-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield textarea::placeholder,
.js-form-type-email textarea::placeholder,
.js-form-type-date textarea::placeholder,
.js-form-type-password textarea::placeholder,
.js-form-type-textarea textarea::placeholder,
.js-form-type-entity-autocomplete textarea::placeholder {
  color: rgba(var(--cl-d), 1);
}
.js-form-type-textfield textarea:-moz-read-only, .js-form-type-email textarea:-moz-read-only, .js-form-type-date textarea:-moz-read-only, .js-form-type-password textarea:-moz-read-only, .js-form-type-textarea textarea:-moz-read-only, .js-form-type-entity-autocomplete textarea:-moz-read-only {
  background-color: rgba(var(--bg-h), 1);
}
.js-form-type-textfield textarea:read-only,
.js-form-type-email textarea:read-only,
.js-form-type-date textarea:read-only,
.js-form-type-password textarea:read-only,
.js-form-type-textarea textarea:read-only,
.js-form-type-entity-autocomplete textarea:read-only {
  background-color: rgba(var(--bg-h), 1);
}

.js-form-type-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.js-form-type-radio input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.js-form-type-radio label {
  cursor: pointer;
}

.js-form-type-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.js-form-type-checkbox input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.js-form-type-checkbox label {
  cursor: pointer;
}

.js-form-type-select {
  position: relative;
  width: 100%;
}
.js-form-type-select label {
  position: absolute;
  top: 9px;
  left: 12px;
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-d), 1);
  z-index: 5;
}
.js-form-type-select select {
  width: 100%;
  padding: 22px 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 53px;
  background-color: rgba(var(--bg-a), 1);
  border: 1px solid rgba(var(--br-a), 1);
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-c), 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sitecontent-product-register > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
.sitecontent-product-register #edit-field-lico {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (max-width: 767px) {
  .sitecontent-product-register #edit-field-lico {
    grid-column: initial;
    grid-template-columns: 100%;
    grid-gap: 15px;
  }
}
.sitecontent-product-register #edit-field-ispolz {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (max-width: 767px) {
  .sitecontent-product-register #edit-field-ispolz {
    grid-column: initial;
    grid-template-columns: 100%;
    grid-gap: 15px;
  }
}

.form-col-6 .views-exposed-form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.form-col-6 .js-form-item {
  grid-column: span 2;
}
.form-col-6 fieldset {
  grid-column: span 2;
}
.form-col-6 fieldset legend {
  display: none;
}
.form-col-6 fieldset .fieldset-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.form-col-6 .form-item-field-sku-value,
.form-col-6 .form-item-field-product-labels-value {
  grid-column: span 3;
}
.form-col-6 .form-actions input {
  padding: 13px 30px;
  font-family: var(--font-family);
  text-transform: capitalize;
  background-color: rgba(var(--bg-a), 1);
  color: rgba(var(--cl-e), 1);
}
.form-col-6 .form-actions input:hover, .form-col-6 .form-actions input:active {
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 767px) {
  .form-col-6 .views-exposed-form {
    grid-template-columns: 100%;
    grid-gap: 15px;
  }
  .form-col-6 .form-item-field-sku-value,
  .form-col-6 .form-item-field-product-labels-value,
  .form-col-6 .js-form-item {
    grid-column: 1;
  }
}

.sitecontent-ncart-list {
  margin-bottom: 30px;
}

.empty-cart-message {
  margin-bottom: 10px;
  padding: 13px 15px;
  background-color: #ebebeb;
  border-radius: 4px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: rgba(var(--cl-d), 1);
}

.mt-30 {
  margin-top: 30px;
}

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

.row-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.vbo-table .select-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vbo-table .js-form-type-checkbox {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-basis-50 .views-exposed-form {
  width: calc(100% + 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.flex-basis-50 .js-form-item {
  -ms-flex-preferred-size: 49%;
  flex-basis: 49%;
}

.flex-basis-50 .button {
  text-transform: initial;
}

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

#card-add-wrapper .form-actions {
  margin-top: 10px;
}

#card-add-wrapper .form-actions .button,
#card-list-wrapper .form-actions .button {
  text-transform: initial;
}

.margin-top-lg {
  margin: 30px 0 10px;
}

.table tbody .flag-bookmark a,
.table tbody .flag-wishlist a {
  background-color: #fde1d2;
  color: #f46717;
}
.table tbody .flag-bookmark a:hover,
.table tbody .flag-wishlist a:hover {
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}

.label-success {
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #1fa956;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.label-danger {
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #E23030;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.more-100,
.more-50 {
  text-wrap: nowrap;
  border-radius: 4px;
  background-color: #1fa956;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 117%;
  font-weight: 700;
  color: rgba(var(--cl-a), 1);
  letter-spacing: -0.05em;
}

.more-0 {
  text-wrap: nowrap;
  border-radius: 4px;
  background-color: #e23030;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 117%;
  font-weight: 700;
  color: rgba(var(--cl-a), 1);
  letter-spacing: -0.05em;
}

.more-1 {
  text-wrap: nowrap;
  border-radius: 4px;
  background-color: #ffcdcd;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 117%;
  font-weight: 700;
  color: rgba(var(--cl-h), 1);
  letter-spacing: -0.05em;
}

.more-10 {
  text-wrap: nowrap;
  border-radius: 4px;
  background-color: #f46717;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 117%;
  font-weight: 700;
  color: rgba(var(--cl-a), 1);
  letter-spacing: -0.05em;
}

.grey-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: rgba(var(--bg-n), 1);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-d), 1);
}

.green-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #1fa956;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.dark-blue-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #1976d2;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.light-blue-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #00b2ff;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.purple-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #9747ff;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.red-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #E23030;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.yellow-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #fff500;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: #615d00;
}

.dark-yellow-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #b6a400;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.orange-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #f46717;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.dark-green-status {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background-color: #00c8c1;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: rgba(var(--cl-a), 1);
}

.quicktabs-tabs {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.quicktabs-tabs li {
  -webkit-box-shadow: 0 0 20px 0 rgba(22, 31, 48, 0.1);
  box-shadow: 0 0 20px 0 rgba(22, 31, 48, 0.1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.quicktabs-tabs li a {
  padding: 12px 18px;
}
.quicktabs-tabs li:hover, .quicktabs-tabs li.active {
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ui-widget.ui-widget-content {
  border: none !important;
  padding: 0 !important;
  border-radius: 5px;
}

.ui-dialog .ui-dialog-content {
  padding: 0px 30px 30px !important;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 30px !important;
  border: none !important;
  background-color: transparent;
  text-transform: uppercase;
}

.ui-dialog .ui-dialog-titlebar-close {
  right: 30px !important;
  top: 30px !important;
}

#card-edit-item-wrapper .js-form-type-textfield input {
  padding: 8px 12px;
  height: auto;
}

#card-comments-wrapper .sitecontent-ncart-comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#card-comments-wrapper .js-form-item {
  position: relative;
}

#card-comments-wrapper .js-form-item + .js-form-item {
  margin-top: 10px;
}

#card-comments-wrapper .js-form-item label {
  position: absolute;
  top: 9px;
  left: 12px;
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-d), 1);
}

#card-comments-wrapper .js-form-item textarea {
  width: 100%;
  padding: 29px 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(var(--bg-a), 1);
  border: 1px solid rgba(var(--br-a), 1);
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-c), 1);
}
#card-comments-wrapper .js-form-item textarea::-webkit-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
#card-comments-wrapper .js-form-item textarea::-moz-placeholder {
  color: rgba(var(--cl-d), 1);
}
#card-comments-wrapper .js-form-item textarea:-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
#card-comments-wrapper .js-form-item textarea::-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
#card-comments-wrapper .js-form-item textarea::placeholder {
  color: rgba(var(--cl-d), 1);
}
#card-comments-wrapper .js-form-item textarea:-moz-read-only {
  background-color: rgba(var(--bg-h), 1);
}
#card-comments-wrapper .js-form-item textarea:read-only {
  background-color: rgba(var(--bg-h), 1);
}

#card-comments-wrapper fieldset {
  margin: 30px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

#card-comments-wrapper fieldset legend {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 114%;
  font-weight: 700;
  color: #000;
}

#card-comments-wrapper .fieldset-wrapper label {
  position: relative;
  top: initial;
  left: initial;
}

#card-comments-wrapper .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: initial;
}

#card-delete-item-wrapper form > div {
  margin-bottom: 30px;
}

#card-delete-item-wrapper .btn {
  width: 100%;
}

#card-delete-item-wrapper .btn + .btn {
  margin-top: 20px;
}

.sitecontent-export-products .form-actions {
  margin: 20px 0 30px;
}

.sitecontent-export-products .js-form-item {
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-d), 1);
}

.sitecontent-export-products .js-form-item + .js-form-item {
  margin-top: 10px;
}

.sitecontent-export-products .form-actions .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: initial;
}

.sitecontent-export-products a {
  margin-bottom: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 30px;
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-wrap: wrap;
  cursor: pointer;
}
.sitecontent-export-products a:hover {
  background-color: rgba(var(--bg-a), 1);
  color: rgba(var(--cl-e), 1);
}

.sitecontent-export-products h5 {
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 114%;
  font-weight: 700;
  color: rgba(var(--cl-c), 1);
}

.sitecontent-export-products li {
  font-size: 14px;
  line-height: 114%;
  font-weight: 400;
  color: rgba(var(--cl-c), 1);
}

.sitecontent-export-products li + li {
  margin-top: 5px;
}

.webform-submission-form .form-actions .button {
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px 40px;
}

.webform-submission-form .fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.webform-submission-form .fields .js-form-item:nth-child(n+4) {
  grid-column: span 3;
}

.webform-submission-form #ajax-wrapper {
  grid-column: span 3;
  margin-top: 20px;
}

.webform-submission-form #ajax-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.webform-submission-form #ajax-wrapper label {
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-d), 1);
}

.webform-submission-form #ajax-wrapper .description {
  font-size: 14px;
  line-height: 100%;
  font-weight: 400;
  color: rgba(var(--cl-d), 1);
}

.webform-submission-form #ajax-wrapper .js-webform-image-file .js-form-item {
  margin: 10px 0;
}

.webform-submission-form #ajax-wrapper .js-webform-image-file .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.views-element-container > div {
  height: 100%;
}

#edit-field-nz-telefon--description {
  position: absolute;
  left: 12px;
  bottom: 12px;
}

.views-element-container header {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 400;
  color: rgba(var(--cl-d), 1);
}

.views-element-container {
  height: 100%;
}

.sitecontent-ncart-manager-add {
  margin-bottom: 30px;
}

h4 {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alert {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: rgba(var(--cl-d), 1);
}

.description {
  margin: 20px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: rgba(var(--cl-d), 1);
}

.views-field-oder-pdf-link-admin {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.views-field-field-summa {
  text-wrap: nowrap;
}

.views-field-oder-pdf-link-admin {
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.views-field-oder-pdf-link-admin > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.views-reset-button-correct .form-actions {
  grid-column: span 3;
}

.views-reset-button-correct .form-actions input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#sitecontent-order-from-excel {
  margin-bottom: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#sitecontent-order-from-excel .margin-top-lg {
  margin: 0;
}

#sitecontent-order-from-excel .js-form-managed-file {
  margin-top: 10px;
}

#sitecontent-order-from-excel .js-form-managed-file .button {
  margin-top: 10px;
  padding: 13px 30px;
}

h3 a {
  display: inline-block !important;
  margin-left: 10px;
}

#servicecenter-simple-service .js-form-type-textarea textarea {
  height: 53px;
  overflow-y: auto;
}

#servicecenter-simple-service #edit-field-nz-telefon--description {
  margin: 0;
}

.node-application-form .js-form-item + .js-form-item {
  margin-top: 10px;
}

.node-application-form .field--type-string + .field--type-string {
  margin-top: 10px;
}

.node-application-form .description {
  margin: 10px 0;
}

.node-application-form .form-actions {
  margin-top: 20px;
}

.field--type-entity-reference {
  margin-bottom: 10px;
}

.field--type-string-long {
  margin-bottom: 10px;
}

.field--type-boolean {
  margin-bottom: 10px;
}

.field--type-datetime {
  margin: 10px 0;
}

.field--type-datetime fieldset legend {
  margin-bottom: 10px;
}

div[role=contentinfo] a {
  font-weight: 700;
}

[role=alert] {
  padding: 13px 14px;
  border-radius: 4px;
  background-color: #ffe4e4;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #e23030;
}

[role=warning] {
  padding: 13px 14px;
  border-radius: 4px;
  background-color: #fff3d2;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #f46717;
}

[role=status] {
  padding: 13px 14px;
  border-radius: 4px;
  background-color: #b9f8d2;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #1fa956;
}

.no-wrap {
  text-wrap: nowrap;
}

/* Стили для обертки input */
.js-form-item.form-item-quantity {
  position: relative;
  width: 60px; /* Ширина инпута */
  margin: 0 auto;
}

/* Основные стили для инпута */
.quantity.form-number {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

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

.quantity.form-number:focus {
  border-color: rgba(var(--cl-e), 1); /* Цвет рамки при фокусе */
  -webkit-box-shadow: 0 0 5px rgba(var(--cl-e), 0.5);
  box-shadow: 0 0 5px rgba(var(--cl-e), 0.5); /* Тень при фокусе */
}

.js input.form-autocomplete {
  height: auto;
}

.form-column .views-exposed-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#block-ritm-local-tasks {
  margin-bottom: 20px;
}

.node-application-edit-form > b {
  display: block;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 120%;
  font-weight: 700;
}

.node-application-edit-form [data-drupal-field-elements=date-time] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.node-application-edit-form [data-drupal-field-elements=date-time] input {
  padding: 0 12px;
}

.node-application-edit-form .js-form-type-select select {
  background-color: rgba(var(--bg-h), 1);
}

.node-application-edit-form a {
  margin: 10px 0 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 30px;
  background-color: transparent;
  border: 1px solid rgba(var(--cl-e), 1);
  color: rgba(var(--cl-e), 1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-wrap: wrap;
  cursor: pointer;
}

.node-application-edit-form a:hover {
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}

.node-application-edit-form fieldset legend {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
}

.node-application-edit-form fieldset p + p {
  margin-top: 5px;
}

.node-application-edit-form fieldset + fieldset {
  margin-top: 15px;
}

.field--type-string + .field--type-string {
  margin-top: 15px;
}

.node-application-edit-form .vertical-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  border-left: 0;
  border-right: 0;
}

.node-application-edit-form .vertical-tabs__menu-item {
  background: transparent;
  border-left: 0;
}

@media (max-width: 1240px) {
  .ui-dialog.ui-dialog-buttons {
    width: calc(100% - 40px) !important;
    margin: 0 20px;
  }
  .ui-dialog.ui-dialog-buttons .ui-dialog-content {
    padding: 0px 30px 10px !important;
  }
  .ui-dialog.ui-dialog-buttons .ui-dialog-buttonpane {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .form-actions {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-actions .btn {
    max-width: 100% !important;
    width: 100% !important;
  }
  .sitecontent-ncart-list .form-actions .js-form-item {
    max-width: 100%;
    width: 100%;
  }
  .ncart-cart-page table tbody td {
    text-wrap: nowrap;
    font-size: 14px !important;
  }
}
.ncart-cart-page .container {
  max-width: 100%;
}
.ncart-cart-page .block-section__wrapp {
  grid-template-columns: 100%;
}
.ncart-cart-page .block-section__aside .navigation ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.ncart-cart-page table tbody td {
  font-size: 16px;
}
.ncart-cart-page .sitecontent-ncart-add .js-form-type-textfield input {
  padding: 15px 12px;
  min-width: 140px;
}

h1,
.title {
  margin-bottom: 10px;
  font-family: var(--font-third);
  font-size: clamp(20px, 2.93vw, 30px);
  line-height: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(var(--cl-c), 1);
  text-transform: uppercase;
}

h2,
.subtitle {
  font-family: var(--font-third);
  font-size: clamp(20px, 2.93vw, 30px);
  line-height: 113%;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(var(--cl-c), 1);
  text-transform: uppercase;
}

.main-form {
  border: 1px solid rgba(var(--bg-b), 0.1);
  border-radius: 10px;
  background: rgba(var(--bg-g), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: clamp(9px, 5.7692vw, 75px);
  padding: clamp(32px, 2.6154vw, 34px);
}
@media (max-width: 576px) {
  .main-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
    grid-gap: 9px;
  }
}
.main-form__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 20px;
  text-align: center;
}
.main-form__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(14px, 1.5385vw, 20px);
}
@media (max-width: 1024px) {
  .main-form__inner {
    grid-template-columns: 1fr;
  }
}
.main-form__label {
  width: 100%;
  position: relative;
}
.main-form__input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(var(--cl-f), 0.4);
  background: rgba(var(--bg-a), 1);
  border-radius: 10px;
  font-family: var(--font-second);
  font-size: 15px;
  line-height: 130%;
  color: rgba(var(--cl-c), 1);
}
.main-form__input::-webkit-input-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__input::-moz-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__input:-ms-input-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__input::-ms-input-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__input::placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form .subtitle {
  text-transform: uppercase;
}
.main-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-gap: 16px;
}
.main-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(10px, 1.5385vw, 20px);
}
.main-form__row--mode {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .main-form__row {
    grid-template-columns: 1fr;
  }
}
.main-form__area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(var(--cl-f), 0.4);
  background: rgba(var(--bg-a), 1);
  border-radius: 10px;
  font-family: var(--font-second);
  font-size: 15px;
  line-height: 130%;
  color: rgba(var(--cl-c), 1);
  min-height: clamp(120px, 11.0769vw, 144px);
}
.main-form__area::-webkit-input-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__area::-moz-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__area:-ms-input-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__area::-ms-input-placeholder {
  color: rgba(var(--cl-c), 0.5);
}
.main-form__area::placeholder {
  color: rgba(var(--cl-c), 0.5);
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-nav__link {
  padding: clamp(5px, 0.806vw, 10px) clamp(5px, 0.968vw, 12px);
  line-height: 125%;
  border-radius: 40px;
  background: transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-nav__link:hover {
  background: rgba(var(--bg-c), 0.04);
}
.main-nav__link:active {
  background: rgba(var(--bg-c), 0.08);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

.xls-feed {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 11px 16px;
  background-color: rgba(var(--bg-a), 1);
  border: 2px solid rgba(var(--br-b), 1);
  border-radius: 4px;
  display: block;
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 108%;
  font-weight: 700;
  color: rgba(var(--cl-e), 1);
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.xls-feed:hover {
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}

.pager__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.pager__item a {
  position: relative;
  display: block;
  font-family: var(--font-third);
  font-size: clamp(14px, 2.344vw, 18px);
  line-height: 100%;
  font-weight: 900;
  color: rgba(var(--cl-c), 1);
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pager__item a .visually-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.pager__item a:hover {
  color: rgba(var(--cl-e), 1);
}
.pager__item--first a, .pager__item--last a {
  font-family: var(--font-family);
  text-transform: capitalize;
}
.pager__item.is-active a {
  padding: 6px 9px;
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
  border-radius: 4px;
}
.pager__item--previous a, .pager__item--next a {
  width: clamp(30px, 5.208vw, 40px);
  height: clamp(30px, 5.208vw, 40px);
  border-radius: 50px;
  border: 2px solid rgba(var(--br-b), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(var(--cl-e), 1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pager__item--previous a svg, .pager__item--next a svg {
  stroke: currentColor;
}
.pager__item--previous a:hover, .pager__item--next a:hover {
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
}

.ssc-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 10px;
}
.ssc-results__bg {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
}
.ssc-results__bg picture,
.ssc-results__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: 100% 100%;
  object-fit: 100% 100%;
}
.ssc-results__info {
  position: relative;
  max-width: 425px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.ssc-results__details {
  font-size: 16px;
  line-height: 150%;
  font-weight: 600;
  color: rgba(var(--cl-c), 1);
}
.ssc-results__details a {
  font-size: 20px;
  color: rgba(var(--cl-c), 1);
}

.partner {
  height: clamp(103px, 17.578vw, 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(var(--bg-f), 1);
  border-radius: 10px;
  padding: 0 18px;
}
.partner picture,
.partner img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.button {
  display: block;
  padding: 17px 30px;
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-wrap: wrap;
  cursor: pointer;
}
.button:hover {
  background-color: rgba(var(--bg-a), 1);
  color: rgba(var(--cl-e), 1);
}
.button-reset {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: 1px solid rgba(var(--cl-c), 1);
  color: rgba(var(--cl-c), 1) !important;
}
.button-reset:hover {
  border: 1px solid rgba(var(--cl-e), 1);
  color: rgba(var(--cl-e), 1) !important;
}
@media (max-width: 767px) {
  .button {
    width: 100%;
    padding: 17px 14px;
    font-size: 14px;
    line-height: 114%;
  }
}

.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 30px;
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  text-wrap: wrap;
  cursor: pointer;
}
.btn:hover {
  background-color: rgba(var(--bg-a), 1);
  color: rgba(var(--cl-e), 1);
}
.btn-primary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-reset {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: 1px solid rgba(var(--cl-c), 1);
  color: rgba(var(--cl-c), 1) !important;
}
.btn-reset:hover {
  border: 1px solid rgba(var(--cl-e), 1);
  color: rgba(var(--cl-a), 1) !important;
}
.btn-default {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: transparent;
  border: 1px solid rgba(var(--cl-e), 1);
  color: rgba(var(--cl-e), 1);
}
.btn-default:hover {
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
.btn-success {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: rgba(var(--bg-k), 1);
  border: 1px solid rgba(var(--bg-k), 1);
  color: rgba(var(--cl-a), 1);
}
.btn-success:hover {
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
.btn-danger {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: transparent;
  border: 1px solid rgba(var(--cl-e), 1);
  color: rgba(var(--cl-e), 1);
}
.btn-danger:hover {
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
.btn-green {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: transparent;
  border: 1px solid transparent;
  color: rgba(var(--cl-f), 1);
}
.btn-green:hover {
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 767px) {
  .btn {
    width: 100%;
    padding: 17px 14px;
    font-size: 14px;
    line-height: 114%;
  }
}

header {
  background-color: rgba(var(--bg-c), 1);
  position: relative;
}

.header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 90;
  width: clamp(100px, 22.754vw, 233px);
  height: clamp(34px, 7.813vw, 80px);
}
.header__logo picture,
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.header__box {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(20px, 2.93vw, 30px);
}
@media (max-width: 1024px) {
  .header__box .profile__trigger p {
    display: none;
  }
}
.header__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 10px;
}
.header__controls-divider {
  position: relative;
  padding: 0 clamp(20px, 2.93vw, 30px);
}
.header__controls-divider::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(var(--br-a), 1);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .header__controls-divider {
    display: none;
  }
}
@media (max-width: 576px) {
  .header__controls .locations {
    display: none !important;
  }
}
.header .phones,
.header .locations,
.header .links,
.header .profile {
  position: relative;
  display: initial;
}
.header .phones ul,
.header .locations ul,
.header .links ul,
.header .profile ul {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px;
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(var(--bg-a), 1);
  -webkit-box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.09);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  z-index: -1;
}
@media (min-width: 1025px) {
  .header .burger {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.phones,
.locations,
.links,
.profile {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.phones span,
.locations span,
.links span,
.profile span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: rgba(var(--cl-c), 1);
  cursor: pointer;
}
.phones span i,
.locations span i,
.links span i,
.profile span i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--bg-g), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.phones span svg,
.locations span svg,
.links span svg,
.profile span svg {
  fill: rgba(var(--cl-c), 1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.phones ul,
.locations ul,
.links ul,
.profile ul {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.phones ul a,
.locations ul a,
.links ul a,
.profile ul a {
  font-size: 16px;
  line-height: 100%;
  color: rgba(var(--cl-b), 1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.phones ul a:hover,
.locations ul a:hover,
.links ul a:hover,
.profile ul a:hover {
  color: rgba(var(--cl-e), 1);
}
.phones:hover svg,
.locations:hover svg,
.links:hover svg,
.profile:hover svg {
  fill: rgba(var(--cl-e), 1);
}
.phones:hover ul,
.locations:hover ul,
.links:hover ul,
.profile:hover ul {
  opacity: 1;
  z-index: 3;
}

.profile p {
  max-width: 151px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: rgba(var(--cl-b), 1);
}

.phones ul a {
  font-weight: 700;
}

.links {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

footer {
  position: relative;
  background-color: rgba(var(--bg-d), 1);
}

.footer {
  padding: 9px 0;
}
.footer__text {
  max-width: 675px;
  font-family: var(--font-opensans);
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
  color: rgba(var(--cl-c), 0.5);
}

.header-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  padding-top: var(--header-height);
  z-index: 25;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: rgba(var(--bg-a), 1);
  -webkit-box-shadow: 0 32px 64px 0 rgba(50, 50, 71, 0.04), 0 16px 32px 0 rgba(50, 50, 71, 0.04);
  box-shadow: 0 32px 64px 0 rgba(50, 50, 71, 0.04), 0 16px 32px 0 rgba(50, 50, 71, 0.04);
  visibility: hidden;
  opacity: 0;
}
.header-menu.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header-menu__box {
  height: calc(100svh - var(--header-height));
  background: rgba(var(--bg-a), 1);
  padding: 15px;
  overflow-y: auto;
}
.header-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(15px, 2.93vw, 30px);
}
.header-menu__heading {
  font-size: clamp(16px, 2.344vw, 24px);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.header-menu__profile {
  padding: 20px 15px;
  background-color: rgba(var(--bg-c), 1);
}
.header-menu__profile .profile__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.header-menu__profile .profile__trigger._active span svg {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}
.header-menu__profile .profile__trigger span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu__profile .profile__trigger i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--bg-g), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header-menu__profile .profile__trigger p {
  width: 100%;
  font-size: clamp(16px, 1.758vw, 18px);
}
.header-menu__profile .profile__trigger svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-menu__profile .profile__body {
  margin-left: 45px;
  padding-top: 15px;
  border-top: 1px solid rgba(var(--br-a), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(10px, 1.465vw, 15px);
}
.header-menu__profile .profile__body a {
  font-size: clamp(16px, 1.758vw, 18px);
  line-height: 120%;
}
.header-menu__accordion {
  padding-top: 20px;
}
.header-menu__bottom {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(15px, 3.906vw, 40px);
  background-color: rgba(var(--bg-c), 1);
}
.header-menu__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(10px, 1.953vw, 20px);
}
.header-menu__links {
  padding: 20px 15px;
  background-color: rgba(var(--bg-c), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(10px, 1.953vw, 20px);
}
.header-menu__link {
  min-height: 54px;
  width: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(var(--bg-a), 1);
  -webkit-box-shadow: 0 0 34px 0 rgba(22, 31, 48, 0.07);
  box-shadow: 0 0 34px 0 rgba(22, 31, 48, 0.07);
  border-radius: 4px;
  font-size: clamp(16px, 1.758vw, 18px);
  line-height: 120%;
}
.header-menu__link i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu__dropdown-trigger {
  min-height: 54px;
  width: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background-color: rgba(var(--bg-a), 1);
  -webkit-box-shadow: 0 0 34px 0 rgba(22, 31, 48, 0.07);
  box-shadow: 0 0 34px 0 rgba(22, 31, 48, 0.07);
  border-radius: 4px;
  font-size: clamp(16px, 1.758vw, 18px);
  line-height: 120%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-menu__dropdown-trigger._active {
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
.header-menu__dropdown-trigger._active span svg {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}
.header-menu__dropdown-trigger p {
  width: 100%;
  color: currentColor;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.header-menu__dropdown-trigger svg {
  fill: currentColor;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.header-menu__dropdown-body {
  padding-top: 10px;
}
.header-menu__dropdown-body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.header-menu__dropdown-body ul a {
  padding: 12px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-menu__dropdown-body ul a svg {
  fill: rgba(var(--cl-g), 1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-menu__dropdown-body ul a p {
  font-size: 16px;
  color: currentColor;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-menu__dropdown-body ul a.btn-green svg {
  fill: currentColor;
}
.header-menu__dropdown-body ul a.active {
  color: rgba(var(--cl-e), 1);
}
.header-menu__dropdown-body ul a.active p {
  font-weight: 700;
}
.header-menu__dropdown-body ul a.active svg {
  fill: currentColor;
}

.ssc-section {
  margin: 30px 0;
}
.ssc-section__wrapp > div {
  width: 100%;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(20px, 3.472vw, 50px);
  background-color: rgba(var(--bg-c), 1);
}
@media (max-width: 992px) {
  .ssc-section__wrapp > div {
    padding: 20px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.ssc-section #block-servicecomunication a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  padding: 11px 16px;
  background-color: rgba(var(--bg-a), 1);
  border: 2px solid rgba(var(--br-b), 1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 108%;
  font-weight: 700;
  color: rgba(var(--cl-e), 1);
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ssc-section #block-servicecomunication a:hover {
  background-color: rgba(var(--bg-e), 1);
  color: rgba(var(--cl-a), 1);
}
.ssc-section #block-serialsearch {
  width: 100%;
}
.ssc-section #views-exposed-form-checkgarant-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.ssc-section #views-exposed-form-checkgarant-page input {
  height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(var(--br-a), 1);
  border-radius: 4px;
  font-family: var(--font-second);
  font-size: 14px;
  line-height: 114%;
  font-weight: 600;
  color: rgba(var(--cl-c), 1);
}
.ssc-section #views-exposed-form-checkgarant-page input::-webkit-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.ssc-section #views-exposed-form-checkgarant-page input::-moz-placeholder {
  color: rgba(var(--cl-d), 1);
}
.ssc-section #views-exposed-form-checkgarant-page input:-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.ssc-section #views-exposed-form-checkgarant-page input::-ms-input-placeholder {
  color: rgba(var(--cl-d), 1);
}
.ssc-section #views-exposed-form-checkgarant-page input::placeholder {
  color: rgba(var(--cl-d), 1);
}
.ssc-section #views-exposed-form-checkgarant-page button {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 12px 30px;
  background-color: rgba(var(--bg-e), 1);
  border: 1px solid rgba(var(--bg-e), 1);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-align: center;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.ssc-section #views-exposed-form-checkgarant-page button:hover {
  background-color: rgba(var(--bg-a), 1);
  color: rgba(var(--cl-e), 1);
}
@media (max-width: 576px) {
  .ssc-section #views-exposed-form-checkgarant-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ssc-section #views-exposed-form-checkgarant-page button {
    width: 100%;
  }
}

.block-section {
  margin-bottom: 30px;
}
.block-section__wrapp {
  display: grid;
  grid-template-columns: 1fr 65%;
  grid-gap: clamp(15px, 3.906vw, 30px);
}
@media (max-width: 1240px) {
  .block-section__wrapp {
    grid-template-columns: 100%;
  }
}
.block-section__aside .user-login-form {
  height: 380px;
  padding: 50px 30px;
  background-color: rgba(var(--bg-c), 1);
}
.block-section__aside .user-login-form .js-form-block {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.block-section__aside .user-login-form .js-form-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.block-section__aside .user-login-form .reset-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  color: rgba(var(--cl-e), 1);
}
.block-section__aside .user-login-form .reset-password svg {
  fill: currentColor;
}
.block-section__aside .user-pass {
  height: 380px;
  padding: 50px 30px 77px;
  background-color: rgba(var(--bg-c), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.block-section__aside .user-pass .title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.block-section__aside .user-pass .form-actions {
  margin-top: 20px;
}
.block-section__aside .user-pass .js-form-block {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}
.block-section__aside .user-pass .js-form-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.block-section__content {
  position: relative;
  padding: 30px 20px;
  background-color: rgba(var(--bg-c), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
.block-section__content h1 {
  margin-bottom: 30px;
}

.promo {
  position: relative;
  height: 100%;
}
.promo__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.promo__container {
  height: 100%;
}
.promo__controls {
  position: absolute;
  right: 40px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.promo__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid rgba(var(--bg-a), 1);
  color: rgba(var(--cl-a), 1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.promo__btn svg {
  fill: currentColor;
}
.promo__btn:hover {
  background-color: rgba(var(--bg-e), 1);
  border: 2px solid rgba(var(--br-b), 1);
}
.promo__slide {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.promo__slide-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.promo__slide-bg picture,
.promo__slide-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.promo__slide-info {
  max-width: 420px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(10px, 1.465vw, 15px);
  padding: 30px clamp(20px, 2.93vw, 30px);
  background-color: rgba(var(--bg-a), 1);
}
.promo__slide-title {
  line-height: 110%;
  color: rgba(var(--cl-c), 1);
}
.promo__slide-title span,
.promo__slide-title b,
.promo__slide-title strong {
  word-break: break-all;
}
.promo__slide-link {
  padding: 10px 30px;
  background-color: rgba(var(--bg-e), 1);
  border: 2px solid rgba(var(--bg-e), 1);
  font-family: var(--font-third);
  font-size: 16px;
  line-height: 100%;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(var(--cl-a), 1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.promo__slide-link:hover {
  color: rgba(var(--cl-e), 1);
  background-color: rgba(var(--cl-a), 1);
}
.promo__slide.text-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1240px) {
  .promo__slide {
    padding: 80px 40px;
  }
}
@media (max-width: 767px) {
  .promo {
    height: 394px;
    width: 100vw;
    margin-left: -15px;
  }
  .promo__slide {
    padding: 10px 15px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .promo__slide.text-right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .promo__controls {
    display: none;
  }
}

.partners-section {
  padding-bottom: 60px;
}
.partners-section__wrapp {
  position: relative;
}
.partners-section__top {
  display: contents;
}
@media (max-width: 1440px) {
  .partners-section__top {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.partners-section__title {
  display: none;
}
@media (max-width: 1440px) {
  .partners-section__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.partners-section__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.partners-section__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .partners-section__slider {
    width: 100vw;
    margin-left: -15px;
  }
}
.partners-section__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid rgba(var(--br-c), 1);
  color: rgba(var(--br-c), 1);
  -webkit-transition: hover 0.3s ease-in-out;
  transition: hover 0.3s ease-in-out;
}
.partners-section__btn svg {
  fill: currentColor;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.partners-section__btn.partner-prev {
  left: -70px;
}
.partners-section__btn.partner-next {
  right: -70px;
}
.partners-section__btn:hover {
  background-color: rgba(var(--br-c), 1);
  border: 2px solid rgba(var(--br-c), 1);
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 1440px) {
  .partners-section__btn {
    position: relative;
    top: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
  }
  .partners-section__btn.partner-prev {
    left: initial;
  }
  .partners-section__btn.partner-next {
    right: initial;
  }
}

.navigation {
  background-color: rgba(var(--bg-c), 1);
  padding: 30px 20px;
}
.navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.navigation ul a {
  height: 54px;
  padding: 0 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  background-color: #fff;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 87%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation ul a:hover {
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
}
.navigation ul a.active {
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
  font-weight: 700;
}

.nav {
  margin-bottom: 40px;
}
.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
.nav ul a {
  height: 40px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: rgba(var(--cl-e), 1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0 20px 0 rgba(22, 31, 48, 0.1);
  box-shadow: 0 0 20px 0 rgba(22, 31, 48, 0.1);
}
.nav ul a:hover {
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
}
.nav ul a.active {
  color: rgba(var(--cl-a), 1);
  background-color: rgba(var(--bg-e), 1);
  font-weight: 700;
}
.nav ul a.active.btn-green {
  color: rgba(var(--cl-a), 1);
}
.nav ul a.btn-green {
  color: rgba(var(--cl-f), 1);
}
.nav ul a.btn-green:hover {
  color: rgba(var(--cl-a), 1);
}
@media (max-width: 992px) {
  .nav {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
