@import "../fonts/PTRootUI/stylesheet.css";
@import "../fonts/Inter/stylesheet.css";
@import "../fonts/Montserrat/stylesheet.css";


:root {
    --primary: #176888;
    --primary-dark: #18323D;
}

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

*:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
    overflow: auto;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'PT Root UI', sans-serif;
    font-size: 16px;
    background: #F6F6F6;
    color: #101010;
    position: relative;
    min-height: 100%;
    z-index: 1;
}

.container,
.container-fluid {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.container {
    max-width: 1607px;
}
.app-header {
    position: sticky;
    z-index: 10;
    top: 0;
}
input, button, textarea {
    font-family: 'PT Root UI', sans-serif;
}

#app-modals {
    display: none;
}

a, img {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mobile-menu,
.mobile-menu-btn {
    display: none;
}

.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;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0 25px;
    height: 48px;
    border-radius: 8px;
    font-weight: 500;
    gap: 10px;
}

.main-form-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 10px;
    cursor: pointer;
}

.scene-colors {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-auto .resp-table__col {
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
}

.section-header__heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.scene-action {
  max-width: 476px;
  margin-top: 50px;
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 8px;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  background: radial-gradient(116.67% 97.22% at 100% 100%, #1E4C62 0%, #18323D 100%);
  position: relative;
  overflow: hidden;
}

.scene-action-wheels {
  object-fit: contain;
  top: -12px;
  position: absolute;
  right: -13px;
  width: 30%;
  height: 125%;
}

.main-form-checkbox__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.main-form-checkbox__checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.main-form-checkbox__text {
    font-size: 12px;
    line-height: 120%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.main-form-checkbox__text a {
    display: inline;
    text-decoration: underline;
}

.main-form-checkbox__checkmark:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="9" height="6" viewBox="0 0 9 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.83464 0.5L3.2513 5.08333L1.16797 3" stroke="%23F08436" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    opacity: 0;
}

.main-form-checkbox__input:checked ~ .main-form-checkbox__checkmark:after {
    opacity: 1;
}

h1 {
    margin: 0;
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.text-large {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.text-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.header {
    background: #101010;
    color: #fff;
    position: relative;
    z-index: 10;
}

.header__inner {
    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;
}

.logo__img {
    max-width: 120px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-inline-box;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
}

.header-nav__item {
    line-height: 64px;
    font-size: 16px;
    color: #96A0A7;
    background: none;
    border: none;
    cursor: pointer;
}

.header-nav__item.--active {
    color: #F6F6F6;
    -webkit-box-shadow: inset 0 -2px 0 var(--primary);
    box-shadow: inset 0 -2px 0 var(--primary);
}

.header-geo {
    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: 8px;
    font-size: 13px;
    flex-basis: 18%;
    width: min-content;
    min-width: 190px;
    cursor: pointer;

}
.header-geo:hover span{
    overflow: visible;
    text-shadow: 0 0 10px black;
}

.header-geo:before {
    content: "";
    background: url('data:image/svg+xml,<svg width="18" height="22" viewBox="0 0 18 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 12C10.6569 12 12 10.6569 12 9C12 7.34315 10.6569 6 9 6C7.34315 6 6 7.34315 6 9C6 10.6569 7.34315 12 9 12Z" stroke="%235A5F65" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 21C13 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 5 17 9 21Z" stroke="%235A5F65" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
    width: 16px;
    height: 20px;
    flex-shrink: 0;
}

.btn.btn_primary {
    background: var(--primary-dark);
    color: #fff;
}

.btn.btn_primary:hover {
    color: #C4CCD2;
}

.header-btn .btn {
    height: 40px;
}

.btn_primary.btn_primary_phone:before {
    content: "";
    background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0497 5C14.0264 5.19057 14.924 5.66826 15.6277 6.37194C16.3314 7.07561 16.8091 7.97326 16.9997 8.95M13.0497 1C15.0789 1.22544 16.9713 2.13417 18.4159 3.57701C19.8606 5.01984 20.7717 6.91101 20.9997 8.94M9.22664 12.8631C8.02506 11.6615 7.07627 10.3028 6.38028 8.85323C6.32041 8.72854 6.29048 8.66619 6.26748 8.5873C6.18576 8.30695 6.24446 7.96269 6.41447 7.72526C6.46231 7.65845 6.51947 7.60129 6.63378 7.48698C6.98338 7.13737 7.15819 6.96257 7.27247 6.78679C7.70347 6.1239 7.70347 5.26932 7.27247 4.60643C7.15819 4.43065 6.98338 4.25585 6.63378 3.90624L6.43891 3.71137C5.90747 3.17993 5.64174 2.91421 5.35636 2.76987C4.7888 2.4828 4.11854 2.4828 3.55098 2.76987C3.2656 2.91421 2.99987 3.17993 2.46843 3.71137L2.3108 3.86901C1.78117 4.39863 1.51636 4.66344 1.31411 5.02348C1.08969 5.42298 0.928332 6.04347 0.929696 6.5017C0.930924 6.91464 1.01103 7.19687 1.17124 7.76131C2.03221 10.7947 3.65668 13.6571 6.04466 16.045C8.43264 18.433 11.295 20.0575 14.3284 20.9185C14.8928 21.0787 15.1751 21.1588 15.588 21.16C16.0462 21.1614 16.6667 21 17.0662 20.7756C17.4263 20.5733 17.6911 20.3085 18.2207 19.7789L18.3783 19.6213C18.9098 19.0898 19.1755 18.8241 19.3198 18.5387C19.6069 17.9712 19.6069 17.3009 19.3198 16.7333C19.1755 16.448 18.9098 16.1822 18.3783 15.6508L18.1835 15.4559C17.8339 15.1063 17.6591 14.9315 17.4833 14.8172C16.8204 14.3862 15.9658 14.3862 15.3029 14.8172C15.1271 14.9315 14.9523 15.1063 14.6027 15.4559C14.4884 15.5702 14.4313 15.6274 14.3644 15.6752C14.127 15.8453 13.7828 15.904 13.5024 15.8222C13.4235 15.7992 13.3612 15.7693 13.2365 15.7094C11.7869 15.0134 10.4282 14.0646 9.22664 12.8631Z" stroke="%23DFE3E5" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
    width: 20px;
    height: 20px;
}
.btn_primary_phone span{
    font-size: 14px;
}


.header-marks {
    display: none;
}

.app-section {
    padding: 70px 0;
}

.section-hero {
    background: #14191B;
    color: #fff;
}

.hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.hero > * {
    min-width: 0;
}

.hero-carousel {
    height: 360px;
    border-radius: 8px;
}

.hero-carousel__slide {
    background-position: center;
    background-size: cover;
    padding: 40px 24px;
    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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 40px;
}

.hero-carousel__heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
}

.btn.btn_outline_white {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn.btn_outline_white:hover {
    color: #DFE3E5;
    border-color: #DFE3E5;
}

/* .lazy.loaded {
    opacity: 1;
}

.lazy {
    opacity: 0;
    -webkit-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
} */
img.lazy{
    opacity: 0;
    -webkit-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
  }
  img.loaded{
    opacity: 1;
    -webkit-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
  }
  .lazy{
    -webkit-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
  }
    .lazy.background-load{
      opacity: 0;
      -webkit-transition: all 0.9s ease-in-out;
      -o-transition: all 0.9s ease-in-out;
      transition: all 0.9s ease-in-out;
    }
  
    .lazy img {
      opacity: 0;
      -webkit-transition: all 0.9s ease-in-out;
      -o-transition: all 0.9s ease-in-out;
      transition: all 0.9s ease-in-out;
    }

    .lazy source{
      -webkit-transition: all 0.9s ease-in-out;
      -o-transition: all 0.9s ease-in-out;
      transition: all 0.9s ease-in-out;
      
    }
    .lazy.loaded.background-load{
        opacity: 1;
        -webkit-transition: all 0.9s ease-in-out;
        -o-transition: all 0.9s ease-in-out;
        transition: all 0.9s ease-in-out;
      }
      .lazy.loaded img{
        opacity: 1;
        -webkit-transition: all 0.9s ease-in-out;
        -o-transition: all 0.9s ease-in-out;
        transition: all 0.9s ease-in-out;
      }
   

     /* Keyframes для переливания */
     @keyframes shimmer {
      0% {
        transform: translateX(-150%);
      }
      100% {
        transform: translateX(150%);
      }
    }

.hero-carousel__nav {
    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;
    position: absolute;
    right: 24px;
    bottom: 24px;
    gap: 20px;
}

.hero-carousel__prev, .hero-carousel__next {
    position: relative;
    margin: 0;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.20);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-carousel__prev:after, .hero-carousel__next:after {
    display: none;
}

.hero-carousel__prev {
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 13L1 7L7 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.hero-carousel__next {
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13L7 7L1 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.banks-grid-carousel .swiper-button-next, .swiper-button-prev{
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 13L1 7L7 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    &::after{
        display:  none;
    }
}
.banks-grid-carousel .swiper-button-prev{
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 13L1 7L7 1" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.banks-grid-carousel .swiper-button-next{
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13L7 7L1 1" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}



.btn.btn_light {
    background: #fff;
    color: var(--primary);
}

.btn.btn_light:hover {
    background: #F6F6F6;
}

.hero__banners {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.hero-banner {
    height: 360px;
    border-radius: 8px;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
    background: -o-radial-gradient(100% 100%, 116.67% 97.22%, #1E4C62 0%, #18323D 100%);
    background: radial-gradient(116.67% 97.22% at 100% 100%, #1E4C62 0%, #18323D 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;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.hero-banner__asset {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 240px;
}

.hero-banner__desc {
    line-height: 24px;
    margin-bottom: auto;
}

.section-heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.header-gallery .section-heading {
    margin-bottom: unset;
}

.marks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 12px;
}
.marks .mark-link:nth-child(n + 18) {
    display: none;
}
.marks.show-all .mark-link {
    display: flex; /* или inline-block — зависит от верстки */
}
.show-marks-btn{
    transition: all 0.2s ease-in-out;
}
.show-marks-btn.active::after{
    transform: rotate(180deg);
}

.mark-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 12px 20px;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.mark-link__img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mark-link__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      #F6F6F6 50%,
      rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
    z-index: 1;
    pointer-events: none;
  }

  .mark-link__img.loaded::before {
    display: none;
  }

.mark-link__img img{
    width: 40px;
    height: 40px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.catalog-grid-carousel__slide {
    height: calc((100% - 12px) / 2) !important;
}

.catalog-grid-carousel {
    height: 875px;
}

.car-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.car-card__preview {
    background: -webkit-gradient(linear, left bottom, left top, from(#DFE3E5), color-stop(134.17%, #F6F6F6));
    background: -o-linear-gradient(bottom, #DFE3E5 0%, #F6F6F6 134.17%);
    background: linear-gradient(0deg, #DFE3E5 0%, #F6F6F6 134.17%);
    height: 290px;
    position: relative;
    z-index: 1;
}

.car-card__preview-img {
   
position: relative;
}
.car-card__preview-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      #F6F6F6 50%,
      rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
    z-index: 1;
    pointer-events: none;
  }

 
  .car-card__preview-img.loaded::before {
    display: none;
  }
.car-card__preview-img img{
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.car-card__preview-top-label {
    background: #E10000;
    color: #fff;
    padding: 4px 12px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 8px 0px 8px;
}

.car-card__preview-bottom-label {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0px 0px 8px 0px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
}

.car-card__content {
    padding: 16px 20px;
}

.car-card__title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    margin-bottom: 16px;
}

.car-card__pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.car-card__pricing-main {
    color: var(--primary);
    font-size: 24px;
}

.car-card__pricing-old {
    text-decoration: line-through;
    color: #59737F;
    font-size: 18px;
}

.car-card__payment {color: #59737F;}

.section-header {
    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;
    margin-bottom: 40px;
}

.section-stocks {
    background: #DFE3E5;
}

.section-header .section-heading {
    margin-bottom: 0;
}

.stocks__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.stocks {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.stocks__bottom {
    display: none;
}

.stock-card {
    border-radius: 8px;
    background: -o-radial-gradient(100% 100%, 116.67% 97.22%, #1E4C62 0%, #18323D 100%);
    background: radial-gradient(116.67% 97.22% at 100% 100%, #1E4C62 0%, #18323D 100%);
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 40px;
}

.stock-card__title {
    margin-bottom: 20px;
}

.stock-card__desc {
    line-height: 24px;
    margin-bottom: 40px;
}

.stock-card .btn {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.stock-card__asset {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-questions {
    background: url(../img/questions-section-bg.webp) center/cover no-repeat;
    padding: 80px 0;
}

.questions {
    border-radius: 8px;
    background: #FFF;
    max-width: 640px;
    margin: auto;
    padding: 60px 120px;
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
}

.questions__title {
    text-align: center;
}

.questions__text {
    text-align: center;
    line-height: 24px;
    color: #5A5F65;
}

.questions__form {
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
}

.app-input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #C4CCD2;
    padding: 0 16px;
    font-size: 14px;
}

.app-form-term {
    font-size: 14px;
    color: #5A5F65;
    text-align: center;
}

*:focus {
    outline: none;
}

.app-footer {
    background: #101010;
    color: #fff;
    padding: 40px 0;
}

.footer__inner {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.footer__row {
    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;
}

.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 24px;
}

.footer-nav__item {
    line-height: 64px;
    color: #96A0A7;
}

.footer-nav__item:hover {
    color: #fff;
}

.footer-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 40px;
}

.footer__copyright {
    font-size: 14px;
    line-height: 22px;
    color: #96A0A7;
}

.footer-geo {
    font-size: 24px;
    color: #F6F6F6;
    line-height: 32px;
}

.modal {
    border-radius: 8px;
    max-width: 420px;
}

.modal__content {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.modal__title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.modal__desc {
    font-size: 14px;
    text-align: center;
}

.modal__form {
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
}

.header-marks {
    position: absolute;
    display: block;
    max-width: calc(1607px - 16px * 2);
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    border-radius: 0 0 8px 8px;
    visibility: hidden;
    opacity: 0;
}

.header-marks__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 395px 1fr;
    grid-template-columns: 395px 1fr;
}

.header-marks__aside {
    padding: 40px 12px 40px 40px;
    background: #F6F6F6;
}

.header-marks__nav {
    display: -ms-grid;
    display: grid;
    overflow: auto;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    grid-gap: 6px;
    max-height: 470px;
}

.header-marks__content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.header-marks__close {
    border: 1px solid #101010;
    background: #fff;
    border-radius: 8px;
    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;
    height: 40px;
    padding: 0 20px;
    cursor: pointer;
    gap: 16px;
    position: absolute;
    right: 40px;
    top: 44px;
}

.header-marks__close:after {
    content: "";
    background: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 1L1 13M1 1L13 13" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 14px;
    height: 14px;
}

.hm-tab__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    padding-right: 145px;
    margin-bottom: 40px;
}

.hm-tab__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
    max-height: 530px;
    overflow: auto;
    padding-right: 90px;
}

.model-card__thumb-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.model-card__thumb {
    background: -webkit-gradient(linear, left bottom, left top, from(#DFE3E5), color-stop(134.17%, #F6F6F6));
    background: -o-linear-gradient(bottom, #DFE3E5 0%, #F6F6F6 134.17%);
    background: linear-gradient(0deg, #DFE3E5 0%, #F6F6F6 134.17%);
    height: 148px;
}

.model-card__title {
    background: #14191B;
    padding: 7px 16px;
    color: #F6F6F6;
}

.model-card {
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.model-card:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(16, 16, 16, 0.20);
    box-shadow: 0px 0px 10px 0px rgba(16, 16, 16, 0.20);
}

.hm-tab {
    display: none;
}

.header-marks.--active {
    visibility: visible;
    opacity: 1;
}

.header-marks__nav-item {
    padding: 8px 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 14px;
    color: #96A0A7;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-marks__nav-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.header-marks__nav-item.--active {
    color: #101010;
}

.header-marks__search {
    margin-bottom: 20px;
}

.app-label.app-label_input_search .app-input {
    background: none;
    padding-left: 45px;
}

.app-label.app-label_input_search:after {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 0;
    left: 15px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 19L15.5001 15.5M18 9.5C18 14.1944 14.1944 18 9.5 18C4.80558 18 1 14.1944 1 9.5C1 4.80558 4.80558 1 9.5 1C14.1944 1 18 4.80558 18 9.5Z" stroke="%23C4CCD2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 20px;
    height: 20px;
}

.app-label.app-label_input_search {
    position: relative;
    z-index: 1;
}

.styled-scrollbar::-webkit-scrollbar {
    width: 7px;
    border-radius: 2px;
}

.styled-scrollbar::-webkit-scrollbar-track {
    background: #F6F6F6;
}

.styled-scrollbar::-webkit-scrollbar-thumb {
    background: #96A0A7;
    border-radius: 8px;
    border: 2px solid #F6F6F6
}

html.--header-marks-active body {
    overflow: hidden;
}

html.--header-marks-active body:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(20, 25, 27, 0.30);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.show-marks-btn {
    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;
    padding: 12px 20px;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    color: var(--primary);
}

.show-marks-btn:after {
    content: "";
    background: url( 'data: image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>'); background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 24px;
    height: 24px;
}

.section-page-header {
    background-color: #14191B;
    color: #F6F6F6;
    padding: 80px 0 40px;
    background-position: top 40% left 87%;
    background-repeat: no-repeat;
    background-size: 20%;
}

.page-header {
    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;
}

.page-header-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px;
}

.select2-container .select2-selection--single {
    border: 1px solid #C4CCD2;
    height: 48px;
    background-color: transparent;
    border-radius: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 16px;
    padding-right: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 16px;
    background: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%23C4CCD2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 14px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-dropdown {
    background: none;
    border: none;
}

.select2-search--dropdown {
    margin-top: -47px;
    margin-bottom: 0;
    padding: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: none;
    border: none;
    height: 47px;
    padding: 0 16px;
}

.select2-container--default.select2-container--open .select2-selection__rendered {
    color: transparent;
}

.select2-results {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.select2-results__option {
    padding: 10px 16px;
    color: #96A0A7;
    font-size: 14px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: none;
    color: #101010;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #fbfbfb;
    color: #96A0A7;
}

.select2-container--open .select2-dropdown--above .select2-search.select2-search--dropdown {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 10px;
}

.select2-container--open .select2-dropdown--above {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 47px;
}

.select2-container--open .select2-dropdown--above .select2-results {
    margin-top: -10px;
}

.app-select.app-select_white + .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #F6F6F6;
}

.page-header-select .select2.select2-container {
    width: 240px !important;
}

.app-select.app-select_white + .select2-container--default.select2-container--open .select2-selection__rendered {
    color: transparent;
}

.mp-tabs__content {
    display: none;
}

.app-label {
    display: block;
}

html.select2-dropdown--select-white .select2-container--default .select2-search--dropdown .select2-search__field {
    color: #fff;
}

.mp-tabs__select {
    display: none;
}

.mp-tabs__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-bottom: 1px solid #C4CCD2;
    gap: 12px;
    flex-wrap: wrap;
    overflow-y: hidden;
    overflow-x: auto;
}

.mp-tabs__nav-item {
    font-size: 20px;
    line-height: 20px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}

.mp-tabs__nav-item.--active {
    border-color: var(--primary);
    color: var(--primary);
}

.model-scene {
    padding: 0 128px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 40px;
}

.model-scene__preview {
    width: 60%;
    height: 590px;
    background: linear-gradient(0deg, #DFE3E5 0%, #F6F6F6 134.17%);
    border-radius: 8px;
}

.model-scene__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.model-scene__preview-img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.models-carousel__nav .models-carousel__nav-pag {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    top: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    overflow: auto;
}

.models-carousel__nav .models-carousel__nav-pag .swiper-pagination-bullet {
    padding: 14px 20px;
    width: auto;
    margin: 0;
    height: auto;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    opacity: 1;
    color: #5A5F65;
}

.models-carousel__nav .models-carousel__nav-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--primary);
    color: #101010;
}

.models-carousel__nav {
    margin: 30px 0;
}

.model-scene__title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 8px;
}

.model-scene__tag {
    background: #DFE3E5;
    color: var(--primary);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 8px;
    font-size: 14px;
    padding: 8px 12px;
    margin-bottom: 24px;
}

.model-scene__old-price {
    font-size: 24px;
    color: #96A0A7;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.model-scene__main-price {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 40px;
}

.model-scene__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
}

.btn.btn_outline_dark {
    border-color: #101010;
    color: #101010;
    background-color: transparent;
}

.btn.btn_outline_dark:hover {
    color: #5A5F65;
    border-color: #5A5F65;
}

.models-carousel .models-carousel__prev, .models-carousel .models-carousel__next {
    border-radius: 8px;
    background-color: rgba(16, 16, 16, 0.20);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 48px;
    height: 48px;
    background-position: center;
    background-repeat: no-repeat;
}

.models-carousel .models-carousel__prev:after, .models-carousel .models-carousel__next:after {
    display: none;
}

.models-carousel .models-carousel__prev {
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 13L1 7L7 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.models-carousel .models-carousel__next {
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13L7 7L1 1" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.section-breadcrumbs {
    padding: 20px 0;
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 80px;
}

.breadcrumbs__item:not(:first-child) {
    position: relative;
    z-index: 1;
}

.breadcrumbs__item:not(:first-child):after {
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 1px;
    background: #96A0A7;
}

.breadcrumbs__item {
    color: #96A0A7;
}

.breadcrumbs__item:last-child {
    color: #101010;
}

.breadcrumbs__item:last-child:after {
    background: #101010;
}

.model-page__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.model-page__preview {
    background: -webkit-gradient(linear, left bottom, left top, from(#DFE3E5), color-stop(134.17%, #F6F6F6));
    background: -o-linear-gradient(bottom, #DFE3E5 0%, #F6F6F6 134.17%);
    background: linear-gradient(0deg, #DFE3E5 0%, #F6F6F6 134.17%);
    border-radius: 8px;
    height: 580px;
    margin-bottom: 20px;
}

.model-page__preview-img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.model-page__colors {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.model-page__colors-title {
    color: #96A0A7;
}

.model-page__colors-title span {
    color: #101010;
}

.model-page__colors-list {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
}

.model-page__colors-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.model-page__colors-item.--active {
    outline: 1px solid #14191B;
    outline-offset: 2px;
    position: relative;
    z-index: 1;
}

.model-page__colors-item.--active: after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="18" height="13" viewBox="0 0 18 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17 1L6 12L1 7" stroke="%2314191B" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    -webkit-filter: drop-shadow(2px 4px 6px black);
    filter: drop-shadow(2px 4px 6px black);
}

.model-content {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 40px;
}

.model-content__header {
    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;
    margin-bottom: 16px;
    gap: 16px;
}

.model-content__heading {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.model-content__count {
    background: #DFE3E5;
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.model-content__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4px 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #C4CCD2;
    margin-bottom: 24px;
}

.model-content__price-main {
    font-size: 32px;
    line-height: 40px;
    color: var(--primary);
}

.model-content__price-payment {
    width: 100%;
    color: #59737F;
    font-size: 20px;
    line-height: 28px;
}

.model-content__price-old {
    font-size: 24px;
    color: #96A0A7;
    text-decoration: line-through;
}

.model-content__props {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 64px;
    margin-bottom: 24px;
}

.mc-prop {
    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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.mc-prop__title {
    font-size: 14px;
    color: #5A5F65;
}

.mc-prop__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    font-size: 20px;
    padding: 10px 0;
}

.mc-prop__value:before {
    content: "";
    width: 24px;
    height: 24px;
}

.mc-prop__value.--icon-power:before {
    content: "";
    background: url('data:image/svg+xml,<svg width="18" height="22" viewBox="0 0 18 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.0008 1L1.09429 11.6879C0.745486 12.1064 0.571082 12.3157 0.568416 12.4925C0.566099 12.6461 0.63457 12.7923 0.754095 12.8889C0.891587 13 1.16402 13 1.70887 13H9.00084L8.00084 21L16.9074 10.3121C17.2562 9.89358 17.4306 9.68429 17.4333 9.50754C17.4356 9.35388 17.3671 9.2077 17.2476 9.11111C17.1101 9 16.8377 9 16.2928 9H9.00084L10.0008 1Z" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.mc-prop__value.--icon-engine-cap:before {
    background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 11C4 7.13401 7.13401 4 11 4M15.4999 6.5L10.9999 11M21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11ZM12 11C12 11.5523 11.5523 12 11 12C10.4477 12 10 11.5523 10 11C10 10.4477 10.4477 10 11 10C11.5523 10 12 10.4477 12 11Z" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.mc-prop__value.--icon-consumption:before {
    background: url('data:image/svg+xml,<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 19.5C9.85652 19.5 11.637 18.7625 12.9497 17.4497C14.2625 16.137 15 14.3565 15 12.5C15 10.5 14 8.6 12 7C10 5.4 8.5 3 8 0.5C7.5 3 6 5.4 4 7C2 8.6 1 10.5 1 12.5C1 14.3565 1.7375 16.137 3.05025 17.4497C4.36301 18.7625 6.14348 19.5 8 19.5Z" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.mc-prop__value.--icon-drive:before {
    background: url('data:image/svg+xml,<svg width="16" height="20" viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3 6L3 1L1 1L1 6H3ZM4 1C4 0.447715 3.55228 0 3 0H1C0.447716 0 0 0.447715 0 1V6C0 6.55228 0.447715 7 1 7H3C3.55228 7 4 6.55228 4 6L4 4.5H7.5L7.5 15.5H4V14C4 13.4477 3.55228 13 3 13H1C0.447716 13 0 13.4477 0 14V19C0 19.5523 0.447715 20 1 20H3C3.55228 20 4 19.5523 4 19L4 16.5H12V19C12 19.5523 12.4477 20 13 20H15C15.5523 20 16 19.5523 16 19V14C16 13.4477 15.5523 13 15 13H13C12.4477 13 12 13.4477 12 14V15.5H8.5L8.5 4.5H12V6C12 6.55228 12.4477 7 13 7H15C15.5523 7 16 6.55228 16 6V1C16 0.447715 15.5523 0 15 0H13C12.4477 0 12 0.447715 12 1V3.5H4V1ZM13 1L15 1V6H13V1ZM3 19L3 14H1L1 19H3ZM13 14H15V19H13V14Z" fill="%2396A0A7"/></svg>') center no-repeat;
}

.model-content__buttons {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.model-options {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #14191B;
    margin-bottom: 24px;
}

.model-options__header {
    background: #14191B;
    padding: 20px 40px;
    color: #F6F6F6;
    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: 12px;
}

.mo-row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mo-data__title {
    font-size: 14px;
    color: #96A0A7;
    line-height: 20px;
    margin-bottom: 4px;
}

.mo-data__value {
    line-height: 24px;
}

.model-options__body {
    padding: 40px;
}

.mo-accordion__content {
    display: none;
    max-height: 730px;
    overflow: auto;
}

.mo-accordion__heading {
    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: 12px;
}

.mo-accordion__title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 24px;
    line-height: 32px;
}

.model-offer {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
}

.model-offer__title {
    margin-bottom: 24px;
}

.model-offer__form-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-bottom: 24px;
}

.app-label.app-range__input {
    background: #F6F6F6;
    border-radius: 8px 8px 0 0;
    position: relative;
    z-index: 1;
}

.app-label__heading {
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 14px;
    color: #96A0A7;
}

.app-label.app-range__input .app-input {
    border: none;
    background: none;
    padding: 30px 16px 10px;
    height: auto;
}

.irs--flat .irs-line {
    background-color: #C4CCD2;
    height: 2px;
    top: 11px;
}

.irs--flat .irs-bar {
    height: 2px;
    background-color: var(--primary);
    top: 11px;
}

.irs--flat .irs-handle {
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    cursor: pointer;
}

.irs--flat .irs-handle>i:first-child {
    display: none;
}

.app-range {
    position: relative;
    z-index: 1;
}

.irs--flat {
    height: 24px;
}

.app-label.app-range__slider {
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 100%;
}

.app-label.app-range__input:after {
    content: "";
    background: url('data:image/svg+xml,<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.99997 18H19M1 18H2.67454C3.16372 18 3.40832 18 3.63849 17.9447C3.84256 17.8957 4.03765 17.8149 4.2166 17.7053C4.41843 17.5816 4.59138 17.4086 4.93729 17.0627L17.5 4.49999C18.3285 3.67156 18.3285 2.32842 17.5 1.49999C16.6716 0.671562 15.3285 0.671563 14.5 1.49999L1.93726 14.0627C1.59136 14.4086 1.4184 14.5816 1.29472 14.7834C1.18506 14.9624 1.10425 15.1575 1.05526 15.3615C1 15.5917 1 15.8363 1 16.3255V18Z" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    bottom: 11px;
    right: 16px;
    pointer-events: none;
}

.app-range__fake-input {
    border: none;
    background: none;
    padding: 30px 16px 10px;
    font-size: 14px;
    width: 100%;
    display: block;
}

.app-label.app-range__input.app-range__input_fake:after {
    display: none;
}

.model-offer-data__title {
    font-size: 14px;
    line-height: 20px;
    color: #5A5F65;
    margin-bottom: 8px;
}

.model-offer-data__value {
    font-size: 24px;
    line-height: 32px;
    color: var(--primary);
}

.model-offer__form-submit {
    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;
}

.form-term-text {
    font-size: 14px;
    line-height: 20px;
    color: #96A0A7;
    background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 15V10M11 7H10.99M1 11C1 5.47715 5.47715 1 11 1C16.5228 1 21 5.47715 21 11C21 16.5228 16.5228 21 11 21C5.47715 21 1 16.5228 1 11Z" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') top left no-repeat;
    padding-left: 32px;
}

.section-description {
    font-size: 20px;
    line-height: 28px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.model-gallery-carousel__slide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.model-gallery-carousel__item:last-child {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    opacity: 0;
}

.model-gallery-carousel__item-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.model-gallery-carousel__item {
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.model-gallery-carousel {
    margin-top: -130px;
}

.def-carousel-nav {
    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: 20px;
    margin-top: 45px;
}

.def-carousel-nav .prev-btn, .def-carousel-nav .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    margin: 0;
    border: 1px solid #96A0A7;
}

.def-carousel-nav .prev-btn:after, .def-carousel-nav .next-btn:after {
    display: none;
}

.def-carousel-nav .prev-btn {
    background: url('data:image/svg+xml,<svg width="7" height="14" viewBox="0 0 7 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 13L0.5 7L6.5 1" stroke="%2314191B" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.def-carousel-nav .next-btn {
    background: url('data:image/svg+xml,<svg width="7" height="14" viewBox="0 0 7 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 13L6.5 7L0.5 1" stroke="%2314191B" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.def-carousel-nav .def-pag {
    position: relative;
    margin: 0;
    width: auto;
    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;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
}

.def-carousel-nav .def-pag .swiper-pagination-bullet {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: none;
    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;
    margin: 0;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    position: relative;
    opacity: 1;
    color: #96A0A7;
}

.def-carousel-nav .def-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #101010;
    margin-right: 40px;
}

.def-carousel-nav .def-pag .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    content: "";
    width: 40px;
    height: 1px;
    background: #101010;
    position: absolute;
    right: -40px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.def-carousel-nav .def-pag .swiper-pagination-bullet.swiper-pagination-bullet-active:last-child:after {
    display: none;
}

.def-carousel-nav .def-pag .swiper-pagination-bullet.swiper-pagination-bullet-active:last-child {
    margin-right: 0;
}

.model-gallery-carousel__slide.swiper-slide-active .model-gallery-carousel__item:last-child {
    opacity: 1;
}

.model-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-box-shadow: 0px 0px 24px 0px rgba(16, 16, 16, 0.10);
    box-shadow: 0px 0px 24px 0px rgba(16, 16, 16, 0.10);
}

.msh {
    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: 40px;
    padding: 24px 0;
}

.msh__price {
    font-size: 24px;
    line-height: 32px;
    color: var(--primary);
    margin-right: auto;
}

.msh__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
}

.model-sticky-header.--show {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.btn_outline_dark.btn_arrow_down:after {
    content: "";
    background: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 14px;
    height: 8px;
}

.btn_outline_dark.--active.btn_arrow_down:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mo-option__content {
    display: none;
}

.model-page-sticky {
    position: sticky;
    top: 12px;
    left: 0;
}

.mo-option__title {
    font-size: 20px;
    line-height: 28px;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #C4CCD2;
    text-align: left;
    color: #14191B;
    padding: 4px 24px 4px 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.mo-option__title:after {
    content: "";
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 14px;
    height: 8px;
    margin: auto;
}

.mo-option:not(:last-child) {
    margin-bottom: 20px;
}

.mo-option.--active .mo-option__title:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mo-option__content {
    padding: 16px 0;
}

.mo-option__prop {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    font-size: 16px;
    line-height: 24px;
}

.mo-option__prop-title {
    color: #96A0A7;
}

.mo-option__prop:not(:last-child) {
    margin-bottom: 4px;
}

.mo-accordion {
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
}

#modal-personal-offer {
    width: 100%;
    max-width: 1045px;
    background: #F6F6F6;
}

.modal-so__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 40px;
}

.modal-so__header-content {
    display: -ms-grid;
    display: grid;
    grid-gap: 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.modal-so__header-desc {
    font-size: 24px;
    line-height: 32px;
    color: var(--primary);
}

.btn_outline_dark.btn_close:after {
    content: "";
    background: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 1L1 13M1 1L13 13" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 14px;
    height: 14px;
}

.modal-so__header .btn {
    height: 40px;
}

.modal-so__form {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.modal-so__form-block {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.modal-so-info {
    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: 12px;
}

.modal-so-info__title {
    font-size: 20px;
    line-height: 28px;
}

.modal-so-info__value {
    font-size: 20px;
    line-height: 28px;
}

.modal-so-options {
    display: -ms-grid;
    display: grid;
    grid-gap: 8px;
    border-bottom: 1px solid #C4CCD2;
    padding-bottom: 20px;
}

.modal-so-options__item {
    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: 12px;
}

.modal-so-options__item-title {
    margin-right: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.main-form-checkbox.main-form-checkbox_radio .main-form-checkbox__checkmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-color: var(--primary-dark);
    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;
}

.main-form-checkbox.main-form-checkbox_radio .main-form-checkbox__checkmark:after {
    background: var(--primary-dark);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
}

.main-form-checkbox.main-form-checkbox_radio .main-form-checkbox__text {
    font-size: 16px;
    line-height: 24px;
    color: #96A0A7;
}

.main-form-checkbox__input:checked ~ .main-form-checkbox__checkmark ~ .main-form-checkbox__text {
    color: #14191B;
}

.modal-so-options__item-value {
    line-height: 24px;
    color: var(--primary);
}

.modal-so-info.modal-so-info_last .modal-so-info__title {
    font-size: 24px;
}

.modal-so-info.modal-so-info_last .modal-so-info__value {
    font-size: 24px;
    color: #E10000;
}

.modal-so__form-text {
    line-height: 24px;
}

.modal-so__form-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px 12px;
}

.app-term {
    font-size: 14px;
    color: #5A5F65;
    line-height: 20px;
}

.modal-offer {
    max-width: 640px;
    width: 100%;
}

.modal-offer__title {
    text-align: center;
    margin-bottom: 8px;
}

.modal-offer__desc {
    text-align: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 24px;
}

.modal-offer__text {
    text-align: center;
    color: #5A5F65;
    margin-bottom: 24px;
}

.modal-offer__form {
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
    max-width: 400px;
    margin: auto;
}

.app-term {
    text-align: center;
}

.modal-offer.modal-offer_grid {
    padding: 0;
    width: 100%;
    max-width: 1280px;
}

.modal-offer__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.modal-offer__preview-img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.modal-offer__preview {
    background: -webkit-gradient(linear, left bottom, left top, from(#DFE3E5), color-stop(134.17%, #F6F6F6));
    background: -o-linear-gradient(bottom, #DFE3E5 0%, #F6F6F6 134.17%);
    background: linear-gradient(0deg, #DFE3E5 0%, #F6F6F6 134.17%);
    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;
}

.modal-offer__grid .modal-offer__content {
    padding: 60px;
}

.mp-tabs__nav.mp-tabs__nav_buttons {
    margin-bottom: 45px;
    border: none;
    gap: 12px;
}

.mp-tabs__nav.mp-tabs__nav_buttons .mp-tabs__nav-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: #5A5F65;
    padding: 7px 20px;
}

.mp-tabs__nav.mp-tabs__nav_buttons .mp-tabs__nav-item.--active {
    border-color: var(--primary);
    color: #101010;
}

.compare-item__content {
    display: none;
}

.compare-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px 0;
    display: block;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    opacity: 0;
    z-index: 50;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(16, 16, 16, 0.10);
    box-shadow: 0px 0px 24px 0px rgba(16, 16, 16, 0.10);
}

.ch-header {
    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;
}

.ch-header__title {
    color: #96A0A7;
}

.ch-header__title span {
    color: var(--primary-dark);
}

.ch-header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
}

.compares-list {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.compare-item__head {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    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;
}

.compare-item__info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
    width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.compare-item__price {
    position: relative;
    width: max-content;
    line-height: 24px;
    color: var(--primary);
    font-weight: 400;
    display: flex;
    align-items: center;
}

.compare-item__price__old {
    color: #96A0A7;
    margin-left: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    text-decoration-line: line-through;
}

.compire-item__checklist-icon {
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9ImNoZWNrIj4KPHBhdGggaWQ9Ikljb24iIGQ9Ik0xMy4zMzI3IDRMNS45OTkzNSAxMS4zMzMzTDIuNjY2MDIgOCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjwvZz4KPC9zdmc+Cg==") center no-repeat;
    background-color: #14191B;
    width: 24px;
    height: 24px;
    justify-content: center;
    gap: 10px;
    border-radius: 20px;
}

.compire-item__checklist__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compire-item__checklist__title {
    flex: 1 0 0;  
}

.compire-item__checklist__value {
    width: 80px;
    color: #E10000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.compire-item__dropdown-list__minimal-price, .compire-item__dropdown-list__footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compare-checkbox {
  position: relative;
  width: 24px;
  height: 24px;
}

.compare-checkbox label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 24px;
}

.compare-checkbox label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 6px;
  opacity: 0;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  width: 12px;
}

.compare-checkbox input[type="checkbox"] {
  visibility: hidden;
}

.compare-checkbox input[type="checkbox"]:checked + label {
  background-color: #14191B;
  border-color: #14191B;
}

.compare-checkbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.copmire-item__checklist__price-bottom {
    color: #14191B;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.copmire-item__checklist__price-top {
    color: #176888;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.compire-item__dropdown-list__checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compire-item__dropdown-list {
    z-index: 2;
    position: absolute;
    padding: 12px 16px;
    box-shadow: 0px 0px 10px 0px rgba(16, 16, 16, 0.20);
    background: #fff;
    top: calc(100% + 8px);
    border-radius: 8px;
    width: 340px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.compire-item__dropdown-icon {
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.compire-item__dropdown-icon.active::before {
    background-color: #14191B;
    transform: translate(-50%, -50%) rotate(180deg);
}

.compire-item__dropdown-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-color: #96A0A7;
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9ImFycm93LXNxdWFyZS1kb3duIj4KPHBhdGggaWQ9Ikljb24iIGQ9Ik04IDEyTDEyIDE2TTEyIDE2TDE2IDEyTTEyIDE2VjhNNy44IDIxSDE2LjJDMTcuODgwMiAyMSAxOC43MjAyIDIxIDE5LjM2MiAyMC42NzNDMTkuOTI2NSAyMC4zODU0IDIwLjM4NTQgMTkuOTI2NSAyMC42NzMgMTkuMzYyQzIxIDE4LjcyMDIgMjEgMTcuODgwMiAyMSAxNi4yVjcuOEMyMSA2LjExOTg0IDIxIDUuMjc5NzYgMjAuNjczIDQuNjM4MDNDMjAuMzg1NCA0LjA3MzU0IDE5LjkyNjUgMy42MTQ2IDE5LjM2MiAzLjMyNjk4QzE4LjcyMDIgMyAxNy44ODAyIDMgMTYuMiAzSDcuOEM2LjExOTg0IDMgNS4yNzk3NiAzIDQuNjM4MDMgMy4zMjY5OEM0LjA3MzU0IDMuNjE0NiAzLjYxNDYgNC4wNzM1NCAzLjMyNjk4IDQuNjM4MDNDMyA1LjI3OTc2IDMgNi4xMTk4NCAzIDcuOFYxNi4yQzMgMTcuODgwMiAzIDE4LjcyMDIgMy4zMjY5OCAxOS4zNjJDMy42MTQ2IDE5LjkyNjUgNC4wNzM1NCAyMC4zODU0IDQuNjM4MDMgMjAuNjczQzUuMjc5NzYgMjEgNi4xMTk4NCAyMSA3LjggMjFaIiBzdHJva2U9IiM5NkEwQTciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L2c+Cjwvc3ZnPgo=");
}

.compare-item__payment {
    color: #5A5F65;
}

.compare-item__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
}

.compare-item__buttons .btn {
    height: 40px;
}

.compare-item {
    border: 1px solid transparent;
    border-radius: 8px;
}

.compare-item.--active .btn_outline_dark.btn_arrow_down:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.compare-item.--active {
    border: 1px solid #DFE3E5;
}

.compare-item__content {
    padding: 20px;
}

.compare-check-btn {
    cursor: pointer;
    position: relative;
    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;
}

.compare-check-btn__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.compare-check-btn__button {
    background: #F6F6F6;
    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;
    padding: 0 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
}

.compare-check-btn__button:before {
    content: "";
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 11V15M14 9V15M10 5V15M5.8 19H14.2C15.8802 19 16.7202 19 17.362 18.673C17.9265 18.3854 18.3854 17.9265 18.673 17.362C19 16.7202 19 15.8802 19 14.2V5.8C19 4.11984 19 3.27976 18.673 2.63803C18.3854 2.07354 17.9265 1.6146 17.362 1.32698C16.7202 1 15.8802 1 14.2 1H5.8C4.11984 1 3.27976 1 2.63803 1.32698C2.07354 1.6146 1.6146 2.07354 1.32698 2.63803C1 3.27976 1 4.11984 1 5.8V14.2C1 15.8802 1 16.7202 1.32698 17.362C1.6146 17.9265 2.07354 18.3854 2.63803 18.673C3.27976 19 4.11984 19 5.8 19Z" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 20px;
    height: 20px;
}

.compare-check-btn__input:checked ~ .compare-check-btn__button:before {
    background: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 2H15.2C16.8802 2 17.7202 2 18.362 2.32698C18.9265 2.6146 19.3854 3.07354 19.673 3.63803C20 4.27976 20 5.11984 20 6.8V15.2C20 16.8802 20 17.7202 19.673 18.362C19.3854 18.9265 18.9265 19.3854 18.362 19.673C17.7202 20 16.8802 20 15.2 20H6.8C5.11984 20 4.27976 20 3.63803 19.673C3.07354 19.3854 2.6146 18.9265 2.32698 18.362C2 17.7202 2 16.8802 2 15.2V11M7 12V16M15 10V16M11 6V16M4 7V1M1 4H7" stroke="%23176888" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.compare-check-btn__input:checked ~ .compare-check-btn__button {
    background: #DFE3E5;
}

.compare-header.--active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.btn_outline_dark.btn_back {
    height: 40px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 20px;
}

.btn_outline_dark.btn_back:before {
    content: "";
    background: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 13L1 7L7 1" stroke="%23101010" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 8px;
    height: 14px;
}

.mo-option.--active .mo-option__title {
    color: var(--primary);
}

.mo-option__content.mo-option__content_columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.mo-option__list-item {
    position: relative;
    z-index: 1;
    padding-left: 15px;
    line-height: 24px;
    margin-bottom: 12px;
}

.mo-option__list-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    bottom: 0;
    margin: auto;
}

.compare-item__content .mo-option__content.mo-option__content_columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.app-section.section-finance-form {
    background: #DFE3E5;
}

.finance-form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
}

.finance-form__block {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    display: -ms-grid;
    display: grid;
    align-self: flex-start;
    height: 100%;
}

.finance-form__block-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-bottom: 35px;
}

.finance-form__block > .app-range {
    margin-bottom: 35px;
}

.futures {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
}

.futures-block {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
}

.futures-block__icon {
    width: 60px;
    height: 60px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    margin-bottom: 20px;
}

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

.section-header.section-header_with_desc {
    display: -ms-grid;
    display: grid;
    grid-gap: 40px;
}

.section-header.section-header_with_desc .section-description {
    margin: 0;
}

.banks-grid-carousel__slide {
    height: calc((100% - 12px) / 3) !important;
}

.bank-card {
    height: 90px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.bank-card__logo {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
}

.app-section.section-banks {
    padding-top: 40px;
}

.finance-form.finance-form_fill {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
}

.finance-form__section-title {
    margin-bottom: 24px;
}

.finance-form__section-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.finance-form__section-grid .app-term {
    text-align: right;
}

.futures-block__number {
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 20px;
}

.futures.futures_steps .futures-block__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    min-height: 72px;
}

.futures.futures_steps .futures-block__text span {
    color: var(--primary);
}

.futures-block__div {
    width: 100%;
    height: 1px;
    background: #96A0A7;
    position: relative;
    z-index: 1;
}

.futures-block__div:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #96A0A7;
    border-radius: 50%;
    background-color: #fff;
    margin: auto;
    background-image: url('data:image/svg+xml,<svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13L7 7L1 1" stroke="%2396A0A7" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
}

.futures.futures_steps .futures-block:last-child {
    background: #14191B;
    color: #fff;
}

.futures.futures_steps .futures-block:last-child .futures-block__div:after {
    background-image: url('data:image/svg+xml,<svg width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.3346 1L4.0013 8.33333L0.667969 5" stroke="%2314191B" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.app-section.section-documents {
    padding-top: 0;
    background-image: url(../img/section-documents-asset.png);
    background-position: right 10% bottom -80%;
    background-repeat: no-repeat;
    background-size: 25%;
}

.documents {
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
}

.documents__item {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 40px 40px 85px;
    width: 100%;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="12" fill="%2314191B"/><path d="M17.3346 8L10.0013 15.3333L6.66797 12" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center left 40px;
    background-repeat: no-repeat;
    font-size: 20px;
}

.documents__item:nth-child(2) {
    margin-left: 130px;
}

.documents__item:nth-child(3) {
    margin-left: calc(130px * 2);
}

.page-header__content {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.stocks__bottom.stocks__pag {
    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;
    margin-top: 20px;
}

.pagination {
    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;
}

.pagination__links {
    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;
}

.pagination__item {
    width: 46px;
    height: 46px;
    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: #96A0A7;
}

.pagination__prev, .pagination__next {
    border: 1px solid #96A0A7;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.pagination__prev {
    background: url('data:image/svg+xml,<svg width="7" height="14" viewBox="0 0 7 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 13L0.5 7L6.5 1" stroke="%2314191B" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.pagination__next {
    background: url('data:image/svg+xml,<svg width="7" height="14" viewBox="0 0 7 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 13L6.5 7L0.5 1" stroke="%2314191B" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
}

.pagination__item.--active {
    color: #101010;
    margin-right: 40px;
    position: relative;
    z-index: 1;
}

.pagination__item.--active:after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #101010;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: translate(40px, 0);
    -ms-transform: translate(40px, 0);
    transform: translate(40px, 0);
}

.app-section.section-contacts-page {
    padding: 0;
    background: #14191B;
}

.contacts-page {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.contacts-page__body {
    background: #14191B;
    color: #fff;
    padding: 80px 160px 80px 40px;
}

.contacts-page__iframe {
    width: 100%;
    height: 100%;
    border: none;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.contacts-page__heading {
    margin-bottom: 40px;
}

.contacts-page__info {
    margin-bottom: 40px;
    display: -ms-grid;
    display: grid;
    grid-gap: 24px;
}

.cp-info-block {
    display: -ms-grid;
    display: grid;
    grid-gap: 8px;
}

.cp-info-block__title {
    color: #96A0A7;
    line-height: 24px;
}

.cp-info-block__value {
    font-size: 20px;
    color: #DFE3E5;
    line-height: 28px;
}

.contacts-page__form {
    background: #F6F6F6;
    border-radius: 8px;
    padding: 40px;
    color: #101010;
}

.contacts-page__form-title {
    margin-bottom: 24px;
}

.contacts-page__form-inputs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2 ,1fr);
    grid-gap: 24px 12px;
}

.contacts-page__form-inputs .app-form-term {
    text-align: right;
}

#modal-success {
    background: -o-radial-gradient(100% 100%, 116.67% 97.22%, #1E4C62 0%, #18323D 100%);
    background: radial-gradient(116.67% 97.22% at 100% 100%, #1E4C62 0%, #18323D 100%);
    color: #fff;
    max-width: 640px;
    width: 100%;
    text-align: center;
    padding: 60px;
}

.modal-success__title {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    padding-top: 64px;
}

.modal-success__text {
    margin-bottom: 24px;
}

#modal-success .btn {
    margin: auto;
    width: 100%;
    max-width: 400px;
}

.modal-success__title:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" rx="20" fill="%23176888"/><path d="M25.3337 16L18.0003 23.3333L14.667 20" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
    width: 40px;
    height: 40px;
}

.modal-contacts {
    text-align: center;
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
    margin-top: 24px;
}

.modal-contacts .btn {
    max-width: 400px;
    margin: 12px auto 0;
    width: 100%;
}

.modal-contacts__item {
    font-size: 20px;
    color: #5A5F65;
}

.header-marks__mob-heading,
.header-marks__mob-marks {
    display: none;
}

.compare-icon {
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTggMTNWMTdNMTYgMTFWMTdNMTIgN1YxN003LjggMjFIMTYuMkMxNy44ODAyIDIxIDE4LjcyMDIgMjEgMTkuMzYyIDIwLjY3M0MxOS45MjY1IDIwLjM4NTQgMjAuMzg1NCAxOS45MjY1IDIwLjY3MyAxOS4zNjJDMjEgMTguNzIwMiAyMSAxNy44ODAyIDIxIDE2LjJWNy44QzIxIDYuMTE5ODQgMjEgNS4yNzk3NiAyMC42NzMgNC42MzgwM0MyMC4zODU0IDQuMDczNTQgMTkuOTI2NSAzLjYxNDYgMTkuMzYyIDMuMzI2OThDMTguNzIwMiAzIDE3Ljg4MDIgMyAxNi4yIDNINy44QzYuMTE5ODQgMyA1LjI3OTc2IDMgNC42MzgwMyAzLjMyNjk4QzQuMDczNTQgMy42MTQ2IDMuNjE0NiA0LjA3MzU0IDMuMzI2OTggNC42MzgwM0MzIDUuMjc5NzYgMyA2LjExOTg0IDMgNy44VjE2LjJDMyAxNy44ODAyIDMgMTguNzIwMiAzLjMyNjk4IDE5LjM2MkMzLjYxNDYgMTkuOTI2NSA0LjA3MzU0IDIwLjM4NTQgNC42MzgwMyAyMC42NzNDNS4yNzk3NiAyMSA2LjExOTg0IDIxIDcuOCAyMVoiIHN0cm9rZT0iIzY0Njk3MCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==);
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTggMTNWMTdNMTYgMTFWMTdNMTIgN1YxN003LjggMjFIMTYuMkMxNy44ODAyIDIxIDE4LjcyMDIgMjEgMTkuMzYyIDIwLjY3M0MxOS45MjY1IDIwLjM4NTQgMjAuMzg1NCAxOS45MjY1IDIwLjY3MyAxOS4zNjJDMjEgMTguNzIwMiAyMSAxNy44ODAyIDIxIDE2LjJWNy44QzIxIDYuMTE5ODQgMjEgNS4yNzk3NiAyMC42NzMgNC42MzgwM0MyMC4zODU0IDQuMDczNTQgMTkuOTI2NSAzLjYxNDYgMTkuMzYyIDMuMzI2OThDMTguNzIwMiAzIDE3Ljg4MDIgMyAxNi4yIDNINy44QzYuMTE5ODQgMyA1LjI3OTc2IDMgNC42MzgwMyAzLjMyNjk4QzQuMDczNTQgMy42MTQ2IDMuNjE0NiA0LjA3MzU0IDMuMzI2OTggNC42MzgwM0MzIDUuMjc5NzYgMyA2LjExOTg0IDMgNy44VjE2LjJDMyAxNy44ODAyIDMgMTguNzIwMiAzLjMyNjk4IDE5LjM2MkMzLjYxNDYgMTkuOTI2NSA0LjA3MzU0IDIwLjM4NTQgNC42MzgwMyAyMC42NzNDNS4yNzk3NiAyMSA2LjExOTg0IDIxIDcuOCAyMVoiIHN0cm9rZT0iIzY0Njk3MCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==);
  background-color: #646970
}

.compare-icon {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  mask-repeat: no-repeat;
  -webkit-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-position: center;
  -webkit-position: no-repeat;
  -webkit-mask-position: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  -webkit-mask-size: 100%
}

.regular-text-m {
  font-family: "PTRootUI",sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px
}

.regular-text-s {
  font-family: "PTRootUI",sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px
}



.button {
  padding: 0;
  padding-block:0;border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-family: "PTRootUI",sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  -webkit-transition: .1s ease-in all;
  transition: .1s ease-in all
}

.button.main {
  background: #2e58db;
  color: #fff
}

.button.main:hover {
  background: #1641bc
}

.button.main:active {
  background: #1641bc;
  color: #dce1e9
}

.button.outline {
  color: #151515;
  border: 1px solid #151515;
  background: rgba(0,0,0,0)
}

.button.outline.size-s {
  padding: 5px 15px
}

.button.outline.light {
  border: 1px solid #fff
}

.button.light {
  color: #fff
}

.button.light:hover {
  border-color: #fff;
  background: #fff;
  color: #151515
}

.button.light:active {
  border-color: #fff;
  background: #fff;
  color: #9ca5b3
}

.button.size-s {
  padding: 6px 16px
}

.input:not(:-moz-placeholder-shown) {
  color: #151515
}

.input:not(:-ms-input-placeholder) {
  color: #151515
}

.input:not(:-moz-placeholder-shown)+span.error {
  display: none !important
}

.input:not(:-ms-input-placeholder)+span.error {
  display: none !important
}

.input:not(:-moz-placeholder-shown)::placeholder {
  color: #9ca5b3
}

.input:not(:-ms-input-placeholder)::placeholder {
  color: #9ca5b3
}

.input:not(:-moz-placeholder-shown)+.input__label, .input:not(:-moz-placeholder-shown)+.error+.input__label {
  position: absolute;
  top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #646970
}

.input:not(:-ms-input-placeholder)+.input__label, .input:not(:-ms-input-placeholder)+.error+.input__label {
  position: absolute;
  top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #646970
}

.input__wrapper:has(.input:not(:-moz-placeholder-shown)) {
  border-color: #646970
}

.input__wrapper:has(.input:not(:-ms-input-placeholder)) {
  border-color: #646970
}

.input__wrapper:has(.input:not(:placeholder-shown)) {
  border-color: #646970
}

.input__wrapper:has(.input:focus) {
  border-color: #2e58db
}

.input__wrapper:has(.input.error) {
  border-color: #d02d2d
}

.pagination:has(.swiper-hide-pagination) {
  display: none
}

.review-modal__rating__item__raido__label:has(.review-modal__rating__item__radio:checked) {
  background: #2e58db;
  border-color: #2e58db
}

.review-modal__rating__item__raido__label:has(.review-modal__rating__item__radio:checked) .review-modal__rating__item__raido__rating {
  color: #fff
}

.footer__form .input:not(:-moz-placeholder-shown) {
  color: #fff
}

.footer__form .input:not(:-ms-input-placeholder) {
  color: #fff
}

.car-item__compare__hint {
  z-index: 1;
  position: absolute;
  padding: 8px 12px;
  background: #151515;
  border-radius: 12px;
  color: #dce1e9;
  width: 105px;
  text-align: center;
  display: none;
  right: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: calc(100% + 2px)
}

.car-item__compare__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.car-item__compare__info.active {
  display: block;
}

.car-item__compare__info {
  z-index: 2;
  width: 204px;
  position: absolute;
  right: 0;
  bottom: calc(100% + 2px);
  padding: 12px;
  background: #151515;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none
}

.car-item__compare__info .regular-text-m {
  color: #fff;
  margin-bottom: 4px
}

.car-item__compare__info .regular-text-s {
  color: #9ca5b3;
  margin-bottom: 10px
}

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

.car-item__compare__icon {
  position: absolute;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  background: #fff;
  border-radius: 8px;
  right: 8px;
  bottom: 8px;
}

.car-item__compare__icon.active .compare-icon {
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEyIDNIMTYuMkMxNy44ODAyIDMgMTguNzIwMiAzIDE5LjM2MiAzLjMyNjk4QzE5LjkyNjUgMy42MTQ2IDIwLjM4NTQgNC4wNzM1NCAyMC42NzMgNC42MzgwM0MyMSA1LjI3OTc2IDIxIDYuMTE5ODQgMjEgNy44VjE2LjJDMjEgMTcuODgwMiAyMSAxOC43MjAyIDIwLjY3MyAxOS4zNjJDMjAuMzg1NCAxOS45MjY1IDE5LjkyNjUgMjAuMzg1NCAxOS4zNjIgMjAuNjczQzE4LjcyMDIgMjEgMTcuODgwMiAyMSAxNi4yIDIxSDcuOEM2LjExOTg0IDIxIDUuMjc5NzYgMjEgNC42MzgwMyAyMC42NzNDNC4wNzM1NCAyMC4zODU0IDMuNjE0NiAxOS45MjY1IDMuMzI2OTggMTkuMzYyQzMgMTguNzIwMiAzIDE3Ljg4MDIgMyAxNi4yVjEyTTggMTNWMTdNMTYgMTFWMTdNMTIgN1YxN001IDhWMk0yIDVIOCIgc3Ryb2tlPSIjMkU1OERCIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEyIDNIMTYuMkMxNy44ODAyIDMgMTguNzIwMiAzIDE5LjM2MiAzLjMyNjk4QzE5LjkyNjUgMy42MTQ2IDIwLjM4NTQgNC4wNzM1NCAyMC42NzMgNC42MzgwM0MyMSA1LjI3OTc2IDIxIDYuMTE5ODQgMjEgNy44VjE2LjJDMjEgMTcuODgwMiAyMSAxOC43MjAyIDIwLjY3MyAxOS4zNjJDMjAuMzg1NCAxOS45MjY1IDE5LjkyNjUgMjAuMzg1NCAxOS4zNjIgMjAuNjczQzE4LjcyMDIgMjEgMTcuODgwMiAyMSAxNi4yIDIxSDcuOEM2LjExOTg0IDIxIDUuMjc5NzYgMjEgNC42MzgwMyAyMC42NzNDNC4wNzM1NCAyMC4zODU0IDMuNjE0NiAxOS45MjY1IDMuMzI2OTggMTkuMzYyQzMgMTguNzIwMiAzIDE3Ljg4MDIgMyAxNi4yVjEyTTggMTNWMTdNMTYgMTFWMTdNMTIgN1YxN001IDhWMk0yIDVIOCIgc3Ryb2tlPSIjMkU1OERCIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+);
  background-color: #2e58db
}

.car-item__compare__icon:has(.car-item__compare__info:hover) .car-item__compare__hint {
  display: none
}

.car-item__compare__icon:has(.car-item__compare__info.active) .car-item__compare__hint {
  display: none
}

.car-item__compare__icon:hover .car-item__compare__hint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.car-item__compare__icon:hover .compare-icon {
  background-color: #151515
}

.car-item__compare__icon .compare-icon {
  width: 100%;
  height: 100%
}


.section-carbody__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.section-carbody__item {
    background: #000;
    border-radius: 8px;
    transition: 0.3s all;
    position: relative;
    overflow: hidden;
}

.section-carbody__item:hover {
    transform: scale(1.02);
}
.section-carbody__item__image:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgb(30, 29, 29) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
    z-index: 1;
    pointer-events: none;
  }

  .section-carbody__item__image.loaded::before {
    display: none;
  }
.section-carbody__item__image img {
    width: 100%;
    object-fit: cover;
    height: 180px;
    border-radius: 8px 8px 0 0;
}

.section-carbody__item__text {
    display: inline-block;
    width: 100%;
    padding: 6px 16px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
    color: #f6f6f6;
}

/* Госпрограмма */

.gos {
    padding: 80px 0px 40px 0px;
    font-family: "PT Root UI";
  }

  .gos__inner {
    flex-basis: calc(50% - 6px);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .gos__wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    gap: 12px;

  }

  .gos__item {
    width: calc(50% - 6px);
    padding: 24px 40px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .gos__icon {
    flex-shrink: 0;
  }

  .gos__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }

  .gos__promo {
    flex-basis: calc(50% - 6px);
    background-image: radial-gradient(116.67% 97.22% at 100% 100%, #1E4C62 0%, #18323D 100%);
    color: white;
    padding: 78px 40px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    display: flex;
    overflow: hidden;


  }

  .gos__promo-content {
    flex-basis: 75%;
    flex-direction: column;
    display: flex;
    gap: 20px;
    z-index: 3;
  }

  .gos__promo-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
  }

  .gos__promo-text {

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    text-wrap: balance;
  }

  .gos__promo-img {
    max-width: 340px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .gos__btn {
    display: flex;
    width: max-content;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: white;
    color: #176888;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    list-style: none;
    text-decoration: none;
    text-align: center;
  }

/*/ Госпрограмма */


#modal-gift {
    background: linear-gradient(228deg, #FFF 8.88%, rgba(255, 255, 255, 0.95) 84.93%), url(../img/gift-modal-bg.png) lightgray 100% 100% / 100% 100% no-repeat;
    max-width: 640px;
    width: 640px;
}

#modal-gift .modal__content {
    max-width: 400px;
}

#modal-gift .gift__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
    margin-top: 40px;
}

#modal-gift .gift__item {
    width: 100px;
    height: 95px;
    position: relative;
    cursor: pointer;
    transition: 0.3s all;
}

#modal-gift .gift__item:hover {
    opacity: 0.7;
}

#modal-gift .gift__item.active .gift__head {
    top: -53px;
}

#modal-gift .app-input {
    background: transparent;
}

#modal-gift .gift__head {
    position: absolute;
    width: 110px;
    left: 50%;
    transform: translateX(-50%);
    top: -13px;
    transition: 0.3s ease-in-out;
}

#modal-gift .gift__icon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -25%;
}

#modal-gift .gift__item.active .gift__result {
    opacity: 1;
}

#modal-gift .gift__result {
    color: #176888;
    position: absolute;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    opacity: 0;
    line-height: 18px;
    letter-spacing: -0.66px;
    width: 235px;
    transition: 0.2s ease;
    height: 18px;
}

#modal-gift .modal__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Чтобы canvas не блокировал клики */
}

.fancybox-slide--html:has(.prize-draw) {
    padding: 0;
} 

.prize-draw {
    padding: 0;
    max-width: none;
    max-width: 1140px !important;
}

.prize-draw-megasave .fancybox-close-small {
    border: 1px solid #eee;
    border-radius: 50px;
    position: absolute !important;
    right: 5% !important;
    top: 10% !important;
    color: #eee !important;
    width: 72px !important;
    height: 72px !important;
    z-index: 10 !important;
}

.prize-draw-megasave {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: none !important;
}

.prize-draw-megasave .btn.btn_primary::after {
    content: "бесплатно";
    color: #FFF;
    font-family: "PT Root UI";
    font-size: 100%;
    font-style: normal;
    font-weight: 400;
    line-height: 1.15;
    border-radius: 24px;
    background: rgba(130, 159, 171, 0.80);
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.prize-draw-megasave .btn.btn_primary {
    position: relative;
    border-radius: 12px;
    background: var(--White, #FFF);
    color: var(--Hague-Blue, #176888);
    font-family: "PT Root UI";
    font-style: normal;
    font-weight: 500;
}
.prize-draw-megasave .app-term {
    color: var(--Ash-blue, #829FAB);
}
.prize-draw-megasave .app-input:focus {
    color: #fff;
}
.prize-draw-megasave .app-input {
    color: var(--Ash-blue, #829FAB);
    background: transparent;
    border: 2px solid var(--White, #FFF);
}
.prize-draw-megasave .prize-draw__form__wrapper{
    max-width: 776px;
    padding: 0;
    align-items: flex-start;
}
.prize-draw .prize-draw__image img{
    height: 100%;
}
.prize-draw-megasave .prize-draw__content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
.prize-draw-megasave .prize-draw__content .modal-offer__text{
    text-align-last: left;
    color: #FFF;
    font-family: "PT Root UI";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; 
}
.prize-draw-megasave .prize-draw__content .main-heading{
    text-align-last: left;
    color: #FFF;
    font-family: "PT Root UI";
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 72px;
}


.prize-draw-megasave .prize-draw__image h3{
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px; 
    color: white;
    border-radius: 4px;
    background-color: #E74929;
    padding: 6px 16px;
    width: max-content;
    z-index: 1;
 
}
.prize-draw-megasave .prize-draw__image span{
    color: #E74929;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px; 
    border-radius: 4px;
    background-color: #FFF;
    padding: 6px 16px;
    width: max-content;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    z-index: 1;
}

.prize-draw-megasave .prize-draw__image {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.prize-draw__form__wrapper form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.prize-draw__form__wrapper .btn {
    margin-bottom: 8px;
    width: 100%;
}

.prize-draw__form__wrapper .app-label {
    margin-bottom: 24px;
}

.prize-draw__form__wrapper .main-heading {
    margin-bottom: 24px;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}

.prize-draw__form__wrapper {
    padding: 60px 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.prize-draw__content {
    display: flex;
    flex-direction: row;
}

.prize-draw__image {
    position: relative;
}

.prize-draw__disclamer {
    width: 100%;
    position: absolute;
    bottom: 11px;
    left: 50%;
    transform: translateX(-50%);
    color: #DFE3E5;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 1100px) {
    .fancybox-button svg path{
        fill: #9E9E9E !important;
    }
    .prize-draw__content {
        flex-direction: column;
    }

    .prize-draw__image {
        width: 100%;
        height: 300px;
    }

    .prize-draw__form__wrapper {
        padding: 24px 16px;
    }

    .prize-draw br {
        display: none;
    }
    .prize-draw {
        padding: 0 !important;
    }

    .fancybox-slide--html .fancybox-close-small {
        width: 40px;
        border: 1px solid #9E9E9E;
        height: 40px;
        top: 8px;
        right: 8px;
        padding: 2px;
        border-radius: 50px;
    }
    
    #modal-prize-draw .fancybox-close-small {
        left: 8px !important;
    }
}

.agreement__wrapper .app-term {
    text-align: left;
}

.agreement__wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.agreement__wrapper:has(.agreement__checkbox.error) .app-term {
    color: #E91E63;
}

.agreement__checkbox.error{
    width: 14px;
    height: 14px;
    border-radius: 2px;
    border: 1.5px solid #E91E63;
}

.agreement__checkbox {
    margin-top: 2px;
    border-radius: 4px;
    width: 14px;
    height: 14px;
}

.agreement__wrapper span.error {
    display: none !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    display: flex;
}