html {
  --header-height: 55px;
  --main-inset:12px;
  --component-bg-color: #1C1F26;
  --component-bg-color2: #26334D;
  --component-bg-gt1: linear-gradient(170deg, #4194e4 -8.23%, #2B4BFF 70.03%);
  --component-dim-text-color: #ffffff99;
  --component-dim-text-color2: #BFD2E9;
  --component-border-color: #303847;
  --dialog-bg-color:#292C32;
  --theme-bg: #121212;
  --theme-bg-gt1: #121212;
  --theme-color: #0031A9;
  --theme-hili-color: #DD6419;
  --theme-hili-text-color: #DD6419;
  --theme-hili-bg-gt1: linear-gradient(170deg, #4194e4 -8.23%, #2B4BFF 70.03%);
  --theme-button-bg-gt1: linear-gradient(186deg, #54D7FE -8.23%, #2B4BFF 70.03%);
  --theme-underline-gt: linear-gradient(270deg, #E8F45B 0%, #E1A200 97.43%);
  --input-bg:#37414F;
  --input-disabled-bg: #37414F;
  --footer-toolbar-bg: #070707;
  --input-action-text-color: #23252A;
  --swiper-pagination-color: #77B3D2;
  --supporting-color: #68707B;
  --filter-to-white: brightness(0%) invert(99%) sepia(3%) saturate(210%) hue-rotate(313deg) brightness(117%) contrast(100%); 
  --filter-to-supporting-color: brightness(0%) invert(45%) sepia(4%) saturate(1084%) hue-rotate(175deg) brightness(95%) contrast(92%);
  --filter-to-theme-hili-color: brightness(0%) invert(42%) sepia(32%) saturate(2234%) hue-rotate(352deg) brightness(99%) contrast(91%); 
  --filter-to-68707B: brightness(0%) invert(47%) sepia(2%) saturate(2000%) hue-rotate(176deg) brightness(91%) contrast(85%);
  font-family: Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  --zindex-app-toolbar: 10;
  --zindex-modal: 11;
}

html,
body {
  font-family: "Heebo", sans-serif;
  padding: 0;
  margin: 0;
  height: 100%;
  background: var(--theme-bg);
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a[disabled]{
  opacity: 0.4;
  pointer-events: none;
}

/* 移除數字input上下箭頭 Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 移除數字input上下箭頭 Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* animation */
@keyframes placeHolderShimmer{
  0%{
      background-position: -100vw 0
  }
  100%{
      background-position: 100vw 0
  }
}
/* animation / */

/* general */
.d_none{
  display: none;
}

.d_none\!{
  display: none!important;
}

.noscroll {
  overflow: hidden;
}

.text_white{
  color: #fff;
}

.font_bold{
  font-weight: 700;
}

.w_full{
  width: 100%;
}

img {
  display: block;
  border: 0;
}

.container {
  width: 100%;
  min-width: 320px;
  margin: auto;

  display: flex;
  flex-direction: column;
  min-height: 100%;
}

label {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
header{
}
header.sticky_top{
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--theme-bg);
}
.header_container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px 10px;
  gap: 7px;
}
.header_container .header_col{
  width: 50px;
}
.header_container .header_col:nth-child(2){
  text-align: center;
  font-weight: 700;
  flex: 1;
  overflow: hidden;
}
.header_container .header_col:nth-child(3){
  text-align: right;
  width: 50px;
}
/* .subpage .header_container {
} */

.header_container .page_back_button {
  width: 22px;
}
.header_container #page_back_button{
  display: inline-flex;
}

.header_container,
.body_container {
  margin: 0 var(--main-inset);
}

#a_headerset{
  display: inline-block;
}

.language_icon {
  width: 22px;
}

.footer_nav_container {
  height: 54px;
  justify-self: flex-end;
  margin-top: auto;
}

.footer_nav {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  height: calc(54px + constant(safe-area-inset-bottom));
  height: calc(54px + env(safe-area-inset-bottom));
}

.textfield {
  margin-bottom: 20px;
  color: #668CBB;
}

.textfield_note {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #71757e;
  margin-top: 6px;
  display: block;
}

.page_title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #FFFFFF;
}

.page_banner img {
  width: 100%;
}

.page_back_button path {
  fill: #FDFDFF;
}

.language_container {
  position: relative;
}

.language_dropdown {
  padding: 18px 16px;
  background: #23252A;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 25px;
  z-index: 2;
  min-width: 180px;
  display: none;
}

.language_dropdown>.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 1px solid #EEEEEE;

  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #A7A7A7;
  ;
}

.language_dropdown>.item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.language_dropdown>.item.active {
  color: var(--theme-hili-color);
}

.language_dropdown>.item.active::after {
  background: url(../images/general/tick.svg) no-repeat top left;
  filter: brightness(0) invert(67%) sepia(99%) saturate(382%) hue-rotate(4deg) brightness(109%) contrast(80%);
  ;
  width: 13px;
  height: 9px;
  display: block;
  content: '';
}

/* button */
.button {
  border-radius: 999px;
  padding: 14px 16px;
  border: 0;
  color: #FFFFFF;
  white-space: nowrap;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  text-decoration: none;
}

.button:disabled {
  opacity: .4;
}

