/* @font-face for local fonts */
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Regular.ttf") format("truetype"), url("../fonts/Barlow-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Medium.ttf") format("truetype"), url("../fonts/Barlow-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-SemiBold.ttf") format("truetype"), url("../fonts/Barlow-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Bold.ttf") format("truetype"), url("../fonts/Barlow-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../fonts/NotoSansTC-Regular.ttf") format("truetype"), url("../fonts/NotoSansTC-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../fonts/NotoSansTC-Medium.ttf") format("truetype"), url("../fonts/NotoSansTC-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../fonts/NotoSansTC-Bold.ttf") format("truetype"), url("../fonts/NotoSansTC-Bold.woff") format("woff");
  font-weight: 700;
}
/* remarks */
.primary-color {
  color: #EF9528;
}

.secondary-color {
  color: #CF6B0D;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}

body:not(.home) #main {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  color: #333;
  line-height: 1.5;
  text-wrap: pretty;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  line-height: 1.5;
  text-wrap: pretty;
}

button {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
}

header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 73px;
  z-index: 999;
  box-shadow: 0 1px 5px rgba(153, 153, 153, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: all 0.3s ease;
}
header img {
  height: 50px;
}
header .langBtn {
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 18px;
  color: #0b0b0b;
  font-weight: 400;
  text-decoration: none;
}
header .langBtn:hover {
  font-weight: 500;
}

nav {
  background-color: #0b0b0b;
  padding: 0;
  width: 100%;
  text-align: center;
  position: fixed;
  top: 73px;
  left: 0;
  height: 55px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
nav a {
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
  padding: 8px 24px;
  font-size: 16px;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
}
nav a.active {
  background-color: white;
  color: #0b0b0b;
  border-radius: 36px;
}

.page-wrapper {
  position: relative;
  width: 100%;
  top: 0;
  padding: 128px 0 0 0;
  background-image: url("../img/home-bg.jpg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.page-wrapper section {
  padding: 60px 0;
  min-height: calc(100vh - 73px - 55px);
  min-height: calc(100dvh - 73px - 55px);
}
.page-wrapper section .title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-wrapper section .title h3 {
  text-align: center;
  color: #F1F1F1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  font-weight: 600;
}
.page-wrapper section .title p {
  text-align: center;
  margin: 0 auto;
  max-width: 860px;
  color: #F1F1F1;
  font-size: 18px;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
}
.page-wrapper section .title h5 {
  text-align: center;
  color: #F1F1F1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  font-weight: 600;
}
.page-wrapper section.kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 73px - 55px);
  height: calc(100dvh - 73px - 55px);
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-wrapper section.kv .video-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 73px - 55px);
  height: calc(100dvh - 73px - 55px);
}
.page-wrapper section.kv .video-wrapper video {
  width: 100%;
  height: calc(100vh - 73px - 55px);
  height: calc(100dvh - 73px - 55px);
  -o-object-fit: cover;
     object-fit: cover;
}
.page-wrapper section.kv .shape-crop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-wrapper section.kv .shape-crop img {
  width: 100%;
  height: 100%;
}
.page-wrapper section.kv .logo {
  position: absolute;
  left: 4%;
  top: 6%;
}
.page-wrapper section.kv .logo img {
  width: auto;
  height: 110px;
  transition: all 0.3s ease;
}
.page-wrapper section.kv .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 24px 32px 24px;
  background: radial-gradient(79.74% 100% at 50% 0%, rgba(0, 0, 0, 0.01) 49.92%, rgba(0, 0, 0, 0.7) 100%);
}
.page-wrapper section.kv .content h6 {
  color: white;
  text-align: center;
  text-shadow: 0 0 20px #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
}
.page-wrapper section.kv .content h1 {
  color: white;
  text-align: center;
  text-shadow: 0 0 40px #000;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 12px 0;
}
.page-wrapper section.kv .content h1 br {
  display: none;
}
.page-wrapper section.kv .content h1 span {
  white-space: nowrap;
}
.page-wrapper section.kv .content .scrolldown {
  position: relative;
  margin: 0 auto;
  width: 16px;
}
.page-wrapper section.kv .content .scrolldown span {
  display: block;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: animate 2s infinite;
}
.page-wrapper section.kv .content .scrolldown span:nth-child(2) {
  animation-delay: -0.2s;
}
.page-wrapper section.kv .content .scrolldown span:nth-child(3) {
  animation-delay: -0.4s;
}
.page-wrapper section.introduction {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}
.page-wrapper section.introduction .card {
  width: 100%;
  max-width: 800px;
  margin: 24px auto 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}
