h1 {
    font-family: 'OpenSans', sans-serif;
    letter-spacing: 1px;
    line-height: 1.8em;
    font-size: 24pt;
    font-weight: bold;
    font-style: normal;
}

h2 {
    font-family: 'OpenSans', sans-serif;
    letter-spacing: 1px;
    line-height: 1.6em;
    font-size: 14pt;
    font-weight: bold;
    font-style: normal;
}

h3 {
    font-family: 'OpenSans', sans-serif;
    letter-spacing: 1px;
    line-height: 1.6em;
    font-size: 12pt;
    font-weight: bold;
    font-style: normal;
}

a:link {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 11pt;
    font-weight: normal;
    text-decoration: none;
}

a:visited {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 11pt;
    font-weight: normal;
    text-decoration: none;
}

a:active {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 11pt;
    font-weight: normal;
    text-decoration: none;
}

a:hover {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 11pt;
    font-weight: normal;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a.menu:link {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 14pt;
    font-weight: bold;
    text-decoration: none;
}

a.menu:visited {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 14pt;
    font-weight: bold;
    text-decoration: none;
}

a.menu:active {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 14pt;
    font-weight: bold;
    text-decoration: none;
}

a.menu:hover {
    font-family: 'OpenSans', sans-serif;
    color: #000000;
    letter-spacing: 1px;
    font-size: 14pt;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'OpenSans', sans-serif;
    letter-spacing: 1px;
    font-size: 11pt;
    line-height: 1.6em;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
    height: 100%;
}

#disclaimer {
    line-height: 1em;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    bottom: 12px;
    right: 12px;
    padding: 0.8em;
    border-width: 1px;
    border-style: solid;
    border-color: #b1c800;
    background-color: #FFFFFF;
}

.filter {
    font-family: 'OpenSans', sans-serif;
    letter-spacing: 1px;
    color: #e5344c;
    font-size: 11pt;
    line-height: 1.6em;
    font-weight: normal;
    margin-top: -20px;
    padding: 0px;
    height: 100%;
}

.modal {
    position: fixed;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* opacity:0; */
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    color: black;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    overflow-y: scroll;
    overflow-x: scroll;
}

.modal:target {
    display: block;
    opacity: 1;
    pointer-events: auto;
    color: black;
}

.modal>div {
    position: relative;
    margin-top: 25px;
    margin-left: 15%;
    border-radius: 3px;
    background: #ffffff;
    color: black;
    font-style: italic;
    font-size: 11pt;
}

.close {
    background: #313131;
    color: #00BEE0;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    font-style: normal;
    font-size: 18pt;
}

.close:hover {
    color: #FFFFFF;
}


/* Next & previous buttons */

.prev,
.next {
    position: relative;
    z-index: 30;
    font-style: normal;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 22px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.left {
    float: left;
    left: 0;
    border-radius: 3px 0 0 3px;
}


/* Position the "next button" to the right */

div.next {
    float: right;
    right: 400px;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

div.goto {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    -o-transition: opacity 400ms ease-in;
    -ms-transition: all 400ms ease-in;
    transition: opacity 400ms ease-in;
}

div.goto:hover {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    -o-transition: opacity 400ms ease-in;
    -ms-transition: all 400ms ease-in;
    transition: opacity 200ms ease-in;
}

div.cookie_consent {
    position: absolute;
    position: fixed !important;
    z-index: 10;
    margin: 0px;
    width: 100%;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    padding: 10px;
    background-color: white;
}