:root {
    --store-ticker-h: 32px;
}

.store-ticker {
    display: none !important;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: var(--store-ticker-h);
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #0b1220 0%, #134e4a 48%, #0b1220 100%);
    color: #fde68a;
    border: 0;
    border-bottom: 1px solid rgba(253, 230, 138, 0.28);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    line-height: var(--store-ticker-h);
    z-index: 38;
    direction: ltr !important;
    unicode-bidi: isolate;
    container-type: inline-size;
    container-name: store-ticker;
}
.store-ticker-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    max-width: none;
    height: 100%;
    white-space: nowrap;
    direction: ltr !important;
    will-change: transform;
    animation: store-ticker-ltr 18s linear infinite !important;
}
.store-ticker-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    min-width: 100cqi;
    padding-inline-end: 4rem;
    white-space: nowrap;
}
.store-ticker-item {
    display: inline-block;
    flex: 0 0 auto;
    white-space: nowrap;
    direction: rtl;
    unicode-bidi: isolate;
}
@supports not (min-width: 100cqi) {
    .store-ticker-group {
        min-width: 100vw;
    }
}
@keyframes store-ticker-ltr {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@media (min-width: 992px) {
    body.has-desk-ticker .store-ticker-desk {
        display: block !important;
    }
}
@media (max-width: 991.98px) {
    body.has-mob-ticker .store-ticker-mob {
        display: block !important;
    }
}
.store-ticker:not(:has(.store-ticker-item:not(:empty))) {
    display: none !important;
}

body.login-page .store-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
}
@media (min-width: 992px) {
    body.login-page.has-desk-ticker {
        padding-top: calc(var(--store-ticker-h) + 16px);
    }
}
@media (max-width: 991.98px) {
    body.login-page.has-mob-ticker {
        padding-top: calc(var(--store-ticker-h) + env(safe-area-inset-top, 0px) + 12px);
    }
}

body.ah-deck-page .store-ticker {
    position: sticky;
    top: 0;
    flex-shrink: 0;
    z-index: 90;
}
@media (min-width: 992px) {
    body.ah-deck-page.has-desk-ticker .ah-bar,
    body.ah-deck-page.has-desk-ticker .gx-bar {
        top: var(--store-ticker-h);
    }
}
@media (max-width: 991.98px) {
    body.ah-deck-page.has-mob-ticker .ah-bar,
    body.ah-deck-page.has-mob-ticker .gx-bar {
        top: var(--store-ticker-h);
    }
}
