/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./frontend/src/css/app.css ***!
  \******************************************************************************************************************************************************************************/
/*------------ROOT STYLES---------------*/
:root {
  --font-ibm: 'IBM', SegoeUI;
  --font-roboto: 'Roboto', Roboto, SegoeUI;

  --color-primary: #E40114;
  --color-primary-light: #FE0116;
  --color-secondary: #161413;
  --color-secondary-light: #363130;
  --color-tertiary: #B2B2B2;
  --color-tertiary-03: rgba(178, 178, 178, 0.3);
  --color-tertiary-03-fill: #2e2c2b;
  --color-tertiary-015: rgba(178, 178, 178, 0.15);
  --color-surface: #F5F5F5;
  --color-disabled: #ddd;
  --color-accent: #F6AC0E;
  --color-error: var(--color-primary);
  --color-info: var(--color-accent);
  --color-success: #268100;

  --default-transition-delay: .2s;

  --clip-small: polygon(calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px, 5px 0);
  --clip-big: polygon(calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px, 5px 0);;
}
@font-face {
  font-family: 'IBM';
  src: url('/local/templates/main/fonts/IBMPlexMono-Regular.woff2') format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IBM';
  src: url('/local/templates/main/fonts/IBMPlexMono-Bold.woff2') format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('/local/templates/main/fonts/RobotoCondensed-Bold.woff2') format("woff2");
  font-weight: 700;
  font-display: swap;
}
h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  font-family: var(--font-roboto);
}
h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-block: 40px;
  color: var(--color-tertiary);
  font-family: var(--font-roboto);
}
h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  font-family: var(--font-roboto);
  margin-bottom: 20px;
}
h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 110%;
  font-family: var(--font-roboto);
  margin-bottom: 20px;
}
p {
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 15px;
}
.section-title {
  color: var(--color-tertiary);
  text-transform: uppercase;
}
ul {
  margin-left: 17px;
  margin-bottom: 20px;

  li:not(:last-child) {
    margin-bottom: 15px;
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  max-width: 1920px;
  min-width: 360px;
  margin: 0 auto;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
body {
  color: var(--color-secondary);
  font-family: var(--font-ibm);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 55px;

  &:has(.content-page) {
    margin-top: 70px;
  }
}
.container {
  max-width: 1520px;
  margin: 0 auto;
}
.small {
  font-size: 12px;
  line-height: 1;
}
.section-list {
  margin-top: 30px;
  margin-bottom: 50px;

  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.product-carusel {
  margin-bottom: 50px;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 10px;
}
.content-page {
  h1 {
    margin-bottom: 40px;
  }

  ul, ol {
    margin: 25px;
  }
}
.card-list {
  margin-bottom: 50px;

  &.card-list--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 10px;
  }
}
.mb {
  margin-bottom: 50px;
}
.button-line {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.product-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;

  h2 {
    margin-top: 0;
  }
}
.backdrop {
  background: #000000d6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.is-scrolling {
  display: flex !important;
  position: relative;

  &::after {
    content: '';
    background-image: url('/local/templates/main/img/ch-r.svg');
    background-repeat: no-repeat;
    width: 25px;
    height: 36px;
    position: sticky;
    right: 0;
    background-color: #ffffff99;
    background-position: center;
    top: 0;
    flex-shrink: 0;
  }
}
.btn {
  font-family: var(--font-ibm);
  font-weight: 700;
  font-size: 16px;
  border: 0;
  background-color: transparent;
  padding: 14px;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--default-transition-delay), color var(--default-transition-delay);
  clip-path: var(--clip-big);
}
.btn--round,
.btn--icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn--round::after {
  content: '';
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
}
.btn--red {
  color: #fff;
  background-color: var(--color-primary);

  &:hover {
    background-color: var(--color-primary-light);
  }
}
.btn--black {
  color: #fff;
  background-color: var(--color-secondary);

  &:hover {
    background-color: var(--color-secondary-light);
  }

  svg {
    fill: #fff;
  }
}
.btn--grey {
  color: var(--color-secondary);
  background-color: var(--color-surface);

  &:hover {
    background-color: var(--color-disabled);
  }

  &.btn--round::after {
    background-color: var(--color-secondary);
  }
}
.btn--notext {
  font-size: 0;
  line-height: 0;
}
.btn:disabled {
  opacity: .5;
  pointer-events: none;
}
table:not([class]) {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  margin-bottom: 15px;

  thead {
    th {
      text-align: left;
      background-color: var(--color-disabled);
      border: 1px solid #fff;
    }
  }

  td, th {
    padding: 10px;
    min-width: 50px;
    border: 1px solid var(--color-disabled);
  }
}
.table-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/*------------PLUGINS STYLES---------------*/
.splide__container {
  box-sizing: border-box;
  position: relative
}
.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important
}
.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto
}
.splide:not(.is-overflow) .splide__pagination {
  display: none
}
.splide__progress__bar {
  width: 0
}
.splide {
  position: relative;
  visibility: hidden
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
  max-width: 100%;
  height: auto;
  align-self: center;
}
.splide__slide img {
  vertical-align: bottom
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0
}
@keyframes splide-loading {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(1turn)
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none
}
.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0
}
.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1
}
.splide--rtl {
  direction: rtl
}
.splide__track--ttb>.splide__list {
  display: block
}
.splide .container {
  position: relative;
}
.splide__arrows {
  top: -110px;
  position: absolute;
  gap: 12px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.splide__arrow {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 12px 0px #00000040;
  transition: background var(--default-transition-delay);
}
.splide__arrow:hover {
  background: var(--color-primary);
}
.splide__arrow svg {
  fill: #101828;
  transition: fill var(--default-transition-delay);
}
.splide__arrow:hover svg {
  fill: #fff;
}
.splide__arrow:hover:not(:disabled) {
  opacity: .9
}
.splide__arrow:disabled {
  opacity: .3
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__arrow--next svg {
  transform: scaleX(-1)
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__pagination {
  bottom: .5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: .7;
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: 8px
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__progress__bar {
  background: #ccc;
  height: 3px
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}
.splide__slide:focus {
  outline: 0
}
@supports(outline-offset:-3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}
@supports(outline-offset:-3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px
  }
}
.splide__toggle {
  cursor: pointer
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px
}
.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1)
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1)
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%)
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg)
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg)
}
.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: .5em;
  top: 0
}
.main-carusel {
  margin-top: 40px;
}
.main-carusel__item {
  border: var(--base-border);
  padding: 24px;
}
.main-carusel__img {
  width: 100%;
}
.main-carusel__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  font-family: var(--font-museo-sans);
  margin-top: 18px;
}
.main-carusel__arrows {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding: 24px 0;
}
.main-carusel__arrow {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: translate(0);
  opacity: 1;
}
.main-carusel__arrow svg {
  width: 30px;
  height: 30px;
}
.container.splide-count {
  margin-top: 48px;
  margin-bottom: 56px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-neue);
  color: #98A2B3;
}
.splide-count span {
  color: #000;
}
body {
  box-sizing: border-box;
}
body.gmodal-open {
  overflow-y: hidden;
  -webkit-overflow-scrolling: auto;
}
.gmodal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.3);
}
.gmodal-backdrop.has-animate {
  transition: opacity 0.15s linear;
  will-change: opacity;
  opacity: 0;
}
.gmodal-backdrop.has-animate.is-shown {
  opacity: 1;
}
.gmodal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.gmodal *,
.gmodal *::before,
.gmodal *::after {
  box-sizing: border-box;
}
.gmodal.has-animate .gmodal__container {
  will-change: transform, opacity;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.15s linear;
  transform: scale(0.97);
}
.gmodal.has-animate.is-shown .gmodal__container {
  opacity: 1;
  transform: none;
}
.gmodal.is-hidden {
  z-index: -1 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.gmodal__dialog {
  position: absolute;
  min-height: 100vh;
  width: 100%;
  border-radius: 24px;
  background-color: #fff;
}
.gmodal__body, .gmodal__footer {
  position: relative;
}
.gmodal__footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.gmodal__title {
  font-weight: 700;
  font-family: var(--font-neue);
  font-size: 32px;
  margin-bottom: 32px;
  margin-top:38px;
}
.gmodal__close {
  margin-left: auto;
  padding: 0;
  border: 0;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  transition: opacity 0.25s ease;
}
.gmodal__close svg {
  display: block;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.gmodal__close:hover {
  opacity: 1;
}
.gmodal__bg {
  display: none;
}
.gmodal__form {
  width: 100%;
  padding: 16px;
}
.gmodal__body {
  display: flex;
  align-items: center;
}
.gmodal__body .form__bottom {
  flex-direction: column;
  align-items: flex-start;
}
.gmodal__body .custom-check {
  order: 1;
}
.gmodal__body button {
  order: 2;
}
.gmodal__body .form form {
  gap: 4px;
}
.toasti {
  position: fixed;
  right: 0;
  left: 0;
  width: auto;
  min-width: 300px;
  max-width: 550px;
  margin: 0 auto;
  padding: 15px;
  font-family: var(--font-ibm);
  color: #fff;
  background-color: #323232;
  box-sizing: border-box;
  will-change: transform, opacity;
  font-size: 16px;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.toasti.success {
  background-color: var(--color-success);
}
.toasti.error {
  background-color: var(--color-error);
  color: #fff;
  text-align: left;
}
.toasti.info {
  background-color: var(--color-success);
}
.toasti--bottom-right {
  bottom: 0;
  transform: translate3d(0, 100%, 0);
}
.toasti--bottom-center {
  bottom: 0;
  transform: translate3d(0, 100%, 0);
}
.toasti--bottom-left {
  bottom: 0;
  transform: translate3d(0, calc(100% + 20px), 0);
}
.toasti--top-right {
  top: 0;
  transform: translate3d(0, -100%, 0);
}
.toasti--top-center {
  top: 0;
  transform: translate3d(0, -100%, 0);
}
.toasti--top-left {
  top: 0;
  transform: translate3d(0, -100%, 0);
}
.toasti.toasti-enter {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@font-face {
  font-family: 'lg';
  src: url("/local/templates/main/fonts/lg.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'lg' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: none;
  border: none;
  background-color: transparent;
}
.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
  color: #FFF;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}
.lg-actions .lg-prev {
  left: 20px;
}
.lg-actions .lg-prev:after {
  content: "\e094";
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  animation: lg-left-end 0.3s;
  position: relative;
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  background: none;
  border: none;
  box-shadow: none;
  transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
  color: #FFF;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}
.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}
.lg-toolbar,
.lg-prev,
.lg-next {
  opacity: 1;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}
.lg-hide-items .lg-prev {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
  opacity: 0;
  transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.lg-outer .lg-thumb-outer {
  background-color: var(--color-disabled);
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
  transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}
.lg-outer .lg-toggle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
  outline: medium none;
  border: none;
}
.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toggle-thumb:hover {
  color: #FFF;
}
.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}
.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}
.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}
.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}
.lg-autoplay-button:after {
  content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  transform: scale3d(1, 1, 1);
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transform-origin: 0 0;
  backface-visibility: hidden;
}
#lg-zoom-in:after {
  content: "\e311";
}
#lg-actual-size {
  font-size: 20px;
}
#lg-actual-size:after {
  content: "\e033";
}
#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
#lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}
.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}
.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}
.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}
.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}
.lg-fullscreen:after {
  content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}
