.cookiealert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    background: #212327 url("cubes.png");
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    padding: 10px;
    z-index: 9999999999999999;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

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

.cookiealert a:hover {
    color: #ffffff;
}

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

p.p-cookie {
    text-align: center;
}

button.btn.btn-custom.btn-sm.acceptcookies.center-block {
    background: #fff;
}

.cookiealert-container {
    padding-right: 20px;
}

@media (max-width: 500px) {
    .cookiealert-container {
        font-size: 13px;
    }

    button.btn.btn-custom.btn-sm.acceptcookies.center-block {
        margin-top: 10px;
    }
}