/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: .6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, .32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a {
  display: inline-block;
}
ul {
  list-style-position: inside;
}
body {
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #000000;
  font-weight: 500;
  letter-spacing: -0.25px;
}
:root {
  --font-size-base: $font-size-base;
  --font-size-scale: $font-size-scale;
}
::placeholder {
  font-family: "Geist", sans-serif;
  color: #919191;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.25px;
}
button,
input,
textarea {
  font-family: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h5 {
  font-weight: 700;
}
h1 {
  font-size: 2rem;
  line-height: 38.4px;
  letter-spacing: -0.6px;
}
h2 {
  font-size: 1.5rem;
  letter-spacing: -0.4px;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}
h4 {
  font-size: 1rem;
  letter-spacing: -0.3px;
}
h5 {
  font-size: 12px;
  letter-spacing: -0.24px;
}
button {
  cursor: pointer;
}
a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.inline-link {
  text-decoration: underline;
}
a.inline-link:hover {
  color: #0a295f;
}
.sidebar-backdrop,
.modal-backdrop,
.bottom-drawer-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100;
  src: url("./media/Geist-Thin.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 200;
  src: url("./media/Geist-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 300;
  src: url("./media/Geist-Light.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 400;
  src: url("./media/Geist-Regular.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 500;
  src: url("./media/Geist-Medium.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 600;
  src: url("./media/Geist-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 700;
  src: url("./media/Geist-Bold.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 800;
  src: url("./media/Geist-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 900;
  src: url("./media/Geist-Black.ttf") format("truetype");
}
.hidden {
  display: none;
}
@media print {
  .no-print,
  app-main-header,
  app-main-footer,
  app-breadcrumbs {
    display: none !important;
  }
  body {
    background: white !important;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.skeleton {
  background:
    linear-gradient(
      90deg,
      #f0f0f0 25%,
      #e3e3e3 50%,
      #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}
.magnifier {
  position: fixed;
  border: 2px solid #000000;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.magnifier-image {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #e3e3e3;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: #bdbcbc;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
::-webkit-scrollbar-button {
  display: none;
}
.container {
  max-width: 1300px;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  margin: 0 auto;
}
@media (max-width: 959px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.image-container {
  max-width: 100%;
}
.image-container img {
  margin: auto;
  width: 100%;
  height: auto;
}
.cdk-dialog-container:focus-visible {
  outline: none;
}
section.legal-static-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
section.legal-static-page h2 {
  text-decoration: underline;
}
section.legal-static-page .title {
  margin-bottom: 0.5rem;
}
section.legal-static-page .block {
  display: flex;
  flex-direction: column;
}

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