﻿﻿@font-face {
    font-family: AvenirLTStd-Black;
    src: url(fonts/AvenirLTStd-Black.otf);
}

html { height: 100%; min-height: 100%; }

body {
	color: #000000;
	background: #1f845b; /* For browsers that do not support gradients */
	background: radial-gradient(circle, #1f845b, #0e3e2a);
	background: -webkit-radial-gradient(circle, #1f845b, #0e3e2a); /* For Safari 5.1 to 6.0 */
	background: -o-radial-gradient(circle, #1f845b, #0e3e2a); /* For Opera 11.1 to 12.0 */
	background: -moz-radial-gradient(circle, #1f845b, #0e3e2a); /* For Firefox 3.6 to 15 */
	font-size: 0.63rem;
	padding: 0px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    min-height: 200px;
	height: 100%;
}
.top-triangle{
	position: fixed;
	left: 0;
	top: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5.5em;
	border-left-color: #fbcd17;
	border-top-color: #fbcd17;
	border-top-width: 10em;
	border-left-width: 3em;
	z-index: -10;
}
.bottom-triangle{
	position: fixed;
	bottom: 0;
	right: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 10.5em;
	border-right-color: #fbcd17;
	border-bottom-color: #fbcd17;
	border-right-width: 3em;
	border-bottom-width: 37em;
	z-index: -10;
}

.newhome .topleft,
.newhome .topright {
	position: relative;
}

.newhome .topleft .homebox{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}

.newhome .topleft .homebox:hover{
	opacity: 1;
}

.newhome .homedeal {
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.newhome .homedeal .header{

}
.newhome .homedeal .header img{
	max-width: 100%;
}
.newhome .homedeal .text{
	position: relative;
	display: flex;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}
.newhome .homedeal .textcontainer{
	padding: 10px 0;
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	top: 5px;
}
.newhome .homedeal h4 {
	font-size: 2em;
	margin:0; padding:0;
	color: #fff;
}
.newhome .homedeal h2 {
	font-size: 3em;
	font-weight: bold;
	margin:0;
	padding:15px 0;
	color: #fff;
}
.newhome .homedeal h3 {
	font-size: 1.2em;
	margin:0; padding:0;
	margin-top: 12px;
	margin-bottom: 5px;
	text-transform: uppercase;
	color: #FFF;
}

.newhome .homedeal .code {
	width: 80%;
	margin: 0 auto;
	font-size: 1.5em;
	color: #FACE14;
	border: 3px dotted #FACE14;
}

.newhome .top-game{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}

.newhome .topleft img, .newhome .topright img {
	width: 100%;
	height: auto;
	z-index: 9;
	position: relative;
}

.newhome .winners{
	height: 40px;
	margin: 50px auto;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}
.newhome .winners .page-header {
	background-color: #0d2c19;
	border: none;
	margin-bottom: 0px;
	padding-bottom: 3px;
	margin: 0;
}
.newhome .winners .page-header h2 {
	color: #face14;
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
	padding: 0 0 0 15px;
	text-align: left;
	line-height: 40px;
}
.newhome .winners ul {
	margin: 0; padding:0;
	list-style-type: none;
	line-height: 40px;
}
.newhome .winners ul li{
	display: none;
	font-size: 15px;
	color: #FFF;
	margin: 0;
	text-align: left !important;
	padding: 0 20px;
}
.newhome .winners ul li.showWinner{
	display: inline-block;
}
.newhome .winners ul li div::before{
	content: "";
	background-image: url(/images/winners-preimage.png);
	position: relative;
	display: inline-block;
	width: 22px;
	height: 17px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	vertical-align: middle;
}
.newhome .winners ul li strong {
	color: #face14;
}
.newhome .winners .moduletable {
	padding: 0;
}

/* Winners scroll*/
.scroll-left {
	overflow: hidden;
	position: relative;
	background: #0b2411;
}
.scroll-left .bxSlider {
	display: block;
	overflow: auto;
	height: auto;
	margin: 0;
	text-align: left;
	/* Apply animation to this element */
	-moz-animation: scroll-left 200s linear infinite;
	-webkit-animation: scroll-left 200s linear infinite;
	animation: scroll-left 200s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
	0%   { -moz-transform: translateX(-2%); }
	100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
	0%   { -webkit-transform: translateX(-2%); }
	100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
	0%   {
		-moz-transform: translateX(-2%); /* Browser bug fix */
		-webkit-transform: translateX(-2%); /* Browser bug fix */
		transform: translateX(-2%);
	}
	100% {
		-moz-transform: translateX(-100%); /* Browser bug fix */
		-webkit-transform: translateX(-100%); /* Browser bug fix */
		transform: translateX(-100%);
	}
}

.scroll-left .bxSlider:hover {
	animation-play-state: paused;
}

.newhome .home-banking {
	text-align: center;
}

.newhome .home-banking img{
	max-width: 100%;
	margin: 10px 15px;
}

img {
	border: 0 none;
	height: auto;
}

.sprocket-tabs  {
	border: 3px solid #face14;
	height: 277px !important;
}

.sprocket-tabs-nav li .sprocket-tabs-inner {
	font-weight: bold !important;
	font-size: 1.2em !important;
	font-family: Arial, Helvetica, sans-serif;
}

.sprocket-tabs-nav li:first-child  {
	border-top-left-radius: 7px;
}

.sprocket-tabs-nav li {
	height: 55px !important;
}
.sprocket-tabs-nav li:last-child  {
	border-bottom-left-radius: 7px !important;
}

.item-page table {
	border: 1px solid #face14;
	background: #092c1d;
}

.item-page table td {
	border: 1px solid #face14;
	padding: 3px;
}

.top-header{
	height: 180px;
	position: absolute;
	width: 100%;
	z-index: 10;
	top: 0;
	left: 0;
}
#body.inside .top-header {
	display: none;
}

.top-header.addBG {
	background: rgba(11, 36, 20, 0.8) none repeat scroll 0 0;
	height: 155px;
	position: fixed;
	backdrop-filter: blur(10px);
}
.blur{
	-ms-filter: blur(20px);
	filter: blur(20px);
}

@media only screen and (max-width: 780px) and (orientation:landscape)
{
	.top-header,.top-header.addBG{background: none;position: relative;}
}
@media only screen and (max-width: 780px) {
	.top-header,
	.top-header.addBG{
		height:130px;
	}
}

.top-header.addBG #header-buttons{
	top: 15px;
}

.top-header.addBG #prem-logonew{
	width: 140px;
	height: 105px;
}

#prem-logo {
  width: 337px;
  height: 151px;
  margin: 0 auto 160px;
  /* background: url(/images/lobby/logo_premier.png) transparent no-repeat; */
}

#prem-logonew {
  width: 220px;
  height: 155px;
  display: block;
  position: relative;
  z-index: 999;
  background: url(/images/logo.png) transparent no-repeat;
  background-size: 100% auto;
  /*margin: 0 auto 40px;*/
  margin: auto;
  z-index: 9;
}
#prem-logonewT {
	width: 220px;
	height: 155px;
	display: block;
	position: relative;
	margin: auto;
	z-index: 9;
}

