* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0px;
  font: 16px Arial, sans-serif;
  line-height: 1.42857143;
  color: #333;
}

body {
  overflow-y: scroll;
}

p {
  margin: 0 0 10px;
}

h1, h2, h3, h4 {
  margin-bottom: 0.3em;
  margin-top: 1em;
  text-shadow: 2px 2px 2px rgba(100, 100, 100, 0.5);
}

i {
  position: relative;
}

i[data-badge]:not([data-badge=""])::after {
  content: attr(data-badge);
  position: absolute;
  background: #bbb;
  height: 1.3rem;
  bottom: 1rem;
  left: 1.5rem;
  width: 1.3rem;
  text-align: center;
  line-height: 1.3rem;
  font-size: 0.8rem;
  border-radius: 50%;
  color: #333;
  border: 1px solid #333;
}

a {
  cursor: pointer;
}

.pull-right {
  float: right;
}

.center-vertically {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}

*[hidden] {
  display: none !important;
}

header {
  display: grid;
  grid-template-columns: 50px auto 50px;
  z-index: 3;
  position: fixed;
  top: 0;
  height: 50px;
  width: 100%;
  background-image: linear-gradient(#99bbff 0%, #8caae6 100%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header__nav-btn {
  cursor: pointer;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px;
}
.header__nav-btn div {
  width: 20px;
  height: 3px;
  background-color: #eee;
  margin-top: 4px;
  margin-bottom: 4px;
  transition: transform 0.3s ease-out, opacity 0.4s ease-out;
}
.header__profile-btn {
  cursor: pointer;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px;
}
.header__title {
  text-align: center;
  font-size: 30px;
  color: white;
  padding-top: 1px;
  overflow: hidden;
  text-decoration: none;
  outline: none;
}
.header__title:hover {
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);
}

.nav-btn--close .nav-btn__hamburger1 {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-btn--close .nav-btn__hamburger2 {
  opacity: 0;
  transform: translate(-10px, 0px);
}
.nav-btn--close .nav-btn__hamburger3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

footer {
  display: grid;
  /*     grid-template-columns: 33.33% 33.33% 33.33%; */
  grid-template-columns: 50% 50%;
  position: fixed;
  bottom: 0;
  height: 50px;
  background-image: linear-gradient(#555, #333);
  color: #bbb;
  width: 100%;
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2), 0 -6px 20px 0 rgba(0, 0, 0, 0.19);
}
footer a {
  color: inherit;
  display: block;
  height: 100%;
  padding-top: 8px;
  text-align: center;
  outline: none;
}
footer a:hover {
  color: #eee;
}
footer .footer__btn3 {
  display: none;
}

aside {
  width: 300px;
  position: fixed;
  z-index: 2;
  top: 50px;
  overflow: show;
  transition: 0.3s ease-out;
  margin: 4px;
}
aside nav {
  display: block;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.59);
  overflow: hidden;
  margin-bottom: 26px;
}

.nav {
  left: 0;
  padding: 0;
}
.nav nav {
  background-color: #333;
  color: #bbb;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 15px 5px;
}
nav li a:hover {
  background-color: #eee;
  color: #333;
}

.profile {
  right: 0;
}
.profile nav {
  background-color: #333;
  color: #bbb;
}
.profile__username {
  margin: 15px 0px 15px 10px;
}
.profile__username::before {
  content: "Name";
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  font-size: 70%;
}
.profile__pin {
  margin: 5px 0px 10px 10px;
}
.profile__pin::before {
  content: "PIN";
  display: block;
  font-weight: bold;
  font-size: 70%;
}

.modal-background {
  background: white;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: background 0.3s ease-out;
}
.modal-background--show {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

div:has(> table) {
  overflow-x: auto;
}

.container {
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  top: 50px;
  bottom: 50px;
}
.container main {
  padding-left: 5px;
  padding-right: 5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  transition: 0.2s ease-in-out;
}
.container main .section {
  display: none;
  height: 100%;
  position: relative;
  padding-top: 0.5em;
}
.container main .section--show {
  display: block;
}
.container main .section--scroll-and-form.section--show {
  display: grid;
  grid-template-rows: auto 136px;
}
.container main .section--scroll-and-button.section--show {
  display: grid;
  grid-template-rows: auto 76px;
}

.scroll {
  overflow-y: auto;
}

.textinput {
  display: block;
  width: 100%;
  margin-top: 0.3em;
  margin-bottom: 0em;
  padding: 1.5em 0.5em 0.5em 0.5em;
  border: none;
  border-bottom: solid #999 2px;
  font-size: inherit;
}
.textinput:focus {
  outline-style: none !important;
  border-bottom: solid #33f 2px;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.textinput:required:invalid:not(:focus) {
  box-shadow: none;
}
.textinput:required + label {
  display: block;
  position: relative;
  top: -35px;
  left: 7px;
  transition: top 0.2s ease-out, font-size 0.2s, color 0.2s;
  height: 0;
  overflow-y: show;
  color: #666;
}
.textinput:required:not(:invalid) + label, .textinput:focus + label {
  top: -58px;
  border: none;
  font-size: 75%;
  color: inherit;
}

/* https://codepen.io/mattlibera/pen/dPdVOM */
@keyframes shake {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(3em);
  }
  40% {
    transform: translate(-3em);
  }
  60% {
    transform: translate(3em);
  }
  80% {
    transform: translate(-3em);
  }
  100% {
    transform: translate(0);
  }
}
.shake {
  animation: shake 0.5s infinite;
}

