/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 4 wrz 2025, 21:24:35
    Author     : piotrek
*/

/*pasek*/
.prize-strip {
/*    margin-bottom: 32px;*/
    overflow-x: clip;
    position: relative;
    z-index: 1;
    background: radial-gradient(50% 50% at 50% 50%, #B9E8FF 0%, #74D3FF 100%);
    font-weight: 700;
    font-size: 21px;
    line-height: 100%;
    text-align: right;
    padding-block: 6px;
    max-width: 100vw;
}
@media (max-width: 575px) {
    .prize-strip {
        z-index: 11;
    }
}
.prize-strip__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    animation: infiniteScroll 50s linear infinite;
    animation-delay: 2.5s;
}
.prize-strip__label {
    padding: 0 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: #0158a7;
    font-size: calc( var(--pscale) * 1.8rem);
    font-family: poppins;
}
.prize-strip__item {
    color: #1B3481;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 12px;
}
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}