/**
 * Primaya Hospital — Booking Online form redesign v2 (Quform ID 7)
 *
 * Pure CSS override layer, loaded after the Select2 CDN stylesheet.
 * Scope: everything lives under :is(.quform-elements-7, .quform-elements-10) so no other form
 * on the site is affected. Kendo calendar + Select2 popups that render
 * outside the form are themed under their own scoped blocks at the end.
 *
 * Accessibility targets (audience 30–60+):
 *  - 17px input text (also prevents iOS auto-zoom), 16px labels
 *  - 56px minimum touch targets, visible 4px focus rings
 *  - Fields carry a tinted fill so they read clearly against the card
 *  - Answered fields turn white with a stronger border ("done" state)
 *  - Waiting-on-previous-step fields are flat and muted, never dashed
 */

:is(.quform-elements-7, .quform-elements-10) {
    /* Design tokens */
    --ph-ink: #10262E;
    --ph-muted: #5A6B74;
    --ph-brand: #015C80;
    --ph-brand-deep: #023D56;
    --ph-brand-bright: #0A7BA6;
    --ph-soft: #E8F3F8;
    --ph-shell: #F1F7FA;
    --ph-field-bg: #F5F9FB;
    --ph-field-border: #D9E7EE;
    --ph-line-strong: rgba(1, 92, 128, 0.4);
    --ph-danger: #C2453A;
    --ph-danger-soft: #FBEDEC;
    --ph-radius-card: 1.5rem;
    --ph-radius-field: 0.875rem;
    --ph-ease: cubic-bezier(0.32, 0.72, 0, 1);
    position: relative;
    max-width: 46rem;
    
    /* Double-bezel: hairline ring, thin shell tray, soft ambient depth */
    font-family: 'Euclid Circular Light', sans-serif;
    color: var(--ph-ink);
}

/* Short brand notch at the top — echoes the page title's underline bar */
:is(.quform-elements-7, .quform-elements-10)::before {
}

:is(.quform-elements-7, .quform-elements-10) .quform-child-elements {
    position: relative;
}

/* ---------------------------------------------------------------- */
/* Vertical rhythm + section dividers                                */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-element > .quform-spacer {
    margin: 0;
    padding: 0 0 1.5rem;
}

/* Hairline divider where the flow changes topic:
   patient profile → hospital choice, and before the statement */
