.cookie-container {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0.85;
    border-radius: 0;
    transition: all 500ms ease-out;
    color: #ecf0f1;
    background: #021233;
}

.cookie-container .col-md-8 {
    padding: 25px;
}

.cookie-container.activa {
    bottom: 0;
}

.cookie-select-all-buton, .cookie-deselect-all-buton {
    margin: 10px;
    display: block;
    width: 100%;
    font-weight: 500;
    color: #343a40;
    text-align: center;
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.45rem 0.85rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.37rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    color: #3167eb;
    border-color: #3167eb;
}

.cookie-select-all-buton:hover, .cookie-deselect-all-buton:hover {
    color: #fff;
    background-color: #3167eb;
    border-color: #3167eb;
  }

.colaboratoridate {
    color: #fff;
    background-color: #03153f;
}

@media (max-width: 500px) {
    .cookie-container {
        max-height: 80vh;
        overflow-y: auto;
        padding: 15px 10px;
        font-size: 14px;
    }

    .cookie-container .row {
        flex-direction: column;
        margin: 0;
    }

    .cookie-container .col-md-8,
    .cookie-container .col-8,
    .cookie-container .col-md-2,
    .cookie-container .col-2 {
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .cookie-container .col-md-1,
    .cookie-container .col-1 {
        display: none;
    }

    .cookie-select-all-buton,
    .cookie-deselect-all-buton {
        width: 100%;
        margin: 5px 0;
    }
}

/* --------- desktop sau mobile ------------------------- */
/* Show desktop by default */
.cookie-desktop { display: block; }
.cookie-mobile { display: none; }

/* Mobile breakpoint */
@media screen and (max-width: 700px) {
    .cookie-desktop { display: none; }
    .cookie-mobile { display: block; }
}

/* Slide-Up Animation */
.cookie-container {
    position: fixed;
    bottom: -200px; /* hidden below screen */
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: bottom 0.6s ease-in-out;
}

.cookie-container.slide-up {
    bottom: 0; /* slides into view */
}
/* ------------- End Mobile sau Desktop -------------*/
