/* Sidebar */:root {    --width: 20em}#sidebar {    -moz-flex-grow: 0;    -webkit-flex-grow: 0;    -ms-flex-grow: 0;    flex-grow: 0;    -moz-flex-shrink: 0;    -webkit-flex-shrink: 0;    -ms-flex-shrink: 0;    flex-shrink: 0;    -moz-transition: margin-left 0.5s ease, box-shadow 0.5s ease;    -webkit-transition: margin-left 0.5s ease, box-shadow 0.5s ease;    -ms-transition: margin-left 0.5s ease, box-shadow 0.5s ease;    transition: margin-left 0.5s ease, box-shadow 0.5s ease;    background-color: #441483;    /* font-size: 0.9em; */    position: relative;    width: var(--width);}#sidebar a {    border-bottom: none;}#sidebar a.active {    color: white;}/* #sidebar h2 {	  font-size: 1.38889em; } */#sidebar>.inner {    padding: 2.22222em 2.22222em 2.44444em 2.22222em;    position: relative;    width: var(--width);}#sidebar>.inner>* {    border-bottom: solid 2px rgba(210, 215, 217, 0.75);    margin: 0 0 3.5em 0;    padding: 0 0 3.5em 0;}#sidebar>.inner>*> :last-child {    margin-bottom: 0;}#sidebar>.inner>*:last-child {    border-bottom: 0;    margin-bottom: 0;    padding-bottom: 0;}#sidebar>.inner>.alt {    background-color: #eff1f2;    border-bottom: 0;    margin: -2.22222em 0 4.44444em -2.22222em;    padding: 2.22222em;    width: calc(100% + 4.44444em);}#sidebar .toggle {    text-decoration: none;    -moz-transition: left 0.5s ease;    -webkit-transition: left 0.5s ease;    -ms-transition: left 0.5s ease;    transition: left 0.5s ease;    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);    border: 0;    display: block;    height: 7.5em;    left: var(--width);    line-height: 7.5em;    outline: 0;    overflow: hidden;    position: absolute;    text-align: center;    text-indent: -15em;    white-space: nowrap;    top: 0;    width: 6em;    z-index: 10000;}#sidebar a.toggle{    text-shadow: 0 0 10px rgba(0, 0, 0, 0.349);}#sidebar .toggle:before {    -moz-osx-font-smoothing: grayscale;    -webkit-font-smoothing: antialiased;    display: inline-block;    font-style: normal;    font-variant: normal;    text-rendering: auto;    line-height: 1;    text-transform: none !important;    font-family: 'Font Awesome 5 Free';    font-weight: 900;}#sidebar .toggle:before {    content: '☰';    font-size: 2rem;    height: inherit;    left: 0;    line-height: inherit;    position: absolute;    text-indent: 0;    top: 0;    width: inherit;}#sidebar.inactive {    margin-left: calc(-1 * var(--width));}@media screen and (max-width: 736px) {    #sidebar {        box-shadow: 0 0 5em 0 rgba(0, 0, 0, 0.175);        height: 100%;        left: 0;        position: fixed;        top: 0;        z-index: 10000;    }    #sidebar.inactive {        box-shadow: none;    }    #sidebar>.inner {        -webkit-overflow-scrolling: touch;        height: 100%;        left: 0;        overflow-x: hidden;        overflow-y: auto;        position: absolute;        top: 0;    }    #sidebar>.inner:after {        content: '';        display: block;        height: 4em;        width: 100%;    }    #sidebar .toggle {        text-indent: 6em;        width: 6em;    }    #sidebar .toggle:before {        font-size: 1.5rem;        margin-left: -0.4375em;    }    body.is-preload #sidebar {        display: none;    }    }