*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
    margin: 0;
    padding: 0;
}

.clear {
    clear: both;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style-type: none;
}

input,
textarea {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-style: italic;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    font-style: italic;
}

img[src=""],
img:not([src]) {
    display: none;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: #333;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/*base css end*/


/*font*/

@font-face {
    font-family: "Nunito";
    src: url("/Static/fonts/Nunito-Regular.ttf");
    src: url("/Static/fonts/Nunito-Regular.ttf") format('truetype');
}

@font-face {
    font-family: "Nunito_B";
    src: url("/Static/fonts/Nunito-Bold.ttf");
    src: url("/Static/fonts/Nunito-Bold.ttf") format('truetype');
}

@font-face {
    font-family: "Nunito_L";
    src: url("/Static/fonts/Nunito-Light.ttf");
    src: url("/Static/fonts/Nunito-Light.ttf") format('truetype');
}


/*common component*/

body {
    font-family: "Nunito", "微软雅黑", "Microsoft YaHei", Arial, Tahoma, Verdana, Helvetica, Serif, sans-serif, Monospace;
    color: #fff;
    background-color: #141922;
    font-family: Nunito;
    margin: 0;
}

.indexWrap {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  padding-top: 1px;
  box-sizing: border-box;
}

.linebox,
.responsebox {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.font0 {
    font-size: 0;
}

.boxWrapper,
.responseboxWrapper {
    display: inline-block;
    *display: inline;
    *zoom: 0;
    width: 100%;
}

.boxWrapper:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.lBox {
    *float: left;
    display: inline-block;
}

.rBox {
    *float: right;
    display: inline-block;
}

.responsebox-l {
    *float: left;
    display: inline-block;
}

.responsebox-r {
    *float: right;
    display: inline-block;
}

.vmbox {
    vertical-align: middle;
}

.gridBox {
    display: table;
}

.flexbox {
    display: flex;
}

.blockbox {
    display: block;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.box-30 {
    padding: 0 30px;
    box-sizing: border-box;
}

.default-hide {
    display: none;
}

.pr10 {
    padding-right: 10px;
}

.w100 {
    width: 100%;
}

.w210 {
    width: 210px;
}

.no-bg {
    background: none !important;
}

.pointer {
    cursor: pointer;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn {
    display: inline-block;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-radius {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.btn-success {
    background-color: #00b400;
}

.btn-default {
    background-color: #ffa300;
}

.btn-hollow-default {
    border: 2px solid #ffa300;
    box-sizing: border-box;
}

.btn.disabled {
    cursor: not-allowed !important;
}


/*```````````````````````component-style```````````````````````*/


/*animate start*/

.fade {
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.fade.fadeIn {
    opacity: 1;
}


/*animate end*/


/*drop-box*/


.hasDropBoxWrapper {
    position: relative;
}

.hasDropBox {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hasDropBox:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    top: 46%;
    right: 0;
    color: inherit;
    cursor: pointer;
    transform: translateY(-50%) rotateZ(45deg);
    -webkit-transform: translateY(-50%) rotateZ(45deg);
    -moz-transform: translateY(-50%) rotateZ(45deg);
    -ms-transform: translateY(-50%) rotateZ(45deg);
    -o-transform: translateY(-50%) rotateZ(45deg);
}

.dropBox {
    position: absolute;
    width: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0;
}

.hasDropBox.act .dropBox,
.hasDropBox.act+.dropBox {
    display: block;
    z-index: 5;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.hasDropBox.act .dropBox::after,
.hasDropBox.act+.dropBox.posT::after {
    content: " ";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: inherit;
    left: 50%;
    top: -4px;
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) rotate(-45deg);
}

.hasDropBox.act+.dropBox.posB::after {
    content: " ";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: inherit;
    left: 50%;
    top: auto;
    bottom: -4px;
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
}


/*selectBox*/

.select-group {
    padding: 10px 20px;
    background-color: #1F2635;
    border-radius: 4px;
}

.select-box {
    cursor: pointer;
    font-size: 16px;
    color: #fff;
}

.select-btn {
    color: #DCE0E4;
    font-size: 14px;
}

.select-item-container {
    border-radius: 6px;
    bottom: 120%;
    left: 0;
    padding: 10px 16px;
    box-sizing: border-box;
    background-color: inherit;
}

.select-item~.select-item {
    margin-top: 8px;
}

/* cover */

.mycover {
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(203, 203, 203, 0.4);
}


/* center box*/

.centerBox {
    position: relative;
}

.centerCont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


/*previewBox*/

.preCont {
    padding: 20px;
    /* background-color: #fff; */
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

.preCont img {
    width: 100%;
}

.previewTitle {
    line-height: 24px;
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
}

.closeBtn {
    position: absolute;
    top: 30px;
    right: 10px;
    height: 30px;
    width: 30px;
    background-color: #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 2;
}


/*````````````````````component-style-end`````````````````````*/

/*footer*/

.rolling-footer {
    position: fixed;
    bottom: 0;
    z-index: 4;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.rolling-footer.act {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

.pointBar {
    position: absolute;
    right: 60px;
    top: -80px;
    height: 80px;
    width: 80px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background-color: rgba(49, 52, 68, 0.6);
    cursor: pointer;
}

.pointBar::after,
.pointBar::before {
    content: " ";
    display: block;
    position: absolute;
    top: 22%;
    height: 62%;
    width: 1px;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
}

.pointBar::after {
    transform: rotateZ(-45deg);
}

.pointBar::before {
    transform: rotateZ(45deg);
}

.footer.act .pointBar::after,
.footer.act .pointBar::before {
    top: 0;
    left: 50%;
    height: 100%;
}

.pointBar::after {
    left: 72%;
}

.pointBar::before {
    left: 28%;
}

.footer-disclaimer, .footer-game-links {
    padding: 20px 0;
    line-height: 20px;
}

.footer-disclaimer {
    margin-top: 20px;
}

.footer-game-links {
    text-align: center;
    line-height: 40px;
  }

  .footer-game-links a {
    color: #dce0e4!important;
    margin: 0 16px;
    display: inline-block;
  }

  .footer-game-links a:hover {
      color: #ffa300 !important;
  }

#footer {
    border-top: 1px solid #43474E;
    color: #DCE0E4;
    font-size: 14px;
}

#footer a {
    color: #DCE0E4;
}

    #footer a:hover {
        color: #ffa300;
    }


    #footer .footer-inner {
        max-width: 1170px;
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 40px 0 20px 0;
    }

.foot-menu {
    width: calc(100% - 270px);
}

strong {
    font-weight: bold;
}

#footer dl {
    float: left;
    width: 33.33%;
}

    #footer dl dt {
        font-weight: bold;
        padding-bottom: 17px;
    }

    #footer dl dd {
        line-height: 26px;
        background: url(../img/header/icon-arrow-left.png) no-repeat left;
        padding-left: 12px;
    }

#footer .list-group {
    margin-bottom: 0;
}

.pa-copyright {
    display: inline-block;
    font-size: 12px;
    color: #b3b3b3;
}

.footer-default {
    padding: 28px 0;
    background-color: #0E1218;
}

    .footer-default .footer-inner {
        width: 634px;
        margin: 0 auto;
    }

        .footer-default .footer-inner img {
            vertical-align: middle;
            float: right;
        }

.connect-icons-inner .txt-center {
    font-size: 12px;
    color: #b3b3b3;
    margin-bottom: 0;
}

.payment-methods {
    float: right;
}

    .payment-methods p {
        font-weight: bold;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

.footer-bottom {
    background: #10151C;
    line-height: 80px;
}

    .footer-bottom .connect-icons {
        padding-top: 20px;
        float: left;
    }

        .footer-bottom .connect-icons ul li {
            float: left;
            width: 40px;
            height: 40px;
            text-align: center;
            border: 1px solid #ffa300;
            border-radius: 2px;
            margin-right: 10px;
            font-size: 0;
        }

            .footer-bottom .connect-icons ul li a {
                display: block;
                width: 100%;
                height: 100%;
            }

            .footer-bottom .connect-icons ul li img {
                vertical-align: middle;
            }

            .footer-bottom .connect-icons ul li:first-child {
                background: url(../img/header/icon-footer-1.png) no-repeat center;
            }

            .footer-bottom .connect-icons ul li + li {
                background: url(../img/header/icon-footer-2.png) no-repeat center;
            }

                .footer-bottom .connect-icons ul li + li + li {
                    background: url(../img/header/icon-footer-4.png) no-repeat center;
                }

                    .footer-bottom .connect-icons ul li + li + li + li {
                        background: url(../img/header/icon-footer-4.png) no-repeat center;
                    }

            .footer-bottom .connect-icons ul li:last-child {
                background: url(../img/header/icon-footer-5.png) no-repeat center;
            }

            .footer-bottom .connect-icons ul li:first-child:hover {
                background: #ffa300 url(../img/header/icon-footer-1.png) no-repeat center;
            }

            .footer-bottom .connect-icons ul li + li:hover {
                background: #ffa300 url(../img/header/icon-footer-2.png) no-repeat center;
            }

            .footer-bottom .connect-icons ul li + li + li:hover {
                background: #ffa300 url(../img/header/icon-footer-4.png) no-repeat center;
            }

            .footer-bottom .connect-icons ul li + li + li + li:hover {
                background: #ffa300 url(../img/header/icon-footer-4.png) no-repeat center;
            }

            .footer-bottom .connect-icons ul li:last-child:hover {
                background: #ffa300 url(../img/header/icon-footer-5.png) no-repeat center;
            }

    .footer-bottom #topMenu {
        float: right;
        color: #DCE0E4;
    }

    .clearfix:after, .clearfix:before {
    content: " ";
    display: table;
}

.dropbox-wrapper {
    position: relative;
}

.dropbox-wrapper .dropbox {
    position: absolute;
    left: 0;
    display: none;
}

        .footer-bottom #topMenu .menu-select {
            position: relative;
            z-index: 1001;
        }

            .footer-bottom #topMenu .menu-select li {
                float: left;
                font-size: 16px;
                border-radius: 2px;
                line-height: 30px;
                cursor: pointer;
                background-color: #1F2635;
            }

                .footer-bottom #topMenu .menu-select li .select-target-box span {
                    display: inline-block;
                    width: 44px;
                    vertical-align: middle;
                    background: url(../img/header/icon-down.png) no-repeat right;
                }

            .footer-bottom #topMenu .menu-select ul {
                float: left;
                margin-right: 16px;
            }

                .footer-bottom #topMenu .menu-select ul li .language-select {
                    padding: 6px 18px 6px 26px;
                    background-position: 20px 12px;
                }

                    .footer-bottom #topMenu .menu-select ul li .language-select img {
                        vertical-align: middle;
                        width: 20px;
                        margin-right: 10px;
                    }

                .footer-bottom #topMenu .menu-select ul .currencyUl {
                    position: absolute;
                    left: 0;
                    width: 100%;
                    bottom: 100%;
                }

                    .footer-bottom #topMenu .menu-select ul .currencyUl li {
                        width: 100%;
                    }

                .footer-bottom #topMenu .menu-select ul:first-child .currencyUl li img {
                    vertical-align: middle;
                    width: 20px;
                    margin-right: 10px;
                }

                .footer-bottom #topMenu .menu-select ul:last-child {
                    margin-right: 0;
                }

                    .footer-bottom #topMenu .menu-select ul:last-child li {
                        padding: 6px 20px 6px 6px;
                        text-align: center;
                    }

                    .footer-inner .accordion {
                        width: 100%;
                        /* max-width: 360px; */
                        /* background: #FFF; */
                        margin: 0 auto 0px auto;
                        -webkit-border-radius: 4px;
                        -moz-border-radius: 4px;
                        border-radius: 4px;
                        font-size: 14px;
                    }

                    .footer-inner .accordion .link {
                        cursor: pointer;
                        display: block;
                        line-height: 1;
                        padding: 17px 15px 17px 20px;
                        color: #DCE0E4;
                        font-size: 14px;
                        font-weight: 700;
                        /* border-bottom: 1px solid #CCC; */
                        position: relative;
                        -webkit-transition: all 0.4s ease;
                        -o-transition: all 0.4s ease;
                        transition: all 0.4s ease;
                        width: 100%;
                        background: url(../img/header/icon-down.png) no-repeat 96% center;
                        font-weight: 0;
                        border-bottom: 2px solid rgba(66, 70, 78, 0.28);
                    }

                    .footer-inner .accordion .submenu {
    padding: 6px 0 28px 0;
    display: none;
}

