#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;
  }
}
button > p {
  margin-top: auto;
  margin-bottom: auto;
  line-height: 24px;
  font-size: 14px;
  font-weight: 600;
}

button,
.button,
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--color-accent-1);
  border: 1px solid var(--color-accent-1);
  font-weight: 600;
  font-size: 0.8rem;
}

.button:hover,
input[type=submit]:hover {
  background-color: var(--color-accent-1-1);
}

.button.disabled,
a.button:not([href]) {
  background-color: var(--color-element-1);
  cursor: default;
  filter: contrast(0.5);
  border: 1px solid var(--color-element-2);
}

input,
textarea,
select {
  font: inherit;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--color-element-1);
  border-left-width: 0.25rem;
  border-right-width: 0.25rem;
  border-top-width: 0.08rem;
  border-bottom-width: 0.08rem;
  border-style: solid;
  border-color: var(--color-element-2);
  border-radius: 0.4rem;
}

::-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);
}

.swap_palette .material-icons {
  color: var(--color-accent-1);
}

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;
}

.reset_button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
.reset_button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.mr_icon {
  background-image: url("/img/modrinth.svg");
  height: 24px;
  width: 24px;
  background-size: 24px;
}

.cf_icon {
  --cf-aspect-inv: 0.53446694;
  background-image: url("/img/curse.svg");
  height: calc(24px * var(--cf-aspect-inv));
  width: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
}

.filter-grey {
  filter: grayscale(100%) opacity(50%);
}

.icon_button {
  border-radius: 6px;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-items: center;
  padding: 4px;
  border: 1px solid transparent;
}
.icon_button.inline {
  width: auto;
  height: auto;
  padding: 0 4px;
}
.icon_button.inline .mr_icon {
  height: 1em;
  width: 1em;
  background-size: 1em;
}
.icon_button.inline .cf_icon {
  --cf-aspect-inv: 0.53446694;
  --cf-aspect-em: calc(1em / var(--cf-aspect-inv));
  width: var(--cf-aspect-em);
  height: 1em;
}
.icon_button[href]:hover {
  background-color: var(--color-base-1);
  border: 1px solid var(--color-accent-1);
}
:root {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-background);
}

* {
  /* box-sizing: border-box; */
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  padding: 0;
  margin: 0;
  color: var(--color-text);
  /*border: 1px solid red;*/
  /* max-width:100%; */
}

/* @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;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;

        margin:4px;
} */
.material-icons {
  color: inherit;
}

body {
  width: 100%;
  height: 100%;
  /* overflow-y: hidden; */
  overflow: hidden;
  display: grid;
  grid-template-rows: [header-start] 56px [header-end mid-start] auto;
}

header {
  grid-row: header-start/header-end;
  background-color: var(--color-base);
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid var(--color-accent-1);
}

footer {
  grid-row: footer-start/footer-end;
  background-color: var(--color-base);
  position: relative;
  z-index: 1;
}

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

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

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

button:hover {
  cursor: pointer;
}

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

header * {
  z-index: 100 !important;
}

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 a:first-child #title {
  margin-left: 8px;
}

header #navbar_front {
  align-items: baseline;
}

header #navbar_front > a {
  text-decoration: none;
}

header #navbar_front > a:hover {
  text-decoration: underline;
}

#navbar .end {
  align-self: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  height: 60%;
  align-items: stretch;
  margin-right: 8px;
}

.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;
}

.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--color-accent-1);
}

.button:hover {
  background-color: var(--color-accent-1-1);
}

header #navbar ul {
  margin-left: 0px;
  margin-right: 10px;
  width: 100%;
  /*background-color:blue;*/
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

header #navbar ul li {
  padding-left: 1vMin;
  padding-right: 1vMin;
  margin-right: 0px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8vMin;
  border-right: var(--color-accent-2) 1px solid;
  background-color: var(--color-base);
  list-style-type: none;
}

header #navbar ul li.list_end {
  border-right: none;
}

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