@import "./reset.css";

:root {
    --color-orange: #ff8743;
    --color-gray: #4c5865;
    --color-white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

.btn {
    width: 260px;
    height: 43px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: var(--color-gray);
    color: var(--color-white);
    border-radius: 26px;

    transition: all 0.3s;
}

.br-desc-hide {
    display: none;
}

.br-mob-hide {
    display: block;
}

.orange-text {
    color: #ff8743;
}

.btn:hover {
    background-color: var(--color-orange);
    transform: scale(1.05);
}

.btn.desc-hide {
    display: none;
}

.models .desc-hide {
    display: none;
}

.btn:hover {
    cursor: pointer;
}

.btn.white {
    background-color: transparent;
    border: 1px solid var(--color-gray);
    color: var(--color-gray);
}

.btn.white:hover {
    background-color: var(--color-orange);
    transform: scale(1.05);
}

.btn.equip {
    background-color: var(--color-orange);
    width: 200px;
    height: 32px;
    color: var(--color-white);
    font-size: 12px;
}

.btn.equip.white {
    background-color: transparent;
    border: 1ps solid var(--color-gray);
    color: var(--color-gray);
}

.btn.form.block {
    width: 380px;
    height: 38px;
    background-color: var(--color-orange);
    margin: 8px 0;
}

.input {
    width: 180px;
    height: 37px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 51px;
    color: rgba(255, 255, 255, 0.71);
    background-color: transparent;
    padding-left: 16px;
    outline: none;
    font-size: 12px;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.71);
}

.label-form,
.label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.custom-checkbox {
    width: 14px;
    height: 14px;
    background-color: #9c9c9c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.custom-checkbox svg {
    display: none;
}

input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

input[type="checkbox"]:checked + span svg {
    display: block;
}

.section-title {
    font-size: 33px;
    font-weight: 600;
    color: var(--color-gray);
    text-align: center;
}

/* Header */

.header {
    padding: 15px 0;
    position: fixed;
    width: 100vw;
    z-index: 101;
    background-color: transparent;
    transition: all ease 0.3s;
    color: var(--color-white);
}

.header.scrolled {
    background-color: var(--color-white);
    color: var(--color-gray);
}

.header::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 10px;
    background-image: linear-gradient(
        to right,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 100%
    );
}

.header.scrolled::after {
    background-image: linear-gradient(to right, transparent 30%, #4c5865 100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper-logo-address {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-logo-address span {
    /* color: var(--color-white); */
    font-size: 12px;
}

.gray-logo {
    display: none;
}

.header.scrolled .gray-logo {
    display: block;
}

.header-nav-desc-list {
    display: flex;
    /* gap: 50px; */
    gap: 30px;
    /* font-size: 12px; */
    font-size: 14px;
}

.header-nav-desc-list li a {
    color: var(--color-white);
    transition: all ease 0.3s;
}

.header-nav-desc-list li a:hover,
.header.scrolled .header-nav-desc-list li a:hover {
    color: var(--color-orange);
}

.header-nav-desc-list li a.active {
    border-bottom: 1px solid var(--color-orange);
}

/* .header-nav-desc-list li a:active,
.header.scrolled .header-nav-desc-list li a:active {
    text-decoration: underline;
} */

.header.scrolled .header-nav-desc-list li a {
    color: var(--color-gray);
}

.wrapper-tel-n-callback {
    display: flex;
    align-items: center;
    gap: 23px;
}

.wrapper-tel-n-callback a {
    color: var(--color-white);
    font-size: 12px;
}

.header.scrolled .wrapper-tel-n-callback a {
    color: var(--color-gray);
}

.burger-open,
.burger-close {
    display: none;
}

.burger-open {
    width: 30px;
    height: 24px;
    background-color: var(--color-white);
    position: relative;
}

.burger-open::before {
    content: "";
    width: 30px;
    height: 6px;
    background-color: #000;
    position: absolute;
    top: 4px;
    left: 0;
}

.burger-open::after {
    content: "";
    width: 30px;
    height: 6px;
    background-color: #000;
    position: absolute;
    bottom: 4px;
    left: 0;
}

.burger-close {
    color: var(--color-gray);
    font-size: 40px;
    line-height: 28px;
    width: 30px;
    height: 24px;
    transform: rotate(45deg);
    position: relative;
    left: 12px;
    top: 2px;
}

.header.scrolled .burger-open {
    background-color: var(--color-gray);
}

.header.scrolled .burger-open::after,
.header.scrolled .burger-open::before {
    background-color: var(--color-white);
}

/* side menu */

.side-menu {
    display: flex;
    flex-direction: column;
    transition: all ease 0.3s;
    width: 0vw;
    position: fixed;
    top: 56px;
    right: 0;
    z-index: 55;
    background-color: var(--color-white);
    height: 100vh;
}

.side-menu-list {
    display: none;
    flex-direction: column;
}

.bg-logo-side-menu {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    z-index: -1;
}

.side-menu.active .side-menu-list {
    display: flex;
    padding: 0 20px;
    margin: 20px 0;
}

.side-menu.active .side-menu-list li {
    display: flex;
    padding: 9px 0;
    font-size: 15px;
}

.side-menu.active .side-menu-list li a {
    color: var(--color-gray);
}

.side-menu .btn {
    display: none;
    border-radius: 37px;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    width: auto;
    height: 39px;
    font-size: 14px;
}

.side-menu.active .btn {
    display: inline-flex;
}

/* Main */

/* Banner */

.banner {
    height: 809px;
    /* height: 100vh; */
    position: relative;
    margin-bottom: 20px;
}

.banner-swiper {
    height: 100%;
    width: 100%;
}

.swiper-nav {
    position: absolute;
    bottom: 39px;
    left: 108px;
    z-index: 10;
}

.banner-swiper .swiper-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 54px;
    width: auto;
}

