/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0.3
*/

/*banners*/
#banners {
    top: 4%;
    max-width: 220px;
    position: fixed;
    left: 1%;
    width: 220px;
    z-index: 100;
}
#block-social {
    top: 4%;
    position: fixed;
    right: 1%;
}
#block-social ul li{
    list-style: none;
    display: inline-block;
}
#block-social ul li img{ width:80% }

@media (max-width: 1366px){
	#banners {
			width: 160px;
			top: 13%;
	}
}
@media screen and (max-width: 991px){
	#banners {
			display: none!important;
	}
}
/*end banners*/
/*notifications*/
.hidden{
	display: none !important;
    visibility: hidden !important;
}
.notifications {
    position: fixed;
    top: 18%;
    right: 1%;
    display: none;
    background: url(/wp-content/themes/flatsome-child/assets/img/bg-notifications.png) top center/100% 100%
    no-repeat;
}
.notifications.ready {
    display: block;
}
.notification_box {
    padding: 1rem 0.5rem;
    position: relative;
    display: block;
    height: 55vh;
    max-height: 410px;
    overflow: hidden;
}
.notification_box::-webkit-scrollbar {
    width: 0;
}
.notification_box::-webkit-scrollbar-track {
    background: #000;
}
.notifications .notification {
    display: block;
    position: relative;
    height: 0;
    transform: translateX(calc(100% + 40px));
    transition: height 550ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 550ms cubic-bezier(0.23, 1, 0.32, 1) 250ms,
    opacity 750ms cubic-bezier(0.23, 1, 0.32, 1);
}
.notifications .notification.loaded {
    height: 80px;
    transform: translateX(0);
}
.notifications .notification:nth-child(n + 5) {
    transition: opacity 550ms cubic-bezier(0.23, 1, 0.32, 1) 150ms;
}
.notifications .notification.closed {
    transform: translateX(calc(100% + 40px));
    transition: height 550ms cubic-bezier(0.23, 1, 0.32, 1) 250ms,
    transform 550ms cubic-bezier(0.23, 1, 0.32, 1);
    height: 0;
}
.notifications .notification-inner {
    overflow: initial;
    width: 250px;
    position: relative;
    border-radius: 0;
    margin-bottom: 15px;
    align-items: center;
    display: flex;
}
.notifications .notification-inner:after,
.notifications .notification-inner:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    right: 0;
    bottom: 0;
}
.notifications .notification-inner:after {
    background: 0 0;
}
.notifications .notification-inner > * {
    position: relative;
    z-index: 1;
}
.notifications .notification.has-actions .notification-body,
.notifications .notification.has-image .notification-body {
    padding-right: 100px;
}
.notifications .notification-icon {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    padding: 3px;
    background: #e3ac3b;
    background: linear-gradient(
            to bottom,
            #e3ac3b 0,
            #d9a439 11%,
            #cd962a 24%,
            #e4ae3e 44%,
            #f8d271 68%,
            #fcde9d 88%,
            #fcedbb 100%
    );
}
.notifications .notification-icon > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.notifications .notification-icon + .notification-body {
    padding-right: 10px;
}
.notifications .notification-body {
    height: 100%;
    color: #fff;
    width: calc(100% - 60px);
    padding-left: 10px;
}
.notifications .notification-body-header {
    font: 600 13.5px/1em "San Francisco";
    letter-spacing: 0.45px;
    overflow: hidden;
}
.notifications .notification-body-content {
    font: 400 11.25px/1em "San Francisco";
    letter-spacing: 0.38px;
    overflow: hidden;
    padding-top: 6px;
}
.notifications .notification-actions {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    letter-spacing: 0.23px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
    min-width: 80px;
}
.notifications .notification-actions > * {
    pointer-events: all;
    height: 50%;
    text-align: center;
    padding: 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}
