.cookiebanner{
    z-index: 9999;
    background-color: #EDEBEB;
    position: fixed;
    bottom: 1.5em;
    left: 1.5em;
    width: 400px;
    padding: 1em;
    border-radius: 4px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 25%);
    display: flex;
    flex-direction: column;
    gap: 1em;
    line-height: 1.15;
    font-size: 16px;
    font-family: "Favorit", "Arial", "Helvetica", sans-serif;
}
@media screen and (max-width: 400px){
    .cookiebanner{
        width: calc(100% - 64px - 1em);
    }
}
.cookiebanner, .cookiebanner > *{
    box-sizing: content-box;
} 
.cookiebanner.cb-hide{
    display: none;
    visibility: hidden;
}

.cookiebanner .cb-btn{
    background-color: #fff;
    border-radius: 20px;
    border: solid 1px black;
    line-height: 2em;
    max-width: fit-content;
    margin-left: auto;
    padding: 0 1em;
}
.cookiebanner .cb-btn:hover{
    background-color: #fff528;
}

.cookiebanner a{
    color: #000;
    border-bottom-style: solid !important;
    border-bottom-width: 1px;
    border-color: #000;
}
.cookiebanner a:hover{
    color: #000;
    text-decoration: none;
    border-color:  #fff528;;
}