.button {
	display: block;
	background: #ffc300;
  	color: #003e2a !important;
    font-size: 2em;
	padding:  3px 0;
  	text-align: center;
    text-decoration: none;
	font-weight: bold;
    margin: 0 -10px -10px -10px;
	text-transform: uppercase;
}

#header-buttons{
	display: none;
    left: -625px;
    margin: auto;
    position: absolute;
    right: 0;
	top: 60px;
	width: 160px;
	z-index: 8;
}

#header-buttons .button{
	margin: 0 0 10px 10px;
}

.outside #header-buttons{
  display: block;
}

@media only screen and (max-width: 780px) {
	#prem-logonew {
		margin-left: 0;
		left: 5px;
		width: 160px;
		height: 115px;
	}
	#prem-logonewT {
		margin-left: 5;
		left: 0;
		width: 160px;
		height: 115px;
	}
	#header-buttons{
		left: auto;
		right: 12px;
		top: 40px;
		width: 120px;
	}
	#header-buttons .button{
		font-size: 1.5em;
	}
	
}

.article-content .button{
	width: 150px;
	font-size: 1.5em;
	margin-left: 0;
}

.article-content .page-header{
	border: none;
	margin-top: 0;	
}

.article-content .page-header h2{
	color: #fbcd15;
}

.article-content .articleBody{
	margin-top: 15px;
}
.articleBody img{
	max-width: 100%;
}
.social_share_btns{
	float: right;
}

.social_share_btns ul.like-buttons {
    float: left;
    list-style: outside none none;
    margin: 5px 0 20px;
    padding: 0;
    width: 100%;
}

.social_share_btns ul.like-buttons li {
    display: block;
    float: left;
    margin-right: 10px;
}

.catid-10 .article-content .item-image{
	width: 100%;
	margin-bottom: 5px;	
}

.catid-10 .article-content .item-image img{
	width: 100%;
	max-width: 100%;		
}

/*Blog Page*/

.blog .category-desc{
	width: 100%;
	color: #fff;
    font-size: 1.5em;
	background: rgba(11, 36, 20, 0.7) none repeat scroll 0 0;
	margin: auto;
	display: block;
	padding: 15px;
}
@media only screen and (min-width: 1024px) {
	.blog .category-desc{
		width: 1024px;
	}
}

#submenu{
	margin-top: 170px;
	text-align: center;
	position: fixed;
	left: 0;
	right: 0;
}

@media only screen and (max-width: 780px) {
	#submenu{
		margin-top:130px;
	}
	.article-content{
		padding: 0;
	}
}

#submenu.addBG{
	background: rgb(11, 36, 20) none repeat scroll 0 0;
	margin-top: 95px;
	z-index: 11;
}

@media only screen and (max-width: 780px) and (orientation:landscape)
{
	#submenu, #submenu.addBG{
		position: relative;
		margin-top: 10px;
	}
}

#submenu li{
	display: inline-block;
}

#submenu li a{
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase; 
}
@media only screen and (max-width: 780px) {
	#submenu li a{
		font-size: 1.5em;
	}
}

#submenu li a:hover, #submenu li a:visited,#submenu li a:focus{
	background: none;
	text-decoration: underline;
	outline: 0;
}
.body-content{
	margin: 180px auto 0px;
}
body.itemid-332 .body-content{
	margin: 50px auto 75px;
}
@media only screen and (max-width: 780px) {
	.body-content {
		margin: 125px auto 75px;
	}
	.itemid-161 .blog,
	.itemid-332 .blog,
	.itemid-184 .blog {
		padding-bottom: 40px;
	}
}
@media only screen and (max-width: 780px) and (orientation:landscape)
{
	.body-content {
		margin: 10px auto 75px;
	}
}

.tag-category{
	width: 100%;
	background: rgba(11,36,20,0.7);
	color: #fff;
	margin: auto;
}

@media only screen and (min-width: 1024px) {
	.tag-category{
		width: 1024px;
	}
}

.tag-category ul.category{
	border: none;
	padding: 10px 10px 10px 10px;
}

.tag-category ul.category > li{
	background: none !important;
	border: none;
	list-style: none;
}

.tag-category ul.category > li.first-blog-article .first-article-content h1,
.tag-category ul.category > li h3{
  margin-top: 0;
}

