/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 05 2026 | 02:36:59 */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Hide input fields on Step 4 */
.wpforms-page-4.calculate-form .wpforms-field-container>.wpforms-field {
    display: none !important;
}

/* Show the calculator display container */
#calc-display-container {
    display: block !important;
    margin: 20px 0;
}

/* Calculator Form Styles - Imported from style.css */
:root {
    --calc-from-primary-blue: #1e2a5e;
    --calc-from-accent-blue: #4a69bd;
    --calc-from-text-muted: #718096;
    --calc-from-track-gradient: linear-gradient(to right, #c3addb, #82b1ff, #a3daf1);
    --calc-from-font-family: 'Outfit', sans-serif;
}


.calc-form-calculator-container {
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    font-family: var(--calc-from-font-family);

}

/* Header */
.calc-form-header {
    text-align: center;
    margin-bottom: 3rem !important;
}

.calc-form-main-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: #24285e !important;
}

.calc-form-subtitle {
    font-size: 1.25rem !important;
    color: var(--calc-from-text-muted) !important;
    font-weight: 300 !important;
    margin-bottom: 1rem !important;
}

.calc-form-divider {
    width: 300px !important;
    height: 1px !important;
    background: #e2e8f0 !important;
    margin: 0.5rem auto 1.5rem !important;
}

.calc-form-estimate-text {
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    color: #24285e !important;
}

.calc-form-highlight {
    font-weight: 700;
}

/* Slider Section Rules */
.calc-form-slider-section {
    margin-bottom: 2rem !important;
}

/* 1st Row: Labels */
.calc-form-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: -15px !important;
}

.calc-form-label-text {
    font-size: 0.95rem !important;
    color: var(--calc-from-text-muted);
}

.calc-form-label-text.calc-form-light {
    font-weight: 300;
}

/* 2nd Row: Amount - Bar - Amount */
.calc-form-slider-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0 !important;
}

.calc-form-side-amount {
    font-size: 1.5rem !important;
    font-weight: 700;
    min-width: 60px;
}

.calc-form-right-amount {
    text-align: right;
}

.calc-form-left-amount {
    text-align: left;
}

.calc-form-track-area {
    flex-grow: 1;
    position: relative !important;
    padding: 26px 0 20px !important;
}

.calc-form-track-bar {
    height: 14px !important;
    border-radius: 20px !important;
    background: var(--calc-from-track-gradient) !important;
    width: 100% !important;
}

.calc-form-gradient-2 {
    background: var(--calc-from-track-gradient);
}

.calc-form-gradient-3 {
    background: var(--calc-from-track-gradient);
}

/* Marker Bubble */
.calc-form-marker {
    position: absolute !important;
    top: -22px;
    left: 50%;
    /* Default center, will be overridden by JavaScript */
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    z-index: 10 !important;
}

.calc-form-bubble {
    background: var(--calc-from-accent-blue) !important;
    color: white;
    padding: 6px 16px !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    font-weight: 500;
    margin-bottom: 6px !important;
    position: relative !important;
    white-space: nowrap;
}

.calc-form-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--calc-from-accent-blue);
}

.calc-form-dot {
    width: 16px !important;
    height: 16px !important;
    background: #3f51b5 !important;
    border-radius: 50% !important;
    border: 3px solid #ced6e0 !important;
}

/* Bracket (Border Bottom Equivalent) */
.calc-form-track-bracket {
    position: absolute !important;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 10px !important;
    border-left: 4px solid #e2e8f0 !important;
    border-right: 4px solid #e2e8f0 !important;
    border-bottom: 3px solid #e2e8f0 !important;
    border-radius: 1px 3px !important;
}

.calc-form-bracket-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--calc-from-text-muted);
    position: absolute;
    width: 100%;
    bottom: -16px;
}

.calc-form-center-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--calc-from-primary-blue);
    margin-top: -18px;
    background-color: #fff;
}

/* 3rd Row: Para */
.calc-form-section-para {
    font-size: 1rem !important;
    color: var(--calc-from-text-muted);
    text-align: center;
    line-height: 1.6;
    margin-top: 24px !important;
    max-width: 750px;
margin-right: auto !important;
    margin-left: auto !important;
}

.calc-form-spacer-v {
    height: 1.5rem;
}

/* Global Divider */
.calc-form-section-divider {
    height: 1px !important;
    background: #edf2f7 !important;
    margin: 2rem 0 !important;
}

.calc-form-font-bold {
    color: #24285e !important;
    font-weight: 600 !important;
}

.calc-form-text-right {
    text-align: right !important;
}

@media (max-width: 600px) {
    .calc-form-side-amount {
        font-size: 16px;
        min-width: 30px;
    }

    .calc-form-track-area {
        padding-top: 35px;
    }

    .calc-form-section-para {
        font-size: 14px;
        max-width: 100%;
    }

    .calc-form-label-text {
        font-size: 12px;
    }

    .calc-form-center-label {
        font-size: 14px;
        margin-top: -15px;
    }

    .calc-form-marker {
        top: -2px;
    }

    .calc-form-bubble {
        font-size: 12px;
        padding: 4px 12px;
    }
}