﻿article section ul#myUL li::before {
    content: "";

}
section .box.documenti li .caret h2 a {
    pointer-events: none;
}

/* Remove default bullets */
ul, #myUL,
article section ul#myUL li {
    list-style-type: none;
    color: #0f3f68;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
}
    article section ul#myUL li li {
        font-size: 16px;
        margin-bottom: 10px;
    }
/* Remove margins and padding from the parent ul */
#myUL {
    margin: 0;
    padding: 0;
}

/* Style the caret/arrow */
.caret {
    cursor: pointer;
    user-select: none;

}

    /* Create the caret/arrow with a unicode, and style it */
#myUL span.caret::before {
    content: "\f65e";
}
#myUL span::before {
    content: "\f07b";
    color: #7bce2b;
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
}
/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
    content: "\f146";
    color: #7bce2b;
    display: inline-block;
    margin-right: 6px;
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
}

/* Hide the nested list */
.nested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
    display: block;
}