.footer-inner .accordion li.open .link {
    color: #0084FF;
    background: #1F2635 url(../img/header/icon-show-up-active.png) no-repeat 96% center;
    border: 0;
}

.footer-inner .accordion li.open .submenu {
    border-bottom: 2px solid rgba(66, 70, 78, 0.28);
}

.txt-center {
  text-align: center;
}

.wrapIndex, .connect-icons-inner {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.footer-inner .accordion .submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    padding: 8px 0 8px 12px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    background: url(../img/header/icon-arrow-left.png) no-repeat left center;
}

.footer-inner .accordion .submenu li {
    background: #141922;
    padding-left: 20px;
}

.logged-out {
  line-height: 64px;
  vertical-align: middle;
}

.login-btn {
  background-color: #ffa300;
  width: 166px;
  height: 40px;
  line-height: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  vertical-align: middle;
  transition: box-shadow 0.5s ease-out;
}

.login-btn:hover, .about-what-item-links a:hover, .about-intro a:hover, .how-to-bottom a:hover {
  box-shadow: inset 0px 0px 15px 2px rgba(255,255,255,0.3);
  text-decoration: none !important;
}

.login-btn:focus, .login-btn:active, .about-what-item-links a:focus, .about-what-item-links a:active, .about-intro a:focus, .about-intro a:active, .how-to-bottom a:focus, .how-to-bottom a:active, .sell-game-button:focus, .sell-game-button:active {
  outline: none;
  box-shadow: inset 0px 0px 15px 2px rgba(0,0,0,0.4);
}

