*, :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-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("../fonts/Nunito-Regular.ttf");
    src: url("../fonts/Nunito-Regular.ttf") format('truetype');
}

@font-face {
    font-family: "Nunito_B";
    src: url("../fonts/Nunito-Bold.ttf");
    src: url("../fonts/Nunito-Bold.ttf") format('truetype');
}

@font-face {
    font-family: "Nunito_L";
    src: url("../fonts/Nunito-Light.ttf");
    src: url("../fonts/Nunito-Light.ttf") format('truetype');
}


/*common component*/

body {
    font-family: "Nunito", "Microsoft YaHei", Arial, Tahoma, Verdana, Helvetica, sans-serif;    
    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: #006bff;
}

.btn-hollow-default {
    border: 2px solid #006bff;
    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: 24px;
  }

  .footer-game-links a {
    color:default;
    margin: 0 16px;
    display: inline-block;
  }
  .footer-game-links a:hover {
    color: var(--primary-color) !important;
  }

#footer {
    border-top: 1px solid #43474E;
    color: #DCE0E4;
    font-size: 14px;
}

#footer a {
    color: #B3B3B3;
}

    #footer a:hover {
        color: var(--primary-color);
    }


    #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: 16px;
        line-height: 14px;
    }

    #footer dl dd {
        line-height: 26px;
        background: url(https://www.playerauctions.com/Static/About/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: #72777D;
}

.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;
}


.payment-methods {
    float: right;
}

.payment-methods p {
    font-weight: bold;
    padding-bottom: 20px;
}

.footer-bottom {
    /* background: #10151C; */
    /*height: 80px;
    line-height: 80px;*/
}

/*.footer-bottom .connect-icons {
     padding-top: 20px;
        float: left;
}*/
.footer-bottom #topMenu {
    float: right;
    color: #DCE0E4;
    /*padding-top: 20px;*/
}

.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('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAABHNCSVQICAgIfAhkiAAAAFZJREFUCFttj8ENgEAIBGc/V4elYUlWoB3Zgm3IQy6YaPAiL9gMQ9DpvguW1trGUO5uF5iyCVgFcwVrrlwewXG+oQoCedaq+YX+jI/gA2UYEZOko/7QAYeqMgG4WrZRAAAAAElFTkSuQmCC') 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('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAABHNCSVQICAgIfAhkiAAAAFZJREFUCFttj8ENgEAIBGc/V4elYUlWoB3Zgm3IQy6YaPAiL9gMQ9DpvguW1trGUO5uF5iyCVgFcwVrrlwewXG+oQoCedaq+YX+jI/gA2UYEZOko/7QAYeqMgG4WrZRAAAAAElFTkSuQmCC') 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: var(--primary-color);
    background: #1F2635 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAABHNCSVQICAgIfAhkiAAAAG5JREFUCFtjZEAC/5cyGDD8ZVjPwMwQyBjNcAEmxQhjQBXsZ2Bk+Mjwn4GfgZnBEaYQrAhJwUbGWIaE/4sZFjD8Z/CHKWREVwA3GVnh/8UMDxgYGA6ATEB2H9gGiEIFxv/LGRQYI8EKsYL/8xkEAOTwKupSw1zWAAAAAElFTkSuQmCC') 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(https://www.playerauctions.com/Static/About/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: #006BFF;
  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('https://www.playerauctions.com/Static/About/img/header/account.png') no-repeat center -66px;
    }
    .btn-account.act {
        background: url('https://www.playerauctions.com/Static/About/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(https://www.playerauctions.com/Static/About/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*/
}

/* game list */

#gameMenuOuter {
  width: 96%;
  max-width: 1172px;
  margin: 0 auto;
  margin-top: 20px;
}

.icon-games {
  display: block;
  margin: 0px auto 4px auto;
}

.game-menu {
  font-size: 14px;
  position: relative;
}

.game-menu > li {
  color: #fff;
  width: 117px;
  padding: 10px;
  border: 1px solid #2B3038;
  border-right: 0;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  line-height: 20px;
  cursor: pointer;
}

