/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

#schedulingForm {
    padding: 1.75rem;
    border-radius: 0.625rem;
    border-width: 3px;
    border-color: #ccc;
    border-style: solid;
}

#schedulingForm fieldset {
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    margin-bottom: 0px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 1rem;
}

#schedulingForm fieldset legend {
    color: var(--e-global-color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    grid-column: 1/-1;
    line-height: 1.25;
}

#schedulingForm .radio-control {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    font-size: 1.25rem;
}

#schedulingForm .radio-control input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#schedulingForm .radio-ui {
    width: 1.875rem;
    height: 1.875rem;
    border: 5px solid var(--e-global-color-accent);
    border-radius: 50%;
    box-sizing: border-box;
    transition:
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

#schedulingForm .radio-control input[type="radio"]:checked + .radio-ui {
    box-shadow: inset 0 0 0 4px #000;
}

#schedulingForm .radio-control input[type="radio"]:focus-visible + .radio-ui {
    outline: 2px solid #000;
    outline-offset: 3px;
}

#schedulingForm .scheduling-form-field {
    margin-top: 1.5rem;
}

#schedulingForm .scheduling-form-field label {
    color: var(--e-global-color-accent);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

#schedulingForm .scheduling-form-field select {
    border: 1px solid #eaeaea;
    background: #fafafa;
    border-radius: 0;
    font-size: 1rem;
    padding: 0.625rem;
}

#schedulingForm .scheduling-form-field-description {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

#continueBtn {
    margin-top: 1.5rem;
}

#continueBtn[hidden] {
    display: none !important;
}

#insuranceInfo {
    margin-top: 1.5rem;
    color: var(--e-global-color-accent);
}

#insuranceInfoHeading {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

#existingPatientFlow {
    margin-top: 1.5rem;
}
#existingPatientFlow .or-btn-divider {
    display: block;
    margin: 1rem 0;
    font-size: 1.5rem;
}

@media screen and (max-width: 767.98px) {
    #schedulingForm {
        padding: 0;
        border: none;
    }

    #schedulingForm fieldset {
        grid-template-columns: minmax(0, 1fr);
    }

    #existingPatientFlow .or-btn-divider {
        font-size: 1.25rem;
    }
}
