:root {
    --color-secondary-bomslot: #471525;
    --btn-gradient-bomslot: linear-gradient(90deg,#471525,#13162f);
    --btn-gradient-bomslot-reverse: linear-gradient(-90deg,#471525,#13162f);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0
}

body {
    user-select: none;
    -webkit-user-select: none;
    font-family: 'Montserrat', sans-serif;
    max-width: 970px;
    display: block;
    margin: auto;
    margin-top: 5px;
}

a,
a:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 0
}

.card-g-slot {
    float: left;
    width: 19.666667%;
    border: none;
    text-align: center;
    position: relative;
    transition: .5s all;
}

.text-rtp {
    font-weight: bold;
    font-size: 12pt;
    padding: 2px
}

.i-card {
    margin: 1px;
    color: #fdc54c;
    font-size: 12px;
    overflow: hidden;
    position: relative;
    background-color: #111;
    border-radius: 5px;
    padding: 0
}

.percent {
    height: 12px;
    display: flex;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #333;
    position: relative;
    z-index: 99;
    border-radius: 5px;
    width: 95%;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    -moz-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
    margin: 0 auto
}

.percent p {
    z-index: 15;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 200;
    transform: translateY(14px);
    color: #000
}

.percent-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .7s ease;
    -webkit-animation: progress-bar-stripes 5s linear infinite;
    animation: progress-bar-stripes 5s linear infinite;
    z-index: 10
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 50px;
    }
}

@-moz-keyframes progress-bar-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 50px;
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 50px;
    }
}

.yellow {
    background-color: #ffff00de;
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
}

.green {
    background-color: #28a745;
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
}

.red {
    background-color: #dc3545;
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.2), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
}

.btn-play {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fdc54c;
    text-align: center;
    align-items: center;
    padding: 8px;
    border-radius: 5px;
    border-bottom: 2px solid ;
    display: block;
    margin: 10px 30px;
    border-bottom: 2px solid transparent;
    box-shadow: 0 0 2px #fdc54c;
    background-color: #471525;
    background-image: var(--btn-gradient-bomslot);
    transition: all .3s ease
}

.btn-play:hover {
    border-bottom: 2px solid #fdbb2c;
    background-image: var(--btn-gradient-bomslot-reverse)
}

.game-img {
    width: 100%;
    box-shadow: 0 0px 5px 0 rgb(0 0 0 / 50%) inset;
    transition: all .45s ease-in-out
}

@media (max-width:800px) {
    .card-g-slot {
        width: 33.3%
    }

    .percent {
        height: 10px
    }

    .game-img {
        height: auto
    }

    .btn-play {
        margin: 10px 15px
    }

}