﻿/********************************************/
/**************shared************************/
/********************************************/
/*#region shared*/
.custom-scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 5px;
}
.custom-scrollbar::-webkit-scrollbar
{
	width: 10px;
    height: 10px;
	background-color: #F5F5F5;
}
.custom-scrollbar::-webkit-scrollbar-thumb
{
	background-color: grey;
	border-radius: 5px;
}

.custom-scrollbar-mini::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 5px;
}
.custom-scrollbar-mini::-webkit-scrollbar
{
	width: 4px;
    height: 4px;
	background-color: #F5F5F5;
}
.custom-scrollbar-mini::-webkit-scrollbar-thumb
{
	background-color: grey;
	border-radius: 5px;
}

.custom-scrollbar-xmini::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 3px;
}
.custom-scrollbar-xmini::-webkit-scrollbar
{
	width: 2px;
    height: 2px;
	background-color: #F5F5F5;
}
.custom-scrollbar-xmini::-webkit-scrollbar-thumb
{
	background-color: grey;
	border-radius: 3px;
}

.custom-cb {
  display: block;
  position: relative;
  padding-top: 1px;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-cb input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-cb .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #808080;
}
.custom-cb .container:hover input ~ .checkmark {
  background-color: #ccc;
}
.custom-cb input:checked ~ .checkmark {
  background-color: #2196F3;
}
.custom-cb .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-cb input:checked ~ .checkmark:after {
  display: block;
}
.custom-cb .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cf:before, .cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}

.field-warning {
    color:red;
    font-size:12px;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.bold {
    font-weight:bold;
}
.right {
    text-align:right;
}
.mid {
    text-align:center;
}

.hide {
    display:none;
}
.no-visible {
    visibility:hidden;
}

.body-alert {
    z-index:1000;
    position:fixed;
    bottom:30px;
    left:0;
    right:0;
    margin:auto;
    max-width:90%;
    width:220px;
    font-size:12px;
}

.loading {
    width: 100%;
    /*text-align: center;*/
}
.loading .spinner-border {
    display: block;
    /*margin: auto;*/
    margin-bottom: 15px;
}
.loading .loading-text {
    font-size: 12px;
    font-weight: bold;
}

/*remove ios curved corners*/
textarea,
input.text,
input[type="text"],
input[type="password"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
    border-radius: 0;
}
/*#endregion shared*/


/********************************************/
/**************std2layout********************/
/********************************************/
/*#region std2layout*/
body {
    background-color:white;
    font-family: 'Poppins-Regular', sans-serif!important;
}
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Bold.ttf') format('truetype');
    font-weight:bold;
}
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-Italic.ttf') format('truetype');
    font-style:italic;
}
@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins-BoldItalic.ttf') format('truetype');
    font-weight:bold;
    font-style:italic;
}
.body-content {
    height:100%;
    /*display:flex;
    flex-direction:column;*/
}
/*#endregion std2layout*/


/********************************************/
/**************change-phone******************/
/********************************************/
/*#region change-phone*/
.change-phone {
    /*border:1px solid red;*/
    width:100%;
    max-width:500px;
    flex-grow:1;
    display:flex;
    flex-direction:column;
    margin:auto;
}

.change-phone .head {
    /*border:1px solid red;*/
    background-color:#2f313e;
    padding:10px 5px;
    text-align:center;
    position:relative;
}
.change-phone .head label {
    /*border:1px solid red;*/
    height:100%;
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    font-size:16px;
    font-weight:bold;
    margin-bottom:0;
}
.change-phone .head .a-left {
    /*border:1px solid red;*/
    font-size:30px;
    position:absolute;
    top:0;
    left:0;
    height:100%;
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
}

.change-phone .cont {
    /*border:1px solid red;*/
    flex-grow:1;
    background-color:#222328;
    padding:15px;
}
.change-phone .cont .field {
    /*border:1px solid red;*/
    display:flex;
    margin-top:15px;
    height:30px;
    font-size:13px;
    position:relative;
    overflow:hidden;
}
.change-phone .cont .field label {
    /*border:1px solid red;*/
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:100px;
    min-width:100px;
}
.change-phone .cont input {
    flex-grow:1;
    margin-left:10px;
    border:0;
    border-bottom:1px solid grey;
    background-color:transparent;
    color:white;
    outline:none;
}
.change-phone .cont .field ._right {
    position:absolute;
    bottom:3px;
    right:0;
}
.change-phone .cont .field-warning {
    padding-left:85px;
    margin-top:3px;
}

