
/* modal privacy policy */

#privacyPoliceModal #content-pp {
    background-color: var(--lighter-cream);
    border: none;
    border-radius: 5px;
    padding: 1rem;
    color: var(--base-gray);
    text-align: left;
    height: 60vh;
    overflow-y: auto;
    border: 1px var(--dark-cream) solid;
}

#privacyPoliceModal #content-pp .container {
    max-width: none;
    min-height: 0;
    margin-bottom: 1rem;
}

#privacyPoliceModal #content-pp .container ul li {
    padding-top: 0.5rem;
    text-align: justify;
}

/** ===== Privacy Policy (PP) - Section - start ===== **/
/* Title */
.pp-body .pp-title {
    font-weight: bold;
}

/* Description / Info */
.pp-body .pp-info {
}

/* List items */
.pp-body .pp-list {
}

/* Counter ordered list item */
.pp-body .pp-list > ol {
    counter-reset: my-counter;
}
.pp-body .pp-list > ol > li {
    counter-increment: my-counter;
}
.pp-body .pp-list > ol > li::before {
    content: counter(my-counter) ". ";
}

/* Styling ordered list item */
.pp-body .pp-list > ol {
    list-style: none;
}
.pp-body .pp-list ol > li {
    margin-top: 0.3rem;
}
.pp-body .pp-list ol > li > div:last-child {
    margin-bottom: 0.8rem;
}

.pp-body .pp-list ol > li::before,
.pp-body .pp-list ol > li::marker,
.pp-body .pp-list ol > li > span:first-of-type {
    font-size: 0.9rem;
}

/* Bold the title of the ordered list */
.pp-body .pp-list ol.title-bold > li::before,
.pp-body .pp-list ol.title-bold > li::marker,
.pp-body .pp-list ol.title-bold > li > span:first-of-type {
    font-weight: bold;
}

/* Styling unordered list inside list item */
.pp-body .pp-list ul > li {
    margin-top: 0.3rem;
}
.pp-body .pp-list ul > li > div {
    margin-bottom: 0.8rem;
}

/* Table inside list items */
.pp-body .pp-table {
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 1rem;
}
.pp-body .pp-table tr td {
    vertical-align: top;
    padding-bottom: 0.3rem;
}
.pp-body .pp-table .pp-table-header .pp-table-icon {
    width: 3%;
}
.pp-body .pp-table .pp-table-header .pp-table-title {
    width: 10%;
}

/* Modal */
.pp-body.pp-modal .pp-title {
    padding-bottom: 0.5rem;
    margin-bottom: 1.3rem;
    border-bottom: 1px solid #e0d7d2;
}
.pp-body.pp-modal .pp-list ol {
    padding-left: 1rem;
}
.pp-body.pp-modal .pp-list ol.ol-child {
    padding-left: 2rem;
}
.pp-body.pp-modal .pp-list > ol > li::before {
    margin-left: -1rem;
}
.pp-body.pp-modal .pp-table .pp-table-header .pp-table-icon {
    width: 4%;
}
.pp-body.pp-modal .pp-table .pp-table-header .pp-table-title {
    width: 13%;
}
/** ===== Privacy Policy (PP) - Section - end ===== **/
