
html {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.sch-colors-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-fg);
}

.sch-colors-footer a {
    color: var(--color-footer-a);
}

.sch-color-body {
    background-color: var(--color-body-bg);
    color: var(--color-body-fg);
}

.sch-color-body a {
    color: var(--color-body-a);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.25;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    padding: 0;
    line-height: 1.25;
}

p {
    padding: 0;
    margin: 0 0 1rem 0;
}

.mb-3 {
    margin-bottom: 1rem;
}

.sch-color-header {
    background-color: var(--color-header-bg);
    color: var(--color-header-fg);
}

.sch-breadcrumb {
    color: var(--color-breadcrumb-fg);
    background-color: var(--color-breadcrumb-bg);
    font-size: 85%;
}

.sch-breadcrumb-item {
}

a.sch-breadcrumb-item::after {
    display: inline-block;
    content: '›';
    padding: 0 0.5rem;
    opacity: 0.8;
}

a.sch-breadcrumb-item {
    color: var(--color-breadcrumb-fg);
    opacity: 1;
    text-decoration: none;
}

a.sch-breadcrumb-item:hover {
    text-decoration: underline;
}

.sch-dl dt { margin-bottom: 0.5rem; margin-top: 1rem; font-weight: bold; }
.sch-dl dd { margin-bottom: 0.5rem }
.sch-dl dt::after { display: inline; content: ":"; }


.sch-supratitle {
    font-size: 1.5rem;
}

.sch-supratitle a { text-decoration: none; color: #000 }
.sch-supratitle a:hover { text-decoration: underline; }

.sch-subtitle {
    font-size: 2.5rem;
    font-weight: normal;
}

.sch-nav {
    list-style-type: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
}

.sch-nav li {
    color: #fff;
    padding: 1.25rem 0 0.5rem 0;
    margin-right: 1rem;
    text-transform: uppercase;
    border-bottom: 0.5rem solid var(--color-nav-bg);
}

.sch-nav li.sch-nav-active {
    border-color: var(--color-nav-fg);
}

.sch-nav a {
    color: #fff;
    text-decoration: none;
}

.sch-title {
    background-color: var(--color-title-bg);
    color: var(--color-title-fg);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sch-title h1 {
    text-transform: uppercase;
}

.sch-title a {
    color: var(--color-title-fg);
}

.sch-social a {
    text-decoration: none;
    white-space: nowrap;
    margin: 0 1rem 1rem 0;
}

.sch-social svg { opacity: 0.9 }

.sch-dld-nav {
    display: flex;
    flex-direction: column;
}

.sch-dld:first-child {
    margin-bottom: 2rem;
}

a.sch-dld {
    display: inline-block;
    min-width: 10rem;
    text-decoration: none;
    padding: 0.5rem  1rem;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-button-bg);
    text-align: center;
    background-color: var(--color-button-bg);
    color: var(--color-button-fg);
    width: 100%;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

a.sch-dld.sch-dld-outline,
a.sch-dld:hover {
    background-color: var(--color-button-fg);
    color: var(--color-button-bg);
}

.sch-dld > div {
    display: flex;
    flex-direction: row;
}
.sch-dld svg {
    fill: currentColor;
    flex-basis: 3rem;
    flex-grow: 0;
    height: 3rem;
}

@media (min-width: 960px) {
    .sch-dld-nav {
        flex-direction: row;
    }

    .sch-dld {
        max-width: 20rem;
    }

    .sch-dld:first-child {
        margin-bottom: 0;
        margin-right: 1rem;
    }
}
