/* src/app/style/animation.scss */
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* src/app/style/button.scss */

/* src/app/style/entity.scss */

/* src/app/style/font.scss */
@font-face {
  font-family: "fa-light";
  src: url(/static/font/fa-light.woff2);
  font-display: swap;
}
@font-face {
  font-family: "fa-brands";
  src: url(/static/font/fa-brands.woff2);
  font-display: swap;
}

/* src/app/style/form.scss */

/* src/app/style/general.scss */

/* src/app/style/graph.scss */

/* src/app/style/helper.scss */

/* src/app/style/layout.scss */
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-anchor: none;
  overscroll-behavior: none;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 16px;
}
html body * {
  box-sizing: border-box;
  outline: none;
  overflow-anchor: none;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

/* src/app/style/list.scss */

/* src/app/style/panel-side.scss */

/* src/app/style/panel-win.scss */

/* src/app/style/var.scss */
html {
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
