.content-page .main-content-body {
    background: #f5f5f5;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 15px;
    padding-bottom: 30px;
    width: calc(100% + 24px);
    color: var(--body-text-color);
}

.game {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: calc(481px * 0.7);
    width: calc(474px * 0.7);
    margin: 0 auto;
}

.game-inner {
    transform-origin: center;
    transform: scale(0.7);
}

.tiroirs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tiroir {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.tiroir img {
    width: 100%;
}


.tiroir .cards img {
    width: auto;
    position: absolute;
}

.content-page .text-result {
    margin-bottom: 15px;
}

.content-page #main-section {
    padding-bottom: 0;
}

.content-page .btn-submit-auto {
    font-size: 17px;
}

@media (max-width: 992px) {
    .content-page .instruction {
        margin-bottom: 20px;
    }
}
@media (min-width: 992px) {
    .content-page .btn-submit-auto {
        font-size: 23px;
    }
    .content-page .main-content-body {
        margin: 0;
        width: auto;
    }
    .game-inner {
        transform: scale(1);
        margin: 0 auto;
    }
    .game{
        height: auto;
    }
    .content-page .text-wrapper {
        margin-bottom: 0;
    }

    .content-page .text-result {
        margin-bottom: 0;
    }
}