.v-component {
  opacity: 0;
}
.v-component.loaded {
  animation-delay: 50ms;
  animation-duration: 250ms;
  animation-name: fadIn;
  animation-fill-mode: forwards;
}
.alert-component {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-component .alert-container {
  width: 90%;
  height: 90%;
  padding: 0.5em;
  max-width: 250px;
  max-height: 200px;
  background: #fff;
  border: 1px solid rgba(13, 11, 4, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.alert-component .alert-container p {
  margin: 0;
  font-size: 0.85rem;
  font-family: "Barlow-Bold", "Helvetica Neue", sans-serif;
}
@media only screen and (min-width: 411px) {
  .alert-component .alert-container p {
    font-size: 1rem;
  }
}
.alert-component .alert-container .loading-component {
  width: 100%;
  display: flex;
  min-height: 150px;
  align-items: center;
}
.alert-component.error .alert-container .loading-component span, .alert-component.error .alert-container .loading-component div {
  color: tomato !important;
  background: tomato !important;
}
.alert-component.error .alert-container p {
  color: tomato;
  line-height: 1.2;
}
.v-component.loaded.alert {
  opacity: 1;
  animation-name: none;
}
@keyframes fadIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loading {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 30px;
  }
  40% {
    box-shadow: 0 -1em;
    height: 40px;
  }
}
@keyframes loading {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 30px;
  }
  40% {
    box-shadow: 0 -1em;
    height: 40px;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%2Fwww%2Fvhosts%2Ffestspielfoerderer.de%2Fhttpdocs%2Fvendor%2Falnv%2Fassets-manager-bundle%2Fsrc%2FResources%2Fpublic%2Fcss%2Fv-component.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUQ%3BAAAA%3BAAAA%3BAAAA%3BAAMJ%3BAAAA%3BAAAA%3BAAAA%3BAAOZ%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%22%7D */