/* src/styles.scss */
@font-face {
  font-family: Roboto;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Thin.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 100;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-ThinItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Light.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-LightItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-Italic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-MediumItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-BoldItalic.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Roboto-Black.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  src: url(/fonts/Roboto-BlackItalic.ttf) format("truetype");
}
html,
body {
  height: 100%;
}
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-app-region: no-drag;
}
body {
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::-webkit-scrollbar {
  display: none;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  text-align: inherit;
  cursor: pointer;
}
button:focus,
button:active,
button:hover {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
body.ambient-light-animation:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1000;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      var(--ambient-light-animation-color, red) 0%,
      rgba(255, 0, 0, 0) 100%);
  animation: ambient-light-animation 0.4s ease-out;
  will-change: height;
}
@keyframes ambient-light-animation {
  0% {
    height: 20%;
  }
  100% {
    height: 0;
  }
}

/* projects/oongalee.lumen/src/styles.scss */
@font-face {
  font-family: Montserrat;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-Thin.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-ExtraLight.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-Light.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-ExtraBold.ttf) format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url(/fonts/Montserrat-Black.ttf) format("truetype");
}
:root {
  --base-background-color: #000000;
  --base-foreground-color: #FFFFFF;
  --base-border-radius: 20px;
  --primary-background-color: #5838DA;
  --primary-foreground-color: #FFFFFF;
  --secondary-background-color: #FFE500;
  --secondary-foreground-color: #000000;
  --button-primary-normal-background-color: var(--primary-background-color);
  --button-primary-normal-foreground-color: var(--primary-foreground-color);
  --button-primary-normal-border-color: var(--primary-background-color);
  --button-primary-active-background-color: var(--base-background-color);
  --button-primary-active-foreground-color: var(--base-foreground-color);
  --button-primary-active-border-color: var(--primary-background-color);
  --button-secondary-normal-background-color: var(--secondary-background-color);
  --button-secondary-normal-foreground-color: var(--secondary-foreground-color);
  --button-secondary-normal-border-color: var(--secondary-background-color);
  --button-secondary-active-background-color: var(--base-background-color);
  --button-secondary-active-foreground-color: var(--base-foreground-color);
  --button-secondary-active-border-color: var(--secondary-background-color);
  --card-background-color: #15122f;
  --card-foreground-color: #FFFFFF;
  --card-border-radius: var(--base-border-radius);
  --card-border-color: var(--base-foreground-color);
  --tab-bar-background-color: var(--primary-background-color);
  --tab-bar-button-normal-background-color: #6759E7;
  --tab-bar-button-normal-foreground-color: var(--base-foreground-color);
  --tab-bar-button-normal-border-color: var(--tab-bar-button-normal-background-color);
  --tab-bar-button-active-background-color: var(--primary-background-color);
  --tab-bar-button-active-foreground-color: var(--secondary-background-color);
  --tab-bar-button-active-border-color: var(--secondary-background-color);
  --tab-bar-height: 171px;
  --tab-bar-show-duration: 0.5s;
  --tab-bar-show-delay: 0s;
  --tab-bar-show-timingfunction: cubic-bezier(0.57, 0.23, 0.08, 0.96);
  --tab-bar-hide-duration: var(--tab-bar-show-duration);
  --tab-bar-hide-timingfunction: var(--tab-bar-show-timingfunction);
  --tab-bar-hide-delay: 1s;
  --page-width: 100vw;
  --page-height: calc(100vh - var(--tab-bar-height));
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 0px;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-vertical-gap: 16px;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-inactive-opacity: 1;
}
* {
  box-sizing: border-box;
}
html {
  overflow: hidden;
}
body {
  font-family: "Montserrat", sans-serif;
}
.page {
  display: block;
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  max-height: var(--page-height);
}
swiper-container[direction=horizontal]::part(pagination),
swiper-container[direction=vertical]::part(pagination) {
  display: flex;
  flex-direction: column;
  background-color: rgba(25, 25, 25, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 8px;
  top: auto;
  bottom: 50%;
  transform: translateY(50%);
  box-sizing: border-box;
  z-index: 10;
  gap: var(--swiper-pagination-bullet-vertical-gap);
}
swiper-container[direction=horizontal]::part(pagination) {
  flex-direction: row;
  border-radius: 8px 8px 0 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: fit-content;
}
html[dir=rtl] {
  --swiper-pagination-left: 0px;
  --swiper-pagination-right: auto;
}
html[dir=rtl] swiper-container[direction=vertical]::part(pagination) {
  border-radius: 0 8px 8px 0;
}
swiper-container::part(bullet) {
  margin: 0;
  box-sizing: border-box;
  background-color: white;
  opacity: 0.87;
  transition: background-color 0.3s ease-in-out;
}
swiper-container::part(bullet-active) {
  margin: 0;
  box-sizing: border-box;
  background-color: var(--secondary-background-color);
  opacity: 0.87;
  transition: background-color 0.3s ease-in-out;
}
@keyframes button-icon-zooming {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

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