
/* MIX365_VICE_ACCOUNT_DRAWER_CSS_START */

#mix365ViceAccountDrawerPanel {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    color: #fff;
    font-family: inherit;
}

#mix365ViceAccountDrawerPanel[hidden] {
    display: none !important;
}

#mix365ViceAccountDrawerPanel *,
#mix365ViceAccountDrawerPanel *::before,
#mix365ViceAccountDrawerPanel *::after {
    box-sizing: border-box;
}

.mix365-account-drawer-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid #f01857;
    background:
        linear-gradient(
            145deg,
            rgba(15, 19, 31, 0.98),
            rgba(4, 6, 13, 0.98)
        );
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.36),
        0 0 24px rgba(240, 24, 87, 0.08);
}

.mix365-account-drawer-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent 0,
            rgba(255, 255, 255, 0.035) 50%,
            transparent 100%
        );
    opacity: 0.7;
}

.mix365-account-drawer-card > * {
    position: relative;
    z-index: 1;
}

.mix365-account-drawer-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mix365-account-drawer-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #f01857;
    border-radius: 50%;
    animation: mix365AccountDrawerSpin 0.8s linear infinite;
}

@keyframes mix365AccountDrawerSpin {
    to {
        transform: rotate(360deg);
    }
}

.mix365-account-drawer-guest {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 14px;
}

.mix365-account-drawer-login,
.mix365-account-drawer-register {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 13px !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
}

.mix365-account-drawer-login {
    background: rgba(255, 255, 255, 0.07);
}

.mix365-account-drawer-register {
    border-color: rgba(240, 24, 87, 0.84);
    background: #f01857;
}

.mix365-account-drawer-login:hover,
.mix365-account-drawer-login:focus,
.mix365-account-drawer-register:hover,
.mix365-account-drawer-register:focus {
    color: #fff !important;
    transform: translateY(-1px);
}

.mix365-account-drawer-auth {
    padding: 0;
}

.mix365-account-drawer-trigger {
    appearance: none;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 80px;
    margin: 0;
    padding: 12px 13px;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.mix365-account-drawer-trigger:hover,
.mix365-account-drawer-trigger:focus {
    background: rgba(255, 255, 255, 0.045);
    outline: none;
}

.mix365-account-drawer-avatar-wrap {
    position: relative;
    width: 54px;
    height: 54px;
}

.mix365-account-drawer-avatar {
    display: block;
    width: 54px;
    height: 54px;
    border: 2px solid rgba(240, 24, 87, 0.94);
    border-radius: 50%;
    background: #0a0c12;
    object-fit: cover;
    box-shadow:
        0 0 0 3px rgba(240, 24, 87, 0.13),
        0 8px 20px rgba(0, 0, 0, 0.36);
}

.mix365-account-drawer-online-dot {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 12px;
    height: 12px;
    border: 2px solid #080a10;
    border-radius: 50%;
    background: #35da80;
    box-shadow: 0 0 10px rgba(53, 218, 128, 0.66);
}

.mix365-account-drawer-copy {
    min-width: 0;
}

.mix365-account-drawer-eyebrow {
    display: block;
    margin: 0 0 3px;
    color: #f01857;
    font-size: 8px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.mix365-account-drawer-name {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mix365-account-drawer-role {
    display: block;
    overflow: hidden;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.mix365-account-drawer-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    transition: transform 0.2s ease;
}

.mix365-account-drawer-card.is-open
.mix365-account-drawer-caret {
    transform: rotate(180deg);
}

.mix365-account-drawer-links {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mix365-account-drawer-card.is-open
.mix365-account-drawer-links {
    display: block;
}

.mix365-account-drawer-link {
    display: grid !important;
    grid-template-columns: 27px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 13px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
    background: rgba(255, 255, 255, 0.015);
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.035em;
    text-decoration: none !important;
}

.mix365-account-drawer-link:hover,
.mix365-account-drawer-link:focus {
    padding-left: 17px !important;
    background: rgba(240, 24, 87, 0.1);
    color: #fff !important;
}

.mix365-account-drawer-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f01857;
    font-size: 14px;
}

.mix365-account-drawer-link-arrow {
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    text-align: right;
}

.mix365-account-drawer-role-section {
    display: none;
    padding: 11px 13px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.mix365-account-drawer-role-section.is-visible {
    display: block;
}

.mix365-account-drawer-section-title {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mix365-account-drawer-role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.mix365-account-drawer-role-link {
    display: flex !important;
    align-items: center;
    min-height: 35px;
    padding: 7px 9px !important;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-decoration: none !important;
}

.mix365-account-drawer-role-link:hover,
.mix365-account-drawer-role-link:focus {
    border-color: rgba(240, 24, 87, 0.65);
    background: rgba(240, 24, 87, 0.11);
    color: #fff !important;
}

.mix365-account-drawer-logout {
    color: #ff718e !important;
}

.mix365-account-drawer-mounted {
    position: relative;
}

.mix365-account-drawer-hidden-auth-item {
    display: none !important;
}

@media (max-width: 575.98px) {
    #mix365ViceAccountDrawerPanel {
        margin-bottom: 14px;
    }

    .mix365-account-drawer-trigger {
        grid-template-columns: 48px minmax(0, 1fr) 24px;
        min-height: 72px;
        gap: 10px;
        padding: 10px 11px;
    }

    .mix365-account-drawer-avatar-wrap,
    .mix365-account-drawer-avatar {
        width: 48px;
        height: 48px;
    }

    .mix365-account-drawer-name {
        font-size: 14px;
    }

    .mix365-account-drawer-role-grid {
        grid-template-columns: 1fr;
    }
}

/* MIX365_VICE_ACCOUNT_DRAWER_CSS_END */

/* MIX365_VICE_ACCOUNT_DRAWER_NATIVE_STYLE_START */

/*
 * Vice can override the browser's normal [hidden] rule.
 * Force all inactive account states to remain hidden.
 */
#mix365ViceAccountDrawerPanel [hidden] {
    display: none !important;
}

#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="loading"
]
[data-mix365-account-loading] {
    display: flex !important;
}

#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="loading"
]
[data-mix365-account-guest],
#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="loading"
]
[data-mix365-account-auth] {
    display: none !important;
}

