:root {
  /*  // Desktop*/
  /*  // Big Screen*/
  /*  // Mobile*/
}
@media screen and (min-width: 501px) {
  :root {
    --menu-open-width: 360px;
    --menu-closed-width: 0;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    --menu-open-width: 360px;
    --menu-closed-width: 360px;
  }
  :root #openNav,
  :root #closeNav {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --menu-open-width: 100vw;
    --menu-closed-width: 0;
  }
}
html {
  font-family: var(--ff-default);
  font-weight: var(--fw-default);
  font-size: var(--fs-basic);
  color: var(--f-color-main);
  font-style: normal;
  line-height: 1.5;
}
li {
  margin-bottom: 0.25em;
}
p {
  line-height: 1.75;
}
h1,
h2,
h3,
h4 {
  font-family: var(--ff-header);
  font-weight: var(--fw-header);
  color: var(--f-color-display);
  font-style: normal;
}
.button {
  cursor: pointer;
  color: #106d66;
}
.slidein-big body {
  grid-template-areas: "aside header" "aside main" "aside footer";
}
.slidein-small body {
  grid-template-areas: "header header" "aside main" "aside footer";
}
.slidein-content body {
  grid-template-areas: "header header" "aside main" "footer footer";
}
body {
  background-color: var(--c-main-bg);
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: min-content 1fr min-content;
  height: 100vh;
  overflow: hidden;
}
body header#mainHeader {
  grid-area: header;
}
body aside#mainNav {
  grid-area: aside;
  overflow-x: hidden;
}
body div#openNav {
  grid-area: main;
  align-self: start;
  position: fixed;
  z-index: 100;
}
body main#Main {
  grid-area: main;
  overflow-x: hidden;
  position: relative;
}
body footer#mainFooter {
  grid-area: footer;
  overflow-x: hidden;
}
.menuClosed aside#mainNav {
  width: var(--menu-closed-width);
}
.menuClosed div#openNav {
  display: flex;
  flex-direction: column;
}
.menuOpen aside#mainNav {
  width: var(--menu-open-width);
}
.menuOpen div#openNav {
  display: none;
}
.hamburger {
  font-size: 0.8rem;
  padding: 0.8rem 0.1rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0em;
  background-color: var(--c-menu-bg);
  padding-left: 0.5rem;
  color: var(--f-color-display);
  transition: 0.2s ease-in;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.close {
  padding-right: 1em;
}
.hamburger span {
  display: none;
}
aside#mainNav {
  background-color: var(--c-menu-bg);
  border-top-right-radius: 0.4em;
  transition: 0.25s;
  display: flex;
}
aside#mainNav nav {
  flex: 1 0 auto;
  margin-top: 2rem;
}
aside#mainNav a {
  flex: 0 0 auto;
  padding: 8px 8px 8px 32px;
  font-size: 16px;
  color: var(--f-color-display);
  display: block;
  transition: 0.25s;
  text-decoration-color: transparent;
}
aside#mainNav a:hover {
  color: var(--f-color-display);
  text-decoration-line: underline;
  text-decoration-color: var(--f-color-display);
  text-decoration-thickness: 0.25em;
}
main#Main {
  /**
 * WRAPPER
 * Sets a max width, adds a consistent gutter and horizontally
 * centers the contents
 */
}
main#Main .wrapper {
  width: 80vw;
  width: clamp(10rem, 80vw, 36rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
main#Main figure img {
  max-width: 100%;
}
footer#mainFooter {
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  background-color: var(--c-menu-bg);
}
footer#mainFooter p {
  margin: 1rem;
}
.debugon body > * {
  border: 1px solid blue;
}
.debugon body > * > * {
  padding: 1rem;
}
.debugon #mainHeader {
  background-color: salmon;
}
.debugon #mainNav {
  background-color: coral;
}
.debugon #Main {
  background-color: #fdb392;
}
.debugon #mainFooter {
  background-color: aquamarine;
}
/* Komments Stylen */
.share-elsewhere {
  display: none;
}
element.style {
  display: block;
}
#kommentform input[type=url] {
  display: none !important;
}
