html body {
	background: #000 url(../images/bg.jpg)top center no-repeat;
	font-family: 'Century Gothic';
}

.site.container {
	padding: 15px 15px 5px;
	margin-top: 15px;
	background: #000;
	border: 1px solid #333333;
	border-radius: 5px;
}

.container {
	padding-left: 5px;
	padding-right: 5px;
}

.row {
	margin-left: -5px;
	margin-right: -5px;
}

a:hover, a:focus, a:active {
	opacity: 1;
}

.clear {
	clear: both;
}

@font-face {
	font-family: 'Century Gothic';
	font-style: normal;
	font-weight: normal;
	src: local('Century Gothic'), local('Century-Gothic'), url(../fonts/centurygothic.ttf) format('truetype');
}

.d-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-table {
	display: table;
}

.flex-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}

.flex-column {
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}

.align-items-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}

.align-items-end {
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end!important;
}

.justify-content-center {
	-webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
	position: relative;
	min-height: 1px;
	padding-right: 3px;
	padding-left: 3px;
}

.mx-auto {
	margin: 0 auto;
}

.px-0 {
	padding-left: 0!important;
	padding-right: 0!important;
}

img, .img-fluid {
	max-width: 100%;
	height: auto;
}

.mr-3 {
    margin-right: 1rem!important;
}

.mt-2, .my-2 {
    margin-top: .5rem!important;
}

.mb-2, .my-2 {
    margin-bottom: .5rem!important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}

.w-100 {
    width: 99.5%!important;
}
   
.marquee {
    position: relative;
    white-space: nowrap;
}

/* We need this to float so the dimension will be exactly that of the contents. */
.marquee.fake {
    overflow: hidden;
}
                    
/* The sliding span */
.marquee.fake span {
    display: inline-block;
    font-family: 'Calibri';
    font-size: 17px;
    font-style: italic;
    position: relative;
    left: -60%;
    -moz-animation-name: marquee;
    -webkit-animation-name: marquee;              

    /* Set the duration, s = seconds */
    -moz-animation-duration: 50s;
    -webkit-animation-duration: 50s;      
  
    /* How many times the animation to repeat */
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;                        

    /* Several options available, use linear for this example */
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;     
}
              
/* Stop the marquee on :hover */
.marquee.fake:hover span{
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
}              
            
@-webkit-keyframes marquee{
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
              
@-moz-keyframes marquee{
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.gmr-headwrapper {
	margin: 0 0 10px;
}

.gmr-menuwrap {
	background: transparent url(../images/menu-bg.jpg) repeat-x;
	background-size: auto 100%;
	margin-bottom: 5px;
	border-radius: 5px;
}

.gmr-mainmenu #primary-menu > li:hover > a, .gmr-mainmenu #primary-menu .current-menu-item > a, .gmr-mainmenu #primary-menu .current-menu-ancestor > a, .gmr-mainmenu #primary-menu .current_page_item > a, .gmr-mainmenu #primary-menu .current_page_ancestor > a {
	background: transparent url(../images/menu-hover.jpg) repeat-x;
	background-size: auto 100%;	
}

.gmr-mainmenu #primary-menu > li:first-child > a {
	border-radius: 5px 0 0 5px;
}

.banner {
	border: 1px solid #fff;
	padding: 3px;
	position: relative;
	border-radius: 5px;
}

.banner .swiper-container {
	border-radius: 5px;
}

.icons > div {
	position: relative;
	background: #000;
	z-index: 99;
	border-radius: 3px;
	padding: 5px;
}

