@charset "UTF-8";

.booking {
    max-width: 1076px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    margin: 80px auto 120px;
}

.hidden {
    display: none !important;
}

.pagination-show-more {
    display: flex;
    margin: 40px auto 0;
    border-radius: 10px;
    border: 1px solid #000000;
    transition: border-color .3s ease;
}

.pagination-show-more:hover {
    border-color: var(--blue);
}
/*
@media screen and (min-width:768px) {
    .hero__info ul li:last-child {
        max-width: 350px;
    }

    .hero__info ul li:first-child span {
        max-width: 200px;
        width: 100%;
    }

    .hero__info ul li span {
        text-align: center;
    }
} */

.pagination-show-more:hover span {
    color: var(--blue);
}

.booking .title {
    font-family: var(--font-bold);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 800px) {
    .booking .title {
        font-size: 24px;
        line-height: 26.8px;
    }
}

.booking .swiperBooking {
    max-width: 100%;
    width: 100%;
}

@media screen and (min-width: 900px) {
    .booking .swiperBooking .swiper-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
    }
}

.booking .swiperBooking .swiper-wrapper .swiper-slide {
    max-width: 196px;
}

.booking .swiperBooking .swiper-wrapper .swiper-slide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.booking .swiperBooking .swiper-wrapper .swiper-slide-container .car-title {
    font-family: var(--bold-family);
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    justify-content: flex-start;
}

.booking .swiperBooking .swiper-wrapper .swiper-slide-container .car-title span {
    font-family: var(--font-bold);
    font-size: 10px;
    font-weight: 700;
    line-height: 11px;
    text-align: center;
    background-color: var(--blue);
    border-radius: 4px;
    padding: 1px 2px;
    color: var(--white);
}

.cars {
    max-width: 1296px;
    width: 100%;
    margin: auto;
}

.car__item {
    display: flex;
    gap: 24px;
    margin-top: 100px;
}

@media screen and (max-width: 1300px) {
    .car__item {
        flex-direction: column;
        max-width: 600px;
    }
}

.car__item:nth-child(even) {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1300px) {
    .car__item:nth-child(even) {
        flex-direction: column;
        max-width: 600px;
    }
}

.car__item-slider {
    max-width: 750px;
    width: 100%;
    position: relative;
}

.car__item-slider .car-text {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    border-radius: 10px;
    background-color: var(--blue-dark);
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 4px 14px 8px;
    z-index: 2;
}

.car__item-slider .car-text span {
    font-family: var(--font-bold);

    font-weight: 700;

    text-transform: uppercase;
    color: var(--white);
}

.car__item-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 530px;
}

@media screen and (min-width: 601px) {
    .car__item-slider .car-text span {
        font-size: 20px;
        line-height: 22px;
        max-width: 200px;
    }
}

@media screen and (max-width: 600px) {
    .car__item-info {
        min-width: unset;
    }

    .car__item-slider .car-text span {
        font-size: 12px;
        line-height: 13.2px;
        max-width: 120px;
    }

    .car__item-slider .car-text img {
        width: 26px;
        height: 26px;
    }
}

.car__item-info-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: -moz-fit-content;
    width: fit-content;
}

