body {
	background-color: #161171;
	background-image: url(images/bg/bg-main.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	font-family: "MyriadProRegular";
	font-size: 16px;	
	color: #fff;
	outline: none !important;
	overflow-x: hidden;
	min-width: 320px;
}

body.single {
	color: #fff;
}

body.login {
	padding-top: 25px;
	color: #fff;
}

a:link {
	outline: none;
}

a, a:hover, a:visited {
	color: #fdcd01;
	outline: none;
}

a:hover {
	text-decoration: underline;
}

.a-table {
	display: table;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}

/*
===================================
	Animation
===================================
*/

#loader {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	text-align: center;
	background: #14AA61;
	z-index: 99999;
}

#loader::before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -4px;
	text-align: center;
}

#loader img {
	width: 250px;
	position: relative;
	display: inline-block;
	text-align: left;
	vertical-align: middle;
}

@keyframes spread {
	0%{
		transform: translateX(-100%);
	}
	
	50%{
		transform: translateX(100%);
	}
	
	100%{
		transform: translateX(0%);
	}	
}

@-webkit-keyframes spread {
	0%{
		webkit-transform: translateX(-100%);
	}
	
	50%{
		-webkit-transform: translateX(100%);
	}
	
	100%{
		-webkit-transform: translateX(0%);
	}
}

@-webkit-keyframes pulser {
	0% {
		opacity: .75;
	}
	
	100% {
		-webkit-transform: scale(2);
		opacity: 0;
	}
}

@keyframes pulser {
	0% {
		opacity: .75;
	}
	
	100% {
		transform: scale(2);
		opacity: 0;
	}
}


/*
===================================
	Root of The Root
===================================
*/

/*
--- Text Point ---
*/
.capitalize {
	text-transform: capitalize;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.text-bold {
	font-weight: 600;
}

.text-shadow {
	/*
    text-shadow: 1px 2px 2px #000;
	*/
}

.text-playbold {
    font-family: "PlayBold";
}

.text-14 {
	font-size: 14px;
}

.text-16 {
	font-size: 16px;
}

.text-18 {
	font-size: 18px;
}

.text-20 {
	font-size: 20px;
}

.text-22 {
	font-size: 22px;
}

.text-24 {
	font-size: 24px;
}

/*
--- Margin Point ---
*/
.margin-top-0 {
	margin-top: 0 !important;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-15 {
	margin-top: 15px;
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-30 {
	margin-top: 30px !important;
}

.margin-top-40 {
	margin-top: 40px;
}

.margin-top-60 {
	margin-top: 60px;
}

.margin-top-6ps {
	margin-top: 6%;
}

.margin-bottom-10 {
	margin-bottom: 10px;
}

.margin-bottom-15 {
	margin-bottom: 15px;
}

.margin-bottom-20 {
	margin-bottom: 20px;
}

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

.margin-bottom-40 {
	margin-bottom: 40px;
}

.margin-left-10 {
	margin-left: 10px;
}

.margin-left-15 {
	margin-left: 15px;
}

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

.margin-left-30 {
	margin-left: 30px;
}

.margin-left-5ps {
    margin-left: 5%;
}

.margin-right-10 {
	margin-right: 10px;
}

.margin-right-15 {
	margin-right: 15px;
}

.margin-right-20 {
	margin-right: 20px;
}

.margin-right-30 {
	margin-right: 30px;
}

/*
--- Color Point ---
*/
.yellow-color {
	color: #fdcd01;
}

.red-color {
	color: #d9534f;
}

.green-color {
	color: #84d543;
}

.red-color-2 {
    color: #ff0018;
}

.green-color-2 {
    color: #00ff28;
}

/*
--- Display Point ---
*/

.show-when-mobile {
	display: none !important;
}

.inline-block {
	display: inline-block;
}

.relative {
	position: relative;
}

/*
--- Float Point ---
*/

.unset-float {
	float: unset;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.float-block-left{
	float: left;
	width: 100%;
	position: relative;	
}

/*
--- Width Point ---
*/
.width-30ps {
    width: 30%;
}

.width-60ps {
    width: 60%;
}

/*
--- Button Point ---
*/

.btn {
	color: #fff !important;
	font-family: "MyriadProRegular";
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	outline: 0;
	padding: 3px 20px;
	font-size: 16px;
	font-weight: 100;
	text-shadow: none;
	display: inline-block;
	border: 1px solid transparent;
	border-radius: 50px;
	display: inline-block;

	-webkit-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;			
}

.btn {
	background: transparent;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.btn::before, 
.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	display: block;
	-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
			transform: translateX(0);
			
	-webkit-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;			
			
	z-index: -1;
}

.btn-small {
	font-size: 10px;
	letter-spacing: 1px;
	font-family: "PlayRegular";
	padding: 4px 6px;
}

.btn-mid {
	min-height: 34px;
	min-width: 150px;
	font-size: 18px;
}

.btn-larger {
	font-size: 21px;
	padding: 5px 15px;
}

.btn-yellow {
	background: #fdcd01;
	color: #333 !important;
}

.btn-yellow:before {
	background: #fdcd01;
}

.btn-red {
	background: #C31200;
	color: #fff !important;	
}

.btn-red:before {
	background: #C31200;
}

.btn-green {
	background: #149d02;
	color: #fff !important;	
}

.btn-green:before {
	background: #149d02;
}

.btn-purple {
	background: #b066bb;
	color: #fff;
}

.btn-purple:before {
	background: #b066bb;
}

.btn-black {
	background: #282f39;
}

.btn-black:before {
	background: #282f39;
}

.btn-games {
	background: transparent;
	padding: 7px 20px;
	border: 1px solid #fff;
	color:#fff !important;
	font-size: 16px;
	
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		-ms-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;		
}

.btn-more {
	background: #ff0018;
	color: #fff !important;
	border: 1px solid #E6E6E6;
	border-bottom-color: #000;
}

.btn-img {
	padding: 3px 7px;
	border-radius: 5px;	
	border: 1px solid #ff0018;
}

.btn-img img {
	height: 20px;
	margin-top: -3px;
	padding-right: 7px;
}

.btn-more:before {
	background: #ff0018;
}

.btn-login, 
.btn-register {
	text-transform: uppercase;
	font-size: 20px;
	min-width: 250px;
}

.btn-login {
	background: #ff9000;
	color: #333 !important;
}

.btn-login::before {
	background: #ff9000;
}

.btn-register {
	background: #ff1c1c;
	color: #fff !important;
}

.btn-register::before {
	background: #ff1c1c;
}

.btn:hover,
.btn:focus {

}

.btn:hover:before, 
.btn:focus:before {
	-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
			transform: translateX(-100%);
}

.btn-yellow:hover {
	background: transparent;
	border: 1px solid #fdcd01;
	color: #fdcd01 !important
}

.btn-red:hover {
	background: transparent;
	border: 1px solid #C31200;
	color: #C31200 !important;
}

.btn-green:hover {
	background: transparent;
	border: 1px solid #149d02;
	color: #149d02 !important;
}

.btn-purple:hover {
	background: transparent;
	border: 1px solid #b066bb;
	color: #b066bb !important;
}

.btn-black:hover {
	background-color: #FB4D00;
}

.btn-games:hover {
	background: #fff;
	color: #020202 !important;
}

.btn-more:hover {
	background: transparent;
	border: 1px solid #ff0018;
	color: #ff0018 !important;
}

.btn-login:hover {
	background: transparent;
	border: 1px solid #ff9000;
	color: #ff9000 !important;
}

.btn-register:hover {
	background: transparent;
	border: 1px solid #ff1c1c;
	color: #ff1c1c !important;
}

/*
--- IMG Point ---
*/
.img-490 {
	width: 490px;
}

.img-300 {
	width: 300px;
}

.img-middle {
	margin-left: auto !important;
	margin-right: auto !important;
}

.img-offline {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	   -moz-filter: grayscale(100%);
		-ms-filter: grayscale(100%);
		 -o-filter: grayscale(100%);	
			filter: grayscale(100%);	
}

/*
--- Ul Point ---
*/

ul.no-list-img {
	padding: 0;
	font-size: 20px;
	font-weight: normal;	
}

ul.no-list-img li {
    list-style: none;
}

ul.custom-list-img li {
	background-image: url(images/content/point-dot-list-item.png);
	background-repeat: no-repeat;
	padding-left: 25px;
	margin-bottom: 18px;
	background-size: 18px;
	line-height: 25px;
	background-position: 0px 6px;
}

ul.no-list-img-small {
    padding: 0;
}

ul.no-list-img-small li {
    list-style: none;
    font-weight: normal;
}

ul.custom-list-img-small li {
    background-image: url(images/content/point-dot-list-item.png);
    background-repeat: no-repeat;
    background-size: 17px auto;
    padding-left: 26px;
    line-height: 1em;
    font-size: 16px;
	margin-bottom: 15px;
}

/*
==========================================================
	RELATIVE BLOCK
==========================================================
*/

.head-block,
.head-block .logo-home, 
.head-block .title, 
.head-block .icon, 
.menu-block, 
.main-header, 
.main-logo-home, 
.main-menu-home, 
.slider-home-block, 
.separator-menu-home,  
.room-marquee-home, 
.game-home-block, 
.game-home-block .content-game-home, 
.game-home-block .content-game-home > div, 
.store-home-block, 
.store-home-block .item, 
.store-home-block .item .icon, 
.store-home-block .item .content, 
.article-block, 
.section-article, 
.room-main-content-article, 
.head-content-article, 
.main-content-article, 
.image-article, 
.sub-head-article, 
.title-article, 
.date-article, 
.content-article, 
.read-more, 
.bank-block, 
.about-home-block, 
footer,
.single-block,
.single-block-content,
.bottom-logo,
.main-login-block,
.main-left-panel,
.main-sidebar,
.main-sidebar-login {
	position: relative;
	width: 100%;
	float: left;
}

.top-block, 
.slider-home-block,
.slider-home-block img, 
.game-home-block, 
.store-home-block .item, 
.room-main-content-article, 
.bank-block, 
.main-left-panel, 
.main-sidebar, 
.main-sidebar-login, 
.single-block {
	border-radius: 10px;
}

.header-title, 
.sidebar-menu > div:first-child a:hover,
.sidebar-menu > div:first-child.active a {
	border-radius: 10px 10px 0 0;
}

.main-header, 
.main-menu-home {
	border-radius: 0 0 10px 10px;
}

/*
==================================================
			HEAD BLOCK
==================================================
*/

.head-block {
	background-color: #0e0d22;
	padding: 10px 15px;
	
	-webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
	   -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
		-ms-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
		 -o-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
			box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);	
}

.head-block .title {
	font-family: "MyriadProBold";
	font-size: 18px;
	line-height: 30px;
	color: #41444b;
	padding-left: 15px;
}

.head-block .title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 48%;	
	background-color: #fa0d2f;
	width: 2px;
	height: 60%;
	
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		 -o-transform: translateY(-50%);
			transform: translateY(-50%);
}

.head-block .icon {
	float: right;
	text-align: right;
}

.head-block .logo-home img, 
.head-block .icon img {
	width: auto;
	height: 30px;
}

/*
==================================================
			MENU BLOCK
==================================================
*/

.menu-block {

}

.login .menu-block {
	margin-top: 0;	
}

/*
==================================================
			MAIN HEADER BlOCK
==================================================
*/

.main-header {
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;
}

.main-logo-home .navbar-brand {
	float: unset;
	margin: auto;
}

.main-menu-home {
	background-color: #2c1d4c;
	padding: 20px;
}

.room-main-menu {
	margin-left: -45px;
	margin-right: -45px;
}

.menu-home {
	position: relative;
	width: 100%;	
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu-home > li {
	position: relative;	
	width: 20%;
	float: left;
	display: block;
	text-align: center;
	padding: 0 45px;
}

.menu-home > li + li::before {
	content: '';
	background-color: #E6E6E6;
	position: absolute;
	left: 0;
	top: 15%;
	width: 1px;
	height: 50%;	
}

.menu-home > li > a {
	color: #E6E6E6;
	text-decoration: none;
	white-space: nowrap;
}

.menu-home > li > a:hover {	

}

.menu-home > li > a .icon {
	background: #f4b53c;
	background: -moz-linear-gradient(-45deg,  #f4b53c 0%, #b03905 100%);
	background: -webkit-linear-gradient(-45deg,  #f4b53c 0%,#b03905 100%);
	background: linear-gradient(135deg,  #f4b53c 0%,#b03905 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4b53c', endColorstr='#b03905',GradientType=1 );
	
	padding: 20px;
	border-radius: 5px;
	overflow: hidden;
	
	-webkit-box-shadow: inset 0 -25px 20px -20px rgba(0, 0, 0, 0.75), 5px 5px 10px rgba(0, 0, 0, 0.65);
	   -moz-box-shadow: inset 0 -25px 20px -20px rgba(0, 0, 0, 0.75), 5px 5px 10px rgba(0, 0, 0, 0.65);
		-ms-box-shadow: inset 0 -25px 20px -20px rgba(0, 0, 0, 0.75), 5px 5px 10px rgba(0, 0, 0, 0.65);
		 -o-box-shadow: inset 0 -25px 20px -20px rgba(0, 0, 0, 0.75), 5px 5px 10px rgba(0, 0, 0, 0.65);
			box-shadow: inset 0 -25px 20px -20px rgba(0, 0, 0, 0.75), 5px 5px 10px rgba(0, 0, 0, 0.65);
}

.menu-home > li > a .icon img {
	width: auto;
	height: 40px;
}

.menu-home > li > a .text {
	color: #E6E6E6;
	font-family: "MyriadProBold";	
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 7px;
}

.menu-home > li:hover, 
.menu-home > .active,
.menu-home > .active:hover {
	
}

.menu-home > .active > a,
.menu-home > .active > a:hover {

}

.menu-home > li > a:hover .icon, 
.menu-home > .active > a .icon,
.menu-home > .active:hover > a .icon {
	background: #e53d46;
	background: -moz-linear-gradient(-45deg,  #e53d46 0%, #e6111e 100%);
	background: -webkit-linear-gradient(-45deg,  #e53d46 0%,#e6111e 100%);
	background: linear-gradient(135deg,  #e53d46 0%,#e6111e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e53d46', endColorstr='#e6111e',GradientType=1 );
}

.menu-home > li > a:hover .icon img, 
.menu-home > .active:hover > a .icon img {	
	-webkit-animation: spread .3s ease-in-out;
	   -moz-animation: spread .3s ease-in-out;
		-ms-animation: spread .3s ease-in-out;
		 -o-animation: spread .3s ease-in-out;
			animation: spread .3s ease-in-out;	
}

.menu-home > li > a:hover .icon img, 
.menu-home > .active > a .icon img,
.menu-home > .active:hover > a .icon img {
	
}

.menu-home > li > a:hover .text, 
.menu-home > .active > a .text,
.menu-home > .active:hover > a .text {
	color: #E6E6E6;
}

.menu-home > .active > a, 
.menu-home > .active > a:hover {

}

.menu-home-ext {
	display: none;
}

.separator-menu-home {
	padding: 20px 0;
}

.separator-menu-home:before {
	content: '';
	position: absolute;
	background-color: #E6E6E6;
	height: 1px;
	left: 45px;
	right: 45px;
}

.menu-home-ext > li {
	width: 25%;
}

.sticky-wrapper.is-sticky .main-menu-home {
	padding: 10px 20px;
	
	-webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.75);
	   -moz-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.75);
		-ms-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.75);
		 -o-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.75);
			box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.75);
}

.sticky-wrapper.is-sticky .main-menu-home .menu-home > li > a .icon {
	padding: 7px;
}

.sticky-wrapper.is-sticky .main-menu-home .menu-home > li > a .icon img {
	height: 25px;
}

.sticky-wrapper.is-sticky .main-menu-home .menu-home > li + li::before {
	height: 40%;
}

/*
==================================================
			NAVIGASI
==================================================
*/

.navbar {
	margin-bottom: 0;
}

.login .navbar {
    margin-left: 0;
    margin-right: 0;
}

.navbar {
	width: inherit;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.navbar {
	-webkit-transition: 0.5s;
	   -moz-transition: 0.5s;
		-ms-transition: 0.5s;
		 -o-transition: 0.5s;
			transition: 0.5s;
}

.navbar-inverse {	
	min-width: 290px;
	border: 0;
	border-radius: 0 !important;
	background: #0b0d19;
	
	-webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
	   -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
		-ms-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
		 -o-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
			box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.35);
	z-index: 99;	
}

.navbar-inner {
	background: #3f5360;
	background: -moz-linear-gradient(top,  #3f5360 0%, #263b48 100%);
	background: -webkit-linear-gradient(top,  #3f5360 0%,#263b48 100%);
	background: linear-gradient(to bottom,  #3f5360 0%,#263b48 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f5360', endColorstr='#263b48',GradientType=0 );	
}

.login .navbar-inverse {
	min-width: 290px;
	position: relative;
	padding-top: 0;	
	margin-top: 0;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;	
}

.single .navbar-inverse {

}

.login .navbar-brand {
	display: block;
	padding: 14px 15px 10px;
	height: 60px;
}

.navbar-brand > img {
	position: relative;
	width: 170px;
	margin-top: 0;
	
	z-index: 9;
}

.mobile-view, 
.navbar-brand-mobile, 
.login .navbar-brand-mobile {
	display: none;
}

.navbar-nav > li > a {
    padding-top: 20px;
    padding-bottom: 20px;
	padding-left: 15px;
	padding-right: 15px;
}

.navbar-inverse .navbar-nav > li > a {
    font-family: "MyriadProRegular";	
    color: #fff;
	font-size: 16px;
    text-transform: capitalize;
    text-shadow: none;
	white-space: nowrap;
}

.navbar-inverse .navbar-nav > li > a:hover {
	background-image: none;
	background-color: transparent;
	color: #fff;
	
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		-ms-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
}

.navbar-inverse .navbar-nav > .active > a, 
.navbar-inverse .navbar-nav > .active > a:hover
/**.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a :active */ {
	background-image: none;
	background-color: transparent;
	color: #fff !important;
	
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		-ms-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .open > a {
	background-image: none;
	background: transparent !important;
	
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
		-ms-box-shadow: none;
		 -o-box-shadow: none;
			box-shadow: none;
}

.navbar-inverse .navbar-nav > .open > a, 
.navbar-inverse .navbar-nav > .open > a:focus, 
.navbar-inverse .navbar-nav > .open > a:hover {
	color: #fff;
	background-color: transparent;
}

.dropdown-menu {
	background-color: #121212;
	border: none;
	border-radius: 0 !important;
	margin-top: 2px !important;
	
	-webkit-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.75);
	   -moz-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.75);
		-ms-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.75);
		 -o-box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.75);
			box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.75);	
}

.dropdown-menu > li > a {
	padding: 5px 20px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 16px;
}

.dropdown-menu > li > a:focus, 
.dropdown-menu > li > a:hover {
	background-color: transparent;
	background-image: none;
	color: #fff;
}

.dropdown-menu > .active > a, 
.dropdown-menu > .active > a:focus, 
.dropdown-menu > .active > a:hover {
	background-color: transparent;
	background-image: none;
	color: #fff;	
}

.navbar-inverse .navbar-nav > li.login-menu > a {
    color: #fff;
}

.navbar-inverse .navbar-nav > li.login-menu > a:hover, 
.navbar-inverse .navbar-nav > li.login-menu > .active > a:hover {
    color: #fff;
}

/*
==================================================
	SLIDER HOME BLOCK
==================================================
*/

.slider-home-block {
	margin: 20px 0;

	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;
} 

#main_home_slider .owl-item {

}

#main_home_slider.sa_owl_theme .owl-stage-outer {
	
}

#main_home_slider.sa_owl_theme .owl-dots {
	bottom: 20px !important;
	padding: 0 !important;
}
	
