@import url(https://fonts.googleapis.com/css2?family=Jost&family=Permanent+Marker&display=swap);

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

body,
html {
    min-height: 100%;
    box-sizing: border-box
}

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

body {
    background-color: #7882b7;
    color: #fafafa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16pt
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-style: normal
}

h1 {
    font-size: 2.2em;
    line-height: 1.5em
}

h2 {
    font-size: 1.9em
}

h3 {
    font-size: 1.6em
}

h4 {
    font-size: 1.45em
}

h5 {
    font-size: 1.28em
}

h6 {
    font-size: 1.15em
}

.i {
    font-style: italic
}

a {
    color: #000
}

a:focus,
a:hover {
    color: #303c89
}

.wrap {
    display: inline-block
}

#main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
    justify-content: space-between;
    column-gap: 1%;
    margin: 2em 10%
}

#main #body {
    background-color: #fff;
    color: #000;
    padding: .5em 1em;
    border-radius: 3px
}

#main #sidepane #navigation {
    padding: .75em;
    background-color: rgba(63, 78, 158, .75);
    border-radius: 3px;
    cursor: default
}

#main #sidepane #navigation a {
    display: block;
    padding: .1em .5em .3em;
    text-decoration: none;
    color: #fdfdef;
    border-radius: .3em;
    transition: background-color .3s ease-out
}

#main #sidepane #navigation a:focus,
#main #sidepane #navigation a:hover {
    color: #fdfdef;
    background-color: rgba(66, 66, 66, .75)
}

#main #sidepane #navigation h1 {
    padding: 0 .1em;
    font-family: "Permanent Marker", sans-serif;
    line-height: 1.1;
    text-align: center
}

#main #sidepane #navigation ul {
    text-align: center;
    display: block;
    font-size: 22pt;
    line-height: 1.5em
}

#main #sidepane #navigation ul li {
    display: block;
    margin: .2em 0
}

#pagination {
    margin: 1em 0
}

#pagination .pagination-ellipsis,
#pagination a,
button.download {
    padding: .5em;
    background-color: #394694;
    border: 1px solid #28337e;
    border-radius: .2em;
    color: #fdfdef;
    fill: #fdfdef;
    text-decoration: none;
    transition: background-color .1s
}

#pagination a:focus,
#pagination a:hover:hover,
button.download:hover:hover {
    background-color: #7883b7
}

#pagination a.is-current,
#pagination a:active:active,
button.download {
    background-color: #5c68a8
}

#pagination .pagination-ellipsis {
    cursor: default
}

#pagination li,
#pagination ul {
    list-style: none;
    display: inline
}

.loader {
    background-color: #7882b7;
    border-color: #000;

    &::before {
        background-color: #4d5ba4;
    }
}

@media screen and (max-width:1400px) {
    #main {
        margin: 0
    }
}

@media screen and (max-width:1200px) {
    #main {
        display: block
    }

    #main #navigation#navigation ul li {
        display: inline-block
    }

    #main #navigation#navigation ul li a {
        display: initial
    }
}

@media screen and (max-width:400px) {

    #main #navigation#navigation ul li,
    #main #navigation#navigation ul li a {
        display: block
    }
}