#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    width: 70vw;
    max-width: 42.85em;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.5);
    font-family: "OpenSans", "OpenSans-Regular", serif;
    text-align: justify;
    padding: 2em 1.4em;
    border-radius: var(--border-radius-default);
    transition: all 0.5s ease-in;
    z-index: 1000;
}

#cookiePopup img {
    display: block;
    width: 3.75em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
}

#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
}

#cookiePopup div {
    color: #ffffff;
    display: block;
    position: relative;
    margin: auto;
    width: fit-content;
    width: -moz-fit-content
}

#acceptCookie {
    border: 1px solid white;
    transition: opacity 0.3s ease;
}

#acceptCookie:hover {
    opacity: 0.8;
}

.hide {
    visibility: hidden;
    bottom: 0;
    left: 2em;
}

.showCookie {
    visibility: visible;
    bottom: 2em;
    left: 2em;
}

@media only screen and (max-width: 37.5em) {
    #cookiePopup {
        width: 100%;
    }

    .hide {
        bottom: 2em;
        left: 0;
    }

    .showCookie {
        left: 0;
        bottom: 0;
    }
}