.container__cookie {
    position: fixed;
    bottom: 0;
    right: 0;
    /* display: flex; */
    flex-direction: column;
    row-gap: 1.5rem;
    opacity: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 999;

    .content {
        p {
            &:nth-of-type(1) {
                font-size: 1.25rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
            }

            &:nth-of-type(2) {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
        }
    }

    .actions {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        column-gap: 1rem;
    }
}

@media (min-width: 768px) {
    .container__cookie {
        max-width: 30rem;
        height: auto;

        .actions {
            flex-direction: row;
            column-gap: 1rem;
        }
    }
}