:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.top_top-wrapper__uRE57{width:100%;height:436px;background-color:#fff}.top_top-wrapper__uRE57 .top_top-container__Zeee8{height:100%;width:1200px;margin:0 auto;position:relative}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{position:relative;max-width:854px;padding-top:92px;z-index:9}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{margin-left:-1px;color:#000;font-size:62px;font-style:normal;font-weight:700;line-height:72px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu span{display:inline-block;color:#007fff}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_top-content__uZ6DX{height:auto}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd{margin:32px 0}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_assets-overview__W79Cv{display:inline-flex;align-items:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_assets-overview__W79Cv .top_sub-title__NvyuS{color:#000;font-size:20px;font-style:normal;font-weight:500;line-height:normal}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_assets-overview__W79Cv .top_eye-img__6QeiO{margin-left:10px;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc{margin-top:8px;max-width:560px;display:flex;align-items:center;gap:8px 20px;flex-wrap:wrap}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X{height:100%;display:flex;align-items:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X .top_assets__reSWc{margin-right:8px;color:#000;font-size:32px;font-style:normal;font-weight:700;line-height:normal;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X .top_rate-container__Uq4br{padding-top:12px;height:26px;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X .top_rate-container__Uq4br .top_rate-name__mT72F span{display:inline-block;margin-right:4px;color:#000;font-size:14px;font-style:normal;font-weight:500;line-height:14px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB{padding-top:12px;height:26px;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB .top_txt__E_FNm{display:inline-block;margin-right:4px;color:#8a8a8e;font-size:14px;font-style:normal;font-weight:400;line-height:14px;text-transform:lowercase}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB .top_profit__anm_W{display:inline-block;color:#8a8a8e;font-size:14px;font-style:normal;font-weight:400;line-height:14px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB .top_red__EmKqB{color:#e94359}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB .top_green__lTcbG{color:#00a171}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD{margin-top:12px;max-width:560px;display:flex;align-items:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift__l_rBr{width:21px;height:21px;margin:1px 0 0 1px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift__l_rBr img{width:100%;height:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE{margin-left:0px;color:#000;font-size:20px;font-style:normal;font-weight:500;line-height:24px;word-break:break-all;overflow:hidden}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-deposit__B6_No{margin:32px 0}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-deposit__B6_No .top_sub-title__NvyuS{color:#000;font-size:20px;font-style:normal;font-weight:500;line-height:normal}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO{margin:48px 0 20px;display:flex;align-items:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T{width:320px;height:52px;margin-right:16px;padding:4px 4px 4px 24px;border-radius:12px;border:1px solid #ddd;background:#fff}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm{padding:0;width:100%;height:100%;border:0;color:#000;font-size:16px;font-style:normal;font-weight:400;line-height:normal}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-outer-spin-button,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-inner-spin-button,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-outer-spin-button,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-inner-spin-button,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm::-webkit-outer-spin-button,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm::-webkit-inner-spin-button{-webkit-appearance:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm::-webkit-input-placeholder{color:#adadb4}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm::-moz-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm::-moz-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm::-moz-placeholder{color:#adadb4}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm:-ms-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm:-ms-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm:-ms-input-placeholder{color:#adadb4}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm:focus::-webkit-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm:focus::-webkit-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm:focus::-webkit-input-placeholder{color:rgba(173,173,180,.5)}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm:focus::-moz-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm:focus::-moz-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm:focus::-moz-placeholder{color:rgba(173,173,180,.5)}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm:focus:-ms-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm:focus:-ms-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm:focus:-ms-input-placeholder{color:rgba(173,173,180,.5)}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T:focus,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T:hover,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T:focus,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T:hover,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T:focus,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T:hover{border:1px solid #000}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY{max-width:240px;min-width:158px;padding:0 16px;height:56px;display:flex;justify-content:center;align-items:center;border-radius:12px;background:#007fff;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_button__tWHhJ,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY .top_button__tWHhJ,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY .top_button__tWHhJ{max-width:180px;color:#fff;font-size:16px;font-style:normal;font-weight:600;line-height:normal;text-transform:capitalize;word-break:break-word;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_icon-arrow__r2seX,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY .top_icon-arrow__r2seX,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY .top_icon-arrow__r2seX{margin-left:16px;width:16px;height:18px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_icon-arrow__r2seX img,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY .top_icon-arrow__r2seX img,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY .top_icon-arrow__r2seX img{width:16px;height:10px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY:hover,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY:hover,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY:hover{background-color:#006cd9}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY:hover .top_button__tWHhJ,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY:hover .top_button__tWHhJ,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY:hover .top_button__tWHhJ{color:#fff;font-weight:400}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG{display:flex;margin-left:-1px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz{margin-right:32px;display:inline-flex;gap:16px;position:relative}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz::after{content:"";position:absolute;width:1px;height:24px;right:-16px;top:50%;background-color:#ddd;transform:translateY(-50%)}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk{width:56px;height:56px;display:flex;align-items:center;justify-content:center;border-radius:12px;border:1px solid #dadada;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_google-img__VozE4{width:22px;height:22px;background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/google2.cb9764a9.svg) no-repeat center;background-size:22px 22px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_apple-img__lT3Jf{width:25px;height:25px;background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/apple2.535bb06e.svg) no-repeat center;background-size:25px 25px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_telegram-img__VAAhH{width:24px;height:24px;background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/telegram2.9bc139e0.svg) no-repeat center;background-size:24px 24px;margin-left:-2px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk:hover .top_google-img__VozE4{background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/google_active.89fe82e6.svg) no-repeat center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk:hover .top_apple-img__lT3Jf{background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/apple_active.d54e22e8.svg) no-repeat center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk:hover .top_telegram-img__VAAhH{background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/telegram_active.de459b8c.svg) no-repeat center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK{position:relative;width:56px;height:56px;display:flex;align-items:center;justify-content:center;border-radius:12px;border:1px solid #dadada;cursor:pointer}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK .top_qcode-img__8wq0J{width:20px;height:20px;background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/qr_code2.90ba61f0.svg) no-repeat center;background-size:20px 20px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK .top_qcode-popover__RKTVW{position:absolute;right:-160px;top:-124px;margin-left:8px;padding:16px;visibility:hidden;opacity:0;border-radius:8px;border:1px solid #ddd;background:#fff;transition:all .3s ease}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK .top_qcode-popover__RKTVW .top_qcode-title__qWsao{max-width:120px;text-align:center;color:#1c1c1e;font-size:12px;font-style:normal;font-weight:500;line-height:normal;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK .top_qcode-popover__RKTVW .top_qcode-ontent__8XBix{margin-top:8px;width:120px;height:120px;display:flex;align-items:center;justify-content:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK .top_qcode-popover__RKTVW .top_qcode-ontent__8XBix>div{width:100%;height:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK:hover .top_qcode-img__8wq0J{background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/qr_code_active.4dbdefe2.svg) no-repeat center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK:hover .top_qcode-popover__RKTVW{visibility:visible;opacity:1}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_loading__d1GSU{height:220px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_banner-right-image__dYW7d{position:absolute;right:0;top:72px;width:390px;height:312px}.top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-deposit__B6_No{margin:20px 0 48px 0}.top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp{margin:0}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO{margin:0}html[lang=zh-cn] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE,html[lang=zh-hk] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE,html[lang=zh-tc] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE{font-weight:400}@media screen and (min-width: 521px){html:not([lang=zh-cn]) .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK .top_qcode-popover__RKTVW{top:-138px}}@media screen and (min-width: 1025px){html[lang=en-us] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=es-es] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=es-la] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=en-in] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:54px}html[lang=en-us] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=es-es] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=es-la] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=en-in] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:64px}html[lang=en-us] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=es-es] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=es-la] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=en-in] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:56px}}@media screen and (min-width: 521px)and (max-width: 744px){html[lang=en-us] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=es-es] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=es-la] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=en-in] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:68px}}@media screen and (min-width: 1025px){html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:44px}html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:50px;line-height:60px}html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD{margin-top:30px}html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE{font-size:16px}html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY{padding:0 15px}html[lang=ru-ru] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:50px}html[lang=ru-ru] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:54px}html[lang=ru-ru] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:70px}html[lang=ru-ru] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:52px}}@media screen and (min-width: 745px)and (max-width: 1024px){html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:16px}html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:48px;line-height:54px}html[lang=ru-ru] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:60px;line-height:60px}html[lang=ru-ru] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY,html[lang=uk-ua] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY{padding:0 30px}html[lang=ru-ru] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:50px;line-height:50px}}@media screen and (min-width: 521px)and (max-width: 744px){html[lang=ru-ru] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:6px}html[lang=ru-ru] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:80px}html[lang=ru-ru] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=uk-ua] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:30px}html[lang=ru-ru] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=uk-ua] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:44px;line-height:44px}}@media screen and (min-width: 745px)and (max-width: 1024px){html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:20px}}@media screen and (min-width: 521px)and (max-width: 744px){html[lang=uk-ua] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:53px}}@media screen and (min-width: 521px)and (max-width: 582px){html[lang=ru-ru] .top_top-wrapper__uRE57{height:440px}}@media screen and (min-width: 1025px){html[lang=fr-fr] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=tr-tr] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=vi-vi] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=pt-pt] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=it-it] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=id-id] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:32px}html[lang=fr-fr] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD,html[lang=tr-tr] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD,html[lang=vi-vi] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD,html[lang=pt-pt] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD,html[lang=it-it] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD,html[lang=id-id] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD{margin-top:34px}html[lang=fr-fr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=tr-tr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=vi-vi] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=pt-pt] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=it-it] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=id-id] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:80px}html[lang=fr-fr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=tr-tr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=vi-vi] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=pt-pt] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=it-it] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=id-id] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:80px}}@media screen and (min-width: 745px)and (max-width: 1024px){html[lang=fr-fr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=tr-tr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=vi-vi] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=pt-pt] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=it-it] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=id-id] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:53px}html[lang=fr-fr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=tr-tr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=vi-vi] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=pt-pt] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=it-it] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=id-id] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:64px;line-height:72px}html[lang=fr-fr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=tr-tr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=vi-vi] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=pt-pt] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=it-it] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=id-id] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:62px;line-height:62px}}@media screen and (min-width: 521px)and (max-width: 744px){html[lang=fr-fr] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=tr-tr] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=vi-vi] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=pt-pt] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=it-it] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=id-id] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:42px;line-height:42px}html[lang=fr-fr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=tr-tr] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=vi-vi] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=pt-pt] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=it-it] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=id-id] .top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:44px;line-height:44px}html[lang=fr-fr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=tr-tr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=vi-vi] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=pt-pt] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=it-it] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa,html[lang=id-id] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa{padding-top:68px}html[lang=fr-fr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=tr-tr] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=vi-vi] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=pt-pt] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=it-it] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=id-id] .top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:42px;line-height:42px}}@media screen and (min-width: 745px)and (max-width: 1280px){.top_top-wrapper__uRE57 .top_top-container__Zeee8{width:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{margin-left:40px}}@media screen and (min-width: 745px)and (max-width: 1024px){.top_top-wrapper__uRE57 .top_top-container__Zeee8{width:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:56px;line-height:56px}.top_top-wrapper__uRE57 .top_banner-animation__ImmYM{left:348px}}@media screen and (min-width: 521px)and (max-width: 744px){.top_top-wrapper__uRE57{height:400px}.top_top-wrapper__uRE57 .top_top-container__Zeee8{width:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{max-width:86%;margin-left:24px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:44px;line-height:44px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD{margin-top:32px;max-width:86%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE{font-size:16px;line-height:16px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp{margin:16px 0}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T{width:230px}.top_top-wrapper__uRE57 .top_banner-animation__ImmYM{left:150px}.top_top-wrapper__uRE57 .top_banner-animation__ImmYM>div{height:400px}}@media screen and (max-width: 520px){.top_top-wrapper__uRE57{height:auto;background:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8{margin:0;width:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa{width:100%;padding:43px 12px 42px 12px;margin:0;max-width:none;display:flex;flex-direction:column;align-items:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-size:32px;line-height:40px;text-align:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_top-content__uZ6DX{width:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD{margin-top:13px;max-width:none;justify-content:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift__l_rBr{width:15px;height:14px;margin-top:-1px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift__l_rBr img{width:100%;height:100%}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_gift-container__sczLD .top_gift-title__coJeE{margin-left:4px;font-size:14px;line-height:20px;color:#595959}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-deposit__B6_No .top_sub-title__NvyuS{font-size:12px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO{margin:16px 0}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T{width:200px;height:44px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm{font-size:14px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm::-webkit-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm::-webkit-input-placeholder{font-size:14px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm::-moz-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm::-moz-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm::-moz-placeholder{font-size:14px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T .top_txt__E_FNm:-ms-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_input-container__1yT8T .top_txt__E_FNm:-ms-input-placeholder,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_input-container__1yT8T .top_txt__E_FNm:-ms-input-placeholder{font-size:14px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY{height:44px;padding:0 9px;min-width:140px;max-width:200px;box-shadow:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_button__tWHhJ,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY .top_button__tWHhJ,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY .top_button__tWHhJ{max-width:none;font-size:14px;line-height:normal}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_icon-arrow__r2seX,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY .top_icon-arrow__r2seX,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY .top_icon-arrow__r2seX{display:none;height:20px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG{display:none;justify-content:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz{margin-right:0px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk{width:40px;height:40px;border-radius:6px;border:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_google-img__VozE4{width:16px;height:16px;background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/google.123f59bf.svg) no-repeat center;background-size:16px 16px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_apple-img__lT3Jf{background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/apple.a0210457.svg) no-repeat center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_telegram-img__VAAhH{background:url(https://hbg-fed-static-prd.hbfile.net/enhome-hbgl/_next/static/media/telegram.60baf3b9.svg) no-repeat center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_apple-img__lT3Jf,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk .top_telegram-img__VAAhH{width:18px;height:18px;background-size:18px 18px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk:hover .top_google-img__VozE4{background-size:16px 16px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk:hover .top_apple-img__lT3Jf,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz .top_third-item__s4hyk:hover .top_telegram-img__VAAhH{background-size:18px 18px}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_third-list__CEaJz::after{content:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_third-container__bu4SG .top_qcode__BI3BK{display:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp{border:none;border-radius:8px;width:calc(100% - 40px);margin:26px auto 0;justify-content:center}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T{display:none;border:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T:focus,.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_input-container__1yT8T:hover{border:none}.top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY{height:45px;margin-right:0px;min-width:165px;padding:0 16px;text-align:center;border-radius:8px;background:#0166ff;margin-top:-1px}.top_top-wrapper__uRE57 .top_banner-animation__ImmYM{display:none;left:50%;transform:translateX(-50%)}.top_top-wrapper__uRE57 .top_banner-animation__ImmYM>div{height:300px}.top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-deposit__B6_No{margin:24px 0}.top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-deposit__B6_No .top_sub-title__NvyuS{font-size:16px}.top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp{justify-content:center;margin:0}.top_deposit-wrapper__Agje5 .top_top-container__Zeee8 .top_title-container__UMnWa .top_deposit-container__P8cAp .top_submit-button__d8eKY{width:auto;min-width:180px;max-width:200px}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd{width:100%;margin:20px 0 16px}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_assets-overview__W79Cv{display:flex;align-items:center;justify-content:center}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_assets-overview__W79Cv .top_sub-title__NvyuS{font-size:14px;line-height:20px}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_assets-overview__W79Cv .top_eye-img__6QeiO{margin-left:8px;width:16px;height:16px;display:flex;justify-content:center;align-items:center}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc{display:flex;flex-direction:column}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X{margin:0}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X .top_assets__reSWc{font-weight:700;font-size:24px;line-height:normal}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X .top_rate-container__Uq4br{height:auto}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_assets-container__ukh8X .top_rate-container__Uq4br .top_rate-name__mT72F span{font-weight:700;font-size:12px;line-height:14px}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB{height:auto;padding-top:8px}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB .top_txt__E_FNm,.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_sub-container__raZnd .top_overview-container__tvGzc .top_profit-container__zEKjB .top_profit__anm_W{font-size:12px;line-height:14px}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO{margin:0;justify-content:center}.top_balance-wrapper__UuIxt .top_top-container__Zeee8 .top_title-container__UMnWa .top_trade-container__KNeHO .top_submit-button__d8eKY{width:auto;min-width:180px;max-width:200px}}@media screen and (max-width: 520px){html[lang=zh-cn] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=zh-hk] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu,html[lang=zh-tc] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_title__SWrVu{font-weight:700}html[lang=zh-cn] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_button__tWHhJ,html[lang=zh-hk] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_button__tWHhJ,html[lang=zh-tc] .top_top-wrapper__uRE57 .top_top-container__Zeee8 .top_title-container__UMnWa .top_register-container__x0oEp .top_submit-button__d8eKY .top_button__tWHhJ{font-weight:700 !important}}