#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="guest"
]
[data-mix365-account-loading],
#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="guest"
]
[data-mix365-account-auth] {
    display: none !important;
}

#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="guest"
]
[data-mix365-account-guest] {
    display: grid !important;
}

#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="authenticated"
]
[data-mix365-account-loading],
#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="authenticated"
]
[data-mix365-account-guest] {
    display: none !important;
}

#mix365ViceAccountDrawerPanel[
    data-mix365-account-state="authenticated"
]
[data-mix365-account-auth] {
    display: block !important;
}

/*
 * Make the account section feel native to the Vice slide-out menu.
 */
#mix365ViceAccountDrawerPanel {
    width: 100% !important;
    margin: 0 0 10px !important;
    padding: 0 !important;

    color: inherit !important;
    font-family: inherit !important;
}

#mix365ViceAccountDrawerPanel,
#mix365ViceAccountDrawerPanel button,
#mix365ViceAccountDrawerPanel a,
#mix365ViceAccountDrawerPanel span,
#mix365ViceAccountDrawerPanel strong {
    font-family: inherit !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-card {
    overflow: visible !important;

    border: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11) !important;

    border-radius: 0 !important;

    background: transparent !important;

    box-shadow: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-card::before,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-card::after {
    display: none !important;
    content: none !important;
}

