@import "https://fonts.googleapis.com/css?family=Poppins&display=swap";
@import "https://fonts.googleapis.com/icon?family=Material+Icons";

/* src/styles.scss */
.htx-tooltip {
  position: absolute;
  z-index: 10000;
  max-width: 320px;
  padding: 0.5rem 0.75rem;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  background-color: #2d3748;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  animation: htx-tooltip-fade-in 0.12s ease-out forwards;
  white-space: nowrap;
  word-break: break-word;
}
.htx-tooltip--multiline {
  white-space: pre-line;
}
@keyframes htx-tooltip-fade-in {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .htx-tooltip {
    animation: none;
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  width: 100%;
}
body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7fafc;
  color: #2d3748;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pdf-viewer-dialog .mat-mdc-dialog-container .mat-mdc-dialog-surface {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pdf-viewer-dialog app-pdf-viewer-dialog {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface {
  padding-right: 0 !important;
}
.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) {
  color: #eeeeee !important;
  --mat-text-button-state-layer-color: black !important;
}

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