

.sc-inner {

    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    margin-left: 50%;
    transform: translate(-50%, 10px);
	width: 1480px;


}
@media(max-width:1440px) {
.sc-inner {
    width:1243px;
	margin:0px auto;
    display: flex;
    flex-wrap: wrap;
	margin-left: 50%;
    transform: translate(-50%, 10px);


}
}


@media(max-width:1340px) {
.sc-inner {
    width:1110px;
	margin:0px auto;
    display: flex;
    flex-wrap: wrap;
	margin-left: 50%;
    transform: translate(-50%, 10px);

}
}


@media(max-width:1200px) {
.sc-inner {
    width:720px;
	margin:0px auto;
    display: flex;
    flex-wrap: wrap;
	margin-left: 50%;
    transform: translate(-50%, 10px);

}
}
@media(max-width:1000px) {
.sc-inner {
width: 490px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 50%;
    transform: translate(-50%, 200px);


}
}

@media(max-width:450px) {
.sc-inner {
    width:320px;
    display: flex;
    flex-wrap: wrap;
	margin-left: 50%;
    transform: translate(-50%, 240px);


}
}


@media(max-width:300px) {
.sc-inner {
    width:245px;
    display: flex;
    flex-wrap: wrap;
	margin-left: 50%;
    transform: translate(-50%, 220px);


}
}



.slot-btn {
    width: auto;
    height: auto;
    display: inline-block;
    position: relative;
    margin: 0 5px;
    margin-bottom: 10px;
    z-index: 0;
    transition: 0.3s;
    perspective: 900px;
    border-radius: 1px;	overflow:hidden
}


@media(max-width:450px) {
.slot-btn {
    width: 46.7%;
    height: auto;
    display: inline-block;
    position: relative;
    margin: 0 5px;
    margin-bottom: 10px;
    z-index: 0;
    transition: 0.3s;
    perspective: 900px;
    border-radius: 1px;	overflow:hidden
}
}

@media(max-width:300px) {
.slot-btn {
    width: 100%;
    height: auto;
    display: inline-block;
    position: relative;
    margin: 0 5px;
    margin-bottom: 10px;
    z-index: 0;
    transition: 0.3s;
    perspective: 900px;
    border-radius: 1px;	overflow:hidden
}
}


.slot-btn:hover {
    z-index: 1;
}

.slot-btn .inner {
    width: 100%;
    height: 100%;
    float: left;
    transition: 0.3s;
    cursor: pointer;
}

.slot-btn.before-hover .inner {
    transform: rotateY(30deg) scale(0.9);
    opacity: 0.5;
}

.slot-btn.after-hover .inner {
    transform: rotateY(-30deg) scale(0.9);
    opacity: 0.5;
}

.slot-btn .slot-bg {
    width: 100%;
    opacity: 0;
}

.slot-btn .hover-bg {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
}

.slot-btn .hover-bg span {
    width: 100%;
    height: 25%;
    display: block;
    float: left;
    overflow: hidden;
    position: relative;
    opacity: 0;
    top: 0;
    left: 0;
    background-image: url(../images/slot-bg.png);
    background-size: 100% 400%;
    animation: slotBgAnim 0.8s ease 1 forwards;
}

.slot-btn:hover .hover-bg span {
    animation: slotBgOverAnim 0.8s ease 1 forwards;
}

.slot-btn .hover-bg span:nth-child(1) {
    animation-delay: 0s;
    background-position: 0 0;
}

.slot-btn .hover-bg span:nth-child(2) {
    animation-delay: 0.1s;
    background-position: 0 -100%;
}

.slot-btn .hover-bg span:nth-child(3) {
    animation-delay: 0.2s;
    background-position: 0 -200%;
}

.slot-btn .hover-bg span:nth-child(4) {
    animation-delay: 0.3s;
    background-position: 0 -300%;
}

