#hfcookiebanner {
    --hfcb-bg-color: #fff;
    --hfcb-text-color: #000;
    --hfcb-padding: 20px;
    --hfcb-max-width: 1200px;
    z-index: 50;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--hfcb-bg-color);
}
.hfcookiebanner__text {
    color: var(--hfcb-text-color);
}
#hfcookiebanner .hfcookiebanner__buttons > * {
    margin-left: 10px;
    margin-top: 0;
}
#hfcookiebanner .hfcookiebanner__content {
    max-width: var(--hfcb-max-width);
    margin: 0 auto;
    padding: var(--hfcb-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 967px) {
    #hfcookiebanner .hfcookiebanner__content {
        flex-direction: column;
    }
    #hfcookiebanner .hfcookiebanner__buttons > * {
        margin-left: 0;
    }
    #hfcookiebanner .hfcookiebanner__buttons {
        margin-top: 10px;
    }
}