button, .button {
  font-size: inherit;
  background: linear-gradient(#5CBF60 0%, #4CAF50 100%);
  border-radius: 4px;
  border: none;
  padding: 1.2em;
  color: white;
  margin-top: 0.5em;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  -moz-user-select: none;
  text-decoration: none;
}
button:hover, .button:hover {
  background: linear-gradient(#6CCF70 0%, #5CBF60 100%);
}
button--red, .button--red {
  background: linear-gradient(#BF5C60 0%, #AF4C50 100%);
}
button--red:hover, button--red:active, .button--red:hover, .button--red:active {
  background: linear-gradient(#CF6C70 0%, #BF5C60 100%) !important;
}
button:active, .button:active {
  background: linear-gradient(#6CCF70 0%, #5CBF60 100%);
  position: relative;
  top: 2px;
  outline: none;
}
button::-moz-focus-inner, .button::-moz-focus-inner {
  border: none;
}

.cards {
  list-style: none;
  margin: 1em 0 1.5em 0;
  padding: 0;
}
.cards li {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 0.5em 0em;
}
.cards li a {
  display: block;
  color: inherit;
  padding: 1em;
}
.cards li:not(.no-link):active {
  position: relative;
  top: 2px;
}
.cards li.no-link {
  padding: 1em;
}

.documents li {
  background: linear-gradient(hsl(0, 0%, 94%) 0%, hsl(0, 0%, 93%) 100%);
}
.documents li:hover {
  background: linear-gradient(hsl(0, 0%, 98%) 0%, hsl(0, 0%, 95%) 100%);
}

.info li {
  background: linear-gradient(hsl(60, 100%, 81%) 0%, hsl(60, 100%, 75%) 100%);
}
.info li:not(.no-link):hover {
  background: linear-gradient(hsl(60, 100%, 90%) 0%, hsl(60, 100%, 85%) 100%);
}

.puzzle a {
  text-decoration: none;
}
.puzzle a:hover {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.2);
}
.puzzle--state-locked {
  background: yellow;
  color: black;
}
.puzzle--state-unlocked {
  background: #afa;
  color: black;
}
.puzzle--state-solved {
  background: #3c3;
  color: black;
}
.puzzle--state-skipped {
  background: #BF5C60;
  color: #eee;
}
.puzzle--state-archived {
  background: #fd5;
  color: black;
}
.puzzle__state {
  font-size: 75%;
}
.puzzle__state.pull-right {
  clear: right;
  padding-right: 0.4em;
}

#section-map {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
#section-map .map {
  height: 100%;
  margin: 0;
}
#section-map .map iframe {
  width: 100%;
  height: 100%;
  margin: 0;
}
#section-map .section-map__geo-link {
  position: absolute;
  bottom: 5px;
  left: 50%;
  translate: -50% 0;
  background: linear-gradient(#3c3 0%, #2b2 100%);
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.4);
  border-radius: 25px;
  text-align: center;
  color: #eee;
  padding: 1em;
  text-decoration: none;
}
#section-map .section-map__geo-link i {
  position: relative;
  top: 8px;
}
#section-map .section-map__geo-link:hover {
  background: linear-gradient(#4d4 0%, #3c3 100%);
}

.loading {
  text-align: center;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading--show {
  display: block;
}

.loading-message {
  height: 1em;
}

.location {
  font-size: 120%;
}

#location-hint {
  margin-top: 1em;
}

.section-puzzle-locked__unlockPoints {
  display: hidden;
}
.section-puzzle-locked__unlockPoints--show {
  display: block;
}

.solution-form #blocked {
  display: none;
  cursor: not-allowed;
}
.solution-form--blocked #solution-button {
  display: none;
}
.solution-form--blocked #blocked {
  display: block;
}

.skip-form {
  display: none;
}
.skip-form--show {
  display: block;
}

.section-end {
  text-align: center;
}
.section-end .center-vertically {
  font-size: 150%;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 80px;
}
.section-end__end-text {
  position: absolute;
  bottom: 0;
  background: white;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
}
.section-end__trophy {
  width: 70%;
  max-height: 40vh;
}

table {
  width: 100%;
  border-spacing: 0px 2px;
}