.primary_button {
  background: var(--theme-hili-color);
  color: #fff;
}

.secondary_button {
  background: none;
  color: var(--theme-hili-color);
}

.third_button {
  background: #FFFFFF;
  color: #23252A;
}

.fourth_button {
  background: none;
  color: var(--theme-hili-color);
  border: 1px solid var(--theme-hili-color);
  border-radius: 20px;
  padding: 10px 18px;
}

.hili_button{
  background: linear-gradient(172deg, #FFFD06 6.19%, #E2A201 71.44%);
}

.gt_button{
  background: linear-gradient(184deg, #54D7FE, #2B4BFF);
}

.icon_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
}

.icon_button img {
  margin-left: 6px;
}

.app_download_button {
  background: var(--theme-button-bg-gt1);
}

/* text box */
::-webkit-input-placeholder {
  /* Edge */
  color: #999999;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
}

::placeholder {
  color: #999999;
}

input[type=text],
input[type=password],
input[type=date],
input[type=number],
select,
textarea {
  padding: 15px 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background: #1C1F26;
  border: 1px solid #303847;
  width: 100%;
  outline: none;
  -webkit-appearance: initial;
}

input[type=text],
input[type=password],
input[type=date],
input[type=number],
select{
  border-radius: 50px;
}

textarea{
  border-radius: 8px;
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
select::placeholder,
textarea::placeholder{
  color: #68707B;
}

select {
  background: url(../images/general/down_arrow.svg) no-repeat right 13px center #1C1F26;
  padding-right: 35px !important;
  color:#fff;
}

input:read-only,
select.readonly,
.readonly {
  background: #353941;
  border: 1px solid #292C32;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #CCCCCC;
}

/* checkbox */
.checkbox_container {
  line-height: 18px;
  display: block;
  position: relative;
  padding-left: 22px;
  user-select: none;
  font-size: 12px;
}

.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox_container .checkbox_content {
  color: #A5ADC1;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.checkbox_container:hover input~.checkmark {
  background-color: transparent;
}

.checkbox_container input:checked~.checkmark {
  background-color: var(--theme-hili-color);
  border: 1px solid var(--theme-hili-color);
}

.checkbox_container input:checked ~ .checkbox_content{
  color: #fff;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox_container input:checked~.checkmark:after {
  display: block;
}

.checkbox_container .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox_container [type=radio] ~ .checkmark{
  border-radius: 50%;
}
/* checkbox */

/* modal */
.modal_container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--zindex-modal);
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
}

.modal_title{
  color:#E6CC2F;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(18 / 16);
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  padding: 0 20px;
}

.modal_title .modal_close{
  left: auto;
  right: 0;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: auto;
}

.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% - 20px);
  background: var(--component-bg-color);
  border-radius: 20px;
  padding: 27px 30px;

  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #2B2E34;
}

.modal_inner_content {
  min-height: 200px;
  max-height: 60vh;
  overflow-y: auto;
  width: 100%;
}

.modal_close {
  position: absolute;
  bottom: -32px;
  left: 10px;
  width: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.modal_permenant_close {
  color: #fff;
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}


/* modal bottom */
.modal_bottom_container {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
  transition: opacity .3s ease-out;
}

.modal_bottom_container.active {
  visibility: visible;
  opacity: 1;
}

.modal_search_box{
  margin-bottom: 22px;
  position: relative;
}

.modal_search_box input{
  height: 38px;
  border: none;
}

.modal_search_box .modal_search_box_icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.modal_bottom_content .modal_search_box input::placeholder{
  color:#555A65;
}

.modal_bottom_content {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  min-height: 200px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
  background: #292C32;
  border-radius: 20px 20px 0px 0px;
  transition: bottom .3s ease-out, visibility .3s ease-out;

  display: flex;
  flex-direction: column;
}

.modal_bottom_content input::placeholder{
  color:#CCCCCC;
} 

.modal_bottom_container.active .modal_bottom_content {
  bottom: 0;
}

.modal_bottom_container .modal_search_box input{
  background: #1C1F26;
  border: 1px solid #34383F;
  font-size: 14px;
}

.modal_bottom_body{
  min-height: 0;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
}

.modal_bottom_title {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 25px;
  padding: 0 30px;
  font-weight: 700;
  min-height: 1.3em;
}

.modal_header_close{
  position: absolute;
  top: 30px;
  right: 30px;
}

.modal_header_close:before{
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  right: -7px;
  bottom: -7px;
  left: -7px;
}

.modal_header_close img{
  filter: brightness(0) invert(68%) sepia(23%) saturate(202%) hue-rotate(185deg) brightness(99%) contrast(86%);
}

.modal_bottom_section_title{
  color:#fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 24px;
}

.modal_bottom_buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

/* vip icon & label */
.vip_icon {
  background: url(../images/vip/vip_label3.svg) no-repeat top left;
  background-size: 100% 100%;
  width: 52px;
  aspect-ratio: 52 / 24;
  position: relative;
}

.vip_label {
  position: absolute;
  left: 23px;
  bottom: 4px;
  width: 29px;
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  font-weight: bold;
  line-height: 1;
  transform: scale(calc(10 / 12));
}
.vip_label:before{
  content: 'V';
  display: inline-block;
}

/* progress bar */
.progress_bar {
  background-color: #494C51;
  border-radius: 9px;
  height: 18px;
  position: relative;
}

.progress_bar .progress_bar_inner {
  background-color: #F77F35;
  border-radius: 9px;
  height: 18px;
  width: 0;
}

.progress_bar .progress_bar_value {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  text-align: center;
}

.progress_bar .progress_bar_two_value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 13px;

  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
}

