<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Copyright 2025 Luna S.R.L.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.prc-modal :root {
    --prc-pc: #f8f8f8;
    --prc-sc: #f8f8f8;
}

.prc-modal *,
.prc-modal *::before,
.prc-modal *::after {
    all: revert;
}

.prc-modal {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    position: fixed;
    z-index: 999999;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    width: 100%;
    overflow: hidden;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    transition: all .25s;
    color: #2f2f2f;
    max-height: 0;
}

.prc-modal.opened {
    max-height: 60%;
}

.prc-modal .prc-modal-footer {
    padding: 1rem 0.75rem;
}

.prc-modal .prc-modal-body-left .prc-modal-header-shadow,
.prc-modal .prc-modal-body-left .prc-modal-footer-shadow {
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
}

.prc-modal .prc-modal-body-left .prc-modal-header-shadow {
    top: 0;
    background: linear-gradient(0deg, #ffffff00 0%, #ffffff 70%);
}

.prc-modal .prc-modal-body-left .prc-modal-footer-shadow {
    bottom: 0;
    background: linear-gradient(180deg, #ffffff00 0%, #ffffff 70%);
}

    
.prc-modal .prc-modal-footer p {
    margin: 0
}

.prc-modal .prc-modal-powered-by p.powered-by {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 10px;
}

.prc-modal .prc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #dfdfdf;
}

.prc-modal .prc-modal-h4,
.prc-modal .prc-modal-header {
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-weight: 600;
}

.prc-modal-powered-by hr {
    border-top: 1px solid var(--prc-pc);
}

.prc-modal .prc-modal-buttons {
    display: flex;
    gap: 0.75rem;
}

.prc-modal .btn {
    background-color: white;
    padding: 6px 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border: 1px solid black;
    color: black;
}

.prc-modal .btn.btn-primary {
    border-color: var(--prc-pc);
    color: var(--prc-pc);
}

.prc-modal .btn.btn-secondary {
    border-color: var(--prc-sc);
    color: var(--prc-sc);
}

.prc-modal .btn.btn-none {
    border-color: black;
    color: black;
}

.prc-modal .prc-cookie-category {
    list-style-type: none;
    padding-inline-start: 0;
    margin: 1rem 0;
}

.prc-modal .prc-cookie-category li {
    margin-bottom: 0.65rem
}

.prc-modal .prc-modal-body {
    display: flex;
    background-color: #fff;
}

.prc-modal .prc-modal-footer {
    display: flex;
    background-color: white;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    border-top: 1px solid #dfdfdf;
}

.prc-modal .prc-modal-body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.prc-modal .prc-modal-body-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 70vw;
    padding: 1rem;
    /* flex-grow: 1; */
}

.prc-modal .prc-modal-body-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    width: 100%;
}

.prc-modal .prc-modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.prc-modal .text-container {
    flex: 0.5;
}

.prc-modal .text-container p {
    text-align: justify;
}

.prc-modal .title {
    font-family: 'Inter', sans-serif;
}

.prc-modal .prc-modal-close {
    font-size: 1.25rem;
    cursor: pointer;
}

.prc-modal .prc-modal-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.prc-modal ~ .prc-cookie-settings-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222b45;
    box-shadow: inset #ffff 0 0 0 1px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: fixed;
    z-index: 999998;
    cursor: pointer;
    border: 2px solid #222b45;
    transform: scale(1.2);
    transition: all .2s ease-in-out;
}

.prc-modal:not(.opened) ~ .prc-cookie-settings-wrapper:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    background: #222b45;
    color: #fff;
    left: calc(100% + 7px);
    font-size: 12px;
    line-height: 16px;
    width: max-content;
    padding: 4px 8px;
    border-radius: 4px;
}

.prc-modal:not(.opened) ~ .prc-cookie-settings-wrapper:hover,
.prc-modal:not(.opened) ~ .prc-cookie-settings-wrapper:focus {
    transform: scale(1.25);
}

.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-bottom-left,
.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-bottom-right {
    bottom: 15px;
}

.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-top-left,
.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-top-right {
    top: 15px;
}

.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-bottom-left,
.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-top-left {
    left: 15px;
}

.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-bottom-right,
.prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-top-right {
    right: 15px;
}

/* Support for Wordpress Top link on same position */
.w-toplink.pos_left.active ~ .prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-bottom-left {
    transform: translateX(75px); /* 45 + 15 + 15  */
}

.w-toplink.pos_right.active ~ .prc-modal ~ .prc-cookie-settings-wrapper.prc-cookie-settings-bottom-right {
    transform: translateX(-75px);
}

.prc-modal ~ .prc-cookie-settings-wrapper .prc-cookie-settings {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
}

