/**
 * TT Menus side dashboard panel (#dashboard): glass overlay matching cart/search/footer.
 */

#dashboard.dashboard-panel {
    --dashboard-accent: color-mix(in srgb, var(--selected-button-color3) 55%, var(--dash-ink));
    --dashboard-ink: var(--main-text-color);
    --dashboard-ink-muted: color-mix(in srgb, var(--main-text-color) 62%, transparent);
    --dash-from-x: -36vw;
    --dash-from-y: -38vh;
    background: var(--main-bg, #070b16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#dashboard.dashboard-panel .dashboard-panel-motion {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(120% 70% at 50% -5%, color-mix(in srgb, var(--scheme-surface) 50%, transparent), transparent 52%),
        linear-gradient(180deg, color-mix(in srgb, var(--main-bg) 90%, var(--dash-black)) 0%, var(--main-bg) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#dashboard.dashboard-panel.is-dashboard-opening,
#dashboard.dashboard-panel.is-dashboard-closing,
#dashboard.dashboard-panel.loader-hide-left.is-dashboard-opening,
#dashboard.dashboard-panel.loader-hide-left.is-dashboard-closing {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none;
    background: transparent !important;
    background-image: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#dashboard.dashboard-panel.is-dashboard-closing {
    pointer-events: none !important;
}

#dashboard.dashboard-panel.is-dashboard-opening::before,
#dashboard.dashboard-panel.is-dashboard-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--scheme-surface) 45%, transparent), transparent 55%),
        color-mix(in srgb, var(--main-bg, #070b16) 88%, #000);
}

#dashboard.dashboard-panel.is-dashboard-opening::before {
    animation: dash-scrim-in 0.42s ease both;
}

#dashboard.dashboard-panel.is-dashboard-closing::before {
    animation: dash-scrim-out 0.32s ease both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-motion,
#dashboard.dashboard-panel.is-dashboard-closing .dashboard-panel-motion {
    transform-origin: 50% 50%;
    will-change: transform;
    box-shadow:
        0 28px 72px color-mix(in srgb, var(--dash-black) 48%, transparent),
        0 0 0 1px color-mix(in srgb, var(--dashboard-accent) 28%, transparent);
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-motion {
    animation: dash-panel-from-btn 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-closing .dashboard-panel-motion {
    animation: dash-panel-into-btn 0.42s cubic-bezier(0.3, 0.02, 0.2, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        108deg,
        transparent 28%,
        color-mix(in srgb, var(--selected-button-color3, #f0c43a) 42%, transparent) 50%,
        transparent 72%
    );
    animation: dash-shine 0.72s 0.16s ease both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-brand__mark {
    animation: dash-mark-pop 0.56s 0.2s cubic-bezier(0.22, 1.35, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-logo--wordmark {
    animation: dash-word-in 0.48s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-trailing {
    animation: dash-trail-in 0.4s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-empty__icon-wrap {
    animation: dash-logo-bloom 0.64s 0.3s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-empty__title {
    animation: dash-rise 0.42s 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-empty__hint {
    animation: dash-rise 0.42s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-orders__title {
    animation: dash-rise 0.38s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .body.dashboard-panel-list li {
    animation: dash-rise 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .body.dashboard-panel-list li:nth-child(1) { animation-delay: 0.3s; }
#dashboard.dashboard-panel.is-dashboard-opening .body.dashboard-panel-list li:nth-child(2) { animation-delay: 0.36s; }
#dashboard.dashboard-panel.is-dashboard-opening .body.dashboard-panel-list li:nth-child(3) { animation-delay: 0.42s; }
#dashboard.dashboard-panel.is-dashboard-opening .body.dashboard-panel-list li:nth-child(n + 4) { animation-delay: 0.48s; }

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer {
    animation: dash-footer-in 0.46s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row a {
    animation: dash-chip-in 0.36s cubic-bezier(0.22, 1.25, 0.36, 1) both;
}

#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row:first-child a:nth-child(1) { animation-delay: 0.4s; }
#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row:first-child a:nth-child(2) { animation-delay: 0.46s; }
#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row:first-child a:nth-child(3) { animation-delay: 0.52s; }
#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row:last-child a:nth-child(1) { animation-delay: 0.56s; }
#dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row:last-child a:nth-child(2) { animation-delay: 0.62s; }

body.is-dashboard-opening #dashboardBtn img {
    animation: dash-btn-release 0.5s cubic-bezier(0.22, 1.4, 0.36, 1) both;
}

body.is-dashboard-closing #dashboardBtn img {
    animation: dash-btn-catch 0.46s 0.12s cubic-bezier(0.22, 1.4, 0.36, 1) both;
}

#dashboard.dashboard-panel .dashboard-panel-header,
#dashboard.dashboard-panel .header.dashboard-header-bar {
    position: relative;
    top: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 4.25rem;
    height: auto;
    padding-block: 0.65rem;
    padding-inline-end: 1em;
    margin: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--dash-ink) 10%, transparent);
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--scheme-surface) 78%, color-mix(in srgb, var(--dash-ink) 8%, transparent)) 0%,
        color-mix(in srgb, var(--scheme-surface) 92%, color-mix(in srgb, var(--dash-black) 20%, transparent)) 100%
    );
    box-shadow: 0 8px 24px color-mix(in srgb, var(--dash-black) 22%, transparent);
    z-index: 2;
    overflow: hidden;
}

#dashboard.dashboard-panel .dashboard-header-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

#dashboard.dashboard-panel .dashboard-header-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min-content;
    flex-shrink: 0;
    width: 2.5em;
}

#dashboard.dashboard-panel .dashboard-header-logo--gif {
    height: 3.2em;
    object-fit: contain;
    top: -8px;
    transition: transform 0.3s ease;
    position: relative;
}

#dashboard.dashboard-panel .dashboard-header-logo--wordmark {
    width: auto;
    height: 4em;
    max-width: min(42vw, 9.5rem);
    object-fit: contain;
    filter: drop-shadow(0 2px 6px color-mix(in srgb, var(--dash-black) 35%, transparent));
}

#dashboard.dashboard-panel .dashboard-header-trailing {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

#dashboard.dashboard-panel .ttms-icon-btn--on-dark,
#dashboard.dashboard-panel .dashboard-header-admin-link,
#dashboard.dashboard-panel .account-panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--dash-ink) 16%, transparent);
    background: color-mix(in srgb, var(--dash-ink) 8%, transparent);
    color: var(--dashboard-ink, var(--main-text-color, #f6f1e6));
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

#dashboard.dashboard-panel .ttms-icon-btn--on-dark:hover,
#dashboard.dashboard-panel .dashboard-header-admin-link:hover,
#dashboard.dashboard-panel .account-panel-btn:hover,
#dashboard.dashboard-panel .ttms-icon-btn--on-dark:focus-visible,
#dashboard.dashboard-panel .dashboard-header-admin-link:focus-visible,
#dashboard.dashboard-panel .account-panel-btn:focus-visible {
    background: color-mix(in srgb, var(--dash-ink) 14%, transparent);
    border-color: color-mix(in srgb, var(--dash-ink) 28%, transparent);
    outline: none;
    transform: translateY(-1px);
}

#dashboard.dashboard-panel .dashboard-header-admin-link i {
    font-size: 1.05rem;
}

#dashboard.dashboard-panel .account-panel-btn .icon.account,
#dashboard.dashboard-panel .account-panel-btn .icon.account path {
    width: 1.25rem;
    height: 1.25rem;
    color: inherit;
    fill: currentColor;
}

#dashboard.dashboard-panel .dashboard-header-close-img {
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
    opacity: 0.88;
    filter: drop-shadow(0 1px 2px color-mix(in srgb, var(--dash-black) 35%, transparent));
}

body.ttms-logged-in #dashboard.dashboard-panel .account-panel-btn {
    display: inline-flex;
    color: var(--scheme-accent, var(--accent-color, #f0c43a));
    border-color: color-mix(in srgb, var(--scheme-accent, var(--accent-color, #f0c43a)) 45%, color-mix(in srgb, var(--scheme-white) 16%, transparent));
    background: color-mix(in srgb, var(--scheme-accent, var(--accent-color, #f0c43a)) 16%, transparent);
}

#dashboard.dashboard-panel .dashboard-panel-scroll {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0.85rem 0.85rem 0.35rem;
}

#dashboard.dashboard-panel .dashboard-panel-orders {
    margin: 0 0 0.35rem;
}

#dashboard.dashboard-panel .dashboard-panel-orders[hidden] {
    display: none !important;
}

#dashboard.dashboard-panel .dashboard-panel-orders__title {
    margin: 0 0 0.7rem 0.15rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dashboard-ink-muted);
}

#dashboard.dashboard-panel .body.dashboard-panel-list {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

#dashboard.dashboard-panel .body.dashboard-panel-list:empty {
    display: none;
}

#dashboard.dashboard-panel .body.dashboard-panel-list li {
    margin: 0 0 0.55rem;
    padding: 0;
    list-style: none;
}

#dashboard.dashboard-panel .body.dashboard-panel-list .dashboard-panel-order {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
    border: 1px solid color-mix(in srgb, var(--dash-ink) 10%, transparent);
    background: linear-gradient(
        165deg,
        color-mix(in srgb, var(--dash-ink) 8%, transparent) 0%,
        color-mix(in srgb, var(--dash-ink) 3%, transparent) 100%
    );
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--dash-ink) 6%, transparent);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

