/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-page-title-panel[b-76mlt6gdmt] {
    margin: 1rem 1rem 0 0.75rem;
    min-height: 5.2rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid var(--rz-border-color);
    border-radius: 6px;
    background: var(--rz-surface);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.app-page-title-panel h1[b-76mlt6gdmt] {
    margin: 0;
    font-size: clamp(1.75rem, 2.3vw, 2.4rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--rz-text-color);
}

.app-page-help-button[b-76mlt6gdmt] {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 50% !important;
}

/* Alte seiteninterne Intro-Koepfe werden durch den zentralen Titelblock ersetzt. */
[b-76mlt6gdmt] .app-page-shell > .rz-stack > .rz-card:first-child:has(.rz-text-h3),
[b-76mlt6gdmt] .app-page-shell > .rz-stack > .app-callout-card:first-child,
[b-76mlt6gdmt] .app-page-shell > .rz-stack > div:first-child:has(.app-page-intro) {
    display: none !important;
}

/* Falls eine Seite ohne RadzenStack mit einem reinen Intro beginnt. */
[b-76mlt6gdmt] .app-page-shell > div:first-child:has(> .app-page-intro) {
    display: none !important;
}

@media (max-width: 720px) {
    .app-page-title-panel[b-76mlt6gdmt] {
        margin: 0.75rem 0.75rem 0 0.75rem;
        min-height: 4.5rem;
        padding: 0.85rem 1rem;
    }

    .app-page-title-panel h1[b-76mlt6gdmt] {
        font-size: 1.7rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-zn7zx189o1],
.components-reconnect-repeated-attempt-visible[b-zn7zx189o1],
.components-reconnect-failed-visible[b-zn7zx189o1],
.components-pause-visible[b-zn7zx189o1],
.components-resume-failed-visible[b-zn7zx189o1],
.components-rejoining-animation[b-zn7zx189o1] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-retrying[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-failed[b-zn7zx189o1],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-zn7zx189o1] {
    display: block;
}


#components-reconnect-modal[b-zn7zx189o1] {
    background-color: var(--rz-dialog-background-color);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: var(--rz-dialog-border-radius);
    box-shadow: var(--rz-dialog-shadow);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-zn7zx189o1 0.5s both;
    &[open] {
        animation: components-reconnect-modal-slideUp-b-zn7zx189o1 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-zn7zx189o1 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }

}

#components-reconnect-modal[b-zn7zx189o1]::backdrop {
    background-color: var(--rz-dialog-mask-background-color);
    animation: components-reconnect-modal-fadeInOpacity-b-zn7zx189o1 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-zn7zx189o1 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-zn7zx189o1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-zn7zx189o1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-zn7zx189o1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-zn7zx189o1] {
    margin: 0;
    text-align: center;
}

.components-rejoining-animation[b-zn7zx189o1] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-zn7zx189o1] {
        position: absolute;
        border: 3px solid var(--rz-primary);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-zn7zx189o1 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-zn7zx189o1] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-zn7zx189o1 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/WebItLayout.razor.rz.scp.css */
.webit-layout[b-a7a4cs67fq] {
    min-height: 100dvh;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--rz-primary) 9%, transparent), transparent 36rem),
        linear-gradient(180deg, var(--rz-base-100), var(--rz-base-background-color) 24rem);
}

.webit-layout-header[b-a7a4cs67fq] {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid color-mix(in srgb, var(--rz-base-400) 65%, transparent);
    background: color-mix(in srgb, var(--rz-base-background-color) 86%, transparent);
    backdrop-filter: blur(18px);
}

.webit-layout-header-inner[b-a7a4cs67fq] {
    width: min(1180px, calc(100% - 2rem));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.webit-brand[b-a7a4cs67fq] {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.webit-brand-mark[b-a7a4cs67fq] {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--rz-primary);
    color: var(--rz-on-primary);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--rz-primary) 20%, transparent);
}

.webit-brand > div:last-child[b-a7a4cs67fq] {
    display: grid;
    line-height: 1.1;
}

.webit-brand strong[b-a7a4cs67fq] {
    font-size: .98rem;
}

.webit-brand span[b-a7a4cs67fq] {
    margin-top: .16rem;
    font-size: .72rem;
    color: var(--rz-text-secondary-color);
}

.webit-availability[b-a7a4cs67fq] {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--rz-text-secondary-color);
    font-size: .78rem;
    font-weight: 700;
}

.webit-availability-dot[b-a7a4cs67fq] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rz-success);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--rz-success) 12%, transparent);
}

