/* .progress-container {
    width: 100%;
    background-color: #B2B2B2;
    border-radius: 50px;
    height: 30px;
    margin-bottom: 10px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.wq_answerTxtCtr {
    padding: 0 !important;
}

.wq-answers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(auto-fit, minmax(150px, 150px));
    gap: 10px;
    text-align: center;
}

.controller {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.wq-answer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    overflow: hidden;
}

#get-all-results {
    margin-top: 10px;
}

.wq_answerTxtCtr::before {
    display: none;
}

.progress-bar {
    height: 30px;
    background: #4CAF50;
    width: 0;
    transition: width 0.5s;
}

.wq_answerTxtCtr::after {
    display: none;
}

.progress-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.prev-button {
    display: none;
} */

.questions-actions {
    display: none;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.questions-actions button {
    min-width: 320px;
    padding: 20px 0;
}

body .wq_questionTextCtr {
    width: 100%;
}

@media screen and (max-width:786px) {
    .questions-actions button {
        min-width: 320px;
        padding: 20px 0;
    }

    .questions-actions {
        flex-wrap: wrap;
        gap: 20px !important;
    }

    .wq_questionTextCtr {
        width: 100% !important;
    }

    body .wq_questionTextCtr h4 {
        font-size: 21px !important;
        line-height: 1.2 !important;
    }

    #results-circle {
        gap: 0 !important;
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 20px;
    }
}