body {
    counter-reset: notesection;
}
.option_note:before {
    counter-increment: notesection;
    content: counter(notesection) ". ";
}
.list_container .list_body {
    font-size: 1rem;
}

@media(min-width: 576px){
    #content_area{
        padding-left: 5%;
        padding-right: 5%;
    }
    .list_container .list_body {
        border-bottom: 1px solid rgb(200,200,200);
        margin-bottom: 0;
        background-color: transparent;
        filter: none;
        border-radius: 0;
    }
}
@media(min-width: 1200px){
    #content_area{
        padding-left: 10%;
        padding-right: 10%;
    }
    
}
@media(min-width: 1400px){
    #content_area{
        padding-left: 15%;
        padding-right: 15%;
    }
}
@media(min-width: 1600px){
    #content_area{
        padding-left: 20%;
        padding-right: 20%;
    }
}