@charset "UTF-8";
body,
html {
  font-family: "Roboto", "微软雅黑", "微軟正黑體", "华文细黑", "儷黑 Pro", sans-serif;
  background-color: #14151b;
  width: 100%;
  height: fill-available;
  height: -webkit-fill-available;
  height: -moz-available;
}
@media screen and (max-width: 765px) {
  body,
html {
    min-width: 1400px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  min-height: calc(100% - 224px);
}

a,
ul,
li,
button {
  -webkit-appearance: none;
          appearance: none;
  text-decoration: none;
  list-style: none;
  padding: 0;
  color: inherit;
  border: none;
}
a:focus,
ul:focus,
li:focus,
button:focus {
  -webkit-appearance: none;
          appearance: none;
  outline: none;
}

button,
a {
  cursor: pointer;
  background: transparent;
}

ol li {
  list-style-type: decimal;
}

img {
  display: block;
}

input {
  -webkit-appearance: none;
          appearance: none;
  -ms-appearance: none;
}
input:focus {
  -webkit-appearance: none;
          appearance: none;
  outline: none;
}

select {
  -webkit-appearance: none;
          appearance: none;
  -ms-appearance: none;
}
select:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}

.container {
  width: 100%;
  max-width: 1024px;
  min-width: 1000px;
  margin: 0 auto;
}
.container.wide {
  max-width: 1220px;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
    min-width: initial;
  }
}

.img {
  background-color: #2f2f2f;
}

.nav_top {
  background-color: #14151b;
}
.nav_top .container {
  display: flex;
  justify-content: space-between;
}
.nav_top .container .nav_icons {
  width: 116px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  color: #f3f3f4;
}
.nav_top .container .nav_icons .nav_icon {
  font-size: 28px;
}
.nav_top .container .btn-join {
  position: relative;
  top: 0px;
  min-width: 92px;
  height: 30px;
}
.nav_top .container .btn-login {
  margin-right: 7px;
}
.nav_top input {
  height: 30px;
  background-color: rgba(255, 255, 255, 0.95);
  border: solid 1px #d2d2d2;
  border-radius: 5px;
  padding: 5px;
  margin-left: 8px;
}
.nav_top .password {
  display: inline-block;
  position: relative;
}
.nav_top .password .btn-forget {
  display: inline-block;
  width: 25px;
  height: 100%;
  background-color: #d8d8d8;
  border-radius: 0 5px 5px 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  line-height: 30px;
}
.nav_top .password .btn-forget::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #14151b;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.nav_top .password .btn-forget::after {
  font-family: "icomoon";
  content: "\e91d";
  color: #0e0e0e;
}

.login-group {
  padding: 0 9px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.login-group * {
  transition: all 0.15s ease-in;
}

.language {
  display: inline-flex;
  margin-right: 21px;
  margin-left: 28px;
  color: #9c9c9c;
  position: relative;
}
.language .flag {
  width: 30px;
  height: 30px;
  display: inline-block;
  z-index: 8;
}
.language::after {
  font-family: "icomoon";
  content: "\e90b";
  position: absolute;
  top: 25%;
  right: -20px;
  display: inline-block;
  transform: scale(0.5);
  font-size: 12px;
}
.language:hover {
  color: #ffb300;
}

.language-open {
  display: none;
  position: absolute;
  left: -20px;
  top: 30px;
  width: 72px;
  z-index: 5;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.84);
  background-color: #14151b;
  padding: 0;
  padding-top: 15px;
}
.language-open a {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: center;
}
.language-open li {
  width: 100%;
  position: relative;
}
.language-open li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to right, rgba(236, 166, 0, 0.45) 0%, #eca600 100%);
  opacity: 0;
  transition: all 0.2s ease;
}
.language-open li:hover::after {
  opacity: 1;
}
.language-open .flag-option {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.open {
  display: block;
}

.english {
  background-image: url(../images/icon/languages/icon_usa.svg);
}

.china {
  background-image: url(../images/icon/languages/icon_china.svg);
}

.thailand {
  background-image: url(../images/icon/languages/icon_thailand.svg);
}

.vietnam {
  background-image: url(../images/icon/languages/icon_vietnam.svg);
}

.indonesia {
  background-image: url("../images/icon/languages/icon_ Indonesia.svg");
}

.malaysia {
  background-image: url(../images/icon/languages/icon_malaysia.svg);
}

.page_nav {
  background-color: #ac0b0a;
  position: relative;
}
.page_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9px 0 16px;
}

.nav_logo {
  width: 100px;
  padding: 12px 0;
  margin-left: 22px;
}
.nav_logo.center {
  margin: 0 auto;
}