.game-menu > li:hover {
  border: 1px solid #1D4885;
  border-left: 1px solid #1D4885;
  border-right: 0px;
  border-bottom-width: 3px;
  padding-bottom: 8px;
  background: #131E2E;
}

.game-menu>li:hover+li {
    border-left: 1px solid #1D4885;
}

.game-menu > li a {
    color: #fff;
  }

.game-menu > li a:hover {
    color: #fff;
    text-decoration: none;
}

.game-menu > li.active {
  border: 1px solid #1D4885;
  border-bottom: 3px solid #146DFC;
  background-color: #131E2E;
}

.game-menu>li:last-child {
  border-right: 1px solid #2B3038;
}

.game-menu>li:last-child:hover {
  border-right: 1px solid #1D4885;
}

#gameMenu {
  max-width: 1172px;
  width: 100%;
  height: 60px;
  background: #1F2635;
  clear: both;
  z-index: 999;
  position: absolute;
  left: 0;
  bottom: -60px;
  display: none;
}

#letterMenu {
  width: 100%;
  height: 60px;
  color: #f9f9f9;
  font-size: 14px;
  box-shadow: 0px 2px 10px #1A202D;
}

#letterMenu > ul {
  padding: 0 6px;
  display: block;
}

#letterMenu > ul > li {
  width: calc((100% / 27) - 3px );
  line-height: 40px;
  height: 61px;
  color: #006bff;
  text-align: center;
  margin-right: 3px;
  float: left;
  display: block;
  border-bottom: 0;
  cursor: pointer;
}

#letterMenu > ul > li:last-child {
  margin-right: 0px;
}

#letterMenu > ul > li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
}

#letterMenu > ul > li span:hover {
  background: #006BFF;
  color: #fff;
  border-radius: 4px;
}

#letterMenu > ul .gameMenuPOP {
  width: 100%;
  height: auto;
  padding: 30px 0 30px 30px;
  position: absolute;
  top: 45px;
  left: 0;
  background: #1F2635;
  z-index: -1;
}

#letterMenu > ul .gameMenuPOP ul {
  display: block;
  float: left;
  width: 100%;
}

#letterMenu > ul .gameMenuPOP ul li {
  width: 23%;
  height: 32px;
  padding: 0 10px;
  color: #f9f9f9;
  line-height: 32px;
  float: left;
  text-align: left;
  overflow: hidden;
}

#letterMenu > ul .gameMenuPOP ul li a:link {
  color: #f9f9f9;
}

#letterMenu > ul .gameMenuPOP ul li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

#letterMenu > ul .gameMenuPOP ul li a:visited {
  color: #f9f9f9;
}

.menu-active {
  background: #006BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/*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('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFRkU0NTYyMUZCQTAxMUU5QUUwM0I2N0NBQ0IzNkVGMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFRkU0NTYyMkZCQTAxMUU5QUUwM0I2N0NBQ0IzNkVGMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkVGRTQ1NjFGRkJBMDExRTlBRTAzQjY3Q0FDQjM2RUYwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkVGRTQ1NjIwRkJBMDExRTlBRTAzQjY3Q0FDQjM2RUYwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VJmVngAAAElJREFUeNpiYEAD/xcxXAHiRejiTAxEAuorZAS5iYGRQRuvqv8Mi1mAVCUQiyAJ1gE13gWyliIpvcYwcL5mwSIGcvMrdEGAAAMA76cTjba0juYAAAAASUVORK5CYII=') no-repeat right; }
  .alphabet .alphabetNav .alphabetShow {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAACCAYAAACKVvbTAAAABHNCSVQICAgIfAhkiAAAABNJREFUCFtj/L+Y4T8DAcBIjCIAGBUFRT53tasAAAAASUVORK5CYII=') no-repeat right; }
    
.section-outer {
  font-size: 14px;
  color: #B3B3B3;
  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(/Static/images/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: var(--primary-color);
        width: 96px;
        font-weight: bold;
        border-radius: 4px;
        color: #141922;
    }

    #topUp .btn-sigin:hover, #topUp .btn-sigin:visited {
        color: #141922;
      }

    #topUp a.btn-logout {
        padding: 10px 40px;
    }

#topText {
    float: left;
    font-weight: bold;
}

