/* PHONE SCREEN */
@media (max-width: 60em) {
    .cookies-wrapper {
        flex-direction: column;
        gap: 1rem !important;
        text-align: center;
    }
    .cookies-buttons button {
        height: 50px;
        aspect-ratio: 12/5;
    }
}

/* DESKTOP SCREEN */
@media (min-width: 60em) {
    .cookies-buttons button {
        height: 80px;
        aspect-ratio: 5/2;
    }    
}

.cookies-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 6em;
    
    position: fixed;
    bottom: 0;
    z-index: 999;

    /* text-align: center; */
    background: white;
    padding: 2em 3em;
    box-shadow: 0 -8px 15px -7px var(--shadow-better);
}
.cookies-wrapper.hide {
    display: none;
}

.cookies-wrapper object {
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookies-wrapper .cookies-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.cookies-content {
    position: relative;
    font-family: 'Poppins';
}
.cookies-content h1 {
    color: #FF6347;
    font-size: 2em;
    font-weight: 600;
}
.cookies-content p {
    font-weight: 600;
    color: rgb(63, 63, 63);
}
.cookies-content p a {
    text-decoration: none;
}
.cookies-content p a:hover {
    text-decoration: underline 2px;
}
.cookies-buttons {
    display: grid;
    place-items: center;
    /* align-items: center;
    justify-content: center; */
}

.cookies-buttons button {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 1.4em;
    font-weight: 700;
    background-color: tomato;
    border: none; outline: none;
    color: white;
    border-radius: .4rem;
}
.cookies-buttons button:hover {
    background-color: rgb(233, 85, 59);
}
.cookies-buttons button:active {
    background-color: rgb(213, 72, 47);
}