/* footer end*/

/* scroll top */

#topcontrol {
  display: none;
  width: 48px;
  height: 49px;
  background: #373b43;
  text-align: center;
  padding: 6px 0;
  border-radius: 48px;
}

/*  mobile style */

.m-show {
    display: none;
}

.m-show-ib {
    display: none;
}

/* mobile */

@media screen and (max-width:767px) {
      #topcontrol {
        display: none;
    }
    .staticfooter-m {
        position: static!important;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
    .msection,
    .mcontainer {
        width: 100%;
        min-height: auto;
        min-width: auto;
    }
    .mcontent {
        padding: 0px 10px;
    }
    .responseboxWrapper {
        width: 100%;
        display: block;
    }
    .responsebox-l,
    .responsebox-r {
        display: block;
        text-align: left;
        clear: both;
        float: none;
    }
    .responsebox {
        display: block;
    }

    .m-hide {
        display: none!important;
    }
    .m-show {
        display: block!important;
    }
    .m-show-ib {
        display: inline-block!important;
    }
    .mtxtcenter {
        text-align: center;
    }
    .mblock {
        display: block!important;
    }
    .mflexbox {
        display: flex!important;
    }
    .mw100 {
        width: 100%!important;
        box-sizing: border-box;
    }
    .mw50 {
        width: 50%!important;
        box-sizing: border-box;
    }
    .mhauto {
        height: auto!important;
    }
    .copyright {
        width: 100%;
        line-height: 60px;
        text-align: center;
    }
    .socity-group>div {
        justify-content: space-between;
    }
    .goBackBtn {
        font-size: 20px;
        color: #0084FF;
    }
    .return_btn_mobo {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    .btn-reply-dispute {
        padding: 6px 11px;
    }
    .btn-reply-dispute.btn-hollow-default {
        padding: 6px 10px;
    }
    .btn-block-m {
        display: block;
    }
    .btn-block-m~.btn-block-m {
        margin-top: 10px;
        margin-left: 0;
    }

    /*header*/
    .btn-account {
        font-size: 0;
        display: block;
        text-align: center;
        width: 64px;
        height: 62px;
        background: url('../img/header/account.png') no-repeat center -66px;
    }
    .btn-account.act {
        background: url('../img/header/account.png') no-repeat center 0px;
    }
    .asideNavMobWrapper {
        display: none;
        overflow: hidden;
        /*transform: translateY(-100%);*/
        opacity: 0;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
    }
    .asideNavMobWrapper.act {
        display: block;
        /*transform: translateY(0%);*/
        opacity: 1;
    }
    .asideNavMobWrapper .navGroupTitle {
        background-color: #151922;
    }
    .nav-box-group {
        height: 0;
        overflow: hidden;
        transition: height 0.6s ease-in-out;
    }
    .aside-title-item.act .nav-box-group {
        height: auto;
    }
    .asideNavMobWrapper .aside-title-item {
        height: auto;
        overflow: auto;
        background-color: #1e2739;
    }
    .asideNavMobWrapper .aside-nav-title-group a {
        background-color: #151922;
    }
    .asideNavMobWrapper .aside-nav-title-group a .nav-box-item {
        color: #fff;
    }
    .asideNavMobWrapper .aside-nav-title-group a~a {
        border-top: 1px solid rgba(223, 223, 223, 0.4);
    }
    .asideNavMobWrapper .aside-title-item.logout-item-m {
        background-color: transparent;
    }
    .logout-btn-m {
        border: 2px solid #006bfa;
        line-height: 1;
        padding: 10px 30px;
        /* box-shadow: inset 0 0 10px #006bfa; */
        margin: 20px 0;
    }
    .personal-info {
        margin-left: 10px;
    }

    #gameMenuOuter {
      display: none;
    }

    /* footer*/
    .footer-nav-box-group {
        padding: 0;
        display: block;
    }
    .footer-nav-box {
        width: 100%;
        display: block;
    }
    .footer-nav-box .nav-box-title {
        padding: 0 30px;
        position: relative;
        cursor: pointer;
    }
    .footer-nav-box .nav-box-title.act {
        background-color: #1f2635;
        color: #0084FF;
    }
    .footer-nav-box .nav-box {
        padding: 0 30px;
        height: 0;
        overflow: hidden;
        transition: height 1s ease-in-out;
        -webkit-transition: height 1s ease-in-out;
        -moz-transition: height 1s ease-in-out;
        -ms-transition: height 1s ease-in-out;
        -o-transition: height 1s ease-in-out;
    }
    .footer-nav-box .nav-box-title.act+.nav-box {
        display: block;
        height: auto;
    }
    .nav-group {
        padding: 10px 0;
    }
    .footer-nav-box .nav-box-title:after,
    .footer-nav-box .nav-box-title:after {
        content: " ";
        display: block;
        position: absolute;
        width: 6px;
        height: 6px;
        border: 2px solid #fff;
        border-top: none;
        border-left: none;
        top: 46%;
        right: 20px;
        color: inherit;
        cursor: pointer;
        transform: translateY(-50%) rotateZ(45deg);
        -webkit-transform: translateY(-50%) rotateZ(45deg);
        -moz-transform: translateY(-50%) rotateZ(45deg);
        -ms-transform: translateY(-50%) rotateZ(45deg);
        -o-transform: translateY(-50%) rotateZ(45deg);
    }
    .footer-nav-box .nav-box-title.act:after {
        border: 2px solid #0084FF;
        border-top: none;
        border-left: none;
        transform: translateY(-50%) rotateZ(225deg);
        -webkit-transform: translateY(-50%) rotateZ(225deg);
        -moz-transform: translateY(-50%) rotateZ(225deg);
        -ms-transform: translateY(-50%) rotateZ(225deg);
        -o-transform: translateY(-50%) rotateZ(225deg);
    }
}

