#cookie-banner {
    border-radius: 1rem;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    max-width: 1024px;
    background-color: #5B5B3F;
    color: #ffffff;
    padding: 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#cookie-banner p {
    line-height: 1.5;
    margin: 0;
    flex: 75%;
}

.flex-cookie {
    grid-gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .flex-cookie {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    #cookie-banner {
        left: 1rem;
        border-radius: 1rem;
        bottom: 1rem;
        max-width: 860px;
    }
}

@media (max-width: 768px) {
    .flex-cookie {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    #cookie-banner {
        left: 0;
        border-radius: 0;
        bottom: 0;
        max-width: 568px;
    }
}

@media (max-width: 600px) {
    .flex-cookie {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    #cookie-banner .flex-cookie p {
        margin-bottom: 15px;
    }
}

.flex-cookie a {
    color: #1abc9c;
    text-decoration: underline;
}

.cookie-accept-btn {
    font-size: 16px;
}