#title {
  color: var(--color-accent-1);
}

#navbar_front {
  gap: 12px;
}
#navbar_front:first-child {
  margin-left: 8px;
}

#navbar_front * {
  margin: 0;
}

header .h_button,
header .end button,
header .end .button {
  display: flex;
  padding: 0;
  padding-left: 8px;
  padding-right: 8px;
  /* border-radius:4px; */
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 1rem;
  line-height: 1rem;
  flex-direction: row;
  gap: 0.33ch;
  align-items: center;
}
header .h_button *,
header .end button *,
header .end .button * {
  margin-right: 2px;
  margin-left: 2px;
  color: inherit;
}
header .h_button:hover,
header .end button:hover,
header .end .button:hover {
  background-color: var(--color-base-1);
  color: var(--color-text);
}

header .h_button.icon_only {
  padding: 4px;
  border-radius: 2px;
}

#navbar .end .h_button:not(:last-child),
#navbar .end .button:not(:last-child),
#navbar .end button:not(:last-child) {
  border-right: 1px solid var(--color-base-1);
}

@media only screen and (max-width: 1000px) {
  #subtitle {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  #navbar .button:not(#about):not(.swap_palette), #navbar button:not(#about):not(.swap_palette) {
    display: none;
  }
}
@media only screen and (max-width: 450px) {
  #navbar .button span.text, #navbar button span.text {
    display: none;
  }
  #navbar .button#about::before, #navbar button#about::before {
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    width: 24px;
    content: "info";
  }
}
@media only screen and (max-width: 512px) {
  #navbar .swap_palette span.text {
    display: none;
  }
}
a.logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 0.25rem;
}
a.logo img {
  height: min(1.2em, 100%);
  max-width: 3em;
}

.push_button,
header .end .dropdown .push_button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--color-accent-1);
  top: 0;
  left: 0;
  transition: all 0.15s linear 0s;
  position: relative;
  display: inline-block;
  box-shadow: -4px 4px 0 var(--color-accent-1-1);
  text-decoration: none;
  position: relative;
}
.push_button:hover,
header .end .dropdown .push_button:hover {
  top: 2px;
  left: -2px;
  box-shadow: -2px 2px 0 var(--color-accent-1-1);
}
.push_button:active,
header .end .dropdown .push_button:active {
  top: 4px;
  left: -4px;
  box-shadow: none;
}

.tooltip {
  position: relative;
}

.tooltip:hover:after {
  content: attr(data-tooltip);
  padding: 4px 8px;
  width: max-content;
  transform: translateX(-50%);
  color: var(--color-text);
  background-color: var(--color-element);
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 10;
  border: 1px black solid;
  box-shadow: 0 0 3px #ccc;
}

.tooltip.right:after {
  left: 100%;
  transform: none;
  width: auto;
}

::-webkit-scrollbar-track {
  background-color: var(--color-base-2);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-element-1);
  border: 0.25rem solid var(--color-base-2);
  border-radius: 0.5rem;
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-accent-1);
}

* {
  scrollbar-width: initial;
  scrollbar-color: var(--color-base-1) var(--color-base-2);
}

:root {
  background-color: var(--color-background);
}

* {
  padding: 0;
  margin: 0;
  /*border: 1px solid red;*/
}

*:not(a),
.button {
  color: var(--color-text);
}

p {
  color: var(--color-text-1);
}

a:not(.button) {
  color: var(--color-accent-1-1);
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MaterialIcons-Regular.woff2) format("woff2");
  font-display: swap;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variant: normal;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  /*overflow:hidden;*/
}

body #page_container {
  --header-height: 32px;
  --footer-height: 12px;
  --content-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-rows: [header-start] var(--header-height) [header-end mid-start] 1fr [mid-end];
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
}

header {
  grid-row: header-start/header-end;
  background-color: var(--color-base);
  position: relative;
  width: 100%;
  height: 100%;
}

footer {
  height: var(--footer-height);
  max-height: var(--footer-height);
  position: fixed;
  bottom: 0;
  right: 8px;
  z-index: 1;
  background-color: transparent;
}

header div.shadow {
  box-shadow: 0px 0px 14px 0px #222;
}

footer div.shadow {
  box-shadow: 0px 0px 14px 0px #222;
}

footer > div {
  height: 100%;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  background-color: transparent;
}

footer > div > p {
  color: #fefefe;
}

button {
  background-color: var(--color-accent-1);
  border-radius: 2px;
  border: none;
  padding: 3px;
  text-align: center;
}

button:hover,
button:focus {
  background-color: var(--color-accent-1-1);
  cursor: pointer;
}

button > p {
  margin-top: auto;
  margin-bottom: auto;
  line-height: 24px;
  font-size: 14px;
  font-weight: 600;
}

header * {
  z-index: 100;
}

header button,
header button.material-icons {
  background-color: var(--color-element);
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 0;
}

header button:hover {
  background-color: var(--color-element-1);
}

header button.fl {
  display: flex;
  align-items: center;
}

header button * {
  margin-right: 2px;
  margin-left: 2px;
}

header > #navbar {
  /* background-color:var(--color-base); */
  /* padding:4px; */
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0px;
  height: 100%;
  /*border: 4px solid #444444;*/
  /*box-shadow: var(--shadow);/*0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);*/
}

header > #navbar > #title {
  margin-left: 8px;
}

header > #navbar > .end {
  margin-left: auto;
  margin-right: 0;
  align-items: stretch;
  height: 100%;
}

.end {
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}

.flex {
  display: flex;
  justify-content: flex-start;
  /* align-content:center;
  align-items:center; */
}

.flex.row {
  flex-direction: row;
}

.flex.col {
  flex-direction: column;
}

.flex.justifycenter {
  justify-content: center;
}

.flex.aligncenter {
  align-items: center;
}

.spacechildh > * {
  margin-right: 8px;
}

.text.small {
  font-size: x-small;
}

.text.aligncenter {
  text-align: center;
}

.hidden {
  display: none !important;
}

.bold {
  font-weight: 550;
}

#eof_scripts {
  display: none;
}

/*# sourceMappingURL=core_style.css.map */
