@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Oswald:wght@200..700&display=swap');

:root {
    --corn-flower-blue: #77B5FF;
    --corn-flower-blue-rgb: 119, 181, 255;
    --sky-magenta: #FF92BE;
    --sky-magenta-rgb: 255, 146, 190;
    --chinese-blue: hsl(224, 51%, 37%);
    --chinese-blue-rgb:46, 72, 141;
    --steel-blue: #3479B1;
    --steel-blue-rgb: 52, 121, 177;
    --steel-blue: #3479B1;
    --steel-blue-rgb: 52, 121, 177;
    --picton-blue: #3BBCE2;
    --picton-blue-rgb: 59, 188, 226;
    --electric-pink: #FF1F80;
    --electric-pink-rgb: 255, 31, 128;
    --light-gold: #E7CD78;
    --yellow: #FFBF4C;
    --beige: #d2c4aa;
    --green: #768B62;
    --orange:#d57144;

    --bs-white:#ffffff;
    --bs-white-rgb:255,255,255;    
    --bs-black:#333333;
    --bs-black-rgb:51, 51, 51;

    --bs-light:var(--bs-white);
    --bs-light-rgb:var(--bs-white-rgb);
    --bs-dark:var(--bs-black);
    --bs-dark-rgb:var(--bs-black-rgb);

    --header-font: "Oswald", sans-serif;
    --body-font: "Noto Sans TC", sans-serif;

}

header img {
  filter: invert(1);
}

html, body {
  height: 100%;
  margin:0;
  padding:0;
  font-size:16px;
  font-family: var(--body-font);
}
body {
  background: url(../img/scavenger-hunt-bg-p.webp) no-repeat center center / cover;
  background-attachment: fixed;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  bottom:0;
  right:0; 
  width: 100dvw;
  height: 100dvh;
  object-fit: cover;
  object-position: center;
}
.video-overlay {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  /** BACKGROUND OVERLAY FOR VIDEO BACKGROUND **/
  background: rgba(0,0,0,0.65);
  mix-blend-mode: multiply;
  border-radius: 4vw;
}

.wrapper {
  position: relative;
  padding:4dvw 2dvw;
  min-height: 100dvh;
  box-sizing: border-box;

  /*
    background-image: linear-gradient(to right, var(--sky-magenta),var(--steel-blue),var(--picton-blue),var(--corn-flower-blue),var(--sky-magenta));
    background-size: 600%;
    background-position: 0 0;
  */

  display: flex;
  justify-content: space-between;
  flex-direction: column;
  /* Animation */
  /*
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-name: gradients;
  */
}
/*
.wrapper.mobile-only {
  justify-content: center;
}
*/
@keyframes gradients {
    0%   {background-position: 0 0;}
    25% {background-position: 50% 0;}
    50% {background-position: 90% 0;}
    60% {background-position: 60%;}
    75% {background-position: 40%;}
    100%  {background-position: 0 0;}
}