.progress_bar.disabled .progress_bar_value {
  color: var(--supporting-color);
}

/* sub tabs */
.tab_container {
  margin-bottom: 20px;
}

.tab_container .tab_content a {
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #A4AAB6;
  white-space: nowrap;
  transform: scale(1) perspective(1px);
  transform-origin: bottom;
  display: block;
}

.tab_container .tab_content a.active {
  color: #fff;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  backface-visibility: hidden;
}

.tab_content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-around;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tab_content::-webkit-scrollbar{
  display: none;
}

/* alert box */
.alert_box {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert_box_content {
  padding: 25px 20px;
  background: var(--component-bg-color);
  border-radius: 20px;
  width: calc(100% - 60px);
  min-height: 200px;
}

.alert_box_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.alert_box_title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
}

.alert_box_html {
  margin-bottom: 20px;
}

.alert_box_close,
.alert_box_save {
  display: flex;
  justify-content: center;
}

.alert_box_save button {
  width: 160px;
}

/* switch toggle button */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 32px;
  -webkit-tap-highlight-color: transparent;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A7A7A7;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 32px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 1px;
  bottom: 1px;
  background-color: #23252A;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: #77B3D2;
}

input:focus+.slider {
  box-shadow: 0 0 1px #77B3D2;
}

input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* empty content */
.empty_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.empty_content img{
  width: 90px;
  display: block;
  margin: 0 auto;
}

.empty_content .text {
  margin-top: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: var(--supporting-color);
}


