.Ro_calculator_section {
    height: 980px;
    background-image: url(../images/calculator-bg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.blck_gray_color {
    color: #3E3E3E;
}
.gray_color {
    color: #97A0AE;
}
.Ro_calculator_section_content {
    margin-top: 40px;
    display: flex;
    gap: 80px;
}
.Ro_calculator_section_content_left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.Ro_calculator_section_content_right {
    width: 450px;
}
.Ro_payment_summary_card {
    background: #ffff;
    border-radius: 20px;
    box-shadow: 0 4px 200px rgba(0, 0, 0, 0.1);
}
.Ro_payment_summary_content {
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.Ro_payment_details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.Ro_payment_display {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.Ro_payment_amount {
    font-size: 50px;
    font-weight: 800;
    color: #3E3E3E;
    margin-top: 0;
    display: flex;
    align-items: baseline;
    line-height: 1;
}
.Ro_payment_frequency {
    font-size: 22px;
    font-weight: 800;
    color: #3e3e3e;
    margin-left: 2px;
    position: relative;
    top: 0px;
}
.Ro_payment_divider {
    border: none;
    border-top: 1px solid #000;
    margin: 0;
    width: 100%;
    opacity: 10%;
}
.Ro_rate_information {
    display: flex;
    gap: 88px;
}
.Ro_rate_item {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.Ro_rate_value {
    font-size: 28px;
    font-weight: 800;
    color: #3E3E3E;
}
.Ro_payment_cta_button {
    width: 100%;
    height: 60px;
    padding: 10px 10px;
    background: #303030;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 40px;
}
.Ro_loan_amount_section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_loan_amount_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 39px;
}
.Ro_loan_slider_container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.Ro_loan_slider_wrapper {
    position: relative;
    width: 100%;
    height: 23px;
    display: flex;
    align-items: center;
}
.Ro_loan_slider_track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(173, 181, 208, 0.29);
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
}
.Ro_loan_slider_active {
    position: absolute;
    height: 4px;
    background: #2F2F2F;
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 10%; 
    transition: width 0.1s ease;
}
.Ro_loan_slider_handle {
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border: 7px solid #2F2F2F;
    border-radius: 50%;
    cursor: pointer;
    left: 10%; 
    transform: translateX(-50%);
    transition: left 0.1s ease;
    z-index: 2;
}
.Ro_loan_amount_input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    -webkit-appearance: none;
    appearance: none;
}
.Ro_loan_amount_input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.Ro_loan_amount_input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: transparent;
    border: none;
}
.Ro_loan_slider_labels {
    display: flex;
    justify-content: space-between;
}
.Ro_term_section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.Ro_term_label {
    font-weight: 500;
}
.Ro_term_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.Ro_term_payment_button {
    padding: 10px 15px;
    height: 37px;
    border: 1px solid #d0d2d5;
    border-radius: 6px;
    background: transparent;
    color: #1D1D1D;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: normal;
}
.Ro_term_payment_button.active {
    background: #1D1D1D;
    color: white;
    border-color: #000;
}
.Ro_term_payment_button:hover:not(.active) {
    border-color: #d0d2d5;
    background: #d0d2d5;
}
.Ro_repayments_label {
    font-size: 14px;
    font-weight: 500;
    color: #3E3E3E;
    opacity: 40%;
}