.glow-globe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color:var(--bs-dark);
  position: relative;
  width: 60vw;
  height:60vw;
  border-radius: 50%;
}
.glow-globe-wrapper img {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.glow-globe {
  width: 60vw;
  height:60vw;
  border-radius: 50%;
  box-shadow: inset 0 0 10vw rgba(var(--bs-dark-rgb),0.8), 
  inset 5vw 0 14vw rgba(var(--sky-magenta-rgb),0.8), 
  inset -5vw 0 14vw rgba(var(--picton-blue-rgb),0.8),
  
  inset 5vw 0 44vw rgba(var(--sky-magenta-rgb),0.8), 
  inset -5vw 0 44vw rgba(var(--picton-blue-rgb),0.8),

  0 0 10vw rgba(var(--bs-dark-rgb),0.8),
  -5vw 0 14vw rgba(var(--sky-magenta-rgb),0.8), 
  5vw 0 14vw rgba(var(--picton-blue-rgb),0.8);
  animation: load 3s infinite;
  position: absolute;
  top:0;
  left:0;
}

@keyframes load {
  0% {
    transform: rotate(0);
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(100deg);
  }
  100% {
    transform: rotate(360deg);
  }
  
}

@keyframes load-zoom {
  0% {
    transform: scale(1) rotate(0);
    filter: hue-rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    filter: hue-rotate(100deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
  
}
.loader {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(var(--bs-black-rgb), 1);
  z-index: 999;
}
.loader .loader-logo {
  position: fixed;
  bottom: 20dvw;
  width: 60dvw;
  height: auto;
  z-index: 1009;
  left:50%;
  transform: translateX(-50%);
}
.loader .loader-text {
  position: fixed;
  top: 5rem;
  font-family: var(--header-font);
  color: var(--bs-dark) !important;
  font-size: 15dvw;
  font-weight: 600;
  z-index: 4;
  animation: breath 2s ease-in-out infinite;
  z-index: 1009;
  left:0;
  width: 100%;
  text-align: center;
}

.loader.loading {
  display: flex;
}
.loader.loading .glow-globe-wrapper {
  width: 42vw;
  height: 46vw;
}
.loader.loading .glow-globe-wrapper .glow-globe {
  width: 42vw;
  height: 46vw;
}
.loader.loading .glow-globe-wrapper .txt {
  font-family: var(--header-font);
  color: var(--bs-white) !important;
  font-size: 6vw;
  font-weight: 600;
  animation: breath 2s ease-in-out;
  z-index: 4;
  position: relative;
}
.loader.loading .glow-globe-wrapper .txt span {
  display: inline-block;
  margin: 0 -.05em;
}
.loader.loading .glow-globe-wrapper .txt span {
  animation: blur-txt 1.2s infinite alternate;
}
.loader.loading .glow-globe-wrapper .txt span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader.loading .glow-globe-wrapper .txt span:nth-child(3) {
  animation-delay: 0.4s;
}
.loader.loading .glow-globe-wrapper .txt span:nth-child(4) {
  animation-delay: 0.6s;
}
.loader.loading .glow-globe-wrapper .txt span:nth-child(5) {
  animation-delay: 0.8s;
}
.loader.loading .glow-globe-wrapper .txt span:nth-child(6) {
  animation-delay: 1s;
}
.loader.loading .glow-globe-wrapper .txt span:nth-child(7) {
  animation-delay: 1.2s;
}

@keyframes blur-txt {
  0% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(5px);
    opacity: .2;
  }
}

@keyframes breath {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.wrapper.camera {
  padding: 0;
  background: none !important;
}
.wrapper.camera header,
.wrapper.camera footer {
  padding-top:3rem;
  padding-bottom:3rem;
  background: var(--bs-light);
  color: var(--bs-dark);
  font-family: var(--header-font);
  z-index: 3;
}
.wrapper.camera footer {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 15dvw;
  display: flex;
  align-items: center;
}
#orientation-alert {
  position: fixed;
  left: 0;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#orientation-alert h1 {
  font-size: 2rem;
}
#orientation-alert img {
  filter: brightness(0);
  max-width: 30dvh;
}
/************************************************
* HEADER
*************************************************/
header {
  min-height: 5dvw;
}
.header-logo {
  height: 50px;
  width: auto;
}
.logo-cyberport {
  height: 30px;
}


h1 {
  font-size: 2.4em;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--header-font);
}
/************************************************
* FOOTER
*************************************************/
.footer-list {
  display: flex;
  gap: 4vw;
  list-style: none;
  color: var(--bs-dark);
  font-family: var(--header-font);
  align-items: center;
  justify-content: space-around;
  margin: 0 0 6vw;
  padding: 0;
}

footer.user-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 2rem;
  padding-top: 1rem;
  backdrop-filter: blur(4px) saturate(50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px 30px 0 0;
}
footer.user-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:center;
  gap: 6dvw;
}
footer.user-nav ul li {
  /* background: rgba(var(--bs-light-rgb), 0.8); */
  display: inline-flex;
  align-items: center; 
  justify-content: flex-start;
  font-size:0.6rem;
  flex-direction:column;
  flex-wrap: wrap;
  max-width: 18dvw;
  flex:0;
  font-family: var(--header-font);
  text-transform: uppercase;
  color: rgba(var(--bs-dark-rgb),1);
}
footer.user-nav ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 10dvw;
  height: 10dvw;
  margin-bottom:0.2rem;
}
footer.user-nav ul li:nth-child(1) {
      transform: scale(1.8);
    margin-top: -1.8rem;
    margin-right: 1rem;
    white-space: nowrap;
}
footer.user-nav ul li img,
footer.user-nav ul li svg {
  width: 10dvw;
  height: 10dvw;
}

.header-nav {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap:0.5rem;
  z-index: 109;
}
.header-nav-icn {
  width: 16dvw;
  height: auto;
}

