﻿/* LIZING-PAGE START */

.lizing-cards .service-cards-item {
    text-align: left;
}
.lizing-cards .service-cards-item span{
    color: #FBB103;
}
.lizing-cards .service-cards-item-description {
    font-size: 16px;
}

.advantages {
}
.advantages__wrapper {
    display: flex;
    gap:24px;
}
.advantages__content {
    width: calc(50% - 12px);
}
.advantages__title {
}
.advantages__content-list {
    margin-bottom: 16px;
}
.advantages__content-item {
    padding-left: 48px;
    margin-bottom: 24px;
    list-style-type: none;
    position: relative;
    font-size: 28px;
}
.advantages__content-item::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top:5px;
    left:0;
    background-image: url('../../img/star4.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.advantages__btn {
    display: block;
    width: 250px;
}
.advantages__image {
    width: calc(50% - 12px);
    position: relative;
}
.advantages__image-yellow-circle {
    position: absolute;
    top:0;
    left:40px;
    width: 180px;
    height: 160px;
    background-color: #fed523;
    border-radius: 50%;
    z-index: 1;
}
.advantages__image-dots-circle {
    position: absolute;
    top:0;
    left:0;
    z-index: 2  ;
    width: 220px;
    height: 175px;
}
.advantages__image-car {
    position: relative;
    z-index: 3;
}

.calc {
}
.calc__title {
}
.calc__wrapper {
    display: flex;
    gap:24px;
}
.calc__col {
    width: calc(50% - 12px);
}
.calc__lizing {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #292826;
    height: 100%;
}
.calc__lizing-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}
.range-wrapper {
}
.range-wrapper-calc {
    margin-bottom: 24px;
}
.range-wrapper-calc:last-of-type {
    margin-bottom: 0;
}
.calc-range-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 8px;
}
.calc .range-info {
    color:#292826;
    top:-8px;
}
.range-info--min {
}
.range-input-price {
}
.range-info--max {
    right: 0;
}

.calc .range-input-price::-webkit-slider-thumb {
    background-color: #fff;
}
.calc .range-input-price::-moz-range-thumb {
    background-color: #fff;
}

/* ===== ФИЛЬТР МОЩНОСТИ (двойной слайдер) ===== */

.range-wrapper.power-range-wrapper {
    display: block;
    gap: 0;
    width: 100%;
    padding-top: 30px;
    position: relative;
}

.power-range-wrapper .range-inputs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    font-size: 14px;
    font-weight: 500;
    color: #292826;
}

.power-range-wrapper .range-inputs span {
    position: static;
    color: #292826;
}

.power-range-wrapper .range-input-text {
    width: 80px;
    padding: 4px 6px;
    font-size: 14px;
    font-weight: 500;
    color: #292826;

    border: 1px solid #292826;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
}

.power-range-wrapper .range-input-text::-webkit-outer-spin-button,
.power-range-wrapper .range-input-text::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.power-range-wrapper .range-input-text[type="number"] {
    -moz-appearance: textfield;
}

.power-range-wrapper .range-line {
    position: relative;
    width: 100%;
    margin-top: 16px;
    height: 20px;
    --power-min: 0%;
    --power-max: 100%;
    cursor: pointer; 
}

.power-range-wrapper .range-input-power {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
    pointer-events: none;
    z-index: 3;
}

.power-range-wrapper .range-line::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 3px;
    background: #000;
    z-index: 1;
}

.power-range-wrapper .range-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 3px;
    background: #fdd525;
    z-index: 2;
    left: var(--power-min);
    right: calc(100% - var(--power-max));
}

.power-range-wrapper #power-range-max,
.power-range-wrapper #max-power-range-max,
.power-range-wrapper #load-capacity-kg-range-max,
.power-range-wrapper #lifting-height-range-max {
    z-index: 4;
}

.power-range-wrapper .range-input-power::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #000;
    border: 5px solid #fdd525;
    cursor: pointer;
    pointer-events: auto;
    margin-top: calc((4px / 2) - (20px / 2));
}

.power-range-wrapper .range-input-power::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #000;
    border: 5px solid #fdd525;
    cursor: pointer;
    pointer-events: auto;
}

.power-range-wrapper .range-input-power::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}
.power-range-wrapper .range-input-power::-moz-range-track {
    height: 4px;
    background: transparent;
}


.calc__offer {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #292826;
    background: #FDD525;
    align-self: stretch;
    height: 100%;
}
.calc__offer-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}
.calc__offer-text {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.calc__offer-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:48px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #292826;
    padding: 17px;
    margin-bottom: 32px;
}
.calc__offer-minus,
.calc__offer-plus {
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    cursor: pointer;
}
.calc__offer-sum {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
}
.calc__offer-plus {
    background-image: url('../../img/plus_icon.svg');
}
.calc__offer-minus {
    background-image: url('../../img/minus_icon.svg');  
}
.calc__offer-result {
    display: flex;
    gap:64px;
    justify-content: center;
    align-items: center;
}
.calc__offer-result-sum,
.calc__offer-result-percent {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap:16px;
}
.calc__offer-result-text {
    font-size: 20px;
    font-weight: 600;
}
.calc__offer-result-value {
    font-size: 32px;
    font-weight: 600;
    white-space: nowrap;
}
.calc__offer-result-percent {
}


.process {
}
.process__title {
}
.process__wrapper {
}
.process__list {
    display: flex;
    gap:24px;
}
.process__item {
    width: calc(33.33% - 16px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #292826;
    background: #292826;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.process__item--long {
    width: calc(66.66% - 12px);
}
.process__item-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
}
.process__item-count {
    color: #FDD525;
    font-size: 128px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.process__item-icon {
    width: 128px;
    height: 128px;
}
.process__item-title {
    color:#fff;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}
.process__item-action {
    margin-top: 16px;
}
.process__item-btn {
    display: block;
    width: 300px;
}
.process--trade-in .process__list{
    flex-wrap: wrap;
}


.features {
}
.features__title {
}
.features__wrapper {
}
.features__list {
    display: flex;
    gap:32px;
}
.features__item {
    width: calc(25% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap:16px;
}
.features__item-icon {
    width: 32px;
    height: 32px;
}
.features__item-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
}
.features__item-description {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}


.banks.section {
    padding-bottom: 0;
}
.banks__title {
}
.banks__text {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    max-width: 600px;
    margin-bottom: 16px;
}
.banks__wrapper {
    position: relative;
    padding-bottom: 50px;
}
.swiper {
}
.banks__list {
}
.swiper-wrapper {
}
.banks__item {
    height: 94px;
    width: 400px;
}
.banks__item img{
    height: auto;
}
.swiper-slide {
}
.swiper-pagination {
}
.banks .swiper-pagination {
    display: none;
}
.banks .swiper-button-prev, .banks .swiper-button-next {
    display: block;
}


.page-banner .main__banner {
    height: auto;
}
.page-banner .main__banner-title {
    font-size: 64px;
}
.page-banner .main__banner-title span{
    color: #FDD525;
}
.page-banner .main__banner-subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    max-width: 772px;
}
.main__banner-info {
    max-width: unset;
}
.page-banner .btn {
    max-width: 300px;
}

/* LIZING-PAGE END */