#dashboard.dashboard-panel .body.dashboard-panel-list .dashboard-panel-order:hover,
#dashboard.dashboard-panel .body.dashboard-panel-list .dashboard-panel-order:focus-visible {
    border-color: color-mix(in srgb, var(--dashboard-accent) 32%, color-mix(in srgb, var(--dash-ink) 14%, transparent));
    background: linear-gradient(
        165deg,
        color-mix(in srgb, var(--dash-ink) 12%, transparent) 0%,
        color-mix(in srgb, var(--dash-ink) 5%, transparent) 100%
    );
    outline: none;
}

#dashboard.dashboard-panel .body.dashboard-panel-list .dashboard-panel-order:disabled {
    cursor: default;
    opacity: 0.7;
}

#dashboard.dashboard-panel .body.dashboard-panel-list .dashboard-panel-order:focus-visible {
    box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--dash-ink) 6%, transparent),
        0 0 0 2px color-mix(in srgb, var(--dashboard-accent) 55%, transparent);
}

#dashboard.dashboard-panel .body.dashboard-panel-list .dashboard-panel-order b {
    color: var(--dashboard-ink);
    font-weight: 600;
}

#dashboard.dashboard-panel .dashboard-panel-order__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

#dashboard.dashboard-panel .dashboard-panel-order__status {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--dash-info) 22%, transparent);
    color: var(--dash-ink-muted);
}

