#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 380px;
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding: 1em 1.2em 1.2em 1.2em;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-img {
    margin-bottom: 10px;
}

.cookie-img img {
    width: 50px;
}


#cookiePopup p {
    color: #000;
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

#cookiePopup a {
    color: #0f4585;
    font-weight: 500;
}

#cookiePopup a:hover {
    text-decoration: underline;
}

#closePopup {
    position: absolute;
    top: 8px;
    right: 15px;
    background: none;
    border: none;
    font-size: 25px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

#closePopup:hover {
    color: #000;
}

.hide {
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 480px) {
    #cookiePopup {
        bottom: 15px;
        width: auto;
    }
}