#cookie-alert {
    position: fixed !important;
    width: 100%;
    bottom: 0;
    font-size: 14px;
    text-align: center;
    padding: 12px;
    z-index: 999999 !important;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background-color: var(--ccb-bg-color);
    color: var(--ccb-text-color);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

#cookie-alert a {
    color: var(--ccb-text-color);
    font-size: 14px;
    text-decoration: underline;
}

#cookie-alert button {
    display: inline-block;
    transition: .3s all;
    border-radius: 50px;
    padding: 10px 20px;
    background-color: var(--ccb-button-bg);
    color: var(--ccb-button-text);
    border: none;
    cursor: pointer;
    font-family: Montserrat;
}

#cookie-alert button:hover {
    opacity: 0.7;
}