#main_home_slider.sa_owl_theme .owl-nav div, 
#main_home_slider.sa_owl_theme .owl-nav button {
	margin-top: -30px !important;
}

#main_home_slider.sa_owl_theme .owl-nav .owl-prev, 
#main_home_slider.sa_owl_theme .owl-nav .owl-next {
	background: #f4b53c !important;
	background: -moz-linear-gradient(-45deg,  #f4b53c 0%, #b03905 100%) !important;
	background: -webkit-linear-gradient(-45deg,  #f4b53c 0%,#b03905 100%) !important;
	background: linear-gradient(135deg,  #f4b53c 0%,#b03905 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4b53c', endColorstr='#b03905',GradientType=1 ) !important;
	
	border-radius: 5px;
	height: 80px !important;
	width: 30px !important;
	font-size: 21px !important;
	text-align: center;
	
	-webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
	   -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
		-ms-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
		 -o-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
			box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
}

#main_home_slider.sa_owl_theme .owl-nav .owl-prev:hover, 
#main_home_slider.sa_owl_theme .owl-nav .owl-next:hover {
	background: #e53d46 !important;
	background: -moz-linear-gradient(-45deg,  #e53d46 0%, #e6111e 100%) !important;
	background: -webkit-linear-gradient(-45deg,  #e53d46 0%,#e6111e 100%) !important;
	background: linear-gradient(135deg,  #e53d46 0%,#e6111e 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e53d46', endColorstr='#e6111e',GradientType=1 ) !important;	
}

#main_home_slider.sa_owl_theme .owl-nav .owl-prev {
	left: -15px;	
} 

#main_home_slider.sa_owl_theme .owl-nav .owl-next {
	right: -15px;	
}

#main_home_slider.sa_owl_theme .owl-dots .owl-dot {
	outline: none !important;
}

#main_home_slider.sa_owl_theme .owl-dots .owl-dot span {
	background-color: rgba(255, 255, 255, 0.65) !important;
}

#main_home_slider.sa_owl_theme .owl-dots .active span {
	background-color: #fff !important;
}

/*PENTING BUAT BUG DARI OWL*/

.owl-carousel .owl-stage, 
.owl-carousel.owl-drag .owl-item{
    -ms-touch-action: auto !important;
        touch-action: auto !important;
}

/*
==================================================
	GAME HOME BLOCK
==================================================
*/

@keyframes blink {
	0%, 100% {
		opacity: 1;
	}
	
	50%{
		opacity: 0;
	}	
}

