#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 0;
    border-top: 1px solid #ccc;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    height: 100vh;
}
.cookie-consent-reopen-button {
    padding: 0;
    border: none;
    border-radius: 100%;
    background: url(../images/cookies-icon.svg) 50% 50% no-repeat #000000;
    background-size: 70%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: fixed;
    left: 2%;
    bottom: 30px;
}

.cookie-consent-reopen-button:hover {
    background-color: #333333;
}

.grupo_cat_cookies {
    margin: 0px 0 0 0;
    width: 100%;
    float: left;
    height: 180px;
    overflow-y: scroll;
}

.cookie-consent-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2%;
}

.cookie-consent-content h2 {
    font-size: 15px;
    color: #333;
}

.cookie-consent-content p {
    font-size: 11px;
    color: var(--global_cor_1);
    font-weight: var(--global_font_weight_4);
    line-height: 19px;
}
.cookie-consent-content .ccm-cookie-list {
    font-size: 11px;
    color: var(--global_cor_1);
    font-weight: var(--global_font_weight_4);
    line-height: 19px;
    float: left;
    margin: 0 0 20px 0;
    width: 100%;
}

.cookie-consent-content .ccm-cookie-list .ccm-cookie-item {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
    border-bottom: 1px solid #000;
    padding: 5px 0;
}
.cookie-consent-content .ccm-cookie-list .ccm-cookie-item .ccm-cookie-name {
    float: left;
    width:30%;
    font-weight: var(--global_font_weight_6);
}
.cookie-consent-content .ccm-cookie-list .ccm-cookie-item .ccm-cookie-description{
    float: left;
    width:50%;
}
.cookie-consent-content .ccm-cookie-list .ccm-cookie-item .ccm-cookie-duration {
    float: right;
    width:10%;
    text-align: right;
}

.cookie-consent-buttons {
    margin: 20px 0 0 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.cookie-consent-buttons button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 13px;
  width: 32%;
  margin: 0 0.5%;
  font-family: var(--global_font_1);
  font-weight: var(--global_font_weight_6);
}
.cookie-consent-buttons button:nth-child(1) {
    background-color: #28a745;
    color: white;
}

.cookie-consent-buttons button:nth-child(1):hover {
    background-color: #218838;
}

.cookie-consent-buttons button:nth-child(2) {
    background-color: #dc3545;
    color: white;
}

.cookie-consent-buttons button:nth-child(2):hover {
    background-color: #c82333;
}

.cookie-consent-buttons button:nth-child(3) {
    background-color: #000000;
    color: white;
}

.cookie-consent-buttons button:nth-child(3):hover {
    background-color: #333333;
}



.accordion-cookie {
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
        }

        .accordion-cookie-item {
            border-bottom: 1px solid #ddd;
        }

        .accordion-cookie-header {
            background-color: #f4f4f4;
            padding: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            user-select: none;
        }

        .accordion-cookie-header:hover {
            background-color: #e0e0e0;
        }

        .accordion-cookie-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            background-color: #fff;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .accordion-cookie-content.open {
            max-height: 200px; /* Ajuste conforme necessário */
            padding: 0 15px;
        }

        .arrow {
            width: 16px;
            height: 16px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin: 3px 10px 0 auto;
            transition: transform 0.3s ease;
        }

        .arrow.down {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgNkw4IDEyTDE0IDYiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
            transform: rotate(0deg);
        }

        .arrow.up {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgNkw4IDEyTDE0IDYiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
            transform: rotate(180deg);
        }

        .title {
            flex-grow: 1;
            font-size: 13px;
            font-weight: var(--global_font_weight_6);
        }

        .checkbox-container {
            margin-left: 10px;
        }

        .checkbox-container input[type="checkbox"] {
            cursor: pointer;
        }