#cookie-consent-banner button {
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
}
#cookie-preferences-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
} 
#cookie-preferences-banner .cookie-banner-left {
    padding: 1em;
}
#cookie-preferences-banner .cookie-banner-right {
    padding: 1em;
}
#cookie-preferences-banner button {
    margin-bottom: 10px;
}
.cookie-banner-left p {
    font-size: 12px;
    margin-bottom: 0;
}
.cookie-banner-left p:first-of-type {
    margin-bottom: 10px;
    font-size: 16px;
}
.cookie-preference-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.cookie-preference-item label {
    margin-left: 10px;
}
#manage-cookie-preferences {
    font-size: 12px;
}

/* Media Querie for desktop */
@media (min-width: 768px) {
    .cookie-banner-left p:first-of-type {
        margin-bottom: 10px;
    }
    #cookie-preferences-form {
        margin-top: auto;
    }
    #cookie-preferences-banner {
        display: flex;
    }
    .cookie-banner-left {
        width: 70%;
        font-size: 1em;
    }
    .cookie-banner-right {
        width: 30%;
        display: flex;
        flex-direction: column;
        margin-top: auto;
    }
}