﻿.privacidade-items {
    font-size: 18px;
    padding-bottom: 50px;
    word-break: break-word;
}

.privacidade-items ol {
    counter-reset: item;
    margin-bottom: 0;
    padding-left: 0;
}

.privacidade-items :not(.nostyle) li {
    display: block
}

.privacidade-items :not(.nostyle) li:before {
    content: counters(item, ".") ". ";
    counter-increment: item
}

.privacidade-items > ol:not(.nostyle) > li {
    color: #03435b;
    font-weight: 900;
}

.privacidade-items > ol > li > ol > li {
    color: #818181;
    font-weight: normal;
}

.privacidade-items ol:not(.nostyle) > li,
.privacidade-items .content {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
}

.privacidade-items :not(.nostyle) li::before {
    font-weight: bold;
}

@media (max-width: 425px) {
    .privacidade-items {
        font-size: 28px;
        line-height: 45px;
    }
}

ol.parentheses {
  counter-reset: list;
}

ol.parentheses > li {
    list-style: none;
}

ol.parentheses > li:before {
    content: counter(list, lower-alpha) ") ";
    counter-increment: list;
}