<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">main {
    .containerDisclaimerPrivacy {
        display: flex;
        flex-direction: column;
        max-width: 75%;
        margin: var(--margin-large) 2%;

        .infoDiv {
            overflow: hidden;
            max-height: 0;
            transition: max-height 2s cubic-bezier(0, .35, .41, .81);

            &amp;.open {
                max-height: 1000px;
                transition: max-height 2s ease-in-out;
            }
        }

        section {
            margin: 10px 0;

            &amp;&amp; a {
                color: var(--text-color);

                &amp;&amp;:hover {
                    text-decoration: none;
                }
            }

            &gt;p {
                line-height: 1.30rem;
            }
        }

        &amp;&amp; span {
            font-weight: bold;
            text-decoration: underline;
        }
    }
}

/* Mobile and tablet adjustments */
@media screen and (max-width: 900px) {
    .containerDisclaimerPrivacy {
        max-width: 100% !important;
        padding: 0 10px;
        margin: var(--margin-large) var(--margin-medium);

        &gt;h1 {
            font-size: 2rem;
        }

        &amp;&amp; h2 {
            font-size: 1.75rem;
        }

        &amp;&amp; p,
        a,
        span {
            font-size: 1.25rem;
        }

        button {
            font-size: 1.5rem;
        }
    }
}

@media screen and (max-width: 480px) {
    .containerDisclaimerPrivacy {
        padding: var(--padding-small);
        font-size: var(--font-size-small);
    }
}</pre></body></html>