.sm-show {
    display: none;
}

.sm-show-ib {
    display: none;
}


/* ipad */

@media screen and (max-width:991px) and (min-width:768px) {
    .smsection,
    .smcontainer {
        width: 100%;
        min-height: auto;
        min-width: auto;
    }
    .smcontent {
        padding: 0px 10px;
    }

    .sm-hide {
        display: none!important;
    }
    .sm-show {
        display: block!important;
    }
    .sm-show-ib {
        display: inline-block!important;
    }
    .smtxtcenter {
        text-align: center;
    }
    .smblock {
        display: block!important;
        float: none;
    }
    .smflexbox {
        display: flex!important;
    }
    .actDetail .smw100 {
        width: 100%!important;
    }
    .smhauto {
        height: auto!important;
    }
    .copyright {
        width: calc(100% - 360px);
        line-height: 60px;
        text-align: center;
    }
    .socity-group>div {
        justify-content: space-between;
    }
    .goBackBtn {
        font-size: 20px;
        color: #0084FF;
    }
    .return_btn_mobo {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    .btn-reply-dispute {
        padding: 6px 11px;
    }
    .btn-reply-dispute.btn-hollow-default {
        padding: 6px 10px;
    }
    .btn-block-sm {
        display: block;
    }
    .btn-block-sm~.btn-block-sm {
        margin-top: 10px;
        margin-left: 0;
    }

    /*header*/
    .btn-account {
        font-size: 0;
        display: block;
        text-align: center;
        width: 64px;
        padding: 20px;
        box-sizing: border-box;
    }
    body.actDetail .aside-wrapper {
        display: none;
    }
    .navitem-img {
        height: 140px;
        background: url(../img/header/methods.png) no-repeat 0 0;
        background-size: contain;
    }
    .aside-wrapper {
        width: calc(96% - 430px);
        margin-left: 2%;
    }
}


/* average size */

@media screen and (max-width:1298px) and (min-width:992px) {
    .mdsection,
    .mdcontainer {
        width: 100%;
        min-height: auto;
        min-width: auto;
    }
    .mdcontent {
        width: calc(100% - 247px);
    }
    .md-hide {
        display: none!important;
    }
    .md-show {
        display: block!important;
    }
    .md-show-ib {
        display: inline-block!important;
    }
    .mdtxtcenter {
        text-align: center;
    }
    .mdblock {
        display: block!important;
    }
    .mdflexbox {
        display: flex!important;
    }
    .mdw100 {
        width: 100%!important;
    }
    .mdhauto {
        height: auto!important;
    }
    .copyright {
        width: calc( 100% - 460px);
        line-height: 60px;
        text-align: center;
    }
    .socity-group>div {
        justify-content: space-between;
    }
    .goBackBtn {
        font-size: 20px;
        color: #0084FF;
    }
    .return_btn_mobo {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    .btn-reply-dispute {
        padding: 6px 11px;
    }
    .btn-reply-dispute.btn-hollow-default {
        padding: 6px 10px;
    }
    .btn-block-md {
        display: block;
    }
    .btn-block-md~.btn-block-md {
        margin-top: 10px;
        margin-left: 0;
    }

    /*header*/
    .btn-account {
        font-size: 0;
        display: block;
        text-align: center;
        width: 64px;
        padding: 20px;
        box-sizing: border-box;
    }

    /* footer*/
}

/*faq*/
.alphabet .alphabetNav {
  background-color: #1F2635; }
  .alphabet .alphabetNav .mainbav {
    float: left; }
  .alphabet .alphabetNav span {
    height: 40px;
    width: 20px;
    float: right;
    padding-right: 80px; }
  .alphabet .alphabetNav .alphabetHide {
    background: url(../img/icon-hide.png) no-repeat right; }
  .alphabet .alphabetNav .alphabetShow {
    background: url(../img/icon-show.png) no-repeat right; }

.section-outer {
  font-size: 14px;
  color: #DBE0E4;
  margin-bottom: 48px; }
  .section-outer h1 {
    text-align: center; }
  .section-outer .border-b {
    border-bottom: 1px solid #141922; }
  .section-outer .alphabetNav {
    font-size: 16px;
    background-color: #1F2635;
    height: 40px;
    line-height: 40px;
    padding: 0 14px 0 20px;
    cursor: pointer; }
  .section-outer .alphabetOuter {
    background-color: #141922;
    border: 2px solid #1F2635;
    border-top: 0;
    padding: 24px 24px 24px 44px;
    display: none; }
    .section-outer .alphabetOuter.pa-work-flow > img {
        visibility:hidden;
    }
    .section-outer .alphabetOuter .work-flow {
      padding-top: 14px; }
      .section-outer .alphabetOuter .work-flow li {
        float: left;
        width: 20%;
        padding: 0 20px 0 22px;
        line-height: 18px;
        position:relative;
      }
      .section-outer .alphabetOuter .work-flow li:first-child {
        padding: 0 14px 0 20px; }
      .section-outer .alphabetOuter .work-flow li:last-child {
        margin-right: 0; }
       .section-outer .alphabetOuter .work-flow li .work-flow-box {
           position:absolute;
           width:80px;
           height:95px;
           top:-110px;
           left:50%;
           margin-left:-40px;
           background:url(../img/header/work-flow-box-bg.png) no-repeat 0 0;
           background-size: cover;
       }
        .section-outer .alphabetOuter .work-flow li + li .work-flow-box {
            background-position:0 -93px;
        }
        .section-outer .alphabetOuter .work-flow li + li+li .work-flow-box {
            background-position:0 -185px;
        }
        .section-outer .alphabetOuter .work-flow li + li+li+li .work-flow-box {
            background-position:0 -280px;
        }
        .section-outer .alphabetOuter .work-flow li + li+li+li+li .work-flow-box {
            background-position:0 -374px;
        }
    .section-outer .alphabetOuter h4 {
      font-weight: bold;
      margin-bottom: 14px; }
    .section-outer .alphabetOuter p {
      margin-bottom: 14px; }
    .section-outer .alphabetOuter p:last-child {
      margin-bottom: 0; }

/*end faq*/

/* New header */

#topUpOuter {
    width: 100%;
    background-color: #1F2635;
    margin-bottom: 20px;
}

#topUp {
    background-color: #1F2635;
    color: #fff;
    width: 1344px;
    margin: 0 auto;
    padding: 0 8px;
    font-size: 16px;
    line-height: 65px;
}

    #topUp .btn-normal {
        font-size: 14px;
        padding: 10px 20px;
    }

    #topUp .btn-sigin {
        background-color: #ffa300;
        width: 166px;
        font-weight: bold;
    }

    #topUp a.btn-logout {
        padding: 10px 40px;
    }