#topText span {
  color: #fff;
}

#userInfo:hover {
  /* text-decoration: underline; */
}
/*#accountPanel {
    float: right;
    position: relative;
    height: 65px;
}*/

    /* #accountPanel a {
        color: #fff;
    } */

#logo {
    float: left;
}
.icon-search {
    background: url(https://www.playerauctions.com/Static/About/img/header/icon-search.png) no-repeat center;
}

.icon-search-active {
    background: url(https://www.playerauctions.com/Static/About/img/header/icon-search-active.png) no-repeat center;
}

    #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;
            }
            
            header #logined #issues span, #logined div#messages span {
                top: 2px;
            }

            #logined #issues label, #logined #messages label {
                padding-left: 4px;
                font-weight: normal;
            }

        #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 b {
                color: #fff;
            }

                #logined #userInfo b:hover {
                    color: #fff;
                }

            #logined #userInfo img.personal-avatar {
                width: 40px;
                border-radius: 40px;
                vertical-align: middle;
                font-size: 10px;
            }

            /* #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(https://www.playerauctions.com/Static/About/img/header/icon-arrow-up.png) no-repeat;
                    position: absolute;
                    border-color: transparent;
                    border-style: solid;
                }

                .m-games {
                    width: 100%;
                    height: 100%;
                    background-color: #141922;
                    position: absolute;
                    top: 50px;
                    left: 0rem;
                    display: none;
                    z-index: 1998;
                }


        .m-games .submenu li a {
            color: #fff;
            font-size: 14px;
        }

                    .m-games .hot-games {
                        width: 100%;
                        padding: 4% 6% 8% 6%;
                    }

                        .m-games .hot-games ul li {
                            width: 100%;
                            float: left;
                            font-size: 14px;
                            height: 40px;
                            line-height: 40px;
                            padding-left: 40px;
                        }

                            .m-games .hot-games ul li a {
                                color: #fff;
                            }

                        .m-games .hot-games ul li {
                            background: url(https://www.playerauctions.com/Static/About/img/header/icon-hot.png) no-repeat left center;
                        }

                    .m-games .letterMenu {
                        width: 100%;
                        padding: 0 4%;
                    }

                        .m-games .letterMenu dl {
                            background-color: #1F2635;
                        }

                            .m-games .letterMenu dl dt {
                                width: 94%;
                                height: 38px;
                                line-height: 38px;
                                color: #006BFF;
                                font-size: 18px;
                                margin-bottom: 2px;
                                padding-left: 10px;
                                background: #1F2635 url(https://www.playerauctions.com/Static/About/img/header/icon-hide.png) no-repeat right center;
                            }

                            .m-games .letterMenu dl dd {
                                width: 100%;
                                display: none;
                                background-color: #141922;
                                line-height: 40px;
                                padding-left: 40px;
                            }

                        .m-games .letterMenu dt.show-up {
                            background: url(https://www.playerauctions.com/Static/About/img/header/icon-show.png) no-repeat right center;
                        }

                        .m-games .letterMenu li.subTitle {
                            width: 100%;
                            background: #1F2635;
                        }

                        .m-games .letterMenu div.link {
                            width: 94%;
                            height: 38px;
                            line-height: 38px;
                            color: #006BFF;
                            font-size: 18px;
                            margin-bottom: 2px;
                            padding-left: 10px;
                            background: #1F2635 url(https://www.playerauctions.com/Static/About/img/header/icon-hide.png) no-repeat right center;
                        }

                        .m-games .letterMenu .subTitle.open div.link {
                            background: #1F2635 url(https://www.playerauctions.com/Static/About/img/header/icon-show.png) no-repeat right center;
                        }

                        .m-games .letterMenu .submenu {
                            display: none;
                        }

                            .m-games .letterMenu .submenu li {
                                width: 100%;
                                background-color: #141922;
                                line-height: 40px;
                                padding-left: 40px;
                            }


@media (max-width: 768px) {
  #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('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAABHNCSVQICAgIfAhkiAAAAFZJREFUCFttj8ENgEAIBGc/V4elYUlWoB3Zgm3IQy6YaPAiL9gMQ9DpvguW1trGUO5uF5iyCVgFcwVrrlwewXG+oQoCedaq+YX+jI/gA2UYEZOko/7QAYeqMgG4WrZRAAAAAElFTkSuQmCC') 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('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAYAAAARx7TFAAAABHNCSVQICAgIfAhkiAAAAFZJREFUCFttj8ENgEAIBGc/V4elYUlWoB3Zgm3IQy6YaPAiL9gMQ9DpvguW1trGUO5uF5iyCVgFcwVrrlwewXG+oQoCedaq+YX+jI/gA2UYEZOko/7QAYeqMgG4WrZRAAAAAElFTkSuQmCC') 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-added-padding {
  display: none;
}

  #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) {
#footer .list-group {
    display: none;
}

.m-games {
  display: none;
}
}

@media (min-width: 769px) {
    #tapCapture {
        display: none;
    }
}

@media (max-width: 1190px) and (min-width: 769px) {
.wrapIndex, .connect-icons-inner {
    width: calc(100% - 40px);
    padding: 20px;
}
}


/* case 4638 reset footer start */

