@media screen and (max-width: 1200px) and (min-width: 1000px) {

    .content-page {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media screen and (max-width: 999px) and (min-width: 640px) {

    .content-page {
        margin-left: 24px;
        margin-right: 24px;
    }

    .panel-question__wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        overflow: hidden;
    }

    .panel-question__theme {
        padding: 12px 0;
        width: 280px;
        text-align: center;
    }

}

@media screen and (max-width: 639px) and (min-width: 0px) {

    .header {
        flex-wrap: wrap;
    }

    .content-page {
        margin-left: 12px;
        margin-right: 12px;
    }

    .panel-question__wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        overflow: hidden;
    }

    .panel-question__theme {
        font-size: 0.8rem;
    }

    .section__current-question {
        padding: 32px 24px;
        background-color: #222323;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .current-question__image-wrap {
        width: 180px;
        height: 120px;
        border-radius: 15px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .current-question__image {
        height: 360px;
        object-fit: cover;
        object-position: -180px -100px;
    }

    .current-question__player-wrap {
        width: 100%;
        text-align: center;
    }

    .player {
        height: 80px;
    }

    .section__panel-answers {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .panel-answers__variant, .panel-answers__variant-description-wrap {
        width: 100%;
    }

    .panel-answers__variant-description-wrap {
        height: 240px;
    }

    .footer {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
}