#dashboard.dashboard-panel .dashboard-panel-order--open .dashboard-panel-order__status {
    background: color-mix(in srgb, var(--dash-warning) 22%, transparent);
    color: var(--dash-accent);
}

#dashboard.dashboard-panel .dashboard-panel-order--ready .dashboard-panel-order__status {
    background: color-mix(in srgb, var(--dash-success) 20%, transparent);
    color: var(--dash-success);
}

#dashboard.dashboard-panel .dashboard-panel-order--paid .dashboard-panel-order__status {
    background: color-mix(in srgb, var(--dash-info) 22%, transparent);
    color: var(--dash-info);
}

#dashboard.dashboard-panel .dashboard-panel-order--cancelled .dashboard-panel-order__status {
    background: color-mix(in srgb, var(--dash-error) 20%, transparent);
    color: var(--dash-warning);
}

#dashboard.dashboard-panel .dashboard-panel-order__meta,
#dashboard.dashboard-panel .dashboard-panel-order__lines {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--dashboard-ink-muted);
}

#dashboard.dashboard-panel .dashboard-panel-order__total {
    color: var(--dashboard-ink);
    font-weight: 700;
}

#dashboard.dashboard-panel .dashboard-panel-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: min(48dvh, 20rem);
    padding: 1.5rem 1rem 2rem;
    text-align: center;
}