.footer-bottom #topMenu .menu-select a img {
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    .connect-icons-inner {
        flex-flow: column;
        text-align: center;
        line-height: 80px;
    }

    #footer .footer-bottom .connect-icons {
        width: auto;
    }
}
/* case 4638 end */

.text-link {
    color: var(--primary-color) !important;
}


/* #6039 cookie policy*/

.policy-choose {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #a6a6a6;
    font-size: 14px;
}
.policy-choose .policy-choose-con {
    display: flex;
    align-items: center;
}
.choose-checked-box {
    min-width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
}

.agree-box, .policy-agree-box {
    /* display: none; */
}
.agree-box + label,.policy-agree-box + label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    border: 1px solid #8F6418;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    text-align: center;
    background: none;
}
.agree-box:checked + label,.policy-agree-box:checked + label {
    background: url(/Static/images/choose-checked.png) center no-repeat;
    background-size: 11px 9px;
}

.cookie-policy-table {
    width: 1204px;
}

.cookie-policy-table thead {
    background: #2f3b53;
    font-size: 14px;
    color: #b3b3b3;
}

.cookie-policy-table thead tr th {
    border-right: 1px solid #1f2635;
    padding: 5px 10px;
    text-align: center;
    vertical-align: middle;
}
.cookie-policy-table thead tr th:nth-of-type(3) {
    width: 510px;
}

.cookie-policy-table tbody tr {
    color: #b3b3b3;
    font-size: 14px;
    background: #222b3c;
}

.cookie-policy-table tbody tr:nth-of-type(even) {
    background: #263044;
}

.cookie-policy-table tbody tr td {
    border-right: 1px solid #1f2635;
    vertical-align: middle;
    padding: 5px 10px;
    text-align: center;
}

.cookie-policy-table tbody tr td:nth-of-type(3) {
    width: 510px;
    text-align: left;
}
.cookie-policy-table tbody tr td:last-child {
    text-align: center !important;
}
/* #6076 data subject access request*/
.request-from {
    padding: 20px;
    background-color: #263044;
}

.request-from .form-group {
    display: flex;
    align-items: center;
}

.request-from .request-from-box {
    max-width: 754px;
    margin: 0 auto;
}

.request-from label {
    text-align: left !important;
}

.request-from input[type=text], input[type=email], .file-box, .textarea-txt {
    background: #1F2635;
    border: 0;
    color: #b3b3b3;
}

.request-from .file-box {
    width: calc(100% - 140px);
    border: 0;
    color: #b3b3b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-size: 14px;
}