/* reward animation */
.reward_animation_container {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reward_animation_start {
  width: 470px;
  height: 337px;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.reward_body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.reward_top {
  position: absolute;
  left: 40%;
  top: 16.2%;
}

.reward_congrat {
  position: absolute;
  left: 50%;
  top: 39%;
  transform: translateX(-50%);
}

.reward_bubble {
  width: 258px;
  height: 95px;
  position: absolute;
  left: 23%;
  top: 46%;
  background: url(../images/general/reward_bubble_box.png) no-repeat left top;
  opacity: 0;

  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 36px;
}

.reward_close {
  position: absolute;
  right: 19%;
  top: 42%;
  width: 34px;
  height: 34px;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.reward_animation_start.animation .reward_congrat {
  animation-name: rewardCongrat;
  animation-duration: .4s;
  animation-fill-mode: forwards;
}

@keyframes rewardCongrat {
  0% {
    left: 50%;
    transform: translateX(-50%) scale(.2);
  }

  70% {
    transform: translateX(-50%) scale(1.2);
  }

  100% {
    left: 50%;
    transform: translateX(-50%) scale(1);
  }
}

.reward_animation_start.animation .reward_top {
  animation-name: rewardTop;
  animation-duration: .4s;
  animation-fill-mode: forwards;
}

@keyframes rewardTop {
  0% {
    top: 40%;
    transform: scale(.2) rotate(-50deg);
  }

  70% {
    transform: scale(1.2) rotate(0deg);
  }

  100% {
    top: 16.2%;
    transform: scale(1);
  }
}

.reward_animation_start.animation .reward_body {
  animation-name: rewardBody;
  animation-duration: .4s;
  animation-fill-mode: forwards;
}

@keyframes rewardBody {
  from {
    transform: translate(-50%, -50%) scale(.2);
  }

  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.reward_animation_start.animation .reward_bubble {
  animation: rewardBubble .25s ease-in-out 0.2s 1 normal forwards;
}

@keyframes rewardBubble {
  0% {
    opacity: 0;
    transform: scale(.2);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.reward_animation_start.animation .reward_close {
  animation: rewardClose .25s ease-in-out 0.2s 1 normal forwards;
}

@keyframes rewardClose {
  0% {
    opacity: 0;
    transform: scale(.2);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

input.search_input_dark{
  background: #002241;
  border-color: #002241;
  caret-color: #A7A7A7;
  color: #A7A7A7;
  background-image: url(../images/general/gt-yellow-search.svg);
  background-position: right 13px center;
  background-repeat: no-repeat;
  padding-right: 40px;
  padding-top: 12px;
  padding-bottom: 12px
}

.red-dot {
    position: absolute;
    top: 0px;
    right: -12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: red;
    display: block;
}

.new_inbox_msg{
  width: 27px;
  height:13px;
  background-image: url(../images/general/new.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0px;
  right: -32px;
}

.fav-btn{
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fav-btn:after{
  content:'';
  display: block;
  position: absolute;
  top: -9px;
  right: -9px;
  bottom: -9px;
  left: -9px;
}
.fav-btn:before{
  /* content:'';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  opacity: 1;
  border-radius: 50%; */
}
.fav-btn.fav-btn_active:before{
  opacity: 0;
}
.fav-btn__img{
  max-width: 100%;
  max-height: 100%;
}

[rel="img_container"]{
  position: relative;
}

[rel="img_container"] .fav-btn{
  position: absolute;
  top: 3px;
  right: 3px;
}

body:not(.logged-in) .fav-btn{
  display: none;
}

.pwd-ipt{
  position: relative;
  margin-bottom: 20px;
}

.pwd-ipt .textfield{
  margin-bottom: 0;
}

.pwd-ipt__view, .pwd-ipt__hide{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  filter: brightness(0) invert(66%) sepia(3%) saturate(0%) hue-rotate(175deg) brightness(100%) contrast(95%);
}
.pwd-ipt__toggle{
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  cursor: pointer;
}

#chat-widget-container{
  /* lower than announcement_modal and appToolbar */
  z-index: 6!important;
  right: 8px!important;
  bottom: 113px!important;
  max-height: calc(100% - 116px)!important;
}


.ant-modal{
  background: rgba(0,0,0,0.85);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.ant-modal-content{
  background: #002241;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  transition: .3s;
  transform: scale(0);
  color:#fff;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}

.ant-modal.active {
  opacity: 1;
  visibility: visible;
}

.ant-modal.active .ant-modal-content{
  transform: scale(1);
}

.ant-modal-body{
  width: 263px;
  max-width: 100%;
  margin: auto;
  min-height: 0;
  flex-grow: 1;
  overflow-y: auto;
}

.ant-modal-title{
  text-align: center;
  color:#fff;
  font-size: 16px;
  padding: 0 20px;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.ant-modal-close{
  position: absolute;
  top: 12px;
  right: 15px;
}

.ant-modal-intro-title{
  color: #A7A7A7;
  margin-bottom: 10px;
}

.ant-modal-intro-content{
  margin-bottom: 25px;
  padding-left: 1em;
}

.pwa-install-instruction-android .ant-modal-content{
  bottom: auto;
  top: 0;
  left: auto;
  border-radius: 0;
}

body:not(.logged-in) .fav-btn{
  display: none;
}

body.pwa-app .footer_nav_container{
  height: 64px;
}

body.pwa-app .footer_nav{
  height: 64px;
  background: #070707;
}
.pwa-prompt{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.pwa-prompt-content{
  width: 260px;
  max-width: calc(100% - 30px);
  position: absolute;
  padding: 6px 10px;
  background: #000;
  color:#fff;
  border-radius: 6px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid #fff;

  transition: .3s;
  transform: translateX(-50%) translateY(calc(50px + 100%));
  /* display: none; */
}
.pwa-prompt-content:after{
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #000;
  position: absolute;
  border: 1px solid #fff;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) translateX(-3px) translateY(-5px);
  border-top-width: 0;
  border-left-width: 0;
}
.pwa-prompt-content-text{
  padding: 0 10px;
}
.pwa-prompt-vert-line{
  height: 20px;
  width: 1px;
  background: #fff;
  margin-right: 10px;
}
.pwa-prompt.active {
  opacity: 1;
  visibility: visible;
}
.pwa-prompt.active .pwa-prompt-content{
  transform: translateX(-50%) translateY(0);
}

/* msg_modal */
.msg_modal{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index:2000;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.msg_modal.show{
  opacity: 1;
  visibility: visible;
}

.msg_modal__content{
  min-width: 315px;
  max-width: 100%;
  padding: 25px;
  border-radius: 20px;
  background: #fff;
}

.msg_modal__content .button{
  width: 212px;
  max-width: 100%;
}

.msg_modal__icon{
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.msg_modal_title{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.msg_modal_content{
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
} 

.msg_modal_button_container{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* msg_modal/ */



/* sp_ipt */
.sp_ipt{
  position: relative;
  margin-bottom: 20px;
}
.sp_ipt .label{
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}
.sp_ipt_field{
  position: relative;
}
.sp_ipt .error_msg{
  color: #F31B35;
  font-weight: 500;
  font-size: 12px;
  padding-top: 8px;
}
.sp_ipt .label.required:before{
  content: '*';
  color: #DD6419;
  margin-right: 4px;
  font-size: 12px;
}
.sp_ipt .textfield{
  margin-bottom: 0;
}
.sp_ipt [type="date"]::-webkit-calendar-picker-indicator{
  opacity: 0;
}
.sp_ipt .sp_ipt_ion{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  pointer-events: none;
}
.sp_ipt .sp_ipt_ion img{
  max-width: 100%;
  max-height: 100%;
}
.sp_ipt_date input ~ .sp_ipt_ion img{
  filter: var(--filter-to-68707B);
}

.sp_ipt_group_date .sp_ipt_field{
  display: flex;
  align-items: center;
  gap: 10px;
}
/* .sp_ipt_date input[readonly] ~ .sp_ipt_ion img{
  filter: brightness(0) invert(80%) sepia(0%) saturate(1083%) hue-rotate(150deg) brightness(105%) contrast(86%);
} */

.sp_ipt input{
  background: #262F38;
  border-radius: 21px;
  color: #fff;
  caret-color: #fff;
  padding: 12px 16px;
  border: 1px solid #262F38;
}
.sp_ipt input::placeholder{
  color: #4E5460;
}

.sp_ipt_invert input{
  background: #1C1F26;
  border: 1px solid #303847;
  color:#fff;
}
.sp_ipt_invert input::placeholder{
  color: #75A8EF;
}
/* sp_ipt / */

/* sp_alert */
.sp_alert{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000;
  pointer-events: none;
}
.sp_alert.active{
  opacity: 1;
  visibility: visible;
}
.sp_alert_content{
  background: #27344ff2;
  box-shadow: 0 0 4px #000000cc;
  padding: 33px;
  text-align: center;
  min-width: 160px;
  max-width: calc(100% - 24px);
  margin: auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 6px;
  min-width: 110px;
  font-size: 14px;
  pointer-events: all;
}
.sp_alert_media{
  margin: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp_alert_icon{
  display: block;
  margin: auto;
  max-width: 100%;
  max-width: 100%;
}
.sp_alert_title{
  flex: 1;
  font-size: 14px;
  color:#fff;
  font-weight: bold;
  line-height: calc(26 / 18);
}
/* sp_alert / */

/* sp_dialog */
.sp_dialog{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  background: rgba(0,0,0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: var(--zindex-modal);
}
.sp_dialog.active{
  opacity: 1;
  visibility: visible;
}
.sp_dialog_content{
  background: var(--dialog-bg-color);
  padding: 33px;
  text-align: center;
  width: calc(335 / 375 * 100%);
  max-width: calc(100% - 24px);
  margin: auto;
  border-radius: 10px;
  position: relative;
}
.sp_dialog_icon {
  margin: auto;
  max-width: 56px;
  margin-bottom: 16px;
}
.sp_dialog_title{
  font-size: 18px;
  color:#fff;
  font-weight: bold;
  line-height: calc(26 / 18);
  margin-bottom: 25px;
}
.sp_dialog_text{
  margin-bottom: 30px;
  color:#A4AAB6;
}
.sp_dialog_close{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
}
.sp_dialog_close img{
  max-width: 13px;
}
.sp_dialog_divider{
  height: 1px;
  background: #34383F;
}
.sp_dialog_buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
}
.sp_dialog_buttons button{
  width: 60%;
}
.sp_dialog_buttons button:only-child{
  width: auto;
  min-width: 130px;
}
.sp_dialog_buttons.sp_dialog_buttons_reversed{
  flex-direction: row-reverse;
}
.sp_dialog_buttons.sp_dialog_buttons_column{
  flex-direction: column-reverse;
}
.sp_dialog_buttons.sp_dialog_buttons_reversed .sp_dialog_negative_button{
  background: var(--theme-hili-color);
  color: #fff;
  border-color: var(--theme-hili-color);
}
.sp_dialog_buttons.sp_dialog_buttons_column .sp_dialog_negative_button {
  border: none;
}
.sp_dialog_buttons.sp_dialog_buttons_reversed .sp_dialog_positive_button{
  background: none;
  color: var(--theme-hili-color);
  border: 1.5px solid currentColor;
}
.sp_dialog_negative_button{
  background: none;
  color: var(--theme-hili-color);
  border: 1.5px solid currentColor;
}
.sp_dialog_positive_button{
  background: var(--theme-hili-color);
}
/* sp_alert / */

/* spinner5 */
.spinner5 {
  position: relative;
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
  margin: auto;
  grid-column-start: 2;
  font-size: 6px;
}
.spinner5:before{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  color: #fff;
  content: '';
  will-change: box-shadow;
  animation: spinner5 1s infinite linear;
}
.spinner5.spinner5_tiny{
  width: 15px;
  height: 15px;
  font-size: 3px;
}
@keyframes spinner5 {
  0%,
  100% {
    box-shadow: 0 -3em 0 .2em, 2em -2em 0 0, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }

  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 .2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }

  25% {
    box-shadow: 0 -3em 0 -.5em, 2em -2em 0 0, 3em 0 0 .2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }

  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 0, 2em 2em 0 .2em, 0 3em 0 0, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }

  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0, 0 3em 0 .2em, -2em 2em 0 0, -3em 0 0 -1em, -2em -2em 0 -1em;
  }

  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 .2em, -3em 0 0 0, -2em -2em 0 -1em;
  }

  75% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0 0 .2em, -2em -2em 0 0;
  }

  87.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0 0 0, -2em -2em 0 .2em;
  }
}

/* spinner5 / */

/* divider_line */
.divider_line{
  height: 1px;
  background: #32405A;
}
/* divider_line / */

/* checkbox_list */
.checkbox_list{
  gap: 20px 40px;
  display: flex;
  flex-wrap: wrap;
}
/* checkbox_list / */

/* selectable_item */
.selectable_items{
  min-height: 0;
  overflow-y: auto;
  flex-grow: 1;
}
.selectable_items .selectable_item{
  padding: 26px 0;
  border-bottom: 1px solid #34383F;
}
.selectable_items_inset .selectable_item{
  padding: 18px 0;
}
.selectable_items .selectable_item:first-child{
  padding-top: 0;
}
.selectable_item{
  display: flex;
  align-items: center;
  position: relative;
}
.selectable_item_media{
  width: 34px;
  height: 34px;
  margin-right: 15px;
  flex-shrink: 0;
}
.selectable_item_media img{
  display: block;
  max-width: 100%;
}
.selectable_item_content{
  color: #A5ADC1;
  font-size: 16px;
  padding-right: 35px;
  flex-grow: 1;
  min-width: 0;
  position: relative;
}
.selectable_item_content:after{
  content: '';
  display: block;
  width: 16px;
  height: 10px;
  background-image: url(/assets/images/general/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  opacity: 0;
}
.selectable_item input{
  display: none;
}
.selectable_item input:checked ~.selectable_item_content,
.selectable_item input:checked ~.selectable_item_media
{
  color: #FFFFFF;
}
.selectable_item input:checked ~.selectable_item_content:after{
  opacity: 1;
}
/* selectable_item / */

/* slidable_alert_box */
.slidable_alert_box{
  background: #26334D;
  color: #fff;
  padding: 16px 25px;
  margin-bottom: 20px;
  font-size: 14px;
}
.slidable_alert_box_header{
  display: flex;
  padding: 0 30px;
  position: relative;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.slidable_alert_box_icon{
  margin-right: 7px;
  display: block;
}
.slidable_alert_box_toggler{
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 0;
  transition: transform .3s;
}
.slidable_alert_box_toggler img{
  filter: var(--filter-to-white);
}
.slidable_alert_box_content{
  font-size: 12px;
  line-height: 1.3;
  margin-top: 15px;
  color: var(--supporting-color);
  display: none;
}
.slidable_alert_box .slidable_alert_box_icon{
  filter: var(--filter-to-theme-hili-color);
}
.slidable_alert_box.active .slidable_alert_box_toggler{
  transform: translateY(-50%) rotate(0deg);
}
/* slidable_alert_box / */

/* tab_container */
.tab_container.underlined_tab_container{
  position: relative;
}
.tab_container.underlined_tab_container:before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.tab_container.underlined_tab_container .tab_content a{
  padding: 10px 0;
  font-weight: 700;
}
.tab_container.underlined_tab_container .tab_content a:first-child{
  margin-left: 16px;
}
.tab_container.underlined_tab_container .tab_content a:last-child{
  margin-right: 16px;
}
.tab_container.underlined_tab_container a.active::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--theme-hili-color);
  right: 0;
  height: 2px;
}
.underlined_tab_container .tab_content{
  overflow-y: auto;
  justify-content: initial;
}
.underlined_tab_container .tab_content a{
  margin-right: 28px;
}
.underlined_tab_container.space_around .tab_content{
  justify-content: space-around;
}
.tab_container.underlined_tab_container_inpage .tab_content{
  justify-content: center;
}
.tab_container.underlined_tab_container_inpage .tab_content a{
  padding-top: 0;
  padding-bottom: 20px;
}
.tab_container.simple_tab_container .tab_content{
  /* overflow-y: auto; */
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px !important;
}
.tab_container.simple_tab_container a{
  display: flex;
  align-items: center;
  font-weight: 500;
  padding: 13px 0;
}
.tab_container.simple_tab_container a.active{
  opacity: 1;
  font-weight: 700;
  font-size: 16px;
}
.tab_container.simple_tab_container a.active::after{
  display: none;
}
.tab_container.simple_tab_container:before,
.tab_container.simple_tab_container:after{
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  top: 0;
  bottom: 0;
  background: var(--theme-bg);
}
.tab_container.simple_tab_container:before{
  right: 100%;
}
.tab_container.simple_tab_container:after{
  left: 100%;
}
.tab_container.simple_tab_container img{
  max-height: 100%;
}
.tab_container_serach_btn{
  position: relative;
  width: 44px; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3px;
}
.tab_container_serach_btn img{
  width: 16px;
  filter: var(--filter-to-white);
  position: relative;
  opacity: 0.5;
  z-index: 2;
}
.tab_container_serach_btn:after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: -43px;
  bottom: 0;
  background: linear-gradient(to left,rgba(18,18,18, 0.6) 50%, transparent), linear-gradient(to left,rgba(18,18,18, 0.2) 60% ,transparent);
  border-top-right-radius: 20px;
  pointer-events: none;
}
/* tab_container / */

/* toastr */
#toast-container>div{
  display: flex;
  align-items: center;
}
#toast-container.toast-top-full-width{
  top:10px;
}
.toast-top-full-width .toast {
  min-height: 40px;
}
#toast-container>.toast-error.toast-error{
  background-image: url(/assets/images/toaster/triangle-exclamation-solid.svg)!important;
  background-size: 21px;
}
#toast-container>.toast-success.toast-success{
  background-image: url(/assets/images/toaster/check.svg)!important;
  background-size: 21px;
}
#toast-container>.toast-warning.toast-warning{
  background-image: url(/assets/images/toaster/triangle-exclamation-solid.svg)!important;
  background-size: 21px;
}
/* toastr / */

.selection_select{
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.selection_select:after{
  content: '';
  display: block;
  background: url(../images/general/down_arrow.svg) no-repeat right 0px center transparent;
  width: 16px;
  height: 16px;
  filter: var(--filter-to-supporting-color);
}

/* deposit、withdraw */
#deposit_modal .modal_bottom_content:before
{
  content:'';
  display: block;
  position: absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  border-radius: inherit;
  background: linear-gradient(270.17deg, #FFC4A0 0.28%, #F89A60 37.24%, #F89A60 65.59%, #DDDAE7 99.99%);
  z-index: -2;
}
#deposit_modal .modal_bottom_content:after
{
  content:'';
  display: block;
  position: absolute;
  top:4px;
  right:0;
  left:0;
  bottom:0;
  border-radius: inherit;
  background: #2C2F40;
  z-index: -1;
}
#deposit_modal .wallet_deposit_shortcut_amount, #withdraw_modal .wallet_withdraw_shortcut_amount{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 0;
}
#deposit_modal .wallet_deposit_shortcut_amount > div,
#withdraw_modal .wallet_withdraw_shortcut_amount > div
{
  font-weight: 700;
  font-size: 16px;
  line-height: 14px;
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 21px;
  position: relative;
}
#withdraw_modal .wallet_withdraw_shortcut_amount > div {
  background: #373B43;
}
#deposit_modal .wallet_deposit_shortcut_amount > div:before
{
  content:'';
  display: block;
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  background-image:linear-gradient(270.17deg, #FFC4A0 0.28%, #F89A60 37.24%, #F89A60 65.59%, #DDDAE7 99.99%);
  border-radius: inherit;
  z-index: -2;
}
#deposit_modal .wallet_deposit_shortcut_amount > div:after
{
  content:'';
  display: block;
  position:absolute;
  top:1px;
  right:1px;
  left:1px;
  bottom:1px;
  background: #2C2F40;
  border-radius: inherit;
  z-index: -1;
}

#deposit_modal .wallet_deposit_shortcut_amount > div.active
{
  color: #0D0D0D;
}
#withdraw_modal .wallet_withdraw_shortcut_amount > div.active{
  color: #DD6419;
  background: #fff;
}
#deposit_modal .wallet_deposit_shortcut_amount > div.active:after
{
  display: none;
}
#deposit_modal .wallet_deposit_shortcut_amount > div.disable,
#withdraw_modal .wallet_withdraw_shortcut_amount > div.disable
{
  opacity: 0.3;
  pointer-events: none;
}
#deposit_modal .wallet_deposit_confirm_button,
#withdraw_modal .wallet_withdraw_confirm_button
{
  padding-top: 30px;
}
#deposit_modal .wallet_deposit_confirm_button .button
{
  width: 160px;
  background: linear-gradient(270.17deg, #FFC4A0 0.28%, #F89A60 47.61%, #DDDAE7 99.99%);
  color: #0D0D0D;
  margin: 0 auto;
  display: block;
  height: 46px;
  border-radius: 23px;
}
#withdraw_modal .wallet_withdraw_confirm_button .button{
  width: 160px;
  margin: 0 auto;
  display: block;
  height: 46px;
  border-radius: 23px;
  background: #DD6419;
  color:#fff;
}
#deposit_modal .gt_sp_ipt,
#withdraw_modal .gt_sp_ipt{
  position: relative;
  z-index: 1;
  border-radius: 23px;
}
#deposit_modal .gt_sp_ipt:before,
#withdraw_modal .gt_sp_ipt:before{
  content:'';
  display: block;
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  border-radius: inherit;
  background-image: linear-gradient(270.17deg, #FFC4A0 0.28%, #F89A60 37.24%, #F89A60 65.59%, #DDDAE7 99.99%);
  z-index: -2;
}
#deposit_modal .gt_sp_ipt:after,
#withdraw_modal .gt_sp_ipt:after{
  content:'';
  display: block;
  position: absolute;
  top:1px;
  right:1px;
  bottom:1px;
  left:1px;
  border-radius: inherit;
  background: #2C2F40;
  z-index: -1;
}
#deposit_modal input, #withdraw_modal input{
  background: url(/assets/images/general/point.svg), transparent;
  background-position: left 17px center;
  background-repeat: no-repeat;
  color:rgba(255, 255, 255, 1);
  border-radius: inherit;
  height: 46px;
  border: 0;
  font-size: 14px;
  padding-left: 43px;
}
#withdraw_modal input{
  background: url(/assets/images/general/point.svg), #1C1F26;
  background-position: left 17px center;
  background-repeat: no-repeat;
  border-radius: 23px;
} 
#deposit_modal input::placeholder, #withdraw_modal input::placeholder{
  color:rgba(255, 255, 255, 0.3);
}

#deposit_modal .promo_banner, #withdraw_modal .promo_banner{
  margin-top: -10px;
}

