@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/fonts/dosis-regular.ttf") format("truetype"); /* Safari, Android, iOS */
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/fonts/opensans.ttf") format("truetype"); /* Safari, Android, iOS */
}
body {
  font-family: Dosis;
}

h1 {
  font-size: 40px;
  color: #84898c;
  text-transform: uppercase;
  font-family: Dosis;
}

h3 {
  font-size: 1.5rem;
  font-family: Dosis;
  width: 80%;
  margin: 0 auto;
}

.fragetext {
  margin-top: 50px;
}

p {
  font-size: 18px;
}

.skala_label {
  font-size: 0.875rem;
  color: #84898c;
  text-transform: uppercase;
}

.icon {
  fill: #84898c;
}

.frage {
  min-height: 350px;
}

.auswertung .uk-card {
  min-height: 350px;
}

.punkteergebnis {
  font-size: 40px;
  font-family: "Open Sans", sans-serif;
  background-color: #84898c;
  color: white;
  border-radius: 50%;
  padding: 20px 30px;
  margin: 30px auto;
  display: inline-block;
}

.ergebnis {
  font-size: 22px;
}

.fragennummer {
  position: absolute;
  left: 0px;
  top: 0px;
  color: white;
  border-top-left-radius: 15px;
  padding: 10px 20px;
  background-color: #84898c;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  min-width: 28px;
}

.offenefragen {
  position: absolute;
  left: 0px;
  top: 0px;
  color: white;
  border-top-left-radius: 15px;
  padding: 20px 20px;
  background-color: #84898c;
  font-size: 14px;
  height: 16px;
  font-family: "Open Sans", sans-serif;
}

.logo_index {
  height: 80px;
  margin-top: 40px;
}

.logo {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 55px;
}

.punkteskala {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  position: relative;
  width: 100%;
  height: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.punkteskala::before {
  content: " ";
  position: absolute;
  height: 1px;
  width: 100%;
  width: calc(100% * (9 / 10));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2f3435;
}
.punkteskala input,
.punkteskala label {
  box-sizing: border-box;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.punkteskala label {
  display: inline-block;
  position: relative;
  width: 20%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.punkteskala label::before {
  content: attr(data-debt-amount);
  position: absolute;
  left: 50%;
  padding-top: 10px;
  transform: translate(-50%, 45px);
  font-size: 18px;
  letter-spacing: 0.4px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0.3;
  transition: all 0.15s ease-in-out;
}
.punkteskala label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid #2f3435;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.punkteskala label:hover::after {
  transform: translate(-50%, -50%) scale(1.25);
}
.punkteskala label:hover::before {
  opacity: 1;
}
.punkteskala input {
  display: none;
}
.punkteskala input:checked + label::before {
  font-weight: 800;
  opacity: 1;
}
.punkteskala input:checked + label::after {
  border-color: #b0da19;
  background: #b0da19;
}

.uk-border-rounded {
  border-radius: 15px;
}

.uk-button {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: white;
  background-color: #b0da19;
  border-radius: 5px;
}
.uk-button:hover, .uk-button:active {
  color: white;
  background-color: #a2c918;
}

.uk-card-default .uk-card-title {
  font-size: 40px;
  color: #84898c;
}

.footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: "Dosis", sans-serif;
  font-size: 12px;
}
.footer span {
  color: #84898c;
}
.footer a {
  text-decoration: none;
  color: #84898c;
}
.footer a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */