.chrome-blur-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1020;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, background 0.24s ease, backdrop-filter 0.24s ease, -webkit-backdrop-filter 0.24s ease;
}

.chrome-blur-backdrop[hidden] {
    display: block !important;
    opacity: 0;
    pointer-events: none;
}

.chrome-blur-backdrop--open {
    background: color-mix(in srgb, var(--gray-900) 55%, transparent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 1;
    pointer-events: auto;
}

body.chrome-blur-backdrop-active .topBar,
body.chrome-blur-backdrop-active .topMemberBar,
body.chrome-blur-backdrop-active .bottomBar,
body.chrome-blur-backdrop-active .bottomMemberBar {
    z-index: 1040;
}

body.chrome-blur-backdrop-active .topbar-account-menu {
    z-index: 1050;
}

@media (prefers-reduced-motion: reduce) {
    .chrome-blur-backdrop {
        transition: none;
    }
}