.icons > div > a  {
	font-size: 28px;
	background: #f05a24;
	background: -moz-linear-gradient(left, #f05a24 0%, #6d2910 50%, #000000 100%);
	background: -webkit-linear-gradient(left, #f05a24 0%,#6d2910 50%,#000000 100%);
	background: linear-gradient(to right, #f05a24 0%,#6d2910 50%,#000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f05a24', endColorstr='#000000',GradientType=1 );
	padding-right: 20px;
	letter-spacing: -0.5px;
	color: #ff0;
}

.icons > div > a:hover  {
	color: #fff;
}

#primary-menu > li > a {
	font-size: 16px;
	padding: 5px 15px; 
}

.search-trigger .gmr-icon {
	padding: 5px 0;
}

.container .gmr-content {
	padding: 10px 0 0;
}

.gmr-box-content.gmr-single .entry-header {
	border-bottom: none;
	color: #ff0;
	text-align: left;
	margin: 0 0 15px;
	padding: 0;
}

.gmr-box-content.gmr-single .entry-header h1 {
	text-align: center;
	font-family: 'Calibri';
	color: #fec13b;
}

.border-grey, main .gmr-box-content, aside .widget {
	border: 1px solid #4d4d4d;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 10px;
}

.border-grey, main .gmr-box-content {
	text-align: center;
}

.games a {
	border: 1px solid #4d4d4d;
	border-radius: 5px;
	text-align: center;
	padding: 10px;
	width: 100%;
	height: 100%;
	display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
	-webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
	-webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important;
}

.games a h4 {
	font-family: 'Myriad Pro';
}

.games a:hover h4 {
	color: #fff;
}

.games a img {
	margin: 0 auto 10px;
}

.games a:hover img {
	transform: scale3d(1.02,1.02,1.02);
}

aside {
	margin-bottom: 10px;
}

.jadwal h3 {
	border-bottom: 1px solid #666;
	margin: 0 0 10px;
	padding-bottom: 5px;
}

.jadwal p {
	font-size: 12px;
	font-weight: 600;
}

.contact {
	font-weight: bold;
	margin: 0 5px;
	font-size: 19px;
	padding: 10px;
}

.contact > div {
	margin-right: 10px;
}

.contact a {
	color: #fff;
}

.contact a:hover {
	color: #ff0;
}

.contact-img {
	height: 26px;
	background: transparent url(../images/contact.png) no-repeat;
	margin-right: .5rem;	
}

.contact-img.wa {
	width: 26px;
	background-position:  0;
}

.contact-img.line {
	width: 28px;
	background-position: -181px 0;
}

.gmr-box-layout #footer-container {
	max-width: 1000px;
}

#footer-container .widget-footer {
	padding: 15px 0 0;
}

.footer-column .widget {
	margin: 0;
}

.footer-column .textwidget p {
	margin: 0;
}

footer.site-footer {
	padding: 0 0 30px;
}

#gmr-responsive-menu {
	width: 92%;
}


.siderbar p span,.siderbar .lang_nav,.siderbar .livescore {font-size:0;text-indent:-99999px}
.siderbar {-webkit-box-shadow:0 5px 10px rgba(0,0,0,.6);box-shadow:0 5px 10px rgba(0,0,0,.6)}

