/*------------------------------------*\
  Content
\*------------------------------------*/

.content {
    white-space: pre-line;
    font-size: 1.0rem;
    font-family: Georgia, "Bitstream Charter", serif;
}

.toc {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    padding: 1rem 1rem 1rem 0rem;
    margin-top: 2rem;
}
.toc__header {
    font-weight: bold;
    color: var(--hover-colour);
    margin: 0 0 0 1rem;
    text-align: center;
}

.header {
    font-weight: bold;
    color: var(--hover-colour);
    border-bottom: 1px solid #eaecef;

    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.header--1 {
    font-size: 3.0rem;
}
.header--2 {
    font-size: 2.0rem;
}
.header--3 {
    font-size: 1.5rem;
}
.header--4 {
    font-size: 1rem;
}
.header__link {
    opacity: 0.2;
    margin-left: 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
}
.header__link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.paragraph {
    white-space: normal;
    margin-top: 0;
    margin-bottom: 1rem;
}

.pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    background-color: #f5f2f0;
    /* white-space: pre-wrap;     */
}
.code {
    font-size: 12px;
    background-color: #f5f2f0;
}
.code--inline {
    padding: 0.25em 1rem;
}

.list {
    margin-top: 0;
    margin-bottom: 1rem;
}
.list--inner {
    margin-bottom: 0;
    padding-top: 0;
}

.list__item--noListStyle {
    list-style: none;
}

.img {
    max-height: 400px;
    border-radius: 5px;
    object-fit: contain;

    cursor: zoom-in;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.hr {
    border: 0;
    height: 1px;
    background: #24242424;
}

.link--toTop {
    position: fixed;
    bottom: 2%;
    right: 2%;

    opacity: 0.2;
    font-size: 1.5rem;
    text-decoration: none;
}
.link--toTop:hover {
    opacity: 0.8;
    text-decoration: underline;
}








/* CSS rules later in a file override earlier ones */

/*------------------------------------*\
  Utilities
\*------------------------------------*/

.display-block {
    display: block;
}
.display-none {
    display: none;
}
.m-0.m-0 {
    margin: 0;
}






/*------------------------------------*\
   checkbox hider styles
\*------------------------------------*/
.checkboxHider__label {
    cursor: pointer;
}
.checkboxHider__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.checkboxHider__content {
    display: none;
}
.checkboxHider__input:checked ~ .checkboxHider__content { /* sibling */
    display: block;
}