.dextur-turnero {
    max-width: 1040px;
    margin: 40px auto;
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
    position: relative
}

.dextur-turnero.is-direct-loading {
    min-height: 420px
}

.dextur-direct-loading {
    position: absolute;
    inset: 0;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(5px)
}

.dextur-turnero.is-direct-loading .dextur-direct-loading {
    display: flex
}

.dextur-direct-loading__box {
    width: min(360px, 100%);
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    text-align: center;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .12)
}

.dextur-direct-loading__box strong {
    font-size: 18px
}

.dextur-direct-loading__box span:not(.dextur-direct-loading__spinner) {
    color: #667085;
    font-size: 14px;
    line-height: 1.45
}

.dextur-direct-loading__spinner {
    width: 34px;
    height: 34px;
    border: 3px solid #e5e7eb;
    border-top-color: #111827;
    border-radius: 50%;
    animation: dextur-spin .8s linear infinite
}

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

.dextur-turnero__header {
    margin-bottom: 24px
}

.dextur-step-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3730a3;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.dextur-turnero__header h2 {
    margin: 14px 0 8px;
    font-size: 32px;
    line-height: 1.15
}

.dextur-turnero__header p {
    margin: 0;
    color: #667085;
    font-size: 16px
}

.dextur-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0 25px
}

.dextur-step {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e4e7ec;
    font-weight: 700;
    color: #475467;
    text-align: center
}

.dextur-step.is-active {
    background: #e1e1e1 !important;
    color: #fff;
    border-color: #111827
}

.dextur-step.is-complete {
    background: #ecfdf3;
    color: #027a48;
    border-color: #abefc6
}

.dextur-step-panel {
    display: none
}

.dextur-step-panel.is-active {
    display: block
}

.dextur-type-grid,
.dextur-adviser-grid,
.dextur-slot-grid,
.dextur-fields-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.dextur-type-card,
.dextur-adviser-card,
.dextur-slot-card {
    position: relative;
    border: 1px solid #e4e7ec;
    background: #fff;
    border-radius: 22px;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: all .2s ease
}

.dextur-type-card:hover,
.dextur-adviser-card:hover,
.dextur-slot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .08)
}

.dextur-type-card.is-selected,
.dextur-adviser-card.is-selected,
.dextur-slot-card.is-selected {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, .08)
}

.dextur-type-card__accent {
    display: block;
    width: 52px;
    height: 6px;
    border-radius: 999px;
    margin-bottom: 16px
}

.dextur-type-card strong,
.dextur-adviser-card strong,
.dextur-slot-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: #111827;
}

.dextur-type-card span,
.dextur-adviser-card span,
.dextur-slot-card span,
.dextur-type-card small {
    display: block;
    color: #667085
}

.dextur-advisers-box {
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    overflow: hidden;
    background: #fff
}

.dextur-advisers-box .dextur-adviser-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.dextur-slots-box .dextur-slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.dextur-adviser-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px 12px;
    border-radius: 14px;
    text-align: left
}

.dextur-adviser-card__photo {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    background: #e4e7ec;
    border: 1px solid #d0d5dd
}

.dextur-adviser-card__photo--fallback {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #111827 !important;
    font-weight: 800;
    font-size: 13px
}

.dextur-adviser-card strong {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    overflow-wrap: anywhere
}

.dextur-adviser-card span:not(.dextur-adviser-card__photo) {
    display: none
}

.dextur-slots-box .dextur-slot-card {
    padding: 9px 14px;
    border-radius: 14px;
    min-width: 0;
    width: auto
}

.dextur-slots-box .dextur-slot-card strong {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap
}

.dextur-fields-row {
    display: grid;
    grid-template-columns: minmax(0, 260px);
    gap: 16px;
    margin-bottom: 20px
}

.dextur-fields-row--step-2 {
    grid-template-columns: repeat(2, minmax(0, 260px));
    align-items: end
}

.dextur-step-panel[data-panel="2"]>.dextur-fields-row--step-2 {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 260px));
    align-items: end;
    gap: 16px;
    margin-bottom: 20px;
    padding: 60px 20px 20px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #fff;
    overflow: hidden
}

.dextur-step-panel[data-panel="2"]>.dextur-fields-row--step-2::before {
    content: "Fecha";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #e4e7ec;
    background: #f8fafc;
    color: #111827;
    font-weight: 700
}

.dextur-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111827
}

.dextur-field input,
.dextur-field textarea,
.dextur-field select {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    padding: 10px 14px;
    background: #fff
}

.dextur-field--full {
    grid-column: 1/-1
}

.dextur-slots-box {
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    overflow: hidden;
    background: #fff
}

