:root {
  --swiper-theme-color: #008bd0;
  --color-primary: #141e8b;
  --color-link: #008bd0;
  --color-link-hover: var(--color-primary);
  --color-dark: #333333;
  --color-lightgrey: #f4f4f4;
  --flow-spacer: 1rem;
  --bg--primary: var(--color-primary);
  --bg--neutral: white;
  --fs-1: 68px;
  --fs-2: 50px;
  --fs-3: 30px;
  --fs-4: 24px;
}

@font-face {
  font-family: "Frutiger";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/ZEISSFrutigerNextW1G-Reg.woff") format("woff");
}
@font-face {
  font-family: "Frutiger Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/ZEISSFrutigerNextW1G-Bold.woff") format("woff");
}
.bg--primary {
  background-color: var(--bg--primary);
}

.bg--neutral {
  background-color: var(--bg--neutral);
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-hover);
}

.fs-1 {
  font-size: var(--fs-1);
}

.fs-2 {
  font-size: var(--fs-2);
}

.fs-3 {
  font-size: var(--fs-3);
}

.fs-4 {
  font-size: var(--fs-4);
}

h1 {
  font-size: var(--fs-1);
}

h2 {
  font-size: var(--fs-2);
}

h3 {
  font-size: var(--fs-3);
}

/* reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: 16px;
  font-family: Frutiger, system UI, sans-serif;
}

form .form-item label {
  display: block;
  font-family: "Frutiger Bold", sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}
form .form-item input {
  padding: 0.3rem 0.5rem;
  width: 100%;
}
form .form-control {
  border-radius: 0;
}
form .btn {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
}
form label.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
form label.checkbox input {
  display: none;
}
form label.checkbox input + span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #888;
  margin-right: 12px;
  border-radius: 2px;
  position: relative;
}
form label.checkbox input:checked + span::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-check2' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  fill: #888;
  color: #888;
  width: 16px;
  height: 16px;
}

.btn {
  --bs-btn-bg: #008bd0;
  --bs-btn-hover-bg: #269cd7;
}

.btn {
  padding: 1rem 2rem;
  background-color: var(--bs-btn-bg);
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: var(--bs-btn-hover-bg);
}

#form {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
#form.en {
  max-width: 1200px;
}
#form .button {
  margin: 0 auto;
  text-align: center;
}
#form .fields {
  padding-block: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
#form .error {
  color: red;
}
#form .othererror {
  color: red;
  margin-bottom: 1rem;
}
#form .helper {
  font-size: 13px;
  margin-top: 4px;
}

.separator {
  padding-block: 1rem;
}
.separator hr {
  border-color: #fafafa;
  background-color: #fafafa;
  color: #fafafa;
}

.recaptcha-text {
  font-size: 13px;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

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

select {
  width: 100%;
  height: 40px;
  padding-inline: 4px;
}

#login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  position: absolute;
  left: calc(50% - 160px);
  top: 50%;
  transform: translateY(-50%);
}
#login .form-item {
  margin-bottom: 1rem;
}

#stat {
  max-width: 1200px;
  margin: 2rem auto;
  padding-top: 2rem;
  position: relative;
  padding-bottom: 2rem;
}
#stat .export {
  position: absolute;
  right: 0;
  top: 4rem;
}
#stat h1 {
  margin-bottom: 2rem;
}
#stat .block {
  margin-bottom: 2rem;
}
#stat .block h2 {
  margin-bottom: 1rem;
}
#stat .block table {
  border-collapse: collapse;
  width: 100%;
}
#stat .block table th {
  text-align: left;
  font-weight: 700;
  background-color: #ababab;
  color: white;
}
#stat .block table th, #stat .block table td {
  padding: 0.5rem;
  border: 1px solid #ccc;
}
#stat .block table th a, #stat .block table td a {
  color: red;
}

input[type=password] {
  font-family: sans-serif;
}

#timestable {
  padding-block: 2rem;
}
#timestable table {
  border-collapse: collapse;
  width: 100%;
}
#timestable table th {
  background-color: #f4f4f4;
  color: #333;
  font-family: "Frutiger Bold", sans-serif;
}
#timestable table th, #timestable table td {
  padding: 0.5rem;
  border: 1px solid #ccc;
}
#timestable table th:first-child, #timestable table td:first-child {
  font-family: "Frutiger Bold", sans-serif;
}
#timestable table th:last-child, #timestable table td:last-child {
  text-align: center;
}

.recap {
  margin-bottom: 2rem;
}

.cols {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 5rem;
}
@media screen and (max-width: 1100px) {
  .cols {
    grid-template-columns: 1fr 1fr;
    padding-inline: 1rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .cols {
    grid-template-columns: 1fr;
    padding-inline: 2rem;
    gap: 2rem;
  }
}

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