:root {
    --color: #008000;
    --light-color: #6b7280;
    --text-color: #111827;
    --bg: #f9fafb;
    --border-radius: 8px;
    --border-color: #f3f4f6;
}

#environment {
    display: none;
}

body {
    background: #fff;
    color: var(--text-color);
}

a {
    color: var(--text-color);
}

cite {
    font-style: normal;
}

h1:has(+ a) {
    margin-bottom: 0;
}
h1 + a {
    display: inline-block;
    margin-bottom: 1rem;
}

article {
    margin-bottom: 2rem;
}

.meta {
    font-weight: bold;
}

.box {
    position: relative;
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

.announce {
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
    vertical-align: text-bottom;
    margin-right: 8px;
}

.page_home a {
    text-decoration: none;
}
.page_home a:hover {
    text-decoration: underline;
}


/* BOF HEADER */
#app > header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

#app > header .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#app > header h2 {
    margin-bottom: 0;
}

#app > header menu#primary_menu {
    font-size: 1.125rem;
}
.logged_out #app > header menu#primary_menu li:last-child a {
    position: relative;
    background-color: transparent; 
    color: inherit; 
    border-width: 0; 
    padding: 0; 
    cursor: pointer;

    display: inline-block;
    padding: 12px 24px;
    padding: 12px 24px;
    font-size: 1rem;
    background: var(--color);
    color: #ffffff;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: .3s opacity, .3s background;

    text-decoration: none;
    line-height: normal;

    margin-left: 50px;
}
/* EOF HEADER */


/* BOF FOOTER */
#app > footer > .box {
    border-top: 1px solid #f3f4f6;
    padding-top: 40px;

    display: grid;
    grid-template-columns: 400px 200px 200px 200px;
    grid-template-columns: 1.5fr 2fr 1fr 1fr;
    grid-column-gap: 2rem;
}
.copyright {
    grid-column: 1 / 5;
    margin-top: 2rem;
    text-align: center;
}

#app > footer p {
    color: var(--light-color);
    line-height: 1.5rem;
}
#app > footer h3 {
    font-weight: normal;
    font-size: 1rem;
}
#app > footer ul {
    list-style-type: none;
    padding: 0 1rem;
}
#app > footer ul ul {
    margin-top: 1rem;
}
#app > footer li {
    margin-bottom: 1rem;
}
#app > footer li a {
    text-decoration: none;
    color: var(--light-color);
}
#app > footer li a:hover {
    text-decoration: underline;
}
#app > footer .more_info ul {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
.more_info img {
    width: 24px;
}
/* EOF FOOTER */


/* BOF PAGE */
.page {
    position: relative;
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    max-width: 720px;
}
/* EOF PAGE */


@media (max-width: 1199px) {
    #app > footer > .box {
        display: block;
    }

    #app > header menu#primary_menu li:last-child a {
        margin-left: auto;
    }

    #toggle_menu:checked + label + menu {
        top: 50px;
        height: calc(100vh - 50px);
        padding-left: 1rem;
        text-align: center;
    }
}

/* BOF ACTIVE */
.page_pricing [href="/pricing"],
.page_home [href="/"] {
    font-weight: bold;
}
/* EOF ACTIVE */