.dextur-slots-box__header {
    padding: 10px 20px;
    font-weight: 700;
    background: #f8fafc;
    border-bottom: 1px solid #e4e7ec
}

.dextur-slots-box__content {
    padding: 20px
}

.dextur-summary,
.dextur-confirmation-card {
    padding: 22px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e4e7ec
}

.dextur-summary h4 {
    margin: 0 0 12px
}

.dextur-summary ul {
    margin: 0;
    padding-left: 18px
}

.dextur-summary li {
    margin-bottom: 6px
}

.dextur-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.dextur-btn {
    border: 0;
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 700;
    cursor: pointer
}

.dextur-btn--primary {
    background: #111827;
    color: #fff
}

.dextur-btn--primary:disabled {
    opacity: .5;
    cursor: not-allowed
}

.dextur-btn--ghost {
    background: #f2f4f7;
    color: #111827
}

.dextur-loading,
.dextur-empty {
    padding: 0;
    border-radius: 14px;
    background: #f8fafc;
    color: #475467
}

.dextur-alert {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 16px
}

.dextur-alert--success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6
}

.dextur-alert--error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca
}

.dextur-shortcode-note {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f6f8fc;
    border: 1px solid #dbe5f1;
    color: #334155
}

.dextur-external-form {
    margin-top: 16px
}

.dextur-external-form form {
    margin: 0
}

.dextur-external-form .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}

.dextur-external-form .wpcf7-form p {
    margin: 0
}

.dextur-external-form .wpcf7-form p:has(textarea),
.dextur-external-form .wpcf7-form p:has(input[type="submit"]),
.dextur-external-form .dextur-cf7-full {
    grid-column: 1/-1
}

.dextur-external-form label {
    display: block;
    margin: 0;
    font-weight: 700;
    color: #111827
}

.dextur-external-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px
}

.dextur-external-form input:not([type="hidden"]):not([type="submit"]),
.dextur-external-form textarea,
.dextur-external-form select {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    padding: 10px 14px;
    background: #fff;
    color: #111827;
    font: inherit;
    box-sizing: border-box
}

.dextur-external-form textarea {
    min-height: 120px;
    resize: vertical
}

.dextur-external-form input[type="submit"],
.dextur-external-form button[type="submit"] {
    border: 0;
    border-radius: 14px;
    padding: 14px 20px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

.dextur-external-form .wpcf7-spinner {
    margin: 0 0 0 12px;
    vertical-align: middle
}

.dextur-external-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px
}

.dextur-external-form .wpcf7-response-output {
    grid-column: 1/-1;
    margin: 0 !important;
    padding: 12px 14px !important;
    border-radius: 12px
}

.dextur-external-form .dextur-cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}

.dextur-external-form .dextur-cf7-field,
.dextur-external-form .dextur-cf7-actions {
    min-width: 0
}

.dextur-external-form .dextur-cf7-field--full,
.dextur-external-form .dextur-cf7-actions {
    grid-column: 1/-1
}

.dextur-external-form .dextur-cf7-field label {
    display: block;
    margin: 0 0 8px;
    font-weight: 700;
    color: #111827
}

.dextur-external-form .dextur-cf7-field .wpcf7-form-control-wrap {
    margin-top: 0
}

.dextur-external-form .dextur-cf7-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px
}

.dextur-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important
}

@media (max-width:900px) {

    .dextur-steps,
    .dextur-type-grid,
    .dextur-adviser-grid,
    .dextur-slot-grid,
    .dextur-fields-grid {
        grid-template-columns: 1fr
    }

    .dextur-turnero {
        padding: 20px
    }

    .dextur-turnero__header h2 {
        font-size: 26px
    }

    .dextur-fields-row--step-2 {
        grid-template-columns: 1fr
    }
}

/* Step labels from markup, with encoding-safe fallback for step 4 */
.dextur-step {
    grid-template-areas: "number copy";
    color: #0f172a;
    text-indent: 0
}

.dextur-step::before {
    grid-area: number
}

.dextur-step[data-step]::after {
    content: none
}

.dextur-step__title,
.dextur-step__subtitle {
    display: block;
    grid-column: 2;
    text-indent: 0;
    white-space: normal
}

.dextur-step__title {
    align-self: end;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700
}

.dextur-step__subtitle {
    align-self: start;
    margin-top: -8px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
    padding-top: 0.5rem;
}


/* Step 1 visual layout */
.dextur-turnero {
    max-width: 1180px;
    padding: 40px 42px 28px;
    border-color: #e6eaf2;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10)
}

.dextur-turnero__header {
    margin-bottom: 60px;
    text-align: center
}

.dextur-turnero__header h3 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: #0f172a;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none !important
}