@keyframes slotBgAnim {
    0% {
        opacity: 0;
        top: -20px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes slotBgOverAnim {
    0% {
        opacity: 1;
        top: 0;
    }
    100% {
        opacity: 0;
        top: -20px;
    }
}

.slot-btn .hover-bg span img {
    width: 100%;
    position: relative;
    top: 0;
}

.slot-btn .hover-bg span:nth-child(1) img {
    top: 0;
}

.slot-btn .hover-bg span:nth-child(2) img {
    top: -100%;
}

.slot-btn .hover-bg span:nth-child(3) img {
    top: -200%;
}

.slot-btn .hover-bg span:nth-child(4) img {
    top: -300%;
}

.slot-btn .slot-cont {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.slot-btn .slot-cont .slot-img {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.slot-btn .icon-cont {
    width: auto;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
}

.slot-btn .icon-cont .bg {
    width: 100%;
}

.slot-btn .icon-cont .icon {
    position: absolute;
    left: 3px;
    top: 3px;
}

.slot-btn .name-btn {
    width: 96px;
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 13%;
    margin: auto;
    border-radius: 3px;
    background-color: #b70f0f;
    border: solid 1px #c33838;
    color: #edc9c5;
    font-size: 14px;
    font-family: SCDream6;
    text-shadow: 0 1px 1px #711108;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.79);
    transition: 0.3s;
}

.slot-btn:hover .name-btn {
    background-color: #003733;
    background: linear-gradient(to top, #003a33, #007933);
    border: solid 1px #058a3b;
    color: #fff;
    text-shadow: 0 1px 1px #038c3b;
}

.slot-btn:hover .name-btn {
    width: 100%;
    bottom: 0;
}

/* SLot Game Btn */

.slot-btn .gi-img {
    width: 100%;
    pointer-events: none;
}

.slot-btn .sg-form {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 13%;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slot-btn .sg-form .text-cont {
    width: auto;
    height: 30px;
    border-radius: 3px;
    background-color: #b70f0f;
    border: solid 1px #c33838;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.79), inset 0 0 1px rgba(255, 255, 255, 0.35);
    padding: 0 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.slot-btn:hover .sg-form .text-cont {
    background-color: #003733;
    background: linear-gradient(to top, #003a33, #007933);
    border: solid 1px #058a3b;
}

.slot-btn .sg-form .text-cont p {
    color: #edc9c5;
    font-size: 14px;
    font-family: SCDream6;
    text-shadow: 0 1px 1px #711108;
}

.slot-btn:hover .sg-form .text-cont p {
    color: #fff;
    text-shadow: 0 1px 1px #038c3b;
}

.slot-btn .sg-form .text-cont p span {
    font-family: SCDream7;
    position: relative;
}

.slot-btn .sg-form .text-cont p span:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #edc9c5;
    left: 0;
    bottom: 0;
}

.slot-btn .sg-form .tutorial-btn {
    width: 70px;
    height: 30px;
    border-radius: 3px;
    background-color: #c3ce12;
    border: solid 1px #cdd63b;
    color: #000000;
    font-size: 14px;
    font-family: SCDream6;
    margin-left: 4px;
    transition: 0.3s;
    display: inline-block;
    float: left;
    padding: 5px 7px;
    text-decoration: none;
}

.slot-btn .sg-form .tutorial-btn:hover {
    background-color: #b70f0f;
    border: solid 1px #c33838;
    color: #edc9c5;
    text-shadow: 0 1px 1px #711108;
}

.mdl-close-btn {
    width: 54px;
    height: 54px;
    background-image: url(images/icon/close-gl.png);
    background-color: transparent;
    border: none;
    position: absolute;
    right: 54px;
    top: 24px;
    z-index: 2;
    transition: 0.5s;
    transform: rotate(0deg);
}

.mdl-close-btn:hover {
    animation: cbmAnim 0.5s ease 1 forwards;
}

@keyframes cbmAnim {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.mdl-close-btn span {
    color: #40fb0e;
    font-size: 12px;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}

.mdl-close-btn:hover span {
    opacity: 1;
    top: 105%;
}

.slot-btn .mdl-close-btn {
    width: 26px;
    height: 26px;
    position: absolute;
    right: -4px;
    top: -4px;
    background-color: transparent;
    border: none;
    background-image: url(images/icon/close.png);
    background-repeat: no-repeat;
    z-index: 2;
}

.slot-btn .mdl-close-btn:hover {
    filter: brightness(100);
}

.slot-btn .gi-tag {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
}

.sg-border-tb {
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    background-color: #ffd144;
    overflow: hidden;
    background: linear-gradient(to right, #a1a5a9, #e9f1f4, #a1a5a9, #e9f1f4);
    z-index: 1;
}

.sg-border-tb.top {
    top: 0;
}

.sg-border-tb.bot {
    bottom: 0;
}

.sg-border-tb:before {
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    left: 35%;
    top: 0;
    background: linear-gradient(to right, transparent, #fff, transparent);
    animation: mdlTopBotLeftAnim 1s ease infinite;
}

@keyframes mdlTopBotLeftAnim {
    0% {
        left: 35%;
    }
    100% {
        left: -30%;
    }
}

.sg-border-tb:after {
    content: '';
    width: 30%;
    height: 100%;
    position: absolute;
    right: 35%;
    top: 0;
    background: linear-gradient(to right, transparent, #fff, transparent);
    animation: mdlTopBotRightAnim 1s ease infinite;
}

@keyframes mdlTopBotRightAnim {
    0% {
        right: 35%;
    }
    100% {
        right: -30%;
    }
}

.slot-btn .hover-bg {
    width: 100%;
    height: 100%;
    float: left;
    position: absolute;
    left: 0;
    top: 0;
}

.slot-btn .hover-bg span {
    width: 100%;
    height: 25%;
    display: block;
    float: left;
    overflow: hidden;
    position: relative;
    opacity: 0;
    top: 0;
    left: 0;
    background-image: url(../images/slot-bg.png);
    background-size: 100% 400%;
    animation: slotBgAnim 0.8s ease 1 forwards;
}

.slot-btn:hover .hover-bg span {
    animation: slotBgOverAnim 0.8s ease 1 forwards;
}

.slot-btn .hover-bg span:nth-child(1) {
    animation-delay: 0s;
    background-position: 0 0;
}

.slot-btn .hover-bg span:nth-child(2) {
    animation-delay: 0.1s;
    background-position: 0 -100%;
}

.slot-btn .hover-bg span:nth-child(3) {
    animation-delay: 0.2s;
    background-position: 0 -200%;
}

.slot-btn .hover-bg span:nth-child(4) {
    animation-delay: 0.3s;
    background-position: 0 -300%;
}

@keyframes slotBgAnim {
    0% {
        opacity: 0;
        top: -20px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes slotBgOverAnim {
    0% {
        opacity: 1;
        top: 0;
    }
    100% {
        opacity: 0;
        top: -20px;
    }
}

.slot-btn .hover-bg span img {
    width: 100%;
    position: relative;
    top: 0;
}

.slot-btn .hover-bg span:nth-child(1) img {
    top: 0;
}

.slot-btn .hover-bg span:nth-child(2) img {
    top: -100%;
}

.slot-btn .hover-bg span:nth-child(3) img {
    top: -200%;
}

.slot-btn .hover-bg span:nth-child(4) img {
    top: -300%;
}








.after-login{
    width:auto;
    height:100%;
    display:none;
    float:left;
    flex-wrap:wrap;
    align-items: center;
    justify-content:center;
}
.after-login.active{
    display:flex;
}
.after-login.afterlog-mobile-menu.active{
    display:none;
}
.after-login.la-ul{
    width:480px;
    padding-inline-start:0;
    padding:15px 0;
}
.after-login li{
    border-right:solid 1px #4e4e4e;
    padding:0 8px;
    height:20px;
    width:50%;
    white-space:nowrap;
}
.after-login li:nth-child(3){
    border-right:none;
}
.after-login li:last-child{
    border-right:none;
    padding-right:0;
}
.after-login li a:hover{
    border-right:solid 1px transparent;
}
.after-login .labels{
    width:50%;
    height:100%;
    border-radius:10px;
    float:left;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content:flex-start;
}
.after-login .labels p{
    color:#a3ff12;
    font-size:10px;
}
.after-login .labels i{
    color:#a3ff12;
    font-size:12px;
    margin-right:5px;
}
.after-login .info{
    width:50%;
    height:100%;
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content:center;
    float:left;
}
.after-login .info p{
    color:#fff;
    font-size:10px;
}
.mess-notif{
    float:left;
    width:auto;
    height:auto;
    white-space:nowrap;
}
.mess-notif .mess-icon{
    display:inline-block;
    width:30px;
    height:100%;
    border-radius:3px;
    background-color:#a3ff12;
    position:relative;
    color:#000;
    text-align:center;
    font-size:14px;
}
.mess-notif .mess-icon i{
    animation:bellAnim 1s linear infinite;
}
@keyframes bellAnim{
    0%{transform:rotate(0deg);}
    50%{transform:rotate(0deg);}
    60%{transform:rotate(-20deg);}
    70%{transform:rotate(20deg);}
    80%{transform:rotate(-20deg);}
    90%{transform:rotate(20deg);}
    100%{transform:rotate(0deg);}
}
.mess-notif .mess-icon .count{
    width:15px;
    height:15px;
    position:absolute;
    right:-5px;
    top:-10px;
    color:#000;
    font-size:8px;
    border-radius:50%;
    background-color:#a3ff12;
    border:solid 1px #131419;
    text-align:center;
    padding:1px 0;
}
.after-login .btn-grp button{
    display:inline-block;
    width:auto;
    height:100%;
    border-radius:3px;
    font-size:8px;
    position:relative;
    text-align:center;
    border:none;
    padding:0 5px;
    float:left;
    margin-left:5px;
    white-space:nowrap;
}
.after-login .btn-grp button.mp-btn{
    color:#000;
    background-color:#f9d405;
}
.after-login .btn-grp button.logout-btn{
    color:#fff;
    background-color:#e51515;
}
.afterlog-btn{
    width:35px;
    height:35px;
    float:left;
    color:#f9d405;
    font-size:22px;
    border:none;
    background-color:transparent;
    margin-left:20px;
    position:relative;
}
.afterlog-btn .glyphicon{
    position:absolute;
    left:-4px;
    top:50%;
    transform:translateY(-50%) rotate(0deg);
    margin:auto;
    font-size:14px;
    animation:arrowAlAnim 0.8s linear infinite;
    transition:0.3s;
}
@keyframes arrowAlAnim{
    0%{left:-4px;}
    50%{left:-6px;}
    100%{left:-4px;}
}
.afterlog-btn .glyphicon.active{
    transform:translateY(-50%) rotate(180deg);
}