.nav {
  min-width: 1000px;
  background-color: #ac0b0a;
  position: relative;
}
.nav ul.menu {
  margin: 0 auto;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.nav ul.menu img {
  object-fit: contain;
}
.nav ul.menu > li {
  flex: 1;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fdfdfd;
}
.nav ul.menu > li:hover {
  background-color: #56100d;
  transition: all 0.3s ease;
}
.nav ul.menu > li:hover .nav_selector {
  display: flex;
}
.nav ul.menu > li a {
  width: 100%;
  height: 100%;
  padding: 10px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav ul.menu > li a img {
  object-fit: contain;
}
.nav ul.menu .menu-chose {
  background-color: #56100d;
}
.nav ul.menu span.top-new {
  width: 44px;
  position: absolute;
  top: 0;
  left: 0;
}
.nav ul.menu span.top-new img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .nav {
    min-width: initial;
  }
  .nav ul.menu {
    width: 100%;
  }
}

.big-circle {
  width: 110px;
  height: 110px;
  border: solid 2px #7e2a2a;
  background-color: #2d0201;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.big-circle span {
  opacity: 0.6;
  color: #fff;
  font-size: 50px;
}

.nav_left-img {
  width: 110px;
  height: 110px;
  border: solid 2px #7e2a2a;
  background-color: #2d0201;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_left-img img {
  width: 100%;
}

.nav_rectangle {
  border: 2px transparent solid;
}

.nav_slector_no {
  width: 110px;
}

.acc-box {
  position: relative;
  margin-right: 28px;
}
.acc-box .info {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.acc-box .info img {
  object-fit: contain;
}
.acc-box .username {
  font-size: 13px;
  line-height: 17px;
  font-weight: normal;
}
.acc-box:hover .icon-icon_triangle {
  color: #ffb300;
}
.acc-box .icon-icon_triangle {
  color: #9c9c9c;
  font-size: 12px;
  transform: scale(0.5);
  display: block;
  margin-left: 5px;
  transform-origin: right;
}
.acc-box .icon-user {
  font-size: 28px;
  margin-right: 8px;
}
.acc-box .btn-tertiary {
  position: absolute;
  top: 100%;
  left: 0;
}
.acc-box .link {
  color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  border: solid 1px #424349;
  background-color: #2e2f38;
  line-height: 35px;
  min-width: 100%;
  padding: 0 5px;
  text-align: center;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  z-index: 3;
  white-space: nowrap;
  font-size: 13px;
}

.msg-alert {
  position: relative;
  margin-right: 28px;
}
.msg-alert a {
  display: block;
}
.msg-alert i {
  color: #fff;
  font-size: 1.0625rem;
}
.msg-alert:hover i {
  color: #ffb300;
}
.msg-alert .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff4531;
  position: absolute;
  top: -6px;
  left: -5px;
  border: 2px solid #14151b;
}
.msg-alert .dot img {
  object-fit: contain;
}

footer.main-footer {
  width: 100%;
  background: #ac0b0a;
  padding: 10px 0 44px 0;
}
footer.main-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer.main-footer .container img {
  object-fit: contain;
}

.footer_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_menu ul img {
  object-fit: contain;
}
.footer_menu li {
  font-family: Helvetica;
  font-size: 14px;
  line-height: 20px;
  color: rgba(251, 251, 251, 0.9);
  padding: 0 8px;
  border-left: solid 1px rgba(251, 251, 251, 0.9);
}
.footer_menu li:nth-child(1) {
  padding-left: 0;
  border-left: none;
}

.copy-right {
  font-family: Helvetica;
  font-size: 14px;
  line-height: 20px;
  color: rgba(251, 251, 251, 0.9);
  font-weight: 300;
}

@font-face {
  font-family: "NotoSansTC";
  src: url("../fonts/NotoSansTC/NotoSansTC-Thin.otf") format("opentype");
  font-weight: 100;
}
@font-face {
  font-family: "NotoSansTC";
  src: url("../fonts/NotoSansTC/NotoSansTC-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansTC";
  src: url("../fonts/NotoSansTC/NotoSansTC-Regular.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "NotoSansTC";
  src: url("../fonts/NotoSansTC/NotoSansTC-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansTC";
  src: url("../fonts/NotoSansTC/NotoSansTC-Bold.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "NotoSansTC";
  src: url("../fonts/NotoSansTC/NotoSansTC-Black.otf") format("opentype");
  font-weight: 900;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.woff") format("woff"), url("../fonts/roboto/Roboto-Regular.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.woff") format("woff"), url("../fonts/roboto/Roboto-Medium.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.woff") format("woff"), url("../fonts/roboto/Roboto-Bold.woff2") format("woff2");
  font-weight: 500;
}
.btn-p-y {
  border-radius: 3px;
  text-align: center;
  line-height: 36px;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0 5px;
  position: relative;
  z-index: 1;
  background-image: rgba(0, 0, 0, 0.25);
  color: #a17a0f;
  border: solid 1px #a17a0f;
  background-color: #191a20;
}
.btn-p-y::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to bottom, #e8a300, #5f4300);
  transition: all 0.3s ease;
  opacity: 0;
}
.btn-p-y:hover {
  color: #fff;
}
.btn-p-y:hover::before {
  opacity: 1;
}

.btn-join,
.btn-primary {
  display: inline-block;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  padding: 0 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-join::before,
.btn-primary::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease;
  opacity: 0;
}
.btn-join:hover::before,
.btn-primary:hover::before {
  opacity: 1;
}

.btn-join {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.61)), linear-gradient(to top, #c42222, #f75200);
}
.btn-join::before {
  background-image: linear-gradient(to top, #c42222, #f75200);
}
.btn-join:hover {
  color: #fede1a;
}

.btn-primary {
  background-image: linear-gradient(to top, #193514, #5daf50);
}
.btn-primary::before {
  background-image: linear-gradient(to top, #5daf50, #5daf50);
}
.btn-primary:hover {
  color: #fede1a;
}

.btn-login {
  width: 93px;
  line-height: 30px;
  background-image: linear-gradient(to top, #d4d4d4, #f2f2f0);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  color: #0e0e0e;
  text-align: center;
  display: inline-block;
  margin-left: 8px;
}

.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-group img {
  object-fit: contain;
}
.btn-group [class^=btn-] {
  flex: 1;
  line-height: 40px;
}

.banner {
  max-width: 100%;
  overflow: hidden;
  height: auto;
  background: #2d2d2d;
  margin-bottom: 5px;
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
}
.banner .bar-option-group {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.left-bar {
  width: 50px;
  position: fixed;
  top: 150px;
  left: 17px;
  z-index: 20;
  font-family: "NotoSansTC";
  color: #fdfdfd;
}
.left-bar a {
  display: block;
}
.left-bar .contact {
  display: block;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
}
.left-bar .chat-list {
  margin-bottom: 15px;
}
.left-bar .chat-list .contact {
  background-image: linear-gradient(to bottom, #5dbaff, #2c6db2);
}
.left-bar .phone-list {
  margin-bottom: 15px;
}
.left-bar .phone-list .contact {
  background-image: linear-gradient(to top, #c42222, #f75200);
}
.left-bar .download-list .contact {
  background-image: linear-gradient(to top, #4c9c82, #1cdac8);
}

.left-phone {
  width: 200px;
  border-radius: 25px;
  z-index: 4;
  overflow: hidden;
  display: none;
}
.left-phone ul li {
  display: block;
  width: 100%;
  height: 56px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  color: #fdfdfd;
}
.left-phone ul li:nth-last-child(1) {
  border-bottom: none;
  padding-top: 5px;
}
.left-phone ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  padding-left: 15px;
}
.left-phone ul li p {
  line-height: 17px;
  text-align: left;
}
.left-phone ul li p:nth-child(1) {
  font-weight: bold;
}
.left-phone ul li span {
  width: 30px;
  font-size: 25px;
  margin-right: 10px;
}
.left-phone ul li span.icon-mail {
  font-size: 20px;
}
.left-phone ul li:nth-last-child(1) span {
  margin-left: 15px;
}

.left-open_bottom {
  padding-left: 15px;
  font-size: 25px;
}

.left-phone {
  line-height: 50px;
}

.left-phone {
  background-image: linear-gradient(to top, #c42222, #dd4f09);
}
.left-phone li:hover {
  transition: all 0.3s ease;
  background: #6e0a0a;
}
.left-phone li:hover:nth-last-child(1) {
  background: none;
}

.turn-on .left-phone {
  display: block;
}
.turn-on .left-download {
  display: block;
}
.turn-on .left-chat {
  display: block;
}
.turn-on .contact {
  display: none;
}

.contact.turn-on {
  display: none;
}

.block {
  width: 100%;
  padding-top: 39px;
}

.title_bar {
  width: 100%;
  background-color: #262f3e;
  border-left: solid 6px #ac0b0a;
  display: flex;
  justify-content: space-between;
  padding: 17px 15px 17px 22px;
}
.title_bar .title {
  font-size: 22px;
  font-weight: bold;
  color: #fdfdfd;
  text-transform: uppercase;
}

.steps {
  width: 100%;
  display: flex;
  margin-top: 24px;
  overflow: hidden;
}

.step {
  display: flex;
  justify-content: start;
  align-items: center;
  flex: 1;
  background-image: linear-gradient(to bottom, #ffb300 8%, #d87f00);
  padding: 5px 0 5px 45px;
  position: relative;
}
.step img {
  object-fit: contain;
}
.step:nth-child(1) {
  padding-left: 30px;
}
.step .number {
  display: inline-block;
  line-height: 64px;
  font-family: Arial;
  font-size: 60px;
  font-weight: bold;
  color: #3e2c02;
  text-shadow: 1px 1px #f6c768;
  margin-right: 15px;
}
.step p {
  width: 155px;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  color: #3e2c02;
  line-height: 24px;
}
.step span {
  color: #ffdc8c;
  position: absolute;
  right: 8%;
  bottom: 0;
  font-size: 65px;
}
.step .icon-icon_join {
  transform: scale(1.3);
}
.step:nth-child(1)::after, .step:nth-child(2)::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-top: solid 3px #3e2c02;
  border-right: solid 3px #3e2c02;
  transform: rotate(45deg) skew(15deg, 15deg);
  position: absolute;
  right: -15px;
  z-index: 3;
}

.home_box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 10px;
  background-color: #1e1e25;
}
.home_box img {
  object-fit: contain;
}
.home_box .top-img {
  width: 50%;
  overflow: hidden;
}
.home_box .top-img img {
  width: 100%;
}
.home_box .home_content {
  width: 50%;
  padding: 32px 46px;
}
.home_box .btn-p-y {
  width: 100%;
}
.home_box:nth-last-child(1) {
  margin-bottom: 30px;
}

.home_block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10px;
}
.home_block img {
  object-fit: contain;
}

.home_block_box {
  width: calc(50% - 5px);
  padding: 32px 36px;
  background-color: #1e1e25;
}

.home_block_item {
  width: calc(33.33% - 5px);
  background-color: #1e1e25;
}
.home_block_item .img {
  width: 100%;
  margin-bottom: 10px;
}
.home_block_item img {
  width: 100%;
}
.home_block_item .home_content {
  padding: 10px 30px;
}

.cantact-table {
  font-size: 13px;
  line-height: 19px;
  text-align: justify;
  color: rgba(251, 251, 251, 0.5);
  font-weight: lighter;
  margin-bottom: 20px;
  border-spacing: 0;
}
.cantact-table:nth-last-child(1) {
  margin-bottom: 0;
}
.cantact-table th {
  font-weight: initial;
}
.cantact-table td {
  white-space: nowrap;
}
.cantact-table a {
  color: rgba(93, 186, 255, 0.8);
  text-decoration: underline;
}

.home_btn {
  margin: 20px 0;
}
.home_btn .btn-p-y {
  width: 100%;
}

.home_title {
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: #d39608;
  margin-bottom: 15px;
}
.home_title + h5.home_subtitle {
  margin-top: 35px;
}

.home_subtitle {
  font-size: 15px;
  line-height: 16px;
  font-weight: bold;
  color: #fbfbfb;
  margin-bottom: 10px;
}

.home_p {
  font-size: 13px;
  line-height: 19px;
  color: rgba(251, 251, 251, 0.5);
  font-weight: lighter;
  margin-bottom: 20px;
}
.home_p:nth-last-child(1) {
  margin-bottom: 0;
}
.home_p a {
  color: rgba(93, 186, 255, 0.8);
  text-decoration: underline;
}

.home_strong {
  color: #d39608;
  margin-bottom: 10px;
}

.faq_nav {
  margin: 7px 0 2px 0;
  width: 100%;
}
.faq_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.faq_nav ul img {
  object-fit: contain;
}
.faq_nav li {
  flex: 1;
  text-align: center;
  font-size: 15px;
  color: rgba(251, 251, 251, 0.3);
  background-color: #1d1d23;
  border-right: solid 2px #14151b;
  font-weight: 300;
  transition: all 0.3s ease;
}
.faq_nav li.active {
  color: #fff;
  background-color: #2e2f38;
}
.faq_nav li:hover {
  color: #fff;
  background-color: #2e2f38;
}
.faq_nav li:nth-last-child(1) {
  border-right: none;
}
.faq_nav a {
  display: block;
  padding: 9px;
}

.faq_block {
  padding: 32px 36px 56px 36px;
  background-color: #2e2f38;
  margin-bottom: 7px;
  position: relative;
}
.faq_block:nth-last-child(1) {
  margin-bottom: 20px;
}
.faq_block h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  color: #ffdb38;
}
.faq_block h3 + h5 {
  margin-top: 30px;
}
.faq_block h3 + h4 {
  margin-top: 26px;
}
.faq_block h3 + p {
  margin-top: 30px;
}
.faq_block h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  text-align: justify;
  color: #fdfdfd;
  margin: 20px 0 10px 0;
}
.faq_block h4:nth-child(1) {
  margin-top: 0;
}
.faq_block h5 {
  font-size: 13px;
  line-height: 16px;
  text-align: justify;
  color: #fdfdfd;
  font-weight: 300;
  margin: 20px 0 10px 0;
}
.faq_block h6 {
  font-size: 13px;
  font-weight: 300;
  line-height: 19px;
  text-align: justify;
  color: #c2c2c2;
  margin-bottom: 10px;
}
.faq_block .sub-p {
  padding-left: 13px;
}
.faq_block p {
  font-size: 13px;
  line-height: 19px;
  text-align: justify;
  color: rgba(251, 251, 251, 0.5);
  font-weight: 300;
  margin-bottom: 10px;
}
.faq_block p a {
  color: rgba(93, 186, 255, 0.8);
  text-decoration: underline;
}
.faq_block strong {
  font-weight: 300;
  color: #d39608;
}
.faq_block strong.note {
  display: block;
}
.faq_block .go-top {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 2px #6d7278;
  background-color: #2e2f38;
  position: absolute;
  bottom: 16px;
  right: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq_block .go-top img {
  object-fit: contain;
}
.faq_block .go-top::after {
  content: "\e90c";
  font-family: "icomoon";
  font-size: 18px;
  color: #6d7278;
  font-weight: 600;
}

.faq_img-group {
  display: flex;
  justify-content: start;
  align-items: center;
}
.faq_img-group img {
  object-fit: contain;
}
.faq_img-group img {
  width: 35%;
  margin-right: 10px;
  object-fit: contain;
}

.products_group {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
}
.products_group img {
  object-fit: contain;
}
.products_group .item {
  width: calc(33.33% - 10px);
  background-color: #1e1e25;
}
.products_group .img {
  width: 100%;
  max-height: 187px;
  overflow: hidden;
}
.products_group img {
  width: 100%;
}

.products_content {
  padding: 20px 17px;
}

.products_box {
  background-color: #1e1e25;
  margin-bottom: 10px;
}
.products_box img {
  width: 100%;
}
.products_box:nth-last-child(1) {
  margin-bottom: 20px;
}

.products_table {
  width: 100%;
  border-spacing: 0;
  font-size: 13px;
  line-height: 19px;
  text-align: justify;
  color: rgba(251, 251, 251, 0.5);
  font-weight: 300;
}
.products_table:nth-last-child(1) {
  margin-bottom: 0;
}
.products_table td {
  width: 20%;
  padding: 5px 0;
}

.products_more {
  font-size: 13px;
  line-height: 19px;
  text-align: justify;
  color: rgba(251, 251, 251, 0.5);
  font-weight: 300;
}

.rewards_box {
  padding: 22px 0;
}

.rewards_table {
  font-size: 13px;
  line-height: 19px;
  text-align: justify;
  color: rgba(251, 251, 251, 0.5);
  font-weight: 300;
  border: solid 0.5px #2e3037;
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  margin-bottom: 20px;
}
.rewards_table thead {
  background-color: #18181d;
  color: #fbfbfb;
}
.rewards_table tbody {
  background-color: #1e1e25;
}
.rewards_table td,
.rewards_table th {
  width: 20%;
  border: solid 0.5px #2e3037;
  padding: 10px 11px;
}

.rewards_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.rewards_contact img {
  object-fit: contain;
}
.rewards_contact .item {
  width: calc(50% - 5px);
  opacity: 0.8;
  border-radius: 3px;
  margin-bottom: 5px;
  border: solid 1px #2e3037;
  background-color: #1b1b22;
  color: rgba(251, 251, 251, 0.5);
  transition: all 0.3s ease;
}
.rewards_contact .item > a {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 18px 9px 18px;
}
.rewards_contact .item > a img {
  object-fit: contain;
}
.rewards_contact .item p {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  margin-left: 10px;
}
.rewards_contact .item p > a {
  transition: all 0.3s ease;
  color: rgba(93, 186, 255, 0.8);
  text-decoration: underline;
}
.rewards_contact .item > p {
  padding: 18px;
  margin-left: initial;
}
.rewards_contact .item span {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rewards_contact .item span img {
  object-fit: contain;
}
.rewards_contact .item span.circle {
  transition: all 0.3s ease;
  font-size: 18px;
  color: #1b1b22;
  background: rgba(251, 251, 251, 0.5);
  border-radius: 50%;
}
.rewards_contact .item:hover {
  border: solid 1px #48484f;
  background-color: #24242d;
  opacity: 0.8;
  color: #fff;
}
.rewards_contact .item:hover span.circle {
  background: #fff;
}
.rewards_contact .item:hover p > a {
  color: rgb(93, 186, 255);
}

.rewards_note {
  padding: 32px 37px 26px 36px;
  border: solid 5px #3e3e45;
  background-color: #1a1a21;
  margin-top: 20px;
}
.rewards_note h4 {
  background-image: linear-gradient(to bottom, #ffb300, #d87f00);
  font-size: 18px;
  font-weight: bold;
  line-height: 19px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.rewards_note p {
  font-size: 13px;
  line-height: 19px;
  text-align: justify;
  color: rgba(251, 251, 251, 0.8);
}

:root {
  --table-bg: #2e2f38;
  --table-border: #424349;
  --table-th-bg: #191a20;
  --table-th-color: #fff;
  --table-td-color: #f6f6f6;
}

.admin-block {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: calc(100vh - 180px);
}
.admin-block img {
  object-fit: contain;
}

.admin-nav {
  background-color: #22232b;
  border-radius: 5px 0 0 5px;
  min-width: 140px;
  max-height: 800px;
}
.admin-nav .title {
  color: #ffb300;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  margin-bottom: 10px;
  padding: 0 10px;
}
.admin-nav .item {
  padding: 25px 0;
}
@media screen and (max-width: 1024px) {
  .admin-nav .item li > a {
    padding: 12px 10px;
  }
}
.admin-nav li {
  transition: all 0.2s ease-in;
  color: #fff;
  margin-bottom: 1px;
  font-size: 13px;
  position: relative;
}
.admin-nav li > a {
  padding: 12px 18px;
  display: block;
  position: relative;
}
.admin-nav li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: linear-gradient(to right, rgba(236, 166, 0, 0.45) 0%, #eca600 100%);
  opacity: 0;
  transition: all 0.2s ease-in;
}
.admin-nav li.active::before, .admin-nav li:hover::before {
  opacity: 1;
}

.admin-index {
  flex: auto;
  background-color: #1e1e25;
  border-radius: 0 5px 5px 0;
  padding: 20px;
  position: relative;
}
.admin-index.msg {
  padding-right: 0;
}
.admin-index .refresh-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.admin-heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.admin-sub-heading {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  margin: 35px 0 10px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 13px;
  table-layout: fixed;
  background-color: var(--table-bg);
}
.profile-table td {
  border: 1px solid var(--table-border);
}
.profile-table tr td:not([rowspan]) {
  padding: 14px 20px;
}
.profile-table tr td:not([rowspan]):nth-of-type(odd) {
  color: var(--table-th-color);
  background-color: var(--table-th-bg);
  width: 140px;
}
.profile-table tr td:not([rowspan]).qrcode {
  width: 232px;
}
.profile-table tr td:not([rowspan]):nth-of-type(even) {
  color: var(--table-td-color);
}
.profile-table tr td[rowspan] {
  padding: 20px 10px;
  vertical-align: top;
}
.profile-table tr td[rowspan] img {
  max-width: 100%;
}
@media screen and (min-width: 765px) and (max-width: 1200px) {
  .profile-table tr td:not([rowspan]) {
    padding: 14px 10px;
  }
  .profile-table tr td:not([rowspan]):nth-of-type(odd) {
    width: auto;
  }
  .profile-table tr td:not([rowspan]).qrcode {
    width: auto;
  }
}

.qrcode-img {
  width: 146px;
  margin: 0 auto;
}

.admin-btn-group {
  margin: 10px auto 30px;
  gap: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.admin-btn-group img {
  object-fit: contain;
}
.admin-btn-group .btn {
  min-width: 145px;
  line-height: 36px;
  font-size: 13px;
}

.table-box {
  width: 100%;
  margin-bottom: 20px;
}
.table-box .input,
.table-box .select {
  --input-height: 30px;
  min-width: 92px;
}
.table-box:not(.small, .fit) {
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: inset 0 0 0 1px #d2d9df;
}
.table-box:not(.small, .fit) .admin-table {
  width: initial;
  min-width: 100%;
}
.table-box:not(.small, .fit) .admin-table th {
  white-space: nowrap;
}
.table-box:not(.small, .fit) .admin-table th.middle-th {
  white-space: normal;
}
.table-box:not(.small, .fit) .admin-table td {
  white-space: nowrap;
}
.table-box:not(.small, .fit)::-webkit-scrollbar {
  width: 10px;
}
.table-box:not(.small, .fit)::-webkit-scrollbar:horizontal {
  height: 4px;
}
.table-box:not(.small, .fit)::-webkit-scrollbar-track {
  background-color: rgba(204, 204, 204, 0.3);
}
.table-box:not(.small, .fit)::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a6b2bd;
}
.table-box.small .admin-table {
  width: initial;
  min-width: initial;
}
.table-box.small .admin-table th {
  white-space: nowrap;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 13px;
  table-layout: auto;
  background-color: var(--table-bg);
}
.admin-table th {
  border: 1px solid var(--table-border);
  color: var(--table-th-color);
  background-color: var(--table-th-bg);
  padding: 14px 5px;
  font-weight: bold;
}
.admin-table thead tr:nth-child(2) th {
  min-width: 100px;
}
.admin-table tbody th {
  text-align: left;
  padding: 14px 20px;
}
.admin-table td {
  text-align: center;
  padding: 7px;
  color: var(--table-td-color);
  font-weight: 300;
  border: 1px solid var(--table-border);
  line-height: 18px;
  vertical-align: middle;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-table td.text-right {
  text-align: right;
  padding: 0 13px;
}
.admin-table td a {
  color: #007dda;
  font-weight: 500;
  text-decoration: underline;
}
.admin-table td.minus {
  color: #c72e08;
}
.admin-table td.add {
  color: #1f9550;
}
.admin-table td.copy-box {
  position: relative;
  padding-right: 40px;
}
.admin-table td.copy-box .copy-btn {
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
}
.admin-table .key-th {
  width: 36px;
  min-width: 36px;
}
.admin-table .edit-th {
  width: 80px;
}
.admin-table .total-th {
  min-width: 155px;
}
.admin-table .form-th {
  width: 310px;
}
.admin-table .middle-th {
  max-width: 130px;
}
.admin-table .url {
  color: #90a6b4;
  vertical-align: text-bottom;
  display: inline-block;
  margin-left: 3px;
}

.edit-btn {
  font-size: 19px;
  color: #fff;
  transition: all 0.15s ease-in;
  padding: 3px;
}
.edit-btn i {
  vertical-align: middle;
}
.edit-btn:hover {
  color: #ffb300;
}

.delete-btn,
.check-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.15s ease-out;
}
.delete-btn:hover,
.check-btn:hover {
  transform: scale(1.2);
}

.check-btn {
  background: #30a125;
}

.delete-btn {
  background: #bc4a2d;
}
.delete-btn i {
  transform: scale(1.5);
}

.input {
  width: 100%;
  border-radius: 3px;
  border: solid 1px #dcddde;
  background-color: #f6f7f8;
  line-height: 27px;
  padding: 0 10px;
  color: #040404;
}
.input:focus {
  border-color: #007dda;
  background-color: #fff;
}

.admin-search {
  margin-bottom: 21px;
}
.admin-search .box {
  display: flex;
  justify-content: start;
  align-items: flex-end;
  flex-wrap: wrap;
}
.admin-search .box img {
  object-fit: contain;
}
.admin-search .box > * {
  margin-bottom: 10px;
}
.admin-search .box:not(:nth-child(1)) {
  margin-top: 10px;
}
.admin-search .form-col {
  margin-right: 10px;
}
.admin-search .btn {
  line-height: 30px;
  min-width: 120px;
  margin-right: 10px;
}
.admin-search .title {
  color: #cccccc;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}
.admin-search .input {
  width: 140px;
  display: inline-block;
}

.connect-word {
  font-size: 0.75rem;
}

.date-box {
  width: 150px;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  border: solid 1px #dcddde;
  background-color: #f6f7f8;
  position: relative;
}
.date-box i {
  position: absolute;
  top: 6px;
  right: 7px;
  color: #77828b;
  font-size: 18px;
}
.date-box input {
  width: 100%;
  line-height: 30px;
  padding: 0 30px 0 7px;
  cursor: pointer;
}

.btn-selector {
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
.btn-selector .btn {
  font-size: 13px;
  margin-right: initial;
}
.btn-selector .btn i {
  display: inline-block;
  font-size: 12px;
  transform: scale(0.6);
}
.btn-selector .menu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 4px 0;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
.btn-selector .menu li {
  text-align: center;
  font-size: 13px;
  transition: all 0.15s ease;
  color: #242424;
}
.btn-selector .menu li:hover {
  background-color: #d6d6d7;
}
.btn-selector .menu a {
  display: block;
  padding: 7px 4px;
}

.amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.amount-box img {
  object-fit: contain;
}
.amount-box .col {
  text-align: left;
  margin-left: 5px;
}
.amount-box .num {
  display: block;
  line-height: 10px;
  margin-bottom: 3px;
}
.amount-box .mark {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #18528a;
  border-radius: 3px;
  background-color: #e0e7ed;
  line-height: 14px;
  padding: 0 4px;
}

.form-box {
  position: relative;
}
.form-box .input {
  padding-right: 50px;
}
.form-box .input:focus + .submit-btn {
  background-image: linear-gradient(to bottom, #1c80d1, #04488c);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  color: #fff;
}
.form-box .submit-btn {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 5px;
  border-radius: 0 2px 2px 0;
  height: 30px;
  font-size: 12px;
}

.submit-btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #3f4f71;
  border-radius: 3px;
  background-image: linear-gradient(to bottom, #dddfe2, #b0b5c0);
}
.submit-btn img {
  object-fit: contain;
}
.submit-btn.next [class^=icon-] {
  transform: rotate(180deg);
}

.page-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.page-selector img {
  object-fit: contain;
}
.page-selector .submit-btn {
  width: 27px;
  height: 24px;
  margin: 0 14px;
}
.page-selector .info {
  font-size: 13px;
  color: #fff;
}
.page-selector .page-num {
  --height: 24px;
  min-width: 40px;
  height: var(--height);
  display: inline-block;
  margin: 0 10px;
  border-radius: 3px;
  border: solid 1px #b7c7d2;
  background-color: #fffefe;
  color: #061641;
  font-size: 13px;
  padding-right: 15px;
  cursor: pointer;
  position: relative;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 10px) calc(var(--height) / 2 - 2px), calc(100% - 5px) calc(var(--height) / 2 - 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.status-mark {
  width: 100%;
  text-align: center;
  border-radius: 3px;
  display: inline-block;
  font-size: 13px;
  line-height: 28px;
  padding: 0 9px;
}
.status-mark.approval {
  color: #05440e;
  background-color: #97e2a2;
}
.status-mark.reject {
  color: #620000;
  background-color: #f6bdbd;
}
.status-mark.pending {
  color: #454d5d;
  background-color: rgba(147, 157, 179, 0.55);
}
.status-mark.progress {
  color: #02547d;
  background-color: #8ccff1;
}

.banner-demo {
  max-width: 184px;
  max-height: 27px;
  margin: 0 auto;
}

.embed-code {
  max-width: 450px;
  border: none;
  font-size: 12px;
  line-height: 19px;
  color: #77828b;
  text-align: left;
  padding: 0 15px;
  word-break: break-word;
}

.copy-btn {
  color: #77828b;
  font-size: 19px;
  transition: all 0.15s ease-in;
}
.copy-btn:hover {
  color: #007dda;
}

.alert-popup {
  position: fixed;
  top: calc(50vh - 60px);
  left: calc(50vw - 270px / 2);
  width: 270px;
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  border: solid 1px #c8daea;
  background-color: rgba(250, 250, 250, 0.9);
  text-align: center;
  padding: 18px;
  pointer-events: none;
}
.alert-popup .check-mark {
  display: flex;
  border: solid 1px #368528;
  background-image: linear-gradient(to bottom, #368528, #2b6920);
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto 20px;
}
.alert-popup .check-mark::before {
  opacity: 1;
  font-size: 20px;
  font-weight: bold;
}
.alert-popup p {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #363636;
}

.fade-out {
  animation: fadeOut 4s ease-in-out both;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.refresh-btn {
  border-radius: 3px;
  border: solid 1px #b7c7d2;
  line-height: 13px;
  padding: 6px 14px;
  background-color: #fff;
  color: #496476;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  transition: all 0.15s ease-in;
}
.refresh-btn img {
  object-fit: contain;
}
.refresh-btn:hover {
  background-color: #496476;
  color: #f1f5f8;
  background-color: #496476;
}
.refresh-btn i {
  font-size: 1.0625rem;
  margin-right: 6px;
}

.admin-msg-block {
  margin-top: 30px;
  max-height: 710px;
  overflow-y: scroll;
  padding-right: 20px;
  padding-bottom: 10px;
  position: relative;
}
.admin-msg-block::-webkit-scrollbar {
  width: 4px;
}
.admin-msg-block::-webkit-scrollbar-track {
  background-color: rgba(204, 204, 204, 0.3);
}
.admin-msg-block::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #a6b2bd;
}
.admin-msg-block .item {
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid #dcddde;
}
.admin-msg-block .item img {
  object-fit: contain;
}
.admin-msg-block .item:nth-child(1) {
  border-top: 1px solid #dcddde;
}
.admin-msg-block .item:hover .content,
.admin-msg-block .item:hover .time-box {
  background-color: #f7f8f9;
}
.admin-msg-block .time-box {
  padding: 20px;
  color: #77828b;
  width: 110px;
  line-height: 16px;
  border-radius: 5px 0 0 5px;
  transition: all 0.15s ease-in;
}
.admin-msg-block .date {
  font-size: 0.8125rem;
}
.admin-msg-block .time {
  font-size: 0.75rem;
}
.admin-msg-block .content {
  flex: auto;
  word-break: break-word;
  padding: 20px 20px 20px 0;
  border-radius: 0 5px 5px 0;
  color: #4a4f56;
  font-size: 0.8125rem;
  line-height: 20px;
  transition: all 0.15s ease-in;
}
.admin-msg-block .content strong {
  font-weight: bold;
}

:root {
  --input-height: 36px;
}

.join-block {
  background-color: #1e1e25;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 60px 0;
}
.join-block img {
  object-fit: contain;
}
.join-block .col {
  flex: auto;
  position: relative;
}
.join-block .form {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 25px;
}
.join-block .form img {
  object-fit: contain;
}
.join-block .input-box,
.join-block .input-check-box {
  position: relative;
  flex: auto;
  max-width: 238px;
}
.join-block .input,
.join-block .select {
  min-width: 1px;
  width: 238px;
}
.join-block .btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 55px;
}
.join-block .btn-group img {
  object-fit: contain;
}
.join-block .btn-group .btn {
  flex: 1;
  line-height: var(--input-height);
}

.step-block {
  max-width: 431px;
  width: 45%;
  min-height: 789px;
  background: center/cover url(../images/img_join_now.jpg);
  padding: 60px 0;
}
.step-block .title {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  background-image: linear-gradient(to bottom, #ffb300, #d87f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 53px;
  font-weight: bold;
}

.join-step-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.join-step-box img {
  object-fit: contain;
}
.join-step-box ul {
  margin: 0 auto;
  counter-reset: joinStep;
  position: relative;
}
.join-step-box ul::before {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #b7bbc5;
  position: absolute;
  top: 0;
  left: 15px;
}
.join-step-box li {
  color: #dce0e8;
  font-weight: 500;
  margin-bottom: 65px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
}
.join-step-box li img {
  object-fit: contain;
}
.join-step-box li::before {
  content: counter(joinStep);
  counter-increment: joinStep;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  background: #8c8f95;
  margin-right: 10px;
  color: #f5f8ff;
}
.join-step-box li:nth-last-child(1) {
  margin-bottom: initial;
}
.join-step-box li:nth-last-child(1)::before {
  content: "\e911";
  font-family: "icomoon";
  font-size: 12px;
  color: inherit;
  font-weight: bold;
}
.join-step-box li.active {
  color: #17c475;
}
.join-step-box li.active::before {
  color: #1d1c1c;
  border: 2px solid #410805;
  box-shadow: 0 0 0 1px rgba(21, 205, 121, 0.8);
  background-image: linear-gradient(to bottom, #118ebe, #27d567 98%);
  transform: translateX(-2px);
}

.join-form-box {
  max-width: 420px;
  margin: 0 auto;
  padding: 64px 10px 30px;
}

.label {
  color: rgba(255, 255, 255, 0.9);
  line-height: 18px;
  font-weight: 500;
  display: block;
  font-size: 14px;
  padding-top: calc((var(--input-height) - 14px) / 2);
}
.label > span {
  color: #e02020;
}

.input-box.datepick .icon-date {
  color: #6d7278;
  position: absolute;
  top: 12px;
  right: 10px;
  pointer-events: none;
}
.input-box.mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.input-box.mobile img {
  object-fit: contain;
}
.input-box.mobile .input-msg {
  padding-top: initial;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
}

.input,
.select {
  flex: 1;
  border-radius: 3px;
  border: solid 1px #51525f;
  display: inline-block;
  line-height: var(--input-height);
  background-color: #22232b;
  padding: 0 25px 0 10px;
  --color: #9c9c9c;
  color: var(--color);
}
.input:focus,
.select:focus {
  background-color: #424350;
  border: solid 1px #d8d8d8;
  color: #d8d8d8;
}
.input.year,
.select.year {
  min-width: 138px;
}
.input.mobile-country-code,
.select.mobile-country-code {
  max-width: 75px;
}
.input.error,
.select.error {
  border-color: #d94e4e;
}
.input:-webkit-autofill, .input:-webkit-autofill:hover, .input:-webkit-autofill:focus,
.select:-webkit-autofill,
.select:-webkit-autofill:hover,
.select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.select {
  text-overflow: ellipsis;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(var(--input-height) / 2 - 2px), calc(100% - 10px) calc(var(--input-height) / 2 - 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.input-msg {
  padding-top: 5px;
  font-size: 13px;
  margin-bottom: -15px;
  width: 100%;
}
.input-msg.error {
  color: #d94e4e;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 5px;
}
.input-msg.error img {
  object-fit: contain;
}
.input-msg.error::before {
  content: "\e913";
  font-family: "icomoon";
  font-size: inherit;
  color: inherit;
}

.input-check-box {
  position: relative;
  border-radius: 5px;
  font-size: 15px;
}
.input-check-box .input {
  padding-right: 80px;
}
.input-check-box .btn-check {
  position: absolute;
  top: 1px;
  right: 1px;
}
.input-check-box + .label {
  margin-top: 27px;
}
.input-check-box .icon-check {
  color: #48ad1c;
  position: absolute;
  top: 12px;
  left: calc(100% + 6px);
  font-size: 15px;
}

.btn-check {
  display: inline-block;
  height: 36px;
  background-image: linear-gradient(to top, #2e3034, #6d7278);
  width: 78px;
  font-weight: 500;
  line-height: 12px;
  color: #ffffff;
  padding: 0 10px;
  border-left: solid 1px #6a6f75;
}
.btn-check:hover {
  background-image: linear-gradient(to top, #6d7278, #2e3034);
}

.checkbox label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 12px;
  line-height: 18px;
  text-align: justify;
  color: #7e7f8d;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + label .check-mark {
  background: #368528;
  border-color: #368528;
}
.checkbox input[type=checkbox]:checked + label .check-mark::before {
  opacity: 1;
}
.checkbox a {
  color: rgba(252, 177, 0, 0.8);
}

.check-mark {
  position: absolute;
  top: 2px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid 1.5px #6f7080;
  transition: all 0.1s linear;
}
.check-mark img {
  object-fit: contain;
}
.check-mark::before {
  content: "\e911";
  font-family: "icomoon";
  font-size: 12px;
  color: #fff;
  opacity: 0;
  transition: all 0.1s linear;
}

.join-back-btn {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 13px;
  font-weight: bold;
  color: #6d7278;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  gap: 10px;
  transition: all 0.15s ease-in;
}
.join-back-btn img {
  object-fit: contain;
}
.join-back-btn:hover {
  color: #D09407;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.modal img {
  object-fit: contain;
}

.modal-box {
  border-radius: 10px;
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #f6f7f8;
  text-align: center;
  width: 370px;
  min-height: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}
.modal-box img {
  object-fit: contain;
}
.modal-box .mark {
  display: block;
  width: 90px;
  aspect-ratio: 1/1;
  font-size: 40px;
  color: #fff;
  background-image: linear-gradient(to bottom, #ff8f3c, #e9531b);
}
.modal-box .title {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0;
}

.blowUpModal {
  animation: blowUpModal 0.3s ease forwards;
}

@keyframes blowUpModal {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.login-box {
  border-radius: 3px;
  border: solid 1px #22232b;
  background-color: #14151b;
  width: 430px;
  min-height: 380px;
  position: relative;
}
.login-box .title {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  box-shadow: 0 1px 0 0 #595959;
  background-color: #22232b;
}
.login-box .title img {
  object-fit: contain;
}
.login-box .close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 32px;
  color: #8e8e8e;
}

.modal-content {
  padding: 15px 44px 40px;
}
.modal-content .sub-info {
  font-size: 12px;
  line-height: 14px;
  color: #8e8e8e;
  margin-top: 10px;
  text-align: right;
}
.modal-content .sub-info a {
  display: inline-block;
}
.modal-content .sub-info a:hover {
  text-decoration: underline;
}
.modal-content .btn-group {
  margin-top: 40px;
}
.modal-content .form {
  margin-top: 25px;
}
.modal-content .input-msg {
  margin-bottom: initial;
}
.modal-content .label {
  margin-bottom: 5px;
  padding-top: initial;
}
.modal-content .sub-title {
  text-align: center;
  color: #7e97bd;
  font-size: 12px;
  margin-top: 20px;
}

.loading {
   display: none;
   position: absolute;
   top: 42%;
   left: 47%;
   aspect-ratio: 1/1;
   width: 30px;
   background-color: transparent;
   background-image: url(../images/loding.gif);
   background-size: contain;
}