.dextur-turnero__header h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: #2563eb;
    transform: translateX(-50%)
}

.dextur-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
    padding: 0 14px
}

.dextur-step {
    position: relative;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 14px 18px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #0f172a;
    text-align: left;
    font-size: 0;
    box-shadow: none
}

.dextur-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    width: 28px;
    height: 1px;
    background: #d7dce7;
    transform: translateY(-50%)
}

.dextur-step::before {
    content: attr(data-step);
    display: inline-flex;
    grid-column: 1;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #d9dee8;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    font-size: 18px;
    font-weight: 800;
    box-shadow: inset 0 1px 4px rgba(15, 23, 42, .05)
}

.dextur-step.is-active {
    background: #f4f7fb;
    color: #0f172a;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05)
}

.dextur-step.is-active::before {
    border-color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .24)
}

.dextur-step.is-complete {
    background: transparent;
    color: #0f172a;
    border-color: transparent
}

.dextur-step.is-complete::before {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb
}

.dextur-step {
    font-weight: 800
}

.dextur-step[data-step="1"] {
    font-size: 0
}

.dextur-step[data-step="1"]::marker,
.dextur-step[data-step="2"]::marker,
.dextur-step[data-step="3"]::marker,
.dextur-step[data-step="4"]::marker {
    content: ""
}

.dextur-step[data-step="1"],
.dextur-step[data-step="2"],
.dextur-step[data-step="3"],
.dextur-step[data-step="4"] {
    color: transparent
}

.dextur-step[data-step="1"]::selection,
.dextur-step[data-step="2"]::selection,
.dextur-step[data-step="3"]::selection,
.dextur-step[data-step="4"]::selection {
    background: transparent
}

.dextur-step[data-step="1"] {
    --step-title: "Tipo de turno";
    --step-subtitle: "Seleccioná el motivo"
}

.dextur-step[data-step="2"] {
    --step-title: "Fecha y horario";
    --step-subtitle: "Elegí cuándo preferís venir"
}

.dextur-step[data-step="3"] {
    --step-title: "Tus datos";
    --step-subtitle: "Completá tu información"
}

.dextur-step[data-step="4"] {
    --step-title: "Confirmación";
    --step-subtitle: "Revisá y confirmá tu turno"
}

.dextur-step .dextur-step__text {
    display: none
}

.dextur-step {
    text-indent: -9999px
}

.dextur-step::before,
.dextur-step::after {
    text-indent: 0
}

.dextur-step[data-step] {
    grid-template-areas: "number copy"
}

.dextur-step[data-step]::before {
    grid-area: number
}

.dextur-step[data-step]::after {
    text-indent: 0
}


.dextur-step[data-step]:not(:last-child) {
    isolation: isolate
}

.dextur-step[data-step]:not(:last-child)::before {
    z-index: 1
}

.dextur-step[data-step]:not(:last-child) .dextur-step-line {
    display: none
}

.dextur-step[data-step]:not(:last-child)::after {
    background: none
}

.dextur-step[data-step]:not(:last-child)::before {
    box-sizing: border-box
}

.dextur-step-panel[data-panel="1"]::before {
    content: none;
    display: none
}

.dextur-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 0 36px 42px;
    border-bottom: 1px solid #e5e7eb
}

.dextur-type-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid #e1e5ec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
    color: #0f172a
}

.dextur-type-card:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--dextur-type-color, #2563eb) 45%, #d1d5db);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .06)
}

.dextur-type-card.is-selected {
    border-color: var(--dextur-type-color, #2563eb);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .055), 0 0 0 1px var(--dextur-type-color, #2563eb)
}

.dextur-type-card::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 22px;
    width: 20px;
    height: 20px;
    border: 1px solid #727272;
    border-radius: 50%;
    background: #fff
}

