@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "noto sans TC", serif;
  background: -webkit-gradient(linear, left top, left bottom, from(#124186), to(#010025));
  background: linear-gradient(to bottom, #124186 0%, #010025 100%);
  min-height: 100vh;
  color: #FFFFFF;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

a:hover {
  color: #FFFFFF;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input, button, select {
  background-color: transparent;
  border: 0;
  outline: none;
  color: #FFFFFF;
}

button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 100;
  padding: 20px 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.scroll {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
}

.header_logo {
  display: block;
  width: 230px;
}

.header_logo > img {
  width: 100%;
}

.header_nav {
  height: 100%;
}

.header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.header_nav ul li {
  height: 100%;
  margin-right: 24px;
}

.header_nav_text {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.header_nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 0;
  height: 100%;
  gap: 5px;
  cursor: pointer;
}

.header_nav_item.active .header_nav_text {
  color: #00F7F7;
}

.header_nav_item:not(.active):hover .header_nav_text {
  color: #FFFFFF;
}

.header_icon {
  width: 24px;
  height: 24px;
  display: none;
}

.header_icon path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_greet {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

.header_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_line_icon {
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.header_line_icon img {
  width: 24px;
}

.header_line_text {
  display: block;
  padding: 10px 24px;
  height: 40px;
  background-color: #11C656;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_line:hover .header_line_text {
  background-color: #FFFFFF;
  color: #11C656;
}

.header_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.header_login .input-item {
  width: 180px;
}

@media screen and (max-width: 1299px) {
  .header {
    padding: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    padding: 15px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header_right {
    width: 100%;
  }
  .header_logo {
    width: 150px;
  }
  .header_nav {
    position: fixed;
    width: 100%;
    height: 70px;
    background: #081B4E;
    bottom: 0;
    right: 0;
    z-index: 5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_nav ul {
    height: 100%;
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_nav ul li {
    height: 100%;
    width: 20%;
    margin: 0;
  }
  .header_nav ul a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    gap: 4px;
  }
  .header_nav ul a span {
    font-size: 12px;
  }
  .header_nav ul a::after {
    display: none;
  }
  .header_nav_item.active .header_icon path {
    fill: #00F7F7;
  }
  .header_icon {
    display: block;
  }
  .header.scroll {
    background-color: rgba(8, 27, 78, 0.8);
    -webkit-backdrop-filter: inherit;
            backdrop-filter: inherit;
  }
  .header_greet {
    font-size: 12px;
    font-weight: normal;
  }
}

@media screen and (max-width: 575px) {
  .header_line_text {
    padding: 0 12px;
    height: 36px;
    font-size: 12px;
  }
  .header_line_icon {
    width: 36px;
    height: 36px;
  }
}

main {
  overflow: hidden;
}

.mainContent {
  padding: 60px 55px 150px;
}

@media screen and (max-width: 1300px) {
  .mainContent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 991px) {
  .mainContent {
    padding-bottom: 80px;
    padding-top: 30px;
  }
}

.btn {
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid #CBD7E4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn:hover {
  background-color: #00F7F7;
  border-color: #00F7F7;
  color: #081B4E;
}

.btn-hasicon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-hasicon_text {
  height: 40px;
  width: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  background-color: #FFFFFF;
  color: #081B4E;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #FFFFFF;
  margin: 0;
  min-width: 106px;
}

.btn-hasicon_icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-hasicon_icon svg {
  width: 24px;
  height: 24px;
}

.btn-hasicon_icon svg path {
  stroke: #FFFFFF;
}

.btn-hasicon:hover .btn-hasicon_text {
  background-color: transparent;
  color: #FFFFFF;
}

.btn-hasicon:hover .btn-hasicon_icon {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}

.btn-hasicon:hover .btn-hasicon_icon svg path {
  stroke: #081B4E;
}

.input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid #CBD7E4;
  padding: 0 16px;
}

.input-item_icon {
  width: 18px;
}

.input-item_main {
  width: calc(100% - 18px);
  height: 100%;
  padding: 0 8px;
  font-size: 14px;
}

.input-item_main::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-item_main:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-item_main::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-item_main::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .title {
    font-size: 28px;
  }
}

.section {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 24px;
}

.section-product {
  margin-bottom: 40px;
}

.sidebar {
  width: 300px;
}

.sidebar_item {
  margin-bottom: 32px;
}

.sidebar_qrcode img {
  margin-bottom: 12px;
}

.sidebar_qrcode p {
  margin: 0;
  font-family: "Mukta", sans-serif;
}

.sidebar_qrcode_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar_qrcode_text .qrcode-text_title {
  color: #FFFFFF;
  font-weight: 500;
}

.sidebar_qrcode_text .qrcode-text_content {
  color: #00F7F7;
  font-weight: 700;
}

.sidebar_ad {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.sidebar_news_title {
  padding-bottom: 20px;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar_news_item {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 24px;
}

.sidebar_news_item:hover {
  opacity: 0.7;
}

.sidebar_news_item:last-child {
  border: 0;
}

@media screen and (max-width: 991px) {
  .sidebar {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.mainbar {
  width: calc(100% - 300px);
  padding-left: 40px;
}

.mainbar > .section {
  padding: 32px;
}

@media screen and (max-width: 991px) {
  .mainbar {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .mainbar > .section {
    padding: 24px;
  }
}

.table-common {
  width: 100%;
}

.table-common th, .table-common td {
  position: relative;
}

.table-common th::after, .table-common td::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
  right: 0;
}

.table-common th:last-child::after, .table-common td:last-child::after {
  display: none;
}

.table-common th {
  padding: 8px 5px 24px;
  font-size: 14px;
  text-align: center;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.table-common th::before {
  position: absolute;
  content: "";
  width: calc(100% - 24px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  left: 50%;
  bottom: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.table-common td {
  text-align: center;
  padding: 8px 5px;
}

.table-common td.table_date {
  color: #FFFFFF;
  font-family: "Mukta", sans-serif;
}

.table-common td.table_category {
  color: #ED82A0;
}

.table-common td.table_give {
  color: #FFBA81;
}

.table-common td.table_lines {
  color: #CDF42E;
}

.table-common td.table_get {
  color: #FFE26C;
}

.table-common td.table_recommend {
  color: #DB94FF;
}

.table-common td.table_recommend .btn {
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.table-common td.table_result img {
  width: 90px;
  margin: 0 auto;
}

.table-common .table_date_inner p {
  margin: 0;
  text-align: center;
}

.table-common .table_date_inner .date {
  font-size: 20px;
}

.table-common .table_date_inner .month {
  margin-top: -2px;
}

@media screen and (max-width: 991px) {
  .table-common th, .table-common td {
    font-size: 10px;
    padding: 10px 3px;
  }
  .table-common th::before {
    width: calc(100% - 6px);
    bottom: 0;
  }
  .table-common td.table_result img {
    width: 25px;
  }
  .table-common .btn {
    font-size: 10px;
    padding: 0;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    text-decoration: underline;
    font-weight: 500;
  }
}

.banner_pic {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner_pic_item {
  width: 100%;
  position: relative;
}

.banner_pic_item::before {
  position: absolute;
  content: "";
  width: 100%;
  padding-bottom: 32%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  top: 0;
  left: 0;
}

.banner_text_item {
  position: relative;
  padding-bottom: 43%;
  width: 100%;
}

.banner_text_title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.banner_text_title h1 {
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 700;
}

.banner .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  position: absolute;
  bottom: 4%;
  left: calc((100vw - 1320px) / 2 + 20px);
}

.banner .swiper-pagination-bullet {
  width: 35px;
  height: 2px;
  background-color: #FFFFFF;
  opacity: 1;
  border-radius: 0;
  margin: 0 !important;
}

.banner .swiper-pagination-bullet-active {
  background-color: #00F7F7;
}

@media screen and (max-width: 1400px) {
  .banner .swiper-pagination {
    left: calc((100vw - 1140px) / 2 + 20px);
  }
}

@media screen and (max-width: 1199px) {
  .banner .swiper-pagination {
    left: 20px;
  }
  .banner_text_title h1 {
    max-width: inherit;
  }
}

@media screen and (max-width: 991px) {
  .banner_text_item {
    padding-bottom: 80%;
  }
  .banner_text_title h1 {
    font-size: 44px;
  }
  .banner_pic_item::before {
    padding-bottom: 60%;
  }
}

@media screen and (max-width: 575px) {
  .banner_text_item {
    padding-bottom: 80%;
  }
  .banner_text_title h1 {
    font-size: 28px;
  }
}

.analyze_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}

.analyze_title .title {
  margin: 0;
}

.analyze_title_en {
  font-size: 24px;
  font-family: "Mukta", sans-serif;
  color: #00F7F7;
  margin: 0;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .analyze {
    padding: 24px 12px !important;
  }
  .analyze_title_en {
    font-size: 20px;
  }
}

.footer {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #FFFFFF;
  font-family: "Mukta", sans-serif;
}

@media screen and (max-width: 991px) {
  .footer {
    font-size: 13px;
  }
}

.buy > .row {
  margin-left: -16px;
  margin-right: -16px;
}

.buy > .row > div {
  padding-left: 16px;
  padding-right: 16px;
}

.buy_item {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 32px;
}

.buy_text {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 32px;
}

.buy_text p {
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.buy_name {
  font-size: 18px;
  color: #00F7F7;
  font-weight: 700;
  margin: 0;
}

.buy_select {
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 5px 50px 5px 16px;
  color: #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/chevron-down.svg);
  background-size: 16px;
  background-position: calc(100% - 16px) center;
  background-repeat: no-repeat;
  border: 1px solid #CBD7E4;
  color: #FFFFFF;
  width: 100%;
  height: 40px;
}

.buy_btn .row {
  margin-left: -8px;
  margin-right: -8px;
}

.buy_btn .row > div {
  padding-left: 8px;
  padding-right: 8px;
}

.buy_btn .btn-hasicon {
  width: 100%;
}

.buy-login .btn-hasicon {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .buy_text {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .buy_select {
    margin-bottom: 16px;
  }
  .buy-login .btn-hasicon {
    margin-top: 0;
  }
}

.news-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.news-info_tag {
  margin: 0;
  padding: 4px 8px;
  background-color: #22C2C2;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
}

.news-info_date {
  color: #FFFFFF;
  margin: 0;
  font-size: 14px;
  color: #CBD7E4;
  font-family: "Mukta", sans-serif;
  font-weight: 500;
}

.news-title {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list_item {
  padding: 16px 0;
  display: block;
}

.news-list_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list_title .news-title {
  width: calc(100% - 90px);
  padding-right: 20px;
  -webkit-line-clamp: 1;
}

.news-list_title .btn {
  width: 90px;
}

@media screen and (max-width: 991px) {
  .news-list .news-title {
    width: calc(100% - 40px);
  }
  .news-list_title .btn {
    width: 40px;
    height: 40px;
    padding: 0;
  }
}

.news-detail .news-info {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}

.news-detail .news-info_tag {
  font-size: 16px;
}

.news-detail .news-info_date {
  font-size: 16px;
}

.news-detail_content h1 {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.news-detail_content > p {
  line-height: 2;
  margin: 0;
}

.news-detail_content .btn-hasicon {
  margin: 32px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.news-detail_content .btn-hasicon_text {
  width: 106px;
}

@media screen and (max-width: 575px) {
  .news-detail_content {
    width: 100%;
    padding: 0;
  }
  .news-detail_content h1 {
    font-size: 24px;
  }
}

.modal-member .modal-dialog {
  margin-top: 100px;
}

.modal-member .modal-content {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 24px;
}

.modal-member .modal-body {
  padding: 0;
  position: static;
}

.modal-member .modal_title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-member_x {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
}

.modal-member_x:hover {
  opacity: 0.7;
}

.modal-member_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.modal-member_checkbox input {
  width: 20px;
  height: 20px;
  position: relative;
}

.modal-member_checkbox input::before, .modal-member_checkbox input::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}

.modal-member_checkbox input::before {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-member_checkbox input:checked::before {
  opacity: 0;
}

.modal-member_checkbox label a {
  text-decoration: underline;
  color: #00F7F7;
}

.modal-member .input-item {
  margin-bottom: 20px;
}

.modal-member_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal-member .btn-signup {
  color: #00F7F7;
  font-size: 14px;
  text-decoration: underline;
  display: block;
}

@media screen and (max-width: 575px) {
  .modal-member .modal-body {
    padding: 0;
  }
  .modal-member .modal-content_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal-member .modal-dialog {
    margin-top: 30px;
  }
}

.modal-qrcode .modal-dialog {
  max-width: 350px;
  padding-top: 100px;
}

.modal-qrcode .modal-content {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 24px;
  padding: 56px 56px 32px;
}

.modal-qrcode img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 12px;
}

.modal-qrcode_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal-qrcode_text p {
  font-size: 14px;
  font-family: "Mukta", sans-serif;
  margin: 0;
}

.modal-qrcode_text .qrcode-text_title {
  font-weight: 500;
}

.modal-qrcode_text .qrcode-text_content {
  font-weight: 700;
  color: #00F7F7;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px auto 0;
  gap: 12px;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Mukta", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagination a:hover, .pagination a.active {
  color: #00F7F7;
}

.pagination a:hover svg path, .pagination a.active svg path {
  stroke: #00F7F7;
}

.pagination_arrow svg {
  width: 24px;
  height: 24px;
}

.pagination_arrow svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: #FFFFFF;
}

@media screen and (max-width: 575px) {
  .pagination {
    gap: 10px;
  }
  .pagination a {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

.competiton-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.competiton-list_item {
  width: 20%;
  position: relative;
  text-align: center;
  padding: 8px;
}

.competiton-list_item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0%;
  right: 0;
}

.competiton-list_item:last-child::after {
  display: none;
}

.competiton-list_item.active .competiton-list_title {
  color: #00F7F7;
}

.competiton-list_item.active .competiton-list_en {
  font-weight: 700;
}

.competiton-list_item:hover {
  opacity: 0.7;
}

.competiton-list_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.competiton-list_en {
  font-size: 16px;
  font-family: "Mukta", sans-serif;
  font-weight: 300;
  margin: 0;
  color: #00F7F7;
}

@media screen and (max-width: 991px) {
  .competiton-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 !important;
    gap: 16px;
    background-color: transparent;
    -webkit-backdrop-filter: inherit;
            backdrop-filter: inherit;
    border: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .competiton-list_item {
    width: calc((100% - 16px) / 2);
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 24px;
    padding: 16px;
    border-radius: 16px;
  }
  .competiton-list_item::after {
    display: none;
  }
  .competiton-list_title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .competiton-list_en {
    font-size: 12px;
  }
}

.record .row {
  margin-left: -32px;
  margin-right: -32px;
}

.record .row > div {
  padding-left: 32px;
  padding-right: 32px;
}

.record .row > div:nth-child(even) .record_item::after {
  display: none;
}

.record_item {
  margin-bottom: 40px;
  position: relative;
}

.record_item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
  right: -32px;
}

.record_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.record_title {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
  color: #00F7F7;
}

.record_total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 4px 0 12px;
}

.record_total > p {
  font-family: "Mukta", sans-serif;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}

.record_price {
  font-size: 32px;
}

.record_num {
  font-size: 20px;
}

.record_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.record_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.record_info li {
  font-size: 14px;
  color: #CBD7E4;
  padding: 0 8px;
  position: relative;
}

.record_info li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.record_info li:first-child {
  padding-left: 0;
}

.record_info li:last-child {
  padding-right: 0;
}

.record_info li:last-child::after {
  display: none;
}

.record_time {
  font-size: 14px;
  font-family: "Mukta", sans-serif;
  color: #CBD7E4;
  margin: 0;
  font-weight: 500;
}

.record_status {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #FFFFFF;
}

.record_status.notpay {
  background-color: #B755EF;
}

.record_status.paid {
  background-color: #22C2C2;
}

@media screen and (max-width: 991px) {
  .record_item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
  }
  .record_item::after {
    display: none;
  }
  .record .row > div:first-child .record_item {
    padding-top: 0;
  }
  .record .row > div:last-child .record_item {
    padding-bottom: 0;
    border: 0;
  }
}

.signup-form .row {
  margin-left: -12px;
  margin-right: -12px;
}

.signup-form .row > div {
  padding-left: 12px;
  padding-right: 12px;
}

.signup-form .input-item {
  margin-bottom: 24px;
}

.signup-form_term p {
  margin: 0;
}

.signup-form_term_inner {
  margin: 12px 0;
  border-radius: 24px;
  background-color: #081B4E;
  padding: 24px;
  height: 200px;
  overflow-y: auto;
}

.signup-form_term_inner p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}

.signup-form_term_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  gap: 8px;
}

.signup-form_term_check input {
  position: relative;
  width: 16px;
  height: 16px;
}

.signup-form_term_check input::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #00F7F7;
  background-color: #081B4E;
}

.signup-form_term_check input:checked::before {
  display: none;
}

.signup-form_term_check label {
  color: #00F7F7;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.signup-form .btn-hasicon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 0;
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product_item {
  position: relative;
  width: 20%;
}

.product_item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.product_item:last-child::after {
  display: none;
}

.product_item_inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.product_title {
  font-size: 18px;
  color: #00F7F7;
  margin-bottom: 8px;
  font-weight: 700;
}

.product_remain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.product_remain p {
  font-size: 14px;
  margin: 0;
}

.product_remain p.num {
  font-family: "Mukta", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .product_item {
    width: 50%;
    margin-bottom: 24px;
    padding: 0 12px;
  }
  .product_item_inner {
    margin: 0;
  }
  .product_item:nth-child(odd)::after {
    display: block;
  }
  .product_item:nth-child(even)::after {
    display: none;
  }
  .product_title {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */