/* Pop-up banner styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html{
    font-size: 16px;
}


.growBanner_forwards{
    animation: growBanner 0.5s ease-out forwards;
}

.growBanner_reverse{
    animation: growBanner_reverse 0.5s ease-out forwards;
}

.growBanner_Container_forwards{
    animation: growBanner 0.5s ease-out forwards;
}

.growBanner_Container_reverse{
    animation: growBanner_reverse 0.5s ease-out forwards;
}

.display-none-banner{
    display: none !important;
}

#cookie-banner-container{
    position: fixed;
    bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    /* background-color: red; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* animation: growBanner 0.6s ease-out forwards; */
    z-index: 10;
}
#cookie-banner {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    
    opacity: 0;
    transform: scale(0);
    /* animation: growBanner 0.6s ease-out forwards; */
    /* display: none; */
    display: block;
    width: 100%;
    max-width: 500px;
}

/* #cookie-banner button {
    background: #00c896;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
} */

#acceptCookiesButton{
    background: #00c896;
    /* color: white; */
    color: black;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#cookieBanner button:hover {
    background: #009a72;
}

/* Persistent "Delete Cookie" button */
#resetCookieButton {
    /* position: fixed;
    bottom: 20px;
    right: 20px; */
    /* background: #ff6347; */
    background: rgba(244, 244, 244, 0.8);
    /* color: white; */
    color: black;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    /* z-index: 1000; */

    margin-top: 20px;
    /* margin-bottom: 20px; */

    text-decoration: underline;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#resetCookieButton:hover {
    /* background: #cc4c3b; */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

#resetCookieButton-2 {
    background: rgba(244, 244, 244, 0.8);
    color: black;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: underline;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#resetCookieButton-2:hover {
    background-color: rgba(177, 27, 27, 0.8);
    color: white;
}

#cookie-x-button{
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}



/* Keyframe animation */
@keyframes growBanner {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes growBanner_reverse {
    100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    0% {
        opacity: 1;
        transform: scale(1);
    }
}

/*
@keyframes growBannerContainer {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
*/