#deposit_modal .promo_banner img, #withdraw_modal .promo_banner img{
  max-width: 100%;
}

/* filter_contianer */
.filter_container .sp_ipt input {
  border-radius: 8px;
}
/* filter_contianer / */

/* card_block */
.card_block{
  background: #1C1F26;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #303847;
  color: #fff;
}

.card_block_section_title{
  font-weight: 500;
  margin-bottom: 15px;
}

.card_block_description{
  color: #A4AAB6;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.card_block_p{
  font-size: 12px;
  font-weight: 500;
  color: #A4AAB6;
}

.card_block_ul{
  color: #A4AAB6;
  list-style-type: none;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
}
.card_block_ul li{
  position: relative;
  padding-left: 20px;
}
.card_block_ul li:before{
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #A4AAB6;
  position: absolute;
  left: 7px;
  top: 0.5em;
}

.card_block .checkbox_container{
  color:#A4AAB6;
}
/* card_block / */

.deposit_promo_modal{
  z-index: var(--zindex-modal);
  background: none;
  backdrop-filter: blur(4px) brightness(0.4);  
  -webkit-backdrop-filter: blur(4px) brightness(0.4);
}

.deposit_promo_modal .modal_content{
  background: none;
  padding-bottom: 0;
}

.deposit_promo_modal img{
  max-width: 100%;
  max-height: calc(80vh - 56px - 54px);
  margin: auto;
}