:is(.quform-elements-7, .quform-elements-10) .quform-element-7_7,
:is(.quform-elements-7, .quform-elements-10) .quform-element-7_28 {
    margin-top: 0.375rem;
    padding-top: 1.625rem;
    border-top: 1px solid rgba(1, 92, 128, 0.09);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit {
    margin-top: 0.5rem;
}

/* ---------------------------------------------------------------- */
/* Labels                                                            */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-label {
    padding: 0 0 0.5625rem;
}

:is(.quform-elements-7, .quform-elements-10) .quform-label-text {
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 1rem !important;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--ph-ink) !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-required {
    color: var(--ph-danger);
    margin-left: 0.125rem;
}

:is(.quform-elements-7, .quform-elements-10) .quform-sub-label {
    display: block;
    margin: -0.3125rem 0 0.5625rem;
    font-size: 0.875rem;
    color: var(--ph-muted);
}

/* ---------------------------------------------------------------- */
/* Text inputs, selects, date fields                                 */
/* Tinted fill by default → white with a stronger border once        */
/* focused or answered, so progress is visible at a glance.          */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-field-text,
:is(.quform-elements-7, .quform-elements-10) .quform-field-select,
:is(.quform-elements-7, .quform-elements-10) .quform-field-date {
    -webkit-appearance: none;
    appearance: none;
    width: 100% !important;
    min-height: 3.5rem !important;
    padding: 0 1.125rem !important;
    font-family: 'Euclid Circular Light', sans-serif !important;
    font-size: 1.0625rem !important;
    line-height: 1.4 !important;
    color: var(--ph-ink) !important;
    background-color: var(--ph-field-bg) !important;
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: var(--ph-radius-field) !important;
    box-shadow: none !important;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-text:hover,
:is(.quform-elements-7, .quform-elements-10) .quform-field-select:hover,
:is(.quform-elements-7, .quform-elements-10) .quform-field-date:hover {
    border-color: var(--ph-line-strong) !important;
    background-color: #FFFFFF !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-text:focus,
:is(.quform-elements-7, .quform-elements-10) .quform-field-select:focus,
:is(.quform-elements-7, .quform-elements-10) .quform-field-date:focus {
    outline: none !important;
    border-color: var(--ph-brand) !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.13) !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-text::placeholder,
:is(.quform-elements-7, .quform-elements-10) .quform-field-date::placeholder {
    color: var(--ph-muted);
    opacity: 1;
}

/* Answered text inputs go white — the "done" state */
:is(.quform-elements-7, .quform-elements-10) .quform-field-text:not(:placeholder-shown) {
    background-color: #FFFFFF !important;
    border-color: var(--ph-line-strong) !important;
}

/* Native select: thin brand chevron, extra right padding for it */
:is(.quform-elements-7, .quform-elements-10) select.quform-field-select {
    padding-right: 3rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23015C80' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.125rem center !important;
    cursor: pointer;
}

/* Answered selects go white with a stronger border.
   .ph-placeholder is kept in sync by his-booking-form-ui.js */
:is(.quform-elements-7, .quform-elements-10) select.quform-field-select:not(.ph-placeholder) {
    background-color: #FFFFFF !important;
    border-color: var(--ph-line-strong) !important;
}

/* Placeholder-state selects read as hints, not values */
:is(.quform-elements-7, .quform-elements-10) select.quform-field-select.ph-placeholder,
:is(.quform-elements-7, .quform-elements-10) select.quform-field-select:has(option[value=""]:checked) {
    color: var(--ph-muted) !important;
    background-color: var(--ph-field-bg) !important;
    border-color: var(--ph-field-border) !important;
}

:is(.quform-elements-7, .quform-elements-10) select.quform-field-select.ph-placeholder:hover,
:is(.quform-elements-7, .quform-elements-10) select.quform-field-select:has(option[value=""]:checked):hover {
    background-color: #FFFFFF !important;
    border-color: var(--ph-line-strong) !important;
}

/* Waiting on a previous step — flat, quiet, clearly inactive */
:is(.quform-elements-7, .quform-elements-10) .quform-field-text:disabled,
:is(.quform-elements-7, .quform-elements-10) .quform-field-select:disabled,
:is(.quform-elements-7, .quform-elements-10) .quform-field-date:disabled,
:is(.quform-elements-7, .quform-elements-10) .quform-field-date[disabled] {
    background-color: #EEF3F6 !important;
    border-color: #E3EBF0 !important;
    color: var(--ph-muted) !important;
    cursor: default;
    background-image: none !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-date[disabled] ~ .quform-field-icon-left,
:is(.quform-elements-7, .quform-elements-10) .quform-input-date:has(.quform-field-date[disabled]) .quform-field-icon-left {
    color: var(--ph-muted);
    opacity: 0.55;
}

/* ---------------------------------------------------------------- */
/* Kendo datepicker wrapper — strip its chrome, keep our field skin  */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .k-widget.k-datepicker {
    display: block;
    width: 100% !important;
    background: transparent;
    border: 0;
    box-shadow: none;
}

:is(.quform-elements-7, .quform-elements-10) .k-datepicker .k-picker-wrap {
    display: block;
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-has-field-icon-left .quform-field-date {
    padding-left: 3.125rem !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-date {
    position: relative;
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-icon-left {
    position: absolute;
    left: 1.125rem;
    top: 65%;
    transform: translateY(-50%);
    color: var(--ph-brand);
    font-size: 1.125rem;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    transition: color 0.45s var(--ph-ease), opacity 0.45s var(--ph-ease);
}

/* ---------------------------------------------------------------- */
/* Select2 (Poli) — matches the native fields exactly                */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .select2-container--default .select2-selection--single {
    height: 3.5rem !important;
    background-color: var(--ph-field-bg) !important;
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: var(--ph-radius-field) !important;
    box-shadow: none;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .select2-container--default:hover .select2-selection--single {
    border-color: var(--ph-line-strong) !important;
    background-color: #FFFFFF !important;
}

:is(.quform-elements-7, .quform-elements-10) .select2-container--default.select2-container--focus .select2-selection--single,
:is(.quform-elements-7, .quform-elements-10) .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--ph-brand) !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.13);
}

/* Answered Select2 goes white too (JS mirrors .ph-placeholder onto
   the original select; when a real value is chosen the rendered text
   is not the placeholder span, so :has() covers modern browsers) */
:is(.quform-elements-7, .quform-elements-10) .quform-input-select:has(select:not(.ph-placeholder)) .select2-selection--single {
    background-color: #FFFFFF !important;
    border-color: var(--ph-line-strong) !important;
}

:is(.quform-elements-7, .quform-elements-10) .select2-selection--single .select2-selection__rendered {
    line-height: 3.4rem !important;
    padding: 0 3rem 0 1.125rem !important;
    font-size: 1.0625rem;
    color: var(--ph-ink) !important;
}

:is(.quform-elements-7, .quform-elements-10) .select2-selection--single .select2-selection__placeholder {
    color: var(--ph-muted) !important;
}

:is(.quform-elements-7, .quform-elements-10) .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    width: 3rem !important;
    top: 0 !important;
    right: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23015C80' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

:is(.quform-elements-7, .quform-elements-10) .select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}

/* Dropdown panel (rendered inside .quform-element via dropdownParent) */
:is(.quform-elements-7, .quform-elements-10) .select2-dropdown {
    margin-top: 0.375rem;
    border: 1px solid rgba(1, 92, 128, 0.16) !important;
    border-radius: var(--ph-radius-field) !important;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow:
        0 24px 48px -16px rgba(2, 61, 86, 0.28),
        0 4px 12px rgba(2, 61, 86, 0.08);
}

:is(.quform-elements-7, .quform-elements-10) .select2-search--dropdown {
    padding: 0.75rem 0.75rem 0.5rem;
}

:is(.quform-elements-7, .quform-elements-10) .select2-search--dropdown .select2-search__field {
    min-height: 2.75rem;
    padding: 0 1rem;
    font-family: 'Euclid Circular Light', sans-serif;
    font-size: 1rem;
    color: var(--ph-ink);
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: 0.625rem !important;
    transition: border-color 0.45s var(--ph-ease), box-shadow 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: var(--ph-brand) !important;
    box-shadow: 0 0 0 3px rgba(1, 92, 128, 0.13);
}

:is(.quform-elements-7, .quform-elements-10) .select2-results__options {
    max-height: 17rem !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(1, 92, 128, 0.3) transparent;
}

:is(.quform-elements-7, .quform-elements-10) .select2-results__option {
    padding: 0.875rem 1.125rem;
    font-size: 1.0625rem;
    line-height: 1.4;
    color: var(--ph-ink);
    transition: background-color 0.25s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .select2-results__option--highlighted.select2-results__option--selectable,
:is(.quform-elements-7, .quform-elements-10) .select2-results__option--highlighted[aria-selected] {
    background-color: var(--ph-soft) !important;
    color: var(--ph-brand-deep) !important;
}

:is(.quform-elements-7, .quform-elements-10) .select2-results__option--selected,
:is(.quform-elements-7, .quform-elements-10) .select2-results__option[aria-selected="true"] {
    background-color: rgba(232, 243, 248, 0.6) !important;
    color: var(--ph-brand-deep) !important;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
}

:is(.quform-elements-7, .quform-elements-10) .select2-results__option--disabled,
:is(.quform-elements-7, .quform-elements-10) .select2-results__option[aria-disabled="true"] {
    color: var(--ph-muted) !important;
    background: transparent !important;
}

/* ---------------------------------------------------------------- */
/* Radio group ("Apakah Anda") — big tappable cards                  */
/* ---------------------------------------------------------------- */

/* Layout-critical properties carry !important on purpose: Quform's
   own stylesheet loads after this file and resets .quform-option /
   .quform-option-label to floats and inline display, which collapses
   the custom radio circle into a sliver and overlaps the cards. */

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem;
    float: none;
    margin: 0;
    padding: 0;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option {
    display: block !important;
    flex: 1 1 14rem !important;
    min-width: 0;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio input.quform-field-radio {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem;
    width: 100% !important;
    min-height: 3.5rem;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0.75rem 1.125rem !important;
    background: var(--ph-field-bg);
    border: 1.5px solid var(--ph-field-border);
    border-radius: var(--ph-radius-field);
    font-size: 1.0625rem !important;
    line-height: 1.4 !important;
    color: var(--ph-ink) !important;
    cursor: pointer;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease),
        transform 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option-label::before {
    content: "";
    display: block !important;
    flex: 0 0 auto !important;
    width: 1.375rem !important;
    height: 1.375rem !important;
    box-sizing: border-box !important;
    border-radius: 50%;
    border: 2px solid var(--ph-line-strong);
    background: #FFFFFF;
    transition: border 0.35s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option-text {
    display: inline-block;
    vertical-align: middle;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option-label:hover {
    border-color: var(--ph-line-strong);
    background: #FFFFFF;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option-label:active {
    transform: scale(0.98);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio input:checked + .quform-option-label {
    border-color: var(--ph-brand);
    background: var(--ph-soft);
    box-shadow: 0 0 0 1px var(--ph-brand);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio input:checked + .quform-option-label::before {
    border: 0.4375rem solid var(--ph-brand) !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio input:checked + .quform-option-label .quform-option-text {
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    color: var(--ph-brand-deep);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-radio input:focus-visible + .quform-option-label {
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.2);
}

/* ---------------------------------------------------------------- */
/* Checkbox ("Pernyataan") — statement card with large check         */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox .quform-option {
    display: block !important;
    float: none !important;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox input.quform-field-checkbox {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox .quform-option-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.875rem;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 1.125rem 1.25rem !important;
    background: var(--ph-field-bg);
    border: 1.5px solid var(--ph-field-border);
    border-radius: var(--ph-radius-field);
    font-size: 1rem !important;
    line-height: 1.55 !important;
    color: var(--ph-ink) !important;
    cursor: pointer;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox .quform-option-label::before {
    content: "";
    display: block !important;
    flex: 0 0 auto !important;
    width: 1.375rem !important;
    height: 1.375rem !important;
    box-sizing: border-box !important;
    margin-top: 0.125rem;
    border-radius: 0.4375rem;
    border: 2px solid var(--ph-line-strong);
    background-color: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0.875rem;
    transition:
        background-color 0.35s var(--ph-ease),
        border-color 0.35s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox .quform-option-label:hover {
    border-color: var(--ph-line-strong);
    background: #FFFFFF;
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox input:checked + .quform-option-label {
    border-color: var(--ph-brand);
    background: var(--ph-soft);
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox input:checked + .quform-option-label::before {
    background-color: var(--ph-brand);
    border-color: var(--ph-brand);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E");
}

:is(.quform-elements-7, .quform-elements-10) .quform-input-checkbox input:focus-visible + .quform-option-label {
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.2);
}

/* ---------------------------------------------------------------- */
/* File uploads — drop-zone look with pill browse button             */
/* (dashed is intentional here: universal upload affordance)         */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) input[type="file"].quform-field {
    width: 100%;
    padding: 1rem 1.125rem;
    font-family: 'Euclid Circular Light', sans-serif;
    font-size: 0.9375rem;
    color: var(--ph-muted);
    background: var(--ph-field-bg);
    border: 1.5px dashed var(--ph-line-strong);
    border-radius: var(--ph-radius-field);
    cursor: pointer;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) input[type="file"].quform-field:hover {
    border-color: var(--ph-brand);
    background: #FFFFFF;
}

:is(.quform-elements-7, .quform-elements-10) input[type="file"].quform-field:focus-visible {
    outline: none;
    border-color: var(--ph-brand);
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.13);
}

:is(.quform-elements-7, .quform-elements-10) input[type="file"].quform-field::file-selector-button {
    margin-right: 1rem;
    padding: 0.625rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: var(--ph-soft);
    color: var(--ph-brand-deep);
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.35s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) input[type="file"].quform-field:hover::file-selector-button {
    background: #D4E9F2;
}

/* ---------------------------------------------------------------- */
/* "Tambahkan profil baru" — solid soft pill with nested plus badge  */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-element-7_90 > .quform-spacer {
    padding-top: 0;
    margin-top: -0.5rem;
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-7_90 a {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem 0.5rem 0.625rem;
    border: 1.5px solid transparent;
    border-radius: 999px;
    background: var(--ph-soft);
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 0.9375rem;
    color: var(--ph-brand) !important;
    text-decoration: none !important;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        transform 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-7_90 a::before {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 50%;
    background: var(--ph-brand);
    color: #FFFFFF;
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-7_90 a:hover {
    border-color: var(--ph-brand);
    background: #D4E9F2;
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-7_90 a:hover::before {
    transform: rotate(90deg) scale(1.08);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-7_90 a:active {
    transform: scale(0.97);
}

/* ---------------------------------------------------------------- */
/* "Cek Rujukan" helper button                                       */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) #check_rujukan {
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.625rem 1.75rem;
    border: 0;
    border-radius: 999px;
    background: var(--ph-brand);
    color: #FFFFFF;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 20px -10px rgba(1, 92, 128, 0.55);
    transition:
        background-color 0.45s var(--ph-ease),
        transform 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) #check_rujukan:hover {
    background: var(--ph-brand-bright);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px -10px rgba(1, 92, 128, 0.6);
}

:is(.quform-elements-7, .quform-elements-10) #check_rujukan:active {
    transform: scale(0.97);
}

:is(.quform-elements-7, .quform-elements-10) #check_rujukan:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.25);
}

/* ---------------------------------------------------------------- */
/* Submit — "Buat Janji" hero button with nested arrow badge         */
/* ---------------------------------------------------------------- */

/* Quform wraps the button in .quform-button-submit, which its own
   stylesheet renders inline-block / floated — force it (and the
   button) to span the full form width. */
:is(.quform-elements-7, .quform-elements-10) .quform-button-submit {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next) {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: nowrap;
    min-height: 3.75rem;
    padding: 0 2rem;
    border: 0;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(140deg, var(--ph-brand-bright) 0%, var(--ph-brand) 45%, var(--ph-brand-deep) 100%);
    color: #FFFFFF;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    box-shadow:
        0 16px 32px -12px rgba(1, 92, 128, 0.55),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transition:
        transform 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease);
}

/* Light sweep across the surface on hover */
:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.9s var(--ph-ease);
    pointer-events: none;
}

/* Nested circular arrow badge */
:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next)::after {
    content: "\2192";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.45s var(--ph-ease), background-color 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next):hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 40px -14px rgba(1, 92, 128, 0.65),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next):hover::before {
    transform: translateX(100%);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next):hover::after {
    transform: translateX(0.1875rem);
    background: rgba(255, 255, 255, 0.26);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next):active {
    transform: translateY(0) scale(0.98);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit :is(button.quform-submit, button.quform-next):focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(1, 92, 128, 0.3),
        0 16px 32px -12px rgba(1, 92, 128, 0.55);
}

/* Brand-colored loading spinner */
:is(.quform-elements-7, .quform-elements-10) .quform-loading-spinner-inner {
    border-color: rgba(1, 92, 128, 0.2) !important;
    border-top-color: var(--ph-brand) !important;
}

/* ---------------------------------------------------------------- */
/* Validation errors — readable, not alarming                        */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-error .quform-field,
:is(.quform-elements-7, .quform-elements-10) .quform-element:has(.quform-error) .quform-field-text,
:is(.quform-elements-7, .quform-elements-10) .quform-element:has(.quform-error) .quform-field-select {
    border-color: var(--ph-danger) !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-error-text,
:is(.quform-elements-7, .quform-elements-10) .quform-error > p {
    margin-top: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--ph-danger-soft);
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: #8E2F27 !important;
}

/* ---------------------------------------------------------------- */
/* Progressive-reveal motion                                         */
/* Quform toggles display — the animation replays each time a        */
/* conditional field appears, giving a gentle step-by-step feel.     */
/* ---------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
    :is(.quform-elements-7, .quform-elements-10) .quform-element {
        animation: ph-rise 0.55s var(--ph-ease) backwards;
    }

    /* Soft stagger on first paint for the initially visible fields */
    :is(.quform-elements-7, .quform-elements-10) .quform-element:nth-child(2) { animation-delay: 0.06s; }
    :is(.quform-elements-7, .quform-elements-10) .quform-element:nth-child(3) { animation-delay: 0.12s; }
    :is(.quform-elements-7, .quform-elements-10) .quform-element:nth-child(4) { animation-delay: 0.18s; }
    :is(.quform-elements-7, .quform-elements-10) .quform-element:nth-child(5) { animation-delay: 0.24s; }
}

@keyframes ph-rise {
    from {
        opacity: 0;
        transform: translateY(0.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------------- */
/* Mobile                                                            */
/* ---------------------------------------------------------------- */

@media (max-width: 767px) {
    :is(.quform-elements-7, .quform-elements-10) {
    }

    :is(.quform-elements-7, .quform-elements-10) .quform-input-radio .quform-option {
        flex-basis: 100% !important;
    }

    :is(.quform-elements-7, .quform-elements-10) .quform-element > .quform-spacer {
        padding-bottom: 1.375rem;
    }
}

/* ================================================================ */
/* Kendo calendar popup (renders at body level, outside the form)    */
/* Scoped to Kendo's own container classes only.                     */
/* ================================================================ */

.k-animation-container .k-calendar-container,
.k-calendar-container {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(1, 92, 128, 0.16);
    box-shadow:
        0 24px 48px -16px rgba(2, 61, 86, 0.28),
        0 4px 12px rgba(2, 61, 86, 0.08);
}

.k-calendar-container .k-calendar {
    font-family: 'Euclid Circular Light', sans-serif;
    border: 0;
}

.k-calendar-container .k-calendar .k-header {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(1, 92, 128, 0.1);
    padding: 0.375rem 0;
}

.k-calendar-container .k-calendar .k-header .k-link {
    color: #023D56;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
}

.k-calendar-container .k-calendar .k-content .k-link {
    border-radius: 0.625rem;
    color: #10262E;
    font-size: 0.9375rem;
    transition: background-color 0.25s ease-out;
}

.k-calendar-container .k-calendar .k-content .k-link:hover {
    background: #E8F3F8;
}

.k-calendar-container .k-calendar td.k-state-selected .k-link,
.k-calendar-container .k-calendar td.k-state-selected.k-state-focused .k-link {
    background: #015C80;
    color: #FFFFFF;
}

.k-calendar-container .k-calendar td.k-today .k-link {
    box-shadow: inset 0 0 0 1.5px rgba(1, 92, 128, 0.5);
    color: #015C80;
}

.k-calendar-container .k-calendar td.k-state-disabled .k-link,
.k-calendar-container .k-calendar .k-state-disabled {
    opacity: 0.35;
}

.k-calendar-container .k-footer .k-nav-today,
.k-calendar-container .k-calendar .k-footer .k-link {
    color: #015C80;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
}

/* ================================================================ */
/* Select2 loading state                                             */
/* .ph-loading is toggled on the field's .quform-element by          */
/* his-booking-form-ui.js while the departemen API call is in        */
/* flight. Spinner replaces the chevron, text says what's loading,   */
/* and the control is locked so it can't be opened mid-request.      */
/* ================================================================ */

:is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection--single {
    pointer-events: none;
    cursor: wait;
}

:is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection__placeholder,
:is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection__rendered > * {
    display: none;
}

:is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection__rendered::before {
    content: "Memuat daftar poli\2026";
    color: var(--ph-muted);
}

:is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection__arrow {
    background-image: none;
    transform: none;
}

:is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.125rem;
    height: 1.125rem;
    margin: -0.5625rem 0 0 -0.5625rem;
    border-radius: 50%;
    border: 2px solid rgba(1, 92, 128, 0.2);
    border-top-color: var(--ph-brand);
    animation: ph-spin 0.8s linear infinite;
}

@keyframes ph-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    :is(.quform-elements-7, .quform-elements-10) .ph-loading .select2-selection__arrow::after {
        animation-duration: 1.6s;
    }
}

/* ================================================================ */
/* Form 10 — "Buat Janji dari Cari Dokter" (multi-page)              */
/* Everything above already applies via the shared :is() scope;      */
/* below are the components only this form has.                      */
/* ================================================================ */

/* Section divider before the statement, mirroring form 7 */
:is(.quform-elements-7, .quform-elements-10) .quform-element-10_28 {
    margin-top: 0.375rem;
    padding-top: 1.625rem;
    border-top: 1px solid rgba(1, 92, 128, 0.09);
}

/* ---------------------------------------------------------------- */
/* Password fields — same skin as text inputs                        */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-field-password {
    -webkit-appearance: none;
    appearance: none;
    width: 100% !important;
    min-height: 3.5rem !important;
    padding: 0 1.125rem !important;
    font-family: 'Euclid Circular Light', sans-serif !important;
    font-size: 1.0625rem !important;
    line-height: 1.4 !important;
    color: var(--ph-ink) !important;
    background-color: var(--ph-field-bg) !important;
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: var(--ph-radius-field) !important;
    box-shadow: none !important;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        box-shadow 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-password:hover {
    border-color: var(--ph-line-strong) !important;
    background-color: #FFFFFF !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-field-password:focus {
    outline: none !important;
    border-color: var(--ph-brand) !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.13) !important;
}

/* ---------------------------------------------------------------- */
/* Multi-page buttons — Berikutnya / Kembali + Buat Janji            */
/* The submit element becomes a flex row: the back button sits       */
/* beside the primary button on desktop, both stack on phones.       */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

:is(.quform-elements-7, .quform-elements-10) .quform-button-submit,
:is(.quform-elements-7, .quform-elements-10) .quform-button-next {
    display: block !important;
    float: none !important;
    flex: 2 1 14rem !important;
    width: auto !important;
    margin: 0 !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-button-back {
    display: block !important;
    float: none !important;
    flex: 1 1 8rem !important;
    width: auto !important;
    margin: 0 !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-loading {
    flex: 0 0 auto;
}

/* Secondary "Kembali" — quiet outline pill with a leading arrow.
   !important beats the theme's `.quform-back { ... !important }`
   rule via higher specificity. */
:is(.quform-elements-7, .quform-elements-10) .quform-element-submit button.quform-back {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 3.75rem;
    margin: 0 !important;
    padding: 0 1.75rem;
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: 999px;
    background: #FFFFFF !important;
    color: var(--ph-brand-deep) !important;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 1.0625rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease),
        transform 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit button.quform-back::before {
    content: "\2190";
    font-size: 1.125rem;
    line-height: 1;
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit button.quform-back:hover {
    border-color: var(--ph-line-strong) !important;
    background: var(--ph-soft) !important;
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit button.quform-back:active {
    transform: scale(0.98);
}

:is(.quform-elements-7, .quform-elements-10) .quform-element-submit button.quform-back:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 92, 128, 0.2);
}

/* ---------------------------------------------------------------- */
/* Inline jQuery UI calendar (Tanggal Berobat on form 10)            */
/* Days with available schedule render as <a> — tinted brand pills   */
/* so bookable dates are obvious; disabled days stay quiet.          */
/* ---------------------------------------------------------------- */

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker {
    width: 100% !important;
    padding: 1rem !important;
    background: #FFFFFF !important;
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: var(--ph-radius-field) !important;
    box-shadow: none !important;
    font-family: 'Euclid Circular Light', sans-serif !important;
    font-size: 1rem;
    color: var(--ph-ink);
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-header {
    background: transparent !important;
    border: 0 !important;
    padding: 0.25rem 0 0.75rem;
    font-weight: normal;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-title {
    line-height: 2.25rem;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    font-size: 1.0625rem;
    color: var(--ph-ink);
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-prev,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-next {
    top: 0.25rem !important;
    width: 2.25rem !important;
    height: 2.25rem !important;
    border: 1.5px solid var(--ph-field-border) !important;
    border-radius: 50% !important;
    background-color: #FFFFFF !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    cursor: pointer;
    transition:
        border-color 0.45s var(--ph-ease),
        background-color 0.45s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-prev {
    left: 0.25rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23015C80' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E") !important;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-next {
    right: 0.25rem !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23015C80' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") !important;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-prev:hover,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-next:hover {
    border-color: var(--ph-line-strong) !important;
    background-color: var(--ph-soft) !important;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-prev.ui-state-disabled,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-next.ui-state-disabled {
    opacity: 0.35;
    cursor: default;
}

/* Hide jQuery UI's sprite icons — the SVG chevrons above replace them */
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-prev .ui-icon,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-next .ui-icon {
    opacity: 0;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 2px;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar th {
    padding: 0.5rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ph-muted);
    font-weight: 600;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td {
    padding: 0;
    text-align: center;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td span.ui-state-default,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td a.ui-state-default {
    display: block;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0;
    border: 0 !important;
    border-radius: 0.625rem;
    background: transparent !important;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--ph-ink);
}

/* Bookable dates (anchors) pop with a brand tint */
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td a.ui-state-default {
    background: var(--ph-soft) !important;
    color: var(--ph-brand-deep) !important;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    cursor: pointer;
    transition: background-color 0.25s var(--ph-ease);
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td a.ui-state-default:hover {
    background: #D4E9F2 !important;
}

/* Unavailable dates stay quiet */
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td.ui-state-disabled span.ui-state-default {
    color: var(--ph-muted);
    opacity: 0.5;
}

/* Today: outlined; selected day: solid brand */
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-today span.ui-state-default,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-today a.ui-state-default {
    box-shadow: inset 0 0 0 1.5px rgba(1, 92, 128, 0.5);
    opacity: 1;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day span.ui-state-default,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-default,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td a.ui-state-default.ui-state-active {
    background: var(--ph-brand) !important;
    border: 0 !important;
    color: #FFFFFF !important;
    font-family: 'Century-Bold', 'Euclid Circular Light', sans-serif;
    opacity: 1;
    box-shadow: 0 4px 10px -2px rgba(1, 92, 128, 0.45);
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a.ui-state-default:hover,
:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td a.ui-state-default.ui-state-active:hover {
    background: var(--ph-brand-deep) !important;
    color: #FFFFFF !important;
}

:is(.quform-elements-7, .quform-elements-10) .doctor-appointment-datepicker .ui-datepicker-calendar td a.ui-state-default:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 92, 128, 0.25);
}