#dashboard.dashboard-panel .dashboard-panel-empty--compact {
    min-height: min(28dvh, 12rem);
    padding-top: 1rem;
}

#dashboard.dashboard-panel .dashboard-panel-empty__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--dash-ink) 18%, transparent);
    background: color-mix(in srgb, var(--dash-ink) 4%, transparent);
}

#dashboard.dashboard-panel .dashboard-panel-empty__logo {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

#dashboard.dashboard-panel .dashboard-panel-empty__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dashboard-ink);
}

#dashboard.dashboard-panel .dashboard-panel-empty__hint {
    margin: 0;
    max-width: 18rem;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--dashboard-ink-muted);
}

#dashboard.dashboard-panel .dashboardfooter.dashboard-panel-footer {
    flex-shrink: 0;
    margin-top: 0;
    padding: 0.75rem 0.85rem max(0.85rem, env(safe-area-inset-bottom, 0));
    border-top: 1px solid color-mix(in srgb, var(--dash-ink) 10%, transparent);
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--footer-bg-color) 82%, color-mix(in srgb, var(--dash-ink) 6%, transparent)) 0%,
        color-mix(in srgb, var(--footer-bg-color) 96%, var(--dash-black)) 100%
    );
    box-shadow: 0 -10px 28px color-mix(in srgb, var(--dash-black) 28%, transparent);
}

#dashboard.dashboard-panel .dashboard-panel-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

#dashboard.dashboard-panel .dashboard-panel-footer__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

#dashboard.dashboard-panel .dashboard-panel-footer__row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--dash-ink) 12%, transparent);
    background: color-mix(in srgb, var(--dash-ink) 6%, transparent);
    color: var(--dashboard-ink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

#dashboard.dashboard-panel .dashboard-panel-footer__row a:hover,
#dashboard.dashboard-panel .dashboard-panel-footer__row a:focus-visible {
    background: color-mix(in srgb, var(--dash-ink) 12%, transparent);
    border-color: color-mix(in srgb, var(--dashboard-accent) 38%, color-mix(in srgb, var(--dash-ink) 18%, transparent));
    transform: translateY(-1px);
    text-decoration: none;
    outline: none;
}

html.ttms-ios #dashboard.dashboard-panel,
html.ttms-ios body.modal-open #dashboard.dashboard-panel,
html.ttms-ios body.ttms-scroll-locked #dashboard.dashboard-panel {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: none !important;
}

@media (max-width: 480px) {
    #dashboard.dashboard-panel .dashboard-panel-header,
    #dashboard.dashboard-panel .header.dashboard-header-bar {
    }

    #dashboard.dashboard-panel .dashboard-header-logo--wordmark {
    }
}

@keyframes dash-scrim-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes dash-scrim-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes dash-panel-from-btn {
    0% {
        transform: translate(var(--dash-from-x), var(--dash-from-y)) scale(0.08);
        opacity: 0.82;
        border-radius: 50%;
        filter: brightness(1.35);
    }
    36% {
        transform: translate(calc(var(--dash-from-x) * 0.14), calc(var(--dash-from-y) * 0.14)) scale(0.2);
        opacity: 1;
        border-radius: 1.75rem;
        filter: brightness(1.12);
    }
    74% {
        transform: scale(1.02);
        opacity: 1;
        border-radius: 0.4rem;
        filter: brightness(1.04);
    }
    100% {
        transform: none;
        opacity: 1;
        border-radius: 0;
        filter: none;
    }
}