.dextur-type-card.is-selected::after {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: var(--dextur-type-color, #2563eb);
    background: var(--dextur-type-color, #2563eb);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.dextur-type-card__accent {
    display: block !important;
    width: 34px;
    height: 3px;
    margin: 12px 0 18px;
    border-radius: 999px;
    background: var(--dextur-type-color, #2563eb) !important
}

.dextur-type-card strong {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.25;
}

.dextur-type-card>span:not(.dextur-type-card__accent) {
    max-width: 360px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.55
}

.dextur-type-card small {
    display: inline-flex;
    width: auto;
    margin-top: 22px;
    color: var(--dextur-type-color, #2563eb) !important;
    font-size: 14px;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--dextur-type-color, #2563eb) 12%, transparent)
}

.dextur-type-card small strong {
    display: inline;
    margin: 0;
    color: inherit;
    font-size: inherit
}

.dextur-step-panel[data-panel="1"] .dextur-step-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.dextur-step-panel[data-panel="1"] .dextur-btn--primary {
    min-width: 190px;
    padding: 13px 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .26)
}

@media (max-width:900px) {
    .dextur-turnero {
        margin: 20px auto;
        padding: 24px 18px
    }

    .dextur-turnero__header h3 {
        font-size: 27px
    }

    .dextur-steps {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0
    }

    .dextur-step {
        min-height: 66px
    }

    .dextur-type-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 0 28px
    }

    .dextur-type-card {
        min-height: 230px;
        padding: 24px
    }
}

.dextur-step {
    border: 1px solid #d3d3d3;
}

/* Mobile step carousel: show only the active step */
@media (max-width:900px) {
    .dextur-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        width: 100% !important
    }

    .dextur-step {
        display: none !important;
        width: 100% !important;
        min-height: 92px !important
    }

    .dextur-step.is-active {
        display: grid !important;
        grid-template-columns: 64px minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        column-gap: 18px !important;
        align-items: center !important
    }

    .dextur-step.is-active::before {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important
    }

    .dextur-step.is-active .dextur-step__title {
        grid-column: 2 !important;
        grid-row: 1 !important;
        align-self: end !important
    }

    .dextur-step.is-active .dextur-step__subtitle {
        grid-column: 2 !important;
        grid-row: 2 !important;
        align-self: start !important
    }

    .dextur-step.is-active::after {
        content: none !important
    }
}

/* Adviser selector nested with date and branch */
.dextur-step-panel[data-panel="2"]>.dextur-fields-row--step-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important
}

.dextur-advisers-field {
    margin: 0 !important;
    min-width: 0;
    overflow: visible !important
}

.dextur-advisers-field .dextur-slots-box__header {
    padding: 0 0 8px;
    border: 0;
    background: transparent
}

.dextur-advisers-field .dextur-slots-box__content {
    min-height: 48px;
    padding: 0;
    overflow: visible !important
}

.dextur-step-panel[data-panel="2"]>.dextur-fields-row--step-2 {
    overflow: visible !important
}

.dextur-advisers-field .dextur-adviser-grid {
    gap: 8px
}

.dextur-advisers-field .dextur-empty,
.dextur-advisers-field .dextur-loading {
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    background: #fff
}

.dextur-adviser-select {
    position: relative;
    width: 100%
}

.dextur-adviser-select__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 6px 42px 6px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    text-align: left;
    cursor: pointer;
    overflow: hidden
}

.dextur-adviser-select__toggle strong {
    min-width: 0;
    overflow: hidden;
    color: #111827;
    font-size: 14px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap
}

.dextur-adviser-select__toggle .dextur-adviser-card__photo {
    flex: 0 0 34px;
    width: 34px;
    height: 34px
}

.dextur-adviser-select__toggle::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #475467;
    border-bottom: 2px solid #475467;
    transform: translateY(-65%) rotate(45deg)
}

.dextur-adviser-select__placeholder {
    color: #475467
}

.dextur-adviser-select__menu {
    display: none;
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    max-height: 260px;
    overflow: auto;
    padding: 6px;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .12)
}

.dextur-adviser-select.is-open .dextur-adviser-select__menu {
    display: grid;
    gap: 6px
}

.dextur-adviser-select .dextur-adviser-card {
    width: 100%;
    border-radius: 10px;
    border-color: transparent;
    background: #fff
}

.dextur-adviser-select .dextur-adviser-card:hover,
.dextur-adviser-select .dextur-adviser-card.is-selected {
    transform: none;
    border-color: #d0d5dd;
    background: #f8fafc;
    box-shadow: none
}

@media (max-width:900px) {
    .dextur-step-panel[data-panel="2"]>.dextur-fields-row--step-2 {
        grid-template-columns: 1fr !important
    }
}

#dextur_branch_select {
    min-height: 48px !important;
}

@media (max-width:640px) {
    .dextur-external-form .wpcf7-form,
    .dextur-external-form .dextur-cf7-grid {
        grid-template-columns: 1fr
    }

    .dextur-external-form .form-row {
        display: block;
        margin-left: 0;
        margin-right: 0
    }

    .dextur-external-form .form-group {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 18px
    }

    .dextur-external-form label {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.25
    }

    .dextur-external-form input:not([type="hidden"]):not([type="submit"]),
    .dextur-external-form textarea,
    .dextur-external-form select {
        min-height: 44px;
        border-radius: 14px
    }

    .dextur-external-form textarea.form-control,
    .dextur-external-form textarea {
        min-height: 110px
    }

    .dextur-external-form .dextur-cf7-actions,
    .dextur-external-form .form-row.align-items-center {
        margin-top: 8px
    }
}