.section-puzzle-finished {
  text-align: center;
}
.section-puzzle-finished.section--show {
  display: grid !important;
  grid-template-rows: auto 140px;
}
.section-puzzle-finished .scroll {
  position: relative;
}
.section-puzzle-finished .center-vertically {
  font-size: 150%;
  font-weight: bold;
  padding-top: 0px;
  padding-bottom: 20px;
}
.section-puzzle-finished__trophy {
  width: 30%;
}
.section-puzzle-finished .evaluation {
  margin-bottom: 0;
}

.section-hints__hotline {
  display: none;
}
.section-hints__hotline--show {
  display: block;
}
.section-hints__useChat {
  display: none;
}
.section-hints__useChat--show {
  display: inline;
}
.section-hints__hotline-numbers {
  margin-bottom: 0.6em;
  text-align: center;
}
.section-hints__hotline-numbers a {
  display: inline-block;
  border: solid #ccc 1px;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 0.5em 1em;
  text-decoration: none;
  color: inherit;
}
.section-hints__countdown {
  display: inline-block;
  background: black;
  color: #eee;
  font-size: 85%;
  border-radius: 1em;
  padding: 0 0.3em;
}

.small {
  font-size: 85%;
  -webkit-hyphens: auto;
          hyphens: auto;
  line-height: 140%;
}

.evaluation {
  line-height: 2em;
  display: grid;
  grid-template-columns: auto 10% 10% 10% 10% 10% 50px;
  max-width: 400px;
  margin: 0em auto;
}
.evaluation i {
  cursor: pointer;
}
.evaluation .no-value {
  font-size: 70%;
  color: #b3b3b3;
  text-align: center;
  cursor: pointer;
  line-height: 1em;
  margin: auto 0;
}

.section-document {
  padding-bottom: 20px;
  padding-left: 0;
  margin-left: 0;
}

.section-puzzle__text {
  margin-top: 1em;
  margin-bottom: 1.3em;
  background-color: orange;
  padding: 0.5em;
}

pre {
  overflow: auto;
  width: 100%;
}

.home-footer {
  display: grid;
  grid-template-areas: "text image";
}

@media (max-width: 400px) {
  .home-footer {
    grid-template-areas: "image" "text";
    text-align: center;
  }
  div.home-footer > div:first-child {
    text-align: center;
  }
}
.home-footer > div:first-child {
  grid-area: image;
  text-align: right;
}

.home-footer > div:last-child {
  grid-area: text;
}

.home-footer img {
  height: 4rem;
}

@media (max-width: 1299px) {
  aside {
    transform: translate(0, -100%);
  }
  .nav--show, .profile--show {
    transform: translate(0, 0);
  }
  h2 {
    margin-top: 0em;
  }
}
@media (min-width: 1300px) {
  aside {
    margin: 10px;
    transition: 0s;
  }
  aside nav {
    padding: 10px 0;
  }
  .header__nav-btn, .header__profile-btn {
    visibility: hidden;
  }
}
header, footer {
  transition: transform 0.2s ease-in-out;
}

@media (max-height: 300px) {
  header {
    transform: translate(0, -100%);
  }
  footer {
    transform: translate(0, 100%);
  }
  aside {
    display: none;
  }
  main {
    padding-top: 1em;
    padding-bottom: 0;
  }
  .container {
    top: 0;
    bottom: 0;
  }
  form {
    position: absolute;
    width: 100%;
    bottom: 0 !important;
    padding-bottom: 1em !important;
  }
}
.section-stats th, .section-stats td {
  font-size: 80%;
}
.section-stats .section-stats__matrix td:nth-child(2) {
  text-align: left;
}
.section-stats .section-stats__puzzleStats td:nth-child(2) {
  text-align: left;
}
.section-stats td {
  border-top: 1px solid black;
  text-align: center;
}
.section-stats .stats--solved, .section-stats .stats--not-solved, .section-stats .stats--solved-with-hint {
  padding: 0.2em;
  display: inline-block;
  border-radius: 0.2em;
}
.section-stats .stats--solved {
  background-color: #0f0;
}
.section-stats .stats--not-solved {
  background-color: tomato;
}
.section-stats .stats--solved-with-hint {
  background-color: yellow;
}

.chart-container {
  overflow-x: auto;
}
.chart-container svg * {
  stroke-linecap: round;
}

.axis {
  stroke: #333;
  stroke-width: 0.4;
}

.axisLabel {
  font-size: 5px;
}

.grid {
  stroke: #ccc;
  stroke-width: 0.4;
}

.graphLine polyline {
  stroke-width: 0.6;
}
.graphLine polyline.transparent {
  stroke-width: 5;
}
.graphLine:hover polyline {
  stroke-width: 1.5;
}
.graphLine:hover .action {
  stroke-width: 2;
}/*# sourceMappingURL=app.css.map */