@keyframes dash-panel-into-btn {
    0% {
        transform: none;
        opacity: 1;
        border-radius: 0;
        filter: none;
    }
    42% {
        transform: scale(0.18);
        opacity: 1;
        border-radius: 1.5rem;
        filter: brightness(1.1);
    }
    100% {
        transform: translate(var(--dash-from-x), var(--dash-from-y)) scale(0.06);
        opacity: 0;
        border-radius: 50%;
        filter: brightness(1.2);
    }
}

@keyframes dash-shine {
    0% { transform: translateX(-120%); opacity: 0; }
    18% { opacity: 0.85; }
    100% { transform: translateX(120%); opacity: 0; }
}

@keyframes dash-mark-pop {
    0% { transform: scale(0.35) rotate(-12deg); opacity: 0; }
    62% { transform: scale(1.12) rotate(3deg); opacity: 1; }
    100% { transform: none; opacity: 1; }
}

@keyframes dash-word-in {
    0% { transform: translate3d(-1.1rem, 0, 0); opacity: 0; }
    100% { transform: none; opacity: 1; }
}

@keyframes dash-trail-in {
    0% { transform: translate3d(0.85rem, 0, 0); opacity: 0; }
    100% { transform: none; opacity: 1; }
}

@keyframes dash-logo-bloom {
    0% {
        transform: scale(0.4);
        opacity: 0;
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--selected-button-color3, #f0c43a) 55%, transparent);
    }
    58% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 0 1.1rem transparent;
    }
    100% {
        transform: none;
        opacity: 1;
        box-shadow: none;
    }
}

@keyframes dash-rise {
    0% { transform: translate3d(0, 0.85rem, 0); opacity: 0; }
    100% { transform: none; opacity: 1; }
}

@keyframes dash-footer-in {
    0% { transform: translate3d(0, 1.15rem, 0); opacity: 0; }
    100% { transform: none; opacity: 1; }
}

@keyframes dash-chip-in {
    0% { transform: translate3d(0, 0.55rem, 0) scale(0.86); opacity: 0; }
    70% { transform: translate3d(0, -0.06rem, 0) scale(1.04); opacity: 1; }
    100% { transform: none; opacity: 1; }
}

@keyframes dash-btn-release {
    0% { transform: scale(1); }
    34% { transform: scale(1.28); }
    100% { transform: scale(1); }
}

@keyframes dash-btn-catch {
    0% { transform: scale(1); }
    40% { transform: scale(1.22); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    #dashboard.dashboard-panel .body.dashboard-panel-list li,
    #dashboard.dashboard-panel .dashboard-panel-footer__row a,
    #dashboard.dashboard-panel .ttms-icon-btn--on-dark,
    #dashboard.dashboard-panel .account-panel-btn {
        transition: none;
    }

    #dashboard.dashboard-panel.is-dashboard-opening,
    #dashboard.dashboard-panel.is-dashboard-closing,
    #dashboard.dashboard-panel.is-dashboard-opening::before,
    #dashboard.dashboard-panel.is-dashboard-closing::before,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-motion,
    #dashboard.dashboard-panel.is-dashboard-closing .dashboard-panel-motion,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-bar::after,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-brand__mark,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-logo--wordmark,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-header-trailing,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-empty__icon-wrap,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-empty__title,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-empty__hint,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-orders__title,
    #dashboard.dashboard-panel.is-dashboard-opening .body.dashboard-panel-list li,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer,
    #dashboard.dashboard-panel.is-dashboard-opening .dashboard-panel-footer__row a,
    body.is-dashboard-opening #dashboardBtn img,
    body.is-dashboard-closing #dashboardBtn img {
        animation: none;
    }
}