.prc-modal ~ .prc-cookie-settings-wrapper .prc-cookie-settings img {
    max-width: fit-content;
    margin: 0;
    height: 30px;
    width: 30px;
}

.prc-modal a {
    text-decoration-color: var(--prc-pc);
    color: var(--prc-pc);
}

.prc-modal .prc-cookie-category input[type="checkbox"] {
    accent-color: var(--prc-sc);
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    flex-shrink: 0;
    font-size: 0.75em;
    text-align: center;
    margin-top: 0;
    margin-right: 0.5rem;
    line-height: 1rem;
    height: 1rem;
    width: 1rem;
    min-height: 0 !important;
    padding: 0 !important;
    border: 2px solid var(--prc-sc);
    color: var(--prc-sc);
    box-sizing: content-box;
}

.prc-modal .prc-cookie-category input[type="checkbox"]:before {
    display: none;
    visibility: visible;
    content: '';
}

.prc-modal .prc-cookie-category input[type="checkbox"] ~ label {
    vertical-align: middle;
}

.prc-modal .prc-cookie-category input[type="checkbox"]:checked:before {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--prc-sc);
    mask-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjgwMHB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIA0KCSB2aWV3Qm94PSIwIDAgMTcuODM3IDE3LjgzNyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBzdHlsZT0iZmlsbDojMDMwMTA0OyIgZD0iTTE2LjE0NSwyLjU3MWMtMC4yNzItMC4yNzMtMC43MTgtMC4yNzMtMC45OSwwTDYuOTIsMTAuODA0bC00LjI0MS00LjI3DQoJCWMtMC4yNzItMC4yNzQtMC43MTUtMC4yNzQtMC45ODksMEwwLjIwNCw4LjAxOWMtMC4yNzIsMC4yNzEtMC4yNzIsMC43MTcsMCwwLjk5bDYuMjE3LDYuMjU4YzAuMjcyLDAuMjcxLDAuNzE1LDAuMjcxLDAuOTksMA0KCQlMMTcuNjMsNS4wNDdjMC4yNzYtMC4yNzMsMC4yNzYtMC43MiwwLTAuOTk0TDE2LjE0NSwyLjU3MXoiLz4NCjwvZz4NCjwvc3ZnPg==');
    mask-repeat: no-repeat;
    mask-size: 0.75rem;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjgwMHB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIA0KCSB2aWV3Qm94PSIwIDAgMTcuODM3IDE3LjgzNyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBzdHlsZT0iZmlsbDojMDMwMTA0OyIgZD0iTTE2LjE0NSwyLjU3MWMtMC4yNzItMC4yNzMtMC43MTgtMC4yNzMtMC45OSwwTDYuOTIsMTAuODA0bC00LjI0MS00LjI3DQoJCWMtMC4yNzItMC4yNzQtMC43MTUtMC4yNzQtMC45ODksMEwwLjIwNCw4LjAxOWMtMC4yNzIsMC4yNzEtMC4yNzIsMC43MTcsMCwwLjk5bDYuMjE3LDYuMjU4YzAuMjcyLDAuMjcxLDAuNzE1LDAuMjcxLDAuOTksMA0KCQlMMTcuNjMsNS4wNDdjMC4yNzYtMC4yNzMsMC4yNzYtMC43MiwwLTAuOTk0TDE2LjE0NSwyLjU3MXoiLz4NCjwvZz4NCjwvc3ZnPg==');
    -webkit-mask-size: 0.75rem;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.prc-modal .prc-cookie-category input[type="checkbox"]:disabled {
    accent-color: #808080;
    border-color: #808080;
    opacity: 0.5;
}

.prc-modal .prc-cookie-category input[type="checkbox"]:disabled:checked:before {
    background-color: #808080;
}

.prc-modal .prc-modal-body-left p {
    margin: 0;
    overflow: auto;
    padding: 10px 0;
}

.prc-modal .prc-modal-body-left {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .prc-modal {
        font-size: 0.875rem;
    }

    .prc-modal .prc-modal-body-left {
        /* max-height: 40%; */
        overflow-y: hidden;
    }
}

@media screen and (max-width: 768px) {
    
    .prc-modal.opened {
        max-height: 75%;
    }

    .prc-modal .prc-modal-body {
        overflow-y: scroll;
    }

    .prc-modal .prc-modal-body {
        flex-direction: column;
    }

    .prc-modal .prc-modal-body-right {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin: 0;
        width: auto;
        padding:  0.45rem;
    }

    .prc-modal .prc-modal-body-left {
        max-width: none;
        max-height: none;
        overflow-y: revert;
        padding: 0.45rem;
    }

    .prc-modal .prc-modal-body-left p {
        margin: 0 !important;
        padding: 5px 0;
        overflow: auto;
        max-height: 20vh;
    }

    .prc-modal .prc-modal-body-left .prc-modal-header-shadow,
    .prc-modal .prc-modal-body-left .prc-modal-footer-shadow {
        height: 20px;
    }

    .prc-modal .prc-modal-buttons {
        flex-direction: column;
    }

    .prc-modal .prc-cookie-category {
        margin-bottom: 0;
    }

    .prc-modal .prc-cookie-category li {
        margin-bottom: 0.35rem;
    }
}

