/* PRIVACY POLICY */

.categoryIndicator {
    display: none !important;
}

.light-theme {
    main {
        .back {
            svg {
                path {
                    stroke: var(--secondary);
                }
            }

            @media (min-width:900px) {
                &:hover {
                    svg {
                        path:first-of-type {
                            fill: var(--secondary);
                        }
                        path:last-of-type {
                            stroke: var(--primary);
                        }
                    }
                }
            }
        }

        h1 {
            background-color: var(--secondary);
            color: var(--primary);
        }
    }
}

main {
    margin-top: 6.1rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;

    .back {
        margin-top: 2rem;
        width: fit-content;

        svg {
            path {
                stroke: var(--primary);
            }
        }

        @media (min-width:900px) {
            &:hover {
                svg {
                    path:first-of-type {
                        fill: var(--primary);
                    }
                    path:last-of-type {
                        stroke: var(--secondary);
                    }
                }
            }
        }
    }

    @media (max-width:1050px) {
        & {
            margin-top: 5.1rem;
        }
    }

    .privacyPolicy {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        margin: auto;
        width: 100%;
        max-width: 50rem;
        margin-bottom: 7rem;

        h1,
        h2,
        h3 {
            font-family: "PP Mondwest";
            width: fit-content;
            margin-bottom: 2rem;
        }

        h1 {
            background-color: var(--primary);
            color: var(--secondary);
        }

        h2, h3 {
            margin-top: 2rem;
        }

        p,
        ul,
        pre {
            width: 100%;
            max-width: 40rem;
            align-self: flex-end;
        }

        ul {
            padding-left: 2rem;
        }

        strong {
            font-family: "PP Mondwest";
            font-weight: 400;
            font-size: 17.5px;
        }

        a {
            text-decoration: underline;
        }
    }
}