@keyframes fliptext {
	0%, 100% {
		transform: rotateY(0);
	}
	
	50%{
		transform: rotateY(90deg);
	}	
}

@-webkit-keyframes fliptext {
	0%, 100% {
		-webkit-transform: rotateY(0);
	}
	
	50%{
		-webkit-transform: rotateY(90deg);
	}	
}

@keyframes bouncetext {
	0%, 100%{ 
		transform: translate(0); 
	}
	
	25% { 
		transform: rotateX(20deg) translateY(2px) rotate(-3deg); 
	}
	
	50% { 
		transform: translateY(-20px) rotate(3deg) scale(1.1);  
	}
}

@-webkit-keyframes bouncetext {
	0%, 100%{ 
		-webkit-transform: translate(0); 
	}
	
	25% { 
		-webkit-transform: rotateX(20deg) translateY(2px) rotate(-3deg); 
	}
	
	50% { 
		-webkit-transform: translateY(-20px) rotate(3deg) scale(1.1);  
	}
}

.game-home-block {
	background-image: url(images/bg/bg-game.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px;
	margin: 20px 0;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;
}

.game-home-block .content-game-home {
	z-index: 2;
}

.game-home-block .head-game {
	
}

.game-home-block .head-game img {
	width: 240px;
	margin-top: -45px;
	margin-left: -45px;
	
	animation: blink .7s ease-in-out infinite;
}

.game-home-block .sub-body-game, 
.game-home-block .body-game {
	text-transform: uppercase;
	text-shadow: 1px 2px 3px #000;
}

.game-home-block .free {
	font-size: 42px;
	line-height: 32px;
}

.game-home-block .reg {
	font-family: "PlayBold";
	font-size: 26px;
}

.game-home-block .body-game > div {
	float: left;
}

.game-home-block .body-game .text {
	font-family: "MyriadProBold";	
	font-size: 79px;
	line-height: 60px;
}

.game-home-block .body-game .text span {
	display: inline-block;
	
	-webkit-animation: fliptext .7s ease-in-out infinite;
	   -moz-animation: fliptext .7s ease-in-out infinite;
			animation: fliptext .7s ease-in-out infinite;
}

.game-home-block:hover .body-game .text span {
	-webkit-animation: bouncetext .6s 2 forwards;
	   -moz-animation: bouncetext .6s 2 forwards;
			animation: bouncetext .6s 2 forwards;
}

.game-home-block .body-game .text span:nth-child(2){ -webkit-animation-delay: .05s; -moz-animation-delay: .05s; animation-delay: .05s; }
.game-home-block .body-game .text span:nth-child(3){ -webkit-animation-delay: .1s; -moz-animation-delay: .1s; animation-delay: .1s; }
.game-home-block .body-game .text span:nth-child(4){ -webkit-animation-delay: .15s; -moz-animation-delay: .15s; animation-delay: .15s; }
.game-home-block .body-game .text span:nth-child(5){ -webkit-animation-delay: .2s; -moz-animation-delay: .2s; animation-delay: .2s; }
.game-home-block .body-game .text span:nth-child(6){ -webkit-animation-delay: .25s; -moz-animation-delay: .25s; animation-delay: .25s; }
.game-home-block .body-game .text span:nth-child(7){ -webkit-animation-delay: .3s; -moz-animation-delay: .3s; animation-delay: .3s; }
.game-home-block .body-game .text span:nth-child(8){ -webkit-animation-delay: .35s; -moz-animation-delay: .35s; animation-delay: .35s; }

.game-home-block .body-game .action {
	margin-left: 20px;
}

.game-home-block .body-game .action .btn {
	font-size: 30px;
	font-weight: 700;
	position: absolute;
	bottom: 0;	
}

.game-home-block .icon-game-home {
	position: absolute;
	bottom: 0;
	right: -30px;
}

.game-home-block .icon-game-home img {
	width: 340px;
}

/*
==================================================
		MARQUEE
==================================================
*/

marquee {
	display: block;
	line-height: 1.2em;
	white-space: nowrap;	
}

.bg-marquee {
    clear: both;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 13px;
    font-family: "MyriadProRegular";
    margin-bottom: 14px;
}

.marquee-home {
	margin-bottom: 20px !important;
	padding: 11px 15px !important;
	float: left;
	position: relative;
	top: 0;
	left: 0;	
	z-index: 8;
	background-color: #040814;
	color: #fff;
}

/*
==================================================
	STORE HOME BLOCK
==================================================
*/

.store-home-block {
	margin-bottom: 20px;
}

.store-home-block .row {
	margin-left: -10px;
	margin-right: -10px;
}

.store-home-block .row > div {
	padding-left: 10px;
	padding-right: 10px;
}

.store-home-block .item {
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
	height: 290px;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;	
}

.store-home-block .item.android, 
.store-home-block .item.browser {
	height: 140px;
}

.store-home-block .item.apple {
	background-image: url(images/bg/bg-store-apple.jpg);
}

.store-home-block .item.browser {
	background-image: url(images/bg/bg-store-browser.jpg);
}

.store-home-block .item.android {
	background-image: url(images/bg/bg-store-android.jpg);
	margin-top: 10px;	
}

.store-home-block .item .icon {
	width: 30%;
}

.store-home-block .item .content {
	width: 70%;	
	height: 100%;
	padding: 10px;
}

.store-home-block .item.apple .icon {
	width: 60%;
}

.store-home-block .item.apple .content {
	width: 40%;
}

.store-home-block .item .icon img {
	height: 160px;
	width: auto;
	display: block;
	margin-top: -10px;
	margin-left: -10px;
}

.store-home-block .item.apple .icon img {
	height: 320px;
	margin-left: -60px;
}

.store-home-block .content .room {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
}

.store-home-block .content .room > div {
	float: left;
}

.store-home-block .content .head {
	color: #fff;
	font-weight: 700;
	font-size: 31px;
	line-height: 26px;
	text-shadow: 1px 1px 2px #000;
}

.store-home-block .content .head .small {
	font-size: 60%;
	font-weight: 100;
}

.store-home-block .content .action {
	margin-left: 10px;
}

.store-home-block .content .action .btn {
	position: absolute;
	bottom: 0;
	right: 0;
}

.store-home-block .item.apple .content .room > div {
	width: 100%;	
	position: relative;
	text-align: right;
}

.store-home-block .item.apple .content .head {
	font-size: 56px;
	line-height: 45px;
}

.store-home-block .item.apple .content .action {
	margin-top: 20px;
	margin-left: 0;
}

.store-home-block .item.apple .content .action .btn {
	position: relative;
	bottom: 0;
	right: 0;
}


/*
==================================================
	ARTICLE BLOCK
==================================================
*/

.article-block {
	color: #fff;
}

.main-article-block {
	margin-left: -10px;
	margin-right: -10px;
}

.main-article-block > div {
	width: 50%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
}

.room-main-content-article {
	background-image: url(images/bg/bg-article.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px 30px 40px;	
	text-shadow: 1px 2px 3px #000;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;	
}

.head-content-article {
	margin-bottom: 10px;
}

.main-content-article .title-article {
	margin-top: 0;
}

.main-article-block .image-article img {
	margin: auto;
}

.image-article img {
	width: 100%;
	border-radius: 50%;
}

.single .image-article img {
	border-radius: 0;
}

.main-content-article {
	color: #fff;	
}

.single .title-article {
	margin-top: 20px;
}

.home .title-article h1 {
	font-size: 24px;
}

.title-article a {
	color: #fff;
}

.single .title-article a {
	color: #fff;
}

.title-article a:hover {
	color: #fa0d2f;
	text-decoration: none;
}

.date-article {
	color: #fa0d2f;
	font-size: 12px;
	margin: 15px 0 0;
}

.single .date-article {
	margin: 15px 0;
}

.read-more {
	margin-top: 10px;
	text-align: right;
}

/*
==================================================
	BANK BLOCK
==================================================
*/

.bank-block {
	background-color: #2c1d4c;
	
	margin-bottom: 20px;
    padding: 30px;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;
}

.room-bank-block {
	margin-left: -7px;
	margin-right: -7px;
}

.room-bank-block > div {
	padding-left: 7px;
	padding-right: 7px;
}

.bank-block img {
	border-radius: 150px;
	
	-webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.55);
	   -moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.55);
		-ms-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.55);
		 -o-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.55);
			box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.55);
}

.bank-status {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 15px;
}

.bank-status::before {
	position: absolute;
	left: 0;
	right: 0;
	font-size: 11px;
	letter-spacing: 1px;
}

.bank-status.on::before {
	content: "Online";
	color: #84d543;
}

.bank-status.off::before {
	content: "Offline";
	color: #ff2323;
}

/*
==================================================
	ABOUT HOME BLOCK
==================================================
*/

.about-home-block {
	padding: 10px 30px 30px;
	color: #fff;	
	text-align: center;
}

.about-home-block .content-about h1,
.about-home-block .content-about h2,
.about-home-block .content-about h3 {
	font-family: "MyriadProBold";
	text-transform: uppercase;
	font-size: 11px;
}

.about-home-block .content-about a {
	color: #fff;
}

.about-home-block .content-about p {
    font-size: 7px;
    margin: 10px 0;
}

/*
==========================================================
	SINGLE BLOCK
==========================================================
*/

/*--- Header Title ---*/
.header-title h1 {
	font-family: "MyriadProBold";
	margin: 0;
	text-align: center;
	font-style: italic;
	font-size: 45px;
	letter-spacing: -2px;
	color: #fff;
}

/*--- Single Block ---*/
.single-block {
	background-image: url(images/bg/bg-block.jpg);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-color: #040404;
	min-height: 570px;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;		
}

.header-title {
	background-color: #040404;	
	position: relative;
	padding: 10px 15px;	
}

.bottom-logo {
    padding: 30px 0;
}

.bottom-logo img {
    margin: auto;
    opacity: 0.35;
}

.single-block-content {
    padding: 30px 30px 60px;
}

.single-block-content h3,
.single-block-content h2 {
    margin-bottom: 25px;
}

.marquee-page {
    margin-bottom: 0 !important;
    padding: 11px 15px !important;
    position: relative;
    z-index: 8;
    background-color: #0b0d19;
	color: #fff;
}

.single-block-content img.img-download {
    width: 370px;
}

.youtubeVideoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}

.youtubeVideoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
==========================================================
	LOGIN BLOCK
==========================================================
*/

.room-login-block {
	margin-left: -10px;	
	margin-right: -10px;
}

.room-login-block > div {
    padding-left: 10px;
    padding-right: 10px;
}

.main-left-panel, 
.main-sidebar, 
.main-sidebar-login, 
.single-block {

}

.not-login-block {
	margin-top: 25px;
}

/*--- LEFT PANEL ---*/
.main-left-panel {
    min-height: 1080px;
	background-image: url(images/bg/bg-block.jpg);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;	
	background-color: #040404;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;		
}

.marquee-login {
	color: #fff;
	margin-top: 10px;
    margin-bottom: 0 !important;
    padding: 11px 15px !important;
    position: relative;
    z-index: 9;
	background-color: #040814;
}

.login-menu-block {
	display: none;
}

.img-button-wrap {
    display: table;
    width: 100%;
}

