.elementor-4862 .elementor-element.elementor-element-2e725a1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-16px;--margin-bottom:-10px;--margin-left:0px;--margin-right:-10px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-4862 .elementor-element.elementor-element-f54a33f img{width:100%;}.elementor-4862 .elementor-element.elementor-element-cfe6fc3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4862 .elementor-element.elementor-element-94e91f5{--spacer-size:50px;}.elementor-4862 .elementor-element.elementor-element-8d246c6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0a7f710 */<style>
    .shipping-quote-card {
        max-width: 500px;
        margin: 20px auto;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow: hidden;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        border: 1px solid #eee;
    }
    .form-header {
        background-color: #f8f9fa;
        padding: 20px;
        border-bottom: 3px solid #0033ff;
        text-align: center;
    }
    .form-header h2 {
        margin: 0;
        color: #333;
        font-size: 22px;
    }
    form {
        padding: 25px;
    }
    .form-section {
        margin-bottom: 25px;
    }
    .question-label {
        font-weight: 700;
        margin-bottom: 12px;
        color: #222;
        font-size: 16px;
    }
    /* Mobile Friendly Touch Options */
    .custom-radio {
        display: block;
        margin-bottom: 10px;
        cursor: pointer;
    }
    .custom-radio input {
        display: none; /* Hide default radio */
    }
    .radio-box {
        display: block;
        padding: 14px;
        background: #fdfdfd;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.2s ease;
        color: #555;
    }
    /* Change look when selected */
    .custom-radio input:checked + .radio-box {
        background-color: #f0f4ff;
        border-color: #0033ff;
        color: #0033ff;
        font-weight: bold;
    }
    /* Note Box Styling */
    .note-container {
        background-color: #f0f7ff;
        padding: 15px;
        border-radius: 10px;
        margin: 25px 0;
        border-left: 5px solid #0033ff;
    }
    .note-container p {
        margin: 5px 0;
        font-weight: 600;
        color: #0033ff;
        font-size: 14px;
    }
    /* FULL BLUE BUTTON */
    .submit-blue-btn {
        background-color: #0033ff !important;
        color: white !important;
        width: 100%;
        padding: 18px;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.2s, background 0.3s;
        box-shadow: 0 5px 15px rgba(0, 51, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .submit-blue-btn:hover {
        background-color: #0022cc !important;
        transform: translateY(-2px);
    }
    /* Mobile View Adjustments */
    @media (max-width: 480px) {
        form { padding: 15px; }
        .question-label { font-size: 15px; }
        .radio-box { padding: 12px; font-size: 14px; }
    }
</style>

.route-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.route-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.route-field label {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.route-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.route-field input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}/* End custom CSS */