.request-from input[type=text]:focus, input[type=email]:focus, input[type=file]:focus, .textarea-txt:focus {
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.request-from .input-file-up {
    position: absolute;
    right: 15px;
    top: 0;
    opacity: 0;
    width: 140px;
    height: 34px;
    cursor: pointer;
    font-size: 0;
}

.request-from .browse-files {
    position: absolute;
    top: 0;
    right: 15px;
    color: #141414;
    border: 0;
    background: var(--primary-color);
    padding: 6px 12px;
    border-radius: 3px;
}

.submit-form {
    display: block;
    margin: 0 auto;
    padding: 6px 12px;
    color: #141414;
    font-size: 18px;
    border: 0;
    background: var(--primary-color);
    border-radius: 3px;
    font-weight: bold;
}

.submit-form:hover{
    background: #FFBB43;
}

.submit-form:active{
    background: #D48B0D;
}

.form-error-tip {
    display: none;
    color: #E34C4C;
    font-size: 14px;
}

.msg-tips {
    display: none;
    color: #37BC20;
}

.personal-requesting {
    display: none;
}

.data-loading {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--primary-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: goLoading 2s linear infinite;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@keyframes goLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .data-loading {
        margin: 20% auto;
    }
}

@media screen and (max-width: 767px) {
    .cookie-policy-table-box {
        margin-bottom: 0 !important;
        border: none !important;
    }
    .policy-choose {
        align-items: unset !important;
        flex-direction: column !important;
    }
    .request-from .file-box {
        width: 100% !important;
    }
    .request-from .browse-files {
        position: unset !important;
        width: 100%;
    }
    .request-from .input-file-up {
        width: calc(100% - 30px) !important;
        top: 34px !important;
    }
    .request-from .form-group {
        display: block !important;
    }
    .submit-form {
        width: 100%;
    }
}

a.txt-link {
    color: var(--primary-color);
}

.featured-games.dropdown.disabled {
    opacity: unset;
}

/*breadcrumbs*/

#breadcrumb {
  text-align: left;
  margin: auto;
  margin-top: 15px;
  padding-left: 10px;
  max-width: 1180px;
}

#breadcrumb ol li {
    list-style:none;
}

#breadcrumb a {
  color: var(--primary-color);
}

#breadcrumb span {
  color: #B3B3B3;
  padding: 0 4px;
}

#breadcrumb a:hover {
  text-decoration: underline;
}

#breadcrumb a:last-child {
    color: #b3b3b3;
}

/*#breadcrumb a:focus,a:active {
    color: #b3b3b3;
}*/
/*middle section*/

main .container-fluid {
  z-index: 2;
  max-width: 1344px;
  width: 1344px;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 20px;
}


main .container-fluid {

    background:none!important;

}
    
    
    
    
.middle.with-bg.with-bg-sell {
    background: url(/assets/image/buyer/howtobuy.webp) no-repeat center center;
    background-size: cover;
}

.middle.with-bg.with-bg-buy {
    background: url(/assets/image/buyer/howtobuy.webp) no-repeat center center;
    background-size: cover;
}
.middle {
  z-index: 1;
}

/*about page*/