/*--- SIDEBAR ---*/
.main-sidebar {
	min-height: 1080px;
	background-image: url(images/bg/bg-block.jpg);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;	
	background-color: #040404;		
	padding: 40px 20px;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;		
}

.main-sidebar-login {
	min-height: 1080px;
	background-image: url(images/bg/bg-block.jpg);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;	
	background-color: #040404;
	
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;		
}


/*
==========================================================
	FORM
==========================================================
*/
.form-control {
    background-color: rgba(255, 255, 255, 0.65);
    border: none;
    border-radius: 5px;
	color: #333;
	font-size: 1em;
	-webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
	   -moz-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
		 -o-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);   
			box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
}

.form-control:focus, .form-control:active {
	-webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
	   -moz-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
		 -o-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);   
			box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
}

.inline-wrap > input,
.inline-wrap > img,
.inline-wrap > select,
.inline-wrap > span {
    display: inline-block !important;
}

.form-group-big {
    margin: 30px 0;
}

.form-horizontal .control-label {
    padding-top: 3px;
}

.form-control::-moz-placeholder {
  color: #1e150c;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #1e150c;
}

.form-control::-webkit-input-placeholder {
  color: #1e150c;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  /*
  background-color: rgba(72,57,13,0.75);
  */
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 1;
  color: #aaa;
}

.fields-group-title {
    font-size: 1.4em;
    padding: 40px 40px 0;
}

.form-login {
    margin: auto;
    max-width: 440px;
}

select.from, select.to {
    display: inline;
    height: 26px;
    padding-bottom: 0;
    padding-top: 0;
    width: auto;
}

.input-group {
	text-shadow: none;
}

.rangelabel {
    margin-right: 10px;
}

.form-range-balance {
    display: table;
    margin: auto;
}

.captcha-wrap {
    width: 56.5%;
}

div.form-control {
    height: auto;
}

p.form-control {
    cursor: inherit !important;
    height: auto;
	padding: 15px 20px 20px;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}

.message-list > a {
    background-color: #aaa;
    border-radius: 5px;
    clear: both;
    color: #333 !important;
    display: table;
    padding: 5px 20px;
    width: 100%;
	position: relative;
	text-shadow: none;
}

.message-list > a.unread {
    color: #ff0018 !important;
    padding-left: 40px;
}

.message-list > a.unread::before {
    background-color: #ff0018;
    border-radius: 5px;
    content: "";
    height: 10px;
    left: 20px;
    position: absolute;
    top: 12px;
    width: 10px;
}

.message-list > a + a {
    margin-top: 5px;
}

.message-list > a > div {
    float: left;
	height: 25px;
}

.message-list .msg-from {
    width: 25%;
	padding-right: 15px;
}

.message-list .msg-subject {
    width: 50%;
	padding-right: 15px;
}

.message-list .msg-time {
    font-size: 16px;
    width: 20%;
}

.message-list .msg-trash {
    color: #c45252;
	font-size: 16px;
	line-height: 1.4em;
    text-align: right;
    width: 5%;
	opacity: 0.7;
}

.message-list .msg-trash:hover {
	color: #c42525;
	opacity: 1;
}

.bg-gradation-darkblue {
	background-color: rgba(255, 255, 255, 0.65) !important;
	/*border: 1px solid rgba(0, 0, 0, 0.45);*/
	-webkit-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
	   -moz-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
		 -o-box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);   
			box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.45), 2px 2px 3px rgba(0, 0, 0, 0.45);
}

.bg-gradation-darkblue:hover {
	background: rgba(255, 255, 255, 0.85) !important;	
}

.new-message a::after {
    color: #ff0000;
    content: "*";
    font-size: 1.6em;
    position: absolute;
    margin-left: 2px;
    margin-top: -4px;
}

li.new-message::after {
    color: #ff0000;
    content: "*";
    font-size: 1.6em;
    position: absolute;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
    margin-left: 9px;
    margin-top: 3px;
    top: 0;
    left: 0;
}

.mgs-pagination {
    display: table;
    width: 100%;
}

.mgs-pagination .record-summary {
    float: left;
    font-size: 0.9em;
}

.mgs-pagination .record-pagination {
    float: right;
    margin-top: 0;
}

.msg-navigation ul {
    margin-top: 0;
	text-shadow: none;
}

.msg-navigation {
    float: right;
    margin-top: 0;
}

.rasterized {
    background-color: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0px 0px 16px #000;
	   -moz-box-shadow: inset 0px 0px 16px #000;
		 -o-box-shadow: inset 0px 0px 16px #000;
			box-shadow: inset 0px 0px 16px #000;	
    padding: 8px 15px;
    overflow-wrap: break-word;
}

.register-bank {
    background-color: #fff;
}

/*
=============================================
		PAGINATION
=============================================
*/

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.pagination > li > a, .pagination > li > span {
    color: #ff0018;
    background-color: transparent;
    border: 1px solid #ff0018;
    margin-right: 5px;
	border-radius: 5px;
	text-shadow: none;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #ff0018;
    border-color: #ff0018;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    z-index: 2;
    color: #fff;
    background-color: #ff0018;
    border-color: #ff0018;
}

/*
=============================================
		DATE PICKER
=============================================
*/

.datepicker.dropdown-menu {
	background-color: #fff;
}

.datepicker table tr td, .datepicker table tr th {
    color: #333 !important;
}

.datepicker thead tr:first-child th:hover, .datepicker tfoot tr th:hover {
    background: #F74040 !important;
	color: #fff !important;
}

.datepicker table tr td.today:hover, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today:focus, .datepicker table tr td.today:hover:focus, .datepicker table tr td.today.disabled:focus, .datepicker table tr td.today.disabled:hover:focus, .datepicker table tr td.today:active, .datepicker table tr td.today:hover:active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.active, .datepicker table tr td.today.active:hover, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled.active:hover, .open .dropdown-toggle.datepicker table tr td.today, .open .dropdown-toggle.datepicker table tr td.today:hover, .open .dropdown-toggle.datepicker table tr td.today.disabled, .open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    color: #fff !important;
    background-color: #F74040 !important;
    border-color: #f59e00 !important;
}

.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    color: #fff !important;
    background-color: #ff3f34 !important;
    border-color: #ff3f34 !important;
}

.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:focus, .datepicker table tr td.active:hover:focus, .datepicker table tr td.active.disabled:focus, .datepicker table tr td.active.disabled:hover:focus, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.active:hover, .open .dropdown-toggle.datepicker table tr td.active, .open .dropdown-toggle.datepicker table tr td.active:hover, .open .dropdown-toggle.datepicker table tr td.active.disabled, .open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    color: #fff !important;
    background-color: #F74040 !important;
    border-color: #f59e00 !important;
}

/*
=======================================================
		TABLE
=======================================================
*/

.record-table .td {
    width: 16.65%;
}

.record-table-4 .td {
    width: 25%;
}

.record-table-7 .td {
    width: 14.25%;
}

.table-instruction {
	display: none;
	line-height: 1.4em;
    margin-bottom: 10px;
}

.tiny-font {
    font-size: 0.7em;
}

.page-play .small-font,
.mini-font {
    font-size: 0.8em;
}

.record-table, .record-table-4 {
	overflow-x: hidden;
	/*overflow-y: scroll;*/
}

.the-table {
    border: 1px solid #333;
	/*width: 560px;*/
	text-shadow: none;
}

/*
.the-table > div.tr + div.tr {
    border-top: 1px solid #aaa;
}
*/

.the-table > div.tr + div.tr > div.td {
    border-top: 1px solid #333;
}

#deposit-history.record-table,
#withdraw-history.record-table,
#referral-history.record-table {
    border: 1px solid #333;
	/*height: 140px;*/
}

#deposit-history.record-table-4,
#withdraw-history.record-table-4,
#referral-history.record-table-4 {
    border: 1px solid #333;
	/*height: 140px;*/
}

#deposit-history .the-table,
#withdraw-history .the-table,
#referral-history .the-table {
    width: auto;
	min-width: 544px;
	border: none;
}

#deposit-history .the-table .td,
#withdraw-history .the-table .td,
#referral-history .the-table .td {
    display: inline-block;
    /*width: 24% !important;*/
}

#deposit-history .the-table > div.tr + div.tr > div.td,
#withdraw-history .the-table > div.tr + div.tr > div.td,
#referral-history .the-table > div.tr + div.tr > div.td {
    border-top: none;
}

#deposit-history .the-table > div.tr + div.tr,
#withdraw-history .the-table > div.tr + div.tr,
#referral-history .the-table > div.tr + div.tr {
    border-top: 1px solid #333;
}

.nodata-in-table {
    font-size: 0.8em;
    font-style: italic;
    margin-top: 58px;
    padding: 0 15px;
    text-align: center;
}

.inline-block {
	display: inline-block;
}

.record-pagination {
    margin-top: 15px;
}

.record-pagination > div {
    display: inline-block;
}

.record-pagination > div a {
    background-color: #c4ad00;
    color: #fff;
    padding: 5px 12px;
	font-size: 0.8em;
}

.tr {
	clear: both;
	display: table;
    width: 100%;
}

.td {
    display: table-cell;
    padding: 10px;
	line-height: 1.2em;
	text-align: center;
	word-wrap: break-word;
	float: left;
}

.page-balance .td {
	width: 14.25%;
}

.page-balance-detail .td {
	width: 16.65%;
}

.page-deposit-fund .td,
.page-referral-2 .td,
.page-withdraw-money .td {
	width: 25%;
}

.td.text-right {
	text-align: right;
}

.td.text-left {
	text-align: left;
}

.th {
    text-align: center;
}

.the-table.small-font .td {
    font-size: 0.7em;
}

.td.expand {
    display: none;
}

.the-table .expand-for-mobile {
    display: none;
}

.the-table div.tr > div:nth-child(1) {
    /*width: 100px !important;*/
}

.narrow-side-gap {
    padding-left: 10px;
    padding-right: 10px;
}

.narrow-side-gap-2 {
    padding-left: 5px;
    padding-right: 5px;
}

/*
=============================================================
		Account Menu
=============================================================
*/

.account-menu {
	margin-top: 10px;
    margin-bottom: 10px;
}

.white-color, .account-menu > div a {
    color: #fff;
	text-decoration: none;
}

/*
.top-light {
    -webkit-box-shadow: inset 0px 18px 22px -19px rgba(255,255,255,0.75);
	   -moz-box-shadow: inset 0px 18px 22px -19px rgba(255,255,255,0.75);
			box-shadow: inset 0px 18px 22px -19px rgba(255,255,255,0.75);
}
*/

.account-menu .balance {
    text-align: right;
    width: 37%;
    border-radius: 10px 0 0 10px;
}

.account-menu > div {
    box-sizing: border-box;
    display: inline-block;
    font-size: 0.9em;
    margin-right: -5px;
    text-align: center;
    background-color: #07090c;
}

