/* Основные стили для десктопа */
.lease-calculator {
    display: flex;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.calculator-inputs, .calculator-results {
    width: 48%;
}

.calculator-inputs label, .calculator-results label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.calculator-inputs input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

.payment-controls {
    display: flex;
    align-items: center;
}

.payment-control {
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.payment-control + span {
    margin: 0 15px;
    font-size: 24px;
    font-weight: bold;
}

.apply-btn {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

/* Адаптация для планшетов (ширина экрана от 768px до 1024px) */
@media (max-width: 1025px) {
    .lease-calculator {
        flex-direction: column;
        padding: 15px;
    }

    .lease-calculator .calculator-inputs, 
    .lease-calculator .calculator-results {
        width: 100%;
        margin-bottom: 20px;
    }
	.calculator-results {
		text-align: center;
	}

    .payment-control {
        width: 25px;
        height: 25px;
        font-size: 18px;
        line-height: 25px;
    }

	.payment-controls {
		justify-content: center;
	}

    .payment-control + span {
        font-size: 22px;
    }

    .apply-btn {
        font-size: 14px;
        padding: 8px;
    }
}

/* Адаптация для мобильных устройств (ширина экрана до 767px) */
@media (max-width: 767px) {
    .lease-calculator {
        flex-direction: column;
        padding: 10px;
    }

    .lease-calculator > .calculator-inputs, .calculator-results {
        width: 100%;
        margin-bottom: 15px;
    }

    .calculator-inputs label, .calculator-results label {
        font-size: 14px;
    }

    .calculator-inputs input[type="range"] {
        margin: 5px 0;
    }

    .payment-control {
        width: 20px;
        height: 20px;
        font-size: 16px;
        line-height: 20px;
    }

    .payment-control + span {
        font-size: 20px;
    }

    .apply-btn {
        font-size: 12px;
        padding: 6px;
    }
}

.apply-btn {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.offer {
    background-color: #f1f9ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.offer h4 {
    font-size: 18px;
    color: #007bff;
    margin-bottom: 10px;
}

.offer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.offer button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.disclaimer {
    line-height: 8px;
    font-size: 8px;
    color: #888;
    text-align: center;
}
