:root {
    --cookies-foreground:white;
    --cookies-background:var(--green);
}


cookies-banner {
    display:block;
}


cookies-consent {
    font-family:'Open Sans';
    box-sizing:border-box;
    padding:1em;
    background-color:var(--cookies-background);
    width:100%;
    text-align:center;
    font-size:0.9em;
    color:var(--cookies-foreground);
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}


cookies-consent form {
    display:inline;
}


cookies-consent input {
    background-color:var(--cookies-background);
    border:1px solid var(--consent-fore);
    color:var(--consent-fore);
    margin:0.5em 0 0.5em 1em;
    padding:0.5em;
}


cookies-consent input:hover {
    border:1px dotted var(--cookies-foreground);
} 


cookies-consent a {
    border-bottom:1px dotted var(--cookies-foreground);
    color:var(--consent-fore);
    font-weight:bold;
    text-decoration:none;
}


cookies-consent a:hover {
    border-bottom:1px solid var(--cookies-foreground)
}