.account-menu .balance a {
    border-radius: 10px 0 0 10px;
    background-image: url(images/icon/balance-icon-cemelive.com.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 44px auto;
    padding-left: 45px;
}

.account-menu > div a:hover,
.account-menu > div.active a {
	background-color: rgba(255,255,255,0.1);
}

.account-menu > div a {
    padding: 12px;
    display: block;
}

.account-menu .balance a > span:first-child {
    color: #FFE400;
}

.account-menu.message-menu .balance a {
	background-image: url(images/icon/message-inbox-cemelive.com.png);
}

.account-menu .myaccount {
    width: 37%;
}

.account-menu.message-menu .myaccount {
    width: 26%;
}

.account-menu .logout {
    text-align: left;
    width: 26%;
	border-radius: 0 10px 10px 0;
}

.account-menu.message-menu .logout {
	width: 37%;
}

.account-menu .logout a {
	border-radius: 0 10px 10px 0;
	background-image: url(images/icon/logout-icon-cemelive.com.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 44px auto;
	padding-right: 45px;
}

.account-menu.message-menu .logout a {
	background-image: url(images/icon/message-compose-cemelive.com.png);
}

/*
==========================================================
	SIDEBAR MENU
==========================================================
*/
.sidebar-menu a {
	
}

.sidebar-menu a {
    color: #fff;
    display: block;
    font-size: 1em;
    padding: 12px 30px;
	border-bottom: 1px solid #fff;
	text-align: left;
}

.sidebar-menu a, .sidebar-menu a:hover, .sidebar-menu a:visited, .sidebar-menu a:link {
    text-decoration: none;
}

.sidebar-menu a:hover {
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(176,57,5,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#b03905',GradientType=1 );

	color: #fff;
}

.sidebar-menu .menu-item.active a {
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(176,57,5,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#b03905',GradientType=1 );

	color: #fff;
}

.menu-item .fa {
    padding-right: 12px;
}

.main-sidebar-login .title-main-sidebar {
	background-color: #050505;
	padding: 40px 0px 20px 5px;
}

/*
.sidebar-last-item{
	background-image: url(images/bg/bg-black-overlay.png);
	min-height: 200px;
	background-position: bottom right;
	background-repeat: repeat-x;	
}
*/

/*
==========================================================
	GAME RULES
==========================================================
*/
.rules-border-main {
	/**border: 4px solid #fff;*/
	margin-bottom: 30px;	
}

.rules-about {
	background: rgb(46,50,61); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(46,50,61,1) 0%, rgba(15,17,20,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(46,50,61,1) 0%,rgba(15,17,20,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(46,50,61,1) 0%,rgba(15,17,20,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e323d', endColorstr='#0f1114',GradientType=0 ); /* IE6-9 */
    min-height: 115px;
	padding: 20px 10px;
}

.rules-about p {
    /*color: rgb(5,5,5);*/
	color: #fff;
    text-align: center;
	margin: 0;
}

.btn-wrap-rules {
	width: 100%;
}

.img-rules:hover {
	opacity: 0.75;		
}

.single-main-title {
	background-color: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0px 0px 16px #000;
	   -moz-box-shadow: inset 0px 0px 16px #000;
		 -o-box-shadow: inset 0px 0px 16px #000;
			box-shadow: inset 0px 0px 16px #000;
	text-align: center;
	padding: 10px 10px 1px;			
}

.single-main-title h2 {
	color: #fff;	
    text-shadow: 2px 2px 4px #000;
}

img.auto {
    width: auto;
}

.tiny-img {
    position: relative;
    top: -5px;
}

.post-image {
    margin-top: 15px;
}

.img-desc {
    margin-top: 15px;
    line-height: 1.2em;
}

/*
==========================================================
	FOOTER
==========================================================
*/

footer {
	position: relative;
	background-color: #0f0f0f;
	padding: 10px 0 5px;
	border-bottom: 1px solid #0f0f0f;
}

.tail-footer {
	opacity: 0.5;
	padding: 0;
}

.about-footer img {
	float: left;	
	width: 90px;
	padding-left: 5px;
	padding-right: 5px;
}

.about-footer img.logo-footer {
	height: 18px;
	width: auto;
	margin-top: 2px;
}

.social-footer ul {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-footer ul > li {
	float: left;
	position: relative;
	display: block;
	width: 23px;
	height: 23px;
	text-align: center;
	line-height: 23px;
	margin-left: 5px;
	margin-right: 5px;	
	border-radius: 3px;
}

.social-footer ul > li a {
	color: #fff;
}

.social-footer ul > li:hover {
	opacity: 0.75;
}

.fa.fa-bbm {
	background-image: url(images/social/fa-bbm.png);
	width: 100%;
	height: 100%;
	background-size: 77%;
	background-repeat: no-repeat;
	background-position: center center;
}

.fa.fa-line {
	background-image: url(images/social/fa-line.png);
	width: 100%;
	height: 100%;
	background-size: 77%;
	background-repeat: no-repeat;
	background-position: center center;
}

.social-footer ul > li.twitter {
	background-color: #6acff4;
}

.social-footer ul > li.instagram {
	background-color: #dd2a7b;
}

.social-footer ul > li.facebook {
	background-color: #3a5898;
}

.social-footer ul > li.whatsapp {
	background-color: #29AD00;
}

.social-footer ul > li.bbm {
	background-color: #0159B3;
}

.social-footer ul > li.line {
	background-color: #00B300;
}

.social-footer ul > li.wechat {
	background-color: #00A818;
}

/*
====================================================
		PLAY PAGE
====================================================
*/

body.page-play {
    background-image: url(images/play/play-background-cemelive.com.jpg);
    background-repeat: repeat;
	background-size: auto;
	padding-top: 40px;
	padding-bottom: 40px;	
}

.narrow-side-gap {
    padding-left: 10px;
    padding-right: 10px;
}

.play-text {
	font-family: "PlayBold";
    background-color: #010101;
    font-size: 2em;
    font-style: italic;
    padding: 10px 15px;
    background: rgba(48,48,48,1);
    background: -moz-linear-gradient(top, rgba(48,48,48,1) 0%, rgba(1,1,1,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(48,48,48,1)), color-stop(100%, rgba(1,1,1,1)));
    background: -webkit-linear-gradient(top, rgba(48,48,48,1) 0%, rgba(1,1,1,1) 100%);
    background: -o-linear-gradient(top, rgba(48,48,48,1) 0%, rgba(1,1,1,1) 100%);
    background: -ms-linear-gradient(top, rgba(48,48,48,1) 0%, rgba(1,1,1,1) 100%);
    background: linear-gradient(to bottom, rgba(48,48,48,1) 0%, rgba(1,1,1,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#303030', endColorstr='#010101', GradientType=0 );
}

.silver-color {
    color: #b7b7b7;
}

.text-splitted-soft {
    letter-spacing: 1px;
}

.live-stream, .refer-friend {
    -webkit-box-shadow: inset 55px 6px 29px -58px rgba(255,255,255,1);
	   -moz-box-shadow: inset 55px 6px 29px -58px rgba(255,255,255,1);
		 -o-box-shadow: inset 55px 6px 29px -58px rgba(255,255,255,1);
			box-shadow: inset 55px 6px 29px -58px rgba(255,255,255,1);
}

.live-stream {
    background-color: #000000;
    padding: 20px;
}

.ls-image img {
    width: 100%;
}

.ls-title > img {
    margin-right: 15px;
    width: 40px;
    margin-bottom: 10px;
}
.inline-block {
    display: inline-block;
}

.ls-title h2 {
    margin: 0;
    font-size: 1.6em;
}

.ls-image {
    position: relative;
    margin-bottom: 20px;
}

.ls-image::before {
    border: 4px solid rgba(0, 0, 0, 0.9);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ls-image::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-box-shadow: inset 3px 3px 7px 0px rgba(255,255,255,0.6);
	   -moz-box-shadow: inset 3px 3px 7px 0px rgba(255,255,255,0.6);
		 -o-box-shadow: inset 3px 3px 7px 0px rgba(255,255,255,0.6);
			box-shadow: inset 3px 3px 7px 0px rgba(255,255,255,0.6);
}

.ls_buttons {
    display: table;
    width: 100%;
}

.ls_buttons > div {
    float: left;
}

.pwr-button {
    margin-right: 8%;
    width: 13%;
}

.rfh-button {
    width: 73%;
}

.rfh-button a {
    background-color: #767676;
    border-radius: 30px 35px 35px 30px;
    color: #000;
    display: block;
    font-size: 2em;
	line-height: 0;
    -webkit-box-shadow: inset 20px 6px 54px 0px rgba(255,255,255,1);
	   -moz-box-shadow: inset 20px 6px 54px 0px rgba(255,255,255,1);
		 -o-box-shadow: inset 20px 6px 54px 0px rgba(255,255,255,1);
			box-shadow: inset 20px 6px 54px 0px rgba(255,255,255,1);
}

.rfh-button img {
    display: inline-block;
    width: 18%;
    border-radius: 20%;
    -webkit-box-shadow: 6px 0px 7px 0px rgba(61,61,61,1);
	   -moz-box-shadow: 6px 0px 7px 0px rgba(61,61,61,1);
		 -o-box-shadow: 6px 0px 7px 0px rgba(61,61,61,1);
			box-shadow: 6px 0px 7px 0px rgba(61,61,61,1);
}

.refresh-stream-btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    width: 75%;
}

.play-footer-wrap {
    margin-left: -5px;
    margin-right: -5px;
}

.refer-friend {
    background-color: #151515;
    display: block;
    margin-top: 20px;
}

.play-footer {
    background-image: url(images/play/play-page-footer-cemelive.com.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 220px;
    height: 70px;
    background-position: center;
}

.narrow-side-gap {
    padding-left: 10px;
    padding-right: 10px;
}

.play-area {
    position: relative;
	height: 426px;	
}

.play-progressbar-wrap {
    bottom:5%;
    position: absolute;
    width: 100%;
}

#play-progressbar {
    background-color: #c58585;
    border: none;
    height: 0.6em;
	position: relative;
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);
	   -moz-box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);
		 -o-box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);	   
			box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);
}

#play-progressbar::after {
    background-color: #ffbcbc;
    border-radius: 1px;
    content: "";
    height: 2px;
    left: 1%;
    position: absolute;
    top: 2px;
    width: 98%;
	/*
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);
	   -moz-box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);
			box-shadow: inset 0px 0px 4px 0px rgba(152,5,5,1);
	*/
}

.the-progressbar {
    margin: auto;
    width: 61%;
	border-radius: 5px;
	
}

#play-progressbar .ui-progressbar-value {
    background-color: #980505;
    border: none;
    height: 0.7em;
	-webkit-box-shadow: inset 0px 0px 4px 0px rgba(112,0,0,1);
	   -moz-box-shadow: inset 0px 0px 4px 0px rgba(112,0,0,1);
		 -o-box-shadow: inset 0px 0px 4px 0px rgba(112,0,0,1);	   
			box-shadow: inset 0px 0px 4px 0px rgba(112,0,0,1);
}

.progressbar-text {
    margin-top: 3px;
}

.page-articles .section-article {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}
.page-articles .section-article,
.page-articles .title-article a,
.page-article .content-article,
.page-article .title-article a {
    color: #fff !important;
}

.page-numbers-wrap {
    text-align: center;
    width: 100% !important;
}
.page-numbers-wrap .main-content-article {
    padding-top: 1em;
    padding-bottom: 1em;
}

.homepage .article-block {
	margin-bottom: 0;
}

.promo-banner-wrap {
	margin-bottom: 15px;
	margin-top: -5px;
	padding: 0;
	background-image: none;
	box-shadow: none;
	display: table;
	width: 100%;
}

.promo-banner-wrap > div > div img {
    border-radius: 0.5em;
	-webkit-box-shadow: 0 0 13px #ff13f7;
	   -moz-box-shadow: 0 0 13px #ff13f7;
		-ms-box-shadow: 0 0 13px #ff13f7;
		 -o-box-shadow: 0 0 13px #ff13f7;
			box-shadow: 0 0 13px #ff13f7;	
}

.promo-banner-wrap > div > div:first-child {
    padding-right: 15px;
    margin-bottom: 10px;
}

.promo-banner-part img {
	-webkit-box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.75);
	   -moz-box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.75);
		-ms-box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.75);
		 -o-box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.75);
			box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.75);
}

