.espresso-cookie-popup {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    font-size: 12px;
    line-height: 15px;
    align-items: center;
    animation: cookie-popup 600ms ease-in-out forwards;
    opacity: 0;
    z-index: 9999; }
.espresso-cookie-popup a, .espresso-cookie-popup span {
    text-decoration: none;
    transition: opacity 300ms ease-in-out;
    cursor: pointer;
    padding: 1rem;
    display: inline-block;
    max-width: 150px;
    text-align: center;
    margin-top: 0.5rem;
}
.espresso-cookie-popup a:visited, .espresso-cookie-popup span:visited {
    color: white; }
.espresso-cookie-popup a:hover, .espresso-cookie-popup span:hover {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none; }


.cookie-popup-hidden {
    opacity: 1;
    animation: cookie-popup-hidden 600ms ease-in-out forwards; }

@keyframes cookie-popup {
    0% {
        transform: translateY(400px);
        opacity: 0; }
    100% {
        transform: translateY(0px);
        opacity: 1; } }

@keyframes cookie-popup-hidden {
    0% {
        transform: translateY(0px);
        opacity: 1; }
    100% {
        transform: translateY(400px);
        opacity: 0; } }

.espresso-cookie-popup p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .espresso-cookie-popup a, .espresso-cookie-popup span {
        text-decoration: none;
        transition: opacity 300ms ease-in-out;
        cursor: pointer;
        background: transparent !important;
        padding: 0rem;
        border-bottom: 1px dotted white !important;
        border: none;
        color: white !important;
    }
}