@charset "UTF-8";
.achievement {
  background: #192636;
  color: white;
  border-radius: 10px;
  text-align: center;
  font-size: 9pt;
  min-height: 230px;
  max-width: 100%;
  margin: 5px;
  padding: 5px;
  position: relative;
}
.achievement .title {
  font-weight: bold;
  padding: 5px;
  min-height: 50px;
}
.achievement .image {
  padding: 5px;
  font-size: 40pt;
}
.achievement .image .round-icon {
  font-size: 40pt;
  width: 80px;
  /* Breite des Kreises */
  height: 80px;
  /* Höhe des Kreises */
  background-color: #00d0ff;
  /* Färbt den Hintergrund blau */
  border-radius: 50%;
  /* Macht den Kreis rund */
  display: inline-block;
  /* Damit height und width angewendet werden */
  text-align: center;
  /* Zentriert das Icon im Kreis */
  line-height: 80px;
  /* Vertikal zentriert das Icon im Kreis */
}
.achievement .image .material-icons {
  font-size: 40pt;
  width: 80px;
  /* Breite des Kreises */
  height: 80px;
  /* Höhe des Kreises */
  background-color: #0d6efd;
  /* Färbt den Hintergrund blau */
  border-radius: 50%;
  /* Macht den Kreis rund */
  display: inline-block;
  /* Damit height und width angewendet werden */
  text-align: center;
  /* Zentriert das Icon im Kreis */
  line-height: 80px;
  /* Vertikal zentriert das Icon im Kreis */
}
.achievement img {
  max-width: 100%;
  max-height: 100%;
}
.achievement .status {
  position: absolute;
  bottom: 15px;
  margin: auto;
  text-align: center;
  left: 0;
  right: 0;
  background-color: #e31bd4;
  border-radius: 5px;
}

.finished .status {
  background: #0d6efd;
}

.horizontal-list-2 {
  overflow-x: scroll;
  width: 100%;
  display: inline-flex;
}

@keyframes glitter {
  0%, 100% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
}
.glitter {
  background: linear-gradient(45deg, #152244, #116256, #0e1134, #2a0808);
  background-size: 400% 400%;
  animation: glitter 10s infinite;
}

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