.content-store-home {
	margin-bottom: 20px;
}	
.play-store-home .text {
    text-align: center;
    font-size: 200%;
    line-height: 100%;
}

.page-articles .article-block::before {
    height: 0 !important;
}

.page-articles .article-block, 
.page-articles .article-block a,
.page-article .single-block-content, 
.page-article .single-block-content a {
    color: #222;
}

.page-articles .article-block {
	margin-top: -20px;
}

.page-article .single-block-content {
	margin-top: -20px;
}

.page-numbers-wrap .room-main-content-article {
    padding-top: 15px;
    padding-bottom: 15px;
}

.homepage .main-article-block > div:nth-child(2n-1) {
    clear: both;
}


@media (max-width: 600px){
	.section-article.page-numbers-wrap .main-content-article {
		padding-bottom: 20px !important;
	}
	.page-numbers-wrap .room-main-content-article {
		padding-top: 0;
		padding-bottom: 0;
	}
	
	.page-numbers-wrap .room-main-content-article .main-content-article {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}
}
@media (max-width: 480px){
	.section-article.page-numbers-wrap {
		margin-top: 0px;
		margin-bottom: 10px;
	}
}

table .pokercard {
    width: 1.5em !important;
}
@media (max-width: 640px) {
	table .pokercard {
		width: 1.2em !important;
	}
}

/*
=========================================================
	RESPONSIVE
=========================================================
*/
@media (min-width: 992px){
	.small-container .container {
		width: 970px;
	}
}

@media (max-width: 1280px){

}

@media (max-width: 1200px){	
	.img-490 {
		width: 425px;
	}	
	
	.img-300 {
		width: 255px;
	}
	
	/*-- BUTTON --*/
	.btn-larger {
		font-size: 18px;
	}
	
	/*-- LOGIN PAGE --*/
	.main-sidebar-login {
		padding: 0;
	}	
	
	.account-menu .balance, .account-menu .myaccount, .account-menu .logout {
		text-align: center;
	}
	
	.form-control, .form-horizontal .control-label {	
		font-size: 14px;
	}
	
	.rules-about {
		min-height: 140px;
	}
	
	/*-- PLAY PAGE --*/
	.page-play .container {
		width: 991px;
	}
	
	.play-area {
		height: 360px;
	}
	
	.ls-title > img {
		width: 30px;
	}
	
	.ls-title h2 {
		font-size: 1.4em;
	}
	
	.rfh-button a {
		font-size: 1.6em;
	}
	
	.play-text {
		padding: 14px 15px;
		font-size: 1.4em;
	}	
	
	.panduan {
		font-size: 9px;
	}	
}

@media (max-width: 1199px){	
	.navbar {
		min-height: auto;
	}
	
	.navbar-brand > img {
		width: 140px;
	}
	
	.login .navbar-brand {
		height: 50px;
		padding: 11px 15px 10px;
	}
	
	.login .navbar-brand > img {

	}	

	.navbar-nav > li > a {
		padding: 15px 8px;		
	}

	.navbar-inverse .navbar-nav > .active > a, 
	.navbar-inverse .navbar-nav > .active > a:hover {
		padding: 15px 8px;
	}
	
	/*--- HOME BLOCK ---*/
	
	.bank-block {

	}
	
	/*--- SINGLE BLOCK ---*/	
	.single-block-content img.img-download {
		width: 300px;
	}	
	
	.about-footer img.logo-footer {
		height: 18px;
		margin-top: 2px;
	}		
}

