.banner {
    width: 100%;
    max-width: 1308px;
    background-image: url('images/mobile.jpg');

    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-color: var(--palette-secondary_500);
}

@media (min-width: 444px) {
    .banner {
        background-image: url('images/tablet.jpg');
    }
}
@media (min-width: 972px) {
    .banner {
        background-image: url('images/desktop.jpg');
        background-position: bottom;
    }
}
@media (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (min-width: 972px) {
    .banner {
        background-image: url('images/desktop@2x.jpg');
    }
}



.product-component{
    background-image: url('images/product/product-bg-mobile@2x.jpg');
    background-position: center center;
    background-size: cover;
}
@media (min-width: 636px) {
    .product-component {
        background-image: url('images/product/product-bg-desktop@2x.jpg');
    }
}

.product-logo {
    width: 100%;
    object-fit: cover;
}

.frame {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.product-video::-webkit-media-controls {
    opacity: 0;
}

.product-video:hover::-webkit-media-controls {
    opacity: 1;
}


.product-jackpot{
    background-image: url('images/jackpot-block.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 137px;
    width: 306px;
    position: relative;
    margin: 0 auto;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 636px) {
    .product-jackpot{
        height: 148px;
        width: 375px;
    }
}

.product-jackpot p, .product-jackpot, .winners-component, .winners-component p{
    color: var(--palette-on-primary-high-emphasis) !important;
}

.winners-component .splide *{
    color: var(--palette-on-background-high-emphasis) !important;
}

.winners-component .splide span {
    color: var(--palette-primary_500) !important;
}

.winners-component {
    background-image: url('images/brand-bg-mobile@2x.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 636px) {
    .winners-component{
        background-image: url('images/brand-bg-desktop@2x.jpg');
    }
}

/* fix promo banner copy */
.heading-large {
    margin-top: 30px;
    white-space: nowrap;
}
@media screen and (min-width: 444px) {
    .heading-large {
        margin-top: 60px;
    }
}
@media screen and (min-width: 636px) {
    .heading-large {
        font-size: var(--fontSize-10);
        margin-top: 60px;
    }
}
@media screen and (min-width: 972px) {
    .heading-large {
        font-size: var(--fontSize-10);
        margin-top: 44px;
    }
}
@media screen and (min-width: 1200px) {
    .heading-large {
        font-size: var(--fontSize-10);
        margin-top: 36px;
    }
}

.promo-content {
    position: relative;
    left: 0%;
    top: 20%;
    max-width: fit-content;
}
 @media (min-width: 320px){
    .promo-content {
        top: 12%;
    }
}
@media (min-width: 400px){
    .promo-content {
        top: 16%;
    }
}
@media (min-width: 444px) {
    .promo-content {
        top: 0%;
    }
}  
 @media (min-width: 632px) {
    .promo-content {
        top: 7%;
    }
}
@media (min-width: 972px) {
    .promo-content {
        top: 10%;
    }
}
h2.promo.subtitle-small {
    color: #15abe7;
}
h1.promo.heading-large {
    font-family: var(--fontFamilies-brand-variant);
}

.promo-banner {
    background-image: url('images/product/product-bg-mobile@2x.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 636px) {
    .promo-banner{
        background-image: url('images/product/product-bg-tablet@2x.jpg');
    }
}

@media (min-width: 972px) {
    .promo-banner{
        background-image: url('images/product/product-bg-desktop@2x.jpg');
    }
}

/* LAYERS / 3D STICKERS */

.layer{position: absolute; margin: 0 auto;}
.bell{top: -60%; left: 0; width: 24%; transform: rotate(-14deg);}
.seven{top: -50%; left: 75%; width: 24%; transform: rotate(5deg);}

@media (min-width: 444px){ 
    .bell{top: -50%; left: 0%; width: 24%;}
    .seven{top: -24%; left: 78%; width: 22%;}
}

@media (min-width: 600px) {
    .bell{top: -60%; left: -2%; width: 22%;}
    .seven{top: -20%; left: 82%; width: 22%;}
}

@media (min-width: 732px) {
    .bell{top: -80%; left: -10%; width: 26%;}
    .seven{top: -42%; left: 88%; width: 24%;}
}

@media (min-width: 972px) {
    .bell{top: -78%; left: -30%; width: 36%;}
    .seven{top: -36%; left: 100%; width: 32%;}
}

@media (min-width: 1200px) {
    .bell{top: -65%; left: -42%; width: 38%;}
    .seven{top: -42%; left: 110%; width: 36%;}
}

/* Change CTA on form */

    button#cta, #cta {
        background-color: #E94DEE;
        border-color: #E94DEE;
        cursor: pointer;
    }
    button#cta:hover {
        background-color: #e0e0e0;
        border-color: #e0e0e0;;
        cursor: pointer;
    }

/* new header color */
    .header {
        background: #200833;
    }
    .header.header-variant {
        border-bottom: 1px solid #200833;
    }
    
