﻿.cookie-banner {
    position: fixed;
    display: none;
    z-index: 30000;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: show-banner 1.8s;
}

.cookie-container {
    display: flex;
    justify-content: center;
}

#cookie-text-container {
    color: #fff;
    align-self: center;
    max-width: 900px;
    padding: 6px;
}

    #cookie-text-container > p > a {
        color: #fff !important;
        font-weight: bold !important;
    }

.cookie-button-container {
    padding: 5px;
    margin-left: 30px;
    align-self: center;
}

.btn-cookie {
    color: #333;
    background-color: #f3f3f4;
    border-color: #ccc;
    text-transform: uppercase;
    padding: 5px 15px;
}

    .btn-cookie:hover {
        color: #333;
        background-color: #adadad;
        border-color: #adadad;
    }

@keyframes show-banner {
    from {
        transform: translateY(-1000px);
    }

    to {
        transform: translateY(0);
    }
}