.tag-category ul.category > li .blog-text p{
	font-size: 14px;
}

.tag-category ul.category > li .intro_image img{
	max-width: 100%;
}

.tag-category ul.category > li.first-blog-article{
  	width: 100%;
	margin-left: 0px;
}

.tag-category ul.category > li.first-blog-article .first-article-content{
	padding: 0;
}

.tag-category ul.category > li.first-blog-article .first-article-content h1 a{
	text-decoration: none;
	font-size: 30px;
}

.most-popular-articles h3{
	font-size: 20px;
	padding-left: 10px;
	margin-bottom: 10px;
	margin-top: 3px;
}

.most-popular-articles .mostread{
	padding-left: 10px;
	margin-top: 32px;
}

.most-popular-articles li{
	list-style: none;
	border-bottom: 1px solid #52822b;
	background: none !important;
	padding: 5px 0;
}

.most-popular-articles a{
	text-decoration: none;
}

.most-popular-articles span{
	font-size: 16px;
	text-transform: uppercase;
}

.tag-category ul.category > li h3 a{
	text-decoration: none;
}

.tag-category ul.category > li.other-articles{
	height: 430px;
	position: relative;
}

@media only screen and (max-width: 780px) {
	.tag-category ul.category > li.other-articles{
		height: auto;
	}
	.tag-category ul.category > li.first-blog-article .first-article-content h1 a{
		font-size: 24px;
	}
}

.tag-category ul.category > li .readmore .btn{
	background: #ffc300;
  	color: #003e2a !important;
    font-size: 1.3em;
	padding:  3px 10px;
  	text-align: center;
    text-decoration: none;
	font-weight: bold;
	border-radius: 0;
}

.tag-category ul.category > li.other-articles .readmore .btn{
	position: absolute;
	bottom: 10px;	
}

@media only screen and (max-width: 780px) {
	.tag-category ul.category > li.other-articles .readmore .btn{
		position: relative;	
		bottom: 0;
	}
}
.tag-category ul.category > li .additional-info,
.article-content .additional-info{
    height: 30px;
    position: relative;
    width: 100%;
}

.tag-category ul.category > li  .additional-info .date,
.article-content .additional-info .date{
    font-size: 14px;
    padding-top: 5px;
	position: absolute;
	right: 0;
}

/*end Blog Page*/

.itemid-125 #prem-logonew {

  /*margin: 0 auto 120px;*/
}

.blog > .page-header,
.promo-blog > .page-header{
	
	color: #face14;
	text-align: center;
	border: 0;
}

.itemid-161 .items-row,
.itemid-332 .items-row,
.itemid-184 .items-row {
	margin: auto;
	max-width: 1024px;
}

.promo-blog .item .page-header,
.itemid-332 .span6 .page-header,
.itemid-184 .span6 .page-header {
	margin: 0; padding: 0; border: none;  
}

.promo-blog .item .page-header{
	margin-top: 30px;
}

.itemid-332 .span6,
.itemid-184 .span6 {
	width: 430px;
	border: 1px solid #0e523b;
	background: rgba(2,28,15,.7);
	float: left;
	margin: 15px 40px;
	color: #FFF; 
    padding: 10px 10px 0 10px;
}

.promo-blog .item{
	width: 100%;
	background-color: #013e29;
	border: 2px solid #008f5e;
	margin-bottom: 40px;
	position: relative;
}

.promo-blog .item .header-img{
	position: absolute;
	top: -20px;
	left: 32%;
	right: 0;
	max-width: 60%;
	margin: auto;
}

.promo-blog .item p,
.promo-blog .item h3{
	color: #fff;
}

.promo-blog .item .image-container{
	padding: 0;
	overflow: hidden;
}

.promo-blog .item .text-container{
	height: 270px;
}

.promo-blog .item .image-container .intro_image{
	background-position: center center;
	position: relative;
	display: block;
	width: 186px;
	height: 270px;
	background-repeat: no-repeat;
	width: 100%;
	margin-left: 13px;
	z-index: 1;
}
}

.promo-blog .item-image img{
	max-width: 100%;
}

.itemid-332 .span6 .pull-right.item-image,
.itemid-184 .span6 .pull-right.item-image {
  	margin-right: -50px;
}

.promo-blog .item p,
.itemid-332 .span6 p,
.itemid-184 .span6 p {
	font-size: 15px;
}

.promo-blog .item a,
.itemid-332 .span6 a,
.itemid-184 .span6 a {
	color: #FFF !important;
}
.promo-blog .item a.button,
.itemid-332 .span6 a.button,
.itemid-184 .span6 a.button  {
	display: block;
	background: #ffc300;
  	color: #003e2a !important;
    font-size: 24px;
	padding:  3px 0;
  	text-align: center;
    text-decoration: none;
	font-weight: bold;
    margin: 0 -10px -10px -10px;
  text-transform: uppercase;
}

