.quizTable table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
}
.quizTable table th {
    font-weight: 600;
}
.quizTable table td,
.quizTable table th {
    padding: 6px 6px;
    border: 1px solid #dfe2e5;
}
.quizTable table tr {
    background-color: #fff;
    border-top: 1px solid #c6cbd1;
}
.quizTable table {
    border-spacing: 0;
    border-collapse: collapse;
}
.quizTable td,
.quizTable th {
    padding: 0;
}
.quizTable table thead tr {
    background-color: #f6f8fa;
}
.correctAnswer {
    font-weight: bold;
    color: #ff8837;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    table {
        table-layout: fixed;
    }
}

@media only screen and (max-width: 480px) {
    .quizTable table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: calc(100vw - 80px); !important;
    }
}