.about-intro {
  height: 676px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-intro > h1 {
  text-align: center;
  font-size: 50px;
  line-height: 1;
}

.about-intro > h2 {
  text-align: center;
  font-size: 24px;
}

.section-heading legend {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.about-intro a, .how-to-bottom a {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #141414 !important;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  width: 350px;
  height: 50px;
  line-height: 50px;
  background: var(--primary-color);
  border-radius: 5px;
}

.about-intro a:hover, .how-to-bottom a:hover {
    background: #ffbb43;
}

.about-intro a:active, .how-to-bottom a:active {
    background: #d48b0d;
}

.about-intro span {
  color: #fff;
  font-size: 16px;
}

.section-heading {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-left: none;
  border-right: none;
  display: block;
  background:none;
}

.section-heading-new {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-left: none;
  border-right: none;
  background: none;
  min-height: 30px;
  margin-top: 30px;
  display: inline-block;
}
.section-heading-new .section-heading-title {
  position: absolute;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  min-width: 100px;
  top: -28px;
  border-left: 20px solid #141922;
  border-right: 20px solid #141922;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.section-heading legend {
  color: #fff;
  width: auto;
  padding: 5px 20px;
}

.section-subtitle {
  text-align: center;
}

.about-who {
  margin-bottom: 30px;
}

.about-who-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.about-who-wrapper:last-child {
  margin-top: 60px !important;
}

.about-who-wrapper .pa-video-description, .about-who-wrapper .about-description, .about-who-wrapper .about-stats, .about-who-wrapper .pa-video-about {
  width: 50%;
}

.about-who-wrapper .pa-video-description, .about-who-wrapper .about-stats {
  padding-right: 20px;
}

.about-who-wrapper .about-description, .about-who-wrapper .pa-video-about {
  padding-left: 20px;
}

.about-who-wrapper .pa-video-description div, .about-who-wrapper .pa-video-about div {
  position: relative;
  padding-bottom: 55%;
}

.about-who-wrapper .pa-video-description div iframe, .about-who-wrapper .pa-video-about div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-who-wrapper, .about-what-items {
  margin-top: 30px !important;
}

.about-stat-item {
  margin-bottom: 30px;
}

.about-stat-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  background-image: url("https://www.playerauctions.com/Static/About/img/about-circle.png");
  background-size: 110px 110px;
  font-size: 20px;
}

.about-stat-label {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
}

.about-what-item {
  margin-bottom: 30px;
}

.about-what-item-wrapper {
  background: #1F2635;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 25px;
  min-height: 381px;
}

.about-what-item img {
  display: block;
  margin: 20px auto;
  height: 50px;
}

.about-what-item-title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.about-what-item-desc {
  margin-bottom: 10px;
}

.about-what-item-links a {
  display: inline-block;
  font-size: 14px;
  color: white;
  background: #006BFF;
  padding: 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-top: 15px;
}

.about-what-item-links li {
  display: inline-block;
}

.about-news-item {
  min-height: 450px;
  margin-bottom: 20px;
}

.about-news-item-wrapper {
  background: #1F2635;
  min-height: 450px;
}

.about-news-item img {
  width: 100%;
  margin: auto;
  position: relative;
}

.about-news-layer {
  position: absolute;
  background: rgba(0,0,0,0.3);
  top: 150px;
  left: 15px;
  width: calc(100% - 30px);
  height: 85px;
}

.about-news-item img, .about-news-date, .about-news-title, .about-news-content {
  display: block
}

.about-news-date, .about-news-title, .about-news-content {
  padding-left: 15px;
  padding-right: 15px;
}

.about-news-content-wrapper {
  border-top: 1px solid black;
  margin: 0 auto;
}

.about-news-date, .about-news-content {
  margin-top: 10px;
  color: #b3b3b3;
  font-size: 14px;
}

.about-news-title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1;
}

.about-news-title a {
  color: #fff;
}

.about-news-title a:hover {
  color: var(--primary-color);
}

@media screen and (min-width:768px) {
  .about-what > .row {
    max-width: 1180px;
    margin: 0 auto;
  }
}