.webit-layout-main[b-a7a4cs67fq] {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

@media (max-width: 640px) {
    .webit-layout-header-inner[b-a7a4cs67fq],
    .webit-layout-main[b-a7a4cs67fq] {
        width: min(100% - 1rem, 1180px);
    }

    .webit-layout-header-inner[b-a7a4cs67fq] {
        min-height: 62px;
    }

    .webit-availability[b-a7a4cs67fq] {
        font-size: 0;
    }

    .webit-availability[b-a7a4cs67fq]::after {
        content: "Online";
        font-size: .72rem;
    }
}
/* /Components/Pages/ContextHelp.razor.rz.scp.css */
.context-help[b-2lgcc95pqe] {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0.25rem 0 3rem;
    color: var(--rz-text-color);
}

.context-help__intro[b-2lgcc95pqe] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0 1.75rem;
    border-bottom: 1px solid var(--rz-base-300);
}

.context-help__icon[b-2lgcc95pqe] {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--rz-primary);
    background: color-mix(in srgb, var(--rz-primary) 10%, transparent);
}

.context-help__icon svg[b-2lgcc95pqe] {
    width: 28px;
    height: 28px;
}

.context-help__eyebrow[b-2lgcc95pqe] {
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rz-text-secondary-color);
}

.context-help h1[b-2lgcc95pqe],
.context-help h2[b-2lgcc95pqe],
.context-help p[b-2lgcc95pqe] {
    margin-top: 0;
}

.context-help h1[b-2lgcc95pqe] {
    margin-bottom: 0.65rem;
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 1.1;
}

.context-help__intro p[b-2lgcc95pqe] {
    max-width: 780px;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--rz-text-secondary-color);
}

.context-help__section[b-2lgcc95pqe] {
    padding: 2rem 0;
    border-bottom: 1px solid var(--rz-base-300);
}

.context-help__section h2[b-2lgcc95pqe],
.context-help__contact h2[b-2lgcc95pqe] {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.context-help__topics[b-2lgcc95pqe] {
    display: grid;
    gap: 0.7rem;
}

.context-help__topic[b-2lgcc95pqe] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.context-help__check[b-2lgcc95pqe] {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--rz-primary);
    background: color-mix(in srgb, var(--rz-primary) 10%, transparent);
}

.context-help__tip[b-2lgcc95pqe] {
    border-bottom: 0;
}

.context-help__tip > div[b-2lgcc95pqe] {
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: var(--rz-base-100);
}

.context-help__tip p[b-2lgcc95pqe] {
    margin: 0.35rem 0 0;
    line-height: 1.55;
    color: var(--rz-text-secondary-color);
}

.context-help__contact[b-2lgcc95pqe] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    gap: 2.5rem;
    padding: clamp(1.4rem, 3vw, 2.25rem);
    border: 1px solid var(--rz-base-300);
    border-radius: 22px;
    background: var(--rz-base-background-color);
    box-shadow: 0 14px 38px rgba(15, 37, 55, 0.06);
}

.context-help__contact-copy > p[b-2lgcc95pqe] {
    line-height: 1.6;
    color: var(--rz-text-secondary-color);
}

.context-help__context[b-2lgcc95pqe] {
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.context-help__context div[b-2lgcc95pqe] {
    display: grid;
    gap: 0.15rem;
}

.context-help__context dt[b-2lgcc95pqe] {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rz-text-secondary-color);
}

