.debug {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-family: monospace;
    font-size: 1.6rem;
}

.slots-div {
    display: flex;
    justify-content: center;
    background: #f2d9e0;
}
/* html, body {
    height: 100%;
} */
/* body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, grey 0%, lightgray 100%);
} */


/* .slots {
    position: relative;
    padding-left: 68px;
    padding-right: 55px;
    max-width: 640px;
    width: 100%;
    height: 772px;
    display: flex;
    background-image: url(https://dev01.infinitekparis.com/wp-content/themes/flatsome-child/global/casino_sv/media/background.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center, center;
} */

.slots {
    position: relative;
    max-width: 640px;
    width: 100%;
    display: flex;
    background-image: url(https://dev01.infinitekparis.com/wp-content/themes/flatsome-child/global/casino_sv/media/background.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center, center;
}

.slots .reel {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    background-image: url(https://dev01.infinitekparis.com/wp-content/themes/flatsome-child/global/casino_sv/media/images.png);
    background-position: 0 0;
    background-repeat: repeat-y;
    background-size: cover;
}

@media (min-width: 660px){

    .slots {
        padding-left: 124px;
        padding-right: 99px;
        height: 772px;
    }

    .slots .reel {
        width: 117px;
        margin-top: 302px;
        margin-right: 24px;
        height: 187px;
    }
}

@media (max-width: 660px){

    .slots {
        padding-left: 68px;
        padding-right: 55px;
        height: 775px;
    }

    .slots .reel {
        width: 67px;
        margin-top: 339px;
        margin-right: 11px;
        height: 106px;
        
    }

}


.slots::before, .slots::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.5);
}
/* .slots::before {
    left: 0;
    transform: translate(-200%, -50%);
} */
/* .slots::after {
    right: 0;
    transform: translate(200%, -50%);
} */
@keyframes win1 {
    0% {
        background: linear-gradient(45deg, orange 0%, yellow 100%);
        box-shadow: 0 0 80px orange;
   }
    100% {
        background: linear-gradient(45deg, grey 0%, lightgrey 100%);
        box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
   }
}
@keyframes win2 {
    0% {
        background: linear-gradient(45deg, lightblue 0%, lightgreen 100%);
        box-shadow: 0 0 80px lightgreen;
   }
    100% {
        background: linear-gradient(45deg, grey 0%, lightgrey 100%);
        box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.3);
   }
}
.slots.win1 {
    animation: win1 200ms steps(2, end) infinite;
}
.slots.win2 {
    animation: win2 200ms steps(2, end) infinite;
}


.slots .reel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%);
    box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);
}
.slots p {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translate(-50%, calc(100% + 30px));
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}
.slots p a {
    color: red;
    font-weight: 700;
}