.page-wrapper section.introduction .card img {
  width: 100%;
  height: auto;
}
.page-wrapper section.introduction .card .content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-wrapper section.introduction .card .content h6 {
  text-align: center;
  color: #EF9528;
}
.page-wrapper section.introduction .card .content p {
  color: #F1F1F1;
  text-align: center;
  margin: 0 0 16px 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
}
.page-wrapper section.introduction .card .content ul {
  margin: 8px 0 0 0;
  padding: 0 0 0 15px;
}
.page-wrapper section.introduction .card .content ul li {
  font-size: 16px;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  color: #F1F1F1;
  margin: 0 0 12px 0;
}
.page-wrapper section.introduction .card .content ul li:last-child {
  margin: 0;
}
.page-wrapper section.introduction .card .content a {
  display: inline-flex;
  margin: 32px 0 0 0;
  align-self: center;
  color: #0b0b0b;
}
.page-wrapper section.introduction .card .content p.done {
  font-size: 24px;
  font-weight: 500;
  margin: 32px 0 0 0;
}
.page-wrapper section.introduction small {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 24px auto 0 auto;
  color: #BDBDBD;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
}
.page-wrapper section.introduction small ol {
  padding: 0 0 0 15px;
  margin: 0;
}
.page-wrapper section.introduction small ol li {
  font-size: 12px;
  margin: 8px 0 0 0;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
}
.page-wrapper section.introduction small ol li a {
  color: #CF6B0D;
  text-decoration: underline;
}
.page-wrapper section.introduction small ol li a:hover {
  font-weight: 500;
}
.page-wrapper section.awards .awards-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 0 0;
}
.page-wrapper section.awards .awards-options .item {
  flex: 0 1 calc(33.333% - 11px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #333;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
}
.page-wrapper section.awards .awards-options .item .gift-wrapper {
  width: 100%;
  text-align: center;
  margin: 0;
}
.page-wrapper section.awards .awards-options .item .gift-wrapper img {
  width: 100%;
  height: auto;
}
.page-wrapper section.awards .awards-options .item .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}
.page-wrapper section.awards .awards-options .item .content h5 {
  font-size: 18px;
  text-align: center;
  color: white;
  font-weight: 600;
}
.page-wrapper section.awards .awards-options .item .content p {
  text-align: center;
  font-size: 14px;
  margin: 8px 0 0 0;
  color: #EF9528;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
}
.page-wrapper section.awards .awards-options .item .content small {
  margin: 4px 0 12px 0;
  text-align: center;
  font-size: 11px;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  color: #bdbdbd;
}
.page-wrapper section.awards .awards-options .item .content small:last-child {
  margin-bottom: 0;
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) {
  display: inline-flex;
  flex: 1 1 100%;
  flex-direction: row;
  padding: 0;
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .image-wrap {
  width: 100%;
  height: 100%;
  max-width: calc(33.333% - 16px);
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .image-wrap img {
  max-width: 100%;
  margin: 0 0 -5px 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content {
  width: 100%;
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content h5 {
  font-weight: 500;
  margin: 0 0 6px 0;
  font-size: 14px;
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content p {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px 0;
}
.page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content small {
  font-size: 11px;
  margin: 0;
}
.page-wrapper section.awards .awards-options .item.withbg {
  background-image: url("../img/prize-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.page-wrapper section.awards .awards-options .item.withbg h5 {
  text-align: center;
  color: #EF9528;
  font-weight: 500;
}
.page-wrapper section.awards .awards-options .item.withbg h5 span {
  font-size: 16px;
}
.page-wrapper section.awards .awards-options .item.withbg h5 {
  margin: 0 0 24px 0;
}
.page-wrapper section.awards .awards-options .item.withbg .gift {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.page-wrapper section.awards .awards-options .item.withbg .gift img {
  width: 100%;
  height: auto;
  max-width: 85px;
}
.page-wrapper section.awards .awards-options .item.withbg .gift p {
  font-size: 15px;
  color: white;
  margin: 0;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  text-align: left;
  width: 100%;
  font-weight: 600;
}
.page-wrapper section.awards .awards-options .item.withbg .plus {
  font-size: 32px;
  color: white;
  text-align: center;
  font-weight: 500;
}
.page-wrapper section.awards .awards-options .item.withbg .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.page-wrapper section.awards .awards-options .note {
  display: block;
  text-align: center;
  text-align: center;
  width: 100%;
  margin: 0 0 24px 0;
}
.page-wrapper section.awards .awards-options .note small {
  text-align: center;
  margin: 0;
  font-size: 11px;
  color: #bdbdbd;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
}
.page-wrapper section.awards .important-notice {
  margin: 60px 0;
}
.page-wrapper section.awards .important-notice .card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-wrapper section.awards .important-notice .card h6 {
  text-align: center;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  color: #EF9528;
}
.page-wrapper section.awards .important-notice .card p {
  color: #F1F1F1;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  margin: 0 0 8px 0;
}
.page-wrapper section.awards .important-notice .card ul {
  margin: 0;
  padding: 0 0 0 15px;
}
.page-wrapper section.awards .important-notice .card ul li {
  color: #F1F1F1;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  margin: 0 0 8px 0;
}
.page-wrapper section.awards .important-notice .card ul li:last-child {
  margin: 0;
}
.page-wrapper section.awards .important-notice .card a {
  color: #EF9528;
  text-decoration: underline;
}
.page-wrapper section.awards .important-notice .card a:hover {
  font-weight: 500;
}
.page-wrapper section.awards .cta {
  width: 100%;
  text-align: center;
  margin: 0 0 0 0;
}
.page-wrapper section.awards .cta a {
  color: #0b0b0b;
}
.page-wrapper section.awards .learn-more-now {
  width: 100%;
  max-width: 700px;
  margin: 60px auto 0 auto;
}
.page-wrapper section.awards .learn-more-now img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.page-wrapper section.tnc .card-wrapper {
  border-radius: 16px;
  background: rgba(2, 18, 44, 0.8);
  padding: 24px;
  max-width: 900px;
  margin: 24px auto 0 auto;
}
.page-wrapper section.tnc .card-wrapper p {
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  color: #BDBDBD;
  margin: 12px 0;
  font-size: 14px;
}
.page-wrapper section.tnc .card-wrapper ul, .page-wrapper section.tnc .card-wrapper ol {
  margin: 0;
  padding: 0 0 0 15px;
}
.page-wrapper section.tnc .card-wrapper ul li, .page-wrapper section.tnc .card-wrapper ol li {
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  color: #BDBDBD;
  margin: 0 0 12px 0;
  font-size: 14px;
}
.page-wrapper section.video-voting {
  position: relative;
  height: 100vh;
  padding: 32px 0 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("../img/voting-bg-KV.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-wrapper section.video-voting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(79.74% 100% at 50% 0%, rgba(0, 0, 0, 0.01) 49.92%, rgba(0, 0, 0, 0.7) 100%);
}
.page-wrapper section.video-voting .page-controls {
  position: absolute;
  width: 100%;
  left: 0;
  top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  z-index: 2;
}
.page-wrapper section.video-voting .page-controls button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  color: #0b0b0b;
  font-weight: 400;
  padding: 5px 15px 5px 5px;
  border-radius: 20px;
  text-shadow: 0 4.157px 20.784px rgba(0, 0, 0, 0.7);
  text-decoration: none;
  background: white;
}
.page-wrapper section.video-voting .page-controls a.terms-btn {
  text-decoration: none;
  color: #f1f1f1;
  text-shadow: 0 4.157px 20.784px rgba(0, 0, 0, 0.7);
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;
}
.page-wrapper section.video-voting .page-controls a.terms-btn:hover {
  opacity: 1;
}
.page-wrapper section.video-voting .video-wrapper {
  padding: 24px 0 0 0;
  position: relative;
  height: 100%;
  width: 100%;
}
.page-wrapper section.video-voting .video-wrapper video {
  width: calc(100% - 4px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.page-wrapper section.video-voting .video-wrapper video::-webkit-media-controls-panel {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
  filter: brightness(0.8);
  box-shadow: none !important;
}
.page-wrapper section.video-voting .video-wrapper label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px, 0 0 10px #000;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
}
.page-wrapper section.video-voting .video-wrapper label.age-20 {
  color: #3250F2;
}
.page-wrapper section.video-voting .video-wrapper label.age-10 {
  color: #F43E06;
}
.page-wrapper section.video-voting .video-wrapper label.age-00 {
  color: #9AD000;
}
.page-wrapper section.video-voting .video-wrapper label.age-90 {
  color: #6106E0;
}
.page-wrapper section.video-voting .video-wrapper label.age-80 {
  color: #AD84F4;
}
.page-wrapper section.video-voting .triple-slider-main .swiper-slide-active .video-wrapper video {
  border: 2px solid white;
}
.page-wrapper section.video-voting .playground-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-wrapper section.video-voting .timeline {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 0 0;
  height: 32px;
}
.page-wrapper section.video-voting .timeline ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 130px;
  will-change: transform;
}
.page-wrapper section.video-voting .timeline ul li {
  position: relative;
  list-style: none;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  transition: background-color 0.3s ease, font-size 0.3s ease, font-weight 0.3s ease;
  font-size: 0;
  font-weight: 500;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-wrapper section.video-voting .timeline ul li.active {
  width: 32px;
  height: 32px;
  font-size: 0;
  font-weight: 700;
}
.page-wrapper section.video-voting .timeline ul li::after {
  position: absolute;
  display: block;
  height: 5px;
  content: "";
  width: 900%;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.page-wrapper section.video-voting .timeline ul li::before {
  position: absolute;
  display: block;
  height: 5px;
  content: "";
  width: 0%;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}
.page-wrapper section.video-voting .timeline ul li:first-child::before {
  display: none;
}
.page-wrapper section.video-voting .timeline ul li:last-child::after {
  display: none;
}
.page-wrapper section.video-voting .timeline ul li.age-20 {
  background-color: #3250F2;
}
.page-wrapper section.video-voting .timeline ul li.age-20::before {
  background-color: #3250F2;
}
.page-wrapper section.video-voting .timeline ul li.age-20::after {
  background-color: #3250F2;
}
.page-wrapper section.video-voting .timeline ul li.age-10 {
  background-color: #F43E06;
}
.page-wrapper section.video-voting .timeline ul li.age-10::before {
  background-color: #F43E06;
}
.page-wrapper section.video-voting .timeline ul li.age-10::after {
  background-color: #F43E06;
}
.page-wrapper section.video-voting .timeline ul li.age-00 {
  background-color: #9AD000;
}
.page-wrapper section.video-voting .timeline ul li.age-00::before {
  background-color: #9AD000;
}
.page-wrapper section.video-voting .timeline ul li.age-00::after {
  background-color: #9AD000;
}
.page-wrapper section.video-voting .timeline ul li.age-90 {
  background-color: #6106E0;
}
.page-wrapper section.video-voting .timeline ul li.age-90::before {
  background-color: #6106E0;
}
.page-wrapper section.video-voting .timeline ul li.age-90::after {
  background-color: #6106E0;
}
.page-wrapper section.video-voting .timeline ul li.age-80 {
  background-color: #AD84F4;
}
.page-wrapper section.video-voting .timeline ul li.age-80::after {
  background-color: #AD84F4;
}
.page-wrapper section.video-voting .timeline ul li.age-80::before {
  background-color: #AD84F4;
}
.page-wrapper section.video-voting .voting-cards {
  width: 100%;
  max-width: 100vw;
  position: relative;
  z-index: 2;
  overflow-x: clip;
}
.page-wrapper section.video-voting .voting-cards .carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 36px 0 120px 0;
}
.page-wrapper section.video-voting .voting-cards .carousel-track {
  display: flex;
  gap: 16px;
  position: relative;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.3s ease-out;
}
.page-wrapper section.video-voting .voting-cards .carousel-track:active {
  cursor: grabbing;
}
.page-wrapper section.video-voting .voting-cards .card {
  position: relative;
  padding: 5px 15px 20px 15px;
  align-self: center;
  border: 1px solid white;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  width: 160px;
  min-width: 160px;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: width 0.3s ease, min-width 0.3s ease, opacity 0.15s ease-out;
  opacity: 0.8;
}
.page-wrapper section.video-voting .voting-cards .card:hover .play-btn {
  opacity: 0.8;
}
.page-wrapper section.video-voting .voting-cards .card.active:hover .play-btn {
  opacity: 0;
}
.page-wrapper section.video-voting .voting-cards .card .content {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 10px;
  width: 100%;
}
.page-wrapper section.video-voting .voting-cards .card .content .year {
  color: #FFF;
  text-shadow: 0 0 10px #000;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 28px; /* 100% */
}
.page-wrapper section.video-voting .voting-cards .card .content .name {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.page-wrapper section.video-voting .voting-cards .card .content .name img {
  max-width: 32px;
  height: auto;
  border-radius: 2px;
  border: 2px solid #FFF;
  box-shadow: 0 0 10px 0 #000;
  align-self: center;
}
.page-wrapper section.video-voting .voting-cards .card .content .name span {
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px, 0 0 10px #000;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 127.273% */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 2px;
}
.page-wrapper section.video-voting .voting-cards .card .content h6 {
  font-size: 14px;
  font-weight: 500;
  color: white;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  text-align: center;
}
.page-wrapper section.video-voting .voting-cards .card .player {
  overflow: hidden;
  z-index: 0;
  position: absolute;
  right: 0px;
  bottom: -4px;
  width: 123px;
  height: auto;
  border-bottom-right-radius: 24px;
}
.page-wrapper section.video-voting .voting-cards .card .player img {
  width: 100%;
}
.page-wrapper section.video-voting .voting-cards .card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 20px #000);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
}
.page-wrapper section.video-voting .voting-cards .card .play-btn img {
  width: 100%;
  height: 100%;
}
.page-wrapper section.video-voting .voting-cards .card button {
  position: absolute;
  display: inline-flex;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0 solid white;
  background: #FFF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.5);
  align-self: center;
  background-color: white;
  flex-direction: column;
  justify-content: center;
}
.page-wrapper section.video-voting .voting-cards .card button img {
  align-self: center;
  width: 24px;
  height: auto;
}
.page-wrapper section.video-voting .voting-cards .card button span {
  display: none;
  position: absolute;
  bottom: -24px;
  white-space: nowrap;
  color: white;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
}
.page-wrapper section.video-voting .voting-cards .card button:hover span {
  display: block;
}
.page-wrapper section.video-voting .voting-cards .card button.active {
  color: white;
  background-color: #CF6B0D;
  box-shadow: 0 0 16px 0 #F38E26;
}
.page-wrapper section.video-voting .voting-cards .card.active {
  padding: 10px 20px 35px 20px;
  width: 250px;
  min-width: 250px;
  border: 2px solid white;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.page-wrapper section.video-voting .voting-cards .card.active .player {
  width: 150px;
}
.page-wrapper section.video-voting .voting-cards .card.active .content .name {
  margin: 0;
}
.page-wrapper section.video-voting .voting-cards .card.active button {
  bottom: -24px;
  width: 48px;
  height: 48px;
}
.page-wrapper section.video-voting .voting-cards .card.active button img {
  width: 32px;
}
.page-wrapper section.video-voting .voting-cards .card.age-20 {
  background-color: #3250F2;
}
.page-wrapper section.video-voting .voting-cards .card.age-10 {
  background-color: #F43E06;
}
.page-wrapper section.video-voting .voting-cards .card.age-00 {
  background-color: #9AD000;
}
.page-wrapper section.video-voting .voting-cards .card.age-90 {
  background-color: #6106E0;
}
.page-wrapper section.video-voting .voting-cards .card.age-80 {
  background-color: #AD84F4;
}
.page-wrapper section.video-voting .voting-cards .card#v-2010 .name span {
  color: #CE1125;
}
.page-wrapper section.video-voting .voting-cards .card#v-2009 .name span {
  color: #006C35;
}
.page-wrapper section.video-voting .voting-cards .card#v-2008 .name span {
  color: #CD2E3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-2007 .name span {
  color: #1E448B;
}
.page-wrapper section.video-voting .voting-cards .card#v-2006 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-2005 .name span {
  color: #0038A8;
}
.page-wrapper section.video-voting .voting-cards .card#v-2004 .name span {
  color: #1B67AC;
}
.page-wrapper section.video-voting .voting-cards .card#v-2003 .name span {
  color: #A1000A;
}
.page-wrapper section.video-voting .voting-cards .card#v-2002 .name span {
  color: #1B67AC;
}
.page-wrapper section.video-voting .voting-cards .card#v-2001 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-1010 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-1009 .name span {
  color: #1E448B;
}
.page-wrapper section.video-voting .voting-cards .card#v-1008 .name span {
  color: #F00;
}
.page-wrapper section.video-voting .voting-cards .card#v-1007 .name span {
  color: #012169;
}
.page-wrapper section.video-voting .voting-cards .card#v-1006 .name span {
  color: #A1000A;
}
.page-wrapper section.video-voting .voting-cards .card#v-1005 .name span {
  color: #002C88;
}
.page-wrapper section.video-voting .voting-cards .card#v-1004 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-1003 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-1002 .name span {
  color: #060;
}
.page-wrapper section.video-voting .voting-cards .card#v-1001 .name span {
  color: #A1000A;
}
.page-wrapper section.video-voting .voting-cards .card#v-0010 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-0009 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-0008 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-0007 .name span {
  color: #000;
}
.page-wrapper section.video-voting .voting-cards .card#v-0006 .name span {
  color: #CE2B37;
}
.page-wrapper section.video-voting .voting-cards .card#v-0005 .name span {
  color: #CE2B37;
}
.page-wrapper section.video-voting .voting-cards .card#v-0004 .name span {
  color: #000;
}
.page-wrapper section.video-voting .voting-cards .card#v-0003 .name span {
  color: #CE1125;
}
.page-wrapper section.video-voting .voting-cards .card#v-0002 .name span {
  color: #1E448B;
}
.page-wrapper section.video-voting .voting-cards .card#v-0001 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-9010 .name span {
  color: #A1000A;
}
.page-wrapper section.video-voting .voting-cards .card#v-9009 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-9008 .name span {
  color: #CE1125;
}
.page-wrapper section.video-voting .voting-cards .card#v-9007 .name span {
  color: #007A5E;
}
.page-wrapper section.video-voting .voting-cards .card#v-9006 .name span {
  color: #000;
}
.page-wrapper section.video-voting .voting-cards .card#v-9005 .name span {
  color: #006C35;
}
.page-wrapper section.video-voting .voting-cards .card#v-9004 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-9003 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-9002 .name span {
  color: #1E448B;
}
.page-wrapper section.video-voting .voting-cards .card#v-9001 .name span {
  color: #000;
}
.page-wrapper section.video-voting .voting-cards .card#v-8010 .name span {
  color: #A1000A;
}
.page-wrapper section.video-voting .voting-cards .card#v-8009 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-8008 .name span {
  color: #CE1125;
}
.page-wrapper section.video-voting .voting-cards .card#v-8007 .name span {
  color: #007A5E;
}
.page-wrapper section.video-voting .voting-cards .card#v-8006 .name span {
  color: #000;
}
.page-wrapper section.video-voting .voting-cards .card#v-8005 .name span {
  color: #006C35;
}
.page-wrapper section.video-voting .voting-cards .card#v-8004 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-8003 .name span {
  color: #009B3A;
}
.page-wrapper section.video-voting .voting-cards .card#v-8002 .name span {
  color: #1E448B;
}
.page-wrapper section.video-voting .voting-cards .card#v-8001 .name span {
  color: #000;
}
.page-wrapper section.video-voting .user-selection {
  position: fixed;
  left: 0;
  bottom: -70px;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(7.5px);
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70px;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.page-wrapper section.video-voting .user-selection.active {
  bottom: 0;
}
.page-wrapper section.video-voting .user-selection label {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.page-wrapper section.video-voting .user-selection .voted-items {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 0 0 0 8px;
  height: 100%;
}
.page-wrapper section.video-voting .user-selection .voted-items .item {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 16px;
  border-radius: 8px;
  border: 2px dashed #8C8C8C;
  display: flex;
  color: white;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  font-size: 14px;
  align-items: center;
  min-width: 260px;
  height: 100%;
  padding-right: 16px;
  justify-content: space-between;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content .championoption, .page-wrapper section.video-voting .user-selection .voted-items .item .content .runnerupoption, .page-wrapper section.video-voting .user-selection .voted-items .item .content .thirdplaceoption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5px;
  background-color: #FD0;
  color: #0b0b0b;
  font-weight: 600;
  font-size: 18px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  flex-direction: column;
  justify-content: center;
  min-width: 50px;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content .runnerupoption {
  background-color: #DDD;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content .thirdplaceoption {
  background-color: #FFB978;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content .card-no {
  margin: 0 16px;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content .card-no span {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .content .goal-details {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .remove-btn {
  display: none;
  background-color: #BDBDBD;
  border-radius: 50%;
  position: relative;
  width: 24px;
  height: 24px;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
}
.page-wrapper section.video-voting .user-selection .voted-items .item .remove-btn img {
  width: 24px;
  height: 24px;
}
.page-wrapper section.video-voting .user-selection .voted-items .item.isVoted {
  border: 2px solid white;
}
.page-wrapper section.video-voting .user-selection .voted-items .item.isVoted .remove-btn {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
}
.page-wrapper section.video-voting .user-selection .voted-next-btn {
  margin: 0 0 0 16px;
  min-width: 120px;
  color: #0b0b0b;
}
.page-wrapper section.video-voting .guide-message {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0 0 24px 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.page-wrapper section.video-voting .guide-message p {
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  text-shadow: 0 4.157px 20.784px rgba(0, 0, 0, 0.7);
}
.page-wrapper section.video-voting .guide-message p button {
  display: inline-flex;
  pointer-events: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0 solid white;
  background: #FFF;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.5);
  align-self: center;
  background-color: white;
  flex-direction: column;
  justify-content: center;
  margin: 0 4px;
}
.page-wrapper section.video-voting .guide-message p button img {
  align-self: center;
  width: 24px;
  height: auto;
}
.page-wrapper section.video-voting .guide-message.done p {
  font-size: 24px;
}
.page-wrapper section.video-voting .guide-message.hide {
  opacity: 0;
  pointer-events: none;
}
.page-wrapper section.video-voting .triple-slider {
  position: relative;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left {
  left: 15%;
  transform: translateY(-50%);
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left::before {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  position: relative;
  content: "\e90d";
  font-family: "nowicon" !important;
  background-color: white;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  font-size: 36px;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left.age-20::before {
  color: #3250F2;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left.age-10::before {
  color: #F43E06;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left.age-00::before {
  color: #9AD000;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left.age-90::before {
  color: #6106E0;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left.age-80::before {
  color: #AD84F4;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right {
  right: 15%;
  transform: translateY(-50%);
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right::before {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  position: relative;
  content: "\e90c";
  font-family: "nowicon" !important;
  background-color: white;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  font-size: 36px;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right.age-20::before {
  color: #3250F2;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right.age-10::before {
  color: #F43E06;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right.age-00::before {
  color: #9AD000;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right.age-90::before {
  color: #6106E0;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right.age-80::before {
  color: #AD84F4;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator .indicator-btn {
  text-shadow: 0 4.157px 20.784px rgba(0, 0, 0, 0.7);
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator-left {
  order: -1;
}
.page-wrapper section.video-voting .triple-slider .slide-indicator-right {
  order: 1;
}
.page-wrapper section.submit-participant-details {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.page-wrapper section.submit-participant-details .modal-dialog {
  width: 100%;
  max-height: 100vh;
  max-width: 100%;
  overflow-y: scroll;
}
.page-wrapper section.submit-participant-details .modal-content {
  padding: 24px;
}
.page-wrapper section.submit-participant-details .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  padding: 32px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.8);
}
.page-wrapper section.submit-participant-details .wrapper .heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 0;
}
.page-wrapper section.submit-participant-details .wrapper .heading h5 {
  color: white;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.page-wrapper section.submit-participant-details .wrapper .heading button img {
  width: 28px;
  height: 28px;
}
.page-wrapper section.submit-participant-details .wrapper form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-wrapper section.submit-participant-details .wrapper .details p {
  color: #bdbdbd;
  margin: 0 0 16px 0;
}
.page-wrapper section.submit-participant-details .wrapper input, .page-wrapper section.submit-participant-details .wrapper textarea {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 12px 24px;
  margin: 0 0 16px 0;
  font-size: 16px;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
}
.page-wrapper section.submit-participant-details .wrapper textarea {
  outline: none;
  min-height: 200px;
  resize: none;
  border-radius: 8px;
}
.page-wrapper section.submit-participant-details .wrapper p.error {
  color: red;
  padding: 0;
  margin: 0 0 0 0;
}
.page-wrapper section.submit-participant-details .wrapper p.error.active {
  margin: 0 0 16px 0;
}
.page-wrapper section.submit-participant-details .wrapper .btn {
  display: block;
  margin: 24px 0 0 0;
  color: #0b0b0b;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group label {
  display: inline-block;
  pointer-events: all;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 4px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24px;
  width: 24px;
  transition: all 0.15s ease-out 0s;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  border: 1px solid #9b9b9b;
  padding: 0;
  border-radius: 4px;
  margin: 0 8px 8px 0;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group input:focus {
  border: 1px solid #CF6B0D;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group input:checked::before {
  position: absolute;
  display: inline-block;
  font-family: "nowicon" !important;
  content: "\e902";
  font-size: 10px;
  line-height: 1;
  color: #EF9528;
  padding: 6px 0 0 6px;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group p {
  margin: 0 0 16px 0;
  position: relative;
  top: 4px;
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  color: #bdbdbd;
  font-size: 16px;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group p a {
  color: #CF6B0D;
  text-decoration: underline;
}
.page-wrapper section.submit-participant-details .wrapper .checkbox-group p a:hover {
  font-weight: 500;
}
.page-wrapper section.submit-participant-details .wrapper .api-key-section, .page-wrapper section.submit-participant-details .wrapper .hidden {
  display: none;
}
.page-wrapper section.submit-participant-details .wrapper .message {
  display: none;
}
.page-wrapper section.submit-participant-details .wrapper .message .message-content p {
  font-family: "Barlow", "Noto Sans TC", sans-serif;
  font-size: 16px;
  color: #bdbdbd;
  text-align: center;
  margin: 0 0 16px 0;
}
.page-wrapper section.submit-participant-details .wrapper .message .message-content button {
  display: block;
  width: 100%;
}
.page-wrapper section.submit-participant-details.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.page-wrapper.voting-page {
  padding: 0;
}

html:lang(en) .page-wrapper section.kv .content h1 {
  font-size: 40px;
}
html:lang(en) .page-wrapper section.kv .content h1 br {
  display: block;
}
html:lang(en) .page-wrapper section.kv .content h6 {
  font-size: 24px;
}

/* Responsive Carousel Adjustments */
@media screen and (max-width: 1399px) {
  .page-wrapper section.video-voting .triple-slider {
    position: relative;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left {
    left: 5%;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right {
    right: 5%;
  }
}
@media screen and (max-width: 1199px) {
  .page-wrapper section.video-voting .user-selection label {
    font-size: 18px;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item {
    min-width: 180px;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item .content .championoption, .page-wrapper section.video-voting .user-selection .voted-items .item .content .runnerupoption, .page-wrapper section.video-voting .user-selection .voted-items .item .content .thirdplaceoption {
    font-size: 18px;
    white-space: nowrap;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item .content .card-no {
    margin: 0 8px;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item .content .goal-details {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .page-wrapper section.video-voting .triple-slider {
    position: relative;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left {
    left: 2%;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right {
    right: 2%;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  header {
    height: 50px;
  }
  header img {
    height: 34px;
  }
  header .langBtn {
    font-size: 16px;
  }
  nav {
    top: 50px;
    height: 45px;
    gap: 8px;
    padding: 0 8px;
  }
  nav a {
    margin: 0;
    padding: 4px 12px;
    font-size: 13px;
  }
  .page-wrapper {
    padding: 95px 0 0 0;
  }
  .page-wrapper section {
    padding: 40px 0;
    min-height: calc(100vh - 50px - 45px);
  }
  .page-wrapper section .title p {
    font-size: 16px;
  }
  .page-wrapper section.kv {
    height: calc(100vh - 50px - 45px);
  }
  .page-wrapper section.kv .video-wrapper {
    height: calc(100vh - 50px - 45px);
  }
  .page-wrapper section.kv .video-wrapper video {
    height: calc(100vh - 50px - 45px);
  }
  .page-wrapper section.kv .logo {
    position: absolute;
    left: 2%;
    top: 2%;
  }
  .page-wrapper section.kv .logo img {
    width: auto;
    height: 60px;
  }
  .page-wrapper section.kv .content {
    padding-bottom: 80px;
  }
  .page-wrapper section.kv .content h6 {
    font-size: 16px;
  }
  .page-wrapper section.kv .content h1 {
    font-size: 32px;
  }
  .page-wrapper section.kv .content h1 br {
    display: block;
  }
  .page-wrapper section.kv .content .scrolldown {
    width: 12px;
  }
  .page-wrapper section.kv .content .scrolldown span {
    width: 12px;
    height: 12px;
  }
  .page-wrapper section.introduction .card .content p {
    font-size: 14px;
  }
  .page-wrapper section.introduction .card .content ul li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  .page-wrapper section.introduction .card .content a {
    margin: 24px 0 0 0;
  }
  .page-wrapper section.introduction .card .content p.done {
    font-size: 20px;
    font-weight: 500;
    margin: 24px 0 0 0;
  }
  .page-wrapper section.introduction small {
    margin: 20px auto 0 auto;
  }
  .page-wrapper section.awards .awards-options {
    flex-direction: column;
    gap: 24px;
  }
  .page-wrapper section.awards .awards-options .item .content h5 {
    font-size: 16px;
  }
  .page-wrapper section.awards .awards-options .item .content p {
    font-size: 14px;
    margin: 12px 0 0 0;
  }
  .page-wrapper section.awards .awards-options .item .content p:first-child {
    margin-top: 0;
  }
  .page-wrapper section.awards .awards-options .item .content small {
    font-size: 10px;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) {
    flex-direction: column;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .image-wrap {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .image-wrap img {
    margin: 0;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content {
    padding: 16px;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content h5 {
    font-size: 12px;
    margin: 0 0 4px 0;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content p {
    font-size: 14px;
    margin: 0 0 4px 0;
  }
  .page-wrapper section.awards .awards-options .item:nth-last-child(-n+2) .content small {
    margin: 0;
  }
  .page-wrapper section.awards .awards-options .item.withbg {
    padding: 24px 12px;
  }
  .page-wrapper section.awards .awards-options .item.withbg h5 span {
    font-size: 14px;
  }
  .page-wrapper section.awards .awards-options .item.withbg h5 {
    margin: 0 0 20px 0;
  }
  .page-wrapper section.awards .awards-options .item.withbg .gift {
    gap: 16px;
  }
  .page-wrapper section.awards .awards-options .item.withbg .gift img {
    max-width: 70px;
  }
  .page-wrapper section.awards .awards-options .item.withbg .gift p {
    font-size: 14px;
  }
  .page-wrapper section.awards .awards-options .item.withbg .gift p br {
    display: none;
  }
  .page-wrapper section.awards .awards-options .item.withbg .plus {
    width: 100%;
    text-align: center;
    font-size: 24px;
  }
  .page-wrapper section.awards .awards-options .item.withbg .content {
    align-items: flex-start;
  }
  .page-wrapper section.awards .awards-options .note {
    margin: 0 0 20px 0;
  }
  .page-wrapper section.awards small {
    margin: 14px 0 0 0;
    font-size: 11px;
  }
  .page-wrapper section.awards .important-notice {
    margin: 40px 0;
  }
  .page-wrapper section.awards .important-notice .card p {
    font-size: 14px;
  }
  .page-wrapper section.awards .important-notice .card ul li {
    font-size: 14px;
  }
  .page-wrapper section.awards .cta {
    margin: 14px 0 0 0;
  }
  .page-wrapper section.awards .learn-more-now {
    margin-top: 40px;
  }
  .page-wrapper section.video-voting {
    padding: 16px 0 0 0;
    justify-content: flex-start;
    height: 100%;
    min-height: 100dvh;
  }
  .page-wrapper section.video-voting .page-controls {
    justify-content: space-between;
  }
  .page-wrapper section.video-voting .page-controls button {
    font-size: 14px;
    padding: 4px 12px 4px 4px;
  }
  .page-wrapper section.video-voting .page-controls button img {
    width: 24px;
    height: 24px;
  }
  .page-wrapper section.video-voting .page-controls a.terms-btn {
    font-size: 14px;
  }
  .page-wrapper section.video-voting .video-wrapper {
    padding-top: 16px;
  }
  .page-wrapper section.video-voting .video-wrapper label {
    font-size: 24px;
  }
  .page-wrapper section.video-voting .timeline {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    padding: 0 0;
    height: 24px;
  }
  .page-wrapper section.video-voting .timeline ul {
    gap: 90px;
  }
  .page-wrapper section.video-voting .timeline ul li {
    width: 12px;
    height: 12px;
  }
  .page-wrapper section.video-voting .timeline ul li.active {
    width: 24px;
    height: 24px;
  }
  .page-wrapper section.video-voting .voting-cards .carousel-container {
    padding: 30px 0 40px 0;
  }
  .page-wrapper section.video-voting .voting-cards .carousel-track {
    gap: 12px;
  }
  .page-wrapper section.video-voting .voting-cards .card {
    padding: 4px 10px 14px 10px;
    width: 112px;
    min-width: 112px;
  }
  .page-wrapper section.video-voting .voting-cards .card .content {
    gap: 4px;
  }
  .page-wrapper section.video-voting .voting-cards .card .content .year {
    font-size: 20px;
  }
  .page-wrapper section.video-voting .voting-cards .card .content .name img {
    max-width: 28px;
  }
  .page-wrapper section.video-voting .voting-cards .card .content .name span {
    font-size: 15px;
  }
  .page-wrapper section.video-voting .voting-cards .card .player {
    width: 100px;
  }
  .page-wrapper section.video-voting .voting-cards .card .play-btn {
    width: 24px;
    height: 24px;
  }
  .page-wrapper section.video-voting .voting-cards .card button {
    bottom: -12px;
    width: 24px;
    height: 24px;
  }
  .page-wrapper section.video-voting .voting-cards .card button img {
    width: 16px;
  }
  .page-wrapper section.video-voting .voting-cards .card button span {
    bottom: -20px;
    font-size: 12px;
  }
  .page-wrapper section.video-voting .voting-cards .card button:hover span {
    display: block;
  }
  .page-wrapper section.video-voting .voting-cards .card button.active {
    color: white;
    background-color: #CF6B0D;
    box-shadow: 0 0 16px 0 #F38E26;
  }
  .page-wrapper section.video-voting .voting-cards .card.active {
    padding: 7px 14px 24px 14px;
    width: 175px;
    min-width: 175px;
  }
  .page-wrapper section.video-voting .voting-cards .card.active .player {
    width: 120px;
  }
  .page-wrapper section.video-voting .voting-cards .card.active button {
    bottom: -16px;
    width: 32px;
    height: 32px;
  }
  .page-wrapper section.video-voting .voting-cards .card.active button img {
    width: 24px;
  }
  .page-wrapper section.video-voting .user-selection {
    position: relative;
    flex-direction: column;
    height: auto;
    gap: 16px;
    padding: 10px 24px;
    margin: 0;
    opacity: 0;
    height: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .page-wrapper section.video-voting .user-selection .voted-items {
    width: 100%;
    height: 100%;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item {
    flex: 1;
    flex-direction: column;
    padding: 0 0 8px 0;
    min-width: 0;
    gap: 8px;
    height: auto;
    min-height: auto;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item .content {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: 100%;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item .content .championoption, .page-wrapper section.video-voting .user-selection .voted-items .item .content .runnerupoption, .page-wrapper section.video-voting .user-selection .voted-items .item .content .thirdplaceoption {
    width: 100%;
    display: flex;
    border-radius: 6px;
    height: 30px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item.isVoted .content .card-no {
    width: 100%;
    padding: 8px 0;
    gap: 8px;
    flex-direction: row;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item.isVoted .content .card-no span {
    font-size: 14px;
  }
  .page-wrapper section.video-voting .user-selection .voted-items .item.isVoted .content .goal-details {
    padding: 0 4px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 20px;
  }
  .page-wrapper section.video-voting .user-selection .voted-next-btn {
    margin: 0;
    min-width: 100%;
  }
  .page-wrapper section.video-voting .user-selection.active {
    opacity: 1;
    pointer-events: auto;
    height: auto;
  }
  .page-wrapper section.video-voting .guide-message {
    padding: 0 0 20px 0;
  }
  .page-wrapper section.video-voting .guide-message p {
    font-size: 14px;
  }
  .page-wrapper section.video-voting .guide-message p button {
    width: 24px;
    height: 24px;
  }
  .page-wrapper section.video-voting .guide-message p button img {
    width: 16px;
  }
  .page-wrapper section.video-voting .guide-message.done p {
    font-size: 20px;
  }
  .page-wrapper section.video-voting .guide-message.hide {
    opacity: 0;
    pointer-events: none;
  }
  .page-wrapper section.video-voting .triple-slider {
    padding: 32px 0;
    margin-bottom: 12px;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator {
    top: inherit;
    bottom: 0;
    pointer-events: all;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator:active {
    opacity: 0.7;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left {
    left: 24px;
    transform: inherit;
    flex-direction: row;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-left::before {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right {
    right: 24px;
    transform: inherit;
    flex-direction: row-reverse;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator.slide-indicator-right::before {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
  }
  .page-wrapper section.video-voting .triple-slider .slide-indicator .indicator-btn {
    font-size: 16px;
  }
  .page-wrapper section.submit-participant-details .modal-content {
    padding: 24px;
  }
  .page-wrapper section.submit-participant-details .wrapper {
    padding: 24px;
  }
  .page-wrapper section.submit-participant-details .wrapper .heading {
    margin: 0 0 16px 0;
  }
  .page-wrapper section.submit-participant-details .wrapper .heading h5 {
    font-size: 18px;
  }
  .page-wrapper section.submit-participant-details .wrapper .heading button img {
    width: 24px;
    height: 24px;
  }
  .page-wrapper section.submit-participant-details .wrapper input, .page-wrapper section.submit-participant-details .wrapper textarea {
    padding: 10px 20px;
    margin: 0 0 14px 0;
    font-size: 14px;
  }
  .page-wrapper section.submit-participant-details .wrapper textarea {
    min-height: 160px;
    border-radius: 8px;
  }
  .page-wrapper section.submit-participant-details .wrapper .btn {
    margin: 20px 0 0 0;
  }
  .page-wrapper section.submit-participant-details .wrapper .checkbox-group input {
    top: 4px;
    height: 20px;
    width: 20px;
  }
  .page-wrapper section.submit-participant-details .wrapper .checkbox-group input:checked::before {
    padding: 4px 0 0 4px;
  }
  .page-wrapper section.submit-participant-details .wrapper .checkbox-group p {
    top: 4px;
    font-size: 14px;
  }
  .page-wrapper section.submit-participant-details .wrapper .message {
    display: none;
  }
  .page-wrapper section.submit-participant-details .wrapper .message .message-content p {
    font-size: 14px;
    margin: 0 0 14px 0;
  }
  html:lang(en) .page-wrapper section.kv .content h1 {
    font-size: 28px;
  }
  html:lang(en) .page-wrapper section.kv .content h1 br {
    display: block;
  }
  html:lang(en) .page-wrapper section.kv .content h6 {
    font-size: 16px;
  }
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-15px, -15px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px, 15px);
  }
}/*# sourceMappingURL=style.css.map */