.siderbar{position:fixed;top:68px;right:-1px;z-index:113;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}
.siderbar p{width:198px;height:46px;line-height:38px;padding:5px;position:absolute;top:76px;right:155px;background:#ff0 url(../images/Phone.png) no-repeat right center;color:#fff;text-indent:28px;transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);letter-spacing:1px;cursor:pointer;font-size:17px}
.siderbar p span{width:20px;height:46px;background:url(../images/Arrow.png) no-repeat center center;position:absolute;top:0;right:172px}
.siderbar .content{width:231px}
.siderbar .content a{display:block;text-decoration:none}
.siderbar .memberser{margin:0;padding:9px 13px 7px 17px;color:#fff;font-weight:900;background:#000 url(../images/icon-livehelp-24-7.png) no-repeat 15px 4px}
.siderbar .memberser dt{padding-left:58px;font-family:'Tahoma';font-size:35px;line-height:25px;}
.siderbar .memberser span{margin:0 3%;font-size:1.75rem}
.siderbar .memberser dd{margin-top:6px;line-height:18px;text-align:center;font-size:18px}
.siderbar .liveitem a:hover{text-shadow:0 1px 0 rgba(0,0,0,.8);font-size:.875rem}
.siderbar .contact_col{background-color:#fff;padding:5px 10px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.8);box-shadow:0 1px 3px rgba(0,0,0,.8);cursor:pointer;display:table;width:100%}
.siderbar .contact_col span{display:block;margin-right:8px;width:32px;height:34px;float:left;background: url(../images/icon_contactus.png) no-repeat;}
.siderbar .contact_col a{width:168px;color:#656565;font-weight:600;font-size:15px;line-height:34px;}
.siderbar .contact_col a:hover{color:#000}
.siderbar .contact_col span.icon_contact_phone {background-position: 0 2px;}
.siderbar .contact_col span.icon_contact_whatsapp {background-position: 0 -50px;}
.siderbar .contact_col span.icon_contact_line {background-position: 0 -251px;}
.siderbar .contact_col span.icon_contact_bbm {background-position: 0 -394px;}
.siderbar .contact_col:hover .icon_contact_phone{background-position:-42px 2px}
.siderbar .contact_col:hover .icon_contact_whatsapp{background-position:-42px -50px}
.siderbar .contact_col:hover .icon_contact_skype{background-position:-42px -99px}
.siderbar .contact_col:hover .icon_contact_email{background-position:-42px -152px}
.siderbar .contact_col:hover .icon_contact_wechat{background-position:-42px -200px}
.siderbar .contact_col:hover .icon_contact_line{background-position:-42px -251px}
.siderbar .contact_col:hover .icon_contact_bbm{background-position:-42px -394px}
.siderbar .contact_col:hover .icon_contact_qq{background-position:-42px -348px}
.siderbar .contact_col:hover .icon_contact_yahoo{background-position:-42px -300px}
.siderbar .contact_col:hover .icon_contact_kakaotalk{background-position:-41px -490px}

.siderbar .contact_col:hover .icon_contact_telegram{background-position:-42px -537px}
.siderbar .livescore{height:84px;background:url(../images/livescore/livescore.gif) no-repeat}
.siderbar_close{right:-234px;-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-o-transition:all .3s;transition:all .3s}
.siderbar_close p span{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}

.siderbar p {
	background: #faa937;
	background: -moz-linear-gradient(top, #faa937 0%, #f46111 15%, #f14000 16%, #f7931e 100%);
	background: -webkit-linear-gradient(top, #faa937 0%,#f46111 15%,#f14000 16%,#f7931e 100%);
	background: linear-gradient(to bottom, #faa937 0%,#f46111 15%,#f14000 16%,#f7931e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faa937', endColorstr='#f7931e',GradientType=0 );
	color:#fff;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	border-top-left-radius:5px;
	border-top-right-radius:5px
}
.siderbar .memberser{color:#005db8;background-color:#FAA937}
.siderbar .contact_col a{color:#656565}
.siderbar .contact_col a:hover{color:#000}

@media (min-width: 1200px) {
	.icons {
		position: absolute;
		bottom: 10%;
	}
	.icons > div > a {
		font-size: 33px;
	}
}

@media (max-width: 991px) {	
	.col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto {
		width: 100%;
		max-width: 100%;
	}
	
	.footer-column.col-md-6 .textwidget p {
		text-align: center;
	}
	
	.footer-column.col-md-6 .textwidget p img {
		float: none;
		margin: 5px auto;
		max-width: 100%;
	}
}

@media (max-width: 991px) and (min-width: 576px) {
	.jadwal-list > div {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33%;
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
}

@media (min-width: 992px) {
	.running-text {
		margin-left: -8%;
	}
	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%!important;
		flex: 0 0 25%!important;
		max-width: 25%!important;
	}
}

@media (min-width: 768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.justify-content-md-end {
		-webkit-box-pack: end!important;
		-ms-flex-pack: end!important;
		justify-content: flex-end!important;
	}

	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
}

@media (max-width: 767px) {

	.col-sm-auto {
		width: 100%;
		max-width: 100%;
	}
}

@media (max-width: 666px) {
	.smiley {
		width: 100%;
	}
}

@media (min-width: 576px) {
	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 575px) {
	.jadwal-list > div {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}