/* Custom CSS */
/* Basic styles */

a {
    text-decoration: none;
    color: #00883A;
}

a:hover {
    text-decoration: underline;
    color: #00883A;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.05rem;
}

pre {
    background: #eee; padding: 0.5em;
    border:  1px solid #ccc;
}

/* Header */

.fe_header {
    transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    clear: both;
 }

.fe_header_image {
    float: left;
    width: 150px;
}

.fe_header_image img {
    height: 67px;
}

.fe_header_title {
    float: left;
    color: #232323;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-family: Roboto-bold,sans-serif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: 1.3em;
}

@media (min-width: 768px) {
    .fe_header_image {
        float: left;
        width: 220px;
    }

    .fe_header_image img {
        height: 100px;
    }

    .fe_header_title {
        float: left;
        color: #232323;
        text-transform: uppercase;
        font-size: 1rem;
        font-family: Roboto-bold,sans-serif;
        font-weight: 700;
        -webkit-font-smoothing: antialiased;
        line-height: 1.3em;
    }

}

.fe_header_link {
    color: #000 !important;
    font-weight: 500;
}

.fe_header_link:hover {
    color: #00883A !important;
}

.shrink .fe_header_image {
    width: 132px;
}

.shrink .fe_header_image img {
    height: 60px;
}

.shrink .fe_header_title {
    font-size: .7rem;
}

/* Main content */

main > .container-fluid {
    padding: 70px 15px 0;
    font-size: 0.9rem;
}

main > .container {
    padding: 180px 15px 0;
}

main.img {
    max-width: 90%;
}

/* Footer */

.fe_footer {
    font-size: 1rem;
    color: #c0c1c3;
    background: #232323 url(../images/footer-bg.svg) -45% no-repeat;
    background-size: 150% 150%;
}

.fe_footer a {
    text-decoration: none;
    color: #c0c1c3;
}

.fe_footer a:hover {
    text-decoration: underline;
}

/* Subpages listing */

.subpages {
    margin: 2em 0 2em 0 ;
    padding: 0;
    list-style: none;
}

.subpages li::before {
    content: "» ";
}

.subpages li {
    padding: 0;
    margin: 0.8em 0 0 0;
}

.subpages ul {
    list-style: none;
}

.subpages li::before {
    content: "» ";
}

.subpages li li {
    padding: 0;
    margin: 0 0 0 0;
}

.subpages li li::before {
    content: "";
}

/* Page TOC */

.page-toc-scroll-marker {
    padding-top: 80px;
    margin-top: -80px;
}

.toc {
    background-color: #eee;
    padding:  0.5em;
    border:  1px solid #ccc;
    border-radius: 5px;
}

.toc::before {
    content: " Inhalt ";
}

.toc2 {
    padding: 0.8em 0 0 0.3em;
    font-size: 0.9em;
    font-weight: bold;
}

.toc2::before {
    content: "» ";
}

.toc3 {
    padding: 0.3em 0 0 1.2em;
    font-size: 0.85em;
}