/* /Features/ChatAssistant/Pages/ChatAssistant.razor.rz.scp.css */
.chat-assistant-page[b-n9du5vcvbn] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chat-assistant-shell[b-n9du5vcvbn] {
    background:
        linear-gradient(135deg, rgba(18, 184, 95, 0.08), rgba(255, 255, 255, 0) 38%),
        #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 620px;
    overflow: hidden;
}

.chat-assistant-header[b-n9du5vcvbn] {
    align-items: center;
    border-bottom: 1px solid #e5eaf2;
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.chat-assistant-title[b-n9du5vcvbn] {
    color: #172033;
    font-weight: 750;
    letter-spacing: 0;
}

.chat-assistant-subtitle[b-n9du5vcvbn] {
    color: #526070;
    margin-top: 0.2rem;
}

.chat-assistant-status[b-n9du5vcvbn] {
    align-items: center;
    background: #f5fbf8;
    border: 1px solid #bfecd2;
    border-radius: 999px;
    color: #138a4d;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    white-space: nowrap;
}

.chat-assistant-status span[b-n9du5vcvbn] {
    background: #12b85f;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(18, 184, 95, 0.14);
    display: inline-block;
    height: 8px;
    width: 8px;
}

.chat-assistant-thread[b-n9du5vcvbn] {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.chat-message[b-n9du5vcvbn] {
    display: flex;
    gap: 0.75rem;
    max-width: 100%;
}

.chat-message-user[b-n9du5vcvbn] {
    justify-content: flex-end;
}

.chat-message-results[b-n9du5vcvbn] {
    width: 100%;
}

.chat-avatar[b-n9du5vcvbn] {
    align-items: center;
    background: #172033;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.chat-bubble[b-n9du5vcvbn] {
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    max-width: min(760px, 86%);
    padding: 0.85rem 1rem;
}

.chat-bubble-assistant[b-n9du5vcvbn] {
    background: #f7f9fc;
    border: 1px solid #e1e7ef;
    color: #172033;
}

.chat-bubble-user[b-n9du5vcvbn] {
    background: #172033;
    color: #ffffff;
    max-width: min(680px, 82%);
}

.chat-bubble-wide[b-n9du5vcvbn] {
    max-width: min(1120px, 94%);
}

.chat-message-results .chat-bubble-wide[b-n9du5vcvbn] {
    flex: 1 1 auto;
    max-width: calc(100% - 46px);
    width: calc(100% - 46px);
}

.chat-typing-caret[b-n9du5vcvbn] {
    animation: chat-caret-blink-b-n9du5vcvbn 0.8s infinite;
    background: #12b85f;
    display: inline-block;
    height: 1rem;
    margin-left: 0.15rem;
    transform: translateY(0.16rem);
    width: 2px;
}

.chat-assistant-prompt-text[b-n9du5vcvbn] {
    color: #172033;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.chat-chip-list[b-n9du5vcvbn],
.chat-question-list[b-n9du5vcvbn] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chat-category-chip[b-n9du5vcvbn],
.chat-question-chip[b-n9du5vcvbn] {
    background: #ffffff;
    border: 1px solid #d7dee8;
    border-radius: 999px;
    color: #172033;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.48rem 0.75rem;
    transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.chat-question-chip[b-n9du5vcvbn] {
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 650;
    max-width: 100%;
    text-align: left;
}

.chat-category-chip:hover[b-n9du5vcvbn],
.chat-question-chip:hover[b-n9du5vcvbn] {
    background: #edf8f2;
    border-color: #9bdcb9;
    color: #0f6f3f;
    transform: translateY(-1px);
}

.chat-category-chip.selected[b-n9du5vcvbn] {
    background: #12b85f;
    border-color: #12b85f;
    color: #ffffff;
}

.chat-category-chip:disabled[b-n9du5vcvbn],
.chat-question-chip:disabled[b-n9du5vcvbn] {
    cursor: default;
    opacity: 0.55;
    transform: none;
}

.chat-composer[b-n9du5vcvbn] {
    align-items: flex-end;
    background: #ffffff;
    border-top: 1px solid #e5eaf2;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem 1.25rem;
}

.chat-composer-input[b-n9du5vcvbn]  textarea {
    font-size: 14px;
}

.chat-send-button[b-n9du5vcvbn] {
    height: 44px;
    width: 44px;
}

.chat-dot[b-n9du5vcvbn] {
    animation: chat-dot-pulse-b-n9du5vcvbn 1.2s infinite ease-in-out;
    background: #526070;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    margin-right: 0.2rem;
    width: 7px;
}

.chat-dot:nth-child(2)[b-n9du5vcvbn] {
    animation-delay: 0.15s;
}

.chat-dot:nth-child(3)[b-n9du5vcvbn] {
    animation-delay: 0.3s;
    margin-right: 0;
}

.chat-smart-results-frame[b-n9du5vcvbn] {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    margin-top: 0.65rem;
    overflow: hidden;
}

.chat-smart-results-summary[b-n9du5vcvbn] {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid #e3e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.48rem 0.75rem;
}

.chat-smart-summary-title[b-n9du5vcvbn],
.chat-smart-date-range[b-n9du5vcvbn] {
    align-items: center;
    color: #172033;
    display: inline-flex;
    gap: 0.45rem;
    min-width: 0;
}

.chat-smart-summary-title[b-n9du5vcvbn] {
    font-size: 13.5px;
    font-weight: 760;
}

.chat-smart-date-range[b-n9du5vcvbn] {
    color: #697789;
    font-size: 12.5px;
    font-weight: 650;
}

.chat-smart-status-dot[b-n9du5vcvbn] {
    background: #0b8f47;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(11, 143, 71, 0.08);
    flex: 0 0 7px;
    height: 7px;
    width: 7px;
}

.chat-smart-results-list[b-n9du5vcvbn] {
    display: grid;
    max-height: min(52vh, 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: #c8d2df transparent;
    scrollbar-width: thin;
}

.chat-smart-results-list[b-n9du5vcvbn]::-webkit-scrollbar {
    width: 8px;
}

.chat-smart-results-list[b-n9du5vcvbn]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-smart-results-list[b-n9du5vcvbn]::-webkit-scrollbar-thumb {
    background: #c8d2df;
    border: 2px solid #ffffff;
    border-radius: 999px;
}

.chat-smart-result-card[b-n9du5vcvbn] {
    background: #ffffff;
    display: grid;
}

.chat-smart-result-card + .chat-smart-result-card[b-n9du5vcvbn] {
    border-top: 1px solid #e3e8f0;
}

.chat-smart-result-main[b-n9du5vcvbn] {
    display: grid;
    gap: 0.42rem;
    padding: 0.62rem 0.75rem 0.5rem;
}

.chat-smart-result-heading[b-n9du5vcvbn] {
    align-items: flex-start;
    display: flex;
    gap: 0.55rem;
    justify-content: space-between;
}

.chat-smart-result-case[b-n9du5vcvbn] {
    color: #0f172a;
    font-size: 14px;
    font-weight: 780;
    line-height: 1.2;
}

.chat-smart-result-summary[b-n9du5vcvbn] {
    color: #667386;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.25;
    margin-top: 0.12rem;
}

.chat-smart-status-chip[b-n9du5vcvbn] {
    align-items: center;
    border: 1px solid;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 750;
    justify-content: center;
    line-height: 1;
    padding: 0.24rem 0.48rem;
}

.chat-smart-status-chip.active[b-n9du5vcvbn] {
    background: #f0fdf6;
    border-color: #22c55e;
    color: #12a154;
}

.chat-smart-status-chip.inactive[b-n9du5vcvbn] {
    background: #fff5f5;
    border-color: #f87171;
    color: #d12f2f;
}

.chat-smart-result-accent[b-n9du5vcvbn] {
    align-items: center;
    color: #667386;
    display: flex;
    font-size: 11.5px;
    font-weight: 720;
    gap: 0.38rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.chat-smart-result-accent span[b-n9du5vcvbn] {
    background: #5fd095;
    flex: 0 0 3px;
    height: 14px;
    width: 3px;
}

.chat-smart-field-grid[b-n9du5vcvbn] {
    border-top: 1px solid #e3e8f0;
    display: grid;
    gap: 0.28rem 0.45rem;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    padding-top: 0.45rem;
}

.chat-smart-field[b-n9du5vcvbn] {
    align-items: center;
    border-left: 0;
    display: grid;
    gap: 0.38rem;
    grid-template-columns: 26px minmax(0, 1fr);
    min-width: 0;
    padding: 0.12rem 0.35rem 0.1rem 0;
}

.chat-smart-field:nth-child(1)[b-n9du5vcvbn],
.chat-smart-field:nth-child(5)[b-n9du5vcvbn] {
    border-left: 0;
    padding-left: 0;
}

.chat-smart-field.prominent .chat-smart-field-icon[b-n9du5vcvbn] {
    background: #eefaf4;
}

.chat-smart-field-icon[b-n9du5vcvbn] {
    align-items: center;
    background: #f3f8f6;
    border: 1px solid #e4eeea;
    border-radius: 6px;
    color: #0f7f43;
    display: inline-flex;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.chat-smart-field-icon[b-n9du5vcvbn]  .mud-icon-root {
    font-size: 17px;
}

.chat-smart-field-copy[b-n9du5vcvbn] {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.chat-smart-field-copy span[b-n9du5vcvbn] {
    color: #697789;
    font-size: 9px;
    font-weight: 780;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.chat-smart-field-copy strong[b-n9du5vcvbn] {
    color: #0f172a;
    font-size: 11.5px;
    font-weight: 730;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.chat-smart-field.tenant-field .chat-smart-field-copy strong[b-n9du5vcvbn] {
    font-size: 10.8px;
}

.chat-smart-result-link[b-n9du5vcvbn] {
    align-items: center;
    border-top: 1px solid #e3e8f0;
    color: #0f7f43;
    display: inline-flex;
    font-size: 12px;
    font-weight: 760;
    gap: 0.3rem;
    padding: 0.42rem 0.75rem;
    text-decoration: none;
}

.chat-smart-result-link:hover[b-n9du5vcvbn] {
    background: #f6fbf8;
    color: #0a6635;
    text-decoration: none;
}

@keyframes chat-caret-blink-b-n9du5vcvbn {
    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@keyframes chat-dot-pulse-b-n9du5vcvbn {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@media (max-width: 720px) {
    .chat-assistant-shell[b-n9du5vcvbn] {
        min-height: 560px;
    }

    .chat-assistant-header[b-n9du5vcvbn] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .chat-assistant-thread[b-n9du5vcvbn] {
        padding: 1rem;
    }

    .chat-bubble[b-n9du5vcvbn],
    .chat-bubble-wide[b-n9du5vcvbn],
    .chat-bubble-user[b-n9du5vcvbn] {
        max-width: calc(100% - 46px);
    }

    .chat-composer[b-n9du5vcvbn] {
        grid-template-columns: minmax(0, 1fr);
        padding: 1rem;
    }

    .chat-send-button[b-n9du5vcvbn] {
        justify-self: end;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
article[b-8mtnyibrr0] {
    width: 100%;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.main-menu-container[b-uyopj10bsd] {
    align-items: center;
    display: flex;
    gap: 1.25rem;
    min-height: 72px;
    padding: 0;
    white-space: nowrap;
}

.mobile-menu-button[b-uyopj10bsd],
.mobile-nav-panel[b-uyopj10bsd] {
    display: none;
}

.logo-text[b-uyopj10bsd] {
    color: #172033;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-right: 36px;
}

.logo-text span[b-uyopj10bsd] {
    color: #12b85f;
}

.logo-text strong[b-uyopj10bsd] {
    color: #172033;
    font-weight: 800;
}

.primary-nav[b-uyopj10bsd] {
    align-items: stretch;
    display: flex;
    gap: 1.6rem;
    height: 72px;
}

.nav-link[b-uyopj10bsd] {
    align-items: center;
    color: #39455a;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
    position: relative;
}

.nav-link.active[b-uyopj10bsd],
.nav-link:hover[b-uyopj10bsd] {
    color: #172033;
}

.nav-link:focus[b-uyopj10bsd],
.nav-link:focus-visible[b-uyopj10bsd],
.reports-trigger:focus[b-uyopj10bsd],
.reports-trigger:focus-visible[b-uyopj10bsd] {
    outline: none;
}

.nav-link.active[b-uyopj10bsd]::after {
    background: #12b85f;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
}

.reports-nav[b-uyopj10bsd] {
    align-items: stretch;
    display: inline-flex;
    height: 72px;
    position: relative;
}

.reports-trigger[b-uyopj10bsd] {
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    height: 100%;
}

.reports-dropdown[b-uyopj10bsd] {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 6px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
    display: grid;
    left: 50%;
    min-width: 230px;
    opacity: 0;
    padding: 6px;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 8px);
    transform: translate(-50%, -4px);
    transition: opacity 140ms ease, transform 140ms ease;
    z-index: 1600;
}

.reports-dropdown[b-uyopj10bsd]::before {
    bottom: 100%;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    right: 0;
}

.reports-dropdown.open[b-uyopj10bsd] {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.reports-dropdown-link[b-uyopj10bsd] {
    border-bottom: 1px solid #edf2f7;
    border-radius: 0;
    color: #39455a;
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
    padding: 13px 16px;
    position: relative;
    text-decoration: none;
    transition: background-color 140ms ease, color 140ms ease;
}

.reports-dropdown-link:first-child[b-uyopj10bsd] {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.reports-dropdown-link:last-child[b-uyopj10bsd] {
    border-bottom: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.reports-dropdown-link:hover[b-uyopj10bsd],
.reports-dropdown-link:focus[b-uyopj10bsd],
.reports-dropdown-link:focus-visible[b-uyopj10bsd] {
    background: #ecfdf3;
    color: #0f9f55;
    box-shadow: none !important;
    outline: none !important;
}

.reports-dropdown-link.active[b-uyopj10bsd] {
    background: #ecfdf3;
    color: #0f9f55;
    font-weight: 500;
}

.reports-dropdown-link.active[b-uyopj10bsd]::after {
    background: #12b85f;
    border-radius: 999px;
    bottom: 6px;
    content: "";
    height: 2px;
    left: 16px;
    position: absolute;
    right: 16px;
}

.account-menu[b-uyopj10bsd] {
    align-items: center;
    display: inline-flex;
    height: 34px;
    position: relative;
}

.account-menu-trigger[b-uyopj10bsd] {
    align-items: center;
    background: transparent;
    border: 0;
    color: #39455a;
    cursor: pointer;
    display: inline-flex;
    gap: 0.3rem;
    font-size: 13px;
    font-weight: 500;
    height: 34px;
    max-width: 250px;
    padding: 0 8px;
}

.account-menu-trigger:hover[b-uyopj10bsd] {
    color: #172033;
}

.account-menu-trigger:focus[b-uyopj10bsd],
.account-menu-trigger:focus-visible[b-uyopj10bsd] {
    outline: none;
}

.nav-user-name[b-uyopj10bsd] {
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-menu-trigger[b-uyopj10bsd]  .mud-icon-root {
    color: #526070;
    font-size: 17px;
}

.account-dropdown[b-uyopj10bsd] {
    background: #ffffff;
    border: 1px solid #dfe5ee;
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
    display: grid;
    min-width: 118px;
    opacity: 0;
    padding: 4px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 2px);
    transform: translateY(-2px);
    transition: opacity 120ms ease, transform 120ms ease;
    z-index: 1700;
}

.account-dropdown.open[b-uyopj10bsd] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.account-dropdown-link[b-uyopj10bsd] {
    align-items: center;
    border-radius: 4px;
    color: #39455a;
    display: flex;
    font-size: 13px;
    font-weight: 400;
    gap: 0.45rem;
    min-height: 34px;
    padding: 0 10px;
    text-decoration: none;
}

.account-dropdown-link:hover[b-uyopj10bsd],
.account-dropdown-link:focus[b-uyopj10bsd],
.account-dropdown-link:focus-visible[b-uyopj10bsd] {
    background: #ecfdf3;
    color: #0f9f55;
    outline: none;
}

.account-dropdown-link[b-uyopj10bsd]  .mud-icon-root {
    color: inherit;
    font-size: 18px;
}

@media (max-width: 600px) {
    .main-menu-container[b-uyopj10bsd] {
        min-height: 64px;
    }

    .primary-nav[b-uyopj10bsd] {
        display: none !important;
    }

    .account-menu[b-uyopj10bsd] {
        margin-left: auto;
    }

    .account-menu-trigger[b-uyopj10bsd] {
        max-width: min(44vw, 220px);
        padding: 0 5px;
    }

    .nav-user-name[b-uyopj10bsd] {
        max-width: min(38vw, 180px);
    }

    .mobile-menu-button[b-uyopj10bsd] {
        align-items: center;
        border: 1px solid #d8e0ea;
        border-radius: 4px;
        color: #526070;
        display: inline-flex !important;
        height: 36px;
        justify-content: center;
        width: 36px;
    }

    .mobile-menu-button:hover[b-uyopj10bsd] {
        background: #ecfdf3;
        border-color: #12b85f;
        color: #0f9f55;
    }

    .mobile-nav-panel[b-uyopj10bsd] {
        background: #ffffff;
        border: 1px solid #dfe5ee;
        border-radius: 6px;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
        display: none;
        gap: 0;
        left: 12px;
        padding: 6px;
        position: absolute;
        right: 12px;
        top: calc(100% + 8px);
        z-index: 1700;
    }

    .mobile-nav-panel.open[b-uyopj10bsd] {
        display: grid;
    }

    .mobile-nav-link[b-uyopj10bsd],
    .mobile-report-link[b-uyopj10bsd] {
        align-items: center;
        border: 0;
        border-bottom: 1px solid #edf2f7;
        border-radius: 0;
        color: #39455a;
        display: flex;
        font-size: 14px;
        font-weight: 400;
        justify-content: space-between;
        letter-spacing: 0;
        min-height: 44px;
        padding: 0 14px;
        position: relative;
        text-align: left;
        text-decoration: none;
        width: 100%;
    }

    .mobile-nav-link[b-uyopj10bsd] {
        background: transparent;
        font: inherit;
    }

    .mobile-nav-link:hover[b-uyopj10bsd],
    .mobile-nav-link:focus[b-uyopj10bsd],
    .mobile-nav-link:focus-visible[b-uyopj10bsd],
    .mobile-report-link:hover[b-uyopj10bsd],
    .mobile-report-link:focus[b-uyopj10bsd],
    .mobile-report-link:focus-visible[b-uyopj10bsd] {
        background: #ecfdf3;
        box-shadow: none !important;
        color: #0f9f55;
        outline: none !important;
    }

    .mobile-nav-link.active[b-uyopj10bsd],
    .mobile-report-link.active[b-uyopj10bsd] {
        background: #ecfdf3;
        color: #0f9f55;
        font-weight: 500;
    }

    .mobile-nav-link.active[b-uyopj10bsd]::after,
    .mobile-report-link.active[b-uyopj10bsd]::after {
        background: #12b85f;
        border-radius: 999px;
        bottom: 6px;
        content: "";
        height: 2px;
        left: 14px;
        position: absolute;
        right: 14px;
    }

    .mobile-reports-trigger.open[b-uyopj10bsd]  .mud-icon-root {
        transform: rotate(180deg);
    }

    .mobile-reports-list[b-uyopj10bsd] {
        background: #f8fafc;
        display: none;
        padding: 4px 0;
    }

    .mobile-reports-list.open[b-uyopj10bsd] {
        display: grid;
    }

    .mobile-report-link[b-uyopj10bsd] {
        min-height: 40px;
        padding-left: 28px;
    }

    .main-menu-container[b-uyopj10bsd] {
        gap: 0.25rem;
        overflow: visible;
    }

    .logo-text[b-uyopj10bsd] {
        font-size: 20px;
        margin-right: 0.5rem;
    }

    .primary-nav[b-uyopj10bsd] {
        gap: 0.35rem;
    }

    .reports-dropdown[b-uyopj10bsd] {
        left: 0;
        transform: translate(0, -4px);
    }

    .reports-dropdown.open[b-uyopj10bsd] {
        transform: translate(0, 0);
    }
}
