.cookie-consent {
    display: flex;
    flex-direction: column;

    margin: 0.8em;
    padding: 1.2em;

    position: fixed; /* Ensure nothing overflows on page or flex + fixed position does not work. */

    bottom: 0.1em;
    right: 5em;

    background: inherit;
    color: inherit;
    border-radius: 10px;
    box-shadow: 0 5px 20px;
} 
.cookie-consent__text {
    margin-bottom: 1em;
}
.cookie-consent__buttons {
    display: flex;
    flex-direction:row;
    justify-content: flex-end;  
    text-align: center;  
}
.cookie-consent__buttons-button
{
    cursor: pointer;
    border-radius: 3px;
    padding:0.5em;
}
.cookie-consent__buttons__close {
    background: #29bccd;
    color: #1E4670;
    padding-left:1em;
    padding-right:1em;
}
.cookie-consent__buttons__read-more > a {
    color: #29bccd; 
    margin-right:1em;
}