
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    color: #15295a;
    padding: 20px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
    margin: auto;
    width: 90%;
    max-width: 600px;
    transform: translateY(200vh);
    animation: banner_animation 0.5s forwards;
}

.cookie-consent-banner h3{
font-size:18px;
}
@keyframes banner_animation {
    0% {
        transform: translateY(200vh);
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-button {
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    cursor: pointer;
    border-radius: 3em;
    min-width: 11em;
    height: 3.3em;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: 0.5;
}

.cookie-consent-button.btn-success {
    color: #fff;
    background-color: #222;
    border: 1px solid #222;
}

.cookie-consent-button.btn-grayscale {
    color: #425b76;
    background-color: #fff;
    border: 1px solid #425b76;
}

.cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-consent-options label {
    margin: 0 10px;
    font-size: 14px;
}

.cookie-consent-options input {
    margin-right: 5px;
}
