.calc-leasing__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 44px;
}

.calc-leasing__wrap {
    display: flex;
    justify-content: space-between;
}

.calc-leasing__slider {
    width: calc(100% - 335px - 20px);
    /*max-width: 754px;*/
    padding: 18px 45px;
    border: 1px solid #888888;
    border-radius: 5px;
}


/**/
.leasing-slider__range {
    margin-bottom: 14px;
}

.slider-range {
}

.slider-range__label {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.slider-range__input {
    width: 100%;
    height: 2px;
    margin: 0;
    appearance: none;
    background-color: #888;
    background-image: linear-gradient(#005BA7, #005BA7); /* Используем градиент, поскольку размер фона можно задать только через background-image */
    background-repeat: no-repeat; /* Отключаем повторение фона */
    background-size: 0 100%; /* Этот параметр будем менять позже */
    line-height: 0;

    &:focus {
        background-color: #888;
        border-color: transparent;
    }

    &::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
        background-color: #005BA7;
        border-radius: 100%;
        appearance: none;
    }

    &::-moz-range-thumb {
        border: 0;
        width: 14px;
        height: 14px;
        background-color: #005BA7;
        border-radius: 100%;
        appearance: none;
    }
}

.slider-range__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: -7px;
}

.slider-range__head-label {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #555;
    margin: 0;
}

.slider-range__payment-percent {
    display: inline-block;
    padding: 0 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    border-radius: 2px;
    background: #00B2FF;
}

.slider-range__output {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-align: right;
    color: #555;
    white-space: nowrap;

    & input[type="text"] {
        font-size: 15px;
        font-weight: 700;
        line-height: 25px;
        text-align: right;
        color: #555;
        padding: 0;
        margin: 0;
        border: 0 !important;
        background: transparent !important;
        outline: none !important;
    }
}

.slider-range__figure {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    color: #888;
}

.slider-range__figure-item {
}


/*
input[type=range]::-moz-range-track {
    position: relative;
    height: 2px;
    border: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #B1B5B9;
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 4
}

input[type=range]::-moz-range-thumb {
    position: relative;
    top: -7px;
    width: 15px;
    height: 15px;
    border: 2px solid #2B8BCA;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    background: #fff;
    z-index: 9;
    opacity: 1;
}
*/

/**/
.calc-leasing__form {
    width: 335px;
}

.leasing-form {
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
}

.leasing-form__payment {
    padding: 24px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    border: 2px solid #005BA7;
    border-radius: 3px;
    margin-bottom: 17px;
}

.leasing-form__payment-val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-top: 5px;
}

.leasing-form__text {
    margin-bottom: 20px;
}

.leasing-form__btn.btn {
    font-size: 11px;
    width: 100%;
}

.leasing-form__title {
    display: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 38.7px;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .calc-leasing__title {
        display: none;
    }

    .calc-leasing__wrap {
        flex-wrap: wrap;
    }

    .calc-leasing__slider {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
        border: 0;
        border-radius: 0;
    }

    .calc-leasing__form {
        display: flex;
        flex-direction: column;
        width: initial;
        background: #F8F8F8;
        margin: 0 -16px;
        padding: 40px 16px 0;
    }

    .leasing-slider__range {
        margin-bottom: 20px;
    }

    .leasing-form__payment {
        font-size: 16px;
        font-weight: 500;
        line-height: 19.5px;
        border: 0;
        border-radius: 0;
        text-align: left;
        margin-bottom: 30px;
        padding: 0;
    }

    .leasing-form__payment-val {
        margin-top: 15px;
    }

    .leasing-form__title {
        display: block;
    }

    .leasing-form__btn.btn {
        margin-bottom: 20px;
    }

    .leasing-form__text {
        order: 1;
        margin-bottom: 0;
    }
}