.cookie-message-overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.cookie-message {
    width: 100%;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    background: #134270;
    color: #fff;
}

.cookie-message a:not(.btn) {
    color: #fff;
    text-decoration: underline;
}

.cookie-message .btn, .cookie-message .btn:active, .cookie-message .btn:focus {
    border-radius: 0;
    transition: 0.3s ease-in-out;
    background: #134270;
    border: 1px solid #fff;
    color: #fff;
    margin: 0.5rem 1rem;
    font-size: 1rem;
}

.cookie-message .btn:hover, .cookie-message .btn.active {
    border-radius: 0;
    transition: 0.3s ease-in-out;
    background: #0e2443;
    border: 1px solid #fff;
    color: #fff;
    margin: 0.5rem 1rem;
    font-size: 1rem;
}