.ranking-chart {
  width: 100%;
  position: relative;
  padding: 0;
}
.ranking-grade {
    font-family: var(--header-font);
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--orange);
    position: absolute;
    width: auto;
    bottom: 22%;
    left: 38%;
    margin: 0;
    text-shadow: -0.2rem 0rem 0rem rgba(0, 0, 0, 0.5);
    transform: skew(0deg, -3.4deg);
}
.ranking-chart-profile-pix {
  width: 28dvw;
  height: 28dvw;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0px 4px 22px rgba(0,0,0,0.25);
  margin-bottom: 0;
}
.ranking-chart-profile-pix img {
  width: 100%;
}
.ranking-chart-list {
  position:absolute;
}
.ranking-chart-list.chart-1 {
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ranking-chart-list.chart-2 {
  top: 40%;
  left: 8%;
}
.ranking-chart-list.chart-2 .ranking-chart-profile-pix {
  width: 22dvw;
  height: 22dvw;
}
.ranking-chart-list.chart-3 {
  top: 42%;
  left: 72%;
}
.ranking-chart-list.chart-3 .ranking-chart-profile-pix {
  width: 18dvw;
  height: 18dvw;
}
.ranking-chart-name {
  font-family: var(--header-font);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--bs-dark);
  margin-bottom: 0.2rem;
  text-transform: capitalize;
}
.ranking-chart-time {
  font-family: var(--header-font);
  font-size: 0.8rem;
  text-align: center;
  color: var(--bs-dark);
  background:rgba(255, 255, 255, 0.8);
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
}
.game-rules {
  font-size: 0.8rem;
}
.game-rules ol {
  padding-left: 1rem;
}
.game-rules ol li {
  margin-bottom: 0.6rem;
}
.game-rules ol p {
  margin-bottom: 0.3rem;
}
.game-rules ol ul {
  padding-left: 0.8rem;
}
.the-map {
  transform: rotate3d(1, -2, 1, 8deg);
  border:4px solid var(--bs-white);
  box-shadow: 0.5rem 0.5rem 1rem rgba(var(--bs-black-rgb), 0.45);
}
#map-wrapper {
  padding-bottom: 3rem;
}
.achievement-box {
    position: absolute;
    width: 100%;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 20%;
}
.achievement-box img {
    width: 100%;
    height: auto;
}
.achievement-box.treasure-Coins {
      top: 13%;
    left: 13%;
}
.achievement-box.treasure-Diamond {
      top: 31%;
    left: 42%;
}
.achievement-box.treasure-Book {
  top: 46%;
  left: 8%;
  width: 24%;
}
.achievement-box.treasure-Key {
  top: 67%;
  left: 53%;
  width: 26%;
}
.achievement-box.treasure-Pendent {
    top: 81%;
    left: 2%;
    width: 30%;
}
.achievement-box span {
    position: absolute;
    top: 46%;
    left: 51%;
    transform: translateX(-50%);
    font-family: var(--header-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    width: 30%;
    text-align: center;
    line-height: 1;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.achievement-box-value {
    font-size: 0.8rem;
    color: var(--bs-white);
    background: var(--orange);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-family: var(--header-font);
    font-weight: 600;
}
/************************************************
* MY ACCOUNT
*************************************************/

.digital-pass {
  position: relative;
  width: 100%;
  margin-top: 24dvw;
}
#create-avator {
  position: absolute;
  bottom: 6%;
  right: 14dvw;
  display: flex;
  width: 12dvw;
  height: 12dvw;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 2dvw;
  z-index: 888;
  background: rgba(var(--bs-light-rgb), 0.8);
  border-radius: 100%;
  border: 1px solid var(--bs-dark);
  backdrop-filter: blur(4px);
}
#create-avator svg {
  width: 100%;
  height: auto;
}
.swiper {
  width: 100%;
}
.wrapper.ranking {
  background-color: var(--chinese-blue);
}
.wrapper.my-account .swiper-wrapper {
  padding-top: 20px;
  padding-bottom: 50px;
}
.wrapper.my-account .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 60dvw !important;
  height: 72dvw !important;
}
.wrapper.my-account .swiper-slide img {
    width: 100%;
    aspect-ratio:7/8;
    object-fit:cover;
    object-position:center;
    border-radius: .5rem;
    box-shadow: .5rem .5rem .5rem rgba(var(--bs-black-rgb), 0.45);
}
.wrapper.my-account .swiper-slide .save-icon {
  position: absolute;
  right: 1rem;
  top: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrapper.my-account .swiper-slide .save-icon svg {
  fill: var(--green);
}
.wrapper.my-account .swiper-slide .save-icon span {
  font-size: 0.5rem; 
  font-family: var(--header-font);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.wrapper.my-account .swiper-slide .save-icon .bi-bookmark-check-fill {
  display: none;
}
.wrapper.my-account .swiper-slide.swiper-slide-saved .save-icon .bi-bookmark,
.wrapper.my-account .swiper-slide.swiper-slide-saved .save-icon span  {
  display: none;
}
.wrapper.my-account .swiper-slide.swiper-slide-saved .save-icon .bi-bookmark-check-fill {
  display: block;
}

.wrapper.my-account .swiper-slide .save-icon svg {
  width: 24px;
  height: auto;
}
.wrapper.my-account .swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}
.wrapper.my-account .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.wrapper.my-account .swiper-pagination-bullet-active {
  background: var(--yellow) !important;
}
.wrapper.my-account .swiper-horizontal>.swiper-pagination-bullets, 
.wrapper.my-account .swiper-pagination-bullets.swiper-pagination-horizontal, 
.wrapper.my-account .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 1.6rem;
}
.wrapper.my-account {
  padding:0;
  justify-content:flex-start;
}
.my-account header {
  padding-left:2rem;
  padding-right: 2rem;
}
.my-account-logo {
  position: absolute;
  top: 0;
  left:0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.8dvw 0 0;
  z-index: 99;
}
.profile-name {
  position: absolute;
  bottom: 4rem;
  right: 20dvw;
  z-index: 4;
}
#username {
  font-family: var(--header-font);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.1rem;
  color: var(--orange);
}
#grade {
  font-family: var(--body-font);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--green);
}
#user-point {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
  align-items: center;
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 0.8rem;
}
#user-point svg {
  width: auto;
  height: 1.4rem;
  fill:var(--light-gold);
}

