/* src/styles.scss */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  max-inline-size: 100%;
  max-block-size: 100%;
}
.text-medium {
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
}
.text-body-1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}
.text-microcopy {
  font-size: 14px;
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-space-evenly {
  justify-content: space-evenly;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-flex-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.primary-btn {
  display: flex;
  width: 200px;
  height: 40px;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: -45px auto 0;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  border: 2px solid var(--color-accent-1, #2f44fe);
  background: var(--color-accent-1, #2f44fe);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--color-base-4, #00061a);
  font-family:
    "Open Sans",
    system-ui,
    sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 150ms ease, box-shadow 150ms ease;
  flex-shrink: 0;
}
.primary-btn--enabled {
  opacity: 1;
  box-shadow: 0 0 32px rgba(var(--color-accent-1, #2f44fe), 0.4);
}
.primary-btn:disabled {
  cursor: default;
}
.transparent-btn {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.wide-btn {
  width: 280px;
  margin: 0 auto;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #0a1324;
}
button {
  text-align: center;
}
#global-loader {
  background: #0a1324;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
}
#global-loader.default-loader .splash-logo {
  display: flex;
}
.splash-logo,
.global-custom-logo {
  display: none;
  position: absolute;
  bottom: 20%;
  left: 50%;
  flex-flow: column;
  width: 100%;
  transform: translateX(-50%);
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-family:
    "Open Sans",
    system-ui,
    sans-serif;
  color: var(--loader-text-color);
}
.splash-logo svg path + path,
.global-custom-logo svg path + path {
  fill: var(--loader-text-color);
}
.global-custom-logo {
  display: block;
  max-width: 150px;
}
.global-loader {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: var(--loader-color) rgba(0, 0, 0, 0);
  animation: loader 1s infinite;
}
@keyframes loader {
  to {
    transform: rotate(0.5turn);
  }
}
.error-banner {
  margin: 16px;
  padding: 16px;
  background: rgba(255, 102, 102, 0.15);
  border: 1px solid rgba(255, 102, 102, 0.5);
  border-radius: 8px;
  color: #ff6666;
  font-family:
    "Open Sans",
    system-ui,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

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