#topText {
    float: left;
    font-weight: bold;
}

#topText span {
  color: #fff;
}

/* How to buy How to sell links */
.pull-left {
    float: left !important;
}

.header-guide {
    margin-left: 60px;
}

.header-guide a {
    color: #191408;
}

.header-guide i {
    font-size: 16px;
}

.display-flex {
    display: flex;
}

.ml-60 {
    margin-left: 60px;
}

.-mr-4 {
    margin-right: -1px;
}

#userInfo:hover {
  text-decoration: underline;
}
#accountPanel {
    float: right;
    position: relative;
}

    #accountPanel a {
        color: #191408;
    }

#logo {
    float: left;
}
.icon-search.icon-search-txt {
    background: none;
    width: auto;
    padding: 0 10px;
    color: #fff;
}

#topUp #tapCapture div.icon-search.icon-search-txt {
    width: auto;
    padding: 0 10px;
    font-size: 14px;
}
.icon-search-active.icon-search-txt {
    color: #ffa300;
}
    #logo img {
        width: 40px;
        margin-right: 16px;
        vertical-align: middle;
    }

    #logo h2 {
        font-size: 16px;
        display: inline-block;
        color: #fff;
        font-weight: bold;
    }

    #logined {
        display: none;
    }

        #logined #issues, #logined #messages {
            margin-right: 30px;
            position: relative;
            float: left;
        }

            #logined #issues img, #logined #messages img {
                vertical-align: middle;
            }

            #logined #issues span, #logined #messages span {
                position: absolute;
                width: 6px;
                height: 6px;
                background: #15B41A;
                top: 23px;
                display: block;
                border-radius: 6px;
                right: 2px;
                display: none;
            }

            #logined #issues label, #logined #messages label {
                padding-left: 4px;
            }

        #logined #messages {
            margin-right: 40px;
        }

            #logined #messages span {
                right: -2px;
                top: 23px;
                left: 18px;
            }

        #logined #issues span {
            left: 10px;
        }

        #logined #userInfo {
            position: relative;
            z-index: 10;
            float: right;
            cursor: pointer;
            color: #fff;
        }

            #logined #userInfo a {
                color: #fff;
            }

                #logined #userInfo a:hover {
                    color: #fff;
                }

            #logined #userInfo img.personal-avatar {
                width: 40px;
                border-radius: 40px;
                vertical-align: middle;
            }

            #logined #userInfo #accountBtn {
                width: 98px;
                text-align: left;
                padding-left: 10px;
            }

            #logined #userInfo .account-menu {
                position: absolute;
                height: 640px;
                width: 250px;
                right: 0;
                display: none;
            }

                #logined #userInfo .account-menu dl {
                    position: absolute;
                    right: 0;
                    width: 250px;
                    top: 96px;
                    background: #1F2635;
                    padding: 10px 0 50px 0;
                    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                }

                #logined #userInfo .account-menu dd {
                    width: 250px;
                    padding-left: 80px;
                    color: #8F939A;
                }

                #logined #userInfo .account-menu dt, #logined #userInfo .account-menu dd {
                    height: 40px;
                    line-height: 40px;
                }

                #logined #userInfo .account-menu dt {
                    padding: 0 24px;
                    height: 50px;
                    line-height: 50px;
                }

                    #logined #userInfo .account-menu dt img {
                        margin-right: 14px;
                    }

                    #logined #userInfo .account-menu dt:hover {
                        background-color: #2C3341;
                    }

                #logined #userInfo .account-menu dd:hover {
                    background-color: #2C3341;
                    color: #1785FC;
                }

                #logined #userInfo .account-menu dt:last-child {
                    text-align: center;
                    padding-top: 20px;
                }

                    #logined #userInfo .account-menu dt:last-child:hover {
                        background-color: #1F2635;
                    }

                #logined #userInfo .account-menu .arrow {
                    top: 88px;
                    left: 90px;
                    border-width: 25px;
                    border-top-width: 0;
                    background: url(../img/header/icon-arrow-up.png) no-repeat;
                    position: absolute;
                    border-color: transparent;
                    border-style: solid;
                }


