.elementor-1964 .elementor-element.elementor-element-3ff4333{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-78e62d *//* Reset OL */
#pdpa-content ol {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1em 0;
    counter-reset: section;
}

#pdpa-content ol li {
    display: block;
}


/* =====================================
   LEVEL 1
   1. INTRODUCTION
===================================== */

#pdpa-content > ol > li {
    counter-increment: section;
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
}

#pdpa-content > ol > li::before {
    content: counter(section) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}


/* Nested OL */
#pdpa-content > ol > li > ol {
    counter-reset: subsection;
    margin: 15px 0 0 0;
    padding: 0;
}


/* =====================================
   LEVEL 2
   1.1 / 1.2 / 1.3
===================================== */

#pdpa-content > ol > li > ol > li {
    counter-increment: subsection;
    position: relative;

    /* distance between 1.1 and paragraph */
    padding-left: 33px;

    /* overall indentation */
    margin-top: 15px;
}

#pdpa-content > ol > li > ol > li::before {
    content: counter(section) "." counter(subsection);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}


/* =====================================
   LEVEL 3
   1.1.1
===================================== */

#pdpa-content > ol > li > ol > li > ol {
    counter-reset: subsubsection;
    margin-top: 15px;
    padding: 0;
}

#pdpa-content > ol > li > ol > li > ol > li {
    counter-increment: subsubsection;
    position: relative;
    padding-left: 70px;
    margin-left: 30px;
    margin-bottom: 15px;
}

#pdpa-content > ol > li > ol > li > ol > li::before {
    content:
        counter(section) "."
        counter(subsection) "."
        counter(subsubsection);

    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}/* End custom CSS */