@media (max-width: 991px){
	.room-main-menu {
		margin-left: -30px;
		margin-right: -30px;
	}	
	
	.menu-home > li {
		padding: 0 30px;
	}	
	
	.separator-menu-home::before {
		left: 30px;
		right: 30px;
	}	
	
	.menu-home > li + li::before {
		height: 40%;
	}	
	
	.navbar-nav {
		float: right;
	}	
	
	.navbar-brand > img {
		margin-left: -15px;
	}
	
	.main-logo-home .navbar-brand > img {
		margin-left: 0;
	}

	.login .navbar-brand > img {
		width: 135px;
		margin-top: 0;
	}	
	
	.navbar-inverse .navbar-nav > li > a {
		font-size: 13px;
	}
	
	.navbar-nav > li > a {
		padding: 15px 7px;
	}	
	
	.navbar-inverse .navbar-nav > .active > a, 
	.navbar-inverse .navbar-nav > .active > a:hover {
		padding: 15px 7px;
	}	
	
	.dropdown-menu > li > a {
		font-size: 12px;
	}	
	
	/*-- BUTTON --*/
	.btn-mid {
		font-size: 14px;
	}
	
	/*-- HOME BLOCK --*/
	.store-home-block .item {
		height: 230px;
	}
	
	.store-home-block .item.android, 
	.store-home-block .item.browser {
		height: 110px;
	}
	
	.store-home-block .item .icon img {
		height: 130px;
	}
	
	.store-home-block .item.apple .icon, 
	.store-home-block .item.apple .content {
		width: 50%;
	}
	
	.store-home-block .item.apple .icon img {
		height: 250px;
		margin-left: -30px;
	}	
	
	.store-home-block .content .room > div {
		float: left;
		width: 100%;
		text-align: right;
	}	
	
	.store-home-block .content .head {
		font-size: 24px;
		line-height: 18px;
	}	
	
	.store-home-block .content .action {
		margin-top: 10px;
		margin-left: 0;
	}	
	
	.store-home-block .content .action .btn {
		position: relative;
	}
	
	.title-article {

	}	

	.title-article h1 {
		font-size: 28px;
	}
	
	.about-home-block {

	}	

	/*-- SINGLE BLOCK --*/
	.single-block-content {
		padding: 30px;
	}	
	
	.header-title {
		padding: 5px 15px 12px;
	}	
	
	.header-title h1	{
		font-size: 37px;
	}	
	
	.single-block-content img.img-download {
		width: 300px;
	}	
	
	.single-block-content h3 {
		font-size: 20px;
	}	
	
	/*-- LOGIN BLOCK --*/
	.main-sidebar, 
	.main-sidebar-login {
		background-size: cover;
		margin-top: 20px;
	}

	.main-sidebar-login {
		padding: 0;
	}	
	
	.form-horizontal .control-label {
		text-align: left;
	}	
	
	.sidebar-menu > div:first-child a {
		border-radius: 0;
	}		
	
	/*-- PLAY PAGE --*/
	.page-play .container {
		width: 767px;
	}
	
	.page-play .content {
		margin-bottom: 15px;
		margin-top: 0;
	}
	
	.play-text {
		padding: 10px 15px;
	}
	
	.play-area {
		height: 414px;
	}
	
	.narrow-side-gap {
		margin-top: 20px;
	}

	.pwr-button {
		margin-right: 20px;
		margin-left: 34%;
		width: 50px;
	}
	
	.rf-text br {
		display: none;
	}
	
	.rfh-button img {
		width: 50px;
	}
	
	.rfh-button {
		width: 200px;
	}
	
	.page-play .narrow-side-gap {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.live-stream, .refer-friend {
		box-shadow: 38px 60px 29px -58px rgba(255, 255, 255, 1) inset;
	}
	
	.refresh-stream-btn {
		width: 66%;
	}	
	
	.play-footer {
		background-image: url(images/play/play-page-footer-big-cemelive.com.jpg);
	}
	
	.play-now h1, .download-now h1 {
		font-size: 42px;
	}
	
	.panduan {
		font-size: 12px;
	}	
	
	.about-footer img.logo-footer {
		height: 18px;
		margin-top: 3px;
	}	
}

@media (max-width: 800px){

}

@media (max-width: 767px){
	.menu-block {
		z-index: 1030 !important;
	}
	
	.navbar-collapse > div {
		padding-left: 15px;
		padding-right: 15px;
	}	
	
	.mobile-view, 
	.navbar-brand-mobile, 
	.login .navbar-brand-mobile {
		display: block;
	}
	
	.dekstop-view, 
	.navbar-brand-dekstop {
		display: none;
	}	
	
	/*--- MAIN HEADER ---*/	
	.room-main-menu {
		margin-left: -25px;
		margin-right: -25px;
	}	
	
	.menu-home > li {
		padding: 0 25px;
	}	
	
	.separator-menu-home::before {
		left: 25px;
		right: 25px;
	}	
	
	.menu-home > li + li::before {
		height: 35%;
	}	
	
	.sticky-wrapper.is-sticky .main-menu-home .menu-home > li + li::before {
		height: 30%;
	}
	
	.menu-home > li > a {

	}	
	
	.menu-home > li > a .icon {
		padding: 15px;
	}
	
	.menu-home > li > a .icon img {
		height: 30px;
	}	

	.sticky-wrapper.is-sticky .main-menu-home .menu-home > li > a .icon {
		padding: 5px;
	}	
	
	.sticky-wrapper.is-sticky .main-menu-home .menu-home > li > a .icon img {
		height: 20px;
	}	
	
	.navbar-nav {
		float: unset;
	}

	.navbar-nav {
		margin: 0;
	}
	
	.navbar-toggle {
		margin-top: 11px;
		margin-bottom: 10px;		
	}
	
	.navbar-collapse {
		padding-right: 0;
		padding-left: 0;
	}
	
	.navbar-inverse .navbar-toggle {
		border-color: #fff;
	}	
	
	.navbar-inverse .navbar-toggle:focus, 
	.navbar-inverse .navbar-toggle:hover {
		background-color: #b03905;	
	}
	
	.navbar-inverse .navbar-toggle:focus .icon-bar, 
	.navbar-inverse .navbar-toggle:hover .icon-bar {
		background-color: #fff;
	}		
	
	.login .navbar-brand > img {
		margin-left: 0;
		margin-top: 4px;
	}

	.navbar-inverse .navbar-collapse, 
	.navbar-inverse .navbar-form {
		border-color: #fff;
	}	
	
	.navbar-inverse .navbar-nav > li > a {
		font-size: 16px;
	}	
	
	.nav > li {
		border-bottom: 1px solid #fff;
	}
	
	.navbar-nav > li > a {
		padding: 12px 15px;
	}
	
	.navbar-nav > li.login-menu {
		float: unset;
	}

	.navbar-inverse .navbar-nav > .active > a, 
	.navbar-inverse .navbar-nav > .active > a:hover/*, 
	.navbar-inverse .navbar-nav > .active > a:focus, 
	.navbar-inverse .navbar-nav > .active > a :active*/ {
		background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(176,57,5,1) 100%) !important;
		background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%) !important;
		background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%) !important;
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#b03905',GradientType=1 ) !important;
		height: auto;
		margin-top: 0;
		padding: 12px 15px;
	}

	.navbar-inverse .navbar-nav > li > a:hover {
		background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(176,57,5,1) 100%) !important;
		background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%) !important;
		background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(176,57,5,1) 100%) !important;
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#b03905',GradientType=1 ) !important;
		height: auto;
		padding: 12px 15px;
	}
	
	.dropdown-menu {
		margin-top: 0 !important;
		padding-top: 0;
		padding-bottom: 0;
	}
	
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
		color: #fff;
		border-top: 1px solid #fff;
		font-size: 16px;
		padding: 12px 25px;
	}	
	
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, 
	.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
		color: #ffa200;
	}
	
	.navbar .navbar-nav .open .dropdown-menu > .active > a, 
	.navbar .navbar-nav .open .dropdown-menu > .active > a:focus, 
	.navbar .navbar-nav .open .dropdown-menu > .active > a:hover {
		background-color: transparent;
		background-image: none;
		color: #ffa200;	
	}

	.navbar {
		left: 0;
		-webkit-transform: translateX(0);
				transform: translateX(0);
	}	
	
	.login-menu {
		display: none !important;
	}
	
	.login-mobile {
		float: right;
		padding-top: 4px;
	}
	
	.login-mobile > div {
		float: left;
	}
	
	.login-mobile > div > a {
		font-family: "PlayBold";
		text-decoration: none;
		text-transform: uppercase;
		text-align: center;
		font-size: 12px;
		letter-spacing: 0;
		padding: 10px 12px;
		margin: 0 5px;
		border-radius: 5px;
	}

	.login-mobile > div.register > a {	
		color: #fff !important;
		background: #F87500;
		background-image: -webkit-linear-gradient(top, #F87500, #B24A00);
		background-image: -moz-linear-gradient(top, #F87500, #B24A00);
		background-image: -ms-linear-gradient(top, #F87500, #B24A00);
		background-image: -o-linear-gradient(top, #F87500, #B24A00);
		background-image: linear-gradient(to bottom, #F87500, #B24A00);	
	}

	.login-mobile > div.login > a {	
		color: #000 !important;
		background: #ffdd30;
		background-image: -webkit-linear-gradient(top, #ffdd30, #ffa611);
		background-image: -moz-linear-gradient(top, #ffdd30, #ffa611);
		background-image: -ms-linear-gradient(top, #ffdd30, #ffa611);
		background-image: -o-linear-gradient(top, #ffdd30, #ffa611);
		background-image: linear-gradient(to bottom, #ffdd30, #ffa611);	
	}

	.login-mobile > div.register > a:hover {
		background: #F87500;
	}

	.login-mobile > div.login > a:hover {
		background: #ffa200;
	}	
	
	.modal-login {
		background-color: rgba(0, 0, 0, 0.85);
		min-width: 350px;
		padding: 15px;
	}
	
	.body-modal-login .reset-forgot {
		font-size: 12px;
	}	

	.body-modal-login .head-title {
		position: relative;
		text-transform: uppercase;
		text-align: center;
		padding: 10px 0;
	}	
	
	.body-modal-login .head-title::before, 
	.body-modal-login .head-title::after {
		background-color: #fff;
		content: "";
		width: 40%;
		height: 1px;
		position: absolute;
		top: 50%;
	}

	.body-modal-login .head-title::before {
		left: 0;		
	}
	
	.body-modal-login .head-title::after {
		right: 0;
	}
	
	/*-- BUTTON --*/
	.btn-mid {
		font-size: 21px;
	}
	
	/*-- HOME BLOCK --*/
	.home.small-container .container {
		width: 601px;
	}
	
	.about-home-block .content-about {
		display: none;
	}
	
	.head-block .title {
		font-size: 16px;
		line-height: 25px;
		padding-left: 10px;
	}	
	
	.head-block .logo-home img, 
	.head-block .icon img {
		height: 25px;
	}

	#main_home_slider.sa_owl_theme .owl-nav .owl-prev, 
	#main_home_slider.sa_owl_theme .owl-nav .owl-next {
		height: 60px !important;
	}
	
	.store-home-block .item.apple .icon, 
	.store-home-block .item.apple .content {
		width: 100%;
	}	
	
	.store-home-block .item.apple .content {
		position: absolute;
	}
	
	.store-home-block .item .icon img {
		height: 120px;
		margin-top: -5px;
		margin-left: -5px;
	}	
	
	.game-home-block {
		margin: 10px 0 20px;
	}
	
	.game-home-block .head-game img {
		width: 185px;
	}	
	
	.game-home-block .free {
		font-size: 30px;
		line-height: 20px;
	}

	.game-home-block .reg {
		font-size: 20px;
	}	
	
	.game-home-block .body-game .text {
		font-size: 58px;
		line-height: 45px;
	}	
	
	.game-home-block .body-game .action .btn {
		font-size: 22px;
	}	
	
	.game-home-block .icon-game-home {
		right: -15px;
	}	
	
	.game-home-block .icon-game-home img {
		width: 265px;
	}

	.article-block {

	}	
	
	.room-main-content-article {
		padding: 20px 20px 30px;	
	}
	
	.date-article {
		margin: 10px 0 0;
	}	
	
	/*-- BANK BLOCK --*/	
	.room-bank-block {
		margin-left: -5px;
		margin-right: -5px;
	}	
	
	.room-bank-block > div {
		padding-left: 5px;
		padding-right: 5px;
	}
	
	.about-home-block {
		padding: 0;
		margin-bottom: 20px;
	}		
	
	/*-- SINGLE BLOCK--*/
	.margin-bottom-xs-20 {
		margin-bottom: 20px;
	}
	
	.bottom-logo img {
		width: 240px;
	}	
	
	/*-- LOGIN PAGE --*/

	.captcha-outer {
		text-align: left;
	}

	.bg-marquee {
		padding: 9px;
		font-size: 15px;
	}
	
	.main-sidebar {
		min-height: 700px;
	}	
	
	.main-sidebar-login{
		display: none;
	}
	
	.show-when-mobile {
		display: block !important;
	}

	.new-message a::after {
		display: none;
	}
	
	.rules-about {
		min-height: 115px;
	}
	
	.login-menu-block {
		display: block;
	}

	.marquee-login {
		margin-bottom: 10px !important;
	}

	.single-block-content {
		padding: 20px;
	}	
	
	/*-- PLAY PAGE --*/
	.page-play .container {
		width: 600px;
	}
	
	.play-area {
		height: 318px;
	}
	
	.play-progressbar-wrap {
		bottom: 1%;
	}
	
	.pwr-button {
		margin-left: 0;
	}
	
	.ls_buttons {
		width: auto;
		margin: auto;
	}
	
	.rf-text br {
		display: block;
	}
	
	.rf-text {
		background-size: 32% auto;
	}
	
	.play-text {
		font-size: 1.1em;
	}

	.social-button-home {
		width: 40px;
	}	
	
	.social-button-home ul > li:hover .social-about {
		height: 20px;
		margin: 2px 0;
		text-indent: 20px;
		margin-left: 20px;
		width: 125px;
		margin-top: -23px;
		font-size: 12px;
	}
	
	/** FOOTER **/
	
	footer {
		position: relative;
	}
	
	.logo-footer {
		display: none;
	}		
}

@media (max-width: 700px){
	
}

@media (max-width: 640px){
	
	.table-instruction {
		display: block;
	}
	
	.the-table {
		width: 560px;		
	}
	
	.record-table, .record-table-4 {	
		border-right: 1px solid #aaa;
		border-left: 1px solid #aaa;	
	}
	
	.record-table, .record-table-4 {
		margin-top: 0;
		overflow-x: scroll;
	}	
}

@media (max-width: 600px){
	.main-header {
		min-width: 355px;
	}
	
	.room-main-menu {
		margin-left: -20px;
		margin-right: -20px;
	}	
	
	.menu-home > li {
		padding: 0 20px;
	}	
	
	.separator-menu-home::before {
		left: 20px;
		right: 20px;
	}	

	.menu-home > li > a .icon {
		padding: 10px;
	}	
	
	.menu-home > li > a .icon img {
		height: 25px;
	}
	
	.msg-navigation {
		float: left;
		margin-top: 15px;
		width: 100%;
	}
	
	.modal-login {
		min-width: 300px;
	}		
	
	/*-- HOME BLOCK --*/
	.home.small-container .container {
		width: 481px;
	}	
	
	.game-home-block {
		padding: 20px;
	}	
	
	.game-home-block .head-game img {
		margin-top: -35px;
		margin-left: -35px;
	}	
	
	.game-home-block .body-game > div {
		width: 100%;
	}	
	
	.game-home-block .body-game .action {
		margin-left: 0;
		margin-top: 15px;
	}	
	
	.game-home-block .body-game .action .btn {
		position: relative;
	}	
	
	.game-home-block .icon-game-home img {
		width: 315px;
	}

	.bank-block {
		padding: 20px;
	}
	
	.head-content-article .row > div {
		width: 100%;
	}
	
	.main-article-block .image-article {
		margin-bottom: 10px;
	}
	
	.main-article-block .image-article img {
		width: 90px;
	}	
	
	.title-article h1 {
		font-size: 24px;
	}	
	
	/*-- SINGLE BLOCK --*/	
	.header-title h1 {
		font-size: 32px;
	}	
	
	/*-- PLAY PAGE --*/
	.page-play .container {
		width: 460px;
	}
	
	.play-area {
		height: 242px;
	}
	
	.play-progressbar-wrap {
		bottom: 6%;
	}
	
	.progressbar-text {
		display: none;
	}	
	
	/** FOOTER **/
	
	.tail-footer {
		padding: 0;
	}
	
	.tail-footer .row > div:first-child {
		width: 45% !important;
	}
	
	.tail-footer .row > div:last-child {
		width: 55% !important;
	}		
}

@media (max-width: 560px){

}

@media (max-width: 540px){	
	.account-menu .balance, .account-menu .balance a {
		border-radius: 10px 10px 0 0;
	}	
	
	.account-menu .logout, .account-menu .logout a {
		border-radius: 0 0 10px 10px;
	}
	
	.account-menu .logout a {
		background-position: left center;
	}
	
	.account-menu > div {
		width: 100% !important;
	}	
	
	.account-menu > div a {
		padding: 13px !important;
	}	
	
	.account-menu .myaccount a {
		background-image: url(images/icon/mya-icon-cemelive.com.png);
		background-size: 44px auto;
		background-position: left center;
		background-repeat: no-repeat;
	}	
}	

@media (max-width: 520px) {
	.main-left-panel {
		min-height: auto;
	}
	
	/*-- FOOTER --*/
	
	footer {
		padding: 7px 0 5px;
	}	
	
	.head-footer {
		font-size: 1px;
		margin-bottom: 7px;
	}	
	
	.tail-footer {
		padding: 0;
	}
	
	.tail-footer .row {
		margin-left: -5px;
		margin-right: -5px;
	}	
	
	.about-footer img {
		width: 55px;
		padding-left: 2px;
		padding-right: 2px;
	}	
	
	.social-footer ul > li {
		width: 15px;
		height: 15px;
		margin-left: 2px;
		margin-right: 2px;
		font-size: 9px;
		line-height: 14px;
	}	
}

@media (max-width: 500px){

}

@media (max-width: 480px){
	.main-header {
		min-width: 280px;
	}
	
	.main-menu-home {
		padding: 15px;
	}	
	
	.room-main-menu {
		margin-left: -10px;
		margin-right: -10px;
	}	
	
	.menu-home > li {
		padding: 0 10px;
	}	
	
	.separator-menu-home::before {
		left: 10px;
		right: 10px;
	}

	.menu-home > li + li::before {
		height: 35%;
	}	
	
	.menu-home > li > a {

	}	
	
	.menu-home > li > a .icon {
		padding: 7px;
	}	
	
	.menu-home > li > a .icon img {

	}	
	
	.menu-home > li > a .text {
		font-size: 11px;
	}	
	
	.separator-menu-home {
		padding: 10px 0;
	}

	.menu-home > li > a .text {
		margin-top: 3px;
	}	
	
	.sticky-wrapper.is-sticky .main-menu-home {
		padding: 7px 10px;	
	}
	
	.sticky-wrapper.is-sticky .main-menu-home .menu-home > li > a .icon {
		padding: 1px 3px 3px;
	}	
	
	.sticky-wrapper.is-sticky .main-menu-home .menu-home > li > a .icon img {
		height: 18px;
	}	
	
	.navbar-inverse .navbar-nav > li > a {
		
	}	
	
	.btn-slide-menu {
		padding: 7px 7px;
	}
	
	.main-search img {
		width: 150px;
	}	
	
	.login-mobile {
		padding-top: 2px;
	}	
	
	.login-mobile > div > a {
		padding: 8px 12px;
	}
	
	.modal-login {
		min-width: 250px;
	}		

	/*-- HOME BLOCK --*/
	.home.small-container .container {
		width: 100%;
	}	
	
	.not-login-block {
		margin-top: 15px;
	}
	
	.slider-home-block {
		margin: 10px 0;
	}

	.bank-block, 
	.store-home-block {
		margin-bottom: 10px;
	}
	
	.head-block {
		padding: 5px 10px;
	}	
	
	.head-block .logo-home img, 
	.head-block .icon img {
		height: 22px;
	}	
	
	.head-block .title {
		font-size: 14px;
		line-height: 22px;
	}
	
	.game-home-block {
		padding: 15px;
		margin: 10px 0;
	}	
	
	.game-home-block .head-game img {
		width: 125px;
		margin-top: -30px;
		margin-left: -30px;
	}	
	
	.game-home-block .reg {
		font-size: 18px;
	}	
	
	.game-home-block .free {
		font-size: 26px;
		line-height: 16px;
	}	
	
	.game-home-block .body-game .text {
		font-size: 53px;
		line-height: 40px;
	}	
	
	.game-home-block .body-game .action {
		margin-top: 10px;
	}	
	
	.game-home-block .body-game .action .btn {
		font-size: 18px;
	}	
	
	.game-home-block .icon-game-home img {
		width: 260px;
		opacity: 0.65;
	}	
	
	#main_home_slider.sa_owl_theme .owl-nav div, 
	#main_home_slider.sa_owl_theme .owl-nav button {
		margin-top: -20px !important;
	}	

	#main_home_slider.sa_owl_theme .owl-nav .owl-prev {
		left: -10px;
	}	
	
	#main_home_slider.sa_owl_theme .owl-nav .owl-next {
		right: -10px;
	}	
	
	#main_home_slider.sa_owl_theme .owl-nav .owl-prev, 
	#main_home_slider.sa_owl_theme .owl-nav .owl-next {
		height: 50px !important;
		width: 20px !important;
		font-size: 14px !important;
	}	
		
	.marquee-home {
		margin-bottom: 10px !important;
	}	

	.store-home-block .row {
		margin-left: -5px;
		margin-right: -5px;
	}	
	
	.store-home-block .row > div {
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
	}
	
	.store-home-block .row > div + div {
		margin-top: 10px;
	}
	
	.store-home-block .item {
		height: 110px;
	}
	
	.store-home-block .item.apple .icon img, 
	.store-home-block .item .icon img {
		height: 120px;
		margin-top: -5px;
		margin-left: -5px;
	}
	
	.store-home-block .item.apple .icon, 
	.store-home-block .item .icon {
		width: 30%;
		position: relative;
	}	
	
	.store-home-block .item.apple .content, 
	.store-home-block .item .content {
		width: 70%;
		position: relative;
		height: 100%;
		padding: 10px;
	}	
	
	.store-home-block .item.apple .content .head, 
	.store-home-block .content .head {
		font-size: 22px;
		line-height: 18px;
	}	
	
	.store-home-block .item.apple .content .action, 
	.store-home-block .content .action {
		margin-top: 0;
		margin-left: 10px;
	}
	
	.store-home-block .item.apple .content .room > div, 
	.store-home-block .content .room > div {
		width: unset;
		position: unset;
		text-align: left;
	}	
	
	.store-home-block .item.apple .content .action .btn, 
	.store-home-block .content .action .btn {
		position: absolute;
	}	
	
	.article-block {

	}	
	
	.main-article-block > div {
		width: 100%;
		margin-bottom: 10px;
	}

	.main-article-block > div + div:nth-child(2n)::before {
		display: none;
	}
	
	.bank-block {
		padding: 15px;
	}
	
	.about-home-block {
		margin-bottom: 15px;
	}	
	
	/*-- SINGLE BLOCK--*/
	.bottom-logo img {
		width: 200px;
	}	
	
	.bottom-logo {
		padding: 20px 0;
	}	
	
	/*-- LOGIN PAGE --*/
	.bg-marquee {
		padding: 6px;
		font-size: 13px;
	}
	
	.header-title {
		padding: 5px 15px 10px;
	}	
	
	.header-title h1 {
		font-size: 24px;
	}
	
	.pagination > li > a, .pagination > li > span {
		padding: 3px 8px;	
	}

	.img-button-wrap .image-wrap {
		float: none;
		margin: 15px auto 0;
	}	
	
	.img-button-wrap .btn-wrap {
		float: none;
		margin: 15px auto 0;
	}

	.message-list .msg-from {
		display: none;
	}	
	
	.message-list .msg-subject {
		width: 70%;
	}
	
	.message-list .msg-trash {
		line-height: 1.8em;
		width: 10%;
	}
	
	/*-- PLAY PAGE --*/
	.narrow-side-gap {
		padding-left: 0;
		padding-right: 0;
	}
	
	.page-play .container {
		width: 320px;
	}
	
	.play-area {
		height: 160px;
	}
	
	.progressbar-text {
		display: none;
	}
	
	.pwr-button {
		width: 40px;
	}
	
	.rfh-button img {
		width: 40px;
	}
	
	.rfh-button a {
		font-size: 1.2em;
	}
	.rfh-button {
		width: 160px;
	}
	
	.play-text {
		font-size: 1em;
		padding: 6px 15px;
	}		
}

@media (max-width: 460px) {	

}

@media (max-width: 420px) {
	.navbar-brand > img {
		width: 135px;
	}
	
	.login .navbar-brand > img {

	}
	
	.store-home-block .item.apple .content .room > div, 
	.store-home-block .content .room > div {
		width: 100%;
		position: relative;
		text-align: right;
	}	
	
	.store-home-block .item.apple .content .action, 
	.store-home-block .content .action {
		margin-top: 10px;
		margin-left: 0;
	}	

	.store-home-block .item.apple .content .action .btn, 
	.store-home-block .content .action .btn {
		position: relative;
	}	
}

@media (max-width: 400px) {
	.bank-play-home {
		padding-left: 0;
		padding-right: 0;
	}	
}

@media (max-width: 360px){
	.room-main-menu {
		margin-left: -7px;
		margin-right: -7px;
	}	
	
	.menu-home > li {
		padding: 0 7px;
	}	
	
	.separator-menu-home::before {
		left: 7px;
		right: 7px;
	}
	
	.menu-home > li > a .icon {
		padding: 5px;
	}	
	
	.navbar-home ul > li > a {
		font-size: 11px;
	} 	
	
	.login-mobile > div > a {
		padding: 8px;
	}
	
	.navbar-brand > img {
		width: 115px;
	}
	
	.login .navbar-brand > img {

	}	
	
	.img-300 {
		width: 180px;
	}
	
	.pagination > li > a, .pagination > li > span {
		padding: 2px 7px;
		font-size: 14px;
	}
	
	/*-- HOME BLOCK --*/
	
	.marquee-home {
		margin-bottom: 10px !important;
	}
	
	.game-home-block .head-game img {
		width: 110px;	
	}
	
	.game-home-block .free {
		font-size: 24px;
		line-height: 14px;
	}	
	
	.game-home-block .reg {
		font-size: 16px;
	}	
	
	.game-home-block .body-game .text {
		font-size: 48px;
		line-height: 35px;
	}	
	
	.game-home-block .icon-game-home img {
		width: 230px;
	}	

	.article-block {

	}	
	
	.room-main-content-article {
		padding: 15px 15px 20px;
	}		
	
	/* FOOTER */
	
	.tail-footer .row > div {
		padding-left: 8px;
		padding-right: 8px;
	}		
}

@media (max-width: 320px){
	.modal-login {
		min-width: 0;
	}
	
	ul.no-list-img {
		font-size: 16px;
	}

	.pagination > li > a, .pagination > li > span {
		padding: 1px 6px;
		font-size: 14px;
	}
	
	/* FOOTER */
	
	.social-footer ul > li {

	}	
}

/***
=====================================================
		IE 10+ ONLY
=====================================================
**/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  

}

/*
=======================================
		POP UP Style
=======================================
*/
.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-dialog.pop-up-block {
	margin: 60px auto;
}

.modal-header.pop-up-header {
    border-bottom: none;
	padding: 0;
	
	-webkit-box-shadow: 0 0 15px #000;
	   -moz-box-shadow: 0 0 15px #000;
		-ms-box-shadow: 0 0 15px #000;
		 -o-box-shadow: 0 0 15px #000;
			box-shadow: 0 0 15px #000;		
}

.close.pop-up-close {
    position: absolute;
    top: -12px;
    right: -12px;
    text-decoration: none !important;
    display: block;
    width: 35px;
    height: 35px;
    background: url("images/icon/close-icon.png") no-repeat scroll 0 0;
    z-index: 1500;
    text-indent: -9999px;
    cursor: pointer;
	opacity: 1;	
	-webkit-box-shadow: 0px 3px 7px #000;
	   -moz-box-shadow: 0px 3px 7px #000;
		-ms-box-shadow: 0px 3px 7px #000;
		 -o-box-shadow: 0px 3px 7px #000;
			box-shadow: 0px 3px 7px #000;
	border-radius: 50%;	
}

.modal-open {
    padding-right: 0 !important;
}

.modal-header.pop-up-header::after {
	background-image: url(images/content/line-border.png);
	background-position: left center;
	background-repeat: repeat-x;	
	position: absolute;
	height: 3px;
	content: "";
	width: 100%;
	bottom: 0;
	left: 0;	
}

@media (max-width: 767px){
	.modal-dialog.pop-up-block {
		margin: 30px;
	}
}