.deposit_promo_modal .modal_close{
  justify-content: center;
  bottom: -22px;
}

.deposit_promo_modal .modal_close_button{
  height: 46px;
  border-radius: 23px;
  width: 190px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.deposit_promo_modal .modal_close_button:before{
  content:'';
  display: block;
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  border: 1px solid #fff;
  opacity: 0.6;
  border-radius: inherit;
}

@keyframes fancy-loading-spin {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}

.fancy-loading{
  width: 64px;
  height: 64px;
  background-image: url(/assets/images/general/fancy-loading/fancy-loading-core.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
}

.fancy-loading:before{
  width:100%;
  height: 100%;
  content:'';
  display: block;
  animation: fancy-loading-spin .6s infinite linear;
  transform: rotate(0deg);
  background-image: url(/assets/images/general/fancy-loading/fancy-loading-border.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.modal_bottom_container.iframe_content_inside .modal_bottom_body{
  position: relative;
}

.modal_bottom_container.iframe_content_inside .modal_bottom_content{
  padding: 0;
}

.modal_bottom_container.iframe_content_inside .modal_bottom_title{
  padding-top: 20px;
}

.modal_bottom_container.iframe_content_inside iframe{
  margin-top: auto;
  border: 0;
  margin: 0;
  opacity: 0;
}

.modal_bottom_container.iframe_content_inside.loaded iframe{
  opacity: 1;
}

.modal_bottom_container.iframe_content_inside.loaded .fancy-loading{
  display: none;
}

.modal_bottom_container.iframe_content_inside .fancy-loading{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom_form_item{
  margin-bottom: 18px;
}

.form_item_note {
  color: #A4AAB6;
  font-size: 12px;
}

.custom_form_item_password {
  position: relative;
}

.custom_form_item_password .eye_icon {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 10px;
  top: 13px;
}

.sp_ipt_field.file {
  border: 1px solid var(--input-border-color);
  overflow: hidden;
  border-radius: 10px;
  background: #262F38;
}

.sp_ipt_field.file .file_content {
  min-height: 110px;
}

.sp_ipt_field.file input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sp_ipt_field.file input {
  opacity: 0;
}

.sp_ipt_field.file .file_content.pl {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.sp_ipt_field.file .file_content.pl .plus {
  width: 18px;
  height: 18px;
}

.sp_ipt_field.file .file_content.pl .pl_text {
  font-size: 14px;
  color: #fff;
  opacity: 0.2;
}

.sp_ipt_field.file .file_content.preview{
  display: none;
}

.sp_ipt_field.file .file_content.preview img{
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.grecaptcha-badge{
  display: none !important;
}

#account_login_tip{
  background: #1C1F26;
  color: white;
  font-size: 12px;
  padding: 8px 15px;
  display: none;
  align-items: flex-start;
  gap: 6px;
  font-weight: 700;
}

#account_login_tip img{
  margin-top: 2px;
}

.mobile_number {
  display: flex;
  align-items: center;
  position: relative;
}

.mobile_number>select {
  width: 30%;
  border-radius: 6px 0 0 6px;
}

.mobile_number>input {
  border-radius: 50px;
  padding-left: 70px;
}

.mobile_number .country_code {
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid #303847;
  color: white;
  padding: 0 12px;
  font-weight: 700;
}

.sms_verified {
  position: relative;
}

.sms_verified>a,
.sms_verified>.get_code {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  height: 40px;
  line-height: 40px;
  font-weight: 400;
  font-size: 12px;
  color: white;
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border: none;
}

.sms_verified>.get_code:disabled {
  pointer-events: none;
  opacity: 0.6;
}

.download_app_button {
  position: relative;
  background: url("/assets/images/general/dowload_app_button_bg.png") no-repeat center center /100% 100%;
}

.download_app_button button{
  width: 100%;
  border: none;
  background-size: 100% 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  background: transparent;
}

.download_app_button button img {
  width: 20px;
  height: 20px;
}

label.checkbox_container{
  color: #A4AAB6;
}

#turnstile-container {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sms_verified > .get_code {
  font-weight: 700;
}

.global_loading_wrap {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 999;
}

.global_loading_wrap .global_loading_content {
  position: absolute;
  width: 152px;
  padding: 20px 10px;
  border-radius: 10px;
  background: #292c32;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.global_loading_wrap .global_loading_spinng {
  width: 60px;
  height: 60px;
  position: relative;
}
.global_loading_wrap .global_loading_title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}
.global_loading_wrap .global_loading_desc {
  margin-top: 4px;
  font-size: 12px;
  color: #98A7B5;
}
