.slots-list {
    font-family: Poppins, sans-serif!important;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    column-gap: 15px;
}

.single-casino-game-css {
    background-color: #a4a4a4;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 40%;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    display: block;
}

.single-game_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.45);
}

.single-game_overlay:hover {
    cursor: pointer;
}

.single-game_overlay--info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.single-game--info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-top: 10px;
}

.single-game--cta {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.single-game--cta a {
    color: #fff;
    background-color: #ff333a;
    padding: 10px 55px;
    border-radius: 5px;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .slots-list {
        display: grid;
        grid-template-columns: auto;
    }
}

/* ------------------------------------------------------------------ */

.fas.fa-angle-right {
    margin-left:5px;
    font-size: 14px;
}

.single-slot #main {
    margin-bottom: 0;
    background-color: transparent!important;
}

.single-slot #footer {
    margin: 0!important;
}

.single-slot .page-wrapper {
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
}

.single-game-container {
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
}

.game-upper-container {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.game-lower-container {
    color: #fff;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-lower-container h2 {
    color: #fff;
}

.game-title {
    font-family: Poppins, sans-serif!important;
    display: block;
    padding: 40px 0 20px;
}

.game-title h1 {
    margin-bottom: 0;
    text-align: center;
    color: #fff!important;
    font-weight: bold;
}

.game-left {
    flex: 30%;
    padding: 0 10px;
    margin-left: 30px;
}

.game-right {
    flex: 70%;
    position: relative;
}

.singlegame-iframe {
    width: 100%;
    height: 500px;
    border-radius: 5px;
}

.casino-game-info {
    font-family: Poppins, sans-serif!important;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    color: #fff;
}

.casino-game-info--row {
    display: flex;
    padding: 10px;
    justify-content: space-between;
    border-bottom: 2px solid #2b2b2b;
}

.info-row-right {
    font-weight: bold;
}

.game-right-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    left: 0;
    top: 0;
}

.game-right-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.play-for-real, .play-for-play {
    display: flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.play-for-real a {
    background-color: #ff5245;
    font-weight: bold;
}

.play-for-play span {
    background-color: lightseagreen;
    cursor: pointer;
    font-weight: bold;
}

.play-for-real a, .play-for-play span {
    color: #fff;
    width: 50%;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
}

@media only screen and (max-width: 767px) {
    .game-upper-container {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .game-left {
        width: 100%;
    }
    .game-right {
        width: 100%;
    }
}