/* ===== CONTAINER ===== */
.loan-slider-container {
    padding: 30px;
    border-radius: 20px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== LAYOUT ===== */
.loan-slider-container .col-one {
    float: left;
    width: 70%;
}

.loan-slider-container .col-two {
    float: right;
    width: 30%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.loan-slider-container::after {
    content: "";
    display: block;
    clear: both;
}

/* ===== AMOUNT ===== */
.loan-slider-container .amount-display {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #00bf63;
    margin-bottom: 20px;
}

/* ===== SLIDER WRAPPER ===== */
.loan-slider-container .slider-wrapper {
    margin: 20px 0;
}

/* ===== TRACK ===== */
.loan-slider-container .slider-track {
    position: relative;
    width: 100%;
    height: 14px;
    background: #B1D8CD;
    border-radius: 15px;
}

/* ===== PROGRESS ===== */
.loan-slider-container .slider-progress {
    position: absolute;
    height: 100%;
    width: 50%;
    background: #00bf63;
    border-radius: 15px;
/*     transition: width 0.3s ease; */
}

/* ===== HANDLE ===== */
.loan-slider-container .slider-handle {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #00bf63;
    border: 4px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    top: 50%;
    box-shadow: 0 4px 12px rgba(0, 191, 99, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    touch-action: none;
}

.loan-slider-container .slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 191, 99, 0.4);
}

/* ===== LABELS ===== */
.loan-slider-container .slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-weight: 600;
    color: #666666;
}

/* ===== BUTTON ===== */
.loan-slider-container .apply-button {
    background: #00bf63;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 191, 99, 0.3);
    transition: all 0.3s ease;
}

.loan-slider-container .apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 191, 99, 0.4);
}
.hfe-flyout-show {
  display: block !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .loan-slider-container .col-one,
    .loan-slider-container .col-two {
        float: none;
        width: 100%;
    }

    .loan-slider-container .col-two {
        margin-top: 25px;
        justify-content: center;
    }

    .loan-slider-container .apply-button {
        width: 100%;
        text-align: center;
    }
}