@charset "UTF-8";
:root {
  --back-color: white;
  --main-color: black;
  --additionl-color: #aaa;
  --accent-color: crimson;
  --invert-accent: red;
  font-family: Inter, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1; /* fix for Chrome */
  font-weight: normal;
  font-size: clamp(0.8rem, 1.5vw + 0.25rem, 2rem);
  color: var(--main-color);
  cursor: grab;
}
:root .cell-text, :root .parameter {
  font-size: 0.4rem;
}
@media screen and (max-width: 640px) {
  :root .cell-text, :root .parameter {
    font-size: 0.8rem;
  }
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  text-decoration: none;
  font-weight: normal;
  vertical-align: top;
}

img {
  vertical-align: middle;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  cursor: grab;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none; /* Chrome, Safari, Edge */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.overlay_fade {
  transition: opacity 0.2s ease-in-out;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.headline {
  padding-left: 0.5rem;
  color: var(--accent-color);
  font-size: clamp(1.2rem, 1.5vw, 3rem);
}

.top-right {
  display: flex;
  align-items: center;
}

.parameter {
  color: var(--additionl-color);
  display: block;
  height: 100%;
}
.parameter:not(:last-child) {
  margin-right: 1em;
}

.button {
  content: "⃞";
  display: flex;
  align-content: center;
  padding: 0.75rem;
  font-size: clamp(1.2rem, 1.5vw, 2.5rem);
}
.button:hover {
  color: var(--accent-color);
  cursor: pointer;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5) url("./icons/pattern.svg") repeat;
  background-size: auto;
  z-index: 10000;
  animation: appear 0.2s ease-in-out;
}
.overlay:hover {
  cursor: pointer;
}
.overlay_fade {
  opacity: 0;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2rem;
  color: var(--main-color);
  background-color: var(--back-color);
  border-radius: 2px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.popup:hover {
  cursor: default;
}
@media screen and (max-width: 640px) {
  .popup {
    padding: 3rem 1rem;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.options-line {
  padding: 1.5rem;
  display: flex;
}

.option {
  text-decoration: none;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.1rem;
  width: 3.5rem;
  min-height: 40px;
  min-width: 60px;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
}
.option:hover {
  color: var(--accent-color);
  cursor: pointer;
}
.option_active {
  color: var(--accent-color);
  border: 0.1rem solid var(--accent-color);
  background: var(--back-color);
}
.option_active:hover {
  cursor: default;
}

.day_hover, .special-day, .day {
  transition: height 0.2s ease-in-out, width 0.2s ease-in-out;
}

.content {
  user-select: none;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.slider {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  display: flex;
}
@media screen and (max-width: 800px) {
  .slider {
    height: 75vh;
  }
}
@media screen and (max-width: 640px) {
  .slider {
    height: 70vh;
  }
}

.slides {
  width: 300%;
  height: 100%;
  display: flex;
  position: absolute;
  left: -100%;
}

.slide {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(15, 1fr);
  grid-template-columns: repeat(32, 1fr);
  gap: 0;
  text-align: center;
}

.cell {
  display: flex;
  position: relative;
  justify-content: center;
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 640px) {
  .cell {
    pointer-events: none;
  }
}

.hr {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.day {
  display: flex;
  align-content: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  aspect-ratio: 1/1;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--main-color);
  cursor: none;
}
@media screen and (orientation: portrait) {
  .day {
    height: 6%;
    width: auto;
  }
}
@media screen and (orientation: landscape) {
  .day {
    width: 6%;
    height: auto;
  }
}
.day::before {
  content: "";
  display: block;
}

.special-day {
  display: flex;
  align-content: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  aspect-ratio: 1/1;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--accent-color);
  cursor: none;
}
@media screen and (orientation: portrait) {
  .special-day {
    height: 12%;
    width: auto;
  }
}
@media screen and (orientation: landscape) {
  .special-day {
    width: 12%;
    height: auto;
  }
}
.special-day::before {
  content: "";
  display: block;
}

.current-date {
  outline: 0.075em solid var(--main-color);
  outline-offset: 0.5em;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .current-date {
    outline-width: 1px;
  }
}

.day_hover {
  width: 86%;
  height: auto;
}

.cell-text {
  align-self: center;
  color: var(--back-color);
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}

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