.winnings-container {
    background-image: linear-gradient(  45deg,
    hsl(217deg 82% 25%) 0%,
    hsl(215deg 83% 27%) 11%,
    hsl(213deg 85% 28%) 22%,
    hsl(211deg 87% 30%) 33%,
    hsl(209deg 89% 31%) 44%,
    hsl(208deg 91% 32%) 56%,
    hsl(206deg 93% 33%) 67%,
    hsl(205deg 95% 34%) 78%,
    hsl(204deg 97% 35%) 89%,
    hsl(203deg 99% 36%) 100%
    );

    display: none;
    padding: 15px 15px;
    position: relative;
    left: 0px;
    width: calc(100% + 30px);
    overflow-x: hidden;
    box-sizing: border-box;

    align-items: center;
    align-content: center;
    height: 100px;

    --space: 2rem;
    --duration: 30s;
    --gap: var(--space);

    -webkit-user-select: none;

       -moz-user-select: none;

            user-select: none;

    position: fixed;
    bottom: 0;
    z-index: 1;
}

@keyframes ticker-sticky-bar {
    0% {
        transform: translateZ(0);
        visibility: visible;
    }
    100% {
        transform: translate3d(-100%,0,0);

    }
}

.winnings-bar {
    display: inline-block;
    white-space: nowrap;
    align-items: center;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker-sticky-bar;
    animation-duration: 30s;

    font-size: 16px;
    padding-left: 100%;
    font-weight: 700;
    line-height: 20px;
    color: white;
    box-sizing: content-box;
}

@media (prefers-reduced-motion: reduce) {
  .winnings-bar {
    animation-play-state: paused;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.amounts {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0px;
    background: -webkit-linear-gradient(267.55deg, #ECFB3E 47.8%, #FAC91C 94.57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-img {
    border: 2px solid #FFFFFF80;
    border-radius: 5px;
}

.img-text {
    display: inline-block;
    margin-left: 8px;
    padding-right: 65px;
    text-align: left;
    white-space: nowrap;
    z-index: 2;
}

.bannerGames {
    z-index: 2;
    display: inline-block;
    padding-right: 65px;
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.imageDiv {
    display: inline-block;
    white-space: nowrap;
    text-align: left;
    vertical-align: text-bottom;
}

@media (max-width: 980px) {
    .winnings-container {
        position: relative;
        width: calc(100% + 0px);
    }
}

@media (max-width: 479px) {
    .winnings-container {
        position: relative;
        width: calc(100% + 0px);
    }
}

