/* !!!!!!!!!!!!!!!!!!!!!!! */
/* Do Not Modify This File */
/* !!!!!!!!!!!!!!!!!!!!!!! */
@keyframes FadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes FadeInLeft {
  from {
    opacity: 0.1;
    -webkit-transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes FadeInTop {
  from {
    opacity: 0.1;
    -webkit-transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes AppearHeight {
  from {
    -webkit-transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.TransitionFaster {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.TransitionFast {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.TransitionMedium {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.TransitionSlow {
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.Selectable {
  -webkit-touch-callout: initial;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.UnSelectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.HorizontalScrolling {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
}
 header,
 footer {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
button,
a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html {
  height: 100%;
}
html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
html._noscroll,
body._noscroll {
  overflow: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
h1 {
  font-size: 2rem;
  /* Make all H1 large, remove nested-shrinking sizes. */
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.17rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.83rem;
}
h6 {
  font-size: 0.67rem;
}
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}
pre {
  white-space: pre-wrap;
  /* Overflow by default is bad. */
}
hr {
  border: 0.5px solid;
}
*:focus,
*:active {
  outline: none;
}
input,
select,
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
a,
a:focus,
a:active,
a:visited,
a:hover {
  text-decoration: none;
}
img,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* Switch display mode to block, since that's what we usually want for images. */
  vertical-align: middle;
  /* If you override, and make an image inline, it's likely you'll want middle vertical alignment. */
}
img,
video {
  max-width: 100%;
  /* Make images and video flexible by default. */
  height: auto;
  /* Ensure images and video maintain their aspect ratio when max-width comes into play. */
}
img {
  display: inline-block;
  max-width: 100%;
}
:root {
  /* Consistent line spacing, which does not unnecessarily grow to accommodate things that would fit anyway */
  /* From CSS Inline Layout Module Level 3: https://drafts.csswg.org/css-inline-3/#line-sizing-property */
  line-sizing: normal;
  /* Improve spacing of punctuation marks and at script changes in CJK languages */
  /* From CSS Text Module Level 4: https://drafts.csswg.org/css-text-4/#text-spacing-property */
  text-spacing: trim-start allow-end trim-adjacent ideograph-alpha ideograph-numeric;
}
[disabled="disabled"] {
  opacity: 0.4;
  pointer-events: none;
}
textarea {
  resize: none;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1rem;
}
body > .popup {
  position: fixed;
  display: flex;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
body > .popup-content {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: default;
}
body > .sidebar {
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 0;
  margin: 0;
  display: flex;
}
body > .sidebar .sidebar-void {
  height: 100%;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.5) !important;
}
body > .sidebar .sidebar-load {
  color: black;
  display: flex;
  flex-direction: column;
  padding: 0;
  right: 0;
  left: auto;
  margin: 0 0 0 auto;
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  max-width: 90vw;
  min-width: 50vw;
}
@media only screen and (min-width: 800px) {
  body > .sidebar .sidebar-load {
    min-width: 30vw;
  }
}
body > .sidebar .sidebar-header {
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-content: center;
}
body > .sidebar .sidebar-header > div {
  display: flex;
  flex: 1;
}
body > .sidebar .sidebar-header > div > div {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-content: center;
}
body > .sidebar .sidebar-header > div > div svg {
  height: 60%;
  width: auto;
  width: 30px;
  height: 30px;
  margin: auto;
}
body > .sidebar .sidebar-content {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}
body > .sidebar .sidebar-title {
  flex: 1;
}
body > .popup .message {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px;
  background-color: white;
}
body > .popup .message-content {
  max-width: 500px;
  width: 50vw;
  overflow: hidden;
}
body > .popup .message-title {
  font-size: 2rem;
  display: block;
}
body > .popup .message-description {
  font-size: 1rem;
  margin-top: 5px;
}
body > .popup .message-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 20px;
  padding: 1px;
}
body > .popup .message-button {
  padding: 0.4em;
  margin: 0 0 0 4px;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body > .popup .message-button:focus {
  outline: 1px solid rgba(0, 0, 0, 0.15);
}
body > .popup .message-button:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.Selectable {
  -webkit-touch-callout: initial;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.UnSelectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.HorizontalScrolling {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
}
@keyframes FadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes FadeInLeft {
  from {
    opacity: 0.1;
    -webkit-transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes FadeInTop {
  from {
    opacity: 0.1;
    -webkit-transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes AppearHeight {
  from {
    -webkit-transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.TransitionFaster {
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.TransitionFast {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.TransitionMedium {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.TransitionSlow {
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
 header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  z-index: 999;
  display: flex;
  white-space: nowrap;
  font-size: 0;
  height: var(--headerHeight);
}
header .logo {
  height: inherit;
}
 header .logo > a {
  display: inline-block;
  height: 100%;
}
 header .logo > a img {
  height: 100%;
  width: auto;
}
header .logo > a img:last-child {
  display: none;
}
@media only screen and (min-width: 800px) {
   header .logo > a img:first-child {
    display: none;
  }
  header .logo > a img:last-child {
    display: block;
  }
}
 header .navigation {
  display: flex;
  width: 100%;
}
header .navigation nav {
  width: 100%;
}
header .navigation nav ul {
  height: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
header .navigation nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
header .navigation-item {
  height: 100%;
  display: flex;
}
 header .navigation-item._selected {
  pointer-events: none;
}
 header .navigation-item span {
  align-self: center;
  justify-content: center;
}
 header .menu {
  display: flex;
  cursor: pointer;
}
 header .menu:not([data-visibility="visible"]) {
  display: none;
}
 header .menu svg {
  width: 40px;
  height: 40px;
  align-self: center;
  justify-self: center;
}
#sidemenu-hidden {
  display: none;
}
main {
  padding-top: var(--headerHeight);
}