@media (max-width: 768px) {
    .header-guide {
        display: none;
    }
    #topUp #tapCapture div {
        border-left: 1px solid #343A48;
        float: left;
        width: 46px;
        height: 50px;
        text-align: center;
        cursor: pointer;
    }
  #footer .footer-inner {
        width: 100%;
        padding: 0;
    }

        #footer .footer-inner dl {
            width: 100%;
            float: none;
            border-bottom: 2px solid rgba(66, 70, 78, 0.28);
        }

        #footer .footer-inner dt {
            width: 100%;
            background: url(../img/header/icon-down.png) no-repeat 96% center;
            padding-bottom: 0;
            height: 50px;
            line-height: 50px;
            padding-left: 20px;
            cursor: pointer;
        }

        #footer .footer-inner dd {
            margin-bottom: 16px;
            display: none;
            margin-left: 20px;
            width: 100%;
        }

    #footer .payment-methods {
        display: none;
    }

    #footer .footer-bottom {
        padding-bottom: 30px;
        height: auto;
    }

        #footer .footer-bottom .connect-icons, #footer .footer-bottom .txt-center, #footer .footer-bottom #topMenu {
            float: none;
        }

        #footer .footer-bottom .txt-center {
            margin-left: 0;
        }

        #footer .footer-bottom .connect-icons {
            width: 240px;
            margin: 0 auto;
        }

            #footer .footer-bottom .connect-icons ul li:last-child {
                margin-right: 0;
            }

        #footer .footer-bottom #topMenu {
            padding-top: 0;
        }

            #footer .footer-bottom #topMenu .menu-select {
                width: 240px;
                margin: 0 auto;
            }

                #footer .footer-bottom #topMenu .menu-select ul:first-child {
                    margin-right: 12px;
                }

                    #footer .footer-bottom #topMenu .menu-select ul:first-child li .language-select {
                        padding: 5px 52px 5px 42px;
                        background-position: 40px 12px;
                    }

                #footer .footer-bottom #topMenu .menu-select ul:last-child li {
                    padding: 5px 16px 5px 0px;
                  }

                  .footer-disclaimer {
    border-top: 0;
    padding: 20px;
}

