 #stock-ticker{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;

    background: #0f172a;

    display: flex;
    align-items: center;

    z-index: 999999;

    overflow: hidden;

    border-top: 1px solid #1e293b;
    padding-bottom: env(safe-area-inset-bottom);
}

/* LEFT */
.st-status{
    display: flex;
    align-items: center;
    gap: 10px;

    height: 100%;

    padding: 0 5px;

    background: #111827;

    border-right: 1px solid #1f2937;

    flex-shrink: 0;
}

.st-status-title{
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

.st-status-label{
    background: #16a34a;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    padding: 3px 8px;

    border-radius: 20px;
}

/* SWITCH */
.st-switcher{
    display: flex;
    gap: 6px;
}

.st-btn{
    border: none;

    background: #1e293b;

    color: #cbd5e1;

    font-size: 11px;
    font-weight: 600;

    padding: 5px 10px;

    border-radius: 20px;

    cursor: pointer;

    transition: 0.2s;
}

.st-btn:hover{
    background: #334155;
}

.st-btn.active{
    background: #2563eb;
    color: #fff;
}

/* TRACK WRAP */
.st-ticker-wrap{
    position: relative;
    flex: 1;
    overflow: hidden;
    height: 100%;
}

/* TRACK */
.st-track{
    position:absolute;
    top:0;
    left:0;

    display:flex;
    align-items:center;

    height:100%;
    width:max-content;

    visibility:hidden;
    opacity:0;

    will-change:transform;
}



/* ACTIVE */
.active-track{
    visibility:visible;
    opacity:1;
}
/* ANIMATION */
@keyframes tickerMove{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* ITEM */
.st-item{
    display: flex;
    align-items: center;
    gap: 8px;

    height: 100%;

    padding: 0 18px;

    text-decoration: none;

    border-right: 1px solid rgba(255,255,255,0.06);

    white-space: nowrap;
}

.st-item:hover{
    background: rgba(255,255,255,0.05);
}

.st-scrip{
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.st-ltp{
    color: #cbd5e1;
    font-size: 12px;
}

.st-up{
    color: #34A853;
    font-size: 12px;
    font-weight: 700;
}

.st-down{
    color: #FF0000;
    font-size: 12px;
    font-weight: 700;
}

.st-flat{
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}



/* PAUSE */
.st-ticker-wrap:hover .st-track{
    animation-play-state: paused;
}