.global-ticker {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100%;
    background: rgba(24, 26, 19, 0.85);
    color: #ffd600;
    font-size: 15px;
    z-index: 1000;
    pointer-events: auto;
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid #333;
    padding-right: 60px;
    user-select: none;
}

.global-ticker .global-ticker__content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation: globalTickerFlow 30s linear infinite;
    animation-play-state: running;
    padding-left: 0;
    user-select: none;
}

.global-ticker .global-ticker__content span {
    display: inline-block;
    white-space: nowrap;
    user-select: none;
}

@keyframes globalTickerFlow {
    0% {
        transform: translate3d(100vw, 0, 0);
    }
    100% {
        transform: translate3d(-120%, 0, 0);
    }
}

body.has-global-ticker {
    padding-bottom: 36px !important;
}

#scroll-up.btn-scroll-up {
    z-index: 2000 !important;
    position: fixed;
    right: 24px;
    bottom: 40px;
}

@media (max-width: 600px) {
    .global-ticker {
        height: 30px;
        font-size: 13px;
    }

    .global-ticker .global-ticker__content {
        animation-duration: 20s;
    }
}