.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  transition-delay: 0s;
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}
.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 5px, 0);
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}
.lg-outer .lg-dropdown>li:last-child {
  margin-bottom: 0px;
}
.lg-outer .lg-dropdown>li:hover a,
.lg-outer .lg-dropdown>li:hover .lg-icon {
  color: #333;
}
.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}
.lg-outer #lg-share {
  position: relative;
}
.lg-outer #lg-share:after {
  content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e904";
}
.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e907";
}
.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e905";
}
.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e906";
}
.lg-outer .lg-img-rotate {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
.lg-rotate-left:after {
  content: "\e900";
}
.lg-rotate-right:after {
  content: "\e901";
}
.lg-icon.lg-flip-hor,
.lg-icon.lg-flip-ver {
  font-size: 26px;
}
.lg-flip-hor:after {
  content: "\e902";
}
.lg-flip-ver:after {
  content: "\e903";
}
.lg-group {
  *zoom: 1;
}
.lg-group:before,
.lg-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.lg-group:after {
  clear: both;
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  outline: none;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  box-sizing: border-box;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
  transition-duration: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}
.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.lg-outer .lg-item {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-empty-html {
  display: none;
}
.lg-outer.lg-hide-download #lg-download {
  display: none;
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: var(--color-tertiary-03-fill);
  opacity: 0;
  transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
  opacity: 1;
}
.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-outer .lg-video-cont {
  max-width: 100% !important;
}
/*------------COMPONENTS STYLES---------------*/
.header {
  background-color: var(--color-secondary);
  border-bottom: 1px solid var(--color-tertiary-015);
  padding-block: 5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header__line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo {
  margin-right: 50px;
  font-size: 0;
}
.header__button-area {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__search-btn {
  clip-path: var(--clip-small);
  background-color: var(--color-tertiary-015);
  transition: background-color var(--default-transition-delay);

  &:hover {
    background-color: var(--color-tertiary-03);
  }

  svg {
    fill: #fff;
  }
}
.header__catalog-btn {
  svg {
    fill: #fff;
  }
}
.header-phone__small {
  color: var(--color-tertiary);
  margin-bottom: 8px;
}
.header-phone__link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color var(--default-transition-delay);

  &:hover {
    color: var(--color-primary);
  }
}
.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__btn-mobil-menu {
  display: none;

  .icon-cross {
    display: none;
  }

  &.is-open {
    svg {
      display: none;
    }

    .icon-cross {
      display: block;
    }
  }
}
.header__last-block {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 5px;
}
.social {
  display: flex;
  align-items: center;
}
.social__item {
  line-height: 0;
  padding: 14px;
  clip-path: var(--clip-small);
  background-color: var(--color-tertiary-03-fill);
  transition: background-color var(--default-transition-delay);

  &:not(:first-child) {
    margin-left: -.5px;
  }

  &:hover {
    background-color: var(--color-tertiary-03);
  }
}
.header-menu {
  display: flex;
  align-items: center;
}
.header-menu__item {
  position: relative;
  text-decoration: none;
  padding: 0 10px;

  &::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 25px;
  }
}
.header-menu__item span {
  color: var(--color-tertiary);
  text-transform: uppercase;
  display: block;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  background-color: transparent;
  clip-path: var(--clip-big);
  word-spacing: -5px;
  transition: background-color var(--default-transition-delay);

  &:hover {
    background-color: var(--color-tertiary-015);
  }
}
.header-menu__drop {
  display: none;
  width: 200px;
  background-color: #fff;
  clip-path: var(--clip-small);
  flex-direction: column;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 53px;
}
.header-menu__link {
  padding: 12px 25px;
  color: var(--color-secondary);
  text-decoration: none;

  &:hover {
    background-color: var(--color-surface);
  }
}
.header-menu__item:hover .header-menu__drop {
  display: flex;
}
.section-item {
  border: 2px solid var(--color-tertiary-015);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px 15px;
  text-decoration: none;
  transition: border-color var(--default-transition-delay);
}
.section-item__img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-item__name {
  font-size: 26px;
  font-family: var(--font-roboto);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.section-item__count {
  margin-left: auto;
  font-size: 26px;
  font-family: var(--font-roboto);
  color: var(--color-disabled);
  font-weight: 700;
  transition: color var(--default-transition-delay);
}
.section-item:hover {
  border-color: var(--color-primary);

  .section-item__count {
    color: var(--color-secondary);
  }
}
.merits {
}
.merits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.merits__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.merits__icon {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.merits__desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.merits__title {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;

  &.merits__title--big {
    font-size: 24px;
  }
}
.merits__text {
  color: var(--color-tertiary);
}
.carusel-list {
}
.carusel-list__controls {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
.carusel-list__btn {

}
.carusel-list__arrows {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.carusel-list__arrow {
  clip-path: var(--clip-small);
}
.carusel-list__arrow--left {

  svg {
    transform: scale(-1);
  }
}
.carusel-list__arrow--right {

}
.carusel-list__controls-dots {
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 12px;
}
.carusel-list__controls-dot {
  height: 2px;
  width: 100%;
  display: block;
  background-color: var(--color-tertiary-03);

  &.is-active {
    background-color: var(--color-secondary);
  }
}
.card-item {

  &:hover {
    .card-item__name {
      color: var(--color-primary);
    }
  }

  iframe {
    width: 100%;
  }
}
.card-item__img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 10px;
  clip-path: var(--clip-small);
}
.card-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-inline: 10px;
}
.card-item__date {
  color: var(--color-tertiary);
}
.card-item__views {
  color: var(--color-tertiary);
  display: flex;
  align-items: center;
  gap: 5px;

  svg {
    fill: var(--color-tertiary);
  }
}
.card-item__name {
  padding-inline: 10px;
  font-size: 15px;
  line-height: 1.4;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color var(--default-transition-delay);
  display: block;
  height: 60px;
}
.product-item {
  border: 2px solid var(--color-tertiary-015);
  padding: 20px;
  clip-path: var(--clip-small);
}
.product-item__name {
  font-family: var(--font-roboto);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  transition: color var(--default-transition-delay);
  margin-bottom: 15px;
  display: block;
  height: 72px;
  overflow: hidden;
}
.product-item__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;

  a& {
    display: inline-flex;
    text-decoration: none;
    padding: 5px;
    transition: background-color var(--default-transition-delay);
    clip-path: var(--clip-small);

    &:hover {
      background-color: var(--color-disabled);
    }
  }
}
.product-item__rate {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-secondary);
}
.product-item__count {
  color: var(--color-tertiary);
}
.product-item__img {
  width: 100%;
  height: 250px;
  -o-object-fit: none;
     object-fit: none;
}
.product-item__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.product-item__price {
  font-family: var(--font-roboto);
  font-size: 26px;
  font-weight: 700;
}
.product-item__label {
  font-size: 16px;
  clip-path: var(--clip-small);
  background: var(--color-secondary);
  padding: 5px 10px;
  color: #fff;
  text-transform: uppercase;

  &:empty {
    display: none;
  }
}
.product-item:hover {
  .product-item__name {
    color: var(--color-primary);
  }
}
.main-banner {
  position: relative;
}
.main-banner__item {
  position: relative;
}
.main-banner__wrap {
  position: absolute !important;
  left: 50%;
  top: 30px;
  width: 100%;
  height: calc(100% - 30px);
  transform: translateX(-50%);
}
.main-banner__banner {
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.main-banner__title {
  font-size: 24px;
  font-family: var(--font-roboto);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  width: 55%;
}
.main-banner__props {
  display: grid;
  width: 100%;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  position: absolute;
  left: 0;
  bottom: 80px;
}
.main-banner__prop {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  backdrop-filter: blur(50px);
  border: 1px solid #FFFFFF0D;
  padding: 10px 15px;
}
.main-banner__left {
  &:not(:has(.main-banner__param)) .main-banner__name {
    margin-bottom: 0;
  }
}
.main-banner__name {
  margin-bottom: 20px;
}
.main-banner__param {
  font-size: 17px;
  font-weight: 700;
}
.main-banner__icon {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
.main-banner__controls {
  position: absolute !important;
  width: 100%;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
}
.main-banner__controls .carusel-list__arrow {
  background-color: var(--color-tertiary-03-fill);

  &:not(:first-child) {
    margin-left: -.5px;
  }

  svg {
    fill: #fff;
  }

  &:hover {
    background-color: var(--color-tertiary-03);
  }
}
.main-banner__controls-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 12px;
}
.main-banner__controls-dot {
  height: 2px;
  width: 100%;
  display: block;
  background-color: var(--color-tertiary-03);

  &.is-active {
    background-color: #fff;
  }
}
.footer {
  background-color: var(--color-secondary);
  padding-top: 50px;
  margin-top: 50px;
}
.footer__top {
  display: flex;
  border-bottom: 1px solid var(--color-tertiary-015);
  padding-bottom: 50px;
}
.footer__copy {
  padding-block: 20px;
  color: var(--color-tertiary);

  a {
    color: inherit;
    text-decoration: underline;
    transition: color var(--default-transition-delay);

    &:hover {
      color: var(--color-primary);
    }
  }
}
.footer-menu {
  display: contents;
}
.footer-menu__col {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;

  &.hide-mob {
    display: none;
  }
}
.footer-menu__name {
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.footer-menu__link {
  color: var(--color-tertiary);
  line-height: 1.4;
  text-decoration: none;
  transition: color var(--default-transition-delay);

  &:hover {
    color: var(--color-primary);
  }
}
.footer-menu__toggle {
  display: none;
}
.footer-menu__col.is-open {
  .footer-menu__link {
    display: block;
  }
  .footer-menu__toggle {
    height: 100%;

    svg {
      transform: rotate(-90deg);
    }
  }
  .footer-menu__name {
    margin-bottom: 20px;
  }
}
.footer-contacts {
  flex: 1;
}
.footer-contacts__name {
  margin-bottom: 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  display: block;
  text-decoration: none;
}
.footer-contacts__text {
  color: var(--color-tertiary);
  margin-bottom: 8px;
}
.footer-contacts__phone {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  transition: color var(--default-transition-delay);

  &:hover {
    color: var(--color-primary);
  }
}
.popup-catalog {
  position: relative;

  .cross-icon {
    display: none;
  }
}
.popup-catalog__list {
  position: absolute;
  width: 1000px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background-color: #fff;
  clip-path: var(--clip-small);
  top: 53px;
  padding: 10px;

  .section-item__name {
    font-size: 18px;
  }
}
.popup-catalog.is-open {
  svg {
    display: none;
  }

  .cross-icon {
    display: block;
  }

  .popup-catalog__list {
    display: grid;
  }
}
.mobile-menu {
  position: fixed;
  top: 61px;
  padding-block: 20px;
  padding-bottom: 20px !important;
  left: 0;
  width: 100%;
  z-index: 2;
  display: block;
  background-color: var(--color-secondary);

  .footer-menu {
    display: block;
  }

  .footer-menu__link {
    display: none;
    padding-left: 15px;
  }

  .footer-menu__name {
    margin-bottom: 0;
    padding-left: 15px;
  }

  .footer-menu__col {
    padding-block: 20px;
    position: relative;
    border-bottom: 1px solid var(--color-tertiary-015);
  }

  .footer-menu__toggle {
    display: flex;
    position: absolute;
    right: 0;
    background-color: transparent;
    border: 0;
    padding: 20px;
    border-left: 1px solid var(--color-tertiary-015);
    transform: translateY(-50%);
    top: 50%;
    width: 56px;
    height: 56px;
    align-items: center;

    svg {
      fill: #fff;
      transform: rotate(90deg);
      transition: transform var(--default-transition-delay);
    }
  }
  .footer-contacts__name {
    border-bottom: 1px solid var(--color-tertiary-015);
    padding-block: 20px;
    padding-left: 15px;
  }
  .footer-contacts__text,
  .footer-contacts__phone {
    padding-left: 15px;
  }
  .footer-contacts__social {
    margin-left: 15px;
  }
}
.search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  padding: 10px 20px;
  display: none;

  &.is-open {
    display: block;
  }
}
.search__form {
  display: flex;
  align-items: center;
  gap: 5px;
}
.search__input {
  font-size: inherit;
  font-family: inherit;
  line-height: 1;
  color: inherit;
  padding: 11px 20px;
  width: 100%;
  border: 2px solid var(--color-tertiary-015);
  outline: none;
  transition: border-color var(--default-transition-delay);

  &:focus {
    border-color: var(--color-secondary);
  }
}
.search__btn {
  clip-path: var(--clip-small);
}
.search__result {
}
.search__result:not(:has(.search__desc)) {
  display: none;
}
.search__desc {
  margin-bottom: 20px;
  margin-top: 15px;
  font-family: var(--font-roboto);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-tertiary);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumbs__item {
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  padding: 2px 3px;
  clip-path: var(--clip-small);
  transition: background-color var(--default-transition-delay);

  &:not(:last-child) {
    &:hover {
      background-color: var(--color-tertiary-015);
    }
  }
}
.breadcrumbs__sep {
  color: var(--color-disabled);
}
.breadcrumbs__item--last {
  color: var(--color-disabled);
}
.pagination {
  display: flex;
  align-items: center;
  margin-top: 45px;

  a,
  span {
    margin-left: -.5px;
  }
}
.pagination--center {
  justify-content: center;
}
.pagination__arrow {
  clip-path: var(--clip-small);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-tertiary-015);
  transition: background-color var(--default-transition-delay);

  &:hover {
    background-color: var(--color-tertiary-03);
  }
}
.pagination__arrow--left {

  svg {
    transform: scale(-1);
  }
}
.pagination__page {
  clip-path: var(--clip-small);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--color-tertiary-015);
  transition: background-color var(--default-transition-delay);

  &:hover {
    background-color: var(--color-tertiary-03);
  }

  &.is-active {
    background-color: var(--color-secondary);
    color: #fff;
  }
}
.pagination__sep {
  clip-path: var(--clip-small);
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface);
}
.card-detail {
  max-width: 1000px;
  margin: 0 auto;

  .product-carusel {
    margin-block: 65px 50px;
  }

  img {
    max-width: 100%;
  }
}
.card-detail__poster {
  margin-bottom: 65px;
  max-width: 100%;
}
.page-menu {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--color-secondary);
  margin-bottom: 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-menu__item {
  white-space: nowrap;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-tertiary);
  transition: color var(--default-transition-delay), background-color var(--default-transition-delay);

  &:hover {
    background-color: var(--color-tertiary-015);
    color: var(--color-secondary);
  }

  input[type="radio"] {
    display: none;
  }

  &.is-active,
  &:has(input[type="radio"]:checked) {
    color: #fff;
    background-color: var(--color-secondary);
  }
}
.col-block {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  flex-wrap: wrap;
}
.col-block__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.col-block__btn {
  width: -moz-fit-content;
  width: fit-content;;
}
.faq {

}
.faq__item {
  padding: 15px;
  border: 1px solid var(--color-tertiary-015);
  position: relative;
  cursor: pointer;
}
.faq__quest {
  display: flex;
  align-items: center;
}
.faq__title {

}
.faq__icon {
  margin-left: auto;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--color-tertiary-015);
  position: absolute;
  right: 0;
  font-size: 0;
  line-height: 0;
  top: 0;
  height: 100%;
}
.faq__icon--minus {
  display: none;
}
.faq__desc {
  display: none;
  padding-left: 10px;
  padding-top: 10px;
  color: var(--color-tertiary);
}
.faq__item.is-open {
  .faq__desc {
    display: block;
  }

  .faq__icon {
    svg {
      display: none;
    }
    .faq__icon--minus {
      display: block;
    }
  }
}
.form__wrap {
  display: flex;
  width: 100%;
  gap: 15px;

  input,
  textarea {
    width: 100%;
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1;
    font-family: inherit;
    outline: none;
    border: 2px solid var(--color-tertiary-015);
    transition: border-color var(--default-transition-delay);

    &:focus {
      border-color: var(--color-secondary)
    }
  }

  textarea {
    resize: none;
    height: 100%;
  }
}
.form__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form__item {
  position: relative;
  height: 100%;
  width: 100%;
}
.form__label {
  position: absolute;
  left: 15px;
  top: 10px;
  color: var(--color-secondary);
  pointer-events: none;
  padding: 4px;
  background-color: transparent;
  transition-property: font-size, top, background-color;
  transition-duration: var(--default-transition-delay);

  .is-focus & {
    background-color: #fff;
    font-size: 14px;
    top: -14px;
  }
}
.feedback-form .form__btn {
  margin-top: 20px;
}
.quest-form {
  margin-bottom: 15px;
}
.form__politic {
  margin-top: 15px;
}
.product-slider {
  width: 50%;
  position: relative;
  padding-left: 120px;

  .main-banner__controls {
    transform: translate(-50%, 50%);
    top: 50%;
    bottom: auto;
    pointer-events: none;
  }
  .main-banner__controls .carusel-list__arrow {
    background-color: var(--color-surface);
    pointer-events: all;

    svg {
      fill: var(--color-secondary);
    }

    &:hover {
      background-color: var(--color-tertiary-03);
    }
  }
  .carusel-list__controls {
    margin-top: 0;
  }
  .carusel-list__arrows {
    justify-content: space-between;
    width: 100%;
  }
}
.product-slider__banner {
  cursor: pointer;
  transition: opacity var(--default-transition-delay);

  &:hover {
    opacity: .8;
  }
}
.carusel-mini {
  overscroll-behavior: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 0;
  height: 100%;
  width: 120px;
  top: 0;
  overflow-y: auto;

  img {
    cursor: pointer;
    height: 100px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid transparent;
    transition: border-color var(--default-transition-delay), opacity var(--default-transition-delay);

    &:hover {
      opacity: .8;
    }

    &.is-active {
      border-color: var(--color-tertiary);
      opacity: .8;
    }
  }
}
.product-detail__top-block {
  display: flex;
  gap: 30px;
}
.product-detail__info {
  width: 50%;
  display: flex;
  gap: 30px;
}
.product-detail__params {
  flex-shrink: 0;
  max-width: 360px;
  width: 100%;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: flex-start;

  .btn {
    display: inline-block;
  }
}
.product-detail__right {
  width: 100%;
}
.product-detail__stats {
  display: flex;
  flex-direction: column;
  gap: 10px;

  .main-banner__prop {
    border: 2px solid var(--color-tertiary-015);
    color: var(--color-secondary);
    backdrop-filter: unset;
  }
}
.product-detail__controls {
  position: sticky;
  top: 70px;
  margin-top: 30px;
  padding: 15px;
  box-shadow: 1px 6px 12px #b3b3b3;
}
.product-detail__controls-top {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;

  svg {
    fill: #fff;
  }
}
.product-detail__price {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 50px;
}
.product-detail__controls-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  flex-direction: column;

  .btn {
    width: 100%;
    justify-content: center;
  }

  a {
    background-color: var(--color-tertiary-03);
  }
}
.product-detail__control {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;

  &>.btn {
    width: 100%;
    justify-content: center;
  }

  .counter {
    display: none;
  }
}
.product-detail__control.has-cart {
  justify-content: space-between;

  & > .btn {
    width: auto;
  }

  .counter {
    display: flex;
  }
}
.product-params {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;

  a {
    color: var(--color-secondary);
  }
}
.product-params__desc {
  color: var(--color-tertiary);
  padding-block: 10px;
  border-bottom: 2px solid var(--color-tertiary-015);
}
.product-params__col {
  width: 100%;
}
.product-params__line {
  padding-block: 5px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  border-bottom: 1px solid var(--color-tertiary-015)
}
.product-params__name {
  width: 50%;
}
.product-params__value {
  width: 50%;
}
.product-params--full {
  .product-params__line {
    flex-direction: column;
  }
  .product-params__name,
  .product-params__value {
    width: 100%;
  }
}
.product-params-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-params-list__item {
  display: flex;
  align-items: center;
  gap: 5px;

  &::before {
    content: '- ';
  }
}
.product-tabs {

}
.product-tabs__controls {
  display: flex;
  align-items: center;
  clip-path: var(--clip-small);
  margin-bottom: 15px;

  .tab-control {
    width: 50%;
  }
}
.product-tabs__content {

}
.product-tabs__pane {
  display: none;

  &.is-active {
    display: block;
  }

}
.product-tabs__btn {
  margin-top: 10px;
}
.tab-control {
  background-color: var(--color-surface);
  transition: background-color var(--default-transition-delay);
  border: 0;
  outline: none;
  cursor: pointer;
  padding: 10px;
  text-align: left;

  &.is-active {
    background-color: var(--color-tertiary);

    .tab-control__score,
    .tab-control__count {
      color: #fff;
    }
  }
}
.tab-control__score {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-roboto);
  gap: 5px;
  color: var(--color-secondary);
}
.tab-control__count {
  color: var(--color-tertiary);
  font-size: 12px;
}
.product-user-area {
  img {
    max-width: 100%;
  }

  iframe {
    aspect-ratio: 16 / 9;
  }

  img,
  iframe {
    margin-bottom: 15px;
    clip-path: var(--clip-small);
  }
}
.file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.file-list__item {
  border-bottom: 2px solid var(--color-tertiary-015);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.file-list__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  color: var(--color-tertiary);
  font-size: 12px;
  gap: 10px;
}
.file-list__name {
  text-decoration: none;
  color: var(--color-secondary);

  &:hover {
    color: var(--color-primary);
  }
}
.product-titles {
  display: flex;
  align-items: center;
  position: sticky;
  top: 55px;
  border-top: 1px solid #fff;
  background-color: var(--color-surface);
  z-index: 5;
}
.product-title__item {
  padding: 11px 15px;
  font-size: 16px;
  font-weight: 700;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-secondary);
  transition: color var(--default-transition-delay), background-color var(--default-transition-delay);

  &.is-active {
    background-color: var(--color-tertiary);
    color: #fff;
  }
}
.quest-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quest-items__item {
  background: var(--color-surface);
  padding: 10px;
}
.quest-items__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.quest-items__left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quest-items__right {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.quest-items__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 5px;
}
.quest-items__date {
  color: var(--color-tertiary);
}
.quest-items__answ {
  margin-left: 25px;
  margin-top: 15px;
}
.quest-items__end {
  text-align: center;
  padding-block: 15px;
  font-size: 18px;
}
.quest-items__files {
  margin-top: 15px;
  display: flex;
  gap: 5px;

  img {
    width: 75px;
    height: 75px;
    -o-object-fit: cover;
       object-fit: cover;
    cursor: pointer;
    transition: opacity var(--default-transition-delay);

    &:hover {
      opacity: .6;
    }
  }
}
.mini-cart {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: var(--clip-small);
  background-color: var(--color-surface);
  position: relative;
  transition: background-color var(--default-transition-delay);

  svg {
    fill: var(--color-secondary);
  }

  &:hover {
    background-color: var(--color-disabled);
  }
}
.mini-cart__count {
  position: absolute;
  background-color: var(--color-primary);
  height: 16px;
  min-width: 16px;
  clip-path: var(--clip-small);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  top: 2px;
  left: 26px;

  &:empty {
    display: none;
  }
}
.cart-page {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.cart-block {
  max-width: 1120px;
  width: 100%;
}
.cart-block.is-empty .cart-block__controls,
.cart-block.is-empty + .cart-page__itog {
  display: none;
}
.cart-block__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cart-block__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-block__remove {
  border: 0;
  background: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  font-family: inherit;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
  clip-path: var(--clip-small);
  transition: background-color var(--default-transition-delay);

  &:hover {
    background-color: var(--color-surface);
  }
}
.cart-page__itog {
  border: 2px solid var(--color-secondary);
  padding: 20px;
  position: sticky;
  top: 70px;
  flex-shrink: 0;
  min-width: 300px;
}
.cart-page__result {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.custom-check {
  display: flex;
  align-items: center;
  gap: 10px;

  input {
    width: 1px;
    height: 1px;
    outline: none;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
  }

  &:hover {
    .custom-check__input {
      border-color: var(--color-disabled)
    }
  }
}
.custom-check__input {
  border: 2px solid var(--color-tertiary-015);
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  background-color: #fff;
  transition: background-color var(--default-transition-delay), border-color var(--default-transition-delay);

  &::after {
    content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      background-image: url('data: image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHBAMAAADDgsFQAAAAKlBMVEUAAAD ///////////////////////////////////////////////////+Gu8ovAAAADXRSTlMA76DfMM8gEL+vX1BA5erHzAAAAC1JREFUCNdjAAJ2CxBZeplBk4Eh1oxBVoHpYgKD4yVdEQYGnrt3HYBym6UYGACNAAfbUwD/QQAAAABJRU5ErkJggg==');
      display: block;
      z-index: 1;
      width: 10px;
      height: 7px;
      transform: translate(-50%, -50%);
      transition: opacity var(--default-transition-delay);
  }
}
.custom-check:has(input:checked) {
  .custom-check__input::after {
    opacity: 1;
  }

  .custom-check__input {
    background-color: var(--color-primary);
  }

  &:hover .custom-check__input {
    border-color: var(--color-primary);
  }
}
.custom-check:has(input:focus) .custom-check__input {
  border-color: var(--color-disabled)
}
.cart-item {
  clip-path: var(--clip-small);
  border: 2px solid var(--color-tertiary-015);
  display: flex;
  align-items: center;
  padding-block: 10px;
  padding-right: 20px;
  gap: 20px;
  position: relative;
}
.cart-item__img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.cart-item__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  color: inherit;
  text-decoration: none;
  display: block;
}
.cart-item__param {
  color: var(--color-tertiary);
}
.cart-item__last {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
  flex-shrink: 0;
}
.cart-item__price {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-roboto);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}
.cart-item__check {
  position: absolute;
  left: 10px;
  top: 10px;
}
.counter {
  display: flex;
  align-items: center;
  gap: 5px;
}
.counter__btn {
  clip-path: var(--clip-small);

  &:disabled {
    opacity: .5;
    pointer-events: none;
  }
}
.counter__input {
  width: 50px !important;
  padding: 12px 10px !important;
  text-align: center;
  -moz-appearance: textfield;
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1;
  font-family: inherit;
  outline: none;
  border: 2px solid var(--color-tertiary-015);
  transition: border-color var(--default-transition-delay);

  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}
