@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;600&display=swap");
:root {
  --container: 1200px;
  --font-sans: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  --font-noto: "Noto Sans TC", -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  --text-regular: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --theme-color: #FFEF00;
  --theme-yellow: #fce724;
  --theme-blue: #318fff;
  --theme-gblue: #00EED8;
  --color-base: #1D1D1E;
}

.loading-dot {
  display: inline-block;
  position: fixed;
  top: 55%;
  z-index: 99;
  width: 100px;
  height: 15px;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.loading-dot div {
  position: absolute;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-dot div:nth-child(1) {
  left: 8px;
  animation: ellipsis1 0.6s infinite;
}
.loading-dot div:nth-child(2) {
  left: 12px;
  animation: ellipsis2 0.6s infinite;
}
.loading-dot div:nth-child(3) {
  left: 42px;
  animation: ellipsis2 0.6s infinite;
}
.loading-dot div:nth-child(4) {
  left: 70px;
  animation: ellipsis3 0.6s infinite;
}

@keyframes ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
html {
  margin-top: 0 !important;
}

#wpadminbar {
  opacity: 0.15;
}

body, html {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-base);
  font-family: var(--font-noto);
  font-size: 16px;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.goto_finish {
  position: absolute;
  right: 2%;
  top: 10%;
  z-index: 999;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

img {
  width: auto;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100vh;
}

.wrap {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  max-width: 480px;
  max-height: 1200px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .wrap {
    left: 50%;
    transform: translateX(-50%);
  }
}
body.yellow .wrap {
  background-color: var(--theme-yellow);
}

body.blue .wrap {
  background-color: var(--theme-blue);
}

body.yellow .wrap,
body.blue .wrap {
  background-image: url(".././images/back-splash.png");
  background-size: 200px auto;
  background-position: -70px -5%;
  -webkit-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
body.yellow .wrap.show,
body.blue .wrap.show {
  background-position: -2% -2%;
  background-size: 100% auto;
}

.wrap.qrcode-page,
.wrap.audience-page,
.wrap.result-page {
  background-image: url(".././images/main-back.webp") !important;
  background-position: center top !important;
  background-size: cover !important;
}

.wrap.winner_is_yellow {
  background-color: var(--theme-yellow) !important;
}

.wrap.winner_is_blue {
  background-color: var(--theme-blue) !important;
}

@keyframes codeAni {
  from {
    top: 0;
  }
  to {
    top: 12.5vh;
  }
}
.qrcode-wrap {
  position: relative;
  background-image: url(".././images/qr-frame.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 90vw;
  height: 90vw;
  max-width: 311px;
  max-height: 311px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: codeAni 0.5s ease forwards;
}
.qrcode-wrap .team_now {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes handAni {
  from {
    bottom: -400px;
  }
  to {
    bottom: -190px;
  }
}
.hand-global {
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  animation: handAni 0.5s ease forwards;
}

.btn {
  background-color: var(--color-base);
  border-radius: 50px;
  color: #fff;
  padding: 11px 2.5em;
  font-size: 1.35em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 2px;
  cursor: pointer;
}

.btn:active {
  color: var(--theme-color);
}

.panel {
  position: absolute;
  display: flex;
  width: 100vw;
  max-width: 480px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  -webkit-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}

.team-lead {
  left: 0;
}
.team-lead .welcome {
  position: relative;
  top: -50px;
  opacity: 0;
  margin-bottom: 30px;
  padding-top: 17%;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.5, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.5, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.5, 0.23, 0.36, 1.16);
}
.team-lead .avatar {
  position: relative;
  top: -50px;
  opacity: 0;
  display: block;
  width: 231px;
  height: 231px;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.team-lead .avatar img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  transform: scale(0.65);
  transition-delay: 0.1s;
  max-width: 231px;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.team-lead .avatar .leader-name {
  position: relative;
  transform: scale(-0.5);
  z-index: 1;
  transition-delay: 0.65s;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.team-lead .btn-start {
  position: relative;
  bottom: -20px;
  opacity: 0;
  margin-top: 10vh;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}

.score {
  left: 100vw;
}
.score .heading {
  position: relative;
  display: block;
  height: 42px;
  width: 171px;
  margin-top: 60px;
  margin-bottom: 20px;
  text-align: center;
}
.score .heading .text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.score .heading .item {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.score .heading img {
  width: 160.5px;
  height: auto;
  position: absolute;
  left: 3px;
  top: 45px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.score .heading .item:nth-child(2) img {
  left: -42px;
  transition-delay: 0.05s;
}
.score .heading .item:nth-child(3) img {
  left: -87px;
  transition-delay: 0.1s;
}
.score .heading .item:nth-child(4) img {
  left: -126px;
  transition-delay: 0.15s;
}
.score .heading .start img {
  left: 1px;
  top: 0;
}
.score .heading .start .item:nth-child(2) img {
  left: -40px;
}
.score .heading .start .item:nth-child(3) img {
  left: -80px;
}
.score .heading .start .item:nth-child(4) img {
  left: -120px;
}
.score .heading .finish img {
  position: absolute;
  left: 0;
  top: -45px;
}
.score .heading .finish .item:nth-child(2) img {
  left: -39px;
}
.score .heading .finish .item:nth-child(3) img {
  left: -80px;
}
.score .heading .finish .item:nth-child(4) img {
  left: -121px;
}
.score .btn {
  font-size: 1em;
  margin-bottom: 15px;
  transform: translateY(-20px);
  opacity: 0;
  transition-delay: 1s;
  -webkit-transition: all 0.65s cubic-bezier(0.61, -0.26, 0.36, 1.36);
  -moz-transition: all 0.65s cubic-bezier(0.61, -0.26, 0.36, 1.36);
  -o-transition: all 0.65s cubic-bezier(0.61, -0.26, 0.36, 1.36);
  transition: all 0.65s cubic-bezier(0.61, -0.26, 0.36, 1.36);
}
.score .btn.init {
  transform: translateY(0);
  opacity: 1;
}
.score .btn-result {
  z-index: 999;
  animation: result-btn 0.8s ease forwards;
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.55s cubic-bezier(0.61, -0.26, 0.36, 1.36);
  -moz-transition: all 0.55s cubic-bezier(0.61, -0.26, 0.36, 1.36);
  -o-transition: all 0.55s cubic-bezier(0.61, -0.26, 0.36, 1.36);
  transition: all 0.55s cubic-bezier(0.61, -0.26, 0.36, 1.36);
}

@keyframes result-btn {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
}
.score-box {
  display: flex;
  justify-content: center;
  height: calc(100vh - 185px);
  max-height: 480px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.score-box .score-avatar {
  position: relative;
  width: 65px;
  height: 65px;
  overflow: hidden;
  border: 5px solid #000;
  border-radius: 50px;
  background-color: #fff;
  margin-bottom: 7px;
}
.score-box .score-avatar img {
  position: absolute;
  left: -10px;
  top: -12px;
  width: 80px;
}
.score-box .team {
  margin: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.score-box .counter-wrap {
  display: flex;
  align-items: flex-end;
  font-weight: bold;
}
.score-box .counter-wrap span {
  font-size: 0.85em;
}
.score-box .counter-wrap h3 {
  line-height: 1;
  margin: 0 auto 5px;
  font-size: 2.6em;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.score-box .counter-wrap .score-counter {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
  padding: 0 5px;
}
.score-box .counter-wrap .score-counter .counter {
  min-height: 42px;
  min-width: 72px;
}
.score-box .counter-wrap .trash-counter {
  text-align: center;
  margin: 0 5px;
  padding: 0 3px;
}
.score-box .counter-wrap .trash-counter h3 {
  font-size: 1.5em;
}
.score-box .counter-wrap .trash-counter .counter {
  min-height: 24px;
  min-width: 62px;
}
.score-box .counter-wrap .pillar {
  display: block;
  background-color: #ccc;
  border: 1px solid var(--color-base);
  border-bottom-width: 0;
  border-radius: 15px 15px 0 0;
  min-height: 15px;
  width: 45px;
  margin: auto;
  -webkit-transition: all 0.75s cubic-bezier(0.63, 0.2, 0.31, 1.31);
  -moz-transition: all 0.75s cubic-bezier(0.63, 0.2, 0.31, 1.31);
  -o-transition: all 0.75s cubic-bezier(0.63, 0.2, 0.31, 1.31);
  transition: all 0.75s cubic-bezier(0.63, 0.2, 0.31, 1.31);
}
.score-box .counter-wrap .pillar-trash {
  width: 55px;
}
.score-box .counter-wrap .pillar.white {
  background-color: #fff;
}
.score-box .counter-wrap .pillar.yellow {
  background-color: var(--theme-yellow);
}
.score-box .counter-wrap .pillar.blue {
  background-color: var(--theme-blue);
}
.score-box .number-roller {
  overflow: hidden;
  line-height: 1;
}
.score-box .digit {
  display: inline-block;
  margin: 0;
  animation: roll 0.2s ease forwards;
  transform: translateY(100px);
  animation-delay: 0.1s;
}
.score-box .hide .digit {
  transform: translateY(0);
  animation: roll-back 0.5s ease forwards;
}
.score-box .hide .digit:first-child {
  animation-delay: 0.5s;
}
.score-box .hide .digit:nth-child(2) {
  animation-delay: 0.4s;
}
.score-box .hide .digit:nth-child(3) {
  animation-delay: 0.3s;
}
.score-box .hide .digit:nth-child(4) {
  animation-delay: 0.2s;
}

.init .team-lead {
  left: -100vw;
}
.init .score {
  left: 0;
}

.audience-page .score {
  left: 0;
  bottom: -100px;
  opacity: 0;
}

.audience-page.show .score {
  bottom: 0;
  opacity: 1;
}

@keyframes roll {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes roll-back {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}
.finish-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  max-width: 480px;
  padding-top: 12%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .heading {
  margin-top: -20px;
  opacity: 0;
  -webkit-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .winning-star {
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 100%;
  pointer-events: none;
  -webkit-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .winning-star .star {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.finish-box .winning-star .star img {
  position: absolute;
  width: 320px;
  top: 50%;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition-delay: 0.5s;
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .winning-star .star.right img {
  left: unset;
  right: 0;
}
.finish-box .avatar {
  position: relative;
  z-index: 9;
  top: -50px;
  opacity: 0;
  display: block;
  width: 231px;
  height: 231px;
  transition-delay: 0.25s;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .avatar img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 231px;
}
.finish-box .avatar .leader-name {
  position: relative;
  transform: scale(-0.5);
  z-index: -1;
  transition-delay: 0.65s;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .action {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  opacity: 0;
  transition-delay: 0.15s;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.finish-box .action img {
  max-width: 270px;
}
.finish-box .action .btn-next {
  padding: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 106px;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.finish-box .action .btn-next img {
  width: 45px;
}

.input-box {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 100vh;
  width: 100vw;
  max-width: 480px;
  height: 100%;
  -webkit-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.65s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.input-box .global {
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
}
.input-box .input-panel:before {
  content: "";
  background-color: #000;
  width: 10%;
  height: 10%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s ease-in-out;
  transition-delay: 0.25s;
}
.input-box .input-panel {
  position: relative;
  width: 90%;
  height: 80vh;
  max-height: 450px;
  border-radius: 15px;
  margin-top: 15%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition-delay: 0.25s;
}
.input-box .input-panel h3 {
  z-index: 9;
  font-size: 2.5em;
  font-weight: bolder;
  margin: 2em auto;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition-delay: 0.25s;
}
.input-box .input-panel .note {
  z-index: 9;
  margin-bottom: 2em;
}
.input-box .input-panel .input-wrap {
  z-index: 9;
  position: relative;
  width: 14em;
  margin: 0 auto 25px;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--theme-gblue);
}
.input-box .input-panel .input-wrap input {
  width: 90%;
  display: block;
  margin: auto;
  background-color: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 1.2em;
}
.input-box .input-panel .input-wrap .error {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -1em;
  left: calc(50% - 3em);
  font-size: 0.95em;
  color: #EEBA00;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
}
.input-box .input-panel .input-wrap .error.alert {
  visibility: visible;
  opacity: 1;
  bottom: -2em;
}
.input-box .input-panel .btn-finish {
  display: flex;
  justify-content: center;
  z-index: 99;
  padding: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 106px;
  margin-top: 120px;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -moz-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  -o-transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition: all 0.5s cubic-bezier(0.6, 0.23, 0.36, 1.16);
  transition-delay: 0.25s;
}
.input-box .input-panel .btn-finish img {
  filter: invert(100%);
  width: 45px;
}

.wrap.result-page {
  overflow-y: auto;
  flex-direction: column;
}

.result-page .result-star {
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  width: 300px;
  height: 100%;
}
.result-page .result-star img {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
}
.result-page .info-c .result-star {
  top: -20px;
  width: 300px;
}
.result-page #capture-popup {
  bottom: 50px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.result-page #capture-popup .count_image_image {
  visibility: hidden;
}
.result-page #capture-popup img {
  visibility: hidden;
  max-width: 100%;
  width: 320px;
  height: auto;
  margin-top: -5%;
}
.result-page #capture-popup .btn-close {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 3%;
}
.result-page #capture-popup .btn-close:after, .result-page #capture-popup .btn-close:before {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background-color: #fff;
  position: absolute;
  top: 34px;
  left: 42%;
  transform: rotate(45deg) translateX(-50%);
}
.result-page #capture-popup .btn-close:after {
  transform: rotate(-45deg) translateX(-50%);
  top: 13px;
}
.result-page #capture-popup .btn-close:hover {
  border-color: var(--theme-yellow);
}
.result-page #capture-popup .btn-close:hover:after, .result-page #capture-popup .btn-close:hover:before {
  background-color: var(--theme-yellow);
}
.result-page #capture-popup.popup {
  bottom: 0;
  opacity: 1;
  height: 100%;
  visibility: visible;
}
.result-page #capture-popup.popup #capture-popup-image {
  visibility: visible;
}
.result-page #capture-popup.popup #capture-popup-image img {
  visibility: visible;
}
.result-page #capture-popup.popup.first .info_2_image_image {
  display: none;
}
.result-page #capture-popup.popup.first .count_image_image {
  display: none;
}
.result-page #capture-popup.popup.second .info_image_image {
  display: none;
}
.result-page #capture-popup.popup.second .count_image_image {
  display: none;
}
.result-page #capture-popup.popup.last .info_image_image {
  display: none;
}
.result-page #capture-popup.popup.last .info_2_image_image {
  display: none;
}
.result-page .info-box {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
}
.result-page .info-box.info-a {
  z-index: 9;
}
.result-page .result-btn {
  position: relative;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  width: 90%;
  max-width: 330px;
  display: flex;
  justify-content: center;
  margin: 10px auto 0;
  gap: 6px;
  -webkit-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -moz-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -o-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
}
.result-page .result-btn .btn {
  min-width: 120px;
  text-align: center;
  letter-spacing: 0;
  background-color: #fff;
  color: var(--color-base);
  padding: 11px 3px;
  font-size: 0.95em;
}
.result-page .result-btn .logo-btn.min {
  min-width: 34px;
}
.result-page .result-btn .logo-btn {
  background-color: #FFEF00;
}
.result-page .result-btn .logo-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-page .result-btn .logo-btn img {
  width: 16px;
}
.result-page .result-btn .logo-btn span {
  margin-left: 3px;
}
.result-page .result-btn .btn.go-first,
.result-page .result-btn .btn.go-back {
  min-width: 26px;
}
.result-page .results-wrap {
  position: relative;
  top: -50px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 280px;
  height: 510px;
  padding: 20px;
  margin: 5% auto 16px;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -moz-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -o-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
}
.result-page .result-text {
  position: relative;
  background-size: 260px;
  background-position: center top;
  background-repeat: no-repeat;
  width: 260px;
  min-height: 80px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  transition: all 0.35s ease-in;
  transition-delay: 0.2s;
}
.result-page .result-text img {
  position: absolute;
  width: 100%;
}
.result-page .result-text.panel-head {
  height: 155px;
}
.result-page .result-text.panel-head.no-name {
  height: 132px;
}
.result-page .result-star.no-name {
  bottom: 30px;
}
.result-page .result-text.panel-b {
  height: 115px;
}
.result-page .result-text.panel-b img {
  top: -155px;
}
.result-page .result-text.panel-img {
  height: 185px;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 3px;
}
.result-page .result-text.panel-img img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.result-page .result-text.info-second {
  height: 438px;
}
.result-page .result-text.count-head {
  height: 165px;
}
.result-page .result-text.count-a {
  height: 110px;
}
.result-page .result-text.count-a img {
  top: -165px;
}
.result-page .result-text.count-b {
  height: 110px;
}
.result-page .result-text.count-b img {
  top: -275px;
}
.result-page .result-text.count-b .count-num {
  width: 100%;
  margin-left: -5px;
}
.result-page .count-num {
  width: 97%;
  position: absolute;
  bottom: 0;
  left: 1.5%;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  overflow: hidden;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
}
.result-page .count-num b {
  line-height: 1;
}
.result-page .count-num .num {
  text-align: center;
  width: 33.33%;
  position: relative;
  top: -30px;
  -webkit-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -moz-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -o-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
}
.result-page .count-num .num:first-child {
  transition-delay: 0.3s;
}
.result-page .count-num .num:nth-child(2) {
  transition-delay: 0.4s;
}
.result-page .count-num .num:nth-child(3) {
  transition-delay: 0.5s;
}
.result-page .text {
  position: absolute;
  bottom: 0;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  overflow: hidden;
  line-height: 1;
}
.result-page .text b {
  line-height: 1;
  position: relative;
  -webkit-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -moz-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -o-transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition: all 0.35s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition-delay: 0.3s;
}
.result-page .user-name {
  bottom: 10px;
  left: 5px;
  font-size: 16px;
  letter-spacing: 1px;
  width: 120px;
}
.result-page .num-total, .result-page .num-single {
  bottom: 5px;
  font-size: 31px;
}
.result-page .num-single.smaller {
  right: 28px;
  width: 94px;
  font-size: 26px;
}
.result-page .num-total {
  left: 3px;
  width: 82px;
}
.result-page .num-single {
  right: 26px;
  width: 90px;
}
.result-page .text b {
  top: -35px;
}
.result-page .num-people {
  width: 31px;
  height: 1.1em;
  top: 9px;
  left: 61px;
  font-size: 17px;
  letter-spacing: 0;
  color: #00cebb;
}
.result-page .num-people b {
  top: 0 !important;
}
.result-page .daily-trash {
  width: 76px;
  height: 1.1em;
  top: 150px;
  left: 98px;
  font-size: 43px;
  letter-spacing: 0;
  color: #fff;
}
.result-page .yearly-trash {
  width: 36px;
  height: 1.1em;
  top: 235px;
  left: 35px;
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
}
.result-page .clean-days {
  width: 60px;
  height: 1.1em;
  top: 198px;
  left: 181px;
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
}
.result-page .final-global {
  width: 231px;
  position: absolute;
  bottom: -200px;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -moz-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -o-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition-delay: 0.2s;
}
.result-page .final-global img {
  width: 100%;
}
.result-page .final-trash {
  width: 170px;
  position: absolute;
  bottom: -200px;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -moz-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  -o-transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition: all 0.5s cubic-bezier(0.32, 0.66, 0.61, 1.42);
  transition-delay: 0.2s;
}
.result-page .final-trash img {
  width: 100%;
}

.show .team-lead .welcome, .show .finish-box .welcome {
  position: relative;
  top: 0;
  opacity: 1;
}
.show .team-lead .welcome img, .show .finish-box .welcome img {
  max-width: 320px;
}
.show .team-lead .heading, .show .finish-box .heading {
  opacity: 1;
  margin-top: 0;
}
.show .team-lead .heading img, .show .finish-box .heading img {
  max-width: 320px;
}
.show .team-lead .avatar, .show .finish-box .avatar {
  top: 0;
  opacity: 1;
}
.show .team-lead .avatar img, .show .finish-box .avatar img {
  transition-delay: 0.15s;
  transform: scale(1);
}
.show .team-lead .action, .show .finish-box .action {
  opacity: 1;
  margin-top: 40px;
}
.show .team-lead .winning-star .star img, .show .finish-box .winning-star .star img {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.show .team-lead .leader-name, .show .finish-box .leader-name {
  transition-delay: 0.15s;
  transform: scale(1);
}
.show .team-lead .btn-start, .show .finish-box .btn-start {
  opacity: 1;
  transition-delay: 0.1s;
  bottom: 0;
}
.show .info-a .result-text {
  opacity: 1;
}
.show .info-a .final-global {
  opacity: 1;
  bottom: -150px;
}
.show .info-a .text b {
  top: 0;
}
.show .info-a #results-info-wrap {
  top: 0;
  opacity: 1;
}
.show .info-a .result-btn {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.second.show .info-a {
  visibility: hidden;
}
.second.show .info-a .result-text {
  transition-delay: 0s;
  opacity: 0;
}
.second.show .info-a .text b {
  top: -35px;
}
.second.show .info-a .final-global {
  transition-delay: 0.1s;
  opacity: 0;
  bottom: -200px;
}
.second.show .info-a #results-info-wrap {
  transition-delay: 0.1s;
  top: -50px;
  opacity: 0;
}
.second.show .info-a .result-btn {
  visibility: hidden;
  top: 20px;
  opacity: 0;
}
.second.show .info-b {
  z-index: 19;
}
.second.show .info-b .text b {
  transition-delay: 0.6s;
  top: 0;
}
.second.show .info-b .result-text {
  transition-delay: 0.5s;
  opacity: 1;
}
.second.show .info-b #results-info-second-wrap {
  transition-delay: 0.4s;
  top: 0;
  opacity: 1;
}
.second.show .info-b .final-global {
  transition-delay: 0.5s;
  opacity: 1;
  bottom: -150px;
}
.second.show .info-b .result-btn {
  transition-delay: 0.4s;
  top: 0;
  opacity: 1;
  visibility: visible;
}
.last.show .info-a {
  visibility: hidden;
}
.last.show .info-a .result-text {
  transition-delay: 0s;
  opacity: 0;
}
.last.show .info-a .text b {
  top: -35px;
}
.last.show .info-a .final-global {
  transition-delay: 0.1s;
  opacity: 0;
  bottom: -200px;
}
.last.show .info-a #results-info-wrap {
  transition-delay: 0.1s;
  top: -50px;
  opacity: 0;
}
.last.show .info-a .result-btn {
  top: 20px;
  opacity: 0;
  visibility: hidden;
}
.last.show .info-c .final-trash {
  transition-delay: 0.6s;
  opacity: 1;
  bottom: -7px;
}
.last.show .info-c .result-text {
  transition-delay: 0.5s;
  opacity: 1;
}
.last.show .info-c #results-count-wrap {
  transition-delay: 0.4s;
  top: 0;
  opacity: 1;
}
.last.show .info-c .count-num .num {
  top: 0;
}
.last.show .info-c .count-num .num:first-child {
  transition-delay: 0.5s;
}
.last.show .info-c .count-num .num:nth-child(2) {
  transition-delay: 0.6s;
}
.last.show .info-c .count-num .num:nth-child(3) {
  transition-delay: 0.7s;
}
.last.show .info-c .count-num .num:nth-child(4) {
  transition-delay: 0.8s;
}
.last.show .info-c .result-btn {
  transition-delay: 0.4s;
  top: 0;
  opacity: 1;
  visibility: visible;
}

.wrap.input {
  background-image: url(".././images/main-back.webp") !important;
  background-position: center top !important;
  background-size: cover !important;
}
.wrap.input .winning-star {
  top: -50%;
}
.wrap.input .finish-box {
  top: -100vh;
}
.wrap.input .input-box {
  top: 0;
}
.wrap.input .input-box .global {
  animation: handAni 0.25s ease forwards;
  animation-delay: 0.5s;
}
.wrap.input .input-box .input-panel:before {
  width: 120%;
  height: 120%;
  opacity: 1;
}
.wrap.input .input-box .input-panel {
  max-height: 360px;
  opacity: 1;
}
.wrap.input .input-box .input-panel .btn-finish {
  margin-top: 22px;
}
.wrap.input .input-box .input-panel h3 {
  margin: 1em auto 0;
}

.reading .loading-dot {
  top: 45%;
  opacity: 0.8;
}
.reading .btn, .reading .btn.btn-reload {
  opacity: 0.5;
}

/*# sourceMappingURL=styles.css.map */
