.usga-exam-section {
    margin: 10px 10px 40px 10px;
    font-family: "NationalWeb";
    font-weight: bold;
}

#one-hundred-q-exams,
#eighty-q-exams {
    font-family: "NationalWeb";
    max-height: 750px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#one-hundred-q-exams::-webkit-scrollbar,
#eighty-q-exams::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.exam-details-heading-row,
.exam-details-data-row {
    display: flex;
}


.exam-details-heading {
    font-weight: bold;
}

.exam-details-data {
    font-weight: normal;
}


.exam-details-heading,
.exam-details-data {
    flex: 1;
}

@media only screen and (max-width:998px) {
    .exam-details-container {
        display: flex;
        gap: 2em;
        overflow: scroll;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .exam-details-container::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }


    .exam-details-heading-row,
    .exam-details-data-row {
        display: block;
    }

    .exam-details-heading,
    .exam-details-data {
        flex: 0;
    }

}