#footer .footer-inner {
    width: 100%;
    padding: 0;
}

#footer .foot-menu {
    display: none;
}

#footer .footer-inner dl {
    width: 100%;
    float: none;
    border-bottom: 2px solid rgba(66, 70, 78, 0.28);
}

#footer .footer-inner dt {
    width: 100%;
    background: url(../img/header/icon-down.png) no-repeat 96% center;
    padding-bottom: 0;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    cursor: pointer;
}

#footer .footer-inner dd {
    margin-bottom: 16px;
    display: none;
    margin-left: 20px;
    width: 100%;
}

  #topUpOuter {
        margin-bottom: 10px;
        height: 50px;
    }

    #topUp {
        width: 100%;
        line-height: 50px;
        padding: 0 0 0 14px;
    }

    #topText h2 {
      line-height: 50px;
    }

        #topUp #logo img {
            width: 30px;
            margin-right: 10px;
        }

        #topUp #topPanel {
            display: none;
        }

        #topUp #tapCapture {
            float: right;
        }

            #topUp #tapCapture div {
                border-left: 1px solid #343A48;
                float: left;
                width: 46px;
                height: 50px;
                text-align: center;
                cursor: pointer;
            }

                #topUp #tapCapture div img {
                    vertical-align: middle;
                }
}

@media (max-width:1335px) {
    #topUp {
        width: 100%;
    }

    .wrapIndex, .connect-icons-inner {
    width: 100% !important;
}
}

@media (min-width: 768px) {
  #tapCapture {
    display: none;
}

#footer .list-group {
    display: none;
}
}

@media (max-width: 1190px) and (min-width: 769px) {
.wrapIndex, .connect-icons-inner {
    width: calc(100% - 40px);
    padding: 20px;
}
}


/* Updated header */
.txt-link {
    color: #ffa300;
}

.txt-link:hover, .txt-link:focus {
    color: #ffa300;
    text-decoration: underline !important;
}

header #topUpOuter {
    margin-bottom: 0;
}

header #topUp {
    display: flex;
    line-height: inherit;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 8px;
}

.flex {
    display: flex;
}

.header-item {
    display: flex;
}

.justify-content-between {
    display: flex;
    justify-content: space-between!important;
}

.align-items-center {
    align-items: center;
}

.text-light {
    color: #fff !important;
}

.header-item.header-link a {
    font-size: 16px;
    font-weight: bold;
}

header .header-link img {
    width: 40px;
    margin-right: 16px;
    vertical-align: middle;
}

.header-item.w-20 {
    width: 20%;
}

.header-item .text-light a {
    color: #fff;
}

.nav-search {
    width: 50%;
    padding: 10px;
    height: 80px;
    align-items: center;
}

.nav-search .form-group:first-child {
    width: 65%;
}

.nav-search .form-group {
    height: 44px;
    position: relative;
    margin-bottom: 0;
}

.nav-search .form-group:last-child {
    width: 35%;
}

.nav-search .icon-pl {
    position: absolute;
    width: 100%;
    z-index: 999;
}

#topUp .btn-sigin {
    height: 44px;
}

#searchBar input {
    background-color: #263044;
    border: 1px solid #263044;
    border-radius: 4px;
    width: 100%;
    height: 44px;
    padding-right: 40px;
    font-size: 14px;
    padding-left: 20px;
    color: #fff;
}

#searchBar input::placeholder {
    font-style: normal;
}

#searchBar input:focus {
    border-color: #ffa300;
    outline: 0;
}

.icon-pl label {
    display: inline-block;
    width: 40px;
    height: 44px;
    position: absolute;
    text-align: center;
    line-height: 44px;
    top: 0;
    right: 0;
    color: #fff;
}

.suggestions-inner-container {
    width: 100%;
    position: absolute;
    top: 60px;
    border-radius: 4px;
    padding-left: 0;
    background: #1f2635;
    z-index: 15;
}

.suggestions-inner-container li:first-child {
    padding-top: 0;
}

.nav-search li.item {
    padding: 8px 20px;
}

.nav-search li.item a {
    color: #fff;
}

.nav-search li.item a:hover {
    color: #ffa300;
    text-decoration: underline !important;
}

.nav-search .filter-select .txt-link {
    position: absolute;
    width: 100%;
    cursor: pointer;
    line-height: 44px;
    text-align: center;
    padding-left: 10px;
}

