/* a) */
ol.alphabetical_bullet {
    list-style: none; /* Remove default numbering */
    counter-reset: list-counter; /* Create a counter */
}
ol.alphabetical_bullet li {
    counter-increment: list-counter; /* Increment counter */
    position: relative;
}
ol.alphabetical_bullet li::before {
    content: counter(list-counter, lower-alpha) ") "; /* Format as 'a)' */
    position: absolute;
    left: -1.5em; /* Adjust spacing */
}

ol.parenthes_number_bullet {
    list-style: none;
    counter-reset: list-counter;
}

ol.parenthes_number_bullet li {
    counter-increment: list-counter; /* Increment counter */
    position: relative;
}

ol.parenthes_number_bullet li::before {
    content: counter(list-counter, decimal) ") "; /* Format as 'a)' */
    position: absolute;
    left: -1.5em; /* Adjust spacing */
}

ul.hyphen_bullet {
    list-style-type: none; /* Alapértelmezett jelölők eltüntetése */
    padding-left: 0;
}

ul.hyphen_bullet  li::before {
    content: "- ";
    margin-right: 5px;
}

/*  */
ul.without_bullet {
    list-style: none;
}

.li_without_bullet {
    font-weight: bold;
    list-style-type: none;
    text-indent: -1em
}