#cookie-consent {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1em;
    background-color: #eee;
    border-bottom: 1px solid #999;

    position: fixed;
    z-index: 10000;
    top: 0;
    width: 100%;
}

#cookie-consent p {
    padding: 0;
    flex-grow: 1;
    margin: 0;
}

#cookie-consent a {
    word-break: keep-all;
}

.cookie-consent--buttons {
    /*margin-left: 1em;*/
    margin-right: 2em;
    flex-grow: 0;
    flex-shrink: 0;
}

.cookie-consent--buttons a {
    display: inline-block;
    vertical-align: middle;
}

#cookie-consent--spacer {
    clear: both;
}

.cookie-consent--dismiss {
    border: none;
    padding: 0.3em 1.5em;
    margin-right: 1em;
    /*color: #ffffff;
    background-color: #d5002c;*/
    background-color: transparent;
    font-weight: bold;
    text-decoration:none;
}
.cookie-consent--deny {
    font-weight: bold;
    text-decoration:none;
}
.cookie-consent--deny:focus,
.cookie-consent--deny:hover,
.cookie-consent--dismiss:focus,
.cookie-consent--dismiss:hover {
    text-decoration: underline;
}

@media (max-width: 639px) {
    #cookie-consent {
        display: block;
    }

    .cookie-consent--buttons {
        margin-left: 0;
        margin-top: 0.8em;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #cookie-consent p a,
    #cookie-consent p {
        font-size: 1rem;
    }
}
