@charset "UTF-8";
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue/helveticaneue.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue/helveticaneuebold.ttf") format("truetype");
  font-weight: 700;
}
html[theme=dark_mode] {
  filter: invert(100%) hue-rotate(180deg);
}

/* Workarounds and optical adjustments. */
/* Firefox workaround: Set the background colour for the html
     element separately because, unlike other browsers, Firefox
     doesn’t apply the filter to the root element’s background. */
html[theme=dark_mode] {
  background-color: #111;
}

/* Do not invert media (revert the invert). */
html[theme=dark_mode] img,
html[theme=dark_mode] video,
html[theme=dark_mode] iframe {
  filter: invert(100%) hue-rotate(180deg);
}

/* Improve contrast on icons. */
html[theme=dark_mode] .icon {
  filter: none;
}

/* Re-enable code block backgrounds. */
html[theme=dark_mode] pre {
  filter: invert(6%);
}

/* Improve contrast on list item markers. */
html[theme=dark_mode] li::marker {
  color: #666;
}

object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

b,
strong,
th {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 20px 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

label {
  font-weight: normal;
}

input[type=text],
input[type=email],
input[type=password] {
  padding-left: 12px;
  padding-right: 12px;
}

select {
  padding-left: 8px;
  cursor: pointer;
}

input[type=number] {
  padding-left: 5px;
}

textarea {
  padding: 8px 12px 5px 12px;
}

input,
textarea,
select,
button,
a,
button:hover,
button:active,
button:focus {
  outline: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

* {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-bottom: constant(safe-area-inset-bottom);
  padding-top: constant(safe-area-inset-top);
}

img {
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.row {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.row > .col,
.row > [class*=col-] {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media all and (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
.pad-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.pad-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.col-mar-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.col-mar-0 [class*=col-],
.col-mar-0 .col {
  padding-left: 0px;
  padding-right: 0px;
}

.col-mar-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.col-mar-5 [class*=col-],
.col-mar-5 .col {
  padding-left: 5px;
  padding-right: 5px;
}

.col-mar-8 {
  margin-left: -8px;
  margin-right: -8px;
}
.col-mar-8 [class*=col-],
.col-mar-8 .col {
  padding-left: 8px;
  padding-right: 8px;
}

.col-mar-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.col-mar-10 [class*=col-],
.col-mar-10 .col {
  padding-left: 10px;
  padding-right: 10px;
}

.fx-mid {
  align-items: center;
}

.ifx-top {
  align-self: start;
}

.ifx-bot {
  align-self: end;
}

.ifx-mid {
  align-self: center;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ic {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.smooth {
  transition: all 0.2s ease-in-out;
  backface-visibility: hidden;
}

@media all and (max-width: 991px) {
  .md-pad-7 {
    margin: 0 -7px;
  }
  .md-pad-7 > [class^=col-] {
    padding: 0 7px;
  }
  .md-pad-5 {
    margin: 0 -5px;
  }
  .md-pad-5 > [class^=col-] {
    padding: 0 5px;
  }
}
@media all and (max-width: 767px) {
  .sm-pad-7 {
    margin: 0 -7px;
  }
  .sm-pad-7 > [class^=col-] {
    padding: 0 7px;
  }
  .sm-pad-5 {
    margin: 0 -5px;
  }
  .sm-pad-5 > [class^=col-] {
    padding: 0 5px;
  }
  .tb-responsive {
    display: block;
  }
  .tb-responsive tbody,
  .tb-responsive tfoot,
  .tb-responsive tr,
  .tb-responsive th,
  .tb-responsive td {
    display: block;
  }
  .tb-responsive thead {
    display: none;
  }
  .tb-responsive tr:nth-child(2n) {
    background: #f5f5f5;
  }
  .tb-responsive td {
    position: relative;
    padding: 10px 10px 10px 50%;
  }
  .tb-responsive td:before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    width: 50%;
    padding-right: 15px;
  }
}
@media all and (max-width: 575px) {
  .xs-pad-7 {
    margin: 0 -7px;
  }
  .xs-pad-7 > [class^=col-] {
    padding: 0 7px;
  }
  .xs-pad-5 {
    margin: 0 -5px;
  }
  .xs-pad-5 > [class^=col-] {
    padding: 0 5px;
  }
}
.slick-list {
  margin: 0 -1.5rem;
}
.slick-list .slick-slide {
  margin: 0 1.5rem;
}

.slick-arrow {
  cursor: pointer;
  z-index: 1;
  text-align: center;
  position: absolute;
}

.slick-dots {
  text-align: center;
}
.slick-dots button {
  display: none;
}
.slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  border: solid 2px #666;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: #666;
}

.i-select {
  position: relative;
}
.i-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  width: 100%;
}

.s-content {
  word-break: break-word;
}
.s-content a[href] {
  color: #007bff;
}
.s-content a[href]:hover {
  text-decoration: underline;
}
.s-content a,
.s-content a:hover,
.s-content a:focus,
.s-content a:active {
  text-decoration: underline;
}
.s-content ol {
  list-style: decimal;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.s-content ul {
  list-style: initial;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.s-content li {
  list-style: inherit;
  margin-bottom: 0.5rem;
}
.s-content p {
  margin-bottom: 1rem;
}
.s-content img {
  max-width: 100%;
  height: auto !important;
  margin: 1rem auto;
  object_fit: initial;
}
.s-content .alignleft,
.s-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.s-content .alignright,
.s-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.s-content .aligncenter,
.s-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.s-content blockquote.left {
  margin-right: 2rem;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
.s-content blockquote.right {
  margin-left: 2rem;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}
.s-content table,
.s-content iframe {
  max-width: 100%;
  max-width: calc(100vw - 3rem);
  margin: auto;
}
.s-content iframe {
  display: block;
}
.s-content h1,
.s-content h2,
.s-content h3,
.s-content h4,
.s-content h5,
.s-content h6 {
  font-weight: 700;
}
.s-content h1 {
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}
.s-content h2 {
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}
.s-content h3 {
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.s-content h4 {
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
.s-content h5 {
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
.s-content h6 {
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}

.market-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px #8a8c8f;
  background-color: #8a8c8f;
}

.market-scrollbar::-webkit-scrollbar {
  width: 4px;
  background-color: #e8e4f2;
}

.market-scrollbar::-webkit-scrollbar-thumb {
  background-color: #e8e4f2;
}

html,
body {
  font-size: 1.6rem;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: black;
  min-height: 100%;
  -webkit-tab-hightlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%;
}

.wrap {
  overflow: hidden;
}

.delay02 {
  animation-delay: 0.2s;
}

.delay03 {
  animation-delay: 0.3s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay05 {
  animation-delay: 0.5s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay07 {
  animation-delay: 0.7s;
}

.delay08 {
  animation-delay: 0.8s;
}

.delay09 {
  animation-delay: 0.9s;
}

.delay10 {
  animation-delay: 1s;
}

.delay12 {
  animation-delay: 1.2s;
}

.delay14 {
  animation-delay: 1.4s;
}

.delay16 {
  animation-delay: 1.6s;
}

.delay18 {
  animation-delay: 1.8s;
}

.section {
  padding: 4rem 0;
  background-color: #fcfcfc;
}
@media (min-width: 992px) {
  .section {
    padding: 8rem 0;
  }
}

.mo {
  display: block;
}
@media (min-width: 992px) {
  .mo {
    display: none;
  }
}
@media (max-width: 991px) {
  .mo-text-center {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .mo-mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.h2 {
  font-size: 3.2rem;
  line-height: 4rem;
}
@media (min-width: 992px) {
  .h2 {
    font-size: 4rem;
    line-height: 5.5rem;
  }
}

.h3 {
  font-size: 2.8rem;
  line-height: 3rem;
}
@media (min-width: 992px) {
  .h3 {
    font-size: 4.4rem;
    line-height: 5.2rem;
  }
}

.title {
  font-weight: bold;
}

.subtitle {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}

.text-link {
  color: #0B5ED7;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  color: white;
}
.btn:hover {
  color: white;
}
.btn-noti {
  background: #0084d1;
  text-align: center;
  margin: 1rem 0;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 18px;
  padding: 5px;
  width: 90%;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3882352941);
  color: white;
}
.btn-default {
  border: 0;
  background-color: #0B5ED7;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.2s ease-out;
}
.btn-default:hover {
  box-shadow: 0 10px 25px -10px #0B5ED7;
}
.btn-submit {
  background-color: #29cb97;
  font-weight: 700;
  font-size: 1.4rem;
}
.btn-submit:hover {
  background-color: #0069d9;
}
.btn-price {
  font-family: "Arial", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  width: 8.8rem;
  height: 3rem;
  border-radius: 4px;
  background-color: #143e3e;
  color: #2fedb1;
  border: 1px solid #62c79b;
  overflow: hidden;
}
.btn-negative {
  background-color: #351f2c;
  color: #fa3963;
  border: 1px solid #ed676f;
}
.btn-bet {
  flex: 1;
  text-align: center;
  color: #fff;
  border-radius: 6px 0 0 6px;
  border: 2px solid #2fedb2;
  padding: 5px 10px;
  cursor: pointer;
  background-color: #0f1823;
  transition: background-color 0.2s ease;
  font-size: 1.5rem;
}
@media (max-width: 770px) {
  .btn-bet {
    font-size: 1.2rem;
  }
}
.btn-bet:hover {
  background-color: #2fedb2;
}
.btn-increase.active {
  background-color: #2fedb2;
  pointer-events: none;
}
.btn-decrease {
  color: #fa3963;
  border-radius: 0px 6px 6px 0;
  border: 2px solid #ed676f;
}
.btn-decrease:hover, .btn-decrease.active {
  background-color: #351f2c;
}
.btn-decrease.active {
  pointer-events: none;
}
.btn-search {
  background-color: #fa3963;
  font-size: 1.2rem;
}

.lang {
  position: relative;
  margin: 0 1.2rem;
}
@media (min-width: 992px) {
  .lang {
    margin: 0 2.4rem;
  }
}
.lang button img {
  width: 2.8rem;
  padding: 1.2rem 0;
}
.lang .opt {
  position: absolute;
  top: 100%;
  left: -9rem;
  right: -3rem;
  display: none;
  background: white;
  padding-top: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  z-index: 10;
}
@media (min-width: 992px) {
  .lang .opt {
    left: -6rem;
    right: -6rem;
  }
}
.lang .opt.active {
  display: block;
}
.lang .opt ul {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.lang .opt ul a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.4rem 1.2rem;
  font-size: 1.4rem;
  color: black;
}
.lang .opt ul a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.lang .opt ul img {
  width: 2.8rem;
  margin-right: 0.8rem;
}

.money {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: rgba(11, 94, 215, 0.8);
  border-radius: 0.4rem;
}
.money dl {
  margin-left: 0.8rem;
  color: white;
}
.money dt {
  font-size: 1.6rem;
  font-weight: 500;
}
.money dd {
  font-size: 2rem;
}

.account-money {
  padding: 2.4rem;
}
@media (min-width: 992px) {
  .account-money {
    padding: 3.2rem;
  }
}

.form-money {
  margin-top: 2.4rem;
}
.form-money .group {
  display: flex;
  flex-direction: column;
  margin-top: 2.4rem;
}
.form-money .group ~ .group {
  margin-top: 1.6rem;
}
@media (min-width: 992px) {
  .form-money .group ~ .group {
    margin-top: 2.4rem;
  }
}
.form-money .group label {
  font-size: 1.6rem;
  font-weight: 500;
}
.form-money .group select, .form-money .group .inp {
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: 0;
  border-radius: 0.4rem;
}
@media (min-width: 992px) {
  .form-money .group select, .form-money .group .inp {
    margin-top: 0.8rem;
  }
}
.form-money .group select {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
.form-money .group .inp.error {
  border-color: red;
}
.form-money .group .inp:-moz-read-only {
  background: #ececec;
}
.form-money .group .inp:read-only {
  background: #ececec;
}
.form-money .required {
  color: red;
}
.form-money .btn-wrap {
  text-align: center;
}
.form-money .btn-submit {
  min-width: 16rem;
  margin-top: 2.4rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.4rem;
  color: white;
  font-size: 1.6rem;
  background-color: #0B5ED7;
}

.direct-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  width: 100%;
  color: #fff;
  background: black;
  font-size: 1.8rem;
  padding: 1.2rem 2.4rem;
  z-index: 9;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .direct-page {
    padding: 2rem 3.2rem;
  }
}
.direct-page .txt {
  font-size: 2.4rem;
}
@media (min-width: 992px) {
  .direct-page .txt {
    font-size: 3.6rem;
  }
}
.direct-page .btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  background-color: #0B5ED7;
}
@media (min-width: 992px) {
  .direct-page .btn-back {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.fix-pri {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  max-width: 100%;
  width: 100%;
}
.fix-pri .scroll {
  overflow-y: auto;
  height: calc(100vh - 6rem);
}
@media (min-width: 992px) {
  .fix-pri .scroll {
    height: calc(100vh - 9.4rem);
  }
}

.content-pri {
  margin-top: 6rem;
}
@media (min-width: 992px) {
  .content-pri {
    margin-top: 9.4rem;
  }
}
.content-pri .info {
  margin-top: 2.4rem;
  font-size: 1.4rem;
}
.content-pri .t-highlight {
  color: red;
}
.content-pri .note {
  margin-top: 2.4rem;
  padding: 1.2rem;
  background: #ececec;
  border-radius: 0.4rem;
}
.content-pri .note li {
  display: flex;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.8);
}
.content-pri .note li span {
  margin-right: 0.4rem;
}

.wrap-bet header {
  border: 0;
  padding: 1.2rem 0;
}
.wrap-bet header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .wrap-bet header .inner {
    padding: 0 1.2rem 0 2.4rem;
  }
}
.wrap-bet header .head-mo {
  display: flex;
  align-items: center;
  color: white;
}
@media (min-width: 992px) {
  .wrap-bet header .head-mo {
    display: none;
  }
}
.wrap-bet header .head-mo .info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1.4rem;
  margin-right: 0;
}
@media (min-width: 992px) {
  .wrap-bet header .head-mo .info {
    margin-right: 2.4rem;
    font-size: 1.6rem;
  }
}
.wrap-bet header .head-mo .num {
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .wrap-bet header .head-mo .num {
    display: none;
    font-size: 1.8rem;
  }
}
.wrap-bet header .head-mo em {
  color: #2fedb2;
}
.wrap-bet header .right {
  display: none;
  align-items: center;
}
@media (min-width: 992px) {
  .wrap-bet header .right {
    display: flex;
  }
}
.wrap-bet header .right .group {
  display: flex;
}
.wrap-bet header .right .group a {
  background: #ff5b6b;
  border: 1px solid rgba(255, 207, 1, 0.6);
  font-size: 1.5rem;
  line-height: 24px;
  font-weight: 500;
}
.wrap-bet header .right .group a:last-child {
  margin-left: 0.8rem;
  background: transparent;
  color: #2fedb2;
}
.wrap-bet header .num-acc {
  color: white;
  font-size: 2.5rem;
  font-weight: 500;
}
.wrap-bet header .num-acc:hover {
  color: #2fedb2;
}
.wrap-bet header .user {
  margin-left: 1.5rem;
  padding: 0.6rem;
  position: relative;
  z-index: 10;
}
.wrap-bet header .user > button {
  overflow: hidden;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 100%;
}
.wrap-bet header .user .opt {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  background: white;
  padding-top: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
}
.wrap-bet header .user .opt.active {
  display: block;
}
.wrap-bet header .user .btn-logout {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.8rem 1.2rem;
  font-size: 1.4rem;
  color: red;
}
.wrap-bet header .user ul {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.wrap-bet header .user ul a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.4rem 1.2rem;
  font-size: 1.4rem;
  color: black;
}
.wrap-bet header .user ul a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.wrap-bet header .user i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.4rem;
}
.wrap-bet footer {
  padding: 1.5rem 0;
  border-top: 0;
  background: #18191d;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 992px) {
  .wrap-bet footer {
    padding: 3rem 0;
  }
}
.wrap-bet footer .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .wrap-bet footer .inner {
    flex-direction: row;
  }
}
.wrap-bet footer .group {
  display: flex;
  margin-top: 0.4rem;
}
.wrap-bet footer p {
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .wrap-bet footer p {
    line-height: 2.8rem;
    font-size: 1.4rem;
  }
}
.wrap-bet marquee {
  margin-top: 1rem;
}
.wrap-bet marquee span {
  margin: 1.2rem;
  color: white;
  padding: 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
  font-weight: normal;
}
.wrap-bet marquee strong {
  color: #ff5b6b;
}
.wrap-bet marquee .name {
  color: #29cb97;
}
.wrap-bet .content {
  padding-top: 0;
  background: #3a424d;
  margin-top: 6.5rem;
}
.wrap-bet .chart-wrap {
  background: #131722;
  border: none;
  border-radius: 0.3rem;
}
@media (min-width: 992px) {
  .wrap-bet .chart-wrap {
    border: 1px solid #363c4e;
  }
}
.wrap-bet .chart-wrap .head {
  display: flex;
  align-items: center;
  background: #131722;
  color: white;
  padding: 0.4rem 0;
  overflow-x: auto;
}
.wrap-bet .chart-wrap .head .group {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
}
.wrap-bet .chart-wrap .head .group:before {
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 0;
  width: 0.1rem;
  background-color: #434651;
  content: "";
}
.wrap-bet .chart-wrap .head .group:first-child:before {
  content: none;
}
.wrap-bet .chart-wrap .head .group:last-child {
  margin-left: auto;
}
.wrap-bet .chart-wrap .head button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  min-width: 3.4rem;
  font-size: 1.4rem;
  height: 3.2rem;
  padding: 0.4rem;
  border-radius: 0.4rem;
}
.wrap-bet .chart-wrap .head button:hover {
  background: #434651;
}
.wrap-bet .chart-wrap .head button.active {
  color: #0B5ED7;
}
.wrap-bet .chart-wrap .head .name-coin i {
  margin-right: 0.8rem;
}
.wrap-bet .chart-wrap .head .indicators svg {
  margin-right: 0.4rem;
}
.wrap-bet .chart-wrap .body {
  height: 26rem;
}
@media (min-width: 992px) {
  .wrap-bet .chart-wrap .body {
    height: auto;
  }
}
.wrap-bet .chart-wrap .body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .wrap-bet .chart-wrap .body img {
    height: 55.9rem;
  }
}
.wrap-bet .buy {
  padding: 2rem 0 0;
  color: white;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .wrap-bet .buy {
    padding: 2.4rem 0 0;
  }
}
.wrap-bet .buy .line {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  color: red;
}
.wrap-bet .buy .line.coundown {
  color: #2fedb2;
  font-size: 1.5rem;
  line-height: 2.1rem;
}
@media (min-width: 992px) {
  .wrap-bet .buy .line.coundown {
    margin-top: 1.2rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.wrap-bet .buy .line.coundown span:last-child {
  letter-spacing: 0.4rem;
}
.wrap-bet .buy .time {
  padding: 0 1.2rem;
  color: #29cb97;
}
.wrap-bet .buy .body {
  margin-top: 1.8em;
}
.wrap-bet .buy .body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.wrap-bet .buy .body li {
  width: calc((100% - 3.6rem) / 4);
  margin-top: 0.6rem;
  border: 1px solid rgba(227, 227, 227, 0.431);
  border-radius: 0.4rem;
}
@media (min-width: 992px) {
  .wrap-bet .buy .body li {
    border: 1px solid white;
    margin-top: 1.2rem;
    width: calc((100% - 2.4rem) / 3);
  }
}
.wrap-bet .buy .body li button {
  width: 100%;
  padding: 0.6rem;
  font-size: 1.6rem;
  color: white;
}
.wrap-bet .buy .body li.active button {
  background: rgba(255, 255, 255, 0.8);
  color: #ff5b6b;
}
.wrap-bet .buy .btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 1.8rem;
  margin-top: 1.2rem;
}
@media (min-width: 992px) {
  .wrap-bet .buy .btn-wrap {
    margin-top: 3.2rem;
    flex-direction: column;
  }
}
.wrap-bet .buy .up, .wrap-bet .buy .down {
  display: inline-flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  font-size: 1.8rem;
  line-height: 2.4rem;
  border: 1px solid white;
  border-radius: 0.4rem;
  padding: 1.2rem 2.4rem;
  text-transform: uppercase;
  color: white;
  position: relative;
}
.wrap-bet .buy .up span, .wrap-bet .buy .down span {
  font-size: 1.6rem;
  line-height: 1.8rem;
}
.wrap-bet .buy .up i, .wrap-bet .buy .down i {
  position: absolute;
  top: 1.2rem;
  right: 2.4rem;
}
.wrap-bet .buy .up {
  background: #29cb97;
}
.wrap-bet .buy .down {
  background: #ff5b6b;
}
.wrap-bet .buy .mes {
  display: none;
  padding: 0.8rem 1.2rem;
  background-color: #f8d7da;
  border-radius: 0.4rem;
  border: 1px solid #f8d7da;
  color: rgba(255, 0, 0, 0.6);
  margin-top: 1.2rem;
}
.wrap-bet .buy .mes.active {
  display: none;
}
@media (min-width: 992px) {
  .wrap-bet .buy .mes.active {
    display: block;
  }
}
.wrap-bet .his-area {
  padding: 0.4rem;
}
.wrap-bet .his-area .lst {
  display: flex;
  flex-wrap: wrap;
}
.wrap-bet .his-area .item {
  margin: 0 0 1.2rem;
  padding: 1.2rem;
  background-color: #14161a;
  border-radius: 0.2rem;
  font-size: 1.4rem;
  color: white;
}
@media (min-width: 992px) {
  .wrap-bet .his-area .item {
    margin: 0 2.4rem 2.4rem 0;
  }
}
.wrap-bet .his-area .item .result {
  flex-shrink: 0;
}
.wrap-bet .his-area .item.lost .result, .wrap-bet .his-area .item.lost .num {
  color: #ff5b6b;
}
.wrap-bet .his-area .item.win .result, .wrap-bet .his-area .item.win .num {
  color: #29cb97;
}
.wrap-bet .his-area .spot {
  display: flex;
  align-items: center;
  border-radius: 0.8rem;
  background: white;
  padding: 1.2rem;
  color: black;
}
.wrap-bet .his-area .spot svg {
  width: 2.4rem;
  height: 2.4rem;
}
.wrap-bet .his-area .period {
  display: flex;
  align-items: center;
  margin-right: 1.2rem;
}
.wrap-bet .his-area .period .up {
  color: #29cb97;
}
.wrap-bet .his-area .period .down {
  color: #ff5b6b;
}
.wrap-bet .his-area img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1.2rem;
}
.wrap-bet .his-area .info {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.wrap-bet .his-area p {
  margin-top: 1.2rem;
}
.wrap-bet .btn-history {
  display: block;
  width: 100%;
  background: black;
  color: white;
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 1.5rem 0;
  border: 0.1rem solid #deb00b;
  margin-top: 2.4rem;
}
@media (min-width: 992px) {
  .wrap-bet .btn-history {
    display: none;
  }
}

.history {
  padding-bottom: 3.2rem;
}
.history .tabs {
  display: none;
  padding: 1.2rem 0;
  border-bottom: 1px solid white;
}
@media (min-width: 992px) {
  .history .tabs {
    display: block;
  }
}
.history .tabs button {
  border-radius: 10rem;
  padding: 0.4em 2rem;
  font-weight: 500;
}
.history .tabs button.active {
  background: #2fedb2;
  color: white;
}
.history .his-area {
  display: none;
  padding: 1.2rem;
  height: 28rem;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .history .his-area {
    display: block;
  }
}
.history-pop {
  padding: 0 2.4rem !important;
  background: #262424;
}
.history-pop .tabs, .history-pop .his-area {
  display: block;
}
.history-pop .tabs {
  font-size: 0;
  margin-bottom: 1.2rem;
}
.history-pop .tabs button {
  width: 50%;
  font-size: 1.4rem;
  color: white;
}

.alert {
  display: none;
  position: fixed;
  bottom: 1.2rem;
  text-align: center;
  left: 1.2rem;
  right: 1.2rem;
  padding: 0.8rem 1.2rem;
  background-color: #f8d7da;
  border-radius: 0.4rem;
  border: 1px solid #f8d7da;
  color: rgba(255, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .alert {
    min-width: 37rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.alert.active {
  display: block;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}
.popup.active {
  display: flex;
}
.popup-wrap {
  background: white;
  width: 50rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.popup .pop-head {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.4rem;
}
.popup .pop-head .tit {
  font-size: 2rem;
  color: white;
}
.popup .pop-head button {
  color: white;
}
.popup .pop-body {
  padding: 1.6rem 2.4rem;
}
.popup .pop-body span {
  color: #ff5b6b;
}
.popup .pop-foot {
  display: flex;
  padding: 1.2rem 2.4rem;
  justify-content: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.popup .pop-foot button {
  min-width: 5.6rem;
  background: #8f8f8f;
  color: white;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  border-radius: 0.4rem;
}
.popup .pop-foot .success {
  margin-left: 0.8rem;
  background: #29cb97;
}

.customer-wrap {
  min-height: calc(100vh - 7.6rem);
  padding-top: 6.9rem;
  background: #f4f5f6;
}
@media (min-width: 992px) {
  .customer-wrap {
    padding-top: 7rem;
    min-height: calc(100vh - 8.8rem);
  }
}
.customer-wrap .verifi-success {
  margin-bottom: 0.7rem;
  padding: 1.2rem 0;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  background: white;
}
@media (min-width: 992px) {
  .customer-wrap .verifi-success {
    padding: 2.4rem;
  }
}
.customer-wrap .verifi-success .row {
  align-items: center;
}
.customer-wrap .verifi-success .left {
  display: flex;
  align-items: center;
}
.customer-wrap .verifi-success .left i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  font-size: 4.8rem;
}
.customer-wrap .verifi-success .left .txt strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.03rem;
  margin-bottom: 0;
  color: #29cb97;
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .customer-wrap .verifi-success .left .txt strong {
    font-size: 2.2rem;
  }
}
.customer-wrap .verifi-success .left .txt p {
  margin-left: 1.1rem;
  font-size: 1.2rem;
  color: #8f8f8f;
}
@media (min-width: 992px) {
  .customer-wrap .verifi-success .left .txt p {
    font-size: 1.3rem;
  }
}
.customer-wrap .verifi-success .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.customer-wrap .verifi-success .right .breadcrum {
  display: none;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .customer-wrap .verifi-success .right .breadcrum {
    display: block;
  }
}

.user-prof {
  padding: 1.1rem 0 3.7rem;
}
@media (min-width: 992px) {
  .user-prof {
    padding: 6rem 0;
  }
}
.user-prof .menu-tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 992px) {
  .user-prof .menu-tab {
    flex-direction: column;
  }
}
.user-prof .menu-tab li {
  width: 33.3333333333%;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .user-prof .menu-tab li {
    max-width: 26rem;
    width: auto;
    margin: 0 2.4rem 0.5rem;
    padding: 1.3rem 2.2rem 0.3rem;
  }
}
.user-prof .menu-tab li.active {
  background: #fff;
}
.user-prof .menu-tab li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 4px 8px;
  white-space: nowrap;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .user-prof .menu-tab li a {
    font-size: 1.6rem;
  }
}
.user-prof .menu-tab li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.9rem 0;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .user-prof .menu-tab li a i {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
  }
}
.user-prof .adv {
  display: none;
  justify-content: space-between;
  padding: 2rem 4rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 0.2rem 0.6rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .user-prof .adv {
    display: flex;
  }
}
.user-prof .adv .btn-action {
  padding: 1.3rem 3rem;
  background: #deb00b;
  color: #fff;
  font-weight: bold;
}
.user-prof .adv .left {
  display: flex;
}
.user-prof .adv .left .fa-volume {
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: #ddd8f9;
  border-radius: 50%;
  color: #34007f;
}
.user-prof .adv .left .txt {
  margin-left: 2rem;
}
.user-prof .adv .left .txt div {
  font-size: 1.5rem;
  font-weight: 700;
}
.user-prof .adv .left .txt p {
  font-size: 1.6rem;
  color: #8f8f8f;
}
.user-prof .tab {
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 0.2rem 0.6rem 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-top: 1rem;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .user-prof .tab {
    margin-top: 3rem;
    padding: 2rem 4rem 4.5rem;
  }
}
.user-prof .tab .btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .user-prof .tab .btn-wrap {
    flex-direction: row;
  }
}
.user-prof .tab .btn-wrap button {
  padding: 1.3rem 5.3rem;
  background: #deb00b;
  color: white;
  font-weight: bold;
  width: 100%;
}
@media (min-width: 992px) {
  .user-prof .tab .btn-wrap button {
    width: auto;
  }
}
.user-prof .tab .btn-wrap .mes {
  display: none;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1.2rem;
  background-color: #f8d7da;
  border-radius: 0.4rem;
  border: 1px solid #f8d7da;
  color: rgba(255, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .user-prof .tab .btn-wrap .mes {
    margin-bottom: 0;
  }
}
.user-prof .tab .btn-wrap .mes.active {
  display: block;
}
.user-prof .profile h4 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 992px) {
  .user-prof .profile h4 {
    font-size: 4rem;
    font-weight: normal;
    text-align: left;
  }
}
.user-prof .profile h4 span {
  color: #ed9561;
}
.user-prof .profile h5 {
  margin: 1rem 0 0.6rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .user-prof .profile h5 {
    font-size: 2.4rem;
    margin: 2rem 0 1rem;
    font-weight: normal;
  }
}
.user-prof .profile .highlight {
  color: #58bd7d;
}
.user-prof .form-prof .group {
  display: flex;
  flex-direction: column;
  margin-top: 1.8rem;
}
@media (min-width: 992px) {
  .user-prof .form-prof .group {
    margin-top: 2.4rem;
  }
}
.user-prof .form-prof .group label {
  font-size: 1.6rem;
  font-weight: 600;
}
.user-prof .form-prof .group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.user-prof .form-prof .group input.error {
  border-color: red;
}
.user-prof .form-prof .group input, .user-prof .form-prof .group select {
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  border: 1px solid #e2e2e2;
  outline: 0;
  border-radius: 0.4rem;
  text-overflow: ellipsis;
}
.user-prof .form-prof .group .form-group {
  position: relative;
  margin-bottom: 0;
}
.user-prof .form-prof .group .form-group input {
  width: 100%;
}
.user-prof .form-prof .group .form-group .ic-copy {
  position: absolute;
  top: 55%;
  right: 1rem;
  font-size: 0;
  padding: 0.5rem;
  transform: translateY(-50%);
}
.user-prof .form-prof .group .form-group .ic-copy i {
  font-size: 2rem;
}
.user-prof .form-prof .required {
  color: red;
}
.user-prof .form-prof > p {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .user-prof .form-prof > p {
    font-size: 1.6rem;
  }
}
.user-prof.history .his-area {
  padding: 0;
  overflow: visible;
  height: auto;
}
.user-prof.history .item {
  width: 100%;
  margin: 0 0 2rem 0;
}
.user-prof.history .wallet {
  margin: 1rem 0 2rem;
}
.user-prof.history .wallet dt {
  color: #8f8f8f;
}
.user-prof.history .wallet dd {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.user-prof.history .wallet dd span {
  font-size: 1.2rem;
  color: white;
  margin-left: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 2.4rem;
  background: #29cb97;
}
.user-prof.history .status {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.user-prof.history .status .num {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: white;
}
.user-prof.history .status .num svg {
  width: 2.4rem;
  height: 2.4rem;
  color: #58bd7d;
}
.user-prof.history .status + p {
  margin-top: 0.6rem;
  text-align: right;
}
.user-prof.history .status.cancel {
  color: red;
}
.user-prof.history .status.cancel .num {
  color: red;
}
.user-prof.history .status.done {
  color: #58bd7d;
}
.user-prof.history .status.done .num {
  color: #58bd7d;
}
.user-prof.history .recharge .spot {
  padding: 0.4rem 1.2rem;
  font-weight: bold;
}
.user-prof.history .recharge .item {
  background: #3a424d;
}
.user-prof.history .pagi {
  display: flex;
  padding: 1rem;
}
.user-prof.history .pagi a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  border-radius: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: #ececec;
}
.user-prof.history .pagi a.active {
  background: #0B5ED7;
  color: white;
  font-weight: bold;
}
.user-prof.history .pagi a + a {
  margin-left: 0.8rem;
}

.content {
  padding-top: 9.6rem;
}

.section-banner {
  padding: 2.4rem 0;
}
@media (min-width: 992px) {
  .section-banner {
    padding: 4.8rem 0;
  }
}
.section-banner .banner-img {
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .section-banner .banner-img {
    margin-top: 0;
  }
}
.section-banner .banner-img img {
  border-radius: 0.8rem;
}
@media (min-width: 992px) {
  .section-banner .left {
    padding: 4rem 0;
  }
}
@media (min-width: 992px) {
  .section-banner .right {
    height: 100%;
  }
}
.section-banner .right .banner-img, .section-banner .right img {
  height: 100%;
}

.section-about .about-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f8f9;
  padding: 5px 1rem;
}
.section-about .about-market-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1f4e;
}
.section-about .about-item {
  position: relative;
  padding-left: 3.5rem;
  font-size: 1.6rem;
}
.section-about .about-item > i {
  position: absolute;
  top: 0.4rem;
  left: 0;
  font-size: 1.6rem;
  color: #0B5ED7;
}
.section-about .about-item:not(:first-child) {
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .section-about .about-market {
    margin-top: 3rem;
  }
}
.section-about .about-market-item:nth-child(even) {
  background-color: #f7f8f9;
}
.section-about .about-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-about .about-market-list {
  max-height: 40rem;
  overflow-y: scroll;
  box-shadow: 0 25px 40px -15px hsla(0, 0%, 60%, 0.4), 0 -15px 40px -15px rgba(0, 0, 0, 0.1);
}
.section-about .about-detail {
  margin-top: 2.4rem;
}
@media (min-width: 992px) {
  .section-about .about-detail {
    padding-left: 6rem;
    margin-top: 0;
  }
}
.section-about .btn-view-all {
  position: relative;
  display: inline-block;
  color: #0069d9;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
}
.section-about .btn-view-all:hover::after {
  width: 100%;
}
.section-about .btn-view-all::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0069d9;
  transition: width 0.3s ease-out;
}
.section-about .coin {
  padding: 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .section-about .coin {
    gap: 0.5rem;
  }
}
.section-about .coin-icon {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
@media (max-width: 992px) {
  .section-about .coin-icon {
    margin-right: 0.5rem;
  }
}
.section-about .coin-box {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  gap: 4rem;
}
@media (max-width: 992px) {
  .section-about .coin-box {
    gap: 2rem;
  }
}
.section-about .coin-buy, .section-about .coin-sell {
  padding: 4px 10px;
  width: 9rem;
  border-radius: 5px;
  border: 1px solid #f8f8f8;
  background-color: white;
  text-align: center;
  color: #4289a1;
  font-weight: 700;
}
@media (max-width: 992px) {
  .section-about .coin-buy, .section-about .coin-sell {
    font-size: 1.2rem;
    width: 7rem;
  }
}
@media (max-width: 768px) {
  .section-about .coin-buy, .section-about .coin-sell {
    font-size: 1.1rem;
  }
}
.section-about .coin-diff {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 4.6rem;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
  font-size: 8px;
  line-height: 2.3rem;
  color: #4289a1;
}
@media (max-width: 992px) {
  .section-about .coin-diff {
    width: 2.6rem;
  }
}
.section-about .coin-name {
  font-size: 14px;
  font-weight: 700;
  color: black;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .section-about .coin-name {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .section-about .coin-name {
    font-size: 1.1rem;
  }
}
.section-about .coin-name:hover {
  color: #ed9561;
}
.section-about .coin-percent {
  font-weight: 700;
}
.section-about .coin-percent-succecss {
  color: #1abc9c;
}
.section-about .coin-percent-danger {
  color: #ff5b6b;
}

.section-download {
  background-color: #01050b;
  color: white;
}
@media (min-width: 992px) {
  .section-download {
    background-image: url("../images/download-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.section-download p {
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 992px) {
  .section-download p {
    padding-bottom: 1.6rem;
  }
}
.section-download .scan-top, .section-download .device-app {
  border: 1px solid #424c5b;
  border-radius: 0.4rem;
  background: linear-gradient(180deg, #2f3540 0%, #202630 100%);
}
.section-download .scan-top > .img img, .section-download .device-app > .img img {
  -o-object-position: bottom;
     object-position: bottom;
}
.section-download .scan-top {
  display: flex;
  align-items: center;
  padding: 16px;
  margin: 18px 0;
  width: 100%;
  height: 11.2rem;
}
@media (min-width: 992px) {
  .section-download .scan-top {
    margin-top: 0;
  }
}
.section-download .scan-top .img {
  margin-right: 2rem;
}
.section-download .device-app {
  overflow: hidden;
  padding-top: 1.2rem;
}
@media (min-width: 992px) {
  .section-download .device-app {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.5rem 0;
  }
}
.section-download .device-app .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .section-download .device-app .info {
    flex-direction: row;
    justify-content: space-between;
  }
}
.section-download .device-app .info img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
}
.section-download .device-app .system {
  display: flex;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .section-download .device-app .system {
    margin-top: 0;
  }
}
.section-download .device-app a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.section-download .device-app a + a {
  margin-left: 1.2rem;
}
.section-download .device-app.device-pc .img {
  width: 32.2rem;
  height: 22rem;
  margin: 1.6rem auto 0;
}
@media (min-width: 992px) {
  .section-download .device-app.device-pc .img {
    width: 466px;
    height: 318px;
  }
}
.section-download .device-app.device-pc .img:hover img {
  transform: scale(1.1);
}
.section-download .device-app.device-pc .img img {
  transition: 0.6s;
}
@media (min-width: 992px) {
  .section-download .device-app.device-mo {
    height: 100%;
  }
}
.section-download .device-app.device-mo .img {
  width: 308px;
  height: 279px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .section-download .device-app.device-mo .img {
    width: 496px;
    height: 424px;
    margin-top: auto;
  }
}
.section-download .device-app.device-mo .img:hover img {
  transform: scale(1.06);
}
.section-download .device-app.device-mo .img img {
  transition: 0.6s;
}
.section-download .img {
  height: 100%;
}
.section-download .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-download .info .title {
  display: block;
  font-size: 20px;
}
@media (min-width: 992px) {
  .section-download .info .title {
    font-size: 2.4rem;
  }
}
.section-download .info .sub {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.6rem;
  font-size: 1.4rem;
}
.section-download .download-box {
  margin-top: 6rem;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .section-download .download-box {
    flex-direction: row;
    margin-top: 12rem;
  }
}

.section-regular .lst {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2.4rem;
}
@media (min-width: 992px) {
  .section-regular .lst {
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 0;
  }
}
.section-regular .item {
  width: 100%;
  margin-top: 1.6rem;
  border-radius: 0.4rem;
}
@media (min-width: 992px) {
  .section-regular .item {
    width: calc((100% - 3.2rem) / 2);
    margin-top: 5.6rem;
  }
}
.section-regular a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 3.2rem;
  box-shadow: 0 0.4rem 7.6rem 0 rgba(0, 0, 0, 0.06);
}
.section-regular .img {
  margin: 1.6rem 0;
}
.section-regular img {
  width: 10.2rem;
  height: 10.2rem;
}
.section-regular strong {
  display: block;
  margin: 1rem 0 1.2rem;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .section-regular strong {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
.section-regular p {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .section-regular p {
    font-size: 1.6rem;
  }
}

.section-mission .lst {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1.8rem;
}
@media (min-width: 992px) {
  .section-mission .lst {
    flex-direction: row;
    margin-top: 6.3rem;
  }
}
.section-mission .item {
  width: 100%;
  margin-top: 1.2rem;
  border: 1px solid #ececec;
  border-radius: 0.4rem;
  transition: 0.25s;
}
@media (min-width: 992px) {
  .section-mission .item {
    width: calc((100% - 6rem) / 3);
    margin-top: 0;
  }
}
.section-mission .item:hover {
  transform: scale(0.96);
  box-shadow: 0 0.3rem 1.6rem 0 rgba(60, 60, 67, 0.06);
}
.section-mission .item:hover i {
  color: #0B5ED7;
}
.section-mission a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3.2rem 2.4rem 4.4rem;
}
.section-mission img {
  width: 5.8rem;
  height: 5.8rem;
}
.section-mission strong {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.section-mission p {
  font-size: 1.6rem;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: center;
}
.section-mission i {
  margin-top: 0.8rem;
  color: #a1a1a1;
  font-size: 1.4rem;
  transition: 0.25s;
}

.section-trade {
  padding: 4rem 0 0;
  text-align: center;
  background: linear-gradient(180deg, #f3f7fa 0%, rgba(243, 247, 250, 0) 100%);
}
@media (min-width: 992px) {
  .section-trade {
    text-align: left;
    padding: 8rem 0;
  }
}
.section-trade .trade-step {
  display: flex;
  align-items: flex-start;
  width: 30rem;
  margin: 4.7rem auto 0;
  text-align: left;
}
@media (min-width: 992px) {
  .section-trade .trade-step {
    width: 100%;
    text-align: left;
  }
}
.section-trade .trade-step > img {
  width: 2.2rem;
  height: 22.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .section-trade .trade-step > img {
    height: 23.4rem;
    padding: 0.6rem 0;
  }
}
.section-trade .trade-step ul {
  margin-left: 1.6rem;
}
.section-trade .trade-step li {
  height: 10rem;
}
.section-trade .trade-step strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .section-trade .trade-step strong {
    font-size: 2rem;
  }
}
.section-trade .trade-step p {
  margin-top: 0.8rem;
  font-size: 1.6;
  color: rgba(60, 63, 67, 0.6);
  line-height: 2rem;
}
.section-trade .btn {
  width: 30rem;
}
@media (min-width: 992px) {
  .section-trade .btn {
    width: auto;
  }
}
.section-trade .img {
  margin-top: 8.3rem;
  height: 30.5rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-trade .img {
    height: 100%;
    margin-top: 0;
  }
}

.section-award {
  background: url("../images/award-bg.png");
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-award .subtitle {
  max-width: 76.8rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.6);
}
.section-award .content {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  padding-top: 0;
  cursor: pointer;
}
@media (min-width: 992px) {
  .section-award .content {
    margin-top: 10rem;
    flex-direction: row;
    align-items: center;
  }
}
.section-award .left {
  position: relative;
  background-size: 100% 100%;
  background: url("../images/award-area-mo.png") no-repeat center;
  width: 100%;
  height: 18rem;
  padding: 2rem;
  transition: background-size 0.6s;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .section-award .left {
    width: 44.6rem;
    height: 40.8rem;
    padding: 4.3rem 3.2rem;
    background: url("../images/award-area.png") no-repeat center;
  }
}
.section-award .left:hover {
  background-size: 110% 110% !important;
}
.section-award .left strong {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  font-weight: bold;
}
.section-award .left strong .num-count, .section-award .left strong .num-value {
  margin-top: 0;
  font-size: 4.2rem;
  line-height: normal;
}
@media (min-width: 992px) {
  .section-award .left strong .num-count, .section-award .left strong .num-value {
    font-size: 4.2rem;
  }
}
.section-award .left strong .num-count {
  animation: counter 3s ease-in-out;
  animation-fill-mode: forwards;
  counter-reset: num var(--num);
}
.section-award .left strong .num-count:after {
  content: counter(num);
}
.section-award .left strong .num-value {
  overflow: hidden;
  width: 0;
  height: 0;
  animation: showValue 0s ease-in-out 3s forwards;
}
.section-award .left span {
  display: block;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 0.4rem;
}
@media (min-width: 992px) {
  .section-award .left span {
    font-size: 1.8rem;
  }
}
.section-award .right {
  position: relative;
  flex: 1;
  height: 40.8rem;
  border-radius: 0 0.4rem 0.4rem 0;
  opacity: 1;
  background: linear-gradient(180deg, #333b48 0%, #191e27 100%);
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
  flex-direction: column-reverse;
  padding-top: 4rem;
}
@media (min-width: 992px) {
  .section-award .right {
    margin-top: 0;
    flex-direction: row;
    padding-left: 3rem;
    padding-top: 0;
  }
}
.section-award .right p {
  font-size: 1.6rem;
  font-weight: 500;
}
.section-award .right span {
  display: block;
  font-size: 1.2rem;
  color: rgb(153, 153, 153);
  line-height: 1.6rem;
}
.section-award .right ul {
  width: 100%;
  margin-top: 2.4rem;
  padding: 0 2.4rem 3.2rem;
}
@media (min-width: 992px) {
  .section-award .right ul {
    width: 26rem;
    margin-top: 0;
    padding: 0;
  }
}
.section-award .right li + li {
  margin-top: 1.2rem;
}
.section-award .right .img {
  position: relative;
  width: 50%;
}
@media (min-width: 992px) {
  .section-award .right .img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .section-award .right .img {
    display: block;
    position: absolute;
    bottom: 1rem;
    right: -0.6rem;
    width: 39.8rem;
    height: 42.6rem;
  }
}
.section-award .right .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-award .get-more {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  width: 30px;
  height: 30px;
  color: black;
  border-radius: 100%;
  transition: 0.25s;
}
.section-award .get-more:hover {
  background: #0B5ED7;
  color: white;
}

.section-news .news-box {
  margin-top: 3.2rem;
  padding: 2.4rem;
  background: #F6F6F7;
  border-radius: 0.4rem;
}
@media (min-width: 992px) {
  .section-news .news-box {
    padding: 3.2rem;
    margin-top: 8rem;
  }
}
.section-news .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-news .top strong {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .section-news .top strong {
    font-size: 3.2rem;
    line-height: 5.2rem;
  }
}
.section-news .top .get-more {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  width: 30px;
  height: 30px;
  color: black;
  border-radius: 100%;
  transition: 0.25s;
}
.section-news .top .get-more:hover {
  background: #0B5ED7;
  color: white;
}
.section-news .lst {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-news .item {
  margin-top: 2.4rem;
  width: 100%;
  background: white;
  border-radius: 0, 4rem;
}
@media (min-width: 992px) {
  .section-news .item {
    width: calc((100% - 3.2rem) / 2);
  }
}
.section-news .item:hover img {
  transform: scale(1.06);
}
.section-news .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
@media (min-width: 992px) {
  .section-news .item a {
    flex-direction: row;
  }
}
.section-news .img {
  overflow: hidden;
  width: 100%;
  height: 16rem;
}
@media (min-width: 992px) {
  .section-news .img {
    width: 12rem;
    min-width: 12rem;
    height: 12rem;
  }
}
.section-news .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
  transition: 0.25s;
}
.section-news .info {
  margin-top: 1.2rem;
}
@media (min-width: 992px) {
  .section-news .info {
    margin-left: 2.4rem;
    margin-top: 0;
  }
}
.section-news .info strong {
  display: block;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 992px) {
  .section-news .info strong {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
}
.section-news .info span {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .section-news .info span {
    font-size: 1.4rem;
  }
}

.section-pay ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .section-pay ul {
    margin-top: 5.2rem;
  }
}
.section-pay li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 25%;
  margin-top: 2.8rem;
}
@media (min-width: 992px) {
  .section-pay li {
    flex-basis: 20%;
  }
}
.section-pay li img {
  height: 4.2rem;
}
.section-pay .note {
  margin-top: 3rem;
  font-size: 1.4rem;
  text-align: center;
  color: rgba(60, 63, 67, 0.6);
}
@media (min-width: 992px) {
  .section-pay .note {
    font-size: 1.6rem;
    margin-top: 2.4rem;
  }
}

.section-flatform {
  height: 24rem;
  justify-content: center;
  background: url("../images/forex-bg.png") no-repeat center;
  background-size: cover;
  background-position: right top;
  transition: background-position 1s;
  color: white;
}
@media (min-width: 992px) {
  .section-flatform {
    height: 32.5rem;
  }
}
.section-flatform:hover {
  background-position: left bottom;
}

.clients_wrap {
  position: absolute;
  bottom: 2.6rem;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 1.2rem 0;
  background: white;
  border-radius: 0.8rem;
  box-shadow: 0.4rem 1.5rem 2.7rem 0 rgba(60, 60, 67, 0.122);
}
.clients_wrap .inner {
  position: relative;
}
.clients_wrap .lst {
  display: flex;
  align-items: center;
}
.clients_wrap .lst:first-child {
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollTextStart 20s infinite linear;
}
.clients_wrap .lst:last-child {
  animation: scrollTextEnd 20s infinite linear;
}
.clients_wrap .item {
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 2.4rem;
}
.clients_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}
@keyframes scrollTextStart {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollTextEnd {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes counter {
  0% {
    display: block;
    --num: 0;
  }
  99% {
    display: block;
    --num: var(--count);
  }
  100% {
    display: none;
  }
}
@keyframes showValue {
  to {
    width: auto;
    height: auto;
    visibility: visible;
  }
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #0f171c;
  z-index: 11;
  padding: 2.5rem 0;
  color: white;
  transition: all 0.3s ease;
}
header.scroll {
  padding: 1rem 0;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.32);
}
header .wrap-header {
  display: flex;
  align-items: center;
  position: relative;
}
header .logo img {
  width: 10rem;
}
@media (min-width: 992px) {
  header .logo img {
    width: 14.2rem;
  }
}
header .btn-login {
  margin-left: auto;
}

.d-nav > ul {
  margin-left: 4rem;
}
.d-nav > ul > li {
  display: inline-block;
  margin: 0 1.5rem;
}
.d-nav > ul > li.sub > a {
  position: relative;
}
.d-nav > ul > li.sub > a::after {
  position: absolute;
  top: 52%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
}
.d-nav > ul > li:hover > a {
  color: #2fedb2;
  border-color: #2fedb2;
}
.d-nav > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}
.d-nav > ul > li a {
  display: inline-block;
  padding: 1rem 2rem 1rem 0;
  border-bottom: 2px solid transparent;
  font-size: 1.6rem;
  transition: all 0.2s ease;
}
.d-nav > ul > li ul {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 1.5rem 10rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.d-nav > ul > li ul::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100vw;
  left: calc(-50vw + 50%);
  background: #3a424d;
  height: 100%;
  box-shadow: 0 40px 40px -20px rgba(0, 0, 0, 0.15);
}
.d-nav > ul > li ul > li {
  flex: 0 0 33.33%;
}
.d-nav > ul > li ul > li > a {
  display: inline-block;
  padding: 2rem 4.5rem;
  color: white;
}
.d-nav > ul > li ul > li > a:hover {
  color: #2fedb2;
}

.icon-menu {
  display: none;
}

@media (max-width: 1199px) {
  .d-nav {
    display: none;
  }
  .icon-menu {
    display: block;
    width: 24px;
    position: relative;
  }
  .icon-menu span {
    display: block;
    background-color: #aeb1b9;
    width: 100%;
    margin: 2px 0;
    border-radius: 3px;
    height: 3px;
    float: right;
  }
  .icon-menu span:first-child {
    margin-top: 0;
  }
  .icon-menu span:last-child {
    margin-bottom: 0;
  }
}
.menu-mo {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  height: 0;
  transition: 0.25s;
  flex-direction: column;
  background: #141416;
  overflow: hidden;
}
.menu-mo.active {
  height: calc(100vh - 6.9rem);
}
.menu-mo li {
  margin: 0 1.2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #8f8f8f;
}
.menu-mo a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 0;
}
.menu-mo a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
}

.footer {
  padding: 5rem 0 3rem;
  background-color: #18191d;
  color: white;
}
@media (max-width: 992px) {
  .footer {
    padding: 3rem 0;
  }
}
.footer-title {
  font-size: 1.4rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .footer-title {
    margin-bottom: 1.5rem;
  }
}
.footer-logo {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .footer-logo {
    margin-bottom: 3rem;
  }
}
.footer-logo a {
  display: inline-block;
}
.footer-logo img {
  width: 13.2rem;
}
.footer-item {
  margin-top: 1.6rem;
}
@media (min-width: 992px) {
  .footer-item {
    margin-top: 0;
  }
}
.footer-menu-list li a {
  transition: 0.25s ease-out;
  font-size: 1.4rem;
}
.footer-menu-list li a:hover {
  color: #0B5ED7;
}
.footer-txt {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid #8f8f8f;
  font-size: 1.4rem;
  color: #8f8f8f;
}
.footer .download {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .footer .download {
    padding-right: 10rem;
  }
}
.footer .download a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  height: 3.2rem;
  margin-right: 1.2rem;
  margin-top: 1.6rem;
  border-radius: 0.4rem;
  background: #f6f5f8;
  font-size: 1.4rem;
  color: black;
}
.footer .download img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
}
.footer .lock {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  color: #8f8f8f;
}

.acd-drop:after {
  content: "+";
}
.acd-drop.active:after {
  content: "−";
}

@media all and (min-width: 992px) {
  .m-nav, .m-nav-over {
    display: none !important;
  }
}
@media all and (max-width: 991px) {
  .m-nav-over {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.15s ease-in-out;
  }
  .m-nav-over.active {
    width: 100%;
  }
  .m-nav {
    display: block;
    position: fixed;
    top: 0;
    width: 280px;
    bottom: 0;
    z-index: 999;
    color: #424242;
    background: #141416;
    transition: all 0.15s ease-in-out;
    right: -280px;
  }
  .m-nav.active {
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.15);
    right: 0;
  }
  .m-nav.active .m-nav-close {
    visibility: visible;
    opacity: 1;
  }
  .m-nav .m-nav-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    outline: none;
    font-size: 28px;
    cursor: pointer;
    transition: inherit;
    opacity: 0;
    visibility: hidden;
  }
  .m-nav .m-nav-close i {
    color: #0B5ED7;
  }
  .m-nav .nav-ct {
    margin-top: 5rem;
    height: 100%;
    overflow: auto;
  }
  .m-nav .nav-ct img {
    width: 15.2rem;
  }
  .m-nav .logo {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem;
  }
  .m-nav a {
    display: block;
    font-size: 14px;
    font-family: arial;
    line-height: 20px;
    color: white;
    padding: 10px 15px 10px 18px;
    border-bottom: solid 1px #8f8f8f;
  }
  .m-nav ul ul {
    background: rgba(255, 255, 255, 0.04);
    display: none;
  }
  .m-nav ul ul a {
    padding-left: 36px;
  }
  .m-nav ul ul ul {
    padding-left: 54px;
  }
  .m-nav .acd-drop {
    width: 40px;
    height: 40px;
    float: right;
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: white;
    font-family: monospace;
    outline: none;
    cursor: pointer;
    border-left: solid 1px #8f8f8f;
    background: rgba(255, 255, 255, 0.04);
  }
}
.wrap-bet2 {
  background-color: #030f1c;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.wrap-bet2 .games-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
  background-color: #151a20;
  padding: 0 5rem 0 1.5rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .games-nav {
    height: 4.6rem;
  }
}
.wrap-bet2 .games-logo img {
  height: 3rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .games-logo img {
    height: 2rem;
  }
}
.wrap-bet2 .games-menu {
  display: flex;
  gap: 1rem;
  flex: 0 0 32rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .games-menu {
    justify-content: space-around;
    position: fixed;
    left: 0;
    padding: 0.5rem 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    background-color: #151a20;
  }
}
.wrap-bet2 .games-menu button {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #484848;
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.2rem;
}
.wrap-bet2 .games-icon {
  width: 1.7rem;
  height: 1.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrap-bet2 .games-content {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  height: calc(100vh - 7.4rem);
  gap: 4px;
  margin: 7rem 0.4rem 0.4rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .games-content {
    height: auto;
  }
}
.wrap-bet2 .games-col {
  background-color: #151a20;
  flex: 0 0 42rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .games-col {
    flex: 0 0 100%;
  }
}
@media (max-width: 1410px) {
  .wrap-bet2 .games-col:first-child {
    display: none;
  }
}
.wrap-bet2 .games-col:nth-child(2) {
  flex: 1;
}
.wrap-bet2 .modal-header {
  justify-content: center;
  border: none;
  padding: 2rem;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .wrap-bet2 #rule .modal-dialog {
    display: block;
  }
}
.wrap-bet2 .modal-dialog {
  display: flex;
  align-items: center;
  height: 100vh;
  max-width: 120rem;
  padding: 0 1.5rem;
  color: white;
}
.wrap-bet2 .modal-content {
  background: #151a20;
}
.wrap-bet2 .table-striped tbody tr:nth-of-type(odd) {
  background-color: #222;
}
.wrap-bet2 .table-striped tbody tr:nth-of-type(even) {
  background-color: #333;
}
.wrap-bet2 .table td, .wrap-bet2 .table th {
  border: 0;
  padding: 1.5rem;
}
.wrap-bet2 .modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.wrap-bet2 .modal-close button > i {
  color: white;
  font-size: 2.5rem;
}
.wrap-bet2 .modal-history .modal-content {
  min-height: 60vh;
}
.wrap-bet2 .modal-history .modal-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .wrap-bet2 .modal-history .modal-form {
    flex-direction: column;
  }
}
.wrap-bet2 .modal-history .modal-form .form-group {
  flex: 1;
}
@media (max-width: 992px) {
  .wrap-bet2 .modal-history .modal-form .form-group {
    width: 100%;
  }
}
.wrap-bet2 .modal-history .modal-form .form-group label {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.wrap-bet2 #noti .modal-body {
  width: 100%;
}
.wrap-bet2 #noti .modal-content {
  min-height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
}
.wrap-bet2 #noti .modal-content h4 {
  font-size: 2.5rem;
  color: red;
}
.wrap-bet2 #noti .modal-content p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.wrap-bet2 #noti .modal-dialog {
  margin: auto;
  max-width: 50rem;
}
.wrap-bet2 .tool-list > li {
  font-family: "Arial", sans-serif;
  display: flex;
  align-items: center;
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  color: #adadad;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 770px) {
  .wrap-bet2 .tool-list > li {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
.wrap-bet2 .tool-list > li:first-child {
  background-color: #0f1216;
}
.wrap-bet2 .tool-list > li:not(:first-child) {
  padding: 1rem 1.2rem 0.9rem;
  border-bottom: 1px solid #2c3641;
  cursor: pointer;
  transition: color 0.25s ease;
}
.wrap-bet2 .tool-list > li:not(:first-child):hover {
  background-color: #2c3641;
}
.wrap-bet2 .tool-coin {
  flex: 1.5;
  gap: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
}
.wrap-bet2 .tool-coin > img {
  width: 3.2rem;
}
.wrap-bet2 .tool-total {
  flex: 1;
}
.wrap-bet2 .tool-diff {
  flex: 1;
}
.wrap-bet2 .tool-precent {
  text-align: right;
  flex: 0.5;
  font-size: 1.2rem;
}
.wrap-bet2 .tool-coin-name {
  font-size: 1.2rem;
  color: #e2e2e2;
}
.wrap-bet2 .tool-precent-negative {
  color: #fa3963;
}
.wrap-bet2 .tool-precent-positive {
  color: #2fedb1;
}
.wrap-bet2 .bet {
  padding: 1rem;
  margin: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wrap-bet2 .bet-btn-wrap {
  display: flex;
  gap: 1rem;
}
.wrap-bet2 .bet-heading {
  border: 1px solid #2fedb2;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3607843137);
  padding: 10px 5px;
  display: flex;
}
.wrap-bet2 .bet-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrap-bet2 .bet-item span {
  color: white;
}
.wrap-bet2 .bet-item span:first-child {
  width: 100%;
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.3607843137);
  padding-bottom: 4px;
  font-size: 1.2rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-item span:first-child {
    font-size: 1.1rem;
  }
}
.wrap-bet2 .bet-item span:last-child {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-item span:last-child {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
.wrap-bet2 .bet-item span.bet-item-rise {
  color: #2fedb2;
}
.wrap-bet2 .bet-item span.bet-item-drop {
  color: #fa3963;
}
.wrap-bet2 .bet-timer-list {
  display: flex;
  gap: 1rem;
}
.wrap-bet2 .bet-timer-list > li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  color: #fff;
  border-radius: 6px;
  border: 2px solid #2fedb2;
  padding: 5px 0 0;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-timer-list > li {
    font-size: 1.2rem;
  }
}
.wrap-bet2 .bet-timer-list > li.active, .wrap-bet2 .bet-timer-list > li:hover {
  background: #2fedb2;
}
.wrap-bet2 .bet-timer-list > li span:nth-child(2) {
  width: 100%;
  height: 40%;
  display: inline-block;
  color: #fff;
  background-color: hsla(0, 0%, 100%, 0.3);
  border-radius: 0, 6px;
  margin-top: 0.5rem;
}
.wrap-bet2 .bet-currency {
  display: flex;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3607843137);
}
.wrap-bet2 .bet-currency-box, .wrap-bet2 .bet-currency-statis {
  border: 1px solid #2fedb2;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3607843137);
  padding: 10px 5px;
}
.wrap-bet2 .bet-currency-box {
  display: flex;
  gap: 0.4rem;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  text-align: center;
}
.wrap-bet2 .bet-currency-statis {
  display: flex;
  flex: 3;
  justify-content: space-between;
  padding: 10px;
}
.wrap-bet2 .bet-currency-statis input {
  background: none;
  border: 1px solid rgba(249, 204, 69, 0.3607843137);
  border-radius: 6px;
  color: #fff;
  min-height: 48px;
  text-align: center;
  width: 95%;
}
.wrap-bet2 .bet-currency-amount {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1.5;
  text-align: center;
}
.wrap-bet2 .bet-currency-surplus {
  display: flex;
  flex-direction: column;
  flex: 2;
  align-items: flex-end;
  justify-content: space-between;
}
.wrap-bet2 .bet-currency-surplus button {
  color: white;
}
.wrap-bet2 .bet-currency-text, .wrap-bet2 .bet-currency-number {
  color: white;
}
.wrap-bet2 .bet-currency-number {
  margin-left: 5px;
}
.wrap-bet2 .bet-currency-text {
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-currency-text {
    font-size: 1.2rem;
  }
}
.wrap-bet2 .bet-currency-btn {
  font-size: 1.5rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-currency-btn {
    font-size: 1.2rem;
  }
}
.wrap-bet2 .bet-number {
  display: flex;
  gap: 1rem;
}
.wrap-bet2 .bet-number > li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #fff;
  border-radius: 6px;
  border: 2px solid #2fedb2;
  height: 5rem;
  cursor: pointer;
  background-color: #0f1823;
  text-align: center;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-number > li {
    font-size: 1.2rem;
  }
}
.wrap-bet2 .bet-number > li.active, .wrap-bet2 .bet-number > li:hover {
  background: #2fedb2;
}
.wrap-bet2 .bet-btn {
  width: 100%;
  color: white;
  border: 0;
  outline: none;
  font-size: 2rem;
  line-height: 2.3rem;
  border-radius: 4px;
  padding: 5px;
  color: white;
  background: #2fedb2;
  text-align: center;
  transition: all 0.4s linear;
}
.wrap-bet2 .bet-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 770px) {
  .wrap-bet2 .bet-bottom {
    font-size: 1.2rem;
  }
}
.wrap-bet2 .bet-bottom > img {
  height: 10rem;
}
.wrap-bet2 .bet-bottom span {
  color: white;
}
.wrap-bet2 .chart {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #030f1c;
}
.wrap-bet2 .chart-result {
  margin-top: 0.4rem;
  background: #151a20;
}
@media (max-height: 900px) {
  .wrap-bet2 .chart-result {
    display: none;
  }
}
.wrap-bet2 .chart-contet {
  background: #151a20;
  flex: 1;
}
@media (max-width: 770px) {
  .wrap-bet2 .chart-contet {
    height: 30rem;
    flex: none;
  }
}
.wrap-bet2 .chart .table-scroll {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: auto;
  overflow-x: auto;
  height: 26rem;
}
.wrap-bet2 .chart .table-scroll::-webkit-scrollbar-track {
  background-color: #151a20;
}
.wrap-bet2 .chart .table-scroll::-webkit-scrollbar {
  width: 3px;
}
.wrap-bet2 .chart .table-scroll::-webkit-scrollbar-thumb {
  background-color: #5e5d61;
}
.wrap-bet2 .chart .table-scroll::-webkit-scrollbar {
  height: 3px;
}
.wrap-bet2 .chart .table-scroll {
  margin-top: 3rem;
}
@media (max-width: 500px) {
  .wrap-bet2 .chart .table-scroll {
    max-width: 40rem;
  }
}
@media (max-width: 376px) {
  .wrap-bet2 .chart .table-scroll {
    max-width: 32rem;
  }
}
.wrap-bet2 .chart .table-scroll table {
  width: 100%;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0;
}
.wrap-bet2 .chart .table-wrap {
  position: relative;
}
.wrap-bet2 .chart .table-scroll th,
.wrap-bet2 .chart .table-scroll td {
  padding: 1.2rem;
  vertical-align: middle;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.wrap-bet2 .chart .table-scroll td {
  color: #fa3963;
  font-size: 1.1rem;
  border-bottom: 1px solid #484849;
}
.wrap-bet2 .chart .table-scroll thead th {
  white-space: nowrap;
  text-transform: uppercase;
  background-color: #0f1216;
  color: #fff;
  position: sticky;
  top: 0;
}
.wrap-bet2 .chart-header {
  position: relative;
  overflow: hidden;
  height: 10rem;
  padding: 1.4rem 0;
  margin-bottom: 0.4rem;
  background: #151a20;
}
@media (max-width: 770px) {
  .wrap-bet2 .chart-header {
    height: 7.8rem;
    padding: 0;
  }
}
.wrap-bet2 .chart-header .slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wrap-bet2 .chart-header ul {
  display: flex;
  animation: my-animation 40s linear infinite;
  animation-delay: -20s;
}
.wrap-bet2 .chart-header p {
  display: flex;
  align-items: center;
}
.wrap-bet2 .chart-header p img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrap-bet2 .chart-header li {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  padding: 0 3.2rem;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1rem;
}
.wrap-bet2 .chart-header li + li {
  border-left: 0.1rem solid rgba(255, 255, 255, 0.3607843137);
}
.wrap-bet2 .chart-header .price {
  margin-top: 0.2rem;
  font-weight: 500;
}
.wrap-bet2 .chart-header .status {
  font-size: 1.3rem;
  font-weight: 500;
}
.wrap-bet2 .chart-header .status.positive {
  color: #13ce66;
}
.wrap-bet2 .chart-header .status.negative {
  color: red;
}

@keyframes my-animation {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.wrap-auth {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wrap-auth main {
  display: flex;
  height: 100%;
  min-height: 38.5rem;
}
@media (min-width: 992px) {
  .wrap-auth main {
    justify-content: center;
    align-items: center;
  }
}

.auth-box {
  max-width: 48.7rem;
  width: 100%;
  padding: 2.4rem;
  margin: 8rem auto 0;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .auth-box {
    padding: 4rem 4.8rem;
    margin-top: 0;
    overflow: auto;
    box-shadow: 0 0.2rem 0.8rem rgba(54, 61, 66, 0.12), 0 0.2rem 0.2rem rgba(54, 61, 66, 0.04), 0 0 0.1rem rgba(54, 61, 66, 0.15);
  }
}
.auth-box .title {
  text-align: center;
  font-size: 3.2rem;
  line-height: 4.8rem;
}
.auth-box .mes {
  display: none;
  padding: 0.8rem 1.2rem;
  background-color: rgba(255, 0, 0, 0.25);
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: rgba(255, 0, 0, 0.6);
  margin-bottom: -1.2rem;
  margin-top: 1.2rem;
}
.auth-box .mes.active {
  display: block;
}
.auth-box .group {
  display: flex;
  flex-direction: column;
  margin-top: 2.4rem;
}
.auth-box .group ~ .group {
  margin-top: 2.4rem;
}
.auth-box .group label {
  font-size: 1.6rem;
  font-weight: 500;
}
.auth-box .group .inp {
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: 0;
  border-radius: 0.8rem;
}
.auth-box .group .inp.error {
  border-color: red;
}
.auth-box .chekbox {
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
}
.auth-box .chekbox input {
  width: 1.6rem;
  height: 1.6rem;
}
.auth-box .chekbox label {
  margin-left: 1.2rem;
  font-size: 1.6rem;
}
.auth-box .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  width: 100%;
  margin-top: 3.2rem;
  text-transform: uppercase;
  font-weight: normal;
  color: white;
  background: #0B5ED7;
  border-radius: 0.8rem;
}
.auth-box .required {
  color: red;
}
.auth-box .sub {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1.3rem;
  margin-top: 2.4rem;
}
.auth-box .sub a {
  margin-left: 1.2rem;
  font-size: 1.6rem;
  color: #0B5ED7;
}
