/* PSX Equity Ticker Style */

.psx-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #0b1f33;
    color: #ffffff;
    position: fixed;
    z-index: 99999;
    height: 38px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: Arial, sans-serif;
}


.psx-ticker-wrapper.bottom {
    bottom: 0;
    left: 0;
    
}


.psx-ticker-wrapper.top {
    top: 0;
    left: 0;
}


.psx-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: psx-scroll 30s linear infinite;
    will-change: transform;
    
}


.psx-symbol {
    font-size: 26px;
    font-weight: 700;
}

.psx-company {

    display: inline-block;
    margin-right: 80px;

}


.psx-company strong {

    color: #f5c542;
    margin-right: 10px;
     font-size: 18px;

}


.psx-company span {

    margin-right: 10px;

}


/* Hover par ticker pause */

.psx-ticker-track:hover {

    animation-play-state: paused;

}


/* Continuous scrolling */

@keyframes psx-scroll {

     from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


.wpml-ls {
    position: absolute;
    bottom: 50px;
    right: 20px;
    z-index: 99;
}


/* Mobile */

@media(max-width:768px){

    .psx-ticker-wrapper {

        height:35px;
        font-size:12px;

    }



}