/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .j-marquee .box-text {
        padding-top: 1rem;

    }

    .j-marquee img {
        height: 44px;

    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}

@media only screen and (min-width: 1199px) {
    .j-jackpot p {
        font-size: 32px;
        margin-top: -90px;
        /* position: absolute;
        bottom: 100%; */
    }


}

@media (max-width : 1200px) {
    .j-jackpot p {
        font-size: 25px;
        margin-top: -60px;
        /* position: absolute;
        bottom: 100%; */
    }
}

@media (max-width: 992px) {
    .j-jackpot {
        font-size: 18px;
        margin-top: -10px;
        /* Adjust font size for screens smaller than 992px */
    }
}

@media (max-width: 768px) {
    .j-jackpot {
        font-size: 15px;
        margin-top: -10px;
        /* Adjust font size for screens smaller than 768px */
    }
}