.context-help__context dd[b-2lgcc95pqe] {
    margin: 0;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.context-help__form[b-2lgcc95pqe] {
    padding: 1.25rem;
    border-radius: 18px;
    background: var(--rz-base-100);
}

.context-help__label[b-2lgcc95pqe] {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.context-help__status[b-2lgcc95pqe] {
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

.context-help__status--success[b-2lgcc95pqe] {
    background: color-mix(in srgb, #2e9b63 12%, transparent);
    color: #24784d;
}

.context-help__status--error[b-2lgcc95pqe] {
    background: color-mix(in srgb, #c43b4d 12%, transparent);
    color: #9c2f3e;
}

.context-help__status--info[b-2lgcc95pqe] {
    background: var(--rz-base-200);
}

@media (max-width: 860px) {
    .context-help__contact[b-2lgcc95pqe] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 560px) {
    .context-help[b-2lgcc95pqe] {
        padding-bottom: 1.5rem;
    }

    .context-help__intro[b-2lgcc95pqe] {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding-top: 0.75rem;
    }

    .context-help__icon[b-2lgcc95pqe] {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .context-help__contact[b-2lgcc95pqe] {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding: 1rem;
        border-radius: 18px;
    }

    .context-help__form[b-2lgcc95pqe] {
        padding: 0;
        background: transparent;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-shell[b-v904plyvwo],
.login-shell *[b-v904plyvwo] {
    box-sizing: border-box;
}

.login-shell[b-v904plyvwo] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    overflow: hidden;
    color: #0b2a49;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f5f9fc;
}

.login-brand-panel[b-v904plyvwo] {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 4.3rem 4.7vw 3rem;
    background:
        linear-gradient(90deg, rgba(244, 251, 255, 0.98) 0%, rgba(244, 251, 255, 0.93) 55%, rgba(244, 251, 255, 0.58) 100%),
        linear-gradient(145deg, #f8fcff 0%, #dfeef7 100%);
}

.login-brand-panel[b-v904plyvwo]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0)),
        radial-gradient(circle at 70% 34%, rgba(60, 177, 111, 0.24), transparent 17%),
        radial-gradient(circle at 12% 87%, rgba(67, 177, 123, 0.18), transparent 18%),
        radial-gradient(circle at 82% 87%, rgba(33, 65, 96, 0.22), transparent 24%);
    filter: blur(3px);
}

.login-visual-orb[b-v904plyvwo] {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.46;
    pointer-events: none;
}

.login-visual-orb-one[b-v904plyvwo] {
    width: 230px;
    height: 230px;
    right: -45px;
    top: 30%;
    background: #63b976;
}

.login-visual-orb-two[b-v904plyvwo] {
    width: 150px;
    height: 150px;
    left: -40px;
    bottom: 1%;
    background: #7bc795;
}

.login-laptop-shape[b-v904plyvwo] {
    position: absolute;
    width: 330px;
    height: 185px;
    right: -55px;
    bottom: 6%;
    border-radius: 14px 14px 4px 4px;
    transform: rotate(-4deg) skewX(-3deg);
    background: linear-gradient(145deg, rgba(53, 78, 101, .56), rgba(18, 43, 67, .82));
    box-shadow: 0 42px 54px rgba(24, 50, 70, .22);
    filter: blur(2.5px);
    opacity: .7;
}

.login-laptop-shape[b-v904plyvwo]::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 26px;
    left: -32px;
    bottom: -22px;
    border-radius: 4px 4px 18px 18px;
    background: linear-gradient(180deg, #95a8b8, #c7d3dc);
}

.login-brand-content[b-v904plyvwo] {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.login-brand[b-v904plyvwo],
.login-mobile-brand[b-v904plyvwo] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-brand-icon[b-v904plyvwo] {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #10bcc3;
}

.login-brand-icon svg[b-v904plyvwo] {
    width: 100%;
    height: 100%;
}

.login-brand-icon.compact[b-v904plyvwo] {
    width: 54px;
    height: 54px;
}

.login-brand-name[b-v904plyvwo] {
    font-size: clamp(1.8rem, 2.2vw, 2.45rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #092947;
}

.login-brand-tagline[b-v904plyvwo] {
    margin-top: 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: #58728c;
}

.login-hero-copy[b-v904plyvwo] {
    margin-top: clamp(5rem, 11vh, 8rem);
}

.login-eyebrow[b-v904plyvwo] {
    margin-bottom: 1.2rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    color: #58728c;
}

.login-hero-copy h1[b-v904plyvwo],
.login-heading h2[b-v904plyvwo] {
    font-family: inherit;
}

.login-hero-copy h1[b-v904plyvwo] {
    margin: 0;
    max-width: 560px;
    font-size: clamp(3rem, 4.25vw, 4.6rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #082746;
}

.login-hero-copy p[b-v904plyvwo] {
    max-width: 530px;
    margin: 1.65rem 0 0;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.55;
    color: #274d6f;
}

.login-benefits[b-v904plyvwo] {
    margin-top: 2.4rem;
    display: grid;
    gap: 1.2rem;
}

.login-benefit[b-v904plyvwo] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-benefit-icon[b-v904plyvwo] {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #129fe6;
    background: rgba(223, 243, 252, 0.92);
}

.login-benefit-icon svg[b-v904plyvwo] {
    width: 27px;
    height: 27px;
}

.login-benefit > div:last-child[b-v904plyvwo] {
    display: grid;
    gap: 0.2rem;
}

.login-benefit strong[b-v904plyvwo] {
    font-size: 1.06rem;
    font-weight: 800;
    color: #082746;
}

.login-benefit span[b-v904plyvwo] {
    color: #274d6f;
    font-size: 0.98rem;
}

.login-brand-footer[b-v904plyvwo] {
    margin-top: auto;
    padding-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #70859a;
}

.login-brand-footer div[b-v904plyvwo] {
    display: grid;
    gap: 0.15rem;
}

.login-brand-footer strong[b-v904plyvwo] {
    color: #173b5c;
}

.login-brand-line[b-v904plyvwo] {
    width: 3px;
    height: 48px;
    border-radius: 999px;
    background: #10bdc4;
}

.login-form-panel[b-v904plyvwo] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2.2rem 5vw;
    background:
        radial-gradient(circle at 62% 12%, rgba(50, 184, 193, 0.12), transparent 24%),
        linear-gradient(135deg, #f9fbfd 0%, #eef6fa 100%);
}

.login-form-wrap[b-v904plyvwo] {
    width: min(100%, 600px);
}

.login-mobile-brand[b-v904plyvwo] {
    display: none;
    margin-bottom: 1.4rem;
}

.login-card[b-v904plyvwo] {
    padding: clamp(2.6rem, 4.6vw, 4.2rem);
    border: 1px solid rgba(131, 169, 194, 0.15);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 80px rgba(41, 85, 113, 0.14);
    backdrop-filter: blur(18px);
}

.login-heading h2[b-v904plyvwo] {
    margin: 0;
    font-size: clamp(2.3rem, 3vw, 3.15rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #082746;
}

.login-heading p[b-v904plyvwo] {
    margin: 1rem 0 0;
    font-size: 1.04rem;
    line-height: 1.55;
    color: #58728c;
}

.login-error[b-v904plyvwo],
.login-info[b-v904plyvwo] {
    display: flex;
    align-items: flex-start;
}

.login-error[b-v904plyvwo] {
    margin-top: 1.4rem;
    gap: .75rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    color: #8a2030;
    background: #fff0f2;
    border: 1px solid #ffd7dd;
}

.login-error svg[b-v904plyvwo],
.login-info svg[b-v904plyvwo] {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    margin-top: 1px;
}

.login-form[b-v904plyvwo] {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.login-field[b-v904plyvwo] {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0 1.1rem;
    border: 1px solid #cadce8;
    border-radius: 14px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.login-field:focus-within[b-v904plyvwo] {
    border-color: #13afb6;
    box-shadow: 0 0 0 4px rgba(19, 175, 182, 0.11);
}

.login-field > svg[b-v904plyvwo] {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    color: #668099;
}

.login-field input[b-v904plyvwo] {
    width: 100%;
    min-width: 0;
    height: 60px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    color: #123754;
}

.login-field input[b-v904plyvwo]::placeholder {
    color: #8197aa;
    opacity: 1;
}

.login-options[b-v904plyvwo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.1rem 0.1rem;
}

.login-remember[b-v904plyvwo] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    color: #173b5c;
    font-size: 0.96rem;
}

.login-remember input[b-v904plyvwo] {
    width: 19px;
    height: 19px;
    margin: 0;
    accent-color: #129ca3;
}

.login-password-note[b-v904plyvwo] {
    color: #1496c6;
    font-size: 0.93rem;
    font-weight: 600;
}

.login-submit[b-v904plyvwo] {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #149da4, #138b94);
    box-shadow: 0 14px 30px rgba(18, 145, 152, 0.2);
    font-family: inherit;
    font-size: 1.03rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.login-submit:hover[b-v904plyvwo] {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(18, 145, 152, 0.27);
    filter: brightness(1.03);
}

.login-submit svg[b-v904plyvwo] {
    width: 24px;
    height: 24px;
}

.login-divider[b-v904plyvwo] {
    margin: 1.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #71869a;
}

.login-divider[b-v904plyvwo]::before,
.login-divider[b-v904plyvwo]::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #dbe5ec;
}

.login-divider span[b-v904plyvwo] {
    font-size: 0.92rem;
}

.login-info[b-v904plyvwo] {
    gap: 0.9rem;
    padding: 1.05rem 1.15rem;
    border-radius: 16px;
    color: #1a5771;
    font-size: 0.94rem;
    line-height: 1.42;
    background: linear-gradient(135deg, #eefafd, #e7f7f9);
}

.login-info svg[b-v904plyvwo] {
    color: #10b6bd;
}

.login-footer[b-v904plyvwo] {
    margin-top: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: #6c8195;
    font-size: 0.86rem;
}

.login-footer-version[b-v904plyvwo] {
    margin-left: auto;
    font-weight: 700;
    color: #58728c;
}

.login-footer-dot[b-v904plyvwo] {
    color: #a8b7c3;
}

@media (max-width: 1180px) {
    .login-shell[b-v904plyvwo] {
        grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    }

    .login-brand-panel[b-v904plyvwo] {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .login-hero-copy h1[b-v904plyvwo] {
        font-size: clamp(2.8rem, 4vw, 4rem);
    }
}

@media (max-width: 900px) {
    .login-shell[b-v904plyvwo] {
        display: block;
        min-height: 100vh;
        overflow: auto;
    }

    .login-brand-panel[b-v904plyvwo] {
        display: none;
    }

    .login-form-panel[b-v904plyvwo] {
        min-height: 100vh;
        padding: 2rem 1.25rem;
    }

    .login-form-wrap[b-v904plyvwo] {
        width: min(100%, 560px);
    }

    .login-mobile-brand[b-v904plyvwo] {
        display: flex;
    }

    .login-card[b-v904plyvwo] {
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .login-form-panel[b-v904plyvwo] {
        align-items: start;
        padding: 1.1rem;
    }

    .login-mobile-brand[b-v904plyvwo] {
        margin-top: 0.35rem;
    }

    .login-brand-name[b-v904plyvwo] {
        font-size: 1.4rem;
    }

    .login-brand-tagline[b-v904plyvwo] {
        font-size: 0.57rem;
        letter-spacing: 0.18em;
    }

    .login-card[b-v904plyvwo] {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .login-heading h2[b-v904plyvwo] {
        font-size: 2rem;
    }

    .login-heading p[b-v904plyvwo] {
        font-size: 0.95rem;
    }

    .login-field[b-v904plyvwo],
    .login-submit[b-v904plyvwo] {
        min-height: 58px;
    }

    .login-field input[b-v904plyvwo] {
        height: 54px;
    }

    .login-options[b-v904plyvwo] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
    }

    .login-password-note[b-v904plyvwo] {
        display: none;
    }

    .login-footer[b-v904plyvwo] {
        flex-wrap: wrap;
        padding-bottom: 0.5rem;
    }

    .login-footer-version[b-v904plyvwo] {
        margin-left: 0;
    }
}
/* /Components/Pages/WebItSelfService.razor.rz.scp.css */
:host[b-9ysxhrbybg] {
    display: block;
}

.webit-shell[b-9ysxhrbybg] {
    width: 100%;
}

.webit-login-wrap[b-9ysxhrbybg] {
    min-height: calc(100dvh - 96px);
    display: grid;
    place-items: center;
    padding: 2rem 1rem 4rem;
}

.webit-login-card[b-9ysxhrbybg] {
    width: min(100%, 480px);
    padding: 2rem;
    border: 1px solid var(--rz-base-300);
    border-radius: 28px;
    background: color-mix(in srgb, var(--rz-base-background-color) 92%, transparent);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
    backdrop-filter: blur(18px);
}

.webit-login-icon[b-9ysxhrbybg],
.webit-empty-icon[b-9ysxhrbybg],
.webit-success-icon[b-9ysxhrbybg] {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--rz-primary-lighter);
    color: var(--rz-primary);
    font-size: 1.6rem;
}

.webit-login-card h1[b-9ysxhrbybg],
.webit-hero h1[b-9ysxhrbybg],
.webit-section h2[b-9ysxhrbybg],
.webit-form-card h2[b-9ysxhrbybg],
.webit-detail-card h2[b-9ysxhrbybg],
.webit-chat-card h3[b-9ysxhrbybg] {
    margin: .35rem 0 .4rem;
    line-height: 1.08;
}

.webit-login-card h1[b-9ysxhrbybg] {
    font-size: clamp(2rem, 7vw, 3.4rem);
}

.webit-eyebrow[b-9ysxhrbybg] {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--rz-text-secondary-color);
}

.webit-muted[b-9ysxhrbybg],
.webit-hero p[b-9ysxhrbybg] {
    color: var(--rz-text-secondary-color);
    line-height: 1.55;
}

.webit-login-form[b-9ysxhrbybg] {
    display: grid;
    gap: .7rem;
    margin-top: 1.6rem;
}

.webit-login-form label[b-9ysxhrbybg],
.webit-field label[b-9ysxhrbybg] {
    font-weight: 700;
    font-size: .9rem;
}

.webit-login-hint[b-9ysxhrbybg] {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.25rem;
    color: var(--rz-text-secondary-color);
    font-size: .82rem;
}

.webit-hero[b-9ysxhrbybg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0 1.25rem;
}

.webit-hero h1[b-9ysxhrbybg] {
    font-size: clamp(1.9rem, 5vw, 3rem);
}

.webit-hero p[b-9ysxhrbybg] {
    margin: 0;
    max-width: 720px;
}

.webit-hero-actions[b-9ysxhrbybg],
.webit-chat-head[b-9ysxhrbybg] {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.webit-icon-button[b-9ysxhrbybg],
.webit-back-button[b-9ysxhrbybg],
.webit-primary-action[b-9ysxhrbybg],
.webit-secondary-action[b-9ysxhrbybg],
.webit-tab[b-9ysxhrbybg],
.webit-ticket-card[b-9ysxhrbybg] {
    appearance: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.webit-icon-button[b-9ysxhrbybg] {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--rz-base-200);
    color: var(--rz-text-color);
    display: grid;
    place-items: center;
}

.webit-success-banner[b-9ysxhrbybg] {
    display: flex;
    gap: .9rem;
    align-items: center;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--rz-success) 30%, transparent);
    background: color-mix(in srgb, var(--rz-success) 9%, var(--rz-base-background-color));
}

.webit-success-banner div:last-child[b-9ysxhrbybg] {
    display: grid;
    gap: .15rem;
}

.webit-success-banner span[b-9ysxhrbybg] {
    color: var(--rz-text-secondary-color);
    font-size: .9rem;
}

.webit-tabs[b-9ysxhrbybg] {
    position: sticky;
    top: 10px;
    z-index: 20;
    display: flex;
    gap: .35rem;
    width: fit-content;
    max-width: 100%;
    padding: .35rem;
    margin: .5rem 0 1.4rem;
    border: 1px solid var(--rz-base-300);
    border-radius: 18px;
    background: color-mix(in srgb, var(--rz-base-background-color) 90%, transparent);
    backdrop-filter: blur(18px);
    overflow-x: auto;
}

.webit-tab[b-9ysxhrbybg] {
    display: flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    padding: 0 .9rem;
    border-radius: 13px;
    background: transparent;
    color: var(--rz-text-secondary-color);
    white-space: nowrap;
    font-weight: 700;
}

.webit-tab.active[b-9ysxhrbybg] {
    background: var(--rz-primary);
    color: var(--rz-on-primary);
    box-shadow: 0 8px 22px color-mix(in srgb, var(--rz-primary) 25%, transparent);
}

.webit-count[b-9ysxhrbybg] {
    min-width: 22px;
    height: 22px;
    padding: 0 .35rem;
    border-radius: 99px;
    display: inline-grid;
    place-items: center;
    font-size: .72rem;
    background: color-mix(in srgb, currentColor 12%, transparent);
}

.webit-content[b-9ysxhrbybg] {
    padding-bottom: 5rem;
}

.webit-section[b-9ysxhrbybg],
.webit-form-card[b-9ysxhrbybg],
.webit-detail-card[b-9ysxhrbybg],
.webit-chat-card[b-9ysxhrbybg] {
    border: 1px solid var(--rz-base-300);
    border-radius: 24px;
    background: var(--rz-base-background-color);
}

.webit-section[b-9ysxhrbybg],
.webit-form-card[b-9ysxhrbybg],
.webit-detail-card[b-9ysxhrbybg] {
    padding: clamp(1rem, 3vw, 1.6rem);
}

.webit-section-head[b-9ysxhrbybg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.webit-section-head.compact[b-9ysxhrbybg] {
    align-items: flex-start;
}

.webit-primary-action[b-9ysxhrbybg],
.webit-secondary-action[b-9ysxhrbybg] {
    min-height: 46px;
    padding: 0 1rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    font-weight: 750;
}

.webit-primary-action[b-9ysxhrbybg] {
    background: var(--rz-primary);
    color: var(--rz-on-primary);
}

.webit-secondary-action[b-9ysxhrbybg] {
    background: var(--rz-base-200);
    color: var(--rz-text-color);
}

.webit-ticket-grid[b-9ysxhrbybg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
    gap: .8rem;
}

.webit-ticket-card[b-9ysxhrbybg] {
    display: grid;
    gap: .85rem;
    width: 100%;
    min-height: 170px;
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--rz-base-300);
    border-radius: 18px;
    background: var(--rz-base-100);
    color: var(--rz-text-color);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.webit-ticket-card:hover[b-9ysxhrbybg] {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--rz-primary) 45%, var(--rz-base-300));
    box-shadow: 0 16px 36px rgba(0, 0, 0, .06);
}

.webit-ticket-topline[b-9ysxhrbybg],
.webit-ticket-meta[b-9ysxhrbybg],
.webit-ticket-footer[b-9ysxhrbybg] {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-wrap: wrap;
}

.webit-ticket-topline[b-9ysxhrbybg],
.webit-ticket-footer[b-9ysxhrbybg] {
    justify-content: space-between;
}

.webit-ticket-number[b-9ysxhrbybg] {
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .05em;
    color: var(--rz-text-secondary-color);
}

.webit-ticket-title[b-9ysxhrbybg] {
    font-size: 1.06rem;
    line-height: 1.35;
}

.webit-ticket-meta[b-9ysxhrbybg] {
    color: var(--rz-text-secondary-color);
    font-size: .82rem;
}

.webit-ticket-meta span[b-9ysxhrbybg] {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.webit-ticket-meta .rzi[b-9ysxhrbybg] {
    font-size: 1rem;
}

.webit-ticket-footer[b-9ysxhrbybg] {
    margin-top: auto;
    padding-top: .7rem;
    border-top: 1px solid var(--rz-base-300);
    color: var(--rz-text-secondary-color);
    font-size: .82rem;
}

.webit-status[b-9ysxhrbybg] {
    padding: .3rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
}

.webit-status.open[b-9ysxhrbybg] {
    background: color-mix(in srgb, var(--rz-info) 14%, transparent);
    color: var(--rz-info-dark);
}

.webit-status.progress[b-9ysxhrbybg] {
    background: color-mix(in srgb, var(--rz-primary) 14%, transparent);
    color: var(--rz-primary);
}

.webit-status.waiting[b-9ysxhrbybg] {
    background: color-mix(in srgb, var(--rz-warning) 17%, transparent);
    color: var(--rz-warning-dark);
}

.webit-status.done[b-9ysxhrbybg] {
    background: color-mix(in srgb, var(--rz-success) 14%, transparent);
    color: var(--rz-success-dark);
}

.webit-empty-state[b-9ysxhrbybg] {
    min-height: 320px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    gap: .45rem;
    padding: 2rem;
}

.webit-empty-state h3[b-9ysxhrbybg],
.webit-empty-state p[b-9ysxhrbybg] {
    margin: 0;
}

.webit-empty-state p[b-9ysxhrbybg] {
    max-width: 430px;
    color: var(--rz-text-secondary-color);
}

.webit-form-grid[b-9ysxhrbybg] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.webit-field[b-9ysxhrbybg] {
    display: grid;
    gap: .45rem;
}

.webit-field.full[b-9ysxhrbybg] {
    grid-column: 1 / -1;
}

.webit-field label span[b-9ysxhrbybg] {
    font-weight: 500;
    color: var(--rz-text-secondary-color);
}

.webit-upload-zone[b-9ysxhrbybg] {
    position: relative;
    min-height: 140px;
    padding: 1rem;
    border: 1.5px dashed var(--rz-base-400);
    border-radius: 18px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .3rem;
    text-align: center;
    background: var(--rz-base-100);
    cursor: pointer;
}

.webit-upload-zone > .rzi[b-9ysxhrbybg] {
    font-size: 1.8rem;
    color: var(--rz-primary);
}

.webit-upload-zone span[b-9ysxhrbybg] {
    font-size: .8rem;
    color: var(--rz-text-secondary-color);
}

.webit-upload-zone input[type=file][b-9ysxhrbybg] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.webit-files[b-9ysxhrbybg] {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .6rem;
}

.webit-file-chip[b-9ysxhrbybg] {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    max-width: 100%;
    padding: .45rem .6rem;
    border-radius: 12px;
    background: var(--rz-base-200);
    font-size: .82rem;
}

.webit-file-chip span[b-9ysxhrbybg] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.webit-file-chip small[b-9ysxhrbybg] {
    color: var(--rz-text-secondary-color);
    white-space: nowrap;
}

.webit-form-actions[b-9ysxhrbybg] {
    display: flex;
    justify-content: flex-end;
    gap: .7rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rz-base-300);
}

.webit-detail-layout[b-9ysxhrbybg] {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 1rem;
    align-items: start;
}

.webit-back-button[b-9ysxhrbybg] {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: 0;
    margin-bottom: 1rem;
    background: transparent;
    color: var(--rz-primary);
    font-weight: 700;
}

.webit-detail-header h2[b-9ysxhrbybg] {
    margin-top: .55rem;
}

.detail-meta[b-9ysxhrbybg] {
    margin-top: .8rem;
}

.webit-description-box[b-9ysxhrbybg],
.webit-attachments[b-9ysxhrbybg] {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--rz-base-300);
}

.webit-description-box p[b-9ysxhrbybg] {
    margin: .4rem 0 0;
    line-height: 1.6;
    white-space: pre-wrap;
}

.webit-attachment-row[b-9ysxhrbybg] {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem 0;
}

.webit-attachment-row > .rzi[b-9ysxhrbybg] {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--rz-base-200);
}

.webit-attachment-row div[b-9ysxhrbybg] {
    display: grid;
}

.webit-attachment-row span[b-9ysxhrbybg] {
    color: var(--rz-text-secondary-color);
    font-size: .8rem;
}

.webit-chat-card[b-9ysxhrbybg] {
    overflow: hidden;
}

.webit-chat-head[b-9ysxhrbybg] {
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--rz-base-300);
}

.webit-chat-head h3[b-9ysxhrbybg] {
    margin-bottom: 0;
}

.webit-chat-stream[b-9ysxhrbybg] {
    min-height: 360px;
    max-height: 560px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    padding: 1rem;
    background: color-mix(in srgb, var(--rz-base-100) 70%, var(--rz-base-background-color));
}

.webit-message[b-9ysxhrbybg] {
    width: fit-content;
    max-width: min(84%, 560px);
    padding: .7rem .85rem;
    border-radius: 16px;
}

.webit-message.own[b-9ysxhrbybg] {
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    background: var(--rz-primary);
    color: var(--rz-on-primary);
}

.webit-message.service[b-9ysxhrbybg] {
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    background: var(--rz-base-background-color);
    border: 1px solid var(--rz-base-300);
}

.webit-message-author[b-9ysxhrbybg],
.webit-message-time[b-9ysxhrbybg] {
    font-size: .72rem;
    opacity: .72;
}

.webit-message-author[b-9ysxhrbybg] {
    font-weight: 800;
    margin-bottom: .2rem;
}

.webit-message-body[b-9ysxhrbybg] {
    line-height: 1.45;
    white-space: pre-wrap;
}

.webit-message-time[b-9ysxhrbybg] {
    margin-top: .3rem;
    text-align: right;
}

.webit-chat-empty[b-9ysxhrbybg] {
    margin: auto;
    max-width: 360px;
    text-align: center;
    color: var(--rz-text-secondary-color);
    display: grid;
    gap: .5rem;
    place-items: center;
}

.webit-chat-empty .rzi[b-9ysxhrbybg] {
    font-size: 2rem;
}

.webit-reply-box[b-9ysxhrbybg] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .65rem;
    align-items: end;
    padding: .85rem;
    border-top: 1px solid var(--rz-base-300);
    background: var(--rz-base-background-color);
}

@media (max-width: 860px) {
    .webit-detail-layout[b-9ysxhrbybg] {
        grid-template-columns: 1fr;
    }

    .webit-chat-stream[b-9ysxhrbybg] {
        max-height: none;
    }
}

@media (max-width: 640px) {
    .webit-login-wrap[b-9ysxhrbybg] {
        padding: .75rem 0 2rem;
        place-items: start stretch;
    }

    .webit-login-card[b-9ysxhrbybg] {
        border-radius: 22px;
        padding: 1.25rem;
    }

    .webit-hero[b-9ysxhrbybg] {
        padding-top: 1rem;
    }

    .webit-hero-actions[b-9ysxhrbybg] {
        flex-direction: column;
    }

    .webit-tabs[b-9ysxhrbybg] {
        position: sticky;
        top: .5rem;
        width: 100%;
        justify-content: stretch;
    }

    .webit-tab[b-9ysxhrbybg] {
        flex: 1 0 auto;
        justify-content: center;
        padding: 0 .7rem;
    }

    .webit-section[b-9ysxhrbybg],
    .webit-form-card[b-9ysxhrbybg],
    .webit-detail-card[b-9ysxhrbybg],
    .webit-chat-card[b-9ysxhrbybg] {
        border-radius: 20px;
    }

    .webit-section-head[b-9ysxhrbybg] {
        align-items: flex-start;
    }

    .webit-section-head:not(.compact)[b-9ysxhrbybg] {
        flex-direction: column;
    }

    .webit-section-head .webit-primary-action[b-9ysxhrbybg] {
        width: 100%;
    }

    .webit-form-grid[b-9ysxhrbybg] {
        grid-template-columns: 1fr;
    }

    .webit-field.full[b-9ysxhrbybg] {
        grid-column: auto;
    }

    .webit-form-actions[b-9ysxhrbybg] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .webit-form-actions > *[b-9ysxhrbybg] {
        width: 100%;
    }

    .webit-reply-box[b-9ysxhrbybg] {
        grid-template-columns: 1fr;
    }

    .webit-reply-box > *:last-child[b-9ysxhrbybg] {
        width: 100%;
    }

    .webit-message[b-9ysxhrbybg] {
        max-width: 90%;
    }
}

@media (max-width: 390px) {
    .webit-tab span:not(.webit-count)[b-9ysxhrbybg] {
        font-size: .78rem;
    }

    .webit-tab[b-9ysxhrbybg] {
        gap: .25rem;
    }

    .webit-ticket-meta[b-9ysxhrbybg] {
        display: grid;
    }
}