.offcanvas {
  background: rgba(var(--bs-light-rgb), 0.9);
  backdrop-filter: blur(4px);
}
.userMenuList {
  margin: 1rem 0 1rem 0;
  padding: 0;
  list-style: none;
}
.userMenuList li {
  padding: 0.5rem 1rem;
  font-size: 6vw;
  font-family: var(--header-font);
}
.userMenuList li a {
  text-decoration: none;
}
.languageMenu {
  display: flex;
  flex-direction: row;
  gap:2rem;
  margin:0;
  padding: 0 0 2rem 0;
  list-style: none;
}
.languageMenu li a {
  text-decoration: none;
  font-family: var(--header-font);
  font-size: 4dvw;
}


/************************************************
* REDEMPTION HISTORY TABLE
*************************************************/
#history-wrapper {
  color: var(--bs-dark);
}
#history-wrapper table th {
  border-bottom: 1px solid rgba(var(--bs-dark-rgb),0.7);
}
#history-wrapper table th,
#history-wrapper table td {
  color: var(--bs-dark);
  font-size: 0.8rem;
  padding-bottom: 0.3rem;
  vertical-align: top;
}

#history-wrapper .v-scroll {
  height: 50vh;
  overflow-y: scroll;
}
.history-tbl {
  width: 100%;
}
.history-tbl th {
  height: 2rem;
}
.history-tbl .date {
  font-size: 0.6rem;
}
.history-tbl th:nth-child(1),
.history-tbl td:nth-child(1) {
  width: 50%;
  font-family: var(--header-font);
  text-transform: capitalize;
}
.history-tbl th:nth-child(2),
.history-tbl td:nth-child(2) {
  width: 15%;
  text-align: center;
}
.history-tbl th:nth-child(3),
.history-tbl td:nth-child(3) {
  width: 35%;
  text-align: center;
}
.history-tbl td img {
  width: 10dvw;
  height: auto;
  border-radius: 100%;
}
.checked-count {
  font-family: var(--header-font);
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--orange);
  color:var(--bs-white);
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  padding:0.1rem;
  border-radius: 100%;
}
.history-time {
  padding: 0.2rem 0.8rem;
  background:var(--chinese-blue);
  color: var(--bs-white);
  border-radius: 2rem;
  min-width: 5rem;
  font-family: var(--header-font);
}

/************************************************
* REWARDS PRIZE LIST
*************************************************/
.prize-img img {
  box-shadow: 2dvw 2dvw 2dvw rgba(var(--bs-black-rgb), 0.8);
}
.prize-desc {
  padding: 2dvw;
}
.prize-desc .name {
  font-family: var(--header-font);
  font-size:3dvw;
  font-weight: 700;
}
.prize-desc .point {
  font-size:3dvw;
  font-family: var(--header-font);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap:0.3rem;
}
.prize-desc .point svg {
  width: 4dvw;
  height: 4dvw;
}
.prize-desc .point span {
  color:var(--sky-magenta);
  font-size:3.5dvw;
  font-weight: 700;
}

