.cookiealert {
    position: fixed;
    top: calc(50% - 200px);
    left: calc(50% - 375px);
    opacity: 0;
    border-radius: 0;
    background: #424242;
    color: #ecf0f1;
    font-size: 14px;
    max-width: 750px;
    width: 750px;
    display: none;
    z-index: 1049;
}

@media screen and (max-width: 800px) {
    .cookiealert {
        right: 15px;
        left: 15px;
        top: 150px;
        width: auto;
    }
}

.cookiealert.show {
    opacity: 1;
    display: block;
}

.cookiealert a {
    text-decoration: underline;
    color: #ecf0f1;
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.modal-cookies {
    max-width: 700px;
}