.banner-swiper .swiper-button-prev {
    background: url(../img/prev.svg) no-repeat;
    background-position: center;
    position: unset;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    border: 1px solid white;
}

.banner-swiper .swiper-button-next {
    background: url(../img/next.svg) no-repeat;
    background-position: center;
    position: unset;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    border: 1px solid white;
}

.banner-swiper .swiper-slide.first {
    background: url(../img/first-banner.webp) no-repeat;
    background-position: 80% center;
    background-size: cover;
}

.banner-swiper .swiper-slide.second {
    background: url(../img/second-banner.webp) no-repeat;
    background-position: 80% center;
    background-size: cover;
}

@media (max-width: 991px) {
    .banner-swiper .swiper-slide.first {
        background: url(../img/first-banner-mob.webp) no-repeat;
        background-position: 0% 29%;
        background-size: cover;
    }

    .banner-swiper .swiper-slide.second {
        background: url(../img/second-banner-mob.webp) no-repeat;
        background-position: center;
        background-size: cover;
    }
}

.banner .container {
    padding-top: 115px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

.banner-desc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.absolute-text-credit {
    position: absolute;
    right: -30px;
    top: 115px;
    background: rgba(255, 135, 67, 0.67);
    backdrop-filter: blur(5.2px);
    border-radius: 45px;
    /* width: 640px; */
    width: 34vw;
    padding: 4px 25px;
    font-size: 20px;
    font-weight: 700;
}

.title-banner {
    font-size: 51px;
    color: #fff;
}

.title-banner b {
    color: #ff8743;
    filter: drop-shadow(0px 4px 4px #00000040);
    font-weight: 700;
}

.wrapper-content {
    max-width: 830px;
    /* padding: 20px; */
}

.wrapper-content p {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.wrapper-content p b {
    color: var(--color-orange);
    font-weight: 700;
}

.wrapper-content .list-banner {
    font-size: 19px;
    padding-top: 35px;
}

.swiper-slide.second .wrapper-content .list-banner {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    column-gap: 56px;
    row-gap: 35px;
    padding-top: 84px;
}

.list-banner li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.swiper-slide.second .wrapper-content .list-banner li {
    padding-bottom: 0px;
}

.list-banner li::before {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.9998 23.8333C18.9829 23.8333 23.8332 18.9831 23.8332 13C23.8332 7.01691 18.9829 2.16666 12.9998 2.16666C7.01675 2.16666 2.1665 7.01691 2.1665 13C2.1665 18.9831 7.01675 23.8333 12.9998 23.8333Z' stroke='%23FF8743' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M13 17.3333L17.3333 13L13 8.66666' stroke='%23FF8743' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M8.6665 13H17.3332' stroke='%23FF8743' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    width: 26px;
    height: 26px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* timer */

.wrapper-timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timer-title {
    font-size: 25px;
    max-width: 205px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.timer {
    display: flex;
    justify-content: space-between;
    /* gap: 80px; */
    gap: 40px;
}

.time-count__item {
    width: 80px;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    /* gap: 5px; */
    z-index: 1;
}

.time-count__val {
    font-weight: 700;
    /* font-size: 45px; */
    font-size: 34px;
    line-height: 1;
    color: #fff;
}

.time-count__text {
    /* font-weight: 600; */
    font-size: 15px;
    font-size: 12px;
    line-height: 1;
    /* text-transform: uppercase; */
    color: #fff;
}

.pie {
    display: block;
    /* width: 112px; */
    width: 75px;
    /* height: 112px; */
    height: 75px;
    border-radius: 50%;
    transform: rotate(-90deg);
    position: absolute;
    bottom: -15px;
    /* left: -16px; */
    left: 3px;
    z-index: -1;
}

.background {
    fill: none;
    /* stroke: var(--color-orange); */
    stroke: rgba(255, 255, 255, 0.39);
    opacity: 0.5;
    stroke-width: 10;
}

.chart {
    fill: none;
    /* stroke: gray; */
    stroke: var(--color-orange);
    stroke-width: 10;
}

.wrapper-timer .btn {
    color: var(--color-white);
    border-color: var(--color-white);
    width: 300px;
    height: 52px;
    font-size: 16px;
    transition: all ease 0.3s;
}

.wrapper-timer .btn:hover {
    background-color: var(--color-orange);
    transform: scale(1.05);
}

/* Models */

.wrapper-model-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 15px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    align-items: center;
    padding: 20px 0;
}
.wrapper-main-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrapper-model-row.show-more a {
    display: block;
}
/* .wrapper-model-row:not(.show-more) a:nth-child(n + 8) {
    display: none;
} */
@media (max-width: 992px) {
    .wrapper-model-row:not(.show-more) a:nth-child(n + 6) {
        display: none;
    }
}
@media (max-width: 768px) {
    .wrapper-model-row:not(.show-more) a:nth-child(n + 4) {
        display: none;
    }
}
.wrapper-model-row a {
    color: var(--color-gray);
}
/* 
.wrapper-model-row a.hide {
    display: none;
}

.wrapper-model-row a.show {
    display: block;
} */

.wrapper-model-row a.active {
    border-bottom: 1px solid var(--color-orange);
}

.btn-show-model {
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    padding: 0;
}

.wrapper-model-row p:not(.wrapper-model-row p:nth-child(3)) {
    margin-right: 15px;
}

/* .wrapper-models {
    position: relative;
} */

.background-text {
    position: absolute;
    top: -25px;
    left: 12px;
    background: linear-gradient(
        180deg,
        rgba(76, 88, 101, 0.22),
        rgba(76, 88, 101, 0)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* text-fill-color:
        transparent; */
    font-size: 116px;
    font-weight: 700;
    line-height: 158px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
}

.item-model {
    height: 260px;
    background: linear-gradient(
        91.01deg,
        rgba(76, 88, 101, 0) 5.511%,
        rgba(76, 88, 101, 0.05) 47.589%
    );
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.left-item-model {
    height: 100%;
    padding: 20px 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-gray);
    position: relative;
}

.left-item-model > div {
    text-transform: uppercase;
}

.title-item-model {
    /* font-size: 32px; */
    font-size: 28px;
    position: absolute;
    top: 20px;
    left: 30px;
    white-space: nowrap;
}

.text-doors-model {
    font-size: 18px;
    font-weight: 600;
}

.list-model {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 460px;
}

.list-model li {
    /* width: 47%; */
    padding-left: 35px;
    position: relative;
    /* padding-bottom: 10px; */
    font-size: 15px;
    /* text-transform: lowercase; */
}

.list-model li::before {
    content: "";
    background-image: url("../img/right-arrow.svg");
    /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_9_390)'%3e%3cpath d='M8.00001 14.6666C11.6819 14.6666 14.6667 11.6819 14.6667 7.99998C14.6667 4.31808 11.6819 1.33331 8.00001 1.33331C4.31811 1.33331 1.33334 4.31808 1.33334 7.99998C1.33334 11.6819 4.31811 14.6666 8.00001 14.6666Z' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M8 10.6666L10.6667 7.99998L8 5.33331' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M5.33334 8H10.6667' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_9_390'%3e%3crect width='16' height='16' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e"); */
    width: 25px;
    height: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    /* top: 4px; */
}

.center-item-model {
    display: flex;
    flex-direction: column;
    max-width: 260px;
    padding: 20px 0 0;
    position: relative;
    margin-right: 30px;
}

.wrapper-price-model {
    color: #4c5865;
    font-size: 19px;
}

.old-price {
    color: #4c58659c;
    display: block;
    text-align: right;
}

.new-price {
    display: flex;
    align-items: center;
}

.new-price b {
    font-size: 33px;
    color: #ff8743;
    margin-left: auto;
    line-height: 33px;
}

.btn-offer {
    display: block;
}

.btn-price {
    display: none;
}

.credit-price {
    display: flex;
    align-items: center;
}

.credit-price span {
    margin-left: auto;
}

.wrapper-button-model button:first-of-type {
    margin: 10px 0;
    background-color: var(--color-orange);
}

.right-item-model {
    position: relative;
    padding-top: 70px;
}

.absolute-text-model {
    position: absolute;
    right: 0;
    top: 10px;
    background: #ff8743;
    color: #fff;
    height: 40px;
    z-index: -1;
    font-size: 12px;
    padding-left: 150px;
    padding-right: 16px;
    border-radius: 36px;
    line-height: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper-main-img-model {
    width: 340px;
    height: 194px;
    position: relative;
    margin-bottom: -25px;
}

.main-img-model {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
    max-width: 340px;
}

.main-img-model.active {
    /* position: relative; */
    opacity: 1;
    visibility: visible;
}

.wrapper-color-n-text {
    position: relative;
    /* bottom: 35px; */
    /* right: 20px; */
}

/* .colors {
    padding-top: 20px;
} */

.colors-swiper {
    /* padding-right: 35px; */
    /* max-width: 200px; */
    max-width: 280px;
    /* margin-right: 0; */
    /* margin-left: 0; */
}

.colors-swiper .swiper-wrapper {
    justify-content: center;
}

.colors-swiper .custom-swiper-button {
    height: 100%;
    width: 28px;
    top: 0;
    right: 0;
}

.colors-swiper .custom-swiper-button::after {
    width: 18px;
    height: 18px;
}

.colors-swiper .swiper-button-prev {
    left: 0;
    rotate: 180deg;
}

.colors-swiper .swiper-button-disabled {
    display: none;
}

.colors .color {
    /* width: 28px; */
    width: 24px;
    /* height: 28px; */
    height: 24px;
    cursor: pointer;
    /* border: 1px solid #00000044; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
}

/* .colors .color.active {
    box-shadow: 0px 0px 8.2px 0px rgb(43, 48, 58);
} */

.color svg {
    display: none;
}

.color.active svg {
    display: block;
}

.name-color {
    color: #4c5865;
    font-weight: 600;

    font-size: 11px;
    position: absolute;
}

.wrapper-color {
    display: flex;
    width: 160px;
    margin-left: 0;
    align-items: center;
}

.swiper-colors__prev,
.swiper-colors__next {
    transform: rotate(-90deg);
}

.wrapper-color span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide span svg {
    display: none;
}

.swiper-slide.swiper-slide-active span svg {
    display: block;
}

/* Equipments */

.equipments {
    margin-bottom: 75px;
}

.form-filter-equip {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 36px 0 55px;

    max-width: 580px;
    margin: 0 auto;
}

.select2-container--default .select2-selection--single {
    height: 47px;
    border-radius: 40px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 47px;
    padding-left: 15px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    right: 10px;
    top: 10px;
}

.form-filter-equip select {
    width: 280px;
    height: 47px;
    border-radius: 41px;
    padding: 0 10px;
    font-size: 15px;
    border-color: rgba(43, 48, 58, 0.26);
    outline: none;
}

.item-equip {
    display: flex;
    justify-content: space-between;
    background: rgba(76, 88, 101, 0.06);
    padding-right: 30px;
    margin-bottom: 25px;

    gap: 25px;
    height: 190px;
}

.left-item-equip {
    /* background: url(../img/bg-item-equip-car.webp); */
    background-size: cover;
    background-repeat: no-repeat;
    width: 400px;

    position: relative;
}

.left-item-equip p {
    display: inline-block;
    background: rgb(255, 135, 67);
    border-radius: 0 0 13px 0;
    color: #fff;
    padding: 5px 10px;
}

.main-img-equip {
    margin: 0 auto;
    max-width: 300px;

    position: absolute;
    top: 50%;
    transform: translate(-50%, -45%);
    left: 50%;
}

.center-item-equip {
    color: var(--color-gray);
    padding-top: 10px;

    flex-grow: 1;
}

.title-item-equip {
    font-size: 29px;
    text-transform: uppercase;
}

.text-item-equip {
    padding-bottom: 25px;
    font-size: 15px;
    font-weight: 600;
}

.wrapper-character-car {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    max-width: 460px;
    justify-content: space-between;
    font-weight: 600;
}

.wrapper-character-car.mob {
    display: none;
    flex-direction: column;
    font-size: 14px;
    /* max-width: 450px; */
    /* justify-content: space-between; */
    font-weight: 600;
}

.wrapper-character-car p {
    padding-bottom: 10px;
    width: 47%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrapper-character-car p img {
    height: 20px;
}

.wrapper-character-car.mob p {
    width: auto;
}

.right-item-equip {
    /* max-width: 200px; */
    /* padding-top: 25px; */
    padding-top: 20px;
}

.right-item-equip .wrapper-price-model {
    font-size: 15px;
}

.right-item-equip .new-price,
.right-item-equip .credit-price {
    justify-content: flex-end;
    align-items: flex-end;
    font-weight: 600;
}

.right-item-equip .new-price b {
    font-size: 27px;
    margin-left: 8px;
    font-weight: 700;
}

.credit-price b {
    font-weight: 700;
}

.right-item-equip .wrapper-price-model span {
    margin-left: 10px;
}

.right-item-equip .wrapper-button-model {
    display: flex;
    flex-direction: column;
}

.right-item-equip .wrapper-button-model .btn {
    width: 100%;
    height: 32px;
    font-size: 12px;
}

.desk__hide {
    display: none;
}

.right-item-equip .wrapper-button-model button:first-of-type {
    /* margin: 10px 0 5px; */
    margin: 10px 0 6px;
    background-color: var(--color-orange);
}

.btn-show-more {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-gray);
    line-height: 1;
    font-size: 18px;
}

.btn-show-more:hover {
    cursor: pointer;
}

/* Credit */

.credit {
    height: 400px;
    /* background-image: url('../img/bg-credit-car-desc.webp'); */
    background-image: url("../img/bg-credit-desc2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
    position: relative;
    margin-bottom: 25px;
    padding: 30px 25px;
}

.credit .form,
.trade-in .form {
    max-width: 320px;
}

.credit .input,
.trade-in .input {
    width: 100%;
    text-align: center;
}

/* .img-shadow-credit {
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(8.7px);
    background: linear-gradient(90.00deg, rgb(76, 88, 101) 48.393%, rgba(0, 0, 0, 0) 99.986%);
}
.shadow-credit {
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(8.7px);
    background: linear-gradient(90.00deg, rgb(76, 88, 101) 48.393%, rgba(0, 0, 0, 0) 99.986%);
    height: 100%;
    width: 770px;
} */

.wrapper-credit {
    max-width: 380px;
    color: var(--color-white);
    margin-left: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title-credit {
    font-size: 26px;
}

.title-credit b {
    color: var(--color-orange);
}

.text-credit {
    font-size: 12px;
    padding: 10px 0 25px;
}

.list-credit li {
    /* gap: 12px; */
    font-size: 15px;
    padding-bottom: 8px;
    padding-left: 32px;
    position: relative;
}

.list-credit li::before {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 20.1666C16.0626 20.1666 20.1667 16.0625 20.1667 10.9999C20.1667 5.93731 16.0626 1.83325 11 1.83325C5.93738 1.83325 1.83333 5.93731 1.83333 10.9999C1.83333 16.0625 5.93738 20.1666 11 20.1666Z' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M11 14.6666L14.6667 10.9999L11 7.33325' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M7.33333 11H14.6667' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-size: cover;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
}

form.form {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form.form input:first-child {
    margin-right: 14px;
}

/* Trade-in */
.trade-in {
    /* background-image: url('../img/bg-tradein-desc.webp'); */
    background-image: url("../img/bg-tradein-lada2.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    margin-bottom: 25px;
    padding: 30px 25px;
}

.wrapper-tradein {
    color: var(--color-white);
    width: 380px;
    margin-left: auto;
}

.title-tradein {
    font-size: 37px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.title-tradein b {
    color: #ff8743;
    font-size: 67px;
    line-height: 1;
    height: 70px;
    font-weight: 600;
}

.title-tradein span {
    font-size: 26px;
    line-height: 1;
}

.text-tradein {
    font-size: 17px;
}

.text-tradein b {
    color: var(--color-orange);
}

.trade-in form.form {
    padding-top: 48px;
}

/* Contacts */

.contacts {
    /* background-image: url('../img/bg-map-desc.webp'); */
    /* background-size: cover;
    background-repeat: no-repeat; */
    height: 312px;
    margin-top: 78px;
    position: relative;
}

.wrapper-contacts {
    width: 300px;
    /* height: 179px; */
    height: 192px;
    border-radius: 10px;
    background: rgba(76, 88, 101, 0.83);
    color: var(--color-white);
    padding: 19px 19px 15px;
    top: 18%;
    position: absolute;
    z-index: 100;
}

.title-contacts {
    display: flex;
    justify-content: space-between;
    /* padding-bottom: 5px; */
    align-items: center;

    font-weight: 700;
    padding-bottom: 10px;
}

.item-contacts {
    padding-bottom: 10px;
}

.item-contacts div {
    display: flex;
    align-items: center;
    gap: 12px;
    /* padding-bottom: 12px; */
    font-size: 12px;

    padding-bottom: 5px;
}

.item-contacts div:nth-of-type(2) {
    gap: 10px;
}

.item-contacts div a {
    color: var(--color-white);
}

.contacts .btn {
    width: 100%;
}

.img-map-mob {
    display: none;
}

.logo-mob-map {
    display: none;
}

.contacts__map {
    height: 312px;
    width: 100%;
    position: absolute;
    z-index: 0;
}

/* Footer */

.footer {
    /* padding-bottom: 100px; */
    padding-bottom: 150px;
    background: #4c5865;
    color: #fff;
    padding-top: 20px;
}

.footer .legal {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    color: var(--color-dark-text);
    font-size: 14px;
    align-items: center;
}

.legal .text {
    max-width: 760px;
    font-size: 12px;
}

.footer__links-item {
    margin-bottom: 10px;
}

.footer__links-item a {
    color: var(--color-orange);
    text-decoration: underline;
    margin-bottom: 10px;
    font-size: 12px;
}

.footer .disclaimer {
    font-size: 12px;
}

.disclaimer.hidden {
    display: none;
}

.disclaimer-full {
    display: none;
    font-size: 12px;
}

.disclaimer-full.show {
    display: block;
}

.btn-show-disclaimer {
    background-color: transparent;
    border: none;
    outline: none;
    text-decoration: underline;
    padding: 0;
    color: var(--color-white);
    font-size: 12px;
}

/* Modals */

.modal {
    display: none;
    width: 600px;
    height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
}

.wrapper-modal {
    position: relative;
    padding: 28px 57px 28px 57px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.autocredit .wrapper-modal {
    align-items: flex-start;
}

.title-modal {
    color: #ff8743;
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
}

/* .sub-title-modal {
    padding: 0 0 10px;
} */

.text-modal {
    font-size: 12px;
    font-weight: 600;
    font-size: 21px;
    line-height: 1;
    text-align: center;
}

/* .form-modal {
    padding-top: 15px;
} */

.modal .label {
    color: #ffffffab;
}

.form-modal .input {
    width: 260px;
    height: 39px;
    margin-bottom: 6px;
}

.form-modal .btn.equip {
    width: 260px;
    height: 39px;
    margin-top: 4px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}

#question .title-modal {
    margin-top: 10px;
}

.form-modal .label {
    font-size: 10px;
    margin-top: 10px;
}

.modal.autocredit .wrapper-modal {
    margin-left: auto;
    padding: 37px 57px 37px 41px;
}

.modal.autocredit .title-modal {
    color: var(--color-white);
    font-weight: 700;
    font-size: 34px;
}

.modal.autocredit .title-modal b {
    color: var(--color-orange);
}

.modal.autocredit .list-modal {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.list-modal li {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    padding-left: 25px;
    display: flex;
    padding-bottom: 14px;
    align-items: center;
}

.list-modal li::before {
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_121_730)'%3e%3cpath d='M7.5 13.75C10.9518 13.75 13.75 10.9518 13.75 7.5C13.75 4.04822 10.9518 1.25 7.5 1.25C4.04822 1.25 1.25 4.04822 1.25 7.5C1.25 10.9518 4.04822 13.75 7.5 13.75Z' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M7.5 10L10 7.5L7.5 5' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M5 7.5H10' stroke='%23FF8743' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_121_730'%3e%3crect width='15' height='15' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
}

.modal.autocredit .form-modal {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.modal.autocredit .form-modal .input {
    width: 260px;
    height: 39px;
}

.modal.autocredit .form-modal .btn.equip {
    width: 260px;
    height: 39px;
    margin-top: 0;
    font-weight: 600;
    font-size: 12px;
}

.modal.autocredit .form-modal .label {
    gap: 10px;
}

.autocredit-bottom {
    display: flex;
    gap: 39px;
}

.modal.callback .sub-title-modal {
    padding: 0px 0 5px;
}

.modal.callback .form-modal {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal .custom-checkbox {
    width: 10px;
    height: 10px;
    background-color: #9c9c9c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.modal.question .sub-title-modal {
    font-weight: 600;
    font-size: 21px;
}

.modal.question .form-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal.callback {
    /* background-image: url("../img/modal/bg-callback-desc.webp"); */
    background-color: #4c5865de;
}

.modal.autocredit {
    /* background-image: url("../img/modal/bg-modal-credit-desc.webp"); */
    background-color: #4c5865de;
}

.modal.question {
    /* background-image: url("../img/modal/bg-question-desc.webp"); */
    background-color: #4c5865de;
}

.fancybox__content > .f-button.is-close-btn {
    top: 0;
    opacity: 1;
}

.fancybox__content {
    padding: 0;
}

.modal#popup-success,
.modal#popup-error {
    width: 386px;
    height: 238px;
    position: relative;
}

.modal#popup-success .wrapper-modal,
.modal#popup-error .wrapper-modal {
    color: #4c5865;
    max-width: 100%;
    padding: 0;
    padding-left: 18px;
    padding-top: 26px;
}

.modal#popup-success .title-modal,
.modal#popup-error .title-modal {
    font-size: 28px;
    text-align: center;
}

.sub-text-modal {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
}

.logo-modal-gray {
    margin-left: 20px;
    margin-top: 18px;
}

.logo-modal-white {
    position: absolute;
    bottom: 0;
    right: 0;
}

.modal#popup-success .fancybox__content > .f-button.is-close-btn,
.modal#popup-error .fancybox__content > .f-button.is-close-btn {
    --f-button-color: #2b303a;
}

@media (max-width: 768px) {
    .modal {
        width: 95%;
        height: 360px;
    }
    .wrapper-main-img-model {
        margin-bottom: -10px;
    }

    .form-modal .label {
        font-size: 8px;
        margin-top: 10px;
    }

    /* .modal.callback {
        background-image: url("../img/modal/bg-callback-mob.webp");
        background-size: cover;
    }

    .modal.autocredit {
        background-image: url("../img/modal/bg-modal-credit-mob.webp");
        background-size: cover;
    }

    .modal.question {
        background-image: url("../img/modal/bg-question-mob.webp");
        background-size: cover;
    } */

    .modal .wrapper-modal {
        padding: 25px;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding-bottom: 15px;
    }

    #question .wrapper-modal {
        padding: 25px;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-start;
        padding-bottom: 15px;
        gap: 15px;
    }

    #callback .wrapper-modal {
        padding: 25px;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-start;
        padding-bottom: 15px;
        gap: 10px;
    }

    .question .wrapper-modal {
        align-items: flex-start;
    }

    .modal.autocredit .wrapper-modal {
        padding: 15px 25px 25px 25px;
    }

    .modal.question .sub-title-modal {
        font-weight: 600;
        font-size: 18px;
        text-align: center;
    }

    .title-modal {
        font-weight: 700;
        font-size: 27px;
    }

    #callback .title-modal {
        text-align: center;
    }

    .text-modal {
        font-weight: 600;
        font-size: 14px;
        text-align: left;
    }

    #callback .text-modal {
        text-align: center;
        margin-top: 10px;
    }

    .text-modal br {
        display: none;
    }

    .text-modal br.br-mob-hide {
        display: none;
    }

    .text-modal br.br-desc-hide {
        display: block;
    }

    br.br-desc-hide {
        display: block;
    }

    /* .title-modal br {
        display: none;
    } */

    .sub-title-modal {
        font-size: 15px;
    }

    .form-modal .input {
        padding-left: 13px;
    }

    .form-modal {
        flex-direction: column;
    }

    .form-modal input[type="text"] {
        width: 100%;
        /* margin-right: 3px; */
    }

    .form-modal input[type="tel"] {
        width: 100%;
    }

    .form-modal .btn.equip {
        width: 100%;
        margin-top: 0;
    }

    .autocredit-bottom {
        gap: 18px;
        flex-direction: column-reverse;
    }

    .modal.question .wrapper-modal {
        margin: auto;
    }

    .modal.autocredit .title-modal {
        font-weight: 600;
        font-size: 22px;
        width: 290px;
    }

    .modal.autocredit .list-modal {
        padding-top: 15px;
    }

    .modal.modal.autocredit .list-modal li {
        padding-bottom: 3px;
        font-size: 14px;
    }

    .modal.autocredit .list-modal li:nth-child(2) br,
    .modal.autocredit .list-modal li:nth-child(4) br {
        display: none;
    }

    .modal.autocredit .form-modal {
        /* flex-direction: row;
        flex-wrap: wrap; */
        justify-content: space-between;
    }

    .modal.autocredit .form-modal input[type="text"] {
        /* margin-right: 7px; */
        width: 100%;
        height: 38px;
    }

    .modal.autocredit .form-modal input[type="tel"] {
        width: 100%;
        height: 38px;
    }

    .modal.autocredit .form-modal .btn.equip {
        width: 100%;
        height: 38px;
    }

    .is-compact .fancybox__content > .f-button.is-close-btn {
        --f-button-bg: lightgray;
    }

    .modal.question .title-modal {
        font-size: 27px;
        text-align: center;
        width: 100%;
    }
    /* 
    .modal.question .form-modal {
        padding-top: 10px;
    } */
}

/* Media */

@media (max-width: 1840px) {
    /* .trade-in {
        background-image: url("../img/bg-tradein-lada-laptop.png");
    } */
}

@media (max-width: 1640px) {
    .banner-swiper .swiper-nav {
        left: 20px;
    }
}

@media (max-width: 1470px) {
    .banner-swiper .swiper-nav {
        left: 100px;
        bottom: 110px;
    }
}

@media (max-width: 1250px) {
    .banner-swiper .swiper-nav {
        left: 20px;
        bottom: 105px;
    }
}

@media (max-width: 1150px) {
    /* .credit {
        background-image: url("../img/bg-credit-laptop.webp");
    } */

    .contacts {
        /* background-image: url('../img/bg-map-laptop.webp'); */
        height: 223px;
        padding-top: 25px;
    }

    .legal .text {
        max-width: 570px;
    }

    .left-item-equip {
        width: 338px;
    }

    .center-item-equip {
        flex-grow: 0;
    }
}

@media (max-width: 1050px) {
    /* Equipments */
    .left-item-equip {
        width: 338px;
    }

    .title-item-equip {
        font-size: 23px;
    }

    .wrapper-character-car {
        max-width: 380px;
        font-size: 12px;
    }
}

@media (max-width: 1050px) {
    .container {
        max-width: calc(100% - 60px);
    }

    .header-nav-desc-list {
        gap: 30px;
    }

    .wrapper-tel-n-callback {
        flex-direction: column;
        gap: 0;
    }

    .absolute-text-credit {
        top: auto;
        bottom: 130px;
        padding: 11px 25px;
    }

    .timer {
        gap: 15px;
    }

    /* Models */
    .models .container {
        max-width: 100%;
    }

    .wrapper-model-row {
        padding-left: 10px;
        padding-right: 10px;
    }

    .background-text {
        font-size: 96px;
    }

    .left-item-model {
        justify-content: unset;
    }

    .center-item-model {
        max-width: 210px;
    }

    .center-item-model .btn {
        width: 100%;
    }

    .old-price {
        font-size: 17px;
    }

    .new-price,
    .credit-price {
        font-size: 15px;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .new-price b {
        margin-left: 5px;
        font-size: 27px;
    }

    .credit-price span {
        margin-left: 5px;
    }

    .wrapper-color-n-text,
    .main-img-model {
        bottom: auto;
        right: auto;
    }

    .main-img-model {
        max-width: 300px;
    }
}

.title-banner br {
    display: none;
}

.banner-swiper .second .mob-br {
    display: none;
}

.banner-swiper .second .desk-br {
    display: block;
}

@media (max-width: 768px) {
    .container {
        max-width: calc(100% - 40px);
    }

    .container.cont-mob {
        max-width: 100%;
    }

    .section-title {
        font-size: 26px;
    }

    /* Header */

    .header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        border-image: linear-gradient(
            to right,
            transparent -10%,
            rgba(255, 255, 255, 0.5) 50%
        );
        border-image-slice: 1;
    }

    .header.scrolled .side-menu {
        border-top: 1px solid var(--color-gray);
        border-image: linear-gradient(
            to right,
            transparent -10%,
            var(--color-gray) 190%
        );
        border-image-slice: 1;
    }

    .header::after {
        display: none;
    }

    .burger-open {
        display: block;
    }

    .wrapper-logo-address div {
        display: none;
    }

    .header-nav-desc {
        display: none;
    }

    .wrapper-tel-n-callback .btn {
        display: none;
    }

    /* Main */

    /* Banner */

    .banner {
        border-bottom: 3px solid var(--color-orange);
        height: 818px;
    }

    .banner .container {
        padding-top: 60px;
    }

    .wrapper-content {
        border: none;
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .wrapper-content::after {
        content: "";
        width: 100%;
        height: 1px;
        background-color: var(--color-orange);
        position: absolute;
        left: 0;
        bottom: 240px;
    }

    .banner-swiper .second .mob-br {
        display: block;
    }

    .banner-swiper .second .desk-br {
        display: none;
    }

    .title-banner {
        font-size: 25px;
        line-height: 1.25;
        margin-top: 15px;
    }

    .title-banner br {
        display: block;
    }

    .banner-swiper .second .title-banner {
        font-size: 24px;
    }

    .banner-swiper .second .wrapper-content .list-banner {
        padding-bottom: 20px;
        row-gap: 20px;
    }

    .banner-swiper .swiper-nav {
        display: none;
    }

    .wrapper-content p {
        font-size: 20px;
        font-weight: 600;
        margin-top: 5px;
    }

    .list-banner li {
        gap: 10px;
    }

    .absolute-text-credit {
        bottom: 409px;
        /* width: 190px; */
        font-size: 12px;
        /* padding: 7px 25px; */
        border-radius: 45px 0 0 45px;
        right: 0;
        backdrop-filter: none;
        width: 150px;
        padding: 0;
        padding-top: 7px;
        padding-bottom: 7px;
        padding-left: 25px;
    }

    .wrapper-content .list-banner {
        font-size: 18px;
    }

    .list-banner li {
        padding-bottom: 15px;
        font-size: 15px;
    }

    .wrapper-timer {
        flex-direction: column;
        gap: 20px;
    }

    .timer {
        gap: 25px;
    }

    .time-count__val {
        font-size: 30px;
    }

    .time-count__text {
        font-size: 12px;
    }

    .pie {
        width: 63px;
        height: 63px;
        bottom: -11px;
        left: -2px;
    }

    .time-count__item {
        width: 60px;
    }

    .chart,
    .background {
        stroke-width: 8px;
    }

    .wrapper-timer .btn {
        width: 100%;
    }

    /* Models */

    .models .container {
        max-width: 100%;
    }

    .wrapper-model-row {
        font-size: 12px;
        justify-content: center;
        align-items: flex-start;
    }

    .item-model {
        flex-direction: column;
        /* height: 610px; */
        padding: 0 20px;
        align-items: center;
        justify-content: unset;
        background: linear-gradient(
            91.01deg,
            rgba(76, 88, 101, 0.05) 5.511%,
            rgba(76, 88, 101, 0) 47.589%
        );

        height: auto;
    }

    .wrapper-main-img-model {
        height: auto;
        width: 100%;
    }

    .background-text {
        /* font-size: 84px; */
        /* font-size: 50px; */
        font-size: 74px;
        line-height: 1;
        /* left: 0; */
        /* top: auto; */
        top: 40px;
    }

    .title-item-model {
        font-size: 28px;
        line-height: 1;
        position: revert;
        white-space: normal;
        text-align: center;
    }

    .text-doors-model {
        font-size: 15px;
    }

    .left-item-model {
        padding: 15px 0 0;
        height: auto;
        max-width: 320px;
    }

    .left-item-model > div {
        padding-bottom: 10px;
    }

    .right-item-equip .wrapper-button-model .btn {
        font-size: 14px;
    }

    .list-model {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 10px;
    }

    .list-model li:nth-child(1) {
        order: -3;
    }
    .list-model li:nth-child(2) {
        order: -2;
    }
    .list-model li:nth-child(3) {
        order: -1;
    }

    .list-model li {
        font-size: 12px;
        /* width: 50%; */
        padding-left: 25px;
    }

    .list-model li::before {
        width: 20px;
        height: 20px;
        /* top: 2px; */
    }

    .center-item-model {
        order: 1;
        right: auto;
        max-width: 100%;
        padding: 0;
        /* position: relative; */
        position: revert;
        /* bottom: 15px; */
        width: 100%;
        margin-right: 0;
        padding-top: 27px;
        padding-bottom: 15px;
    }

    .new-price,
    .credit-price {
        justify-content: space-between;
        font-size: 19px;
        font-weight: 600;
    }

    .center-item-model .new-price b {
        font-size: 33px;
        font-weight: 700;
    }

    .center-item-model .credit-price b {
        font-weight: 700;
    }

    .center-item-model .btn {
        width: 100%;
    }

    .right-item-model {
        width: 100%;
        padding-top: 10px;
        display: flex;
        flex-direction: column-reverse;
        gap: 25px;
    }

    .main-img-model,
    .wrapper-color-n-text {
        bottom: auto;
        right: auto;
    }

    .main-img-model {
        max-width: 320px;
    }
    .main-img-model.active {
        position: revert;
    }

    .absolute-text-model {
        top: 30px;
        text-align: right;

        /* right: 20px; */
    }

    .wrapper-color span {
        width: 23px;
        height: 23px;
    }

    .name-color {
        /* left: 20px; */
        left: 0;
    }

    .colors-swiper {
        /* max-width: 155px; */
        max-width: 100%;
        /* margin-left: 20px; */
        /* margin-left: 0; */
        margin: auto;
    }

    .colors-swiper .swiper-wrapper .swiper-slide {
        width: 24px !important;
    }

    /* Equipments */

    .equipments {
        margin-bottom: 30px;
    }

    .equipments .container {
        max-width: 100%;
    }

    .form-filter-equip {
        flex-direction: column;
        gap: 11px;
        padding: 25px 20px 36px;
    }

    .form-filter-equip select {
        width: 100%;
    }

    .item-equip {
        flex-direction: column;
        padding: 0;
        gap: 0;
        align-items: center;
        height: auto;
    }

    .left-item-equip {
        width: 100%;
    }

    .main-img-equip {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .center-item-equip {
        padding: 10px 20px 0;
    }

    .title-item-equip {
        font-size: 20px;
        text-align: center;
    }

    .old-price {
        font-size: 14px;
        display: none;
    }

    .new-price,
    .credit-price {
        font-size: 20px;
    }

    .text-item-equip {
        font-size: 15px;
        text-align: center;
    }

    /* .wrapper-character-car.desc {
        display: none;
    }

    .wrapper-character-car.mob {
        display: flex;
    } */

    .right-item-equip {
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }

    .right-item-equip .wrapper-price-model {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .right-item-equip .new-price {
        /* max-width: 256px;
        margin-left: auto; */
        text-align: right;
        /* width: 260px; */
        width: auto;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .credit-price-credit,
    .btn-offer {
        display: none;
    }

    .btn-price {
        display: block;
    }

    .right-item-equip .credit-price {
        /* display: block; */
        text-align: right;
        /* width: 280px; */
        /* width: 260px; */
        width: auto;
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }

    .right-item-equip .wrapper-price-model span {
        margin-left: 0;
        font-size: 14px;
    }

    .right-item-equip .wrapper-price-model .credit-price span {
        margin-left: 5px;
    }

    .right-item-equip .new-price b {
        font-size: 24px;
    }

    /* .right-item-equip .new-price b {
        width: 175px;
        text-align: right;
        margin-left: auto;
    } */

    .right-item-equip .wrapper-button-model {
        justify-content: center;
        align-items: center;
        padding: 15px 0;
    }

    .right-item-equip .wrapper-button-model .btn {
        /* width: 150px; */
        /* height: 37px; */
        height: 43px;
        margin: 0;
        font-weight: 400;
        line-height: 1;
    }

    .desk__hide {
        display: block;
    }

    /* .right-item-equip .wrapper-button-model button:first-of-type {
        margin: 0;
    } */

    /* .btn-show-more {
        display: none;
    } */

    .left-item-equip p {
        font-size: 12px;
    }

    /* Credit */

    .credit {
        background-image: url("../img/bg-credit-mob2.webp");
        height: 440px;
        /* height: auto; */
        margin-bottom: 0;
        border-bottom: 3px solid var(--color-orange);
        background-position: 50% 30%;
    }

    .credit ul {
        margin-bottom: -45px;
    }

    .wrapper-credit {
        max-width: 100%;
    }

    .btn.form.block {
        width: 100%;
    }

    form.form .input {
        display: none;
    }

    .label-form {
        display: none;
    }

    .title-credit {
        font-size: 23px;
        line-height: 1;
        padding-bottom: 155px;
    }

    .text-credit {
        font-size: 14px;
        padding: 0 0 15px;
    }

    .list-credit li {
        font-size: 13px;
        padding-bottom: 6px;
    }

    /* form.form {
        padding-top: 14px;
    } */

    .credit form.form {
        display: none;
    }

    .credit .btn.desc-hide {
        display: block;
        margin-top: 15px;
        max-width: 100%;
    }

    .btn-show-model.desc-hide {
        display: block;
    }

    /* Trade-in */

    .trade-in {
        /* height: 355px; */
        height: auto;
        background-image: url("../img/bg-tradein-mob2.webp");
        margin-bottom: 0;
        background-position: 50% 50%;
    }

    .wrapper-tradein {
        width: 100%;
    }

    .title-tradein {
        padding-bottom: 135px;
    }

    .title-tradein span {
        font-size: 23px;
    }

    .text-tradein {
        font-size: 15px;
    }

    /* .trade-in form.form {
        padding-top: 10px;
    } */

    .trade-in form.form {
        display: none;
    }

    .trade-in .btn.desc-hide {
        display: block;
        margin-top: 10px;
        max-width: 100%;
    }

    /* Contacts */

    .contacts {
        background-image: none;
        margin-top: 0;
        /* height: 421px; */
        border-bottom: 2px solid #fff;

        /* height: 419px; */
        height: auto;
    }

    .img-map-mob {
        display: block;
        width: 100%;
    }

    .contacts .container {
        max-width: 100%;
        height: 414px;
    }

    .contacts__map {
        height: 414px;
    }

    .wrapper-contacts {
        width: 100%;
        border-radius: 0;
        padding: 9px 19px 0;
        top: unset;
        bottom: 0;
    }

    .title-contacts {
        font-size: 19px;
    }

    .logo-desc-map {
        display: none;
    }

    .logo-mob-map {
        display: block;
    }

    .footer .legal {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .footer .legal svg {
        display: none;
    }
}

@media (min-width: 399px) and (max-width: 768px) {
    .img-map-mob {
        height: 240px;
    }
}

.showmore-hide,
.filtered-hide {
    display: none;
}

.js--show-more.hidden {
    display: none;
}
.spec-yakor {
    width: 1px;
    height: 1px;
    position: absolute;
    top: -81px;
    left: 0;
}

#popup-success .wrapper-modal,
#popup-error .wrapper-modal {
    justify-content: unset;
}

.fancybox__content > .f-button.is-close-btn {
    color: white;
}

.f-button svg {
    height: 15px;
    width: 15px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    background-color: transparent;
}

#popup-success .f-button svg,
#popup-error .f-button svg {
    color: black;
}
