/* src/app/modules/admin/styles/fonts.css */
.small {
  font-size: 9pt;
}

/* src/styles.css */
body,
html,
input,
textarea {
  margin: 0px;
  font-family:
    navigo,
    Helvetica,
    sans-serif;
  font-size: 11pt;
}
* {
  box-sizing: border-box;
}
.hidden {
  display: none;
}
.flex {
  flex: 1;
}
.bold {
  font-weight: bold;
}
.hidden-scrollbar {
  overflow: auto;
  scrollbar-width: none;
}
.hidden-scrollbar {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hidden-scrollbar::-webkit-scrollbar {
  display: none;
}
.slim-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.slim-scrollbar::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}
.slim-scrollbar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}
.slim-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.pointer {
  cursor: pointer;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.float-right {
  float: right;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.gap-5 {
  gap: 5px;
}
.gap-6 {
  gap: 6px;
}
.gap-7 {
  gap: 7px;
}
.gap-8 {
  gap: 8px;
}
.gap-9 {
  gap: 9px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.align-top {
  align-items: top;
}
.align-center {
  align-items: center;
}
.align-bottom {
  align-items: bottom;
}
.justify-center {
  justify-content: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  inset: 0px;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-10 {
  z-index: 10;
}
.f-0 {
  flex: 0;
}
.f-1 {
  flex: 1;
}
.w-100 {
  width: 100%;
}
.w-90 {
  width: 90%;
}
.h-100 {
  height: 100%;
}
.h-100px {
  height: 100px;
}
.h-200px {
  height: 200px;
}
@font-face {
  font-family: "navigo";
  src: url(/assets/fonts/Navigo-Light.woff2) format("woff2");
}
@media (min-resolution: 1.25dppx) and (min-width: 1024px) {
  body,
  html {
    font-size: 10pt;
  }
}

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