.agreement_cookie_popup {
    position: fixed;
    bottom: 1em;
    left: 1em;

    width: 300px;

    padding: 1em;

    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.75);

    background: #fff;
    color: #000;

    border-radius: 10px;

    display: none;
}

.agreement_cookie_popup.open {
    animation: agreement_cookie_popup_animation 0.7s;
    display: block;
}

.agreement_cookie_popup a {
    text-decoration: underline;
    color: #000;
}

@keyframes agreement_cookie_popup_animation {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