.change-phone .foot {
    /*border:1px solid red;*/
    background-color:#222328;
    text-align:center;
    display:flex;
    padding:5px 15px;
}
.change-phone .foot button {
    flex-grow:1;
    background-color:#e8be65;
    border:0;
    color:black;
    font-weight:bold;
    padding:8px;
    margin:auto 5px;
    border-radius:5px;
    outline:none;
}
/*#endregion change-phone*/


/********************************************/
/**************change-password***************/
/********************************************/
/*#region change-password*/
.change-password {
    /*border:1px solid red;*/
    width:100%;
    max-width:500px;
    flex-grow:1;
    display:flex;
    flex-direction:column;
    margin:auto;
}

.change-password .head {
    /*border:1px solid red;*/
    background-color:white;
    color:#ff5000;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    padding:10px 5px;
    text-align:center;
    position:relative;
}
.change-password .head label {
    /*border:1px solid red;*/
    height:100%;
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
    font-size:16px;
    font-weight:bold;
    margin-bottom:0;
}
.change-password .head .a-left {
    /*border:1px solid red;*/
    font-size:30px;
    position:absolute;
    top:0;
    left:0;
    height:100%;
    display:inline-flex;
    flex-direction:column;
    justify-content:center;
}

.change-password .cont {
    /*border:1px solid red;*/
    flex-grow:1;
    background-color:white;
    color:black;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    padding:15px;
}
.change-password .cont .field {
    /*border:1px solid red;*/
    display:flex;
    margin-top:15px;
    height:30px;
    font-size:13px;
    position:relative;
    overflow:hidden;
}
.change-password .cont .field label {
    /*border:1px solid red;*/
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:130px;
    /*min-width:130px;*/
    font-size:11px;
}
.change-password .cont input {
    flex-grow:1;
    margin-left:10px;
    border:0;
    border-bottom:1px solid grey;
    background-color:transparent;
    outline:none;
}
.change-password .cont .field ._right {
    position:absolute;
    bottom:3px;
    right:0;
}
.change-password .cont .field-warning {
    padding-left:85px;
    margin-top:3px;
}

.change-password .foot {
    /*border:1px solid red;*/
    background-color:white;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    text-align:center;
    display:flex;
    padding:5px 15px;
}
.change-password .foot button {
    flex-grow:1;
    background-color:#ff5000;
    color:white;
    border:0;
    font-weight:bold;
    padding:8px;
    margin:auto 5px;
    border-radius:5px;
    outline:none;
}
/*#endregion change-password*/


/*#region download*/
.download {
    background-color:black;
    flex-grow:1;
    display:flex;
    flex-direction:column;
}
.download .sf {
    /*border:1px solid red;*/
    width:100%;
    max-width:500px;
    flex-grow:1;
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    margin:auto;
    background-color:black;
    background-image: url('../Images/download-bg.png');
    background-size:cover;
    background-position: center bottom;
}

.download .r1 {
    /*border:1px solid red;*/
    text-align:center;
}
.download .r1 img {
    width:300px;
    max-width:80%;
}