/************************************************
* BUTTON
*************************************************/
.btn-app-back {
  color: var(--bs-dark);
  text-decoration: none;
  font-family: var(--header-font);
  font-size: 4vw;
  white-space: nowrap;
}
.the-button-light {
  position: relative;
  font-family: var(--body-font);
  font-size: 3dvw;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.10em;
  color: #000;
  background: rgba(255,255,255,0.6);
  padding: 2dvw 4dvw;
  min-width: 40dvw;
  height: 10dvw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6dvw;
  }
  
  
/************************************************
* FORM
*************************************************/
.text-field-wrapper {
  position: relative;
}

.text-field-wrapper input {
  width: 100%;
  padding: 2vw 1vw;
  font-size: 6vw;
  color: var(--bs-dark);
  margin-bottom: 30px;
  font-family: var(--header-font);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--bs-dark);
  outline: none;
  background: transparent;
}
.text-field-wrapper label {
  position: absolute;
  top:0;
  left: 0;
  padding: 6vw 0;
  font-size: 4vw;
  color: var(--bs-dark);
  font-family: var(--header-font);
  pointer-events: none;
  transition: .5s;
}
.text-field-wrapper input:focus ~ label,
.text-field-wrapper input:valid ~ label {
  top: -10vw;
  left: 0;
  color: var(--bs-dark);
  font-size: 3vw;
}
.text-field-wrapper label.error {
  top:unset !important;
  bottom: -5vw;
  color: var(--electric-pink) !important;

}

.verify-code-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
}
.ver-code {
  border: 1px solid var(--bs-dark);
  font-family: var(--header-font);
  height: 18vw;
  font-size: 8vw;
  text-align: center;
  padding: 0;
  margin: 0;
}


/************************************************
* MODAL
*************************************************/


.forgot_link {
  font-family: var(--header-font);
  text-decoration: none;
  color: var(--bs-dark);
}

.modal-header {
  padding: 0;
}
.modal-header .btn-close {
  background: rgba(var(--bs-white-rgb),1);
  color: var(--bs-dark);
  border-radius: 0;
  margin:0 0 0 auto;
}
.modal-body {
  background-color: #FFDEE9;
  background-image: linear-gradient(16deg, #FFDEE9 0%, #B5FFFC 100%);

  color: var(--bs-dark);
  font-family: var(--header-font);
  text-align: center;
  font-size: 6vw;
  box-shadow: 2vw 2vw 2vw rgba(--bs-black-rgb, 0.8);
  padding-top:3rem;
  padding-bottom: 3rem;
}

.dashboard-icn {
  width: 12dvw;
  height: auto;
  border-radius: 100%;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.65);
}
.dashboard-icn.lg-icn {
  width: 18dvw;
}


.progress-chart {
  margin-top:10rem;
  padding-bottom: 4rem;
}

/************************************************
* RESET
*************************************************/
input:-internal-autofill-selected {
    background: transparent;
}

.mw-unset {
  min-width: unset;
}

.solid-bg {
  background-color: rgba(var(--bs-white-rgb),0.8);
}
.text-small {
  font-size: 0.8rem !important;
}

.w-15 {
  width: 15dvw !important;
} 
.h-15 {
  height: 15dvw !important;
} 
.h-30 {
  height: 30dvw !important;
} 
.mw-180px {
  max-width: 180px !important;
}
.fill-current {
  fill: currentColor;
} 
.rounded-10 {
  border-radius: 10px !important;
}
.rounded-20 {
  border-radius: 20px !important;
}
.rounded-30 {
  border-radius: 30px !important;
}
.bg-corn-flower-blue {
  background-color: var(--corn-flower-blue) !important;
}
.bg-sky-magenta {
  background-color: var(--sky-magenta) !important;
}
.bg-yellow {
  background-color: var(--yellow) !important;
}
.bg-green {
  background-color: var(--green) !important;
}
.bg-beige {
  background-color: var(--beige) !important;
}
.bg-orange {
  background-color: var(--orange) !important;
}
.text-orange {
  color: var(--orange) !important;
}
.text-green {
  color: var(--green) !important;
}
.bg-transparent-white-blur {
  background-color: rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(4px);
}

.fluffy-bg {
  background: url(../img/fluffy-bg.webp) no-repeat center center / cover !important;
}

.app__infodialog, .app__dialog {
  max-height: 500px !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
.app__dialog .app__dialog-content {
  font-family: var(--header-font) !important;
}
.app__dialog .app__dialog-content img {
  margin-bottom: 0.8rem;
}