@media screen and (max-width:768px) {
  .middle.with-bg {
    background: url("https://www.playerauctions.com/Static/About/img/sell-page-bg2-blur.jpg") no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width: 1179px) {
  .about-who-wrapper {
    flex-wrap: wrap;
  }

  .about-who-wrapper:last-child {
    margin-top: 30px !important;
  }
  
  .about-who-wrapper .pa-video-description, .about-who-wrapper .about-description, .about-who-wrapper .about-stats, .about-who-wrapper .pa-video-about {
    width: 100%;
    margin-bottom: 25px;
  }
  
  .about-who-wrapper .pa-video-description, .about-who-wrapper .about-stats {
    padding-right: 0;
  }
  
  .about-who-wrapper .about-description, .about-who-wrapper .pa-video-about {
    padding-left: 0;
  }
}

/*common about pages*/

.page-content {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-content.press-news .press-icon {
  padding-right: 20px;
  vertical-align: middle;
}

.page-content.press-news .press-social-icon {
  padding-right: 5px;
  vertical-align: middle;
}

.page-content.press-news h2 {
  margin-bottom: 15px;
}

.page-content .page-category.press-news-p > span {
  padding: 8px;
}

.page-content .page-category.press-news-p {
  line-height: 30px;
}

.page-content.press-news .page-category tbody > tr {
  display: block;
  margin-bottom: 15px;
}

.page-content a {
  color: var(--primary-color);
}

.page-content a:hover {
  text-decoration: underline;
}

.page-title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 30px;
}

.page-subtitle {
  margin-top: 30px;
  margin-bottom: 30px;
}

.rule-table-wrapper {
  padding: 20px 25px;
  border: 1px solid #1f2635;
  border-radius: 5px;
}

.rule-table li, .rule-table a {
  color: #DCE0E4;
}

.rule-table li:hover, .rule-table a:hover {
  color: var(--primary-color)!important;
}

.rule-table ol {
  margin-top: 20px;
  padding-left: 30px;
}

.rule-table ol li {
  list-style-type: decimal;
}

.rule-table li::before {
  content: "";
  width: 10px;
  display: inline-block;
}

.rule-section {
  color: var(--primary-color);
  padding-top: 20px;
  margin-bottom: 20px;
}

.rule-subsection {
  margin-left: 20px;
}

.rule-subsection, .rule-subparagraph {
  margin-bottom: 20px;
}

.rule-subsection ol {
  margin-left: 40px;
}

.rule-subsection ol li {
  list-style-type: lower-latin;
  margin-bottom: 10px;
}

.page-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.list-numbers, .list-numbers li {
  list-style: decimal;
}

.list-bullet {
  margin-left: 40px !important;
}

.list-bullet, .list-bullet li {
  list-style-type: disc;
}

.about-links-items {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.about-links a {
  color: #FFF;
}
.about-links a:hover {
  color: var(--primary-color);
}

.about-links li:before {
  content: url(https://www.playerauctions.com/Static/About/img/header/icon-arrow-left.png);
  margin-right: 10px;
}

.about-links-title {
  display: block;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Safe trading pages */

.scenario-blue {
  color: #006BFF;
}

/* Media queries  */

@media screen and (max-width:768px) {
    .middle.with-bg.with-bg-buy{
        background-size: cover;
    }
  .rule-subsection {
    margin-left: 0px;
  }

  .rule-subsection ol {
    margin-left: 0px;
  }

  .about-intro > h1 {
    font-size: 36px;
  }

  .about-intro > h2 {
    font-size: 18px;
    line-height: 36px;
    padding: 10px 12px 0;
  }

  .about-intro {
    height: auto;
    min-height: 300px;
  }

  .about-links-items {
    flex-wrap: wrap;
    text-align: center;
  }

  .about-links-category {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width:990px) {
  .rule-table {
    display: none;
  }
}

.page-category {
  margin-top: 30px;
}

.left-picture {
  text-align: center;
}

.left-picture img {
  width: 500px;;
  height: auto;
}

.right-slogans {
  padding-right: 100px;
}

.right-slogans > span {
  color: var(--primary-color);
  font-size: 22px;
  display: block;
  line-height: 24px;
}

.right-slogans p {
  margin-bottom: 20px;
}

.right-slogans ul {
  margin-left: 20px !important;
  margin-top: 20px;
  text-align: left;
}

.right-slogans li {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.right-slogans li span {
  color: white;
}

.faq {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .right-slogans {
    text-align: center;
    padding-right: 15px;
  }

  .how-to-secure, .sell-games, .faq, .how-to-middle {
    margin-top: 20px !important;
  }

  .section-subtitle img {
    width: 100%;
  }
}

.sell-game{
    background: url(/assets/image/seller/bg-2.webp) no-repeat center center;
    background-size: cover;
    height: 344px;
    margin-left: 15px;
    margin-right: 15px;
}
/* .sell-game-text{
    background: url(/assets/image/seller/text-in-bg.webp) no-repeat center center;
    background-size: contain;
    height: 200px;
}
.sell-game-btn{
    background: url(/assets/image/seller/button.webp) no-repeat center center;
    background-size: contain;
    height: 200px;
} */
.section-inner > p {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
}

.how-to-bottom {
  text-align: center;
}

.how-to-bottom h3 {
  font-weight: bold;
  font-size: 30px;
}

/*sell links*/

.sell-games {
  margin-top: 100px;
}

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

.sell-game-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sell-game img {
  width: 100%;
}

.sell-game-content-wrapper {
  padding: 10px 30px;
}

.sell-game-title {
  display: block;
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 16px;
}

.sell-game-description {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  height: 60px;
}

.sell-game-button {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  width: 130px;
  font-size: 14px;
  color: #fff !important;
  border: 1px solid var(--primary-color);
  border-radius: 3px;
  transition: 0.5s background ease-out;
}

.sell-game-button:hover {
  background: var(--primary-color);
  text-decoration: none !important;
}

.how-to-secure, .how-to-middle {
  width: 100%;
  margin-top: 100px;
  display: flex;
  align-items: center;
}

.how-to-secure .left-picture, .how-to-secure .right-slogans, .how-to-middle .left-picture, .how-to-middle .right-slogans {
  width: 50%;
}

.how-to-secure .left-picture, .how-to-middle .left-picture {
  padding-right: 20px;
}

.how-to-secure .left-picture .pa-video, .how-to-middle .left-picture .pa-video {
  position: relative;
  padding-bottom: 50%;
}

.how-to-secure .left-picture .pa-video iframe, .how-to-middle .left-picture .pa-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.how-to-secure .right-slogans, .how-to-middle .right-slogans {
  padding-left: 20px;
  padding-right: 0;
}

.section-subtitle img {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1179px) {
  .how-to-secure, .how-to-middle {
    flex-wrap: wrap;
  }

  .how-to-secure .left-picture, .how-to-secure .right-slogans, .how-to-middle .left-picture, .how-to-middle .right-slogans {
    width: 100%;
  }

  .how-to-secure .left-picture.video, .how-to-middle .left-picture.video  {
    padding-right: 0;
    margin-bottom: 25px;
    display: block;
  }

  .how-to-secure .right-slogans, .how-to-middle .right-slogans {
    padding-left: 0;
  }

}

@media (max-width: 1344px) {
  main .container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* #6512 */
.rule-subsection table {
    color: #b3b3b3;
    font-size: 14px;
}
.rule-subsection table thead tr {
    background: #263044;
}
.rule-subsection table thead tr th {
    padding: 10px;
    border-right: 1px solid #1f2635;
}
.rule-subsection table tbody tr:nth-child(odd) {
    background: #222b3c;
}
.rule-subsection table tbody tr:nth-child(even) {
    background: #263044;
}
.rule-subsection table tbody tr td {
    padding: 10px;
    border-right: 1px solid #1f2635;
}
.about-intro button, .how-to-bottom button {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #141414 !important;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    width: 350px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 5px;
}

.about-intro button:hover, .how-to-bottom button:hover {
    background: #ffbb43;
}

.about-intro button:active, .how-to-bottom button:active {
    background: #d48b0d;
}

.dmca-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #141414 !important;
  font-weight: bold;
  text-align: center;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: var(--primary-color);
  border-radius: 5px;
}

.alphabetHide, .alphabetShow{
    margin-right: 16px;
}

/* @media (max-width: 1344px) {
  .container-custom {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-custom {
  z-index: 2;
  max-width: 1344px;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 20px;
} */

.container-custom {
    width: clamp(100%, 1200px, 100vw); 
    /* width: 95vw;  */
    margin-left: auto;
    margin-right: auto;
    padding: 20px 6vw; 
}

.text-faq{
    color:#B3B3B3 !important;
}

@media screen and (max-width: 480px) { 
    .section-heading-new .section-heading-title {
        font-size: 25px;
        width: 100%;
        white-space: normal;
        line-height: 1.2;
    }

    
}

@media (max-width: 1179px){
    .right-slogans{
        text-align: center;
    }
    .right-slogans > span{
        margin-bottom: 18px;
    }
    .right-slogans p {
        margin-bottom: 24px;
    }
}
