.question-lists {
    display: grid!important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body {
    display: flex;
    flex-direction: column;
    overflow: scroll;
    background-size: auto;
    padding-bottom: 30px;
}

.sub-question {
    display: flex;
    flex-direction: column;
    position: relative;
}

.section-question .page-body .question-row.sub-question .block-img img {
    /*max-height: 130px;*/
    max-height: 80px;
}


.section-question .page-body .question-row.sub-question .block-check {
    /*max-height:35px !important;*/
    max-height: 30px !important;
    width: 30px !important;
    position: absolute;
    top: 0;
}

.section-question .page-body .question-row.sub-question .check {
    margin-bottom: 10px;
    text-align: center;
    color: black;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    /*font-size: 16px;*/
    font-size: 12px;
}

.button-footer {
    display:flex;
    flex-flow:column;
    align-items:center;
    gap: 0.5rem;
    justify-content:center;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1281px) {
    body {
        height: 100vh;
        overflow: hidden;
        background-size: cover;
    }
    
    .section-question .page-body .question-row.sub-question .block-img img {
        max-height: 130px;
    }
    
    .section-question .page-body .question-row.sub-question .check {
        font-size: 16px;
    }
    
    .button-footer {
        margin-bottom: 0;
        margin-top: 1rem;
    }
    
    .section-question .page-body .question-row.sub-question .block-check {
        max-height: 35px !important;
        width: 130px !important;
        position: relative;
    }
}