.download .r2 {
    /*border:1px solid red;*/
    text-align:center;
}
.download .r2 a {
    background-color:white;
    border-radius:10px;
    color:black;
    padding:10px 15px;
    width:200px;
    margin:auto;
    margin-bottom:15px;
    display:flex;
    justify-content:center;
}
.download .r2 a .ispan {
    /*border:1px solid red;*/
    align-items:center;
    margin-right:15px;
    font-size:30px;
}
.download .r2 a .tspan {
    /*border:1px solid red;*/
    /*align-items:center;*/
    font-size:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.download .r2 a .mdi-android {
    color:#8bbf00;
}
/*#endregion download*/

/*#region player-register*/
.player-register {
    /*border:3px solid orange;*/
    background-color:aliceblue;
    color:lightgrey;
    flex-grow:1;
    overflow:auto;

    /*display:flex;
    flex-direction:column;
    -webkit-flex-direction:column;
    height:100%;
    -webkit-overflow-scrolling:touch;*/

    height:100%;
    display:block;
    padding:15px 30px;
    margin:auto;
}
.player-register label {
    color:black;
}

.player-register .tac {
    position:relative;
}
.player-register .tac .jSendTac {
    position:absolute;
    top:0;
    right:0;
    background-color:transparent;
    color:royalblue;
    border:0;
    outline:none;
    text-decoration:underline;
}

.player-register .jDateOfBirth:read-only {
    background-color:white;
}
.player-register .dob {
    position:relative;
}
.player-register .dob .jDateOfBirthClear {
    position:absolute;
    top:0;
    right:0;
    background-color:transparent;
    color:red;
    border:0;
    outline:none;
    text-decoration:underline;
}
/*#endregion player-register*/

/*#region landing*/
.landing {
    /*border:3px solid orange;*/
    /*background-color:aliceblue;*/
    color:lightgrey;
    flex-grow:1;
    overflow:auto;
    height:100%;
    display:block;
    /*padding:15px 30px;*/
    padding:0;
    margin:auto;
    position:relative;
    max-width:500px;

    background-image: url('../Images/landing-bg.png');
    background-position:center bottom;
    background-repeat:no-repeat;
    background-size:cover;
}
@media screen and (min-width: 768px) {
    .landing {
        /*background-image: url('../Images/landing-bg-wide-2.png');*/
        background-size:cover;
    }
}

.landing .div-top {
    /*border:1px solid red;*/
    background-color:#6ac3b6;
    padding:15px;
    white-space:nowrap;
    overflow:auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    text-align:center;
}
.landing .div-top::-webkit-scrollbar { 
    display: none;
}
.landing .div-top .d {
    display:inline;
    margin:auto 5px;
}
.landing .div-top .a1 {
    /*border:1px solid red;*/
    border-radius:15px;
    padding:5px 15px;
    color:black;
    font-size:15px;
    font-weight:bold;
}
.landing .div-top a.selected {
    background-color:white;
    color:#6ac3b6;
}

.landing .lang {
    /*border:1px solid red;*/
    padding:0;
    outline:none;
    margin:auto 5px;
}
.landing .lang img {
    width:25px;
    height:25px;
    border-radius:50%;
}

.landing .div {
    /*border:1px solid red;*/
    position:absolute;
    top:5%;
    left:0;
    right:0;
    text-align:center;
    margin:auto;
}
.landing .div img {
    width:120px;
    margin-bottom:15px;
}
.landing .div h5 {
    color:black;
    font-weight:bold;
    margin-bottom:15px;
}

.landing .h5-url {
    background-color:black;
    color:lightblue;
    border-radius:10px;
    display:table;
    margin:auto;
    margin-bottom:15px;
    padding:3px 15px;
}

.landing .div .btns {
    /*border:1px solid red;*/
}
.landing .div .btns a {
    height:auto;
    margin:auto;
    margin:5px;
    color:black;
}
.landing .div .btns a img {
    width:80px;
}
.landing .btn-signup {
    background-color:#72d7fe;
    color:white;
    width:200px;
    font-weight:bold;
    padding:15px;
    border-radius:15px;
    display:block;
    margin:auto;
}

.landing .cs {
    position:absolute;
    bottom:15px;
    right:15px;
    border-radius:50%;
    width:90px;
    height:90px;
}

.landing .wechat-notice {
    display:none;
    position:fixed;
    top:15px;
    right:15px;
    color:white;
    text-align:left;
}
.landing .wechat-notice td {
    vertical-align:top;
    padding:3px;
}
.landing .wechat-notice i.mdi-numeric-1-circle,
.landing .wechat-notice i.mdi-numeric-2-circle {
    font-size:20px;
    margin-right:5px;
    color:red;
}
.landing .wechat-notice button[disabled] {
    background-color:white;
    color:black;
    margin:2px 5px;
    border:0;
    font-weight:bold;
}
/*#endregion landing*/
