/**
**
** BANNER
**
**/
#psBanner {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 10px 50px;
    top: 0;
    left: 0;
    z-index: 233;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
}

#psBanner .bannerContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem
}

#psBanner .big {
    font-size: 1.5rem;
    letter-spacing: 0.2;
    font-weight: 860;
}

#psBanner p{
    margin: 0;
}
.confetti {
    position: absolute;
    width: 11px;
    height: 11px;
    background: white;
    top: -10px;
    animation: fall 2s linear infinite;
    opacity: 0.8;
}

.confetti:nth-child(1) {
    left: 5%;
    animation: fall 6s linear infinite;
    animation-delay: 0s;
    background: #fff;
}

.confetti:nth-child(2) {
    left: 15%;
    animation: fall 5s linear infinite;
    animation-delay: 1s;
    background: #ffd800;
}

.confetti:nth-child(3) {
    left: 25%;
    animation: fall 7s linear infinite;
    animation-delay: 2s;
    background: #ff4d4d;
}

.confetti:nth-child(4) {
    left: 35%;
    animation: fall 6s linear infinite;
    animation-delay: 3s;
    background: #ffffff;
}

.confetti:nth-child(5) {
    left: 45%;
    animation: fall 5s linear infinite;
    animation-delay: 4s;
    background: #ffd800;
}

.confetti:nth-child(6) {
    left: 55%;
    animation: fall 7s linear infinite;
    animation-delay: 1.5s;
    background: #fff;
}

.confetti:nth-child(7) {
    left: 65%;
    animation: fall 6s linear infinite;
    animation-delay: 2.5s;
    background: #ffd800;
}

.confetti:nth-child(8) {
    left: 75%;
    animation: fall 5s linear infinite;
    animation-delay: 3.5s;
    background: #ff4d4d;
}

.confetti:nth-child(9) {
    left: 85%;
    animation: fall 6s linear infinite;
    animation-delay: 0.5s;
    background: #ffffff;
}

.confetti:nth-child(10) {
    left: 95%;
    animation: fall 7s linear infinite;
    animation-delay: 4.5s;
    background: #ffd800;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }

    100% {
        transform: translateY(120px) rotate(360deg);
    }
}

@media (max-width: 600px) {
    #psBanner {
        padding: 10px;
    }
    #psBanner .bannerContent {
        flex-direction: column;
        gap: 0.5rem
    }
    .confetti {
        height: 6px;
        width: 6px;
    }
}