
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 15px;
    z-index: 9999;
    font-family: "aktiv-grotesk", sans-serif;
    font-size: 14px;
    color: #233b74;
}
.cookie-banner.disabled {
    display: none;
}
.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie-banner-text {
    margin: 0;
    padding-right: 10px;
}
p.cookie-banner-text {
    font-weight: 400;
    color: #000;
}
.cookie-banner-link {
    font-weight: 700;
    color: #233b74;
    text-decoration: underline;
}
.cookie-accept-btn {
    position: relative;
    background: transparent;
    border: solid;
    color: #233b74;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1;
}
/*
.cookie-accept-btn::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 9px;
    background-color: #90d5ee;
    transition: height 200ms;
    z-index: -1;
}

.cookie-accept-btn:hover::before {
    height: 12px;
}
*/