.car__item-info-top .car-title {
    font-family: var(--font-bold);
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.car__item-info-top .car-title span {
    font-family: var(--font-bold);
    font-size: 16px;
    font-weight: 700;
    line-height: 17.6px;
    text-align: center;
    padding: 4px 6px;
    background-color: #002D96;
    color: #fff;
    border-radius: 8px;

}

.car__item-info-top .car-offprice {
    background-color: var(--blue-dark);
    border-radius: 10px;
    padding: 5px 10px 9px;
    color: var(--white);
    height: -moz-fit-content;
    height: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.car__item-info-top .car-offprice span.to {
    font-family: var(--font-semibold);
    font-size: 18px;
    font-weight: 600;
    line-height: 19.8px;
    text-transform: uppercase;
    margin-top: 5px;
}

.car__item-info-top .car-offprice span.count {
    font-family: var(--font-bold);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
}

@media screen and (max-width: 768px) {
    .car__item-info-top .car-offprice span.count {
        font-size: 28px;
        white-space: nowrap;
    }
}

.car__item-info-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.car__item-info-benefits li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.car__item-info-benefits li span {
    max-width: 167px;
    width: 100%;
    font-family: var(--font-regular);
    font-size: 15px;
    font-weight: 500;
    line-height: 16.5px;
}

.car__item-info-timer {
    display: flex;
    padding: 10px 14px;
    background-color: #637588;
    border-radius: 10px;
}

@media screen and (max-width: 1300px) and (min-width: 600px) {
    .car__item-info-timer {
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .car__item-info-timer {
        flex-direction: column;
        align-items: center;
    }

    .car__item-info-timer .title {
        margin-bottom: 14px;
    }
}

.car__item-info-timer .title {
    color: var(--white);
    font-family: var(--font-bold);
    font-size: 18px;
    line-height: 19.8px;
    text-transform: uppercase;
    max-width: 220px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.car__item-info-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .car__item-info-btns {
        grid-template-columns: 1fr;
    }
}

.car__item-info-btns .btn:first-child {
    grid-column: 1/3;
}

@media screen and (max-width: 600px) {
    .car__item-info-btns .btn:first-child {
        grid-column: unset;
    }
}

.car__item-info-btns .btn {
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
}

.car__item .discount__time-container-deadline {
    gap: 3px;
    width: 100%;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .car__item .discount__time-container-deadline {
        justify-content: center;
        gap: 10px;
    }
}

@media screen and (min-width: 551px) {
    .car__item .discount__time-container-deadline .offer__timeline {
        width: 56px;
        height: 56px;
    }
}

.car__item .discount__time-container-deadline .offer__timeline-line {
    position: absolute;
    border-radius: 50%;
    overflow: unset;
    border: 2px solid #FFFFFF33;
}

@media screen and (min-width: 551px) {
    .car__item .discount__time-container-deadline .offer__timeline-line {
        width: 56px;
        height: 56px;
    }
}

.car__item .discount__time-container-deadline .offer__timeline-circle {
    fill: none;
    stroke-width: 3px;
    stroke: var(--white);
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
    transition: all 0.6s ease;
}

.car__item .discount__time-container-deadline .separator {
    font-family: var(--font-regular);
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 410px) {
    .car__item .discount__time-container-deadline .separator {
        display: block;
    }
}

@media screen and (max-width: 350px) {
    .car__item .discount__time-container-deadline .separator {
        display: none;
    }
}

@media screen and (min-width: 551px) {
    .car__item .discount__time-container-deadline .time {
        width: 56px;
        height: 56px;
    }
}

@media screen and (min-width: 551px) {
    .car__item .discount__time-container-deadline .time .count {
        font-size: 20px;
        line-height: 27px;
    }
}

@media screen and (max-width: 550px) {
    .car__item .discount__time-container-deadline .time .count {
        font-size: 20px;
        line-height: 24px;
        padding-top: 11px;
    }

    .car__item .discount__time-container-deadline .time .time-of {
        font-size: 8px;
        line-height: 8.8px;
    }

    .car__item .discount__time-container-deadline .time {
        width: 56px;
        height: 56px;
    }

    .car__item .discount__time-container-deadline .offer__timeline {
        width: 56px;
        height: 56px;
    }

    .car__item .discount__time-container-deadline .offer__timeline-line {
        width: 56px;
        height: 56px;
    }


}

.car__item .discount__time-container-deadline .time .time-of {
    text-transform: uppercase;
}

@media screen and (min-width: 551px) {
    .car__item .discount__time-container-deadline .time .time-of {
        font-size: 8px;
        line-height: 8.8px;
    }
}

.swiperCars .swiper-wrapper .swiper-slide {
    position: relative;
}

.swiperCars .swiper-wrapper .swiper-slide .car-model-slide {
    position: absolute;
    top: 100px;
    left: 200px;
}

.swiperCars .swiper-wrapper .swiper-slide img.color-image {
    width: 100%;
    border-radius: var(--border-radius);
}

.swiperThumb {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    background-color: var(--gray-light);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}

.swiperThumb .swiper-wrapper .swiper-slide {
    width: auto;
    cursor: pointer;
    transition: scale .3s ease;
}

.swiperThumb .swiper-wrapper .swiper-slide .swiper-colors,
.swiperThumb .swiper-wrapper .swiper-slide img {
    transition: scale .3s ease;
}

.swiperThumb .swiper-wrapper .swiper-slide:hover .swiper-colors,
.swiperThumb .swiper-wrapper .swiper-slide:hover img {
    scale: 1.2;
}

.swiperThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active:not(:has(img[data-image=first-image])) {
    position: relative;
}

.swiperThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active:not(:has(img[data-image=first-image]))::after {
    position: absolute;
    content: "";
    width: 38px;
    height: 38px;
    top: -4px;
    left: -4px;
    border: 1px solid var(--blue);
    border-radius: 50%;
}

.swiperThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active:has(img[data-image=first-image]) {
    position: relative;
}

.swiperThumb .swiper-wrapper .swiper-slide.swiper-slide-thumb-active:has(img[data-image=first-image])::after {
    position: absolute;
    content: "";
    width: 38px;
    height: 38px;
    top: -4px;
    right: -4px;
    border: 1px solid var(--blue);
    border-radius: 50%;
}

.swiperThumb .swiper-wrapper .swiper-slide:has(img[data-image=first-image]) {
    padding-left: 20px;
    position: relative;
}

.swiperThumb .swiper-wrapper .swiper-slide:has(img[data-image=first-image])::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 2px;
    background-color: #AEBBCD;
    border-radius: 0px;
    top: 0px;
    left: 3px;
    transform: translateX(0%);
    right: unset;
}

.swiper-colors {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.swiper-colors.color-purpure {
    background-color: #7D33FF;
}

.swiper-colors.color-blue-light-em {
    background-color: #50AECE;
}

.swiper-colors.color-blue-light {
    background-color: #7D33FF;
}

.swiper-colors.color-light-brown {
    background-color: #AC9579;
}

.swiper-colors.color-metalic {
    background-color: #4A596B;
}

.swiper-colors.color-white {
    background-color: #FFFFFF;
}

.swiper-colors.color-brown {
    background-color: #696969;
}

.swiper-colors.color-gray {
    background-color: #BDC9D5;
}

.swiper-colors.color-purpure {
    background-color: #888AAC;
}

.swiper-colors.color-black {
    background-color: #000000;
}

.swiper-colors.color-gray-dark {
    background-color: #5A5C5F;
}

.swiper-colors.color-blue-dark {
    background-color: #91A6B1;
}

.swiper-colors.color-green-dark-2 {
    background-color: #1A3C24;
}

.swiper-colors.color-green-dark {
    background-color: #718275;
}

.swiper-colors.color-blue-saturated {
    background-color: #49B6D0;
}

.swiper-colors.color-red {
    background-color: #FF0000;
}

.swiper-colors.color-purpure-light {
    background-color: #87A6D4;
}

.swiper-colors.color-purpure-2 {
    background-color: #4C5698;
}

.swiper-colors.color-black-light {
    background-color: #646971;
}

.swiper-colors.color-gray-black {
    background-color: #808080;
}

.swiper-colors.color-gray-black-2 {
    background-color: #5E6775;
}

.swiper-colors.color-gray-3 {
    background-color: #828793;
}

.swiper-colors.color-gray-light-2 {
    background-color: #C0C0C0;
}

.swiper-colors.color-gray-light-3 {
    background-color: #D3D3D5;
}

.swiper-colors.color-blue-2 {
    background-color: #0000FF;
}

.swiper-colors.color-green-saturated {
    background-color: #00838F;
}



.in-stock {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    background-color: #F4F4F4;
    margin-top: 120px;
}

.in-stock-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.in-stock-container .title {
    font-family: var(--font-bold);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
}

.in-stock-filters {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto 24px;
}


@media screen and (max-width: 1200px) {
    .in-stock-filters {
        flex-direction: column;
        max-width: 416px;
    }

    .in-stock-filters .form__input-dropdown {
        max-width: 416px !important;
    }

}

@media screen and (max-width: 1200px) {
    .in-stock-filters .btn {
        width: 100%;
        justify-content: center;
        max-width: 416px;
    }
}

@media screen and (max-width: 600px) {
    .in-stock-container .title {
        text-transform: uppercase;
        max-width: 300px;
        margin: auto;
    }
}

.in-stock-moodels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

@media screen and (max-width: 1200px) {
    .in-stock-moodels {
        justify-content: center;
    }
}

.in-stock-moodels-item {
    display: flex;
    flex-direction: column;
    max-width: 416px;
    width: 100%;
    gap: 14px;
    background-color: var(--white);
    border-radius: 10px;
    justify-content: space-between;
    padding: 20px;
}

.in-stock-moodels-item-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.in-stock-moodels-item img {
    max-height: 280px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.in-stock-moodels-item-text .car-name {
    font-family: var(--font-bold);
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
}

.in-stock-moodels-item-text .car-characteristic {
    font-family: var(--font-regular);
    font-size: 18px;
    font-weight: 400;
    line-height: 19.8px;
}

.in-stock-moodels-item-btns {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.in-stock-moodels-item-btns .btn {
    justify-content: center;
}

.form__input-dropdown {
    width: 100%;
    position: relative;
    cursor: pointer;
    max-width: 306px;
}

.form__input-single {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.form__input-single input {
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.2;
    color: #88979e;
    padding: 15px 15px 15px 20px;
    border-radius: 12px;
    cursor: pointer;
}

.form__input-dropdown input {
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    font-family: var(--font-regular);
    font-size: 16px;
    line-height: 21.79px;
    color: var(--black);
    padding: 15px 15px 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    background-color: var(--white);
}



.form__input-dropdown input::-moz-placeholder {
    color: var(--black);
}

.form__input-dropdown input::placeholder {
    color: var(--black);
}

.form__input-dropdown::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

#form__input-date::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 24px;
    background-image: url(../img_service/calendar.png);
    background-repeat: no-repeat;
}

.form__input-dropdown-items {
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    max-height: 150px;
    background: var(--white);
    margin: 0;
    list-style-type: none;
    padding: 15px 15px 15px 20px;
    border-radius: 12px;
    overflow-y: scroll;
    z-index: 4;
}

.none {
    display: none !important;
}

.form__input-dropdown-items li:not(:first-child) {
    padding-top: 15px;
}

.form__input-dropdown-items::-webkit-scrollbar {
    width: 20px;
    height: 0;
    /* background-color: #F5F5F5; */
}

.form__input-dropdown-items::-webkit-scrollbar-thumb {
    height: 1em;
    border: 0.5em solid rgba(0, 0, 0, 0);
    /* Transparent border together with `background-clip: padding-box` does the trick */
    background-clip: padding-box;
    -webkit-border-radius: 1em;
    background-color: var(--blue);
    -webkit-box-shadow: inset 0 0 0 1px rgba(213, 20, 20, 0.025);
}

.form__input-dropdown-items::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.form__input-dropdown-items::-webkit-scrollbar-corner {
    background-color: transparent;
}

.form__input-dropdown-items li {
    font-family: var(--font-regular);
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.form__item-input-checkbox {
    display: flex;
    gap: 10px;
    align-items: start;
}

.form__item-input-checkbox [for=agreements-checkbox] {
    max-width: 100%;
    font-family: var(--font-family);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
}

.traid-in {
    margin: auto;
    max-width: 1920px;
    position: relative;
    height: 600px;
}

@media screen and (max-width: 1200px) {
    .traid-in {
        height: auto;
    }
}

.traid-in-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-bottom: 40px;
    padding-top: 80px;
}

@media screen and (max-width: 1200px) {
    .traid-in-container {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .traid-in-container .form,
    .credit .credit__content .form-credit,
    .credit .credit__content .form-credit fieldset {
        max-width: 550px;
        width: 100%;
    }


    .traid-in-container .form .form-input,
    .credit .credit__content .form-credit .form-input {
        width: 100%;
    }

    .traid-in-container .form .btn,
    .credit .credit__content .form-credit .btn {
        width: 100%;
    }



}

.traid-in-container .title {
    font-family: var(--font-bold);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

@media screen and (max-width: 1200px) {
    .traid-in-container .title {
        color: var(--black);
    }
}

@media screen and (max-width: 768px) {
    .traid-in-container .title {
        font-size: 24px;
        line-height: 26.4px;
    }
}

.traid-in-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .traid-in-background {
        position: relative;
    }
}

.traid-in-background img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.form {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-credit {
    background-color: transparent;
    width: -moz-fit-content;
    width: fit-content;
}

.form-credit input {
    background-color: var(--white);
}

.form fieldset {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1200px) {
    .form fieldset {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.form fieldset.end {
    justify-content: flex-end;
    margin-top: 10px;
}

.form fieldset.end label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.form fieldset.end label span {
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: 13.2px;
    color: var(--black);
}

.form-input {
    width: 243px;
    padding: 14px 20px;
    color: #637588;
    font-family: var(--font-semibold);
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
    border-radius: 10px;
    border: 1px solid var(--black);
}

.credit {
    margin: 100px auto;
    border-radius: 10px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .credit {
        height: auto;
        margin: 0 auto;
    }
}

.credit__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.credit__background img {
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .credit__background {
        position: relative;
    }
}

.credit__content {
    padding: 82px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .credit__content {
        align-items: center;
    }
}

.credit__content .title {
    color: var(--white);
    font-family: var(--font-bold);
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    max-width: 400px;
}

@media screen and (max-width: 1200px) {
    .credit__content .title {
        color: var(--black);
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .credit__content .title {
        font-size: 24px;
        text-align: left;
        line-height: 26.4px;
    }
}

.credit__content .subtitle {
    color: var(--white);
    font-family: var(--font-regular);
    font-size: 18px;
    font-weight: 400;
    line-height: 19.8px;
    margin-top: 14px;
}

@media screen and (max-width: 1200px) {
    .credit__content .subtitle {
        color: var(--black);
        margin-bottom: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .credit__content .subtitle {
        font-size: 16px;
        text-align: left;
        line-height: 17.6px;
    }
}

.credit .end {
    margin-top: 10px;
}

.credit .end label span {
    color: var(--white);
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: 13.2px;
}

@media screen and (max-width: 1200px) {
    .credit .end label span {
        color: var(--black);
        margin: auto;
    }

    .credit .end {
        align-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .form-credit .white-white {
        background-color: var(--blue);
        justify-content: center;
    }

    .form-credit .white-white span {
        color: var(--white);
    }
}

@media screen and (max-width: 1200px) {
    .form-credit fieldset {
        display: flex;
        flex-direction: column;
        max-width: 243px;
        gap: 10px;
    }
}

[class*=ymaps-2][class*=-ground-pane] {
    filter: hue-rotate(250deg) brightness(90%) invert(1);
}

#map>ymaps {
    overflow: hidden;
}

.map .btn {
    width: -moz-fit-content;
    width: fit-content;
}

@media screen and (max-width: 1200px) {
    .map__item {
        height: 400px;
    }
}

.map__inner {
    position: relative;
    max-width: 1920px;
    margin: auto;
}

@media screen and (min-width: 1200px) {
    .map__inner {
        height: 580px;
    }
}

@media screen and (max-width: 1200px) {
    .map__inner {
        height: 400px;
    }
}

.map-text {
    position: relative;

}

.map__bottom {
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    bottom: 28px;
    z-index: 3;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1296px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 480px) {
    .map__bottom .btn {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .map__bottom {
        position: relative;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        bottom: 0;
        border-radius: 0;
    }
}

.map__bottom-item {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
    text-align: start;
}

@media screen and (max-width: 1200px) {
    .map__bottom-item {
        text-align: start;
        max-width: 320px;
        width: 100%;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .map__bottom-item {
        width: 100%;
        text-align: left;
    }
}

.map__bottom-item:first-child {
    max-width: 325px;
}

.map__bottom-title {
    font-family: var(--font-bold);
    font-size: 24px;
    line-height: 26.2px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
}

.map__bottom-subtitle {
    color: #303C48;
    font-family: var(--font-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
}

.map__bottom-text,
.map__number.ya_phone {
    font-family: var(--font-semibold);
    font-size: 22px;
    font-weight: 600;
    line-height: 30.8px;
    color: var(--black);
}

.map__bottom-text-small {
    color: #303C48;
    font-family: var(--font-regular);
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
}

.map__number {
    color: var(--black);
}

.map__number-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 0 4px;
    align-items: center;
    margin-top: 4px;
    font-weight: 300;
    color: var(--grey);
    font-size: 14px;
    position: relative;
}

.map__number-bottom::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.7);
    /* Black w/ opacity */
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-info .title {
    color: var(--black);
    font-family: var(--font-bold);
    font-size: 28px;
    line-height: 30.8px;
    text-align: center;
    text-transform: uppercase;
}

.modal-info .subtitle {
    font-family: var(--font-regular);
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}

.modal .form-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    padding-left: 40px;
    padding-right: 40px;
}

.modal .form-modal fieldset:first-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.modal .form-modal fieldset:first-child input,
.modal .form-modal fieldset:first-child button.btn {
    width: 100%;
}

.modal .form-modal fieldset:first-child button.btn {
    justify-content: center;
}

.modal .form-modal fieldset label label {
    display: flex;
    gap: 5px;
    align-items: center;
}

.modal .form-modal fieldset label span {
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: 13.2px;
    padding-top: 2px;
}

/* Modal Content */
.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: none;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

@media screen and (max-width: 480px) {
    .modal-content {
        width: 94%;
        transform: translateY(-50%);
        height: -moz-fit-content;
        height: fit-content;
        margin: 0 auto;
        position: absolute;
        left: 15px;
        top: 50%;
    }
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    align-self: end;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.footer {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    background-color: var(--black);
    padding: 20px 0;
}

@media screen and (max-width: 1200px) and (min-width: 411px) {
    .footer {
        padding: 15px;
    }
}

@media screen and (max-width: 410px) {
    .footer {
        padding: 20px 15px;
    }
}

.footer-container {
    position: relative;
    max-width: 1296px;
    width: 100%;
    display: flex;
    height: auto;
    margin: auto;
}

.footer-disclaymer__link {
    margin-top: 20px;
    color: var(--white);
    text-decoration: underline !important;
    display: block;
}

.read-more-check {
    display: none;
}

.read-more-label:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    top: 5px;
    position: absolute;
    width: 14px;
    height: 8px;
    right: 0px;
    font-size: 1rem;
    transform: rotate(0deg) translate(0%, 30%) scale(0.8);
    transition: top 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.read-more-check:checked~.read-more-label:before {
    top: 0;
    transform: rotate(180deg) translate(0, -60%) scale(0.8);
}

.read-more-label:after {
    content: "Условия";
    text-transform: none;
    font-family: var(--font-regular);
}

.read-more-check:checked~.read-more-label:after {
    content: "Условия";
}

.read-more p {
    margin-top: 20px;
    color: var(--white);
    font-family: var(--font-regular);
}

.read-more-label {
    position: absolute;
    display: inline-flex;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    top: 0px;
    padding-right: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s linear;
}


.link-to {
    font-family: var(--font-regular);
    position: absolute;
    top: -1px;
    right: 0;
    color: #fff;
    cursor: pointer;
    transition: color .3s ease;
}

.link-to:hover {
    color: var(--white);
}

.read-more-label:hover {
    background-color: var(--primary-color-hover);
}

/*
  The styles above aren't related with the functionality
*/
.read-more {
    margin-top: 20px;
    max-height: 0;
    display: block;
    overflow: hidden;
    transition: max-height 0.5s linear;
}

/*
The down side of this approach is that you have to know what will be the max-height in advance
*/
@media screen and (min-width: 1200px) {
    .read-more-check:checked~.read-more {
        max-height: 1000px;
    }
}

@media screen and (max-width: 1200px) {
    .read-more-check:checked~.read-more {
        max-height: 5000px;
    }
}


.in-stock-container.content-part p:not(.title) {
    font-family: var(--font-regular);
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: var(--black);
}

.in-stock-container.content-part p.title {
    margin: 0;
}

@media screen and (max-width: 600px) {
    .in-stock-container.content-part p.title {
        font-size: 24px;
        font-weight: 700;
        line-height: 26.4px;
        max-width: 100%;
    }
}

.in-stock-container.content-part p:nth-child(2) {
    margin-top: 40px;
}


.in-stock.soglasie {
    margin-top: 0;
}




.cookies{
    display: none;
    position: fixed;
    width: 875px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    margin: 0 auto;
    background-color: #000;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    z-index: 10;
}
.cookies__wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}
.cookies__content{
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    font-family: var(--font-regular);
    font-weight: 500;
}
.cookies__content a{
    display: contents;
    color: #fff;
    text-decoration: underline;
    font-family: var(--font-regular);
    font-weight: 500;
}
.cookies__btn{
    font-size: 12px;
    background-color: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border: 0;
    border-radius: 4px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .cookies{
        width: 700px;
    }
    .cookies__content br {
        display: none;
    }
}

@media (max-width: 767px) {
    .cookies{
        width: calc(100vw / 1.05);
        padding: 15px 15px 15px;
    }
    .cookies__content {
        font-size: 9px;
        line-height: 9px;
    }
    .cookies__content br {
        display: none;
    }
}
@media (max-width: 576px){
    .cookies{
        border-radius: 20px;
        bottom: 100px;
    }
     .cookies__wrap {
        flex-direction: column;
        grid-gap: 10px;
    }
    .cookies__action {
        width: 100%;
    }
    .cookies__btn {
        width: 100%;
    }
}

.telephone.error{
    border-color:red;
}

.checkbox {
    outline: 1px solid transparent;
}
.checkbox.error {
    outline-color:red !important;
}

.info-widget {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 30px;
    border-radius: 10px 10px 0 0;
    background-color: #000;
    z-index: 10000000001;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.66);
    height: 76px;
    overflow: hidden;
}
.info-widget__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-widget__content p{
    font-family: var(--font-regular);
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    margin: 0 0 10px;
}
.info-widget__content a{
    font-family: var(--font-regular);
   font-size: 20px;
   font-weight: 600;
   line-height: 20px;
   color: #fff;
}
@media(max-width: 767px){
    .info-widget{
        display: none;
        bottom: env(safe-area-inset-bottom, 0);
    }
}
/*# sourceMappingURL=main.css.map */