.cookies-consent {
    position: fixed;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    padding: 1rem 2rem;
    background-color: #fff;
    width: 100%;
    z-index: 9999;
    // display: flex;
    // align-items: center;
    // justify-content: space-between;
    gap: 0.5rem;
    // flex-direction: column;
    // box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    // transform: translateY(100%);
    // opacity: 0;
    // transition: transform 0.5s ease, opacity 0.5s ease;
    // @include mobile-599 {
    //     margin: 0 1rem;
    //     width: auto;
    // }
    .sxs-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    &__description {
        // color: $primary;
    }
    &__buttons {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
    }
}

// .c-modal--is-open .cookies-consent {
//     transform: translateY(0); /* llega a su posición */
//     opacity: 1;
// }

.cookies-consent.cookies-consent--animate {
    transform: translateY(0);
    opacity: 1;
}

// .cookies-consent-modal {
//     position: fixed;
//     inset: 0; /* top:0; bottom:0; left:0; right:0 */
//     background: rgba(0, 0, 0, 0.6);
//     display: flex;
//     justify-content: center;
//     align-items: center;
//     z-index: 9999;
// }