.promo-blog .item .category,
.itemid-332 .span6 .category,
.itemid-184 .span6 .category {
  background: rgba(0,90,64,.5);
  color: #FFF;
  font-size: 12px;
  font-style:italic;
  width: 213px;
  border-right: 1px solid #003a29;
  border-top: 1px solid #105842;
  display: block;
  float: left;
  padding: 10px 0;
  padding-left: 15px;
  margin-left: -10px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.promo-blog .item .category::before,
.itemid-332 .span6 .category::before,
.itemid-184 .span6 .category::before{
	content:"";
	background: url("/images/clock-img.png");
	width: 21px;
	height: 24px;
	position: absolute;
	left: 40px;
	top: 6px;
}

.itemid-332 .span6 .code,
.itemid-184 .span6 .code  {
  background: rgba(0,90,64,.5);
  color: #FFF;
  font-size: 12px;
  font-style:italic;
  width: 215px;
  border-top: 1px solid #105842;
  border-left: 1px solid #105842;
  display: block;
  float: left;
  padding: 10px 0;
  margin-right: -11px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 0;
}

.promo-blog .item .code-wrapper{
	position: absolute;
	bottom: 0;
	left: 32%;
	right: 60px;
}

.promo-blog .item .clipboard{
	background: #face14;
	width: 60px;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 50px;
	text-align: center;
	color: #013e29;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.promo-blog .item .clipboard::before {
	content: "";
	width: 0;
	height: 0;
	border-bottom: 21px solid #9b710a;
	border-left: 16px solid transparent;
	position: absolute;
	left: -16px;
	align-self: flex-start;
}

.promo-blog .item .clipboard .copied{
	display: none;
}

.promo-blog .item .clipboard.current .copied{
	display: block;
}

.promo-blog .item .clipboard.current .copy{
	display: none;
}

.promo-blog .item .clipboard span{
	font-style: 1.5em;
	font-weight: bold;
}
.promo-blog .item .clipboard i{
	display: block;
	font-size: 2em;
	margin-top: 3px;
}

.promo-blog .item .code-text{
	color: #00d189;
	text-transform: uppercase;
	text-align: center;
	display: block;
}

.promo-blog .item .code{
	width: 100%;
	background-color: #008f5e;
	text-align: center;
	color: #a9edd5;
	font-size: 2em;
	border: none;
	margin: 0;
}

.promo-blog .item .code span,
.itemid-332 .span6 .code span,
.itemid-184 .span6 .code span{
	color: #0cd37f;
}

.promo-blog .item h2,
.itemid-332 .span6 h2,
.itemid-184 .span6 h2 {
  font-size: 23px;
  border: none;
  font-weight: bold;
  margin: 0;
  text-decoration: none;
  text-decoration: none;
  color:  #face14 !important;
}
.promo-blog .item h2 a,
.itemid-332 .span6 h2 a,
.itemid-184 .span6 h2 a {
  text-decoration: none;
  color:  #face14 !important;
}

.promo-blog .item h3,
.itemid-332 .span6 h3,
.itemid-184 .span6 h3 {
  font-size: 19px;
  border: none;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}


#prem-container {
  width: 559px;
  height: 270px;
  margin: auto;
  z-index: 998;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -280px;
  margin-top: -135px;
}

#prem-hero {
  bottom: 0;
  position: absolute;
  z-index: 0;
  left: 50%;
}

#prem-hero img { z-index: 0; }

.sprocket-tabs-panels { z-index: 1; }
.item-page {
	font-size: 1.5em;
	background: rgba(11, 36, 20, 0.7) none repeat scroll 0 0;
	color: #FFF;
	padding: 15px;
	/*border-radius: 15px;*/
	width: 100%;
	margin: auto;
	position: relative;
	height: 55%;
}
.item-page p{
	font-size: 14px;
}
/*BLOG BUG FIX CHRI*/
.pagination {
 display: block;
 padding-bottom: 1em;
}
.pagination p.counter {
 padding-right: 18px;
}
.pagination ul {
 padding: 0px 18px;
 list-style-type: none;
}
.pagination a {
 display: inline-block;
 padding: 0 2px;
}
@media only screen and (min-width: 1024px) {
	.item-page{
		width: 1024px;
	}

	.newhome .winners .page-header h2{
		font-size: 1.5em;
	}
}
@media only screen and (min-width: 768px) {
	.newhome .winners .page-header h2{
		font-size: 1.5em;
	}
}
.item-page h1 {
	margin-top: 0;
}
.item-page .articleBody h3 {
	font-size: 20px;
	color: #fbcd15;
}
#container {
   min-height:100%;
   position:relative;
   height: 100%;
   overflow-y: auto;
}
.container {
	max-width: 1140px;
}
#header {
   background:#ff0;
   padding:10px;
}
#body {
    height: auto;
	margin-bottom: 20px;
	padding: 10px 10px 40px 10px;
}

#footer {
	position:fixed;
	bottom:0;
	width:100%;
	height:40px;
	background: #081303;
	color: #fff;
	font-weight: bold;
	z-index: 10;
	left: 0;
}

a, a:visited, a:active, a:hover, a:focus {
	color: #fbcd15 ;
	text-decoration: underline;
	outline: 0;
}

a:active, a:hover {
	opacity: 0.8;
}

#footer a,
#footer a:visited{
	color: #fff;
	text-decoration: none;
}
#footer a:active, #footer a:hover{
	color: #fbcd15 ;
	text-decoration: none;
}

#footer a:active, #footer a:hover, #footer a:focus{
	background-color: transparent;
}
.footer-menu ul li.deeper > span:hover::after{
	background-color: transparent;
	text-decoration: none;
	color: #f8cb16;
}

.footer-menu {
	width: 100%;
	font-size: 1.2em;
}

