.cookie-nav {
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 9999999;
    position: fixed;
    bottom: 0;
    padding: 20px 5px;
    font-family: var(--bs-font-primary);
}
.cookie-link {
    color: var(--bs-secondary);
}
.cookie-link:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}
.btn-save-cookie {
    background-color: var(--bs-secondary);
    text-transform: uppercase;
}
.cookie-container {
    display: grid;
    grid-template-columns: 1fr 15%;
    align-items: end;
}

@media (max-width: 576px) {
    .cookie-container {
        grid-template-columns: 1fr;
        justify-items: end;
    }
}

.cookie-sidebar {
    width: 375px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffff;
    visibility: visible;
    transition: all 0.5s ease 0s;
}

.cookie-sidebar.closed {
    right: -375px;
    visibility: visible;
}

.cookie-sidebar-header {
    background-color: var(--bs-primary);
    padding: 10px 0;
}
.cookie-logo {
    width: 250px;
}

.cookie-sidebar-body {
    overflow-y: scroll;
    height: 80vh;
    padding: 10px;
}
.cookie-sidebar-footer {
    padding: 10px;
}

.text-always {
    color: #2963ff;
}

.form-check-input.cookie:checked {
    background-color: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
}

.btn-save-setting {
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    color: white;
    text-transform: uppercase;
}
.btn-save-setting:hover {
    color: white;
}

.cookie-open-setting {
    cursor: pointer;
    position: fixed;
    z-index: 2000;
    left: 1.5%;
    bottom: 9%;
}
.img-cookie-setting {
    width: 30px;
}

.btn-consent {
    text-transform: uppercase;
}

#consentContent {
    height: 80vh;
    overflow-y: scroll;
}