/* Loading row */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-loading {
    min-height: 52px !important;

    padding: 13px 4px !important;

    background: transparent !important;

    color: rgba(255, 255, 255, 0.56) !important;

    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-spinner {
    width: 14px !important;
    height: 14px !important;

    border-width: 1px !important;
}

/* Guest links become normal slide-out menu rows. */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-guest {
    grid-template-columns: 1fr !important;
    gap: 0 !important;

    padding: 0 !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-login,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-register {
    justify-content: flex-start !important;

    min-height: 44px !important;

    padding: 0 4px !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;

    border-radius: 0 !important;

    background: transparent !important;

    color: rgba(255, 255, 255, 0.88) !important;

    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;

    box-shadow: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-login:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-login:focus,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-register:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-register:focus {
    padding-left: 10px !important;

    background: rgba(255, 255, 255, 0.04) !important;

    color: #fff !important;

    transform: none !important;
}

/* Compact account header */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-trigger {
    grid-template-columns: 42px minmax(0, 1fr) 20px !important;
    gap: 10px !important;

    min-height: 62px !important;

    padding: 9px 4px !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    color: inherit !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-trigger:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-trigger:focus {
    background: rgba(255, 255, 255, 0.035) !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-avatar-wrap,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-avatar {
    width: 42px !important;
    height: 42px !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-avatar {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;

    box-shadow: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-online-dot {
    right: 0 !important;
    bottom: 0 !important;

    width: 9px !important;
    height: 9px !important;

    border-width: 1px !important;

    box-shadow: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-eyebrow {
    display: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-name {
    color: inherit !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.035em !important;
    text-transform: uppercase !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role {
    margin-top: 3px !important;

    color: rgba(255, 255, 255, 0.48) !important;

    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-caret {
    color: rgba(255, 255, 255, 0.5) !important;

    font-size: 13px !important;
}

/* Native menu link list */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-links {
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link {
    grid-template-columns: 18px minmax(0, 1fr) 12px !important;
    gap: 8px !important;

    min-height: 41px !important;

    padding: 0 4px !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065) !important;

    border-radius: 0 !important;

    background: transparent !important;

    color: rgba(255, 255, 255, 0.78) !important;

    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link:focus {
    padding-left: 10px !important;

    background: rgba(255, 255, 255, 0.035) !important;

    color: #fff !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link-icon {
    color: rgba(255, 255, 255, 0.5) !important;

    font-size: 11px !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link-arrow {
    color: rgba(255, 255, 255, 0.28) !important;

    font-size: 12px !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-logout {
    color: rgba(255, 255, 255, 0.78) !important;
}

/* DJ/Admin sections follow the same menu rhythm. */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-section {
    padding: 11px 4px 4px !important;

    border-top: 0 !important;

    background: transparent !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-title {
    margin: 0 0 6px !important;

    color: rgba(255, 255, 255, 0.38) !important;

    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link {
    min-height: 37px !important;

    padding: 0 !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055) !important;

    border-radius: 0 !important;

    background: transparent !important;

    color: rgba(255, 255, 255, 0.7) !important;

    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link:focus {
    padding-left: 6px !important;

    border-color: rgba(255, 255, 255, 0.08) !important;

    background: transparent !important;

    color: #fff !important;
}

/* MIX365_VICE_ACCOUNT_DRAWER_NATIVE_STYLE_END */

/* MIX365_VICE_ACCOUNT_SCROLL_OWNER_FIX_START */

.mix365-account-drawer-scroll-host,
.mix365-account-drawer-mounted {
    min-height: 0 !important;
    max-height: 100dvh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: contain !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
}

.mix365-account-drawer-scroll-host {
    padding-bottom:
        max(24px, env(safe-area-inset-bottom))
        !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-auth,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-card,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-links {
    max-height: none !important;
    overflow: visible !important;
}

/* MIX365_VICE_ACCOUNT_SCROLL_OWNER_FIX_END */

/* MIX365_VICE_ACCOUNT_MATCH_WP_MENU_FONT_START */

/*
 * Values are populated from a genuine WordPress/Vice menu link by
 * mix365-vice-account-drawer.js.
 */
#mix365ViceAccountDrawerPanel {
    --mix365-native-menu-font-family: inherit;
    --mix365-native-menu-font-size: inherit;
    --mix365-native-menu-font-weight: inherit;
    --mix365-native-menu-line-height: normal;
    --mix365-native-menu-letter-spacing: normal;
    --mix365-native-menu-text-transform: none;
}

/* Account name matches a normal WordPress menu entry. */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-name {
    font-family:
        var(--mix365-native-menu-font-family)
        !important;

    font-size:
        var(--mix365-native-menu-font-size)
        !important;

    font-weight:
        var(--mix365-native-menu-font-weight)
        !important;

    line-height:
        var(--mix365-native-menu-line-height)
        !important;

    letter-spacing:
        var(--mix365-native-menu-letter-spacing)
        !important;

    text-transform:
        var(--mix365-native-menu-text-transform)
        !important;
}

/* All account, DJ and Admin links use the native menu typography. */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-login,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-register,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link {
    font-family:
        var(--mix365-native-menu-font-family)
        !important;

    font-size:
        var(--mix365-native-menu-font-size)
        !important;

    font-weight:
        var(--mix365-native-menu-font-weight)
        !important;

    line-height:
        var(--mix365-native-menu-line-height)
        !important;

    letter-spacing:
        var(--mix365-native-menu-letter-spacing)
        !important;

    text-transform:
        var(--mix365-native-menu-text-transform)
        !important;
}

/*
 * The role stays secondary but uses the same font family and spacing.
 * It is deliberately a little smaller than the main WordPress menu text.
 */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role {
    font-family:
        var(--mix365-native-menu-font-family)
        !important;

    font-size:
        calc(
            var(--mix365-native-menu-font-size) * 0.78
        )
        !important;

    font-weight:
        var(--mix365-native-menu-font-weight)
        !important;

    line-height:
        var(--mix365-native-menu-line-height)
        !important;

    letter-spacing:
        var(--mix365-native-menu-letter-spacing)
        !important;

    text-transform:
        var(--mix365-native-menu-text-transform)
        !important;
}

/* Section headings follow the same font family without overpowering links. */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-title {
    font-family:
        var(--mix365-native-menu-font-family)
        !important;

    font-weight:
        var(--mix365-native-menu-font-weight)
        !important;

    letter-spacing:
        var(--mix365-native-menu-letter-spacing)
        !important;
}

/* MIX365_VICE_ACCOUNT_MATCH_WP_MENU_FONT_END */

/* MIX365_VICE_ACCOUNT_ROLE_ACCORDIONS_START */

#mix365ViceAccountDrawerPanel {
    --mix365-native-menu-color: #ffffff;
}

/*
 * Match the genuine WordPress/Vice menu colour and weight.
 * This removes the older grey appearance from the added account links.
 */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-name,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-login,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-register,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-toggle {
    color:
        var(--mix365-native-menu-color, #ffffff)
        !important;

    font-family:
        var(--mix365-native-menu-font-family, inherit)
        !important;

    font-size:
        var(--mix365-native-menu-font-size, inherit)
        !important;

    font-weight:
        var(--mix365-native-menu-font-weight, 700)
        !important;

    line-height:
        var(--mix365-native-menu-line-height, normal)
        !important;

    letter-spacing:
        var(--mix365-native-menu-letter-spacing, normal)
        !important;

    text-transform:
        var(--mix365-native-menu-text-transform, none)
        !important;

    opacity: 1 !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link-icon,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-link-arrow {
    color:
        var(--mix365-native-menu-color, #ffffff)
        !important;

    opacity: 0.7 !important;
}

/*
 * DJ Area and Administration become independent nested accordions.
 */
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-section {
    display: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.065)
        !important;

    background: transparent !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-section.is-visible {
    display: block !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-title {
    display: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-toggle {
    appearance: none;

    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 20px;
    align-items: center;
    gap: 8px;

    width: 100%;
    min-height: 43px;

    margin: 0;
    padding: 0 4px !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    text-align: left;
    cursor: pointer;

    box-shadow: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-toggle:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-toggle:focus {
    padding-left: 10px !important;

    background:
        rgba(255, 255, 255, 0.035)
        !important;

    outline: none !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-section-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color:
        var(--mix365-native-menu-color, #ffffff)
        !important;

    font-size: 13px;
    line-height: 1;

    opacity: 0.65;

    transition: transform 0.2s ease;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-section.is-expanded
.mix365-account-drawer-section-caret {
    transform: rotate(180deg);
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-grid {
    display: none !important;

    grid-template-columns: 1fr !important;
    gap: 0 !important;

    padding: 0 0 5px 14px !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-section.is-expanded
.mix365-account-drawer-role-grid {
    display: grid !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link {
    min-height: 38px !important;

    padding: 0 4px !important;

    border: 0 !important;
    border-bottom:
        1px solid rgba(255, 255, 255, 0.05)
        !important;

    background: transparent !important;
}

#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link:hover,
#mix365ViceAccountDrawerPanel
.mix365-account-drawer-role-link:focus {
    padding-left: 10px !important;

    background:
        rgba(255, 255, 255, 0.03)
        !important;

    color:
        var(--mix365-native-menu-color, #ffffff)
        !important;
}

/* MIX365_VICE_ACCOUNT_ROLE_ACCORDIONS_END */