@media screen and (max-width: 768px) {

    .prc-modal .prc-cookie-category {
        margin-bottom: 0;
        margin-top: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .prc-modal .prc-modal-buttons {
        gap: 0.25rem;
        margin-top: 1rem;
    }

    .prc-modal .prc-modal-footer {
        padding: 0.45rem;
        margin: 0;
    }

    .prc-modal .prc-modal-header {
        padding: 0.45rem;
    }

    .prc-modal {
        font-size: 0.775rem;
    }

    .prc-modal .prc-modal-h4,
    .prc-modal .prc-modal-header {
        font-size: 1rem;
        line-height: 1rem;
    }

    .prc-modal-body-right {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin: 0;
        min-width: 0;
    }
}

@media screen and (max-width: 420px) {
    .prc-modal.opened {
        max-height: 80%;
    }
}

@media screen and (max-width: 576px) {
    .prc-modal.opened {
        max-height: 80%;
    }
}

@media screen and (max-height: 600px) {
    .prc-modal {
        overflow: auto;
    }
}
/* Overall Modal Styling */
.prc-cookie-detail-modal {
    position: fixed;
    z-index: 999999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 80vw;
    border: 2px solid #0d47a1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    color: #333;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    min-height: 75%;
    max-height: 90%;
}

@media screen and (max-width: 768px) {
    .prc-cookie-detail-modal {
        max-width: 95vw;
    }

    .prc-cookie-detail-modal.opened {
        max-height: 100%;
    }

    .prc-cookie-detail-modal .prc-cookie-detail-modal-body {
        padding: 1rem;
    }

    .prc-cookie-detail-modal-body table {
        font-size: 0.5rem;
    }

    #prc-cookie-detail-modal-body-explanation {
        font-size: 0.5rem;
    }
    
}

.prc-cookie-detail-modal table {
    width: 100%;
    border-collapse: collapse;
}

.prc-cookie-detail-modal th {
    text-align: left;
}

.prc-cookie-detail-modal tr {
    border-bottom: 1px solid #ddd;
}

.prc-cookie-detail-modal.opened {
    opacity: 1;
    visibility: visible;
}

.prc-cookie-detail-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 2rem;
    border-bottom: 1px solid #dfdfdf;
    background-color: #0d47a1;
    color: #fff; /* Optional: Light background for better distinction */
}


#prc-cookie-detail-modal-header-purpose {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    margin-left: 1rem;
}

.prc-cookie-detail-modal-header h4 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
    flex-grow: 1; /* Ensures the title takes available space */
    display: flex;
    /* justify-content: space-between; */
    font-family: Arial, Helvetica, sans-serif;
}

.prc-cookie-detail-modal-close {
    font-size: 1.25rem;
    cursor: pointer;
    color: #fff;
    /* margin-left: 16px; Adds separation between title and close button */
    transition: color 0.2s ease;
}

.prc-cookie-detail-modal-close:hover {
    color: #ff0000;
}

.prc-cookie-detail-modal-body a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.prc-cookie-detail-modal-body a:hover {
    text-decoration: underline;
}

.prc-cookie-detail-modal-body #prc-cookie-detail-modal-body-name-column {
    font-weight: bold;
}

.prc-cookie-category a {
    opacity: 0.5;
    font-size: 0.875rem;
    margin-left: 1rem;
}

.prc-cookie-category a:hover {
    opacity: 1;
}

#prc-cookie-detail-modal-body-explanation {

    opacity: 0.5;
}

/* Body */
.prc-cookie-detail-modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    overflow-y: scroll;
}

.prc-cookie-detail-modal-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #f9f9f9;
    transition: background-color 0.2s ease;
}

.prc-cookie-detail-modal-item:hover {
    background-color: #f1f1f1;
}

.prc-cookie-detail-modal-item h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.prc-cookie-detail-modal-item p {
    margin: 0;
    font-size: 0.875rem;
    color: #555;
}

/* Footer (if needed in future) */
.prc-cookie-detail-modal-footer {
    /* padding: 12px 16px; */
    border-top: 1px solid #ddd;
    max-height: fit-content;
}
</pre></body></html>