.footer-menu ul {width:100%; list-style:none; margin: auto; text-align: center;}
.footer-menu ul > li {display: inline-block;  font-size:14px; line-height: 20px;}
.footer-menu .nav > li > a, .footer-menu .nav > li > span{padding: 0px 25px;}
#footer .footer-menu ul li.active a{color: #f8cb16;}
.footer-menu ul li ul {padding:0;}
.footer-menu ul li ul li {display: block;:none; font-weight:normal; text-align: left;}
.footer-menu ul li.item-201, .outside .footer-menu ul li.item-201 .image-title{display: none;}
.outside .footer-menu ul li.item-201{display: inline-block; }
.outside .footer-menu ul li.item-201 > span{padding: 5px 15px; }
.outside .footer-menu ul li.item-201 img{width: 40px;margin-top: 5px;cursor: pointer;}
.footer-menu ul li .nav-child{
	display: none;
	position: absolute;
	bottom: 31px;
	min-width: 150px;
}
.footer-menu ul li.deeper,
.footer-menu ul li.deeper span{
	color: #fff;
	cursor: pointer;
}
.footer-menu ul li.deeper span:hover,
.footer-menu ul li.deeper.active span{
	color: #f8cb16;;
}
.footer-menu ul li.deeper.active .nav-child{
	background-color: #fbcd17;
	display: block;
}
.footer-menu ul li.deeper > span::after{
	content: '\25b2';
	color: #fff;
	margin-left: 5px;
	font-size: 11px;
}
.footer-menu ul li.deeper.active > span::after{
	content: '\25bc';
	color: #FACE14;
	margin-left: 5px;
}
#footer .footer-menu ul li .nav-child li a{
	border-bottom: 1px solid #a39215;
	min-width: 150px;
	font-size: 12px;
	color: #000;
	display: block;
	widows: 100%;
	padding:5px 0;
	padding-left: 5px;
}
#footer a:active, #footer .nav-child a:hover, #footer .nav-child a:focus {
	background-color: transparent;
	text-decoration: none;
	color: #fff;
}
@media only screen and (max-width: 1200px) {
	.promo-blog .item h2{
		font-size: 20px;
	}
	.promo-blog .item h3{
		font-size: 18px;
	}
	.promo-blog .item p{
		font-size: 14px;
	}
	.promo-blog .item .header-img{
		top: -15px;
	}
	.newhome .homedeal h2{
		font-size: 2em;
	}
	.newhome .homedeal h4{
		font-size: 1.5em;
	}
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {	
	.newhome .homedeal h4{
		font-size: 12px;
	}
	.newhome .homedeal h2{
		font-size: 16px;
	}
	.newhome .homedeal h3{
		font-size: 14px;
	}
}
@media only screen and (min-width: 701px) and (max-width: 1060px) {
	.promo-blog .items-row,
	.itemid-332 .items-row,
	.itemid-184 .items-row{
		margin: auto;
		max-width: 650px;
	}	
	.itemid-161 .span6, .itemid-332 .span6, .itemid-184 .span6{
		width: 270px;
		margin: 15px 27px;
	}
	.itemid-161 .span6 .category, .itemid-332 .span6 .category, .itemid-184 .span6 .category{
		width: 109px;
	}
	.itemid-161 .span6 .code, .itemid-332 .span6 .code, .itemid-184 .span6 .code{
		width: 160px;
	}
	.itemid-161 .span6 .category::before, .itemid-332 .span6 .category::before, .itemid-184 .span6 .category::before{
		left: 11px;
	}
}

@media only screen and (max-width: 1060px) {
	.itemid-161 .span6 h2, .itemid-332 .span6 h2, .itemid-184 .span6 h2{
		font-size: 19px;
	}
	.itemid-161 .span6 h3, .itemid-332 .span6 h3, .itemid-184 .span6 h3{
		font-size: 16px;
	}
	.itemid-161 .span6 p, .itemid-332 .span6 p, .itemid-184 .span6 p{
		font-size: 11px;
	}
}
@media only screen and (min-width: 600px) and (max-width: 992px) {	
	.newhome .bottomleft ul li,
	.newhome .bottomright .page-header h2 a,
	.newhome .bottomright .page-header h2 a::after{
		font-size: 10px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 768px) {
	.newhome .topright{
		display: flex;
		margin: 10px auto;
	}

	.newhome .home-deal,
	.newhome .top-game{
		float: left;
	}
}

@media only screen and (min-width: 768px) {
	.newhome .topsection{
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.newhome .topright .homedeal,
	.newhome .top-game .homebox.margin{
		margin-bottom: 17px;
	}
}

@media only screen and (max-width: 768px) {
	.footer-menu ul li .nav-child{
		right: 0;
	}
	.footer-menu ul li .nav-child a{
		padding: 0;
	}
	.promo-blog .items-row{
		padding: 5px;
	}
	.promo-blog .item h2{
		font-size: 17px;
	}
	.promo-blog .item h3{
		font-size: 15px;
	}
	.promo-blog .item a span{
		font-size: 9px;
	}
	.promo-blog .item .page-header{
		margin-top: 25px;
	}
	.promo-blog .item .header-img{
		top: -20px;
	}
	.newhome .home-deal,
	.newhome .top-game{
		max-width: 230px;
		margin: 10px auto;
	}
	.promo-blog .item .code{
		font-size: 1.5em;
		padding: 4.5px 0;
	}
	.newhome .winners .page-header h2{
		font-size: 1.2em;
	}
	.newhome .winners{
		margin: 10px auto;
	}
	.footer-menu ul li {font-size: 10px;}
	.footer-menu ul li a, .footer-menu .nav > li > span{padding: 10px;}
	.outside .footer-menu ul li.item-201 > span{padding: 5px 0;}
	.item-page h1{font-size: 30px;}
	.item-page h2{font-size: 25px;}

	.footer-menu .nav > li > a,
	.footer-menu .nav > li > span{
		padding: 10px 5px;
	}
	.footer-menu ul li.item-201 > span a{
		padding: 0;
	}
}
@media only screen and (max-width: 700px) {
	.itemid-161 .span6, .itemid-332 .span6, .itemid-184 .span6{
		width: 290px;
		margin: 10px auto;
		display: block;
		float: none;
	}
	.itemid-161 .span6 .category, .itemid-332 .span6 .category, .itemid-184 .span6 .category{
		width: 119px;
	}
	.itemid-161 .span6 .code, .itemid-332 .span6 .code, .itemid-184 .span6 .code{
		width:170px;
	}
	.itemid-161 .span6 .category::before, .itemid-332 .span6 .category::before, .itemid-184 .span6 .category::before{
		left: 15px;
	}
}
@media only screen and (max-width: 420px) {
	.promo-blog .item .header-img{
		top: -10px;
		left: 30%;
		max-width: 60%;
	}
	.promo-blog .items-row {
		padding: 0;
	}
}	

/* Custom 404*/
body.itemid-228{
	margin: 0;
}
body.itemid-228 #body{
	padding-left: 0;
	padding-right: 0;
}
body.itemid-228 .top-header{
	position: absolute;
}
body.itemid-228 .body-content{
	margin-top: 160px;
}
.item-page.errorpage{
	width: 100%;
	background: none;
	padding: 0;
	margin-bottom: 100px;
}
.item-page.errorpage .article-content{
	position: relative;
}
.item-page.errorpage .article-content .articleBody img{
	filter: brightness(75%);
	-webkit-filter: brightness(75%);
	-moz-filter: brightness(75%);
	-o-filter: brightness(75%);
	-ms-filter: brightness(75%);
	max-width: 100%;
}
.item-page.errorpage .text{	
    left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	color: #fff;
	transform: translateY(-50%);
}
.item-page.errorpage .text .button{
	margin: 10px auto;
	display: block;
	width: 280px;
	letter-spacing: 5px;
}
.item-page.errorpage .text h1{
	font-size: 5em;
	margin: 0;
}
.item-page.errorpage .text h2{
	font-size: 3em;
	margin: 0;
}
.item-page.errorpage .text h3{
	font-size: 2em;
	color: #fff;
	margin: 0;
}
.item-page.errorpage .text p{
	margin: 0;
}
body.itemid-228 #footer{
	margin-left: 0;
}
.item-page.errorpage .article-content,
.item-page.errorpage .article-content .articleBody,
.item-page.errorpage .articleBody > p,
.item-page.errorpage .article-content .articleBody img{
	height: 100%;
}
@media only screen and (min-height: 641px) {
	.item-page.errorpage .article-content .articleBody img{
		left: -400px;
		position: relative;
		max-width: none;
		height: 383px;
	}
}
@media only screen and (max-width: 500px)and (max-height: 640px){
	.item-page.errorpage .article-content,
	.item-page.errorpage .article-content .articleBody,
	.item-page.errorpage .articleBody > p,
	.item-page.errorpage .article-content .articleBody img{
		height: 200px;
	}
}
@media only screen and (min-width: 500px) {
	.item-page.errorpage .article-content .text{
		width: 500px;
	}
	.item-page.errorpage .articleBody > p{
		position: relative;
		overflow: hidden;
	}
	.item-page.errorpage .article-content .articleBody img{
		width: 1903px;
		height: 711px;
		left: 0;
	}
	.item-page.errorpage .text h1{
		font-size: 3em;
	}
	.item-page.errorpage .text h2{
		font-size: 2em;
	}
	.item-page.errorpage .text h3{
		font-size: 1.5em;
	}
	.item-page.errorpage .text .button{
		margin: 5px auto;
		font-size: 1em;
	}
}
@media only screen and (min-width: 680px) {
	.item-page.errorpage .article-content .text{
		width: 680px;
	}
	.item-page.errorpage .text h1{
		font-size: 5em;
	}
	.item-page.errorpage .text h2{
		font-size: 3em;
	}
	.item-page.errorpage .text h3{
		font-size: 2em;
	}	
}
@media only screen and (min-width: 900px) {
	.item-page.errorpage .text h1{
		font-size: 7em;
	}
	.item-page.errorpage .text h2{
		font-size: 5em;
	}
	.item-page.errorpage .text h3{
		font-size: 3em;
	}	
	.item-page.errorpage .text .button{
		margin: 10px auto;
		font-size: 1.5em;
	}
}
@media only screen and (min-width: 1400px) {
	.item-page.errorpage .article-content .articleBody img{
		width: 100%;
		height: auto;
		max-width: 100%;
		left: 0;
	}
}
@media only screen and (max-height: 640px){	
	.item-page.errorpage .text h1{
		font-size: 3em;
	}
	.item-page.errorpage .text h2{
		font-size: 2em;
	}
	.item-page.errorpage .text h3{
		font-size: 1em;
	}
	.item-page.errorpage .text .button{
		margin: 5px auto;
		font-size: 1em;
	}
}

/* NWD Style */

.fp-seo-text {
	padding: 0;
	margin-top: 5rem;
	margin-bottom: 5rem;
	display: flex;
}

.inside .fp-seo-text {
	display: none;
}

.fp-text {
	display: none;
	padding-left: 0;
}

.fp-text a {
	color: #face14;
}

.fp-text h3 {
	color: #7ec1a5;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}

.outside .fp-text {
	display: block;
}

.fp-text:first-of-type {
	padding-right: 30px;
}
@media only screen and (max-width: 767px){
	.fp-text:first-of-type {
		padding-right: 0px;
	}
}

.container.major-footer {
	/*padding: 0 15px;*/
}

.major-footer {
	background: #0f2717;
	border-radius: 10px;
	padding: 35px 15px;
	color: #face14;
}

.outside .major-footer {
	display:block;
}

@media (max-width: 767px) {
	.outside .major-footer {
		display: block;
	}
}

.major-menu {
	position: relative;
}

.major-menu ul {
    padding-left: 5rem;
}

.major-menu a {
	text-decoration: none;
	font-size: 16px;
}

.major-menu1 .custom,.major-menu2 .custom,.major-menu3 .custom,.major-menu4 .custom {
    padding-left: 5rem;
}

.major-menu .nav>li>a {
	padding: 6px 15px;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}	

.major-menu li>a:hover {
	background-color: transparent;
	text-decoration: underline;
}	

.major-menu1:before {
	content:url('../images/footer-icon1.png');
	position: absolute;
	top: -10px;
}

.major-menu2:before {
	content:url('../images/footer-icon2.png');
	position: absolute;
	top: -10px;
}

.major-menu3:before {
	content:url('../images/footer-icon3.png');
	position: absolute;
	top: -10px;
}

.major-menu4:before {
	content:url('../images/footer-icon4.png');
	position: absolute;
	top: -10px;
}

.copyright {
	margin-top: 3rem;
	display: none;
	font-size: 13px;
}

.outside .copyright{
  display: block;
	margin-top: 20px;
}

.intro-promotions {
	margin: 1rem 0 5rem;
}

.intro-text {
	color:#fff;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: none;
	font-size: 16px;
}

.newlp h3 {
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}

.newlp .item-page {
    padding: 20px 35px;
}

.newlp .home-banking {
     margin: 3rem auto;
}

@media only screen and (max-width: 780px) {
	.major-menu1:before,.major-menu2:before,.major-menu3:before,.major-menu4:before {
		top: 10px;
	}
}	

.new-lp-title {
	color:#fff;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: none;
	font-size: 16px;
}	

.new-lp-title h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #face14;
	font-size: 36px;
}	

.newlp .item-page.freespacebetween {
	margin-bottom: 25px;
}

.top-margin {
    margin-top: 25px;
}
/** Temp CSS **/

.footer-menu {
	display: flex;
	justify-content: center;
}
.footer-menu ul {
	margin: 10px auto;
	justify-content: center;
}
.footer-menu ul li .nav-child {
	display: none;
	position: absolute;
	min-width: 150px;
	max-width: 200px;
}
.footer-menu ul li.item-201 {
	display: block;
	margin-top: -8px;
}
.footer-menu ul li.item-201 .image-title {
	display: none;
}
.footer-menu ul li.item-201 img {
	width: 40px;
	margin-top: 5px;
	cursor: pointer;
}
@media (max-width: 768px) {
	.footer-menu ul li.item-127 {
		display: none;
	}
}
@media (min-width: 768px) {
	.footer-menu ul li.item-530 {
		display: none;
	}
}
@media (max-width: 576px) {
	.most-popular-articles {
		display: none!important;
	}
}
a {
	color: #fbcd15;
	text-decoration: underline;
	outline: 0;
}

a:visited, a:active, a:hover, a:focus {
	color: #fbcd15;
	text-decoration: none;
	outline: 0;
}

.major-menu1 .custom, .major-menu2 .custom, .major-menu3 .custom, .major-menu4 .custom {
	padding-left: 55px;
}
.pull-right {
	float: right;
}
@media (min-width: 1200px) {
	.h1, h1 {
		font-size: 2.2rem;
	}
}

/*Tournament page start*/

.itemid-1053 .page-header {
	color: #face14;
	text-align: center;
	margin-bottom: 25px
}
.itemid-1053 .category-desc {
	width: auto;
	color: #fff;
	font-size: 1.5em;
	background: rgba(11, 36, 20, 0.7) none repeat scroll 0 0;
	margin: 10px auto;
	display: block;
	padding: 15px;
}
.itemid-1306 .page-header {
	color: #face14;
	text-align: center;
	margin-bottom: 25px
}
.itemid-1306 .category-desc {
	width: auto;
	color: #fff;
	font-size: 1.5em;
	background: rgba(11, 36, 20, 0.7) none repeat scroll 0 0;
	margin: 10px auto;
	display: block;
	padding: 15px;
}
.tournaments .row {
	justify-content: center;
}

.tournaments span{
	color: #face14;
	font-size: 16px;
}
.tournaments p{
	color:#fff;
	font-size: 14px;
	margin-bottom: 2px;
}
.cardT {
	color: #fff;
	font-size: 1.5em;
	background: rgba(11, 36, 20, 0.7) none repeat scroll 0 0;
	margin: 10px 0;
	display: block;
	padding: 15px;
}
.container.tournaments {
	padding-left: 0;
	padding-right: 0;
}
.card-title {
	margin-bottom: 1rem;
	font-size: 20px;
	font-weight: bold;
	color: #face14;
}
/*Timeline*/
body.itemid-1312 {
	background: #1B734F ;
}
.itemid-1312 #body {
	background: linear-gradient(180deg, #1B734F 0.01%, #0E5537 100%);
}
.itemid-1312 .top-triangle {
	z-index: 0;
}
.itemid-1312 .bottom-triangle {
	z-index: 0;
}
.timeline-content {
	margin-top: 45px;
}
.timeline-content .container {
	padding: 0;
}
h1.page-header {
	color: #FFC300;
	font-size: 36px;
	padding-top: 130px;
	margin-bottom: -5px;
	margin-left: -2px;
}
p{
	color: #ffffff;
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	line-height: 22px;
	letter-spacing: 1px;
}
.logoBox {
	text-align: center;
	position: relative;
	width: auto;
	margin: auto;
}
.firstLine {
	position: absolute;
	width: 145px;
	top: 115px;
	left: 45px;
}
.boxWrapper {
	display: flex;
	justify-content: center;
	max-width: 85%;
	margin: 30px auto 74px;
}
.box {
	width: auto;
	height: 72px;
	background: #0E5537;
	border-radius: 8px;
	margin: 7px 6px;
	display: flex;
	align-items: center;
	justify-content: left;
}
.box span {
	font-weight: bold;
	font-size: 22px;
	line-height: 24px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #FDE529;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
	margin-left: 24px;
}
.boxImage {
	width: 52px;
	margin-left: 25px;
}
.logoLine {
	position: absolute;
	top: 110px;
	left: calc(50% - 40px);
	width: 50px;
	height: 141px;
}
.timelineCards {
	max-width: 675px;
	margin: 70px auto 0;
}

.singleCard {
	max-width: 412px;
	background: #0E3E2A;
	box-shadow: 0 4px 4px rgba(0,0,0,0.5);
	border-radius: 8px;
	padding:0 20px;
	margin-bottom: 91px;
	float: left;
	position: relative;
	display: none;
}
.singleCard div.row {
	background: #0E3E2A;
	position: relative;
	z-index: 1;
	padding: 20px 0;
}
.singleCard .leftLine {
	display: none;
}
.singleCard:nth-child(2n+1) .leftLine{
	display: block;
}
.singleCard .rightLine {
	display: block;
}
.singleCard:nth-child(2n+1) .rightLine{
	display: none;
}
.leftLine {
	position: absolute;
	z-index: 0;
	width: 160px;
	left: 8px;
	transform: rotate(-20deg);
	bottom: -130px;

}
.rightLine {
	position: absolute;
	right: 3px;
	z-index: 0;
	width: 160px;
	transform: rotate(20deg);
	bottom: -130px;
}
.bottomLine {
	top: -168px;
	position: absolute;
	width: 123px;
	left: -48px;
	z-index: -1;
}
.singleCard:nth-child(2n+1) {
	max-width: 412px;
	background: #0E3E2A;
	box-shadow: 0 4px 4px rgba(0,0,0,0.5);
	border-radius: 8px;
	padding:0 20px;
	margin-bottom: 91px;
	float: right;
	position: relative;
}

.singleCard:last-child img.leftLine,.singleCard:last-child img.rightLine {
	display: none!important;
}
.card-year {
	margin-bottom: 0;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 1px;
	color: #FFFFFF;
	text-transform: uppercase;
}
.card-title {
	font-style: normal;
	font-weight: bold;
	font-size: 22px;
	line-height: 25px;
	letter-spacing: 1px;
	color: #FACE14;
	text-transform: uppercase;
	margin-bottom: 7px;
}
p.card-text  {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 1px;
	color: #FFFFFF;
	margin:0;
}
.end-timeline {
	display: flex;
	justify-content: center;
	width: auto;
	margin: auto;
	position: relative;
}
.end-timeline img{
	margin: -20px 0 50px 0;
}
.show {
	display: block;
}
.hidden {
	display: none;
}
a#loadMore:hover {
	opacity: 1;
}
.timeline-pic {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.card-image {
	margin-left: -111px;
	margin-top: 10px;
}
img.yellowBackround {
	margin-left: 6px;
}
@media (max-width: 767px) {
	.boxWrapper {
		flex-direction: column;
		max-width: 100%;
		margin: 43px auto 53px;
	}
	.leftLine {
		bottom: -130px;
		left:51px;
		transform: rotate(-11deg);
	}
	.rightLine {
		bottom: -130px;
		right: 45px;
		transform: rotate(11deg);
	}
	.singleCard:nth-child(2n+1) {
		max-width: 285px;
		margin-bottom: 164px;
	}
	.singleCard {
		max-width: 285px;
		margin-bottom: 164px;
	}
	.singleCard  .col-10 {
		width: 100%;
	}
	.singleCard .col-2 {
		position: absolute;
		left: 175px;
	}
	.timelineCards {
		max-width: 340px;
	}
	.timeline-pic {
		display: none;
	}
	.end-timeline img {
		margin: -90px 0 10px 0;
	}
	.itemid-1312 .top-triangle {
		display: none;
	}
	.itemid-1312 .bottom-triangle {
			 display: none;
	}
	.timeline-pic-mob img.yellowBackround {
		margin-left: -130px;
		margin-top: -55px;
		width: 140px;
	}
	.timeline-pic-mob .card-image {
		margin-left: -114px;
		margin-top: -60px;
	}
	.card-title-year {
		margin-top: 91px;
	}
	/*.box {*/
	/*	justify-content: left;*/
	/*	padding-left: 18px;*/
	/*	margin: 10px 0;*/
	/*}*/
	p.card-text  {
		padding-right: 0;
	}
	.firstLine {
		left: 37px;
		transform: rotate(7deg);
	}
	.timelineLogo {
		max-width: 230px;
	}
}
@media (max-width: 991px) {
	.boxWrapper {
		max-width: 100%;
	}
	.box span {
		margin-left: 24px;
	}
}
@media (max-width: 320px) {
	.timelineCards {
		max-width: 310px;
	}
	.rightLine {
		right: 65px;
	}
	.leftLine {
		left: 75px;
	}
	.firstLine {
		left: 22px;
		transform: rotate(8deg);
	}
}
@media (min-width: 768px) {
	.timeline-pic-mob {
		display: none;
	}
	.card-title-year {
		max-width: 288px;
	}
}

/*pagination*/

.page-link {
	color: #ffc300;
	background-color: #00000000;
	border: none;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	text-decoration: underline;
	text-underline-offset: 2px;
}
ul li:nth-child(2) a {
	text-decoration: none;
	background-color: #00000000;
}
ul li:nth-last-child(2) a {
	text-decoration: none;
}
.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color:#00000000;
	border-color: #00000000;
}
.icon-angle-right:after {
	content: "\0002c3";
	display: inline-flex;
	align-self: center;
	margin-left: -5px;
	text-decoration: none;
}
.icon-angle-left:before {
	content: "\00003c";
	display: inline-flex;
	align-self: center;
	margin-right: -5px;
	text-decoration: none;
}
.page-item.disabled .page-link {
	color: #fff;
	background-color: #00000000;
	border-color: #00000000;
	text-decoration: none;
}
.label-warning {
	display: none;
}
