
#cookies {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: #363839;
    height: 18%;
    width: 100%;
    gap: 2em;
    padding: 2em;
    color: white;
    transition: transform .7s;
}

#cookiesBt {
   display: flex; 
   justify-content: center;
   gap: 1em;
}

#cookies button {
    text-align: center;
    height: 5vh;
    border: none;
    width: 100%;
    border-radius: 4px;
    background-color: #7dad00;
    color: rgb(235, 235, 235);
    transition: background-color .2s;
}

#cookies button:hover {
    background-color: #363839;
    outline: 1px solid #7dad00;
}

#cookies button:focus {
    outline: 1px solid #7dad00;
    transition: background-color 0s;
    background-color: #699200;
}

#cookies button:active {
    background-color: #699200;
}

#politicasDiv {
    display: flex;
    gap: 10px;
}

#politicasDiv > a {
    min-width: 100px;
}

@media (max-width: 1222px) {
    #cookies {
        height: 38%;
        flex-direction: column;
    }

    #politicasDiv {
        margin: auto;
    }

    #cookiesBt {
        width: 80%;
        margin: auto;
    }

    #cookies button {
        width: auto;
    }
}

@media (max-width: 880px) {
    #cookies {
        height: 50%;
    }
}

@media (max-width: 500px) {
    #cookies {
        height: 65%;
    }
}

@media (max-width: 329px) {
    #cookies {
        overflow: auto;
        height: 80%;
    }
}
