#cookie-banner {
    display: none;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 40px;
    text-align: center;
    z-index: 9999;
}

.cookie-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 503px;
}

.cookie-text h3 {
    margin: 0;
    width: 100%;
}

.cookie-text span {
    margin: 0;
    width: 100%;
}

#cookie-banner img {
    width: 150px;
    margin-right: 40px;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}

.cookie-buttons {
    width: 100%;
}

#cookie-banner button {
    margin: 0 10px 0 0;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 0px;
}

#cookie-banner button#accept-cookies {
    background-color: #4caf50;
    color: #fff;
}

#cookie-banner button#deny-cookies {
    background-color: #f44336;
    color: #fff;
}

@media screen and (max-width: 700px) {
    .cookie-container {
        justify-content: space-around;
    }

    #cookie-banner img {
        width: 100px;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .cookie-text {
        width: 100%;
        text-align: center;
    }
}