.order-sidebar {
  min-width: 300px;
  border: 2px solid var(--color-secondary);
  padding: 20px;
  position: sticky;
  top: 60px;
}
.order-sidebar__table {
  width: 100%;

  td {
    padding-block: 10px;
    border-bottom: 2px solid var(--color-tertiary-015);
    width: 50%;
  }
  td+td {
    padding-left: 10px;
  }
}
.order-sidebar__btn {
  margin-top: 20px;
}
.cart-section {
  display: flex;
  gap: 100px;
  align-items: flex-start;

  &.is-success {
    flex-direction: column;
    gap: 10px;
  }
}
.cart-section__left {

  .page-menu {
    margin-bottom: 0;
  }
}
.order-form__desc {
  margin-top: 15px;
  color: var(--color-tertiary);

  &.warning {
    color: var(--color-primary);
    font-size: 18px;
  }
}
.order-form__not {
  margin-bottom: 15px;
}
.order-form__map {
  margin-bottom: 15px;
  max-width: 100%;
  height: 600px;

  .sc-bRKDuR.eYZbTe {
    z-index: 1 !important;
    margin-bottom: 15px;
    clip-path: var(--clip-big);
    background-color: var(--color-secondary);
    padding-left: 10px;

    .kbOuwS {
      gap: 0;
      justify-content: flex-start;

      div {
        border-radius: 0;
        background-color: var(--color-secondary);
        color: #fff;
        font-family: var(--font-ibm);
        clip-path: var(--clip-small);
        margin-left: -1px;
      }

      svg {
        fill: #fff;
      }

      [checked="true"] {
        background-color: #fff;
        color: var(--color-secondary);

        svg {
          fill: var(--color-secondary);
        }
      }
    }
  }
}
.scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary-light) transparent;
}
/*------------PAGES STYLES---------------*/
@media (width <= 440px) {
  .product-detail__control {
    flex-direction: column;
  }
}
@media (width <= 480px) {
  .carusel-list__controls-dots {
    display: flex;
  }
  .carusel-list__controls {
    margin-top: 25px;
  }
}
@media (min-width: 550px) {
  .toasti {
    border-radius: 3px;
  }
  .toasti--bottom-right {
    left: auto;
    right: 20px;
    bottom: 20px;
    transform: translate3d(0, calc(100% + 20px), 0);
  }
  .toasti--bottom-center {
    right: auto;
    left: 50%;
    bottom: 20px;
    transform: translate3d(-50%, 100%, 0);
  }
  .toasti--bottom-left {
    right: auto;
    left: 20px;
    bottom: 20px;
  }
  .toasti--top-right {
    left: auto;
    right: 20px;
    top: 20px;
    transform: translate3d(0, calc(-100% - 20px), 0);
  }
  .toasti--top-center {
    right: auto;
    left: 50%;
    top: 20px;
    transform: translate3d(-50%, -100%, 0);
  }
  .toasti--top-left {
    right: auto;
    left: 20px;
    top: 20px;
    transform: translate3d(0, calc(-100% - 20px), 0);
  }
  .toasti.toasti-enter {
    transform: translate3d(-5%, 0, 0);
  }
}
@media (width <= 550px) {
  .pagination {
    justify-content: center;
  }
}
@media (600px < width <= 950px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-list.card-list--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 600px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .card-list.card-list--grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .content-page {
    h1 {
      margin-bottom: 20px;
    }
  }
  .product-item__name {
    font-size: 24px;
  }
}
@media (width <= 680px) {
  .footer .container {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__top {
    flex-wrap: wrap;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer__copy {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-menu {
    display: block;
    width: 100%;
  }
  .footer-menu__link {
    display: none;
    padding-left: 15px;
  }
  .footer-menu__name {
    margin-bottom: 0;
    padding-left: 15px;
  }
  .footer-menu__col {
    padding-block: 20px;
    position: relative;
    border-bottom: 1px solid var(--color-tertiary-015);

    &.hide-mob {
      display: flex;
    }
  }
  .footer-menu__toggle {
    display: flex;
    position: absolute;
    right: 0;
    background-color: transparent;
    border: 0;
    padding: 20px;
    border-left: 1px solid var(--color-tertiary-015);
    transform: translateY(-50%);
    top: 50%;
    width: 56px;
    height: 56px;
    align-items: center;

    svg {
      fill: #fff;
      transform: rotate(90deg);
      transition: transform var(--default-transition-delay);
    }
  }
  .footer-contacts {
    width: 100%;
    padding-block: 20px;
  }
  .footer-contacts__name {
    display: none;
  }
  .footer-contacts__text,
  .footer-contacts__phone {
    padding-left: 15px;
  }
  .footer-contacts__social {
    margin-left: 15px;
  }
}
@media (width <= 700px) {
  .form__wrap {
    flex-direction: column;

    textarea {
      min-height: 120px;
    }
  }
}
@media (width <=750px) {
  .cart-item {
    flex-wrap: wrap;
  }
  .cart-item__last {
    width: 100%;
    justify-content: space-around;
  }
  .cart-item__info {
    width: calc(100% - 100px);
  }
}
@media (width <= 760px) {
  .main-banner__props {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-banner__title {
    font-size: 30px;
  }
  .main-banner__prop {
    padding: 5px;
  }
  .main-banner__icon {
    width: 60px;
    height: 60px;
  }
}
@media (width <= 768px) {
  h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  h2 {
    margin-block: 20px;
  }
}
@media (width <= 800px) {
  .col-block__item {
    width: 100%;
    flex: unset;
  }
}
@media (min-width: 900px) {
  .gmodal__bg {
    display: block;
  }
  .gmodal__form {
    padding-right: 30px;
  }
  .gmodal__title {
    font-size: 36px;
    margin-top: 0;
  }
}
@media (width <= 920px) {
  .product-detail__top-block {
    flex-direction: column;
  }
  .product-detail__stats {
    display: none;
  }
  .product-detail__info {
    width: 100%;
  }
}
@media (width <=920px) {
  .product-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    padding-bottom: 120px;

    .splide__track {
      order: 1;
    }
  }

  .carusel-mini {
    width: 100%;
    height: 120px;
    overflow-y: hidden;
    overflow-x: auto;
    order: 2;
    bottom: 0;
    left: 0;
    top: auto;
    flex-direction: row;
  }
}
@media (950px < width <=1250px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 960px) {
  .cart-section {
    flex-direction: column;
    gap: 15px;
  }
}
@media (width <=960px) {
  .order-sidebar {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .gmodal__container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    min-height: auto;
    margin: 30px auto;
    padding-right: 15px;
    padding-left: 15px;
  }
  .gmodal__container--lg {
    max-width: 940px;
  }
  .gmodal__container.has-center {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 60px);
  }
  .gmodal__container.has-center::before {
    content: "";
    display: block;
    height: calc(100vh - 60px);
  }
  .gmodal__dialog {
    position: relative;
    min-height: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
}
@media (width <= 1000px) {
  .product-params {
    gap: 0;
    flex-direction: column;
  }
}
@media (width <=1000px) {
  .product-titles {
    display: none;
  }
}
@media (width <= 1024px) {
  .section-list {
    .container {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .header-logo {
    margin-right: 0;
  }

  .header__button-area,
  .header-menu {
    display: none;
  }

  .header__btn-mobil-menu {
    display: flex;
  }
  .cart-page {
    flex-direction: column;
  }
  .cart-page__itog {
    width: 100%;
  }
}
@media (width <=1024px) {
  .merits__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    transition: border-color 0.25s ease;
  }
}
@media (1240px <= width <= 1520px) {
  .product-slider {
    width: 40%;
  }
  .product-detail__info {
    width: 60%;
  }
}
@media (width <= 1240px) {
  .header__right    {
    display: none;
  }
  .product-detail__params {
    display: none;
  }
}
@media (width <=1240px) {
  .main-banner__title {
    width: 100%;
  }
}
@media (width <= 1280px) {
  .popup-catalog {
    position: inherit;
  }
  .popup-catalog__list {
    left: 50%;
    transform: translateX(-50%);
    top: 65px;
  }
}
@media (width <= 1350px) {
  .header-menu__item {
    padding: 0 5px;
  }

  .header__line {
    gap: 10px;
  }
  .cart-page {
    gap: 30px;
  }
}
@media (width <= 1560px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 700px) {
  .splide-arrows-wrap {
    display: none;
  }
  .container.splide-count {
    text-align: left;
    padding: 0 16px;
    margin-top: 16px;
    margin-bottom: 42px;
    font-size: 24px;
  }
  .main-page .container.splide-count {
    text-align: center;
  }
  .main-page .splide-arrows-wrap {
    display: block;
    position: absolute;
    bottom: 40px;
    z-index: 1;
    width: 100%;
  }
  .main-page .splide__arrows {
    display: flex;
    top: 0;
    width: 100%;
    justify-content: space-between;
    padding: 0 32px;
  }
  .main-page .splide__arrow {
    width: 44px;
    height: 44px;
  }
  .main-page  .splide {
    position: relative;
  }
}
@media (width <= 1520px) {
  .main-banner__wrap {
    width: calc(100% - 30px);
  }
}
@media screen and (-ms-high-contrast:none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf
  }
}



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