ol {
    counter-reset: list;
}

ol>li {
    list-style: none;
    position: relative;
}

ol>li:before {
    content: "(" counter(list, lower-roman) ") ";
    counter-increment: list;
    position: absolute;
    left: -1.4em;
}

.small {
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.div_class {
    border-bottom: 1px solid #dee2e6;
}

.p_class {
    font-size: 0.9em;
}

.span_style {
    font-size: 13.3333px;
}