.notifications .notification-actions > :hover {
    background: rgba(0, 0, 0, 0.05);
}
.notifications .notification-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 70px;
    z-index: 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 1200px) {
    .notifications .notification-inner {
        width: 250px !important;
    }
    .notifications .notification-icon {
        min-width: 50px;
        height: 50px !important;
        width: 50px !important;
    }
    .notifications .notification.loaded {
        height: 65px !important;
    }
    .notifications .notification-inner {
        margin-bottom: 10px !important;
    }
    .notifications .notification-body {
        width: calc(100% - 50px);
    }
    .notification_box::before {
        width: calc(250px + 1rem);
    }
}
@media screen and (max-width: 991px) {
    .notifications {
        display: none !important;
    }
    .notifications .notification-inner {
        width: 100%;
    }
    .notifications .notification:not(.closed):nth-child(n + 3) {
        display: none;
        opacity: 0;
        transition: transform 550ms cubic-bezier(0.23, 1, 0.32, 1),
        opacity 750ms cubic-bezier(0.23, 1, 0.32, 1);
        transform: scale(0.5);
    }
    .notifications
    .notification.closed:not(.just-closed):nth-child(2)
    + .notification:not(.closed) {
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    .notifications .notification.closed + .notification:not(.closed) {
        transform: scale(1);
        opacity: 1;
    }
    .notifications
    .notification.closed
    + .notification:not(.closed):nth-child(3) {
        opacity: 0;
        transform: scale(0.5);
    }
    .notifications .notification:nth-child(n + 4) {
        opacity: 0 !important;
        transform: scale(0.5) !important;
    }
}
@media (max-width: 374px) {
    .notifications {
        transform: translateX(50%) scale(0.8);
    }
}
/*end notifications*/
.home_html{
	text-align: center;
}
.register{
	width: 70%;
	margin: 0 auto;
}
.store, .btnplayweb{
	width: 50%;
	display: block;
  margin: 0 auto;
}
.adv{
	margin: 1em 0;
}
.btnsubmit {
    width: 65%;
    background: 0 0;
    outline: 0;
    border: none;
    padding: 0;
}
.btnsubmit>img:last-child {
    position: absolute;
    width: 14%;
    right: 8%;
    top: 10%;
    -webkit-animation: zoomout .5s linear infinite;
    animation: zoomout .5s linear infinite;
    will-change: filter;
}
.small {
    color: #e0b97e;
    margin: 0 auto;
	  font-size: 80%;
}
@keyframes zoomout {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.2)
    }
    100% {
        transform: scale(1)
    }
}
@media (max-width: 640px){
	.register{
			width: 100%;
	}
	.btnplayweb {
			width: 85%;
	}
	.store {
			width: 70%;
	}
}
/*caothutaixiu*/
#caothutaixiu {
		padding: 10px;
    position: relative;    
    margin-bottom: 2rem
}
#caothutaixiu .container {
    max-width: 1000px
}
#caothutaixiu .caothutaixiu_ttl {
    text-align: center;
    display: block;
    width: calc(100% / 2.5);
    margin: 0 auto;
    position: relative;
    background: url(/wp-content/themes/flatsome-child/assets/img/caothutaixiu.png) top center/100% 100% no-repeat;
    color: #fff;
    text-transform: uppercase;
    font-family: OpenSans;
    font-size: 16px;
    padding: 8px;
    z-index: 1
}
#caothutaixiu .caothutaixiu_ttl img {
    max-width: 100%
}
#caothutaixiu .caothutaixiu_bg {
    box-shadow: 0 0 15px 0 rgba(255,175,0,.5);
    background: #000;
    background: linear-gradient(to bottom,#ac9a01 0,#b8ab01 10%,#c9c406 20%,#e3e352 27%,#fdf8ef 33%,#d5d11f 40%,#c0b407 60%,#a38e01 80%,#917501 100%);
    color: #fff;
    padding: 2px;
    border-radius: .5rem;
    overflow: hidden;
    width: 100%
}
#caothutaixiu .caothutaixiu_table {
    width: 100%;
    overflow: hidden
}
.caothutaixiu_box {
    border-radius: .4rem;
    width: 100%;
    overflow: hidden
}
#caothutaixiu .caothutaixiu_table:first-child .caothutaixiu_box {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}
#caothutaixiu .caothutaixiu_table:last-child .caothutaixiu_box {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}
#caothutaixiu .caothutaixiu_table_row {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0
}
#caothutaixiu .caothutaixiu_table_row li {
    flex: 1;
    text-align: center;
    overflow: hidden
}
#caothutaixiu .caothutaixiu_table_row li:first-child {
    flex: .5
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(2) {
    flex: 1.25
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(3) {
    flex: 1
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(4) {
    flex: 1
}
#caothutaixiu .caothutaixiu_table_row {
    background: #000;
    line-height: 2.75em
}
#caothutaixiu .caothutaixiu_table_row:nth-child(even) {
    background: #171207
}
#caothutaixiu .caothutaixiu_table_row li {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    font-family: OpenSans;
    border-right: 2px solid #e7ad22;
		margin: 0;
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(4) {
    border-right: 0
}
#caothutaixiu .caothutaixiu_table_row li span {
    color: #c49112;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 1em
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(1) span {
    color: #fff;
    font-size: 18px;
    background: 0 0
}
#caothutaixiu .caothutaixiu_table_row:first-child li span {
    color: #c49112;
    justify-content: center;
    align-items: center;
    font-size: 1em
}
#caothutaixiu .caothutaixiu_table_row:nth-child(2) li:nth-child(1) span,#caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(1) span,#caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(1) span {
    font-size: 0!important
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(2) span {
    background: 0 0;
    color: #3a8cf5
}
#caothutaixiu .caothutaixiu_table_row:first-child li span {
    color: #c49112
}
#caothutaixiu .caothutaixiu_table_row:nth-child(2) li:nth-child(2) span {
    color: red
}
#caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(2) span {
    color: #deff00
}
#caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(2) span {
    color: #3cff00
}
#caothutaixiu .caothutaixiu_table_row:nth-child(2) li:nth-child(1) span::before,#caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(1) span::before,#caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(1) span::before {
    content: "";
    width: 30px;
    height: 20px;
    margin: 0 auto;
    background: url(/wp-content/themes/flatsome-child/assets/img/icon-hang.png) center/100% auto no-repeat;
    background-position: 0 0;
    display: inline-block
}
#caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(1) span::before {
    background-position: 0 -26px
}
#caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(1) span::before {
    background-position: 0 -51px
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(4) {
    text-align: left
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(4) span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 calc(100% / 8)
}
#thutaixiu .caothutaixiu_table_row:nth-child(1) li:nth-child(4) span {
    justify-content: center
}
#caothutaixiu .caothutaixiu_table_row li:nth-child(3) span::before {
    content: "";
    width: 30px;
    min-width: 30px;
    height: 20px;
    margin: 0;
    background: url(/wp-content/themes/flatsome-child/assets/img/icon-thuong.png) center/75% auto no-repeat;
    background-position: 0 -102px;
    display: inline-block
}
#caothutaixiu .caothutaixiu_table_row:nth-child(1) li:nth-child(3) span::before {
    display: none
}
#caothutaixiu .caothutaixiu_table_row:nth-child(2) li:nth-child(3) span::before {
    background-position: 0 0
}
#caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(3) span::before {
    background-position: 0 -25px
}
#caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(3) span::before {
    background-position: 0 -51px
}
#caothutaixiu .caothutaixiu_table_row:nth-child(5) li:nth-child(3) span::before {
    background-position: 0 -77px
}
#caothutaixiu li:nth-child(4) span.none,#caothutaixiu li:nth-child(4) span.none::before {
    display: none
}
@media not all and (min-resolution: .001dpcm) {
    @supports (-webkit-appearance:none) {
        #caothutaixiu .caothutaixiu_table_row li {
            color:#fdc231
        }
        #caothutaixiu .caothutaixiu_table_row:nth-child(2) li:nth-child(2) {
            color: red
        }
        #caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(2) {
            color: #deff00
        }
        #caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(2) {
            color: #3cff00
        }
        #caothutaixiu .caothutaixiu_table_row:nth-child(5) li:nth-child(2) {
            color: #3a8cf5
        }
        #caothutaixiu .caothutaixiu_table_row:nth-child(6) li:nth-child(2) {
            color: #3a8cf5
        }
    }
}
@media (max-width: 1366px) {
    #caothutaixiu .caothutaixiu_table_row li span {
        font-size: 11px
    }
}
@media screen and (max-width: 991px) {
	#caothutaixiu .caothutaixiu_table_row li:nth-child(4) span {
        padding: 0
    }
    #caothutaixiu .caothutaixiu_table_row li span {
        font-size: 11px
    }
}
@media (max-width: 640px) {
	#caothutaixiu .caothutaixiu_ttl {
        width: 60%;
        margin: 0 auto
    }
    #caothutaixiu .caothutaixiu_table_row li span {
        font-size: 11px
    }
}
@media (max-width: 600px) {
    #caothutaixiu .caothutaixiu_table_row:first-child li span {
        font-size: 10px
    }
}
@media (max-width: 480px) {
	#caothutaixiu .caothutaixiu_table_row {
        line-height: 1.75rem
    }
    #caothutaixiu .caothutaixiu_table_row li {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden
    }
    #caothutaixiu .caothutaixiu_table_row li span {
        font-size: 10px
    }
    #caothutaixiu .caothutaixiu_table_row li:nth-child(4) span::before {
        width: 22px;
        min-width: 22px;
        transform: scale(.6);
        background-position: 0 -95px;
        background-size: 95%!important
    }
    #caothutaixiu .caothutaixiu_table_row:nth-child(3) li:nth-child(4) span::before {
        background-position: 0 -23px
    }
    #caothutaixiu .caothutaixiu_table_row:nth-child(4) li:nth-child(4) span::before {
        background-position: 0 -46px
    }
    #caothutaixiu .caothutaixiu_table_row:nth-child(5) li:nth-child(4) span::before {
        background-position: 0 -71px
    }
    #caothutaixiu .caothutaixiu_table_row:nth-child(6) li:nth-child(4) span::before {
        background-position: 0 -95px
    }
    #caothutaixiu .caothutaixiu_table_row li:nth-child(1) span::before {
        transform: scale(.6)
    }
    #caothutaixiu .caothutaixiu_table_row:nth-child(1) li:nth-child(1) span::before {
        transform: scale(1)
    }
    #caothutaixiu .caothutaixiu_table_row li:nth-child(1) span {
        font-size: 11px
    }
    #caothutaixiu .caothutaixiu_table_row:first-child li {
        display: flex;
        justify-content: center
    }
    #caothutaixiu .caothutaixiu_table_row:first-child li:nth-child(3) span {
        font-size: 9px;
        line-height: 13px
    }
    #caothutaixiu .caothutaixiu_table_row:first-child li:nth-child(4) span {
        font-size: 9px;
        line-height: 13px
    }
}
@media (max-width: 360px) {
	#caothutaixiu .caothutaixiu_table_row li span {
        font-size: 8px
    }
}
.nano {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 12rem
}
@media (max-width: 640px) {
    .nano {
        height:6rem
    }
}
.nano>.nano-content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%
}
.nano>.nano-content:focus {
    outline: thin dotted
}
.nano>.nano-content::-webkit-scrollbar {
    display: none
}
.has-scrollbar>.nano-content::-webkit-scrollbar {
    display: block
}
.nano>.nano-pane {
    background: rgba(0,0,0,.25);
    position: absolute;
    width: 5px;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 2.5px;
    -webkit-border-radius: 2.5px;
    border-radius: 2.5px
}
.nano>.nano-pane>.nano-slider {
    background: #444;
    background: rgba(255,255,0,.5);
    position: relative;
    margin: 0 1px;
    -moz-border-radius: 1.5px;
    -webkit-border-radius: 1.5px;
    border-radius: 1.5px
}
.nano-pane.active,.nano-pane.flashed,.nano:hover>.nano-pane {
    opacity: .99
}
.nano>.nano-content::-webkit-scrollbar {
    width: 0
}
/*end caothutaixiu*/