.nav-search .filter-select .nodetree {
    display: none;
    width: 100%;
    position: absolute;
    padding-top: 64px;
    z-index: 999;
    cursor: pointer;
}

.nodetree ul {
    padding: 0;
}

.nodetree li {
    color: #fff;
    background-color: #1f2635;
    border-bottom: 1px solid #141922;
}

.nodetree li {
    display: flex;
    align-items: center;
    position: relative;
    width: 200px;
    margin: 0;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.nodetree li div {
    display: flex;
    align-items: center;
}

.nodetree li ul {
    border: 2px solid #ffa300;
    border-radius: 0 4px 4px 0;
}

.nodetree li ul {
    position: absolute;
    padding: 0;
    width: 100%;
    left: 100%;
    top: 0;
    display: none;
    z-index: 9999;
}

.nodetree li i {
    font-size: 24px;
    color: #737d8c;
    margin: 5px;
}

.featured-games-category {
    height: 55px;
    text-align: center;
}

.featured-games-category > ul{
    text-align: left;
}

.nodetree li:hover i {
    color: #fff;
}

.nodetree li a {
    color: #fff;
}

.nodetree li a {
    text-decoration: none;
    padding: 0 20px;
}

.nodetree li:hover {
    background-color: #ffa300;
}
.nodetree li ul li:hover {
    background-color: #1f2635;
}

.nodetree li ul a:hover {
    color: #ffa300;
    text-decoration: underline;
}

.triangle_border_left {
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #1f2635 transparent transparent;
    left: -10px;
    top: calc((55px/2) - 12px);
}

.nodetree li ul li {
    border: 0;
    width: calc(100%);
}

.nodetree li:last-child {
    border: 0;
    padding: 17.5px 0 17.5px 34px;
}

.nodetree li ul li:last-child {
    padding: 10px;
}

.connect-icons-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom {
    line-height: initial;
}

.footer-bottom .connect-icons {
    padding-top: 0px;
    float: none;
}

.footer-bottom #topMenu .menu-select a img {
    vertical-align: bottom;
}

@media (max-width: 1335px) {
    #topUp {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .nav-search {
        width: 40%;
    }
}

@media (max-width: 1200px) {
    .hide-lg {
        display: none;
    }
}

@media (max-width: 900px) {
    header #topUpOuter {
        z-index: 14;
        position: relative;
    }

    header #topUp {
        padding: 0;
    }

    .header-item.header-link {
        padding-left: 8px;
    }

    #topUp #tapCapture {
        float: right;
    }

    #tapCapture {
        display: block;
    }

    .nav-search {
        width: 100%;
        top: 50px;
        padding-top: 20px;
        position: absolute;
        background-color: #141922;
        display: none;
    }

    #topUp #topPanel {
        display: none;
    }

    #topUp #tapCapture div.icon-search.icon-search-txt {
        text-transform: uppercase;
        color: #ffa300;
    }

    #topUp #tapCapture div {
        border-left: 1px solid #343a48;
        float: left;
        width: 46px;
        line-height: 50px;
        height: 50px;
        text-align: center;
        cursor: pointer;
    }

    #topUp #tapCapture div.icon-search.icon-search-txt i {
        font-size: 14px;
        margin-left: 5px;
    }

    .slidedownactive {
        display: block;
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }

    .nav-search .form-group:first-child {
        width: 100%;
    }

    .suggestions-inner-container {
        background: #141922;
        z-index: 9999;
    }

    .suggestions-inner-container .items-outer {
        background: #141922;
    }

    .suggestions-inner-container .items-outer.active-search {
        min-height: 100vh;
    }

    .nav-search .filter-select .txt-link {
        display: none;
    }

    .nav-search .form-group:last-child {
        width: 100%;
    }

    .nav-search .filter-select .nodetree {
        display: block !important;
        padding-top: 15px;
    }

    .nodetree li {
        width: 100%;
    }

    .nodetree > .group > li {
        flex-direction: column;
        height: auto;
        padding: 0px;
    }

    .nodetree > .group > li:last-child {
        justify-content: center;
    }

    .nodetree > .group > li > a {
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: #1f2635;
    }

    .nodetree > .group > li:hover {
        background-color: inherit;
    }

    .nodetree > .group > li > a:hover, .nodetree > .group > li > a.active-category {
        background-color: #ffa300;
    }

    .nodetree li ul {
        left: 0;
        top: 55px;
        border: none;
    }

    .nodetree > .group > li > ul {
        position: initial;
        background: #1f2635;
        padding: 10px 0;
    }

    .triangle_border_left {
        display: none;
    }
}

@media (max-width: 768px) {
    header .header-link img {
        width: 30px;
    }

    .nav-search .icon-pl {
        position: relative;
    }

    .connect-icons-inner {
        flex-flow: column;
        text-align: center;
        line-height: 80px;
    }

    #footer .footer-bottom .connect-icons {
        width: auto;
        margin: 0 auto;
    }

    #footer .footer-bottom .txt-center {
        margin-left: 0;
    }

    #footer .footer-bottom #topMenu {
        padding-top: 0;
    }

    #footer .footer-bottom .connect-icons, #footer .footer-bottom .txt-center, #footer .footer-bottom #topMenu {
        float: none;
    }
}
