@charset "utf-8";



/* css reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

/* remember to define visible focus styles! 
:focus {
	outline: ?????;
} */

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* button effect reset for mac IOS version */
input[type="button"] {
	appearance: none;
	-o-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}

input[type="submit"],
select {
	appearance: none;
	-o-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}

button {
	appearance: none;
	-o-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
}



a {
	text-decoration: none;
}

.clear {
	display: block;
	width: 100%;
	overflow: hidden;
	clear: both;
}


div,
select,
input,
textarea,
span,
b,
i,
a,
button,
td,
th,
tr,
span,
b,
ul,
li {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* css reset */


a.color-button,
button.color-button,
input.color-button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	border: none;
	cursor: pointer;

	/*
	transition:all ease 0.3s;
	-moz-transition:all ease 0.3s;
	-ms-transition:all ease 0.3s;
	-o-transition:all ease 0.3s;
	-webkit-transition:all ease 0.3s;
	*/
}

.square {
	border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
}



a.color-button:hover,
button.color-button:hover,
input.color-button:hover {
	/*
	transition:all ease 0.3s;
	-moz-transition:all ease 0.3s;
	-ms-transition:all ease 0.3s;
	-o-transition:all ease 0.3s;
	-webkit-transition:all ease 0.3s;
	*/
}

a.main-button,
button.main-button,
input.main-button {
	background: none;
	color: #fff;
	border: 1px solid #44455d;
}

a.main-button:hover,
button.main-button:hover,
input.main-button:hover {
	color: #10122b;
	background: #44455d;
}


a.pink-button,
button.pink-button,
input.pink-button {
	background: #ed3657;
	color: #fff;
	border: 1px solid #ed3657;
}

a.pink-button:hover,
button.pink-button:hover,
input.pink-button:hover {
	color: #fff;
	background: #f94b6b;
	border: 1px solid #f94b6b;
}


a.lightblue-button,
button.lightblue-button,
input.lightblue-button {
	background: #2bb7ad;
	color: #fff;
	border: 1px solid #2bb7ad;
}

a.lightblue-button:hover,
button.lightblue-button:hover,
input.lightblue-button:hover {
	color: #fff;
	background: #4cd3c9;
	border: 1px solid #4cd3c9;
}

input.input-field,
select.input-field {
	padding: 10px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

input.input-field::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #66678b;
}

input.input-field::-moz-placeholder {
	/* Firefox 19+ */
	color: #66678b;
}

input.input-field:-ms-input-placeholder {
	/* IE 10+ */
	color: #66678b;
}

input.input-field:-moz-placeholder {
	/* Firefox 18- */
	color: #66678b;
}

textarea.input-field {
	padding: 10px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	resize: none;
	height: 100px;
}


.left {
	float: left;
}

.right {
	float: right;
}






/* editable css */

@font-face {
	font-family: 'Lato-Black';
	src: url('../fonts/Lato-Black.eot');
	src: url('../fonts/Lato-Black.woff2') format('woff2'),
		url('../fonts/Lato-Black.woff') format('woff'),
		url('../fonts/Lato-Black.ttf') format('truetype'),
		url('../fonts/Lato-Black.svg#Lato-Black') format('svg'),
		url('../fonts/Lato-Black.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Lato-Regular';
	src: url('../fonts/Lato-Regular.eot');
	src: url('../fonts/Lato-Regular.woff2') format('woff2'),
		url('../fonts/Lato-Regular.woff') format('woff'),
		url('../fonts/Lato-Regular.ttf') format('truetype'),
		url('../fonts/Lato-Regular.svg#Lato-Regular') format('svg'),
		url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Lato-Light';
	src: url('../fonts/Lato-Light.eot');
	src: url('../fonts/Lato-Light.woff2') format('woff2'),
		url('../fonts/Lato-Light.woff') format('woff'),
		url('../fonts/Lato-Light.ttf') format('truetype'),
		url('../fonts/Lato-Light.svg#Lato-Light') format('svg'),
		url('../fonts/Lato-Light.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Lato-Bold';
	src: url('../fonts/Lato-Bold.eot');
	src: url('../fonts/Lato-Bold.woff2') format('woff2'),
		url('../fonts/Lato-Bold.woff') format('woff'),
		url('../fonts/Lato-Bold.ttf') format('truetype'),
		url('../fonts/Lato-Bold.svg#Lato-Bold') format('svg'),
		url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}


body {
	margin: 0 auto;
	font-family: "Lato-Light";
	font-size: 10pt;
	background: #10122b;
}





/*css */



















/*main css */
.main-left {
	position: relative;
	width: 20%;
	min-height: 1500px;
	overflow-y: auto;
	overflow-x: hidden;
	background: #10122b;
	padding: 20px 20px;
	float: left;
}

.main-right {
	position: relative;
	float: right;
	width: 80%;
	height: 100%;
	background: #212138;
	min-height: 1500px;
	padding: 20px 20px;
}

.main-left .logo {
	width: 100%;
	padding-bottom: 20px;
}

.main-left .logo a {
	display: block;
}

.main-left .logo img {
	width: 100%;
}


.main-left .login-before {
	display: block;
	overflow: hidden;
}

.main-left .login-before a {
	display: block;
	float: left;
	width: 50%;
	padding: 10px 10px;
	color: #fff;
	border: 1px solid #44455d;
	text-align: center;
	text-transform: uppercase;
}

.main-left .login-before a.login {
	color: #ed3657;
	border-right: none;

	border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
}

.main-left .login-before a.signup {
	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-ms-border-radius: 0px 3px 3px 0px;
	-o-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
}


.main-left .login-before a:hover {
	background: #44455d;
	color: #10122b;
}



.main-left .login-after {
	display: block;
	overflow: hidden;
}

.main-left .login-after p {
	color: #fff;
	display: block;
	padding-top: 10px;
}

.main-left .login-after span.creditbalance {
	display: block;
	overflow: hidden;
	padding: 10px 0px 20px;
}

.main-left .login-after span.creditbalance b {
	color: #acacac;
	float: left;
}

.main-left .login-after span.creditbalance i {
	color: #2bb7ad;
	float: right;
}

.main-left .login-after a {
	display: block;
	width: 100%;
	padding: 10px 10px;
	color: #fff;
	border: 1px solid #44455d;
	text-align: center;
	text-transform: uppercase;
	font-size: 10pt;
}

.main-left .login-after a.mydashboard {
	color: #ed3657;

	border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
}

.main-left .login-after .dashboard-mobile {
	display: block;
	border: 1px solid #44455d;
	margin-bottom: 10px;
	border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
}

.main-left .login-after .dashboard-mobile a.mydashboard {
	border: none;
	margin-bottom: 0;
}

.main-left .login-after .dashboard-mobile ul {
	padding: 10px 20px 20px;
	display: none;
}

.main-left .login-after .dashboard-mobile ul li a {
	display: block;
	padding: 0;
	margin-bottom: 15px;
	text-align: left;
	color: #fff;
	text-transform: capitalize;
	font-size: 10pt;
	border: none;
}

.main-left .login-after .dashboard-mobile ul li a:hover {
	background: none;
	color: #ed3657;
}

.main-left .login-after .dashboard-mobile ul li:last-child a {
	margin-bottom: 0;
}

.main-left .login-after a.makedeposit {
	margin-bottom: 10px;
	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-ms-border-radius: 0px 3px 3px 0px;
	-o-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
}


.main-left .login-after a:hover {
	background: #44455d;
	color: #10122b;
}

.highlight {
	display: block;
	padding: 30px 0px 20px;
}

.highlight .h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	border-bottom: 1px solid #44455d;
}

.highlight ul {
	padding: 10px 0px 0px;
}

.highlight ul li {
	display: block;
	padding: 10px 0px 10px;

}

.highlight ul li a {
	color: #ed3657;
	display: block;
	text-transform: capitalize;
	font-size: 11pt;
}

.highlight ul li a i {
	margin-right: 5px;
	vertical-align: middle;
	color: #ed3657;
	width: 20px;
}


.navigation {
	display: block;
	padding: 30px 0px 20px;
}

.navigation .h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #44455d;
}

.navigation ul {
	padding: 10px 0px 10px;
	width: 100%;
}

.navigation ul li {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	font-size: 11pt;
	text-transform: capitalize;
}

.navigation ul li a {

	color: #66678b;
	text-transform: capitalize;
}


.navigation ul li a:hover {
	color: #ed3657;
}

.navigation ul li.active a {
	color: #ed3657;
}

.navigation-sporttrade {
	display: block;
	padding: 30px 0px 20px;
}

.navigation-sporttrade .h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #44455d;
}

.navigation-sporttrade ul {
	width: 100%;
	padding: 0px 0px 10px;
}

.navigation-sporttrade ul li {
	display: block;
	margin: 0px 0px;
	padding: 10px 0px;
	text-transform: capitalize;
}

.navigation-sporttrade ul li a {

	color: #acacac;
	font-size: 11pt;
	text-transform: capitalize;
}

.navigation-sporttrade ul li a:hover {
	color: #ed3657;
}

.top-action-header {
	display: table;
	width: 100%;
	margin-bottom: 30px;
}

.search-on-site {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding-right: 10px;
}

.search-on-site input {
	padding-left: 40px;
	height: 37px;
}

.search-on-site i {
	position: absolute;
	top: 50%;
	left: 14px;
	color: #66678b;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.top-action-header.beforelogin .mobile-menu {
	width: 38px;
	height: 37px;
	display: none;

}

.top-action-header.beforelogin .mobile-menu i {
	height: 37px;
	width: 37px;
	font-size: 18pt;
	color: #fff;
	line-height: 36px;
	cursor: pointer;
}

.top-action-header.beforelogin ul {
	display: table-cell;
	vertical-align: middle;
	width: 330px;
}

.top-action-header.beforelogin ul li {
	display: inline-block;
	margin: 0px 3px;
	vertical-align: middle;
}

.top-action-header.beforelogin ul li a {
	height: 37px;
	line-height: 14px;
	display: block;
	position: relative;

}

.top-action-header.beforelogin ul li.top-action-register a {
	min-width: 151px;
}

.top-action-header.beforelogin ul li:first-child {
	margin-left: 0;
}

.top-action-header.beforelogin ul li:last-child {
	margin-right: 0;
}

.top-action-header.beforelogin ul li.top-action-cart a i {
	color: #66678b;
	width: 37px;
	height: 37px;
	line-height: 37px;
	text-align: center;
	font-size: 20pt;
}

.top-action-header.beforelogin ul li.top-action-cart a:hover i {
	color: #fff;
}

.top-action-header.beforelogin ul li.top-action-cart a span {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 23px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	background: #ed3657;
	color: #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	font-size: 8pt;

}

.divline {
	width: 100%;
	display: block;
	clear: both;
	height: 2px;
	background: #ed3657;
}


.top-action-header.afterlogin ul {
	display: table-cell;
	vertical-align: middle;
	width: 204.5px;
}

.top-action-header.afterlogin ul li {
	display: inline-block;
	margin: 0px 3px;
	vertical-align: middle;
}

.top-action-header.afterlogin ul li a {
	height: 37px;
	line-height: 14px;
	display: block;
	position: relative;
}

.top-action-header.afterlogin ul li:first-child {
	margin-left: 0;
}

.top-action-header.afterlogin ul li:last-child {
	margin-right: 0;
}

.top-action-header.afterlogin ul li.top-action-cart a i {
	color: #66678b;
	width: 37px;
	height: 37px;
	line-height: 37px;
	text-align: center;
	font-size: 20pt;
}

.top-action-header.afterlogin ul li.top-action-cart a:hover i {
	color: #fff;
}

.top-action-header.afterlogin ul li.top-action-cart a span {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 23px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	background: #ed3657;
	color: #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	font-size: 8pt;

}

.toppart-cover {
	display: flex;
	justify-content:space-between;
	width: 100%;
	margin-bottom: 20px;
}

.embed-video {
	width: 49%;
}

.cta-banner {
	width: 49%;
	background: url(../images/cta-banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}

.cta-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.cta-banner-content {
	width: 100%;

}




.cta-banner-content.first-content {
	padding: 50px 30px;

}

.cta-banner-content.first-content div {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 17pt;
	display: block;
	padding-bottom: 15px;
	text-transform: uppercase;
}

.cta-banner-content.first-content .h1 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 27pt;
	display: block;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.cta-banner-content.first-content .h1 b {
	color: #ed3657;
}

.cta-banner-content.first-content a {
	display: inline-block;
	vertical-align: middle;
	font-family: "Lato-Regular";
	margin-bottom: 10px;
}

.cta-banner-content.first-content a.viewfreetips {
	margin-right: 20px;
}

.cta-banner-content.second-content {
	padding: 20px 30px;
	position: relative;
	display: none;
}


.cta-banner-content.second-content .h1 {
	font-size: 15pt;
	font-family: "Lato-Regular";
	color: #fff;
	line-height: 20pt;
	padding-bottom: 20px;
}

.cta-banner-content.second-content .h1 b {
	color: #2bb7ae;
}

.cta-banner-content.second-content form ul {
	width: 100%;
	max-width: 500px;
	overflow: hidden;
}

.cta-banner-content.second-content form ul li {
	display: block;
	margin-bottom: 2%;
}

.cta-banner-content.second-content form ul li:nth-child(odd) {
	float: left;
	width: 49%;
}

.cta-banner-content.second-content form ul li:nth-child(even) {
	float: right;
	width: 49%;
}

.cta-banner-content.second-content form ul li input.cta-input {
	padding: 10px 15px;
	background: #fff;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #000;
	font-family: "Lato-Light";
	border: none;
}

.cta-banner-content.second-content form ul li select {
	padding: 10px 15px;

	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #000;
	font-family: "Lato-Light";
	border: none;

	background: #fff url(../images/cta-down.png) no-repeat;
	background-size: 14px 7px;
	background-position: right 10px center;
}

.cta-banner-content.second-content form ul li .cta-mobile {
	display: block;
	width: 100%;
	overflow: hidden;
}

.cta-banner-content.second-content form ul li .cta-mobile input#mobile-countrycode {
	width: 30%;
	float: left;

	border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;

	border-right: 1px solid #d7d7d7;
}

.cta-banner-content.second-content form ul li .cta-mobile input#mobile-countrytel {
	width: 70%;
	float: left;
	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-ms-border-radius: 0px 3px 3px 0px;
	-o-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
	border-left: none;
}

.cta-banner-content.second-content form ul li.capcha {
	width: 100%;
	display: block;
	margin: 20px 0px;
	color: #fff;
}

.cta-banner-content.second-content form ul li.submitform {
	width: 100%;
	display: block;
	margin: 10px 0px;
}



.news {
	display: block;
	width: 100%;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #44455d;
	padding: 20px 50px 20px 20px;
	position: relative;
	margin-bottom: 30px;
}

.news.removed-item {
	animation: removed-item-animation .6s cubic-bezier(.55, -0.04, .91, .94) forwards;
}

@keyframes removed-item-animation {
	from {
		opacity: 1;
		transform: scale(1);
	}

	to {
		opacity: 0;
		transform: scale(0);
		margin: 0;
		padding: 0 0;
	}
}

.notification {
	position: relative;
}

.notification ul {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	list-style-type: none;
	min-width: 900px;
	overflow: hidden;
}

.notification ul li {
	display: block;
	font-family: "Lato-Regular";
	font-size: 9pt;
	text-align: center;
}

.notification ul li a {
	display: inline-block;
	color: #acacac;
}

.notification ul li a:hover {
	text-decoration: underline;
}

.notification ul li span {
	display: inline-block;
	margin: 0px 5px 0px 5px;
	color: #ffffff;
}

.notification p {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	text-transform: uppercase;
	margin-right: 10px;
}

.news i.close-newsnoti {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	color: #acacac;
	font-size: 14pt;
	cursor: pointer;
}

.homepage-latesttips {
	display: block;
	width: 100%;
	padding: 0px 0px 20px;
}

table.main-table {
	width: 100%;
}

table.main-table>thead>tr {
	border-bottom: 2px solid #ed3657;
}

table.main-table>thead>tr>th {
	padding: 0px 0px 10px 0px;
	text-transform: uppercase;
	color: #fff;
	font-family: "Lato-Regular";
	text-align: left;
	font-size: 12pt;
}

table.main-table thead tr th a.showallgames {
	float: right;
	color: #66678b;
	font-size: 9pt;
}

table.main-table thead tr th a.showallgames:hover {
	color: #2bb7ae;
}

table.main-table>tbody>tr {
	border-bottom: 1px solid #5c5d75;
}

table.main-table>tbody>tr>td {
	padding: 10px 10px;
}


/*today tips table*/
table.today-tips>tbody>tr>td {
	font-family: "Lato-Regular";
	vertical-align: middle;
}

table.today-tips tbody tr td .date-bettingtype {
	display: block;
	width: 100%;
}

table.today-tips tbody tr td .date-bettingtype p {
	color: #66678b;
	font-size: 9pt;
	display: inline-block;
	vertical-align: middle;
}

table.today-tips tbody tr td .date-bettingtype p b {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 10px;
	padding: 5px 10px;
	color: #fff;
	font-size: 8pt;
	background: #10122b;
}

table.today-tips tbody tr td .event-match {
	display: block;
	width: 100%;
	padding: 10px 0px;
}

table.today-tips tbody tr td .event-match p {
	color: #acacac;
	font-size: 10pt;
	line-height: 13pt;
}

table.today-tips tbody tr td .event-match p a {
	color: #acacac;
	display: inline-block;
	margin-right: 20px;
}

table.today-tips tbody tr td .event-match p a:hover {
	color: #ed3657;
	text-decoration: underline;
}

table.today-tips tbody tr td .event-match p b {
	color: #fff;
	font-size: 10pt;
	display: inline-block;
	vertical-align: baseline;
	margin-right: 20px;
	margin-bottom: 3px;
}


table.today-tips tbody tr td .event-match p b a {
	color: #fff;
}

table.today-tips tbody tr td .event-match p i {
	display: inline-block;
	vertical-align: baseline;
	color: #acacac;
	font-size: 10pt;
}

table.today-tips tbody tr td .tipster-link {
	display: block;
	text-align: left;
	white-space: nowrap;
}

table.today-tips tbody tr td .tipster-link i {
	color: #ed3657;
	display: inline-block;
	vertical-align: top;
	font-size: 8pt;
	margin-right: 5px;
}

table.today-tips tbody tr td .tipster-link a {
	display: inline-block;
	vertical-align: bottom;
	color: #ed3657;
	font-size: 10pt;
	text-transform: capitalize;
}

table.today-tips tbody tr td .tipster-link a:hover {
	text-decoration: underline;
}


table.today-tips tbody tr td .logintoview {
	float: right;

}


table.today-tips tbody tr td .logintoview a {
	width: 250px;
	font-family: "Lato-Regular";
}

table.today-tips tbody tr td .logintoview ul {
	text-align: right;
}

table.today-tips tbody tr td .logintoview ul li {
	display: inline-block;
	vertical-align: middle;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: left;
	text-transform: uppercase;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	border: none;
	background: #44455d;
	color: #fff;
	font-family: "Lato-Regular";
	width: 200px;
	margin: 3px 0px;
}

table.today-tips tbody tr td .logintoview ul li span {
	color: #2bb7ad;
	text-transform: uppercase;
	display: block;
	padding-top: 3px;

}


.tipster-profile-running-tips table.today-tips .buythisbundle ul {
	text-align: right;
}

.tipster-profile-running-tips table.today-tips .buythisbundle ul li {
	display: inline-block;
	vertical-align: middle;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: left;
	text-transform: uppercase;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	border: none;
	background: #44455d;
	color: #fff;
	font-family: "Lato-Regular";
	width: 200px;
	margin: 3px 0px;
}

.tipster-profile-running-tips table.today-tips .buythisbundle ul li span {
	color: #2bb7ad;
	text-transform: uppercase;
	display: block;
	padding-top: 3px;

}

/*today tips table*/



.homepage-gadget {
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 20px 0px 50px;
}

.homepage-gadget-left {
	display: block;
	float: left;
	padding-right: 20px;
	width: 60%;
	height: 335px;
}

.homepage-gadget-left .soccernews {
	background: #10122b;
	display: block;
	width: 100%;
}

.homepage-gadget-left .news-header {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	padding: 15px 15px;
	font-family: "Lato-Regular";
	border-bottom: 2px solid #ed3657;
}

.homepage-gadget-left .news-header a.viewall {
	float: right;
	display: block;
	color: #66678b;
	font-size: 9pt;
}

.homepage-gadget-left .news-header a.viewall:hover {
	color: #2bb7ae;
}

.homepage-gadget-left .news-content {
	display: block;
	width: 100%;
	overflow: hidden;
}

ul.news-image-list {
	float: left;
	width: 60%;
	height: 290px;
}

ul.news-image-list li {
	display: block;
	width: 100%;
	opacity: 0;

	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

.homepage-gadget-left .news-image {
	height: 290px;
	width: 100%;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
	position: relative;
	display: none;


}

.homepage-gadget-left .news-image-list li.active {
	opacity: 1;

	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

.homepage-gadget-left .news-image-list li.active .news-image {
	display: block;

}

.homepage-gadget-left .news-image-list li .news-image {
	display: none;

}

.homepage-gadget-left .news-date {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.homepage-gadget-left .news-date span {
	background: #ed3657;
	color: #fff;
	padding: 9px 10px;
	display: block;
	width: 130px;
}

.homepage-gadget-left .news-date b {
	display: block;
	width: 100%;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	padding: 13px 10px;
	font-size: 10pt;
	height: 47px;
	overflow: hidden;
}

.homepage-gadget-left .news-list {
	width: 40%;
	padding-right: 5px;
	height: 290px;
	overflow-y: auto;
	overflow-x: hidden;
}

.homepage-gadget-left .news-list ul {
	width: 100%;
}

.homepage-gadget-left .news-list ul li {
	display: block;
	margin: 0 0 3px 0;
	padding: 10px 10px;
	color: #fff;
	background: #44455d;
	border-top: 1px solid #2c2d46;
	border-bottom: 1px solid #2c2d46;
	cursor: pointer;

}

.homepage-gadget-left .news-list ul li:last-child {
	margin-bottom: 0;
}


.homepage-gadget-left .news-list ul li.active {
	background: #10122b;
	border-top: 1px solid #10122b;
	border-bottom: 1px solid #10122b;
}

.homepage-gadget-left .news-list ul li b {
	display: block;
	font-size: 8pt;
	color: #acacac;
	padding-bottom: 5px;
}

.homepage-gadget-left .news-list ul li p {
	color: #fff;
	font-size: 10pt;
	line-height: 14pt;
	height: 36px;
	overflow: hidden;
}


/* width */
.homepage-gadget-left .news-list::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.homepage-gadget-left .news-list::-webkit-scrollbar-track {
	background: #10122b;

}

/* Handle */
.homepage-gadget-left .news-list::-webkit-scrollbar-thumb {
	background: #44455d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* Handle on hover */
.homepage-gadget-left .news-list::-webkit-scrollbar-thumb:hover {
	background: #555;
}


.homepage-gadget-right {
	display: block;
	width: 100%;
}

.weekly-toptipster {
	display: block;
	width: 100%;
	background: #10122b;
}

.toptipster-header {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	padding: 15px 15px;
	font-family: "Lato-Regular";
	border-bottom: 2px solid #ed3657;
}

.toptipster-header a.viewall {
	float: right;
	display: block;
	color: #66678b;
	font-size: 9pt;
}

.toptipster-header a.viewall:hover {
	color: #2bb7ae;
}

.toptipster-content {
	padding: 15px 10px 15px 10px;
	overflow: hidden;
}

ul.toptipster-selection {
	padding: 5px 0px 10px;
	text-align: center;
	display: block;
	width: 100%;
	overflow: hidden;
}

ul.toptipster-selection li {
	display: block;
	width: 25%;
	float: left;
	color: #66678b;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 10pt;
	font-family: "Lato-Regular";
}

ul.toptipster-selection li a {
	color: #66678b;
	padding: 5px 5px;
}

ul.toptipster-selection li a:hover {
	color: #eb3657;
}

ul.toptipster-selection li.active a {
	color: #fff;
}

.toptipster-tab {
	display: none;
	width: 100%;
}

#junior-toptipster {
	display: block;
}

ul.toptipster-list {
	width: 100%;
	display: block;

}

ul.toptipster-list li {
	display: block;
	padding: 0px 5px;
	margin: 0 0;
	position: relative;
	text-align: center;
}

ul.toptipster-list li:hover {
	background: #20213a;
}

ul.toptipster-list li>a {
	display: block;
	width: 100%;
	padding: 18px 0px 18px;
	position: relative;
	overflow: hidden;
	color: #fff;
}

ul.toptipster-list li a .toptipster-profile {
	display: block;
	width: 100%;
}

ul.toptipster-list li a .toptipster-profile p {
	color: #fff;
	display: block;
	padding-bottom: 5px;
	text-transform: uppercase;
}

ul.toptipster-list li a .toptipster-profile .tipster-wpf {
	display: block;
	width: 100%;
	overflow: hidden;
}

ul.toptipster-list li a .toptipster-profile .tipster-wpf span {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	margin: 3px 5px;
	font-family: "Lato-Regular";
}

ul.toptipster-list li a .toptipster-profile .tipster-wpf span b {
	margin-right: 5px;
}

.win {
	color: #269f6c;
}

.push {
	color: #009fce;
}

.fail {
	color: #c02555;
}

ul.toptipster-list li .followhome {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 999;
}


.follow-button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	border: 1px solid #44455d;
	cursor: pointer;
	color: #fff;
	width: 100px;
}



.follow-button:hover {
	color: #10122b;
	background: #44455d;
}


.unfollow-button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	border: 1px solid #44455d;
	cursor: pointer;
	color: #10122b;
	background: #44455d;
	width: 100px;
}


.unfollow-button:hover {
	color: #fff;
	background: none;
}


/* width */
ul.toptipster-list::-webkit-scrollbar {
	width: 5px;
}

/* Track */
ul.toptipster-list::-webkit-scrollbar-track {
	background: #10122b;

}

/* Handle */
ul.toptipster-list::-webkit-scrollbar-thumb {
	background: #44455d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* Handle on hover */
ul.toptipster-list::-webkit-scrollbar-thumb:hover {
	background: #555;
}





/*footer*/
.footer {
	padding: 50px 30px 20px;
	background: #07091d;
	display: block;
}

.footer-gadget {
	display: block;
	width: 100%;
	padding-bottom: 20px;
}

.footer-left {
	display: block;
	width: 100%;
}

.footer-right {
	display: block;
	width: 100%;
}

.footer-left .footer-logo {
	width: 260px;
	padding-right: 10px;
	display: inline-block;
	margin-bottom: 10px;
	vertical-align: middle;
}

.footer-left .footer-logo img {
	width: 100%;
}

.footer-left p {
	color: #fff;
	font-size: 10pt;
	display: block;
}

.footer-right p {
	display: block;
	color: #acacac;
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 20px;
}

.footer-left ul {
	padding: 0px 0px 0px 20px;
	display: inline-block;
	vertical-align: middle;
}

.footer-left ul li {
	display: inline-block;
	text-align: left;
	margin-right: 20px;
	vertical-align: middle;
	margin-bottom: 20px;
	cursor: pointer;
}

.footer-left ul li:last-child {
	margin-right: none;
}

.footer-left ul li img {
	width: 100%;
}

.footer-gateway {
	display: block;
	width: 100%;
	padding-bottom: 0px;

}

.footer-gateway .h1 {
	color: #fff;
	font-size: 12pt;
	padding-bottom: 10px;
	text-transform: uppercase;
}

ul.paymentimg-list {
	width: 100%;
	overflow: hidden;
}

ul.paymentimg-list li {
	float: left;
	width: 84px;
	height: 45px;
	background-color: #fff !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: contain !important;
	margin: 5px 15px 5px 0px;
	padding: 5px 5px;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: 1px solid #ebebeb;
}

ul.paymentimg-list li a {
	display: block;
	width: 100%;
	height: 100%;
}

ul.paymentimg-list li:last-child {
	margin-right: 0;
}


.footer-bottom {
	display: block;
	padding: 30px 0px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}

.footer-sitemap {
	display: block;
	float: left;
	width: 20%;
	padding-right: 20px;
}

.footer-sitemap>span {
	color: #fff;
	display: block;
	margin-bottom: 25px;
}

.footer-sitemap>ul>li {
	display: block;
	margin-bottom: 20px;
	padding: 0;
	font-size: 10pt;
}

.footer-sitemap>ul>li:last-child {
	margin-bottom: 0;
}

.footer-sitemap>ul>li a {

	color: #acacac;
}

.footer-sitemap>ul>li a:hover {
	color: #2bb7ae;
}

.footer-sitemap.social-list li a {
	display: inline-block;
	margin-right: 25px;
	color: #ed3657;
	font-size: 12pt;
	margin-bottom: 10px;
}

.footer-sitemap.social-list li a:last-child {
	margin-right: none;
}

.footer-sitemap.social-list li a:hover {
	color: #66678b;
}

.copyright {
	display: block;
	width: 100%;
	overflow: hidden;
	padding-top: 20px;
}

.copyright p {
	color: #fff;
	font-size: 10pt;
	float: left;
	line-height: 15pt;
}

.copyright ul {
	float: right;
}

.copyright ul li {
	display: inline-block;
	margin: 3px 3px;
	color: #acacac;
}

.copyright ul li:first-child {
	margin-left: 0;
}

.copyright ul li:last-child {
	margin-right: 0;
}

.copyright ul li a {
	color: #acacac;
}

.copyright ul li a:hover {
	color: #2bb7ae;
}

/*footer*/



.breadcumb {
	display: block;
	width: 100%;
	text-align: left;
	padding-bottom: 30px;
}

.breadcumb ul li {
	display: inline-block;
	vertical-align: middle;
	font-size: 10pt;
	color: #66678b;
	margin-right: 5px;
}

.breadcumb ul li:first-child {
	margin-left: 0;
}

.breadcumb ul li:last-child {
	margin-right: 0;
}

.breadcumb ul li a {
	color: #66678b;
	text-transform: capitalize;
}

.breadcumb ul li a:hover {
	color: #ed3657;
}

.buythistips .buythisbundle {
	text-align: right;
}

.buythistips {
	float: right;
}

.buythistips a {
	width: 240px;
	text-align: center;
	display: block;
	font-family: "Lato-Regular";
}

.buythistips a.addedtocart {
	background: #66678b;
	color: #212138;
	pointer-events: none !important;
}

.buythistips a.purchasedtips {
	background: #fff;
	color: #000;
	pointer-events: none !important;
	border: 1px solid #fff;
}


.tipster-profile-running-tips table.today-tips .buythisbundle,
.homepage-latesttips table.today-tips .buythisbundle {
	text-align: right;
}

.buythisbundle {
	float: right;
}

.buythisbundle a {
	width: 290px;
	text-align: center;
	display: inline-block;
	font-family: "Lato-Regular";
	margin: 5px 0px;
}

.buythisbundle a.addedtocart {
	background: #66678b;
	color: #212138;
	pointer-events: none !important;
}

.buythisbundle a.purchasedtips {
	background: #fff;
	color: #000;
	pointer-events: none !important;
	border: 1px solid #fff;
}

.buythisbundle a.credit-seven {
	color: #ed3657;
}

.buythisbundle a.credit-seven:hover {
	color: #fff;
	background: #ed3657;
}

.buythisbundle a.credit-thirty {
	color: #2bb7ad;
	margin-left: 5px;
}

.buythisbundle a.credit-thirty:hover {
	color: #fff;
	background: #2bb7ad;
}

.toptipster-week-month {
	display: block;
	overflow: hidden;
	width: 100%;
	padding-bottom: 50px;
}

.toptipster-left {
	width: 48%;
	float: left;
}

.toptipster-right {
	width: 48%;
	float: right;
}

.toptipster-left h1,
.toptipster-right h1,
.toptipster-left .h1,
.toptipster-right .h1 {
	color: #fff;
	font-size: 12pt;
	text-transform: uppercase;
	display: block;
	padding-bottom: 5px;
	font-family: "Lato-Regular";
}

.toptipster-left p,
.toptipster-right p {
	color: #acacac;
	font-size: 9pt;
}

.toptipster-weekmonth-list {
	display: block;
	width: 100%;
	background: #10122b;
	border-top: 2px solid #ed3657;
	margin-top: 10px;
	padding: 0px 20px;
}

.toptipster-weekmonth-list ul {
	width: 100%;
}


.toptipster-weekmonth-list ul li {
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 20px 0px;
	border-bottom: 1px solid #66678b;
}

.toptipster-weekmonth-list ul li:last-child {
	border-bottom: none;
}

.toptipster-weekmonth-list .pos {
	width: 10%;
	float: left;
	padding-top: 5px;
}

.toptipster-weekmonth-list .tipsterprofile {
	width: 65%;
	float: left;
}

.toptipster-weekmonth-list .followbutton {
	width: 25%;
	float: left;
	padding-top: 5px;
}

.toptipster-weekmonth-list .pos span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #66678b;
	border: 1px solid #66678b;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	display: block;
	font-size: 11pt;
	margin: 0 auto;
}

.toptipster-weekmonth-list .tipsterprofile p {
	display: block;
	font-size: 10pt;
	font-family: "Lato-Regular";
	padding-bottom: 5px;
}

.toptipster-weekmonth-list .tipsterprofile p a {
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	font-size: 11pt;
	text-transform: uppercase;
	vertical-align: middle;
}

.toptipster-weekmonth-list .tipsterprofile p i {
	display: inline-block;
	padding: 3px 10px;
	background: #2bb7ad;
	color: #000;
	text-transform: capitalize;
	margin-top: 5px;
	font-size: 9pt;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.toptipster-weekmonth-list .tipsterprofile span {
	display: inline-block;
	vertical-align: middle;
	margin: 3px 10px 3px 0px;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

.toptipster-weekmonth-list .followbutton span {
	margin: 0 auto;
	width: auto;
}

.tipster-leaderboard {
	display: block;
	width: 100%;
	padding: 20px 0px 40px;
}

table.leaderboard-table thead tr th span.date-range {
	display: block;
	padding-top: 5px;
	color: #acacac;
	text-transform: none;
	font-size: 9pt;
}

table.leaderboard-table thead tr th {
	vertical-align: middle;
}

table.leaderboard-table thead tr th a.viewall {
	display: block;
	float: right;
	color: #acacac;
	font-size: 10pt;
}

table.leaderboard-table thead tr th a.viewall:hover {
	color: #2bb7ad;
}

table.leaderboard-table thead tr th select {
	float: right;
}

select.select-dropdown {
	padding: 8px 50px 8px 20px;
	height: 33px;
	color: #66678b;
	font-size: 10pt;
	border: 1px solid #5c5d75;
	background: #10122b url(../images/angle-down.png) no-repeat;
	background-position: right 10px center;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
}

table.leaderboard-table tbody tr td {
	vertical-align: middle;
	padding: 15px 10px;
}

table.leaderboard-table tbody tr td .followbutton {
	float: right;
}


table.leaderboard-table tbody tr td .tipster-link {
	display: block;
	text-align: left;
	padding-bottom: 10px;
}

table.leaderboard-table tbody tr td .tipster-link i {
	color: #ed3657;
	display: inline-block;
	vertical-align: top;
	font-size: 9pt;
	margin-right: 5px;
}

table.leaderboard-table tbody tr td .tipster-link a {
	display: inline-block;
	vertical-align: top;
	color: #ed3657;
	font-size: 11pt;
	font-family: "Lato-Regular";
	text-transform: capitalize;
}

table.leaderboard-table tbody tr td .tipster-link a:hover {
	text-decoration: underline;
}

ul.tipster-leaderboard-profile {
	width: 100%;
}

ul.tipster-leaderboard-profile>li {
	display: inline-block;
	vertical-align: middle;
}

ul.tipster-leaderboard-profile>li:first-child {
	width: 100%;
	max-width: 220px;
}

ul.tipster-leaderboard-profile>li .nogames {
	display: block;
	padding: 5px 10px;
	text-align: center;
	background: #10122b;
}

ul.tipster-leaderboard-profile>li .nogames p {
	color: #acacac;
	line-height: 12pt;
}

ul.tipster-leaderboard-profile>li .nogames p b {
	color: #fff;
	display: inline-block;
	margin-left: 5px;
}

ul.tipster-leaderboard-profile>li .wpf {
	display: block;
	width: 100%;
	text-align: center;
	padding: 5px 0px 0px;
}

ul.tipster-leaderboard-profile>li .wpf span {
	display: inline-block;
	margin: 5px 7px;
	text-transform: uppercase;
	font-size: 10pt;
	color: #fff;
	font-family: "Lato-Regular";
}

ul.tipster-leaderboard-profile>li:nth-child(1) {
	margin-right: 20px;
}

ul.odds-hits-profits-roi {
	width: 100%;
}

ul.odds-hits-profits-roi li {
	display: inline-block;
	padding: 10px 15px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #44455d;
	font-family: "Lato-Regular";
	width: 90px;
	margin: 5px 3px 4px;
}

ul.odds-hits-profits-roi li p {
	text-transform: uppercase;
	color: #fff;
	display: block;
	padding-bottom: 5px;
}


ul.odds-hits-profits-roi li span {
	display: block;
	color: #2bb7ad;
}

ul.odds-hits-profits-roi li:nth-child(3) {
	background: #2bb7ad;
}

ul.odds-hits-profits-roi li:nth-child(3) span {
	color: #fff;
}


table.leaderboard-table tbody tr td .follow-button {
	width: 150px;
}

table.leaderboard-table tbody tr td .unfollow-button {
	width: 150px;
}

.tipster-profile {
	display: block;
	width: 100%;
	padding: 30px 0px 150px;
}

.tipsterprofile-top {
	display: block;
	width: 100%;
	padding-bottom: 40px;
}

.tipsterprofile-top-header {
	display: block;
	overflow: hidden;
	padding-left: 280px;
	padding-bottom: 13px;
}

.tipsterprofile-top-header .tipstername {
	float: left;
	color: #fff;
	font-size: 17pt;
}

.tipsterprofile-top-header .tipstername b {
	font-size: 10pt;
	color: #212138;
	background: #66678b;
	padding: 7px 20px 5px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 20px;
	font-family: "Lato-Regular";
	text-transform: uppercase;
}

.tipsterprofile-top-header ul.sharesocial {
	float: right;
	text-align: right;
	margin-top: 7px;
}

.tipsterprofile-top-header ul.sharesocial li {
	display: inline-block;
	vertical-align: middle;
	color: #66678b;
	margin: 0px 20px;
	padding: 0;
}

.tipsterprofile-top-header ul.sharesocial li a {
	display: block;
	padding: 0;
	margin: 0;
}

.tipsterprofile-top-header ul.sharesocial li a i {
	color: #66678b;
	font-size: 12pt;
	padding: 0;
	margin: 0;
	width: 16px;
	text-align: center;
}

.tipsterprofile-top-body {
	display: block;
	width: 100%;
	border-top: 2px solid #ed3657;
	padding: 20px 40px;
	background: #10122b;
}

.tipsterprofile-info-cover {
	display: table;
	width: 100%;
	padding-bottom: 40px;
}

.tipsterprofile-info-image {
	display: table-cell;
	width: 200px;
	vertical-align: top;
}

.tipsterprofile-info-basicstat {
	display: table-cell;
	width: auto;
	vertical-align: top;
	padding-top: 30px;
	padding-left: 40px;
}

.tipsterprofile-info-image .tipsterimg {
	width: 200px;
	height: 200px;
	display: block;
	margin: -75px auto 30px;
	border: 2px solid #66678b;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.tipsterprofile-info-image span {
	margin: 0 auto;
}

.tipsterprofile-info-basicstat ul.tipster-stat {
	width: 100%;
}

.tipsterprofile-info-basicstat ul.tipster-stat li {
	display: inline-block;
	vertical-align: top;
	margin: 0px 20px 10px 0px;
	width: 100px;
}

.tipsterprofile-info-basicstat ul.tipster-stat li:last-child {
	margin-right: 0;
}

.tipsterprofile-info-basicstat ul.tipster-stat li p {
	font-size: 15pt;
	font-family: "Lato-Regular";
	text-align: center;
	color: #acacac;
	display: block;
	padding-bottom: 15px;
}

.tipsterprofile-info-basicstat ul.tipster-stat li span {
	padding: 5px 5px 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #66678b;
	color: #212138;
	font-size: 10pt;
	display: block;
	text-align: center;
	width: 100%;
	font-family: "Lato-Regular";
}

.tipsterprofile-info-basicstat ul.tipster-stat li:first-child p {
	color: #2bb7ad;
}

.tipsterprofile-info-basicstat ul.tipster-stat li:first-child span {
	background: #2bb7ad;
}

.bundletipster-package-selection {
	display: block;
	width: 100%;
	padding-top: 20px;
}

.bundletipster-package-selection .buythisbundle,
.bundletipster-package-selection .buythistips {
	float: none;
}

.bundletipster-package-selection .buythisbundle .credit-seven {
	margin-right: 20px;
}

.bundletipster-package-selection .buythisbundle a {
	padding: 15px 20px;
	margin-bottom: 8px;
}

.sub-divline {
	width: 100%;
	display: block;
	clear: both;
	height: 1px;
	background: #44455d;
}

.tipsterprofile-info-profile-desc {
	display: block;
	padding: 30px 0px 20px;
}

.tipsterprofile-info-profile-desc h3 {
	color: #acacac;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	font-size: 11pt;
}

.tipsterprofile-info-profile-desc p {
	color: #fff;
	font-size: 11pt;
	line-height: 17pt;
}

.tipster-profile-performance-summary {
	display: block;
	width: 100%;
	padding: 0px 0px 80px;
}

.tipster-profile-performance-summary>ul {
	width: 100%;
}

.tipster-profile-performance-summary>ul>li {
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #5c5d75;
}

.tipster-profile-performance-summary>ul>li:last-child {
	border-bottom: none;
}

.tipster-profile-performance-summary>ul>li.active {
	background: #10122b;
	border-top: 2px solid #ed3657;
}

.tipster-profile-performance-summary>ul>li>span {
	display: block;
	width: 100%;
	padding: 30px 40px;
	color: #66678b;
	font-family: "Lato-Regular";
	font-size: 12pt;
	text-transform: uppercase;
	cursor: pointer;
}

.tipster-profile-performance-summary>ul>li:hover {
	background: #10122b;
}

.tipster-profile-performance-summary>ul>li>span>i {
	float: right;
	font-size: 12pt;
	color: #ed3657;
}


.tipster-profile-performance-summary>ul>li.active>span {
	color: #fff;

}

.tipster-profile-performance-summary ul li .hiddensummary {
	display: none;
	width: 100%;

	padding: 0px 40px 30px;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance {
	width: 100%;
	overflow: hidden;
	padding: 0px 0px;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance li {
	display: block;
	float: left;
	width: 19%;
	margin: 5px 0.625%;
	padding: 10px 20px;
	background: #44455d;
	font-family: "Lato-Regular";
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance li:first-child {
	margin-left: 0;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance li:last-child {
	margin-right: 0;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance li p {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-size: 11pt;
	padding-bottom: 3px;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance li b {
	color: #2bb7ad;
	font-size: 10pt;
	display: block;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games {
	padding: 20px 0px 0px;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li {
	display: inline-block;
	vertical-align: middle;
	padding: 7px 20px 5px
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li p {
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	font-family: "Lato-Regular";
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li p b {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li:nth-child(1) {
	border-right: 1px solid #5c5d75;
	padding-right: 24px;
}

.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li:nth-child(1) p b {
	color: #acacac;
}

.tispterprofile-servicetype {
	display: block;
	width: 100%;
	overflow: hidden;
}


.tispterprofile-servicetype ul {
	float: left;
	width: 30%;
	margin: 0 2.5%;
}

.tispterprofile-servicetype ul:first-child {
	margin-left: 0;
}

.tispterprofile-servicetype ul:last-child {
	margin-right: 0;
}

.tispterprofile-servicetype ul li {
	display: block;
	margin: 10px 0px 20px;
	overflow: hidden;
}

.tispterprofile-servicetype ul li:first-child {
	margin-bottom: 30px;
	color: #fff;
	text-transform: capitalize;
	font-size: 10pt;
}

.tispterprofile-servicetype ul li b {
	width: 30%;
	float: left;
	text-align: left;
	color: #acacac;
	text-transform: capitalize;
	font-size: 10pt;
	padding-right: 20px;
	padding-top: 5px;
}

.tispterprofile-servicetype ul li .progressbar-outer {
	float: left;
	width: 70%;
	position: relative;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #252745;
	height: 25px;
	overflow: hidden;
}

.tispterprofile-servicetype ul li .progressbar-outer .progressbar-inner {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	height: 25px;
	z-index: 8;

}

.tispterprofile-servicetype ul li .progressbar-outer .progressbar-inner.animated {
	animation: loadbar 2s normal forwards ease-in-out;
	-webkit-animation: loadbar 2s normal forwards ease-in-out;
}

.tispterprofile-servicetype ul li .progressbar-outer span {
	position: absolute;
	width: 100%;
	height: 25px;
	text-align: center;
	font-size: 10pt;
	line-height: 25px;
	left: 0;
	top: 0;
	color: #fff;
	z-index: 9;
}

.tispterprofile-servicetype ul li.ah .progressbar-outer .progressbar-inner {
	background: #645a52;
}

.tispterprofile-servicetype ul li.fo .progressbar-outer .progressbar-inner {
	background: #8d2f45;
}

.tispterprofile-servicetype ul li.tg .progressbar-outer .progressbar-inner {
	background: #414099;
}

@keyframes loadbar {

	0% {
		width: 0%;
	}

	100% {}
}

@-webkit-keyframes loadbar {

	0% {
		width: 0%;
	}

	100% {}

}


.country-tips-ranking {
	display: block;
	width: 100%;
}

.country-tips-ranking ul {
	overflow: hidden;
	width: 100%;
}

.country-tips-ranking ul li {
	display: block;
	width: 50%;
	float: left;
	overflow: hidden;
	margin-bottom: 40px;
}

.country-tips-ranking ul li:nth-child(odd) {
	padding-right: 40px;
}

.country-tips-ranking ul li:nth-child(even) {
	padding-left: 40px;
}

.country-tips-ranking ul li .country-flag {
	float: left;
	width: 20%;
	text-align: center;
}

.country-tips-ranking ul li .country-flag img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	display: block;
}

.country-tips-ranking ul li .country-tips-amount {
	float: left;
	width: 80%;
	padding-left: 10px;
}

.country-tips-ranking ul li .country-tips-amount p {
	display: block;
	width: 100%;
	color: #acacac;
	font-size: 10pt;
	text-transform: capitalize;
	padding-bottom: 8px;
}


.country-tips-ranking ul li .progressbar-outer {
	float: left;
	width: 100%;
	position: relative;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #252745;
	height: 25px;
	overflow: hidden;
}

.country-tips-ranking ul li .progressbar-outer .progressbar-inner {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	height: 25px;
	z-index: 8;
	background: #006cb7;

}

.country-tips-ranking ul li .progressbar-outer .progressbar-inner.animated {
	animation: loadbar 2s normal forwards ease-in-out;
	-webkit-animation: loadbar 2s normal forwards ease-in-out;
}

.country-tips-ranking ul li .progressbar-outer span {
	position: absolute;
	width: 100%;
	height: 25px;
	text-align: center;
	font-size: 10pt;
	line-height: 25px;
	left: 0;
	top: 0;
	color: #fff;
	z-index: 9;
}

.tipsterprofile-awards {
	display: block;
	width: 100%;
}

ul.topoftheweek {
	width: 100%;
}

ul.topoftheweek li {
	display: inline-block;
	vertical-align: top;
	margin-right: 80px;
	margin-bottom: 20px;
}

ul.topoftheweek li:last-child {
	margin-right: 0;
}

ul.topoftheweek li .awardsbadge {
	display: inline-block;
	vertical-align: middle;
	width: 62px;
	height: 43px;
	background: url(../images/awards.png) no-repeat center center;
	background-size: cover;
	margin-right: 10px;
}

ul.topoftheweek li .awardstime {
	display: inline-block;
	vertical-align: middle;
	padding: 8px 15px 5px;
	background: #252745;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #fff;
	font-size: 11pt;
	font-family: "Lato-Regular";
}

ul.topoftheweek li .awardstime b {
	display: inline-block;
	color: #acacac;
	text-transform: capitalize;
	font-size: 11pt;
	vertical-align: baseline;
	margin-left: 10px;

}

ul.topoftheweek li p {
	display: block;
	color: #acacac;
	font-size: 11pt;
	font-family: "Lato-Regular";
	padding-top: 13px;
}


ul.highestrate {
	width: 100%;
	padding-top: 30px;
}

ul.highestrate li {
	display: inline-block;
	vertical-align: top;
	margin-right: 80px;
	margin-bottom: 20px;
	min-width: 300px;
}

ul.highestrate li:last-child {
	margin-right: 0;
}


ul.highestrate li .highestbadge,
ul.highestrate li .highestprogressbar {
	display: inline-block;
	vertical-align: top;
}

ul.highestrate li .highestbadge {
	padding-right: 20px;
}

ul.highestrate li .highestbadge img {
	display: block;
	width: 100%;
}

ul.highestrate li .highestbadge span {
	text-align: center;
	font-size: 9pt;
	color: #fff;
	display: block;
	padding: 10px 0px;
}

ul.highestrate li .highestprogressbar {
	width: 225px;
	font-family: "Lato-Regular";
}

ul.highestrate li .highestprogressbar p {
	display: block;
	color: #acacac;
	text-transform: capitalize;
	font-size: 11pt;
	padding-bottom: 10px;
}

ul.highestrate li .highestprogressbar b {
	display: block;
	color: #fff;
	font-size: 11pt;
}


ul.highestrate li .highestprogressbar .progressbar-outer {
	float: left;
	width: 100%;
	position: relative;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #252745;
	height: 25px;
	overflow: hidden;
}

ul.highestrate li .highestprogressbar .progressbar-outer .progressbar-inner {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	height: 25px;
	z-index: 8;
	background: #006cb7;

}

ul.highestrate li .highestprogressbar .progressbar-outer .progressbar-inner.animated {
	animation: loadbar 2s normal forwards ease-in-out;
	-webkit-animation: loadbar 2s normal forwards ease-in-out;
}

ul.highestrate li .highestprogressbar .progressbar-outer span {
	position: absolute;
	width: 100%;
	height: 25px;
	text-align: center;
	font-size: 10pt;
	line-height: 25px;
	left: 0;
	top: 0;
	color: #fff;
	z-index: 9;
}

.tipster-performance-table {
	display: block;
	width: 100%;
	padding: 50px 0px 350px;
}

table.performancetable>thead>tr>th>span {
	float: left;
	display: block;
}

table.performancetable>thead>tr>th>span b {
	display: block;
	color: #acacac;
	font-size: 9pt;
	padding-top: 5px;
}

table.performancetable thead tr th .select-dropdown {
	float: right;
	border: none;
	max-width: 170px;
}

table.performancetable thead tr th .daterange-wrapper .select-date-button {
	border: none;
}

table.performancetable thead tr th .daterange-wrapper {
	float: right;
	margin-left: 20px;
}

.daterange-wrapper {
	display: block;
	position: relative;
}

.daterange-wrapper .select-date-button {
	padding: 0px 50px 0px 20px;
	height: 33px;
	line-height: 32px;
	color: #66678b;
	font-size: 10pt;
	text-transform: none;
	cursor: pointer;
	border: none;
	background: #10122b url(../images/angle-down.png) no-repeat;
	background-position: right 10px center;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: 1px solid #5c5d75;
}


table.performancetable tbody tr td {
	font-family: "Lato-Regular";
	vertical-align: middle;
}

table.performancetable tbody tr td .date-bettingtype {
	display: block;
	width: 100%;
}

table.performancetable tbody tr td .date-bettingtype p {
	color: #66678b;
	font-size: 9pt;
	display: inline-block;
	vertical-align: middle;
}

table.performancetable tbody tr td .date-bettingtype p b {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 10px;
	padding: 5px 10px;
	color: #fff;
	font-size: 8pt;
	background: #10122b;
}

table.performancetable tbody tr td .event-match {
	display: block;
	width: 100%;
	padding: 10px 0px;
}

table.performancetable tbody tr td .event-match p {
	color: #acacac;
	font-size: 10pt;
	line-height: 13pt;
}

table.performancetable tbody tr td .event-match p b {
	color: #fff;
	font-size: 10pt;
	display: inline-block;
	vertical-align: baseline;
	margin-right: 20px;
	margin-bottom: 3px;
}

table.performancetable tbody tr td .event-match p i {
	color: #acacac;
	font-size: 10pt;
	display: inline-block;
	vertical-align: baseline;
}

table.performancetable tbody tr td .event-predicted-tips p {
	color: #2bb7ad;
	font-size: 10pt;
}

table.performancetable tbody tr td .performancetips-result {
	float: right;
	display: block;
}

.performancetips-result ul {
	text-align: right;
}

.performancetips-result ul li {
	display: inline-block;
	vertical-align: middle;
	padding: 10px 10px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #44455d;
	font-family: "Lato-Regular";
	width: 90px;
	margin: 5px 2px 0px;
}

.performancetips-result ul li p {
	text-transform: uppercase;
	color: #fff;
	display: block;
	padding-bottom: 5px;
}


.performancetips-result ul li span {
	display: block;
	color: #2bb7ad;
	height: 13px;
}

.performancetips-result ul li.win {
	background: #269f6c;
}

.performancetips-result ul li.win p,
.performancetips-result ul li.win span {
	color: #fff;
}

.performancetips-result ul li.lose {
	background: #c02555;
}

.performancetips-result ul li.lose p,
.performancetips-result ul li.lose span {
	color: #fff;
}

.performancetips-result ul li.draw {
	background: #009fce;
}

.performancetips-result ul li.draw p,
.performancetips-result ul li.draw span {
	color: #fff;
}

.performancetips-result ul li.void {
	background: #10122b;
}

.performancetips-result ul li.void p,
.performancetips-result ul li.void span {
	color: #fff;
}


.livescore-allgame {
	display: block;
	width: 100%;
	padding-bottom: 100px;
}

h1.pagetitle,
.h1.pagetitle {
	display: block;
	padding-bottom: 10px;
	text-transform: uppercase;
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 12pt;
	border-bottom: 2px solid #ed3657;
	position: relative;
}

h1.pagetitle b,
.h1.pagetitle b {
	display: inline-block;
	padding: 3px 10px;
	text-transform: uppercase;
	font-size: 9pt;
	color: #acacac;
	background: #10122b;
	margin-top: 3px;
}

.livescore-selectdate {
	display: block;
	overflow: hidden;
	padding: 30px 0px 20px;
	width: 100%;
}

.livescore-selectdate .select-dropdown {
	float: right;
	border: none;
}

ul.livescore-select {
	display: block;
	width: 100%;
	overflow: hidden;
	padding-bottom: 40px;
}

ul.livescore-select li {
	display: inline-block;
	padding: 0;
	margin: 0px 0px;
	overflow: hidden;

}


ul.livescore-select li a {
	padding: 15px 40px 5px;
	border-right: 1px solid #5c5d75;
	display: block;
	float: left;
}

ul.livescore-select li:last-child a {
	border-right: none;
}


ul.livescore-select li a .game-icon {
	display: block;
	width: 44px;
	height: 44px;
	margin: 0 auto;
}

ul.livescore-select li a span {
	display: block;
	color: #fff;
	padding: 10px 0px 5px;
	margin: 0 auto;
	text-align: center;
	color: #66678b;
	text-transform: uppercase;
	font-family: "Lato-Regular";

}

ul.livescore-select li.active a span {
	color: #fff;
	border-bottom: 1px solid #ed3657;
}

ul.livescore-select li a:hover span {
	color: #fff;
}

ul.livescore-select li a .game-icon.allgame {
	background: url(../images/allgame-all.png) no-repeat center center;
	background-size: cover;
}

ul.livescore-select li.active a .game-icon.allgame,
ul.livescore-select li a:hover .game-icon.allgame {
	background: url(../images/allgame-all-active.png) no-repeat center center;
}

ul.livescore-select li a .game-icon.livegame {
	background: url(../images/allgame-live.png) no-repeat center center;
	background-size: cover;
}

ul.livescore-select li.active a .game-icon.livegame,
ul.livescore-select li a:hover .game-icon.livegame {
	background: url(../images/allgame-live-active.png) no-repeat center center;
}

ul.livescore-select li a .game-icon.upcominggame {
	background: url(../images/allgame-upcoming.png) no-repeat center center;
	background-size: cover;
}

ul.livescore-select li.active a .game-icon.upcominggame,
ul.livescore-select li a:hover .game-icon.upcominggame {
	background: url(../images/allgame-upcoming-active.png) no-repeat center center;
}

ul.livescore-select li a .game-icon.finishedgame {
	background: url(../images/allgame-finish.png) no-repeat center center;
	background-size: cover;
}

ul.livescore-select li.active a .game-icon.finishedgame,
ul.livescore-select li a:hover .game-icon.finishedgame {
	background: url(../images/allgame-finish-active.png) no-repeat center center;
}

ul.livescore-select li a .game-icon.selectedgame {
	background: url(../images/allgame-selected.png) no-repeat center center;
	background-size: cover;
}

ul.livescore-select li.active a .game-icon.selectedgame,
ul.livescore-select li a:hover .game-icon.selectedgame {
	background: url(../images/allgame-selected-active.png) no-repeat center center;
}



.livescoregame-list {
	display: block;
	width: 100%;
}

.livescoregame-list ul li {
	display: block;
	overflow: hidden;
	margin-bottom: 70px;
}

.livescoregame-list ul li span.live-title {
	display: block;
	overflow: hidden;
	padding-bottom: 5px;
	border-bottom: 1px solid #5c5d75;
}

.livescoregame-list ul li span.live-title p {
	float: left;
	color: #fff;
	text-transform: uppercase;
	font-size: 12pt;
	font-family: "Lato-Regular";
}

.livescoregame-list ul li span.live-title p b {
	display: block;
	padding: 3px 10px;
	text-transform: uppercase;
	font-size: 9pt;
	color: #acacac;
	background: #10122b;
	margin-top: 3px;
	line-height: 12pt;
}

.livescoregame-list ul li span.live-title .standing-select {
	float: right;
	display: block;
	margin-top: 15px;
}

.livescoregame-list ul li span.live-title a.live-standing {
	display: inline-block;
	color: #66678b;
	text-transform: uppercase;
	font-size: 10pt;
	vertical-align: sub;
}

.livescoregame-list ul li span.live-title a.live-standing:hover {
	color: #ed3657;
}

.livescoregame-list ul li span.live-title a.live-standing i {
	margin-right: 10px;
	color: #ed3657;
}

.livescoregame-list ul li span.live-title .live-select {
	height: 20px;
	width: 40px;
	display: inline-block;
	vertical-align: middle;
}

.livescoregame-list ul li span.live-title .live-select a {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 1px solid #66678b;
	margin: 0 auto;
	text-align: center;
	position: relative;
	display: block;
	cursor: pointer;
}

.livescoregame-list ul li span.live-title .live-select a.active {
	background: #66678b;
}

.livescoregame-list ul li span.live-title .live-select a.active:before {
	position: absolute;
	content: "";
	width: 4px;
	height: 8px;
	border-right: 1.5px solid #212138;
	border-bottom: 1.5px solid #212138;
	background: none;
	left: 0;
	right: 0;
	top: 3px;
	margin: 0 auto;
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.live-table {
	display: block;
	padding: 10px 0px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}



.live-table div.event {
	display: block;
	float: left;
	width: 100%;
	max-width: 400px;
	padding-left: 10px;
	padding-top: 10px;
}

.live-table div.event b {
	display: block;
	color: #66678b;
	font-size: 9pt;
	padding-bottom: 8px;
}

.live-table div.event i {
	display: block;
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 5px;
}

.live-table div.match-status {
	display: block;
	float: right;
	width: 50px;
	padding-right: 10px;

}

.live-table div.match-status b {
	color: #009fce;
	text-transform: uppercase;
	text-align: center;
	display: block;
	padding: 20px 0px;
}

.live-table div.match-result {
	display: block;
	width: 100px;
	float: right;
	padding: 10px 20px;
	background: #44455d;
	margin-right: 40px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.live-table div.match-result b {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	padding-bottom: 5px;
}

.live-table div.match-result i {
	display: block;
	color: #ed3657;
	font-size: 10pt;
}

.live-table div.match-result i a {
	color: #ed3657;
}

.live-table div.match-link {
	float: right;
	width: 340px;
	display: block;
}

.live-table div.match-link ul {
	width: 100%;
	margin: 8px 0px;
}

.live-table div.match-link ul li {
	display: block;
	float: left;
	margin: 0 10px;
}

.live-table div.match-link ul li:first-child {
	margin-left: 0;
}

.live-table div.match-link ul li:last-child {
	margin-right: 0;
}

.live-table div.match-link ul li a {
	display: block;
	width: 100px;
	padding: 10px 10px;
	border: 1px solid #44455d;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	font-family: "Lato-Regular";
}

.match-selection {
	display: block;
	float: right;
	width: 40px;
}

.responsive-cover {
	display: block;
	float: right;
}

.match-selection .live-thisgame-select {
	height: 20px;
	width: 40px;
	display: inline-block;
	vertical-align: middle;
	margin: 15px 0px;
}

.match-selection .live-thisgame-select a {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 1px solid #66678b;
	margin: 0 auto;
	text-align: center;
	position: relative;
	display: block;
	cursor: pointer;
}

.match-selection .live-thisgame-select a.active {
	background: #66678b;
}

.match-selection .live-thisgame-select a.active:before {
	position: absolute;
	content: "";
	width: 4px;
	height: 8px;
	border-right: 1px solid #212138;
	border-bottom: 1px solid #212138;
	background: none;
	left: 0;
	right: 0;
	top: 4px;
	margin: 0 auto;
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}


.last-ten-result {
	display: block;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
}

.last-ten-result h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
	border-bottom: 2px solid #ed3657;
	margin-bottom: 10px;
}

.last-ten-result>ul {
	width: 100%;
}

.last-ten-result>ul>li {
	display: block;
	padding: 10px 0px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}

.last-ten-result>ul>li:first-child {
	border-top: 1px solid #5c5d75;
}

.last-ten-result>ul>li span.home-away {
	float: left;
	display: block;
	padding: 10px 10px;
}

.last-ten-result>ul>li span.home-away b {
	display: block;
	color: #66678b;
	font-size: 9pt;
	padding-bottom: 10px;
}

.last-ten-result>ul>li span.home-away p {
	color: #fff;
	font-size: 10pt;
	display: block;
}

.last-ten-result>ul>li span.event-versus-result {
	display: block;
	float: right;
}

.event-versus-result ul {
	width: 100%;
	margin-top: 2px;
}

.event-versus-result ul li {
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
	background: #44455d;
	width: 250px;
	margin-left: 10px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin: 5px 5px;
}

.event-versus-result ul li b {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	padding-bottom: 5px;
}

.event-versus-result ul li p {
	color: #2bb7ad;
	display: block;
	text-transform: uppercase;
	font-size: 10pt;
}

.event-versus-result ul li:last-child {
	width: 100px;
}


.team-related-link {
	display: block;
	padding: 20px 0px;
	width: 100%;
	text-align: center;
}

.team-related-link a {
	display: inline-block;
	vertical-align: middle;
	margin: 10px 20px;
	text-align: center;
	width: 200px;
}

.standing-table {
	display: block;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
}

.standing-table h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
}

.standing-table>ul {
	width: 100%;
}

.standing-table>ul>li {
	display: block;
	padding: 10px 0px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}

.standing-table>ul>li:first-child {
	border-top: 1px solid #5c5d75;
}

.standing-table>ul>li .standing-pos {
	display: block;
	float: left;
	width: 50px;
	padding: 12px 0px;
}

.standing-table>ul>li .standing-pos b {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 1px solid #5c5d75;
	text-align: center;
	line-height: 28px;
	font-size: 10pt;
	color: #5c5d75;
	display: block;
	font-family: "Lato-Regular";
}

.standing-table>ul>li .standing-team {
	display: block;
	float: left;
	width: 250px;
	padding: 12px 0px;

}

.standing-table>ul>li .standing-team b {
	display: block;
	color: #acacac;
	font-size: 10pt;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.standing-table>ul>li .standing-team p {
	color: #fff;
	display: block;
	font-size: 10pt;
	font-family: "Lato-Regular";
}

.standing-result {
	display: block;
	float: right;
}

.standing-result ul {
	width: 100%;
}

.standing-result ul li {
	display: inline-block;
	vertical-align: top;
	padding: 10px 20px;
	width: 100px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-left: 10px;
	margin: 3px 0px 3px 5px;
}

.standing-result ul li b {
	display: block;
	padding-bottom: 5px;
	color: #fff;
	font-size: 10pt;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

.standing-result ul li p {
	display: block;
	font-size: 10pt;
	color: #fff;
	font-size: 10pt;
}

.standing-result ul li:nth-child(1),
.standing-result ul li:nth-child(2) {
	width: auto;
	padding: 10px 10px;
}

.standing-result ul li:nth-child(1) b,
.standing-result ul li:nth-child(2) b {
	color: #acacac;
	text-align: center;
}

.standing-result ul li:nth-child(1) p,
.standing-result ul li:nth-child(2) p {
	color: #009fce;
	text-align: center;
}

.standing-result ul li.play {
	background: #44455d;
}

.standing-result ul li.play p {
	color: #009fce;
}


.standing-result ul li.win {
	background: #269f6c;
}

.standing-result ul li.draw {
	background: #009fce;
}

.standing-result ul li.lose {
	background: #c02555;
}


.team-lineup {
	display: block;
	width: 100%;
	padding-bottom: 50px;
}

.team-lineup h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}

.team-lineup h2.event-standing {
	padding-top: 50px;
}

.team-lineup h2.event-standing p {
	float: left;

}

.team-lineup h2.event-standing p b {
	display: block;
	padding: 3px 10px;
	text-transform: uppercase;
	font-size: 9pt;
	color: #acacac;
	background: #10122b;
	margin-top: 3px;
}

.team-lineup h2.event-standing a.live-standing {
	display: block;
	color: #66678b;
	text-transform: uppercase;
	font-size: 10pt;
	float: right;
	margin: 20px 0px 0px;
}

.team-lineup h2.event-standing a.live-standing:hover {
	color: #ed3657;
}

.team-lineup h2.event-standing a.live-standing i {
	margin-right: 10px;
	color: #ed3657;
}

.lineup-table {
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 30px 0px 40px;
}

.team-lineup-home,
.team-lineup-away {
	width: 45%;
	display: block;
	float: left;
	padding: 0px 0px;
}

.team-lineup-middle {
	width: 10%;
	display: block;
	float: left;
	padding-top: 30px;
}

.team-lineup-middle b {
	height: 35px;
	width: 35px;
	background: #10122b;
	margin: 0 auto;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	line-height: 35px;
	font-size: 11pt;
	color: #44455d;
	text-transform: uppercase;
	text-align: center;
	display: block;
	font-family: "Lato-Bold";
}


.team-lineup-home .team-logo {
	display: block;
	width: 100%;
	text-align: center;
}

.team-lineup-home .team-logo ul {
	padding: 0px 10px;
	text-align: center;
}

.team-lineup-home .team-logo ul li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.team-lineup-home .team-logo ul li:last-child {
	margin-left: 0;
}

.team-lineup-home .team-logo ul li:first-child span {
	width: 100px;
	height: 100px;
	display: block;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.team-lineup-home .team-logo ul li:last-child p {
	display: block;
	color: #fff;
	font-size: 10pt;
	padding-bottom: 5px;
	font-family: "Lato-Regular";
}

.team-lineup-home .team-logo ul li:last-child b {
	color: #2bb7ad;
	text-transform: uppercase;
	display: block;
}

.team-lineup-away .team-logo {
	display: block;
	width: 100%;
	text-align: center;
}

.team-lineup-away .team-logo ul {
	padding: 0px 10px;
	text-align: center;
}

.team-lineup-away .team-logo ul li {
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}

.team-lineup-away .team-logo ul li:first-child {
	margin-right: 0;
}

.team-lineup-away .team-logo ul li:last-child span {
	width: 100px;
	height: 100px;
	display: block;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.team-lineup-away .team-logo ul li:first-child p {
	display: block;
	color: #fff;
	font-size: 10pt;
	padding-bottom: 5px;
	font-family: "Lato-Regular";
}

.team-lineup-away .team-logo ul li:first-child b {
	color: #2bb7ad;
	text-transform: uppercase;
	display: block;
}


.player-lineup {
	display: block;
	width: 100%;
	padding: 30px 0px 20px;
}

.player-lineup ul li {
	display: block;
	overflow: hidden;
	padding: 15px 15px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-bottom: 1px solid #5c5d75;
}

.player-lineup ul li:first-child {
	background: #44455d;
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	font-size: 11pt;
	padding: 10px 15px;
	border-bottom: none;
	font-family: "Lato-Regular";
}

.player-lineup ul li span {
	display: block;
	float: left;
}

.player-lineup ul li span.player-pos {
	width: 35%;
	color: #fff;
	text-align: left;
}

.player-lineup ul li span.player-name {
	width: 35%;
	color: #acacac;
	text-align: center;
}

.player-lineup ul li span.player-no {
	width: 30%;
	color: #fff;
	text-align: right;
}


.player-substitution {
	display: block;
	width: 100%;
	padding: 0px 0px 30px;
}

.player-substitution ul li {
	display: block;
	overflow: hidden;
	padding: 15px 15px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-bottom: 1px solid #5c5d75;
}

.player-substitution ul li:first-child {
	background: #44455d;
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	font-size: 11pt;
	padding: 10px 15px;
	border-bottom: none;
	font-family: "Lato-Regular";
}

.player-substitution ul li span {
	display: block;
	float: left;
}

.player-substitution ul li span.sub-minute {
	width: 10%;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Bold";
	padding-top: 5px;
}

.player-substitution ul li span.sub-player {
	width: 90%;
	padding-left: 10px;
}

.player-substitution ul li span.sub-player b {
	display: block;
	width: 100%;
	padding-bottom: 5px;
}

.player-substitution ul li span.sub-player b.out {
	color: #c02555;
}

.player-substitution ul li span.sub-player b.in {
	color: #269f6c;
}

.matchodds {
	display: block;
	width: 100%;
	padding-bottom: 100px;
}

.matchodds h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
	overflow: hidden;
	padding-top: 30px;
}

ul.oddcompare {
	width: 100%;
	padding-bottom: 40px;
}

ul.oddcompare>li {
	display: block;
	padding: 10px 20px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;

}

ul.oddcompare>li:first-child {
	border-top: 1px solid #5c5d75;
}

ul.oddcompare>li span.odd-provider {
	display: block;
	float: left;
	width: 100px;
	padding: 12px 0px 10px;
}

ul.oddcompare>li span.odd-provider img {
	display: block;
	padding-bottom: 5px;
}

ul.oddcompare>li span.odd-provider a {
	display: inline-block;
	color: #fff;
}

ul.oddcompare>li span.odd-provider a:hover {
	color: #ed3657;
}

ul.oddcompare>li span.odd-value {
	display: block;
	float: right;
}

.odd-value ul {
	padding: 0px 0px;
}

.odd-value ul li {
	display: inline-block;
	vertical-align: top;
	margin: 3px 10px 3px 0px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #44455d;
	width: 170px;
	padding: 10px 20px;
}

.odd-value ul li:last-child {
	margin-right: 0;
}

.odd-value ul li p {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

.odd-value ul li p b {
	color: #2bb7ad;
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	margin-top: 5px;
}

.odd-value ul li:nth-child(2) {
	background: #10122b;
}

.liveodds {
	display: block;
	width: 100%;
	padding-bottom: 100px;
}

.liveodds-table {
	display: block;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
}

.liveodds-table div {
	text-transform: uppercase;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
}

ul.oddstable {
	width: 100%;
}

ul.oddstable>li {
	display: block;
	padding: 10px 20px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}

ul.oddstable>li:first-child {
	border-top: 1px solid #5c5d75;
}

ul.oddstable>li span.match-time {
	display: block;
	float: left;
	padding: 10px 0px;
}

ul.oddstable>li span.match-time b {
	display: block;
	color: #66678b;
	font-size: 9pt;
	padding-bottom: 10px;
}

ul.oddstable>li span.match-time p {
	display: block;
	color: #fff;
	font-family: "Lato-Regular";
}

ul.oddstable>li span.odds-link {
	display: block;
	float: right;
}

.odds-link ul {
	width: 100%;
}

.odds-link ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 5px;
}

.odds-link ul li:first-child {
	margin-left: 0;
}

.odds-link ul li:last-child {
	margin-right: 0;
}

.odds-link ul li:nth-child(4) {
	margin-left: 0;
}

.odds-link ul li:nth-child(3) {
	margin-right: 25px;
}

.odds-link ul li span {
	display: block;
	width: 100px;
	background: #44455d;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 10px 20px;
}

.odds-link ul li span p {
	display: block;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.odds-link ul li span b {
	display: block;
	color: #2bb7ad;
	height: 13px;
}


.odds-link ul li a {
	display: block;
	width: 100px;
	padding: 10px 10px;
	border: 1px solid #44455d;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 10pt;
	font-family: "Lato-Regular";

}

.rpts {
	display: block;
	width: 100%;
	padding-bottom: 100px;
}

.rpts-table {
	display: block;
	width: 100%;
	padding: 30px 0px 50px;
}

.rpts-table div {
	text-transform: uppercase;
	color: #acacac;
	font-size: 10pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
}

.rpts-table>ul {
	width: 100%;
}

.rpts-table>ul>li {
	display: block;
	padding: 10px 0px;
	border-bottom: 1px solid #5c5d75;
	overflow: hidden;
}

.rpts-table>ul>li:first-child {
	border-top: 1px solid #5c5d75;
}

.rpts-table>ul>li span.match-detail {
	display: block;
	float: left;
	font-family: "Lato-Regular";
}


span.match-detail .date-bettingtype {
	display: block;
	width: 100%;
}

span.match-detail .date-bettingtype p {
	color: #66678b;
	font-size: 9pt;
	display: inline-block;
	vertical-align: middle;
}

span.match-detail .date-bettingtype p b {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 10px;
	padding: 5px 10px;
	color: #fff;
	font-size: 8pt;
	background: #10122b;
}

span.match-detail .event-match {
	display: block;
	width: 100%;
	padding: 10px 0px;
}

span.match-detail .event-match i {
	display: inline-block;
	margin-right: 20px;
}

span.match-detail .event-match p {
	color: #fff;
	font-size: 10pt;
	line-height: 13pt;
}

span.match-detail .event-match p b {
	color: #acacac;
	font-size: 10pt;
	display: inline-block;
	vertical-align: baseline;
}

span.match-detail .tipster-link {
	display: block;
	text-align: left;
}

span.match-detail .tipster-link i {
	color: #ed3657;
	display: inline-block;
	vertical-align: top;
	font-size: 8pt;
	margin-right: 5px;
}

span.match-detail .tipster-link a {
	display: inline-block;
	vertical-align: bottom;
	color: #ed3657;
	font-size: 10pt;
	text-transform: capitalize;
}

span.match-detail .tipster-link a:hover {
	text-decoration: underline;
}

.rpts-table>ul>li span.match-result {
	display: block;
	float: right;
	font-family: "Lato-Regular";
}

span.match-result ul {
	padding-top: 5px;
}

span.match-result ul li {
	display: inline-block;
	vertical-align: top;
	padding: 10px 20px;
	background: #44455d;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	width: 100px;
	margin: 3px 0px 3px 5px;
}

span.match-result ul li p {
	display: block;
	padding-bottom: 5px;
	color: #fff;
	font-size: 10pt;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

span.match-result ul li b {
	color: #009fce;
	display: block;
	font-size: 10pt;
}

span.match-result ul li.win {
	background: #269f6c;
}

span.match-result ul li.win b,
span.match-result ul li.win p,
span.match-result ul li.draw b,
span.match-result ul li.draw p,
span.match-result ul li.lose b,
span.match-result ul li.lose p,
span.match-result ul li.void b,
span.match-result ul li.void p {
	color: #fff;
	text-transform: uppercase;
}

span.match-result ul li.draw {
	background: #009fce;
}

span.match-result ul li.lose {
	background: #c02555;
}

span.match-result ul li.void {
	background: #10122b;
	height: 51px;
}

span.match-result ul li.tip {
	background: none;
	text-align: right;
	width: auto;
}

.aboutus,
.soccer-tipster-service {
	display: block;
	width: 100%;
	padding: 0px 0px 50px;
}

.banner-aboutus {
	display: block;
	width: 100%;
	height: 255px;
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	margin-top: 30px;
	margin-bottom: 30px;
}

.aboutus-content {
	display: block;
	width: 100%;
}

.sts-content {
	padding-top: 20px;
}

.aboutus-content p,
.sts-content p {
	color: #acacac;
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 10px;
	display: block;
}

.aboutus-content p b,
.aboutus-content p a {
	color: #ed3657;
}

.aboutus-content div {
	display: block;
	color: #2bb7ad;
	font-size: 20pt;
	padding-bottom: 20px;
	font-family: "Lato-Regular";
}

.aboutus-content ul {
	list-style-type: disc;
	color: #2bb7ad;
	margin-left: 20px;
	padding-bottom: 30px;
}

.aboutus-content ul li {
	margin-bottom: 20px;
}

.aboutus-content ul li:last-child {
	margin-bottom: 0;
}

.aboutus-content strong {
	font-family: "Lato-Regular";
	font-size: 10pt;
	display: block;
	padding-bottom: 5px;
	color: #fff;
}

.faq-cover {
	display: block;
	width: 100%;
	padding-bottom: 100px;
}

.faq-submission {
	display: block;
	background: url(../images/faq-banner.jpg) no-repeat center top;
	background-size: cover;

	padding: 30px 20px 30px;
	margin-top: 20px;
}

.faq-submission-header {
	display: block;
	width: 100%;
	text-align: center;
	padding-bottom: 20px;

}

.faq-submission-header span {
	color: #fff;
	display: block;
	text-align: center;
	font-size: 20pt;
	font-family: "Lato-Regular";
	line-height: 30pt;
	padding-bottom: 20px;
	padding-top: 20px;
}

.faq-submission-header a {
	width: 200px;
	margin: 0 auto;
	display: block;
}



.faq-submission-login {
	display: none;
	overflow: hidden;
	padding: 0px 0px;
}

.faq-submission-login h3 {
	text-align: center;
	color: #ccc;
	font-size: 10pt;
	padding-bottom: 30px;
}

.faq-submission-left,
.faq-submission-right {
	padding: 10px 0px;
	float: left;
}

.faq-submission-left {
	width: 47%;
	padding-right: 20px;
}

.faq-submission-right {
	width: 53%;
	padding-left: 20px;
}

.faq-submission-right {
	border-left: 2px solid #5c5d75;
}

.faq-submission-left h3,
.faq-submission-right h3 {
	color: #2bb7ad;
	display: block;
	padding-bottom: 20px;
	font-size: 10pt;
	font-family: "Lato-Regular";
}

.faq-submission-left p {
	color: #fff;
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 20px;
}

.faq-submission-left a {
	width: 150px;
}

.faq-submission-right p {
	color: #fff;
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 10px;
}

.faq-submission-right ul.user-login {
	display: block;
	width: 100%;
	overflow: hidden;
}

.faq-submission-right ul.user-login li {
	display: block;
	width: 49%;
}

.faq-submission-right ul.user-login li:first-child {
	float: left;
}

.faq-submission-right ul.user-login li:last-child {
	float: right;
}

.faq-submission-right ul.user-login li .input-field {
	background: #ebebeb;
	color: #000;
	padding: 10px 20px;
}

.faq-submission-right form {
	margin-bottom: 30px;
}

.faq-submission-right input[type="submit"] {
	margin-top: 20px;
	width: 150px;
}

.faq-submission-right ul.social-login {
	display: block;
	width: 100%;
	overflow: hidden;
}

.faq-submission-right ul.social-login li {
	display: block;
	width: 49%;
	margin: 0;
	padding: 0;
}

.faq-submission-right ul.social-login li:first-child {
	float: left;
}

.faq-submission-right ul.social-login li:last-child {
	float: right;
}

.faq-submission-right ul.social-login li a {
	display: block;
	padding: 10px 20px;
	font-family: "Lato-Regular";
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.faq-submission-right ul.social-login li a.fb-login {
	background: #38559d;
	color: #fff;
}

.faq-submission-right ul.social-login li a.fb-login:hover {
	background: #293f75;
}

.faq-submission-right ul.social-login li a.fb-login i {
	vertical-align: middle;
	color: #fff;
	margin: 0px 20px 0px 0px;
	width: 16px;
}

.faq-submission-right ul.social-login li a.google-login {
	background: #db4d35;
	color: #fff;
}

.faq-submission-right ul.social-login li a.google-login:hover {
	background: #b33449;
}

.faq-submission-right ul.social-login li a.google-login i {
	vertical-align: middle;
	color: #fff;
	margin: 0px 20px 0px 0px;
	width: 16px;
}


.faq-question-answer {
	display: block;
	width: 100%;
}

.faq-question-answer>ul {
	list-style-type: decimal;
	margin-left: 20px;
	padding: 30px 0px 50px;
}

.faq-question-answer>ul>li {
	margin-bottom: 50px;
	color: #fff;
	font-size: 10pt;
	line-height: 15pt;
	font-family: "Lato-Regular";
}

.faq-question-answer>ul>li>span {
	display: block;
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
	font-family: "Lato-Light";
}

.faq-question-answer>ul>li>span p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
	font-family: "Lato-Light";
}

.faq-question-answer>ul>li>span b {
	color: #ed3657;
}


.faq-question-answer>ul>li>span.answer a {
	color: #ed3657;
}

.faq-submission-input {
	padding: 0px 30px;
	display: none;
}

.faq-submission-input p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 20px;
}

.faq-submission-input textarea {
	background: #ebebeb;
	color: #000;
	margin-bottom: 20px;
}

.faq-submission-input input[type="submit"] {
	margin: 15px auto;
}

.disclaimer {
	width: 100%;
	padding-bottom: 100px;
	display: block;
}

.disclaimer-content {
	padding: 30px 0px;
}

.disclaimer-content h2 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 11pt;
	line-height: 15pt;
}

.disclaimer-content p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
}

.disclaimer-content p a {
	color: #ed3657;
}

.termofservice {
	width: 100%;
	padding-bottom: 100px;
	display: block;
}

.terms-content {
	padding: 30px 0px;
}

.terms-content h2 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 11pt;
	line-height: 15pt;
	padding-bottom: 5px;
}

.terms-content p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
}

.terms-content p a {
	color: #ed3657;
}

.terms-content i {
	color: #acacac;
	font-size: 9pt;
}

.terms-content p b {
	display: block;
	margin: 0px 0px 5px 0px;
	color: #ffffff;
	font-family: "Lato-Regular";
}

.terms-content ul {
	list-style-type: disc;
	margin-left: 20px;
	padding: 0px 0px;
}

.terms-content ul li {
	color: #acacac;
	margin-bottom: 10px;
	line-height: 15pt;
}


.refundpolicy {
	width: 100%;
	padding-bottom: 100px;
	display: block;
}

.no-refund {
	padding: 30px 0px;
}

.no-refund h2 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 11pt;
	line-height: 15pt;
}

.no-refund p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
}

.no-refund p a {
	color: #ed3657;
}



.privacy {
	width: 100%;
	padding-bottom: 100px;
	display: block;
}

.privacy-policy {
	padding: 30px 0px;
}

.privacy-policy h2 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 11pt;
	line-height: 15pt;
	padding-bottom: 5px;
}

.privacy-policy p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
}

.privacy-policy p a {
	color: #ed3657;
}

.privacy-policy i {
	color: #acacac;
	font-size: 9pt;
}

.privacy-policy p b {
	display: block;
	margin: 0px 0px 5px 0px;
	color: #ffffff;
	font-family: "Lato-Regular";
}

.privacy-policy ul {
	list-style-type: disc;
	margin-left: 20px;
	padding: 0px 0px;
}

.privacy-policy ul li {
	color: #acacac;
	margin-bottom: 10px;
	line-height: 15pt;
}

.privacy-policy ul li a {
	color: #ed3657;
}

.sitemap {
	display: block;
	width: 100%;
}

.sitemap-list {
	display: block;
	padding: 30px 0px 100px;
}

.sitemap-list ul {
	display: inline-block;
	width: 31%;
	margin-right: 10px;
	vertical-align: top;
	color: #2bb7ad;
	margin-bottom: 30px;
	min-width: 200px;

}

.sitemap-list ul li {
	list-style-type: disc;
	margin: 10px 0px;
	margin-left: 15px;
	font-size: 11pt;
}

.sitemap-list ul li:first-child {
	margin-bottom: 20px;
	margin-top: 0;
	text-transform: uppercase;
	color: #2bb7ad;
	list-style-type: none;
	margin-left: 0;
	font-size: 10pt;
}

.sitemap-list ul li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	font-family: "Lato-Regular";
	font-size: 10pt;
}

.sitemap-list ul li a:hover {
	color: #ed3657;
}

.contactus {
	display: block;
	width: 100%;
}

.contactus-form {
	display: block;
	width: 100%;
	padding: 30px 0px 100px;
}

.contactus-form ul {
	width: 100%;
	overflow: hidden;
	max-width: 800px;
	padding-bottom: 30px;
}

.contactus-form ul li {
	width: 49%;
	margin-bottom: 15px;
	overflow: hidden;
}

.contactus-form ul li:nth-child(odd) {
	float: left;
}

.contactus-form ul li:nth-child(even) {
	float: right;
}

.contactus-form ul li.msg {
	display: block;
	float: none;
	width: 100%;
}

.contactus-form ul li.capchacode {
	display: block;
	float: none;
	width: 100%;
}

.contactus-form ul li .input-field {
	background: #ebebeb;
	font-family: "Lato-Regular";
	color: #000;
}

.contactus-form ul li input#mobile-code {
	width: 30%;
	float: left;

	border-top-right-radius: 0px;
	-moz-border-top-right-radius: 0px;
	-ms-border-top-right-radius: 0px;
	-o-border-top-right-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-bottom-right-radius: 0px;
	-ms-border-bottom-right-radius: 0px;
	-o-border-bottom-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
}

.contactus-form ul li input#mobile-no {
	width: 70%;
	float: left;

	border-top-left-radius: 0px;
	-moz-border-top-left-radius: 0px;
	-ms-border-top-left-radius: 0px;
	-o-border-top-left-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	-moz-border-bottom-left-radius: 0px;
	-ms-border-bottom-left-radius: 0px;
	-o-border-bottom-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
}

.contactus-form ul li textarea {
	height: 200px;
}

.promotions {
	display: block;
	width: 100%;
}

.promotions-list {
	display: block;
	width: 100%;
	padding: 30px 0px 100px;
}

.promotion-cover {
	display: block;
	width: 100%;
	max-width: 800px;
	padding: 40px 0px;
	border-bottom: 1px solid #5c5d75;
}

.promotion-cover:first-child {
	padding-top: 0;
}

.promotion-title {
	font-size: 14pt;
	color: #2bb7ad;
	font-family: "Lato-Regular";
	padding-bottom: 20px;
	display: block;
}

.promotion-title b {
	display: block;
	color: #acacac;
	padding-top: 5px;
	font-size: 10pt;
}

.promotion-banner {
	width: 100%;
	margin-bottom: 20px;
}

.promotion-banner img {
	display: block;
	width: 100%;
}

.promotion-content {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #44455d;
}

span.toggle-promotion {
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	padding: 20px 25px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

span.toggle-promotion:hover {
	color: #fff;
	background: #ed3657;
}

span.toggle-promotion i {
	color: #ed3657;
	font-size: 10pt;
	vertical-align: middle;
	margin-left: 20px;
}

span.toggle-promotion:hover i {
	color: #000;
}

.promotion-show {
	display: block;
	padding: 10px 25px 20px;
	font-size: 10pt;
	font-family: "Lato-Light";
	line-height: 15pt;
	color: #ccc;
	display: none;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.promotion-show strong {
	color: #ed3657;
	font-family: "Lato-Regular";
	font-size: 10pt;
}

.promotion-show ul {
	list-style-type: disc;
	color: #ccc;
	font-size: 10pt;
}

.promotion-show ul li {
	margin: 5px 0px 5px 20px;
}

.latest-news {
	display: block;
	padding: 30px 0px 20px;
}

.latest-news h1,
.latest-news .h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 2px solid #ed3657;
}

.latest-news ul {
	padding: 10px 0px 10px;
	width: 100%;
	overflow: hidden;
}

.latest-news ul li {
	width: 32%;
	display: block;
	float: left;
	margin: 0 1% 10px;
}

.latest-news ul li:first-child {
	margin-left: 0;
}

.latest-news ul li:last-child {
	margin-right: 0;
}

.latest-news ul li .news-bg-cover {
	display: block;
	width: 100%;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}

.latest-news ul li .news-bg-cover a {
	display: block;
	padding: 10px 15px 15px;
	background: #10122b;
}

.latest-news ul li .news-bg-cover a:hover {
	background: rgba(0, 0, 0, 0.3);
}

.latest-news ul li .news-bg-cover a {
	padding-top: 40px;
	background: rgba(0, 0, 0, 0.7);
}

.latest-news ul li .news-bg-cover a p {
	font-size: 10pt;
	color: #fff;
	line-height: 14pt;
	height: 36px;
	padding-bottom: 5px;
	overflow: hidden;
}

.latest-news ul li .news-bg-cover a b {
	display: block;
	color: #acacac;
	font-size: 9pt;
}

.followus {
	display: block;
	padding: 30px 0px 20px;
}

.followus h1,
.followus .h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 2px solid #ed3657;
}

.followus ul {
	padding: 10px 0px 10px;
	width: 100%;
	overflow: hidden;
}

.followus ul li {
	display: block;
	margin: 0 0 10px 0;
}


.followus ul li a {
	display: block;
	overflow: hidden;
	width: 100%;
	text-align: center;
	color: #fff;
}

.followus ul li a i.left-icon {
	position: absolute;
	left: 11px;
	top: 7px;
	font-size: 15pt;
	transition: all ease-in-out 0.7s;
	-moz-transition: all ease-in-out 0.7s;
	-ms-transition: all ease-in-out 0.7s;
	-o-transition: all ease-in-out 0.7s;
	-webkit-transition: all ease-in-out 0.7s;
}

.followus ul li a {
	height: 35px;
	width: 100%;
	padding: 0px 20px 0px 40px;
	text-align: left;
	color: #fff;
	line-height: 37px;
	font-size: 10pt;
	text-transform: Uppercase;
	font-family: "Lato-Regular";
	position: relative;

	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

.followus ul li a:hover {
	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

.followus ul li a:hover i.left-icon {
	left: calc(100% - 25px);
	transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
}

.followus ul li a i.bg-icon {
	display: block;
	color: #ffffff;
	font-size: 40pt;
	position: absolute;
	bottom: -17px;
	right: 25px;
	opacity: 0.1;
}


.followus ul li a.fb {
	background: #526ba6;
}

.followus ul li a.fb:hover {
	background: #405681;
}

.followus ul li a.tw {
	background: #26a2e7;
}

.followus ul li a.tw:hover {
	background: #267daf;
}

.followus ul li a.gp {
	background: #ed413c;
}

.followus ul li a.gp:hover {
	background: #c83836;
}

.followus ul li a.ln {
	background: #007ab7;
}

.followus ul li a.ln:hover {
	background: #00496e;
}


.blog-categories {
	display: block;
	padding: 30px 0px 20px;
}

.blog-categories h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #44455d;
}


.blog-categories select.select-dropdown {
	background: url(../images/angle-down.png) no-repeat right center;
	width: 100%;
}

.blog-categories select.select-dropdown option {
	background: #10122b;
}

.blog-tag {
	display: block;
	padding: 30px 0px 20px;
}

.blog-tag h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #44455d;
}

.blog-tag ul {
	padding: 10px 0px 10px;
	width: 100%;
	overflow: hidden;
}

.blog-tag ul li {
	display: inline-block;
	vertical-align: top;
	margin: 0px 5px 8px 0px;
	padding: 0;
}

.blog-tag ul li a {
	display: block;
	padding: 8px 10px;
	border: 1px solid #44455d;
	text-transform: uppercase;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #fff;
	font-size: 8pt;
}

.blog-tag ul li a:hover {
	background: #ed3657;
	border: 1px solid #ed3657;
	color: #fff;
}


.blog-upperpart {
	display: block;
	width: 100%;
	padding: 0px 0px 30px;
	overflow: hidden;
}

.blog-upperpart a.readmore {
	display: none;
}

.blog-upper-left {
	display: block;
}


.blog-image {
	display: block;
	width: 100%;

	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
	position: relative;
	overflow: hidden;
}

.blog-image .blog-featureimg {
	width: 100%;
	display: block;
}

.blog-image .blog-image-overlay {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}

.blog-image .blog-image-overlay:hover {
	background: rgba(0, 0, 0, .5);

	transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}

.blog-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.blog-image ul.blog-social-share {
	display: none;
	width: 100%;
	display: none;
	position: absolute;
	top: 10px;
	left: 10px;
}

.blog-image:hover ul.blog-social-share {
	display: block;
}

ul.blog-social-share li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

ul.blog-social-share li:last-child {
	margin-right: 0;
}

ul.blog-social-share li a {
	display: block;
}

ul.blog-social-share li a i {
	height: 30px;
	width: 30px;
	color: #fff;
	text-align: center;
	display: block;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	line-height: 30px;
}

ul.blog-social-share li a i.fa-facebook-f {
	background: #526ba6;
}

ul.blog-social-share li a i.fa-facebook-f:hover {
	background: #405681;
}

ul.blog-social-share li a i.fa-twitter {
	background: #26a2e7;
}

ul.blog-social-share li a i.fa-twitter:hover {
	background: #267daf;
}

ul.blog-social-share li a i.fa-google-plus-g {
	background: #ed413c;
}

ul.blog-social-share li a i.fa-google-plus-g:hover {
	background: #c83836;
}

ul.blog-social-share li a i.fa-linkedin-in {
	background: #007ab7;
}

ul.blog-social-share li a i.fa-linkedin-in:hover {
	background: #00496e;
}

.blog-image ul.blog-social-share {
	-webkit-animation-name: example;
	/* Safari 4.0 - 8.0 */
	-webkit-animation-duration: 0.5s;
	/* Safari 4.0 - 8.0 */
	animation-name: top-to-btm;
	animation-duration: 0.5s;
}

/*animation social for blog*/
@-webkit-keyframes top-to-btm {
	from {
		top: -50px;
	}

	to {
		top: 10px
	}
}

@keyframes top-to-btm {
	from {
		top: -50px;
	}

	to {
		top: 10px
	}
}

/*animation social for blog*/


.blog-content {
	display: block;
	width: 100%;
	padding: 20px 15px 10px;
}

.others-blog>li .blog-title h1,
.others-blog>li .blog-title .h1 {
	color: #fff;
	font-family: "Lato-Bold";
	font-size: 15pt;
	line-height: 20pt;
	display: block;
	margin-bottom: 10px;

}

.others-blog>li .blog-title h1 a,
.others-blog>li .blog-title .h1 a {
	color: #fff;
}

.others-blog>li .blog-title b.blog-date {
	display: block;
	color: #66678b;
	font-size: 10pt;
}

.others-blog>li .blog-title b.blog-date i {
	display: inline-block;
	vertical-align: baseline;
	margin-right: 10px;
}

.others-blog>li .blog-title b.blog-date a {
	color: #ed3657;
}

.blog-content p {
	display: block;
	color: #acacac;
	font-size: 10pt;
	line-height: 15pt;
	overflow: hidden;
}



.blog-bottompart {
	display: block;
	padding-bottom: 100px;
	width: 100%;
}

ul.others-blog {
	padding: 30px 0px;
}

ul.others-blog>li {
	display: block;
	overflow: hidden;
	padding-bottom: 30px;
	border-bottom: 1px solid #44455d;
	margin-bottom: 50px;
}

ul.others-blog>li .blog-title {
	display: block;
	width: 100%;
	padding-bottom: 10px;

}

ul.others-blog li .blog-image {
	width: 100%;
	display: block;
}

ul.others-blog li .blog-image>img {
	width: 100%;
}

ul.others-blog li .blog-content {
	width: 100%;
	padding: 15px 0px 15px 0px;
	overflow: hidden;
}

ul.others-blog li .blog-content .blog-comment-amount {
	display: block;
	width: 100%;
	padding-top: 5px;
}

ul.others-blog li .blog-content .blog-comment-amount i {
	color: #acacac;
	vertical-align: middle;
	margin-right: 10px;
	font-size: 11pt;
}

ul.others-blog li .blog-content .blog-comment-amount span {
	display: inline-block;
	vertical-align: middle;
	color: #acacac;
	font-size: 10pt;
}

ul.others-blog li .blog-content p {
	padding-bottom: 10px;
}

.blog-bottompart .pagination {
	display: block;
	padding: 20px 0px;
}

.blog-bottompart .pagination ul {
	text-align: center;
}

.blog-bottompart .pagination ul li {
	display: inline-block;
	margin: 5px 10px;
	padding: 0 0;
	vertical-align: middle;
	border: none;
}

.blog-bottompart .pagination ul li a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
	line-height: 28px;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

.blog-bottompart .pagination ul li a:hover {
	background: #ed3657;
}

.blog-bottompart .pagination ul li.currentpage a {
	background: #ed3657;
	border: 1px solid #ed3657;
}

.blogdetails {
	display: block;
	width: 100%;
	padding: 30px 0px 150px;
	max-width: 900px;
}

.blogdetails-cat {
	padding-bottom: 30px;
}

.blogdetails-cat ul {
	display: block;
	width: 100%;

}

.blogdetails-cat ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 3px 20px 3px 0px;
	position: relative;
	padding-left: 15px;
}

.blogdetails-cat ul li b {
	display: block;
	width: 100%;
	padding: 13px 30px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #44455d;
	color: #fff;
}

.blogdetails-cat ul li:before {
	width: 5px;
	height: 5px;
	position: absolute;
	content: "";
	background: #ed3657;
	left: 0;
	top: 50%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.blogdetails-cat ul li a {
	display: block;
	color: #fff;
	font-family: "Lato-Regular";
}

.blogdetails-cat ul li a:hover {
	text-decoration: underline;
}

.blogdetails h1,
.blogdetails .h1 {
	font-size: 18pt;
	color: #fff;
	font-family: "Lato-Bold";
	letter-spacing: 1px;
	display: block;
	padding-bottom: 20px;
}

ul.date-comment {
	width: 100%;
	display: block;
	padding-bottom: 20px;
}

ul.date-comment li {
	display: inline-block;
	margin-right: 50px;
	font-size: 12pt;
}

ul.date-comment li:last-child {
	margin-right: 0;
}

ul.date-comment li b {
	color: #fff;
	display: inline-block;
	vertical-align: middle;
}

ul.date-comment li a {
	display: inline-block;
	vertical-align: middle;
}

.blogdetails-image {
	width: 100%;
	display: block;
	margin-bottom: 30px;
}

.blogdetails-image img {
	display: block;
	width: 100%;
}

.blogdetails-content {
	display: block;
	padding: 10px 0px 50px;
	color: #acacac;
	font-size: 11pt;
	line-height: 16pt;
}

.blogdetails-content img {
	width: 100%;
}

.blogdetails-content strong {
	font-family: "Lato-Bold";
	color: #ddd;
}

.blogdetails-content p {
	color: #acacac;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	line-height: 1.5;
}

.blogdetails-content p img {
	width: 100% !important;
	height: 100% !important;
	max-width: auto;
	max-height: auto;
}

.blogdetails-content>span {
	font-size: 10pt !important;
	line-height: 15pt;
}

.blogdetails-content h2 {
	display: block;
	color: #fff;
	padding-bottom: 10px;
	font-family: "Lato-Bold";
	letter-spacing: -.022em;
	font-size: 28px;
	line-height: 1.1;
}

.blogdetails-content h3 {
	display: block;
	color: #fff;
	font-family: "Lato-Bold";
	letter-spacing: -.02em;
	font-size: 18px;
	line-height: 1.25;
	padding-bottom: 10px;
}

.blogdetails-content h4 {
	display: block;
	color: #fff;
	font-family: "Lato-Bold";
	font-size: 16px;
	line-height: 1.3;
	padding-bottom: 10px;
}

.blogdetails-content a {
	color: #ed3657;
	text-decoration: underline;
}

.blogdetails-content b {
	font-family: "Lato-Bold";
	color: #fff;
}

.blogdetails-content i {
	font-style: italic;
	color: #ddd;
}

.blogdetails-content ul {
	display: block;
	padding: 10px 0px;
	margin-left: 10px;
	color: #ddd;
	font-size: 11pt;
}

.blogdetails-content ul li {
	list-style-type: disc;
	margin-left: 18px !important;
	line-height: 1.5;
	font-size: 11pt;
	font-family: "Lato-Regular";
}

.blogdetails-content ol {
	display: block;
	padding: 10px 0px;
	margin-left: 10px;
	color: #ddd;
	font-size: 11pt;
}

.blogdetails-content ol li {
	list-style-type: decimal;
	margin-left: 15px !important;
	color: #ddd;
	line-height: 1.5;
	font-family: "Lato-Regular";
}

.blogdetails-tag {
	display: block;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 50px;
}

.blogdetails-tag ul li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	color: #acacac;
	text-transform: uppercase;
	font-size: 8pt;
	margin-bottom: 10px;
}

.blogdetails-tag ul li a {
	display: block;
	padding: 8px 15px;
	border: 1px solid #44455d;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #fff;
}

.blogdetails-tag ul li:last-child {
	margin-right: 0;
}

.blogdetails-tag ul li:first-child {
	margin-left: 0;
}

.blogdetails-tag span {
	display: block;
	color: #acacac;
	text-transform: uppercase;
	font-size: 10pt;
	padding-bottom: 10px;
}

.blogdetails-tag ul li a:hover {
	background: #ed3657;
	border: 1px solid #ed3657;
	color: #fff;
}

.blogdetails-social-share {
	display: block;
	padding: 40px 0px;
	border-top: 1px dashed #44455d;

	border-bottom: 1px dashed #44455d;
}

.blogdetails-social-share span {
	display: block;
	color: #fff;
	padding-bottom: 10px;
	text-transform: uppercase;
}


.blogdetails-social-share ul {
	padding: 10px 0px 0px;
	width: 100%;
	overflow: hidden;
}

.blogdetails-social-share ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 20px 10px 0;
	padding: 0;
}

.blogdetails-social-share ul li a {
	display: block;
	overflow: hidden;
	height: 35px;
	width: 150px;
	padding: 0px 20px 0px 40px;
	text-align: left;
	color: #fff;
	line-height: 37px;
	font-size: 10pt;
	text-transform: Uppercase;
	font-family: "Lato-Regular";
	position: relative;

	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

.blogdetails-social-share ul li a:hover {
	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

.blogdetails-social-share ul li a:hover i.left-icon {
	left: calc(100% - 25px);
	transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
}

.blogdetails-social-share ul li a i.left-icon {
	position: absolute;
	left: 11px;
	top: 7px;
	font-size: 15pt;
	transition: all ease-in-out 0.7s;
	-moz-transition: all ease-in-out 0.7s;
	-ms-transition: all ease-in-out 0.7s;
	-o-transition: all ease-in-out 0.7s;
	-webkit-transition: all ease-in-out 0.7s;
}

.blogdetails-social-share ul li a i.bg-icon {
	display: block;
	color: #ffffff;
	font-size: 40pt;
	position: absolute;
	bottom: -17px;
	right: 25px;
	opacity: 0.1;
}


.blogdetails-social-share ul li a.fb {
	background: #526ba6;
}

.blogdetails-social-share ul li a.fb:hover {
	background: #405681;
}

.blogdetails-social-share ul li a.tw {
	background: #26a2e7;
}

.blogdetails-social-share ul li a.tw:hover {
	background: #267daf;
}

.blogdetails-social-share ul li a.gp {
	background: #ed413c;
}

.blogdetails-social-share ul li a.gp:hover {
	background: #c83836;
}

.blogdetails-social-share ul li a.ln {
	background: #007ab7;
}

.blogdetails-social-share ul li a.ln:hover {
	background: #00496e;
}

.next-prev-blog {
	display: block;
	width: 100%;
	padding: 40px 0px;
}

.next-prev-blog ul {
	overflow: hidden;
	width: 100%;
	display: block;
}

.next-prev-blog ul li {
	display: block;
	width: 50%;
	float: left;
}

.next-prev-blog ul li:first-child {
	text-align: left;
}

.next-prev-blog ul li:first-child a {
	float: left;
}

.next-prev-blog ul li:last-child {
	text-align: right;
}

.next-prev-blog ul li:last-child a {
	float: right;
}

.next-prev-blog ul li a {
	display: block;
	overflow: hidden;
}

.next-prev-blog ul li a b {
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 5px;
	display: block;
}

.next-prev-blog ul li a span {
	display: block;
	width: 100%;
	max-width: 200px;
	color: #ed3657;
	line-height: 15pt;
	font-size: 10pt;
}


.next-prev-blog ul li a:hover span {
	text-decoration: underline;
}

.news-upperpart {
	display: block;
	width: 100%;
	padding: 0px 0px 30px;
	overflow: hidden;
}

.news-upper-left {
	width: 70%;
	display: block;
	float: left;
	padding-right: 20px;
}


.news-upper-right {
	width: 30%;
	display: block;
	float: left;
}

.news-bg {
	display: block;
	width: 100%;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	position: relative;
}

.news-upper-left .news-bg {
	height: 350px;
}

.news-date-title {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 10px 20px;

	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 47%, rgba(0, 0, 0, 0.9) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 47%, rgba(0, 0, 0, 0.9) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 47%, rgba(0, 0, 0, 0.9) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33000000', endColorstr='#e6000000', GradientType=0);
	/* IE6-9 */
}

.news-date-title ul {
	width: 100%;
	padding-bottom: 10px;
}

.news-date-title ul li {
	display: inline-block;
	vertical-align: middle;
	padding: 5px 10px;
	margin-right: 10px;
}

.news-date-title ul li:last-child {
	margin-left: 0;
	color: #acacac
}

.news-date-title ul li:first-child {
	color: #fff;
	background: #ed3657;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.news-date-title h1,
.news-date-title .h1 {
	color: #fff;
	font-family: "Lato-Bold";
	display: block;

}

.news-upper-left .news-bg .news-date-title h1,
.news-upper-left .news-bg .news-date-title .h1 {
	font-size: 15pt;
	line-height: 22pt;
	height: 58px;
	overflow: hidden;
}


.news-upper-right>ul {
	width: 100%;
	display: block;
}

.news-upper-right>ul>li {
	display: block;
	margin-bottom: 20px;
}

.news-upper-right>ul>li:last-child {
	margin-bottom: 0;
}


.news-upper-right .news-bg {
	height: 165px;
}

.news-upper-right .news-bg .news-date-title h1,
.news-upper-right .news-bg .news-date-title .h1 {
	font-size: 10pt;
	line-height: 15pt;
	height: 40px;
	overflow: hidden;
}

.news-advertising-banner {
	display: block;
	text-align: center;
	width: 100%;
	padding-bottom: 30px;
}

.news-advertising-banner img {
	display: block;
	width: 90%;
	margin: 0 auto;
}

.news-bottompart {
	display: table;
	width: 100%;
}

.news-bottompart-left {
	width: auto;
	display: table-cell;
	vertical-align: top;
	padding-right: 30px;
}

.news-bottompart-right {
	width: 250px;
	display: table-cell;
	vertical-align: top;
}

.latest-news-list {
	display: block;
	width: 100%;
	padding-bottom: 100px;
}


.latest-news-list>ul {
	display: block;
	width: 100%;
	overflow: hidden;
}

.latest-news-list>ul>li {
	display: block;
	width: 49%;
	padding-bottom: 20px;
}

.latest-news-list>ul>li:nth-child(odd) {
	float: left;
}

.latest-news-list>ul>li:nth-child(even) {
	float: right;
}

.latest-news-list .news-bg {
	height: 180px;
}

.latest-news-list .news-date-title {
	padding: 15px 20px;
}

.latest-news-list .news-date-title ul {
	padding-bottom: 0;
}

.latest-news-list .news-text {
	padding: 30px 0px 20px;
	border-bottom: 1px solid #5c5d75;
}

.latest-news-list .news-text p {
	color: #fff;
	font-size: 10pt;
	font-family: "Lato-Regular";
	line-height: 15pt;
	margin-bottom: 20px;
	height: 40px;
	overflow: hidden;
}

a.readmore {
	color: #ed3657;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

a.readmore:hover {
	text-decoration: underline;
}

.news-bottom-right-content {
	padding-bottom: 40px;
	display: block;
	width: 100%;
}

.news-bottom-right-content .news-right-header {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
}

.news-bottom-right-content .news-right-header span {
	display: inline-block;
	width: 130px;
	text-align: center;
	padding: 8px 10px 6px;
	background: #269f6c;
	color: #fff;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}


ul.news-right-followus {
	padding: 10px 0px 10px;
	width: 100%;
	overflow: hidden;
}

ul.news-right-followus li {
	display: block;
	margin: 0 0 10px 0;
	padding: 0;
	width: 100%;
}


ul.news-right-followus li a {
	display: block;
	overflow: hidden;
	width: 100%;
	text-align: center;
	color: #fff;
}

ul.news-right-followus li a i.left-icon {
	position: absolute;
	left: 11px;
	top: 7px;
	font-size: 15pt;
	transition: all ease-in-out 0.7s;
	-moz-transition: all ease-in-out 0.7s;
	-ms-transition: all ease-in-out 0.7s;
	-o-transition: all ease-in-out 0.7s;
	-webkit-transition: all ease-in-out 0.7s;
}

ul.news-right-followus li a {
	height: 35px;
	width: 100%;
	padding: 0px 20px 0px 40px;
	text-align: left;
	color: #fff;
	line-height: 37px;
	font-size: 10pt;
	text-transform: Uppercase;
	font-family: "Lato-Regular";
	position: relative;

	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

ul.news-right-followus li a:hover {
	transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-ms-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
}

ul.news-right-followus li a:hover i.left-icon {
	left: calc(100% - 25px);
	transition: all ease-in-out 0.5s;
	-moz-transition: all ease-in-out 0.5s;
	-ms-transition: all ease-in-out 0.5s;
	-o-transition: all ease-in-out 0.5s;
	-webkit-transition: all ease-in-out 0.5s;
}

ul.news-right-followus li a i.bg-icon {
	display: block;
	color: #ffffff;
	font-size: 40pt;
	position: absolute;
	bottom: -17px;
	right: 25px;
	opacity: 0.1;
}


ul.news-right-followus li a.fb {
	background: #526ba6;
}

ul.news-right-followus li a.fb:hover {
	background: #405681;
}

ul.news-right-followus li a.tw {
	background: #26a2e7;
}

ul.news-right-followus li a.tw:hover {
	background: #267daf;
}

ul.news-right-followus li a.gp {
	background: #ed413c;
}

ul.news-right-followus li a.gp:hover {
	background: #c83836;
}

ul.news-right-followus li a.ln {
	background: #007ab7;
}

ul.news-right-followus li a.ln:hover {
	background: #00496e;
}

.news-right-subscribe {
	display: block;
}

.news-right-subscribe h1,
.news-right-subscribe .h1 {
	font-size: 13pt;
	text-transform: uppercase;
	color: #fff;
	font-family: "Lato-Bold";
	line-height: 18pt;
	display: block;
	padding-bottom: 5px;
}

.news-right-subscribe p {
	color: #acacac;
	font-size: 10pt;
	padding-bottom: 10px;
	line-height: 15pt;
	display: block;
}

.news-right-subscribe input[type="email"] {
	background: none;
	border: none;
	display: block;
	width: 100%;
	border: 1px solid #44455d;
	padding: 8px 20px 6px;
	color: #fff;
	font-family: "Lato-Regular";
	margin-bottom: 20px;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.news-right-subscribe input[type="submit"] {
	font-family: "Lato-Regular";
}

.news-detail {
	display: block;
	width: 100%;
	max-width: 900px;
}

.news-detail h1 {
	font-size: 15pt;
	line-height: 22pt;
	color: #fff;
	font-family: "Lato-Bold";
	display: block;
	padding-bottom: 20px;
}

.news-detail span.news-date {
	color: #acacac;
	font-size: 10pt;
	display: block;
	padding-bottom: 20px;
}

.news-detail img {
	display: block;
	width: auto;
	max-width: 100%;
	padding-bottom: 20px;
}

.news-detail p {
	padding-bottom: 10px;
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
}

.news-detail p a {
	color: #ed3657;
}

.news-detail strong {
	display: block;
	font-family: "Lato-Bold";
	color: #fff;
	padding-bottom: 10px;
}

.news-detail ul li {
	list-style-type: disc;
	margin-left: 20px;
	margin-bottom: 10px;
	line-height: 15pt;
	color: #ccc;
}

.news-detail ol li {
	list-style-type: decimal;
	margin-left: 20px;
	margin-bottom: 10px;
	line-height: 15pt;
	color: #ccc;
}

.news-right-slider {
	display: block;
	width: 100%;
}

.news-right-slider ul {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	width: 250px;
}

.news-right-slider ul li {
	width: 250px;
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
	margin-left: -4px;
}

.news-right-slider ul li:first-child {
	margin-left: 0;
}

.news-right-slider ul li:last-child {
	margin-right: 0px;
}

.news-right-slider ul li a {
	display: block;
}

.news-right-slider ul li a p {
	color: #fff;
	font-size: 10pt;
	font-family: "Lato-Regular";
	line-height: 15pt;
	display: block;
	margin-bottom: 5px;
	white-space: normal;
	height: 40px;
	overflow: hidden;
}

.news-right-slider ul li a b {
	display: block;
	color: #acacac;
	font-size: 9pt;
	padding-bottom: 20px;
	white-space: normal;
}

.news-right-slider ul li a .news-bg {
	height: 180px;
}

.news-right-header i.news-slide-to-left,
.news-right-header i.news-slide-to-right {
	width: 20px;
	height: 20px;
	color: #000;
	position: absolute;
	background: #acacac;
	text-align: center;
	line-height: 20px;
	cursor: pointer;
}

.news-right-header i.news-slide-to-right {
	bottom: 0;
	right: 0;
}

.news-right-header i.news-slide-to-left {
	bottom: 0;
	right: 25px;
}

.news-right-header i.news-slide-to-left:hover,
.news-right-header i.news-slide-to-right:hover {
	background: #ed3657;
	color: #fff;
}

.shoppingcart {
	display: block;
	padding: 0px 0px 100px;
}

.shoppingcart-cover {
	display: block;
	padding: 30px 0px 30px;
}

.shoppingcart-cover h3 {
	color: #acacac;
	font-size: 12pt;
	text-align: center;
	display: block;
	padding-bottom: 10px;
}

ul.in-cart-item {
	display: block;
	width: 100%;
}

ul.in-cart-item>li {
	display: flex;
	align-items:center;
	position: relative;
	overflow: hidden;
	margin: 15px 0px;
	background: #10122b;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 10px 0px;
}

ul.in-cart-item>li .cart-item {
	width: 65%;
	float: left;
	padding: 5px 5px 5px 15px;
	border-right: 1px solid #44455d;
}

ul.in-cart-item>li .item-price {
	width: 25%;
	float: left;
	padding: 5px 5px;
	border-right: 1px solid #44455d;
}

ul.in-cart-item>li .remove-item {
	width: 10%;
	float: left;
	padding: 5px 5px;
	position: relative;
}



ul.in-cart-item li .cart-item .date-bettingtype {
	display: block;
	width: 100%;
}

ul.in-cart-item li .cart-item .date-bettingtype p {
	color: #66678b;
	font-size: 9pt;
	display: inline-block;
	vertical-align: middle;
}

ul.in-cart-item li .cart-item .date-bettingtype p b {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 10px;
	padding: 5px 10px;
	color: #fff;
	font-size: 8pt;
	background: #212138;
}

ul.in-cart-item li .cart-item .event-match {
	display: block;
	width: 100%;
	padding: 10px 0px;
}

ul.in-cart-item li .cart-item .event-match p {
	color: #fff;
	font-size: 10pt;
	line-height: 13pt;
}

ul.in-cart-item li .cart-item .event-match p b {
	color: #acacac;
	font-size: 10pt;
	display: inline-block;
	vertical-align: baseline;
	margin-left: 20px;
}

ul.in-cart-item li .cart-item .tipster-link {
	display: block;
	text-align: left;
}

ul.in-cart-item li .cart-item .tipster-link i {
	color: #ed3657;
	display: inline-block;
	vertical-align: top;
	font-size: 8pt;
	margin-right: 5px;
}

ul.in-cart-item li .cart-item .tipster-link a {
	display: inline-block;
	vertical-align: bottom;
	color: #ed3657;
	font-size: 10pt;
	text-transform: capitalize;
}

ul.in-cart-item li .cart-item .tipster-link a:hover {
	text-decoration: underline;
}


ul.in-cart-item>li .item-price span {
	display: block;
	text-align: center;
	color: #acacac;
	font-size: 12pt;
	text-transform: uppercase;
	line-height: 66px;
}

ul.in-cart-item>li .item-price span b {
	display: inline-block;
	margin-left: 10px;
	color: #2bb7ad;
	vertical-align: baseline;
	font-family: "Lato-Regular";
}

ul.in-cart-item>li .remove-item span {
	position: absolute;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #ed3657;
	font-size: 12pt;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);

	cursor: pointer;
}

.cart-checkout {
	display: block;
	padding: 30px 0px 40px;
	overflow: hidden;
	width: 100%;
}

.cart-checkout .cart-total {
	width: 300px;
	float: right;
	display: block;
}

.cart-checkout .cart-total ul {
	padding-bottom: 20px;
}

.cart-checkout .cart-total ul li {
	display: block;
	overflow: hidden;
	margin: 5px 0px 10px;
}

.cart-checkout .cart-total ul li b {
	color: #acacac;
	float: left;
	font-size: 10pt;
}

.cart-checkout .cart-total ul li i {
	color: #fff;
	float: right;
	font-size: 10pt;
}

.cart-checkout .cart-total ul li.total i {
	color: #2bb7ad;
}

.cart-checkout .cart-total ul li.total b,
.cart-checkout .cart-total ul li.total i {
	font-size: 14pt;
	font-family: "Lato-Regular";
	text-transform: capitalize;
}

.cart-checkout .cart-total ul li.grandtotal {
	padding: 20px 0px 10px;
	;
	border-top: 1px solid #44455d;
	margin-top: 20px;
}



.cart-checkout .cart-total ul li.grandtotal i {
	color: #2bb7ad;
}

.cart-checkout .cart-total ul li.grandtotal b,
.cart-checkout .cart-total ul li.grandtotal i {
	font-size: 14pt;
	font-family: "Lato-Regular";
}

.cart-checkout .cart-total ul li a.checkout-promo-code {
	text-align: center;
	float: none;
	text-transform: uppercase;
}


.cart-checkout .cart-total input[type="submit"] {
	width: 100%;
}

.checkbox-checkout {
	position: relative;
	width: 100%;
	margin: 10px 0px;
}

.checkbox-checkout input {
	display: block;
	padding: 0px 0px 0px 0px;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.checkbox-checkout label {
	display: block;
	width: 100%;
	padding-left: 25px;
	color: #fff;
	position: relative;
	line-height: 15pt;
	cursor: pointer;
}

.checkbox-checkout label a {
	color: #ed3657;

}

.checkbox-checkout label:before {
	position: absolute;
	left: 0;
	top: 2px;
	width: 15px;
	height: 15px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 1px solid #44455d;
	content: "";
}

.checkbox-checkout input[type="checkbox"]:checked+label:after {
	position: absolute;
	left: 6px;
	top: 4px;
	width: 4px;
	height: 8px;
	border-right: 2px solid #ed3657;
	border-bottom: 2px solid #ed3657;
	content: "";
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.empty-cart {
	display: block;
	width: 100%;
	padding: 0px 0px 10px;
	overflow: hidden;
}

.empty-cart span {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	border: none;
	cursor: pointer;
	background: #ed3657;
	color: #fff;
	border: 1px solid #ed3657;

	width: 150px;
	float: right;
}

.checkout-select {
	display: block;
	width: 100%;
}

.select-checkout-method {
	display: block;
	padding: 30px 0px 30px;
	border-bottom: 1px solid #44455d;
}

.select-checkout-method h3 {
	color: #acacac;
	font-size: 12pt;
	text-align: center;
	display: block;
	padding-bottom: 10px;
}

ul.paymentmethod {
	overflow: hidden;
	padding-top: 30px;
}

ul.paymentmethod>li {
	display: block;
	margin-bottom: 20px;
	padding-left: 50px;
	position: relative;
	opacity: 0.5;
}

ul.paymentmethod>li:before {
	position: absolute;
	left: 10px;
	top: 25px;
	width: 20px;
	height: 20px;
	background: none;
	border: 1px solid #44455d;
	color: #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	content: "";
	cursor: pointer;
}

ul.paymentmethod>li.active {
	opacity: 1;
}

ul.paymentmethod>li.active:before {
	background: #ed3657;
}

ul.paymentmethod li .method-cover {
	display: table;
	width: 100%;
	position: relative;
	cursor: pointer;
}

ul.paymentmethod li .method-cover .method-image {
	display: table-cell;
	vertical-align: middle;
	width: 200px;
	height: 72px;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center center !important;
	border-radius: 10px 0px 0px 10px;
	-moz-border-radius: 10px 0px 0px 10px;
	-ms-border-radius: 10px 0px 0px 10px;
	-o-border-radius: 10px 0px 0px 10px;
	-webkit-border-radius: 10px 0px 0px 10px;

}

ul.paymentmethod li .method-cover .method-content {
	display: table-cell;
	vertical-align: middle;
	width: auto;
	height: 72px;

	border-radius: 0px 10px 10px 0px;
	-moz-border-radius: 0px 10px 10px 0px;
	-ms-border-radius: 0px 10px 10px 0px;
	-o-border-radius: 0px 10px 10px 0px;
	-webkit-border-radius: 0px 10px 10px 0px;
	background: #10122b;
	overflow: hidden;
	padding: 0px 40px 0px 40px;
}

ul.paymentmethod li .method-cover .method-content span {
	float: left;
	display: block;
	color: #fff;
	font-size: 11pt;
	font-family: "Lato-Regular";
	line-height: 15pt;
}

ul.paymentmethod li .method-cover .method-content b {
	display: block;
	float: right;
	color: #2bb7ad;
	font-size: 11pt;
	line-height: 13pt;
}

ul.paymentmethod li .method-detail {
	display: block;
	padding: 20px 0px 0px 200px;
	position: relative;
	display: none;
}

ul.paymentmethod li .method-detail .stcredits-balance {
	display: block;
	width: 100%;
	background: #44455d;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	padding: 10px 40px;
	overflow: hidden;

}

ul.paymentmethod li .method-detail .stcredits-balance span {
	display: block;
	float: left;
	padding: 5px 0px;
	color: #fff;
	font-size: 10pt;
	line-height: 14pt;
}

ul.paymentmethod li .method-detail .stcredits-balance span b {
	color: #2bb7ad;
}

ul.paymentmethod li .method-detail .stcredits-balance a {
	display: block;
	float: right;
	color: #ed3657;
	text-align: right;
	font-size: 10pt;
	padding: 5px 0px;
	line-height: 14pt;
}

.select-country-cover,
.select-bank-cover {
	display: block;
	width: 100%;
}

.select-country-cover span.show-country {
	display: block;
	width: 100%;
	background: #44455d;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	padding: 10px 40px;
	overflow: hidden;
	cursor: pointer;

}

.select-country-cover span.show-country b {
	display: block;
	float: left;
	padding: 5px 0px;
	color: #fff;
	font-size: 10pt;
}

.select-country-cover span.show-country i {
	display: block;
	float: right;
	color: #ed3657;
	text-align: right;
	font-size: 10pt;
	padding: 5px 0px;
}

.country-selection {
	display: none;
	padding: 10px 40px 10px;
}

.country-selection ul {
	width: 100%;
}

.country-selection ul li {
	display: inline-block;
	width: 110px;
	text-align: center;
	margin: 5px 10px 5px 0px;
}

.country-selection ul li:first-child {
	margin-left: 0;
}

.country-selection ul li:last-child {
	margin-right: 0;
}

.country-selection ul li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	border: 1px solid #44455d;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: none;
	text-transform: uppercase;
}

.country-selection ul li a:hover {
	background: #ed3657;
}

.country-selection ul li.active a {
	background: #ed3657;
	border: 1px solid #ed3657;
}


.select-bank-cover {
	display: none;
}

.select-bank-cover span.show-bank {
	display: block;
	width: 100%;
	background: #44455d;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	padding: 10px 40px;
	overflow: hidden;
	cursor: pointer;
}

.select-bank-cover span.show-bank b {
	display: block;
	float: left;
	padding: 5px 0px;
	color: #fff;
	font-size: 10pt;
}

.select-bank-cover span.show-bank i {
	display: block;
	float: right;
	color: #ed3657;
	text-align: right;
	font-size: 10pt;
	padding: 5px 0px;
}

.bank-selection {
	display: none;
	width: 100%;
	padding: 0px 40px;
}

.bank-selection ul {
	overflow: hidden;
	padding: 15px 0px 0px;
}

.bank-selection ul li {
	display: block;
	float: left;
	width: 120px;
	margin: 0px 10px 15px 0px;
}

.bank-selection ul li a {
	display: block;
	line-height: 0;
	text-align: center;
	border: solid 1px #44455d;
	position: relative;
	background: #fff;
	opacity: 0.5;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.bank-selection ul li a:hover {
	border: solid 1px #ed3657;
	opacity: 1;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.bank-selection ul li.active a {
	border: solid 1px #ed3657;
	opacity: 1;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.bank-selection ul li a i {
	display: block;
	top: 50%;
	left: 50%;
	position: absolute;
	font-size: 20pt;
	color: #ed3657;
	z-index: 9;
	opacity: 0;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;

	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.bank-selection ul li.active a i {
	opacity: 1;
	font-size: 30pt;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.bank-selection ul li a img {
	display: inline-block;
	width: 120px;
	height: 60px;
	opacity: 1;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.bank-selection ul li.active a img {
	opacity: 0.5;

	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}

.cart-checkout a.checkout-promo-code {
	display: block;
	float: left;
	color: #ed3657;

}


.cookiespolicy {
	display: block;
	width: 100%;
}

.cookies-content {
	display: block;
	padding: 30px 0px 100px;
}

.cookies-content strong {
	font-family: "Lato-Regular";
	font-size: 10pt;
	display: block;
	padding-bottom: 5px;
	color: #fff;
}

.cookies-content p {
	color: #acacac;
	font-size: 10pt;
	line-height: 15pt;
	padding-bottom: 10px;
	display: block;
}

.cookies-content p b {
	font-family: "Lato-Regular";
	color: #fff;
}

.member-dashboard {
	display: block;
	width: 100%;
}

.dashboard-upperpart {
	display: block;
	width: 100%;
	overflow: hidden;
	background: #10122b;
	padding: 10px 20px;
	border-top: 1px solid #ed3657;
}

.dashboard-profile-picture {
	display: block;
	float: left;
}

.dashboard-profile-status {
	display: block;
	float: right;
}

.dashboard-profile-picture ul {
	padding: 0px 0px;
}

.dashboard-profile-picture ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 10px 10px;
}

.dashboard-profile-picture ul li span {
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;

	overflow: hidden;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}

.dashboard-profile-picture ul li p {
	display: block;
	color: #fff;
	font-size: 15pt;
	padding-bottom: 15px;
}

.dashboard-profile-picture ul li a {
	padding: 6px 15px;
	width: 150px;
	text-align: center;
}

.dashboard-profile-status ul {
	padding-top: 10px;
}

.dashboard-profile-status ul li {
	display: inline-block;
	vertical-align: top;
	padding: 15px 15px 10px;
	width: 120px;
	margin: 0px 5px 10px 0px;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
}

.dashboard-profile-status ul li:last-child {
	margin-right: 0;
}

.dashboard-profile-status ul li:first-child {
	margin-left: 0;
}

.dashboard-profile-status ul li b {
	display: block;
	text-align: center;
	color: #fff;
	padding-bottom: 10px;
	font-size: 17pt;
	font-family: "Lato-Bold";
}

.dashboard-profile-status ul li p {
	display: block;
	text-align: center;
	font-size: 10pt;
	line-height: 14pt;
	color: #fff;
	font-family: "Lato-Regular";
}

.dashboard-profile-status ul li:nth-child(1) {
	background: #66678b
}

.dashboard-profile-status ul li:nth-child(2) {
	background: #269f6c
}

.dashboard-profile-status ul li:nth-child(3) {
	background: #c02555
}

.dashboard-profile-status ul li:nth-child(4) {
	background: #009fce
}

.dashboard-others-link {
	display: block;
	width: 100%;
	padding: 40px 0px;
}

.dashboard-others-link ul {
	width: 100%;
	text-align: center;
}

.dashboard-others-link ul li {
	display: inline-block;
	vertical-align: top;
	width: 40%;
	min-width: 200px;
	margin: 5px 5px;
}

.dashboard-others-link ul li:nth-child(1) {
	display: none;
}

.dashboard-others-link ul li a {
	display: block;
	width: 100%;
	padding: 10px 10px;
}

.dashboard-makedeposit {
	display: block;
	width: 90%;
	margin: 0 auto 30px;
	background: #44455d;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 20px 40px;
	overflow: hidden;
}

.dashboard-makedeposit .credit-balance {
	display: block;
	float: left;
	padding-right: 10px;
	margin-top: 5px;
}

.dashboard-makedeposit .credit-balance span {
	color: #fff;
	font-size: 11pt;
	display: block;
	padding-bottom: 5px;
}

.dashboard-makedeposit .credit-balance p {
	display: block;
	color: #acacac;
	font-size: 11pt;
	line-height: 15pt;
}

.dashboard-makedeposit a {
	display: block;
	float: right;
	margin-top: 5px;
}

.running-tips-subscription {
	display: block;
	width: 90%;
	margin: 0 auto;
}

.running-tips-subscription>ul {
	width: 100%;
}

.running-tips-subscription>ul>li {
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #5c5d75;
}

.running-tips-subscription>ul>li:last-child {
	border-bottom: none;
}

.running-tips-subscription>ul>li.active {
	background: #10122b;
	border-top: 2px solid #ed3657;
}

.running-tips-subscription>ul>li>span {
	display: block;
	width: 100%;
	padding: 30px 20px;
	color: #66678b;
	font-family: "Lato-Regular";
	font-size: 12pt;
	text-transform: uppercase;
	cursor: pointer;
}

.running-tips-subscription>ul>li>span:hover {
	background: #2c2c44;
}

.running-tips-subscription>ul>li>span>i {
	float: right;
	font-size: 12pt;
	color: #ed3657;
}


.running-tips-subscription>ul>li.active>span {
	color: #fff;

}

.dashboard-running-tips-table {
	padding: 0px 20px 40px;
	display: none;
}


/*dashbaord runnigtips table*/
table.dashboard-runningtips>tbody>tr>td {
	font-family: "Lato-Regular";
	vertical-align: middle;
	padding: 15px 10px;
}

table.dashboard-runningtips>tbody>tr>td .addtocart {
	width: 100%;
	max-width: 250px;
	float: right;
}

tabledashboard-runningtips tbody tr td .date-bettingtype {
	display: block;
	width: 100%;
}

table.dashboard-runningtips tbody tr td .date-bettingtype p {
	color: #66678b;
	font-size: 9pt;
	display: inline-block;
	vertical-align: middle;
}

table.dashboard-runningtips tbody tr td .date-bettingtype p b {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 10px;
	padding: 5px 10px;
	color: #ccc;
	font-size: 8pt;
	background: #212138;
}

table.dashboard-runningtips tbody tr td .event-match {
	display: block;
	width: 100%;
	padding: 10px 0px;
}

table.dashboard-runningtips tbody tr td .event-match p {
	color: #acacac;
	font-size: 10pt;
	line-height: 13pt;
}

table.dashboard-runningtips tbody tr td .event-match p b {
	color: #fff;
	font-size: 10pt;
	display: inline-block;
	vertical-align: baseline;
	margin-right: 20px;
	margin-bottom: 3px;
}

table.dashboard-runningtips tbody tr td .event-match p i {
	display: inline-block;
	vertical-align: baseline;
	color: #acacac;
	font-size: 10pt;
}

table.dashboard-runningtips tbody tr td .tipster-link {
	display: block;
	text-align: left;
	white-space: nowrap;
}

table.dashboard-runningtips tbody tr td .tipster-link i {
	color: #ed3657;
	display: inline-block;
	vertical-align: top;
	font-size: 8pt;
	margin-right: 5px;
}

table.dashboard-runningtips tbody tr td .tipster-link a {
	display: inline-block;
	vertical-align: bottom;
	color: #ed3657;
	font-size: 10pt;
	text-transform: capitalize;
}

table.dashboard-runningtips tbody tr td .tipster-link a:hover {
	text-decoration: underline;
}


table.dashboard-runningtips tbody tr td .logintoview {
	float: right;

}

table.dashboard-runningtips tbody tr td .logintoview ul {
	text-align: right;
}

table.dashboard-runningtips tbody tr td .logintoview ul li {
	display: inline-block;
	vertical-align: middle;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: left;
	text-transform: uppercase;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	border: none;
	background: #44455d;
	color: #fff;
	font-family: "Lato-Regular";
	width: 200px;
	margin: 3px 0px;
}

table.dashboard-runningtips tbody tr td .logintoview ul li span {
	color: #2bb7ad;
	text-transform: uppercase;
	display: block;
	padding-top: 3px;

}

/*dashboard runnigtips table*/



/*dashboard runningbundle table*/
.bundle-subscribe-table {
	padding: 0px 20px 40px;
	display: none;
}

table.bundle-subscribed-table tbody tr td {
	font-family: "Lato-Regular";
	vertical-align: middle;
	padding: 15px 10px;
}

table.bundle-subscribed-table tr td:last-child {
	padding-right: 0px;
}

table.bundle-subscribed-table tbody tr td p {
	color: #66678b;
	font-size: 9pt;
	display: block;
	padding-bottom: 5px;
}

table.bundle-subscribed-table tbody tr td .tipster-link {
	display: block;
	text-align: left;
	white-space: nowrap;
}

table.bundle-subscribed-table tbody tr td .tipster-link i {
	color: #ed3657;
	display: inline-block;
	vertical-align: top;
	font-size: 8pt;
	margin-right: 5px;
}

table.bundle-subscribed-table tbody tr td .tipster-link a {
	display: inline-block;
	vertical-align: bottom;
	color: #ed3657;
	font-size: 10pt;
	text-transform: capitalize;
}

table.bundle-subscribed-table tbody tr td .tipster-link a:hover {
	text-decoration: underline;
}

.bundle-subscribed-result {
	float: right;
}

.bundle-subscribed-result ul {
	text-align: right;
}

.bundle-subscribed-result ul li {
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #44455d;
	font-family: "Lato-Regular";
	margin: 4px 0px 0px;
	text-align: left;
	width: 150px;
}

.bundle-subscribed-result ul li b {
	color: #fff;
	display: block;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.bundle-subscribed-result ul li span {
	color: #2bb7ad;
	display: block;
	text-transform: uppercase;
}

.bundle-subscribed-result ul li:first-child {
	background: none;
}

.bundle-subscribed-result ul li:first-child b {
	color: #acacac;
}

.bundle-subscribed-result ul li:first-child span {
	color: #009fce;
}

.bundle-subscribed-result ul li:nth-child(3) span {
	color: #009fce;
}

/*dashboard runningbundle table*/


.dashboard-myaccount {
	display: block;
	padding: 80px 0px 50px;
}

.dashboard-myaccount h1.pagetitle span,
.dashboard-myaccount .h1.pagetitle span {
	display: none;
}

ul.dashboard-myaccount-link {
	width: 100%;
	display: block;
	overflow: hidden;
	margin-bottom: 1px;
	padding-top: 20px;
}

ul.dashboard-myaccount-link li {
	display: block;
	float: left;
}

ul.dashboard-myaccount-link li:nth-child(1) {
	width: 15%;
}

ul.dashboard-myaccount-link li:nth-child(2) {
	width: 17%;
}

ul.dashboard-myaccount-link li:nth-child(3) {
	width: 23%;
}

ul.dashboard-myaccount-link li:nth-child(4) {
	width: 20%;
}

ul.dashboard-myaccount-link li:nth-child(5) {
	width: 25%;
}

ul.dashboard-myaccount-link li a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 30px 0px;
	background: none;
	color: #66678b;
	font-size: 11pt;
	font-family: "Lato-Regular";
	text-transform: uppercase;
}


ul.dashboard-myaccount-link li a:hover {
	background: #ed3657;
	color: #fff;
}

ul.dashboard-myaccount-link li.active a {
	background: #10122b;
	color: #fff;
}

.dashboard-myaccount-link-content {
	display: block;
	width: 100%;
	padding: 20px 20px;
	background: #10122b;
}

table.dashboard-mytipster ul.tipster-leaderboard-profile>li .nogames {

	background: #212138;
}


table.dashboard-mytipster tbody tr td .unfollow-button {
	background: none;
	width: 120px;
	color: #fff;
}


table.dashboard-mytipster tbody tr td .unfollow-button:hover {
	background: #44455d;
}

.mytipsperformance>p {
	color: #fff;
	padding-top: 10px;
}

.dashboard-myaccount-link-content .content-date-select {
	display: block;
	padding-bottom: 10px;
	width: 100%;
	padding-top: 15px;
}

.dashboard-myaccount-link-content .content-date-select .daterange-wrapper {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
}

.mytipsperformance .content-date-select .select-dropdown {
	display: inline-block;
	vertical-align: top;
}

.mytipsperformance-table .rpts-table {
	padding-top: 10px;
	padding-bottom: 20px;
}

.mytipsperformance-table .rpts-table>ul>li:first-child {
	border-top: none
}

.mytipsperformance-table .rpts-table>ul>li span.match-detail .date-bettingtype p b {
	background: #212138;
}

.mytipsperformance-table .rpts-table>ul>li span.match-result ul li:nth-child(2) b,
.mytipsperformance-table .rpts-table>ul>li span.match-result ul li:nth-child(3) b {
	color: #2bb7ad;
}

.transactionhistory>p {
	color: #fff;
	padding-top: 10px;
}

.transaction-history {
	display: block;
	padding-top: 30px;
}


table.transaction-history-table {
	width: 100%;
}

table.transaction-history-table thead tr {
	border-bottom: 1px solid #5c5d75
}

table.transaction-history-table thead tr th {
	padding: 20px 10px 15px;
	text-align: left;
	text-transform: uppercase;
	color: #acacac;
	font-family: "Lato-Regular";
}

table.transaction-history-table tbody tr {
	border-bottom: 1px solid #5c5d75
}

table.transaction-history-table tbody tr td {
	padding: 30px 10px;
	text-align: left;
	color: #fff;
	vertical-align: middle;
}

table.transaction-history-table tbody tr td i {
	display: none;
}

table.transaction-history-table tbody tr td b {
	color: #66678b;
	display: block;
}

table.transaction-history-table tbody tr td span {
	color: #2bb7ad;
	display: block;
}

.purchasehistory>p {
	color: #fff;
	padding-top: 10px;
}

.purchase-history-record {
	display: block;
	padding-top: 30px;
	padding-bottom: 70px;
}

table.purchased-tips-history {
	width: 100%;
}

table.purchased-tips-history thead tr {
	border-bottom: 1px solid #5c5d75;
}

table.purchased-tips-history thead tr th {
	padding: 20px 10px 15px;
	text-align: left;
	text-transform: uppercase;
	color: #acacac;
	font-family: "Lato-Regular";
}

table.purchased-tips-history tbody tr {
	border-bottom: 1px solid #5c5d75;
}

table.purchased-tips-history tbody tr td {
	padding: 20px 10px;
	text-align: left;
	color: #fff;
	vertical-align: middle;
	text-transform: uppercase;
}

table.purchased-tips-history tbody tr td span.header {
	display: none;
	color: #898989;
}

table.purchased-tips-history tbody tr td b {
	color: #66678b;
	display: block;
}

table.purchased-tips-history tbody tr td span {
	display: inline-block;
	padding: 5px 10px;
	color: #ccc;
	background: #212138;
}

table.purchased-tips-history tbody tr td i {
	display: inline-block;
	color: #2bb7ad;
}

table.purchased-tips-history tbody tr td a.tips-history {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	border: 1px solid #44455d;
	cursor: pointer;
	color: #fff;
	width: 100px;
	margin: 0 auto;
}






table.purchased-bundle-history {
	width: 100%;
}

table.purchased-bundle-history thead tr {
	border-bottom: 1px solid #5c5d75;
}

table.purchased-bundle-history thead tr th {
	padding: 20px 10px 15px;
	text-align: left;
	text-transform: uppercase;
	color: #acacac;
	font-family: "Lato-Regular";
}

table.purchased-bundle-history tbody tr {
	border-bottom: 1px solid #5c5d75;
}

table.purchased-bundle-history tbody tr td {
	padding: 20px 10px;
	text-align: left;
	color: #fff;
	vertical-align: middle;
	text-transform: uppercase;
}

table.purchased-bundle-history tbody tr td>b {
	color: #66678b;
	display: block;
}

table.purchased-bundle-history tbody tr td>span {
	display: inline-block;
	padding: 5px 10px;
	color: #ccc;
	background: #212138;
	line-height: 15pt;
}

table.purchased-bundle-history tbody tr td span.header {
	display: none;
	color: #898989;
}

table.purchased-bundle-history tbody tr td>i {
	display: inline-block;
	color: #2bb7ad;
}

table.purchased-bundle-history tbody tr td a.bundle-history {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	border: 1px solid #44455d;
	cursor: pointer;
	color: #fff;
	width: 100px;
	margin: 0 auto;
}

table.purchased-bundle-history tbody tr td .tipster-link a {
	display: inline-block;
	text-align: center;
	line-height: 13pt;
	color: #ed3657;
	text-transform: capitalize;
}


table.purchased-bundle-history tbody tr td .tipster-link a:hover {
	text-decoration: underline;
}





table.purchased-credit-history {
	width: 100%;
}

table.purchased-credit-history thead tr {
	border-bottom: 1px solid #5c5d75;
}

table.purchased-credit-history thead tr th {
	padding: 20px 10px 15px;
	text-align: left;
	text-transform: uppercase;
	color: #acacac;
	font-family: "Lato-Regular";
}

table.purchased-credit-history tbody tr {
	border-bottom: 1px solid #5c5d75;
}

table.purchased-credit-history tbody tr td {
	padding: 20px 10px;
	text-align: left;
	color: #fff;
	vertical-align: middle;
	text-transform: uppercase;
}

table.purchased-credit-history tbody tr td span.header {
	display: none;
	color: #898989;
}

table.purchased-credit-history tbody tr td b {
	color: #66678b;
	display: block;
}

table.purchased-credit-history tbody tr td span {
	display: inline-block;
	padding: 5px 10px;
	color: #ccc;
	background: #212138;
}

table.purchased-credit-history tbody tr td:last-child i {
	display: inline-block;
	color: #2bb7ad;
}

table.purchased-credit-history tbody tr td i.fa-info-circle {
	margin-left: 5px;
}

.profile-setting {
	width: 100%;
	display: block;
	margin-bottom: 100px;
}

.profile-setting-form {
	width: 100%;
	background: #10122b;
	padding: 20px 50px;
}

.change-profile-picture {
	display: block;
	padding-bottom: 20px;
	width: 100%;
}

.change-profile-picture .profile-picture {
	width: 100px;
	height: 100px;
	display: block;
	margin: 0 auto 30px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.change-picture-button {
	display: block;
	position: relative;
	width: 200px;
	margin: 0 auto;
}

.change-picture-button input {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.change-picture-button label {

	font-family: "Lato-Light";
	text-align: center;
	text-transform: uppercase;
	display: block;
	width: 100%;
	font-size: 10pt;
	position: relative;
	border: none;
	cursor: pointer;
	color: #ed3657;
}

.change-picture-button label:hover {
	text-decoration: underline;
}

.personal-information {
	display: block;
	padding-top: 30px;
}

.personal-information h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
	border-bottom: 1px solid #5c5d75;
}

.personal-info-form {
	display: block;
	overflow: hidden;
	width: 100%;
	max-width: 800px;
}

.personal-info-form ul {
	overflow: hidden;
	width: 100%;
	list-style-type: none;
	padding: 20px 0px;
}

.personal-info-form ul li {
	display: block;
	width: 49%;
	height: 95px;
	overflow: hidden;
	margin-bottom: 10px;
}

.personal-info-form ul li p {
	display: block;
	position: relative;
	overflow: hidden;
	color: #ccc;
	font-size: 10pt;
	padding-bottom: 10px;
}

.personal-info-form ul li span.fullname-notice {
	display: block;
	font-size: 9pt;
	color: #66678b;
	padding-top: 10px;
	line-height: 11pt;
}

.personal-info-form ul li:nth-child(odd) {
	float: left;
}

.personal-info-form ul li:nth-child(even) {
	float: right;
}

.personal-info-form ul li .input-field {
	height: 37px;
}

.personal-info-form ul li select.input-field {
	background: url(../images/angle-down.png) no-repeat center right 5px;
	cursor: pointer;
}

.personal-info-form ul li select.input-field option {
	color: #000;
}

.personal-info-form ul li .input-field.date {
	width: 30%;
	float: left;
	border-radius: 5px 0px 0px 5px;
	-moz-border-radius: 5px 0px 0px 5px;
	-ms-border-radius: 5px 0px 0px 5px;
	-o-border-radius: 5px 0px 0px 5px;
	-webkit-border-radius: 5px 0px 0px 5px;
}

.personal-info-form ul li .input-field.month {
	width: 40%;
	float: left;
	border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	-webkit-border-radius: 0;
	border-left: none;
	border-right: none;
}

.personal-info-form ul li .input-field.year {
	width: 30%;
	float: left;

	border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	-ms-border-radius: 0px 5px 5px 0px;
	-o-border-radius: 0px 5px 5px 0px;
	-webkit-border-radius: 0px 5px 5px 0px;
}

.personal-info-form ul li input.country-code {
	width: 25%;
	float: left;
	border-right: none;
	border-radius: 5px 0px 0px 5px;
	-moz-border-radius: 5px 0px 0px 5px;
	-ms-border-radius: 5px 0px 0px 5px;
	-o-border-radius: 5px 0px 0px 5px;
	-webkit-border-radius: 5px 0px 0px 5px;
}

.personal-info-form ul li input.mobile-number {
	width: 75%;
	float: left;

	border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	-ms-border-radius: 0px 5px 5px 0px;
	-o-border-radius: 0px 5px 5px 0px;
	-webkit-border-radius: 0px 5px 5px 0px;
}

.personal-info-form ul li:last-child {
	width: 100%;
}

.personal-info-form ul li:last-child .sub {
	width: 100%;
}

.personal-info-form ul li p b.verify {
	float: right;
	color: #2bb7ad;
	display: block;
	font-size: 9pt;
	cursor: pointer;
}

.personal-info-form ul li p b.verified {
	float: right;
	color: #ed3657;
	display: block;
	font-size: 9pt;

}


.changepassword {
	display: block;
	padding-top: 30px;
	width: 100%;
	max-width: 800px;
	overflow: hidden;
}

.changepassword ul {
	overflow: hidden;
	width: 100%;
	list-style-type: none;
	padding: 20px 0px;
}

.changepassword ul li {
	display: block;
	width: 49%;
	height: 95px;
	overflow: hidden;
	margin-bottom: 10px;
}

.changepassword ul li p {
	display: block;
	position: relative;
	overflow: hidden;
	color: #ccc;
	font-size: 10pt;
	padding-bottom: 10px;
}

.changepassword ul li span.fullname-notice {
	display: block;
	font-size: 9pt;
	color: #66678b;
	padding-top: 10px;
	line-height: 11pt;
}

.changepassword ul li:nth-child(odd) {
	float: left;
}

.changepassword ul li:nth-child(even) {
	float: right;
}

.changepassword ul li .input-field {
	height: 37px;
}

.changepassword ul li:last-child {
	width: 100%;
}

.changepassword ul li:last-child .sub {
	width: 100%;
}

.message-top-cover {
	display: block;
	width: 100%;
	padding: 20px 20px;
	background: #10122b;
}

.message-bottom-cover {
	display: block;
	border-top: 1px solid #44455d;
	width: 100%;
	padding: 20px 20px;
	background: #10122b;
}

.message-box {
	display: block;
	width: 100%;
	overflow: hidden;
	height: 50vh;
	overflow-y: auto;
}

.message-row {
	display: block;
	width: 100%;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}



.message-time {
	display: block;
	margin-bottom: 8px;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.message-received .message-time {
	text-align: left;
	left: 30px;
}

.message-send .message-time {
	text-align: right;
	right: 30px;
}

span.message-user {
	font-family: "Lato-Regular";
	font-size: 10pt;
	color: #fff;
	text-transform: uppercase;
}

span.message-sendtime {
	font-family: "Lato-Regular";
	font-size: 10pt;
	color: #acacac;
	margin-left: 10px;
}

.message-content {

	padding: 10px 20px;
	min-width: auto;
	max-width: 500px;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin-bottom: 15px;
	position: relative;
}

.message-received .message-content {
	float: left;
	margin-left: 30px;
	background: #acacac;
	margin-right: 5px;
}

.message-received .message-content:before {
	content: "";
	position: absolute;
	left: -14px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-right: 14px solid #acacac;
	border-bottom: 9px solid transparent;
}

.message-send .message-content {
	float: right;
	margin-right: 30px;
	background: #66678b;
	color: #fff;
}

.message-send .message-content p {
	color: #fff;
}

.message-send .message-content:before {
	content: "";
	position: absolute;
	right: -14px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-left: 14px solid #66678b;
	border-bottom: 9px solid transparent;
}


/* width */
.message-box::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.message-box::-webkit-scrollbar-track {
	background: #10122b;

}

/* Handle */
.message-box::-webkit-scrollbar-thumb {
	background: #44455d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* Handle on hover */
.message-box::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.message-bottom-cover textarea {
	padding: 10px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	height: 150px;
	resize: none;

	font-family: "Lato-Regular";
	margin-bottom: 20px;
}


.message-bottom-cover input.sub {
	width: 200px;
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
	height: 38px;
	margin-bottom: 10px;
}


.upload-file {
	display: inline-block;
	width: 200px;
	overflow: hidden;
	vertical-align: top;
}

.upload-file input {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	z-index: -1;
}

.upload-file label {
	width: 100%;
	display: block;
	color: #fff;
	background: none;
	border: 1px solid #44455d;
	text-align: center;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	height: 39px;
	line-height: 37px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	cursor: pointer;
}


.upload-file label:hover {
	color: #10122b;
	background: #44455d;
}


.creditspackage {
	display: block;
	padding: 50px 0px 50px;
	border-bottom: 1px solid #44455d;
}

.creditspackage h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 12pt;
	font-family: "Lato-Regular";
	display: block;
	padding-bottom: 10px;
}

.creditspackage ul {
	padding: 30px 0px 30px;
	display: block;
	overflow: hidden;
}

.creditspackage ul li {
	display: block;
	float: left;
	width: 32%;
	margin: 7px 1%;
	padding: 13px 10px;
	color: #fff;
	font-size: 10pt;
	cursor: pointer;
	border: 1px solid #44455d;
	text-align: center;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	text-transform: capitalize;
}

.creditspackage ul li:nth-child(3n+1) {
	margin-left: 0;
}

.creditspackage ul li:nth-child(3n+3) {
	margin-right: 0;
}

.creditspackage ul li b {
	font-family: "Lato-Regular";
	font-size: 11pt;
	margin-right: 5px;
}

.creditspackage ul li.active {
	color: #2bb7ad;
	border: 1px solid #2bb7ad;
}

.creditspackage ul li:hover {
	color: #2bb7ad;
	border: 1px solid #2bb7ad;
}

/*main css */











/*login signup*/

.login-signup {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.login-left {
	display: block;
	float: left;
	width: 50%;
	min-height: 100vh;
	position: relative;

	transition: all ease 0.6s;
	-moz-transition: all ease 0.6s;
	-ms-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;

	background: rgba(33, 33, 56, 0.7);
	z-index: 2;
}

.login-right {
	display: block;
	float: left;
	width: 50%;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	transition: all ease 0.6s;
	-moz-transition: all ease 0.6s;
	-ms-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;

	background: rgba(84, 85, 109, 0.7);
}


.left-bg {
	position: absolute;
	width: 50%;
	top: 0;
	left: 0;
	height: 100%;

	transition: all ease 0.6s;
	-moz-transition: all ease 0.6s;
	-ms-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
}

.left-bg img {
	position: absolute;
	bottom: 0;
	right: -250px;
	width: 500px;
}

.login-left.trigger {
	width: 70%;

	transition: all ease 0.6s;
	-moz-transition: all ease 0.6s;
	-ms-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
}

.login-right.trigger {
	width: 30%;

	transition: all ease 0.6s;
	-moz-transition: all ease 0.6s;
	-ms-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
}


.left-bg.trigger {
	width: 80%;

	transition: all ease 0.6s;
	-moz-transition: all ease 0.6s;
	-ms-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	-webkit-transition: all ease 0.6s;
}



.login-people {
	position: absolute;
	bottom: 0;
	right: -125px;
	width: 250px;

}

.login-people img {
	width: 100%;
	display: block;
}


.login-signup a.backtoprevious {
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
}

.loginform {
	width: 350px;
	float: right;
	margin-top: 12vh;
	margin-right: 50px;
	padding-bottom: 50px;
}

.loginform h1,
.loginform .h1 {
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 30px;
	color: #fff;
	font-size: 18pt;
	font-family: "Lato-Regular";
	position: relative;
}

.loginform h1 b,
.loginform .h1 b {
	color: #ed3657;

}

.loginform h1:before,
.loginform .h1:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 70px;
	height: 3px;
	background: #ed3657;
	content: "";
}

.loginform ul.login {
	width: 100%;
	height: 67vh;
	overflow: hidden;
	overflow-y: auto;
	padding-right: 20px;
}

.loginform ul.login > li {
	display: block;
	padding-bottom: 20px;
}

.loginform ul.login > li p {
	color: #fff;
	font-size: 10pt;
}

.loginform ul.login > li input[type="text"],
.loginform ul.login > li input[type="password"] {
	padding: 10px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: #212138;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-top: 5px;
}

.loginform ul.login > li input.sub-login {
	padding: 10px 10px;
	color: #fff;
	background: #ed3657;
	border: none;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
}

.loginform ul.login > li input.sub-login:hover {
	background: #f94b6b;
}

.loginform ul.login > li a.forgetpass {
	display: block;
	text-align: center;
	margin: 10px auto;
	width: 150px;
	color: #acacac;

}

.loginform ul.login > li a.forgetpass:hover {
	text-decoration: underline;
}

.loginform ul.login > li .divline {
	height: 1px;
	background: #212138;
	margin-bottom: 15px;
}

.loginform ul.login > li.loginfb a {
	padding: 10px 10px;
	color: #fff;
	background: #526ba6;
	border: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
	display: block;
	text-align: center;
}

.loginform ul.login > li.loginfb a:hover {
	opacity: 0.8;
}

.loginform ul.login > li.loginfb a i {
	margin-right: 10px;
}

.loginform ul.login > li.logingp a {
	padding: 10px 10px;
	color: #fff;
	background: #ed413c;
	border: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
	display: block;
	text-align: center;
}

.loginform ul.login > li.logingp a:hover {
	opacity: 0.8;
}

.loginform ul.login > li.logingp a i {
	margin-right: 10px;
}

.welcome-message {
	width: 100%;
	max-width: 350px;
	margin-top: 150px;
	margin-left: 70px;
}

.welcome-message h1,
.welcome-message .h1 {
	color: #fff;
	font-size: 25pt;
	font-family: "Lato-Regular";
	display: block;
	text-align: right;
	text-transform: uppercase;
	line-height: 25pt;
}

.welcome-message h1 b,
.welcome-message .h1 b {
	font-size: 17pt;
}

.welcome-message .logo {
	width: 100%;
	margin-top: -10px;
	margin-bottom: 20px;
}

.welcome-message .logo img {
	display: block;
	width: 100%;
}

.welcome-message h2 {
	display: block;
	padding-bottom: 10px;
	color: #7f7f9f;
	font-size: 12pt;
	line-height: 17pt;
}

.welcome-message p {
	color: #fff;
	font-size: 10pt;
	padding-bottom: 15px;
}

.welcome-message a.gotoreg {
	display: block;
	padding: 13px 10px;
	color: #ed3657;
	border: 1px solid #ed3657;
	background: none;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}


.welcome-message a.gotoreg:hover {
	background: #ed3657;
	color: #fff;
}


.have-acc {
	position: absolute;
	top: 70px;
	right: 0;
	width: 60%;
	display: none;
}

.have-acc p {
	color: #fff;
	font-size: 18pt;
	line-height: 21pt;
	display: block;
	padding-bottom: 10px;
	font-family: "Lato-Regular";
	display: none;
}

.have-acc a {
	padding: 13px 10px;
	color: #fff;
	border: 1px solid #ed3657;
	background: #ed3657;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	display: block;
	opacity: 0;
}

.joinus-message {
	width: 100%;
	max-width: 300px;
	margin-top: 50px;
	margin-right: 140px;
	float: right;
	display: none;
}

.joinus-message h1,
.joinus-message .h1 {
	color: #fff;
	font-size: 25pt;
	font-family: "Lato-Regular";
	display: block;
	text-align: right;
	text-transform: uppercase;
	line-height: 25pt;
}

.joinus-message .logo {
	width: 100%;
	margin-top: -10px;
	margin-bottom: 20px;
}

.joinus-message .logo img {
	display: block;
	width: 100%;
}

.joinus-message h2 {
	display: block;
	padding-bottom: 10px;
	color: #7f7f9f;
	font-size: 12pt;
	line-height: 17pt;
}


.joinus-message ul li {
	color: #7f7f9f;
	font-size: 10pt;
	margin-bottom: 20px;
	line-height: 14pt;
	position: relative;
}


.register-form {
	display: none;
	float: left;
	padding-top: 25px;
	padding-left: 30px;
	width: 100%;
	max-width: 450px;
	padding-bottom: 50px;
}

.register-form h1,
.register-form .h1 {
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 30px;
	color: #fff;
	font-size: 18pt;
	font-family: "Lato-Regular";
	position: relative;
	margin-left: 30px;
}

.register-form h1 b,
.register-form .h1 b {
	color: #ed3657;
	position: relative;
}

.register-form h1 b:before,
.register-form .h1 b:before {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 3px;
	background: #ed3657;
	content: "";
}

.register-form ul.register {
	display: block;
	width: 100%;
	overflow: hidden;
	overflow-y: visible;
	direction: rtl;
}


/* width */
.register-form ul.register ::-webkit-scrollbar,
.loginform ul.login::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.register-form ul.register ::-webkit-scrollbar-track,
.loginform ul.login::-webkit-scrollbar-track {
	background: #313149;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;

}

/* Handle */
.register-form ul.register ::-webkit-scrollbar-thumb,
.loginform ul.login::-webkit-scrollbar-thumb {
	background: #54556d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* Handle on hover */
.register-form ul.register ::-webkit-scrollbar-thumb:hover,
.loginform ul.login::-webkit-scrollbar-thumb:hover {
	background: #7f7f9f;
}

.register-form ul.register > li {
	padding-left: 30px;
	display: block;
	padding-bottom: 20px;
	text-align: left;
	direction: ltr;
	overflow: hidden;
}

.register-form ul.register > li:last-child {
	padding-bottom: 0;
}

.register-form ul.register > li p {
	color: #fff;
	font-size: 10pt;
	text-transform: capitalize;
}

.register-form ul.register > li.header {
	color: #2bb7ad;
	font-size: 11pt;
}

.register-form ul.register > li b.caution {
	color: #7f7f9f;
	font-size: 9pt;
	line-height: 13pt;
	padding-top: 5px;
	display: block;
}

.register-form ul.register > li input,
.register-form ul.register > li select {
	padding: 7px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: #54556d;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-top: 5px;
	direction: ltr;
	position: relative;

}

.register-form ul.register > li select {
	background: #54556d url(../images/angle-down2.png) no-repeat center right;
	cursor: pointer;
}

.register-form ul.register > li select.day {
	width: 30%;
	float: left;
	border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
}

.register-form ul.register > li select.year {
	width: 30%;
	float: left;

	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-ms-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
	-o-border-radius: 0px 3px 3px 0px;
}

.register-form ul.register > li select.month {
	width: 40%;
	float: left;

	border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	-webkit-border-radius: 0px;
}

.register-form ul.register > li input.sub-register {
	padding: 10px 10px;
	color: #fff;
	background: #ed3657;
	border: none;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
}

.register-form ul.register > li input.sub-register:hover {
	background: #f94b6b;
}


.register-form ul.register > li input#mobile-code {
	width: 30%;
	float: left;

	border-radius: 3px 0px 0px 3px;
	-moz-border-radius: 3px 0px 0px 3px;
	-ms-border-radius: 3px 0px 0px 3px;
	-o-border-radius: 3px 0px 0px 3px;
	-webkit-border-radius: 3px 0px 0px 3px;
}

.register-form ul.register > li input#mobile-no {
	width: 70%;
	float: left;

	border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	-ms-border-radius: 0px 3px 3px 0px;
	-webkit-border-radius: 0px 3px 3px 0px;
	-o-border-radius: 0px 3px 3px 0px;
	border-left: none;
}

.register-form ul.register > li input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #acacac;
}

.register-form ul.register > li input::-moz-placeholder {
	/* Firefox 19+ */
	color: #acacac;
}

.register-form ul.register > li input:-ms-input-placeholder {
	/* IE 10+ */
	color: #acacac;
}

.register-form ul.register > li input:-moz-placeholder {
	/* Firefox 18- */
	color: #acacac;
}

.register-form ul.register > li .divline {
	height: 1px;
	background: #54556d;
	margin: 10px 0px;
}




.round-checkbox .checkbox {
	display: table;
	color: #ffffff;
	font-family: Lato Regular;
	text-transform: uppercase;
	font-size: 10pt;
	margin: 10px 20px 10px 0px;

}

.round-checkbox .check-box-cover {
	vertical-align: top;
	display: table-cell;
	top: 2px;
	position: relative;
}

.round-checkbox .checkbox-box {

	margin: 0px 5px 0px 0px;
	width: 20px;
	height: 20px;
	background: #54556d;
	position: relative;
	border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
}

.round-checkbox .checkbox-box label {
	cursor: pointer;
	position: absolute;
	width: 13px;
	height: 13px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
}


.round-checkbox .checkbox-box label:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #54556d;
	border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;

}

.round-checkbox input[type="checkbox"] {
	opacity: 0;
	width: 18px;
	height: 18px;
	padding: 0;
	margin: 0;
	top: -1px;
	left: -1px;
	position: absolute;
}

.round-checkbox input[type="checkbox"]:checked+label:after {

	background: #fff;
}



.round-checkbox .checkbox p {

	font-family: "Lato-Light";
	font-size: 9pt;
	display: table-cell;
	vertical-align: top;
	padding-left: 5px;
	color: #000;
	text-transform: none;
}


.round-checkbox .checkbox p span {
	display: inline-block;
	vertical-align: middle;
	font-size: 10pt;
	line-height: 13pt;
	color: #fff;
}

.round-checkbox .checkbox p span a {
	color: #ed3657;
}

.round-checkbox .checkbox p span a:hover {
	text-decoration: underline;
}

.round-checkbox .checkbox p b {
	font-size: 9pt;
	line-height: 12pt;
}


.acc-activation {
	padding-top: 50px;
	padding-left: 30px;
	width: 100%;
	max-width: 700px;
	padding-bottom: 50px;
}

.acc-activation h1 {
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 30px;
	color: #fff;
	font-size: 18pt;
	font-family: "Lato-Regular";
	position: relative;
	margin-left: 30px;
}

.acc-activation h1 b {
	color: #ed3657;
	position: relative;
}

.acc-activation h1 b:before {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 3px;
	background: #ed3657;
	content: "";
}

.acc-activation>p {
	margin-left: 30px;
	color: #fff;
	font-size: 10pt;
	line-height: 14pt;
}

.acc-activation>p a {
	color: #ed3657;
}

.acc-activation>p a:hover {
	text-decoration: underline;
}

.acc-activation ul {
	width: 100%;
	max-width: 450px;
	padding-left: 30px;
	padding-top: 30px;
}

.acc-activation ul li {
	padding-bottom: 30px;
}

.acc-activation ul li p {
	color: #fff;
	font-size: 10pt;
	padding-bottom: 5px;
}

.acc-activation ul li input {
	padding: 10px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: #54556d;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-top: 5px;
	direction: ltr;
	position: relative;

}

.acc-activation ul li input.sub {
	padding: 10px 10px;
	color: #fff;
	background: #ed3657;
	border: none;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
}

.acc-activation ul li input.sub:hover {
	background: #f94b6b;
}

/*login signup*/











/* cookie notice */
.cookie-notice {
	display: block;
	position: fixed;
	width: 100%;
	bottom: -100%;
	left: 0;
	padding: 15px 30px 15px 30px;
	background: #666699;
	overflow: hidden;
	z-index: 20000000000;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	transition: all 1s ease;
	-o-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1 ease;
	-ms-transition: all 1s ease;
}

.move-cookie {
	bottom: 0 !important;

	transition: all 1s ease;
	-o-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-ms-transition: all 1s ease;
}

.cookie-notice p {
	display: block;
	float: left;
	font-family: "Lato-Regular";
	font-size: 9pt;
	color: #fff;
	padding: 10px 0px 10px 0px;
}

.cookie-notice p a {
	display: inline-block;
	font-family: "Lato-Regular";
	font-size: 9pt;
	color: #33cc99;
	margin: 0px 0px 0px 5px;
}

.cookie-notice p a:hover {
	text-decoration: underline;
}

.cookie-notice b {
	display: block;
	float: right;
	padding: 9px 20px 9px 20px;
	font-family: "Lato-Regular";
	text-transform: uppercase;
	font-size: 10pt;
	height: 30px;
	color: #ffffff;
	border: solid 1px #ffffff;
	cursor: pointer;
	margin-top: 2px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
}

.cookie-notice b:hover {
	background: #ffffff;
	color: #000000;
}

/* cookie notice */


/*coupon popup*/
.coupon-pop {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 999999;
}

.coupon-pop>i.close-coupon {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
	z-index: 99;
}

.coupon-pop .coupon-cover {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	opacity: 0.7;
}

.coupon-pop .content-coupon {
	display: block;
	position: absolute;
	width: 95%;
	max-width: 400px;
	padding: 30px 25px 30px 25px;
	background: #212139;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.coupon-pop .content-coupon h1,
.coupon-pop .content-coupon .h1 {
	display: block;
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	border-bottom: 1px solid #ed3657;
	margin-bottom: 20px;
}

.coupon-pop .content-coupon input.text {
	display: block;
	width: 100%;
	border: none;
	background: #ebebeb;
	font-family: "Lato-Regular";
	font-size: 10pt;
	padding: 10px 12px 10px 12px;
	height: 35px;
	color: #000;
	outline: none;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.coupon-pop .content-coupon p {
	display: block;
	font-family: "Lato-Regular";
	font-size: 10pt;
	padding: 0;
	margin: 9px 0px 0px 0px;
	color: #ffffff;
}

.coupon-pop .content-coupon p.true {
	color: #3ba013;
}

.coupon-pop .content-coupon p.false {
	color: #d81c1c;
}

.coupon-pop .content-coupon input.sub {
	display: inline-block;

	margin: 20px 0px 0px 0px;
}

/*coupon popup*/


/* email check */
.email-pop {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 999999;
}

.email-pop>i.email-close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
	z-index: 99;
}

.email-pop .email-overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	opacity: 0.7;
}

.email-pop .email-check {
	display: block;
	position: absolute;
	width: 95%;
	max-width: 450px;
	padding: 30px 25px 30px 25px;
	top: 50%;
	left: 50%;
	background: #212139;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);

	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.email-pop .email-check h1,
.email-pop .email-check .h1 {
	display: block;
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	border-bottom: 1px solid #ed3657;
	margin-bottom: 20px;
	line-height: 15pt;
}

.email-pop .email-check .input-field {
	display: block;
	width: 100%;
	border: none;
	background: #ebebeb;
	font-family: "Lato-Regular";
	font-size: 10pt;
	padding: 10px 12px 10px 12px;
	color: #000;
	outline: none;
	margin: 0px 0px 20px 0px;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.email-pop .email-check span {
	display: block;
	overflow: hidden;
	margin: 0px 0px 20px 0px;
	position: relative;
}

.email-pop .email-check span input {
	display: block;
	padding: 0px 0px 0px 0px;
	margin: 0;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.email-pop .email-check span label {
	display: block;
	width: 100%;
	padding-left: 25px;
	color: #fff;
	position: relative;
	line-height: 15pt;
	cursor: pointer;
}

.email-pop .email-check span label:before {
	position: absolute;
	left: 0;
	top: 2px;
	width: 15px;
	height: 15px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 1px solid #44455d;
	content: "";
}

.email-pop .email-check span input[type="checkbox"]:checked+label:after {
	position: absolute;
	left: 6px;
	top: 4px;
	width: 4px;
	height: 8px;
	border-right: 2px solid #ed3657;
	border-bottom: 2px solid #ed3657;
	content: "";
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.email-pop .email-check .submit {
	display: block;
	width: 100%;
}

/* email check */

/*neteller check*/
.email-pop .neteller-check img {
	margin-bottom: 10px;
}

.email-pop .neteller-check input.text {
	display: block;
	width: 100%;
	border: none;
	background: #ebebeb;
	font-family: "Lato-Regular";
	font-size: 10pt;
	padding: 10px 12px 10px 12px;
	height: 35px;
	color: #000;
	outline: none;
	margin-bottom: 10px;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.email-pop .neteller-check input.submit {
	margin-top: 25px;
	margin-bottom: 0px;
}

/*neteller check*/



/* neteller popup  */
.neteller-pop {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 999999;
}

.neteller-pop>i.neteller-close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
	z-index: 99;
}

.neteller-pop .neteller-overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	opacity: 0.7;
}

.neteller-pop .neteller-check {
	display: block;
	position: absolute;
	width: 95%;
	max-width: 450px;
	padding: 30px 25px 30px 25px;
	top: 50%;
	left: 50%;
	background: #212139;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);

	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.neteller-pop .neteller-check h1 {
	display: block;
	font-size: 12pt;
	line-height: 15pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	border-bottom: 1px solid #ed3657;
	margin-bottom: 20px;
}

.neteller-pop .neteller-check p {
	color: #f5f5f5;
	display: block;
	padding-top: 3px;
}


.neteller-pop .neteller-check span {
	display: block;
	overflow: hidden;
	margin: 0px 0px 20px 0px;
	position: relative;
}

.neteller-pop .neteller-check span input {
	display: block;
	padding: 0px 0px 0px 0px;
	margin: 0;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.neteller-pop .neteller-check span label {
	display: block;
	width: 100%;
	padding-left: 25px;
	color: #fff;
	position: relative;
	line-height: 15pt;
	cursor: pointer;
}

.neteller-pop .neteller-check span label:before {
	position: absolute;
	left: 0;
	top: 2px;
	width: 15px;
	height: 15px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 1px solid #44455d;
	content: "";
}

.neteller-pop .neteller-check span input[type="checkbox"]:checked+label:after {
	position: absolute;
	left: 6px;
	top: 4px;
	width: 4px;
	height: 8px;
	border-right: 2px solid #ed3657;
	border-bottom: 2px solid #ed3657;
	content: "";
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.neteller-pop .neteller-check .submit {
	display: block;
	width: 100%;
}


.neteller-pop .neteller-check img {
	margin-bottom: 10px;
}

.neteller-pop .neteller-check input.text {
	display: block;
	width: 100%;
	border: none;
	background: #ebebeb;
	font-family: "Lato-Regular";
	font-size: 10pt;
	padding: 10px 12px 10px 12px;
	height: 35px;
	color: #000;
	outline: none;
	margin-bottom: 10px;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

/* neteller popup */



/*calendar date range picker*/

.daterange-content.ltr {
	left: 0;
}

.daterange-content.rtl {
	right: 0;
}

.daterange-content {
	width: 600px;
	position: absolute;
	top: 40px;
	border: 1px solid #5c5d75;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	min-height: 200px;
	background: #2c2c44;
	z-index: 100000;
	padding: 25px 25px 25px;
	overflow: hidden;
	text-transform: none;
	display: none;

}

.daterange-content h1,
.daterange-content .h1 {
	font-family: "Lato-Regular";
	text-transform: none;
	font-size: 10pt;
	color: #fff;
	display: block;
	width: 100%;
	padding-bottom: 20px;
}

.daterange-content .start-calendar {
	width: 50%;
	float: left;
	padding-right: 30px;
	border-right: 1px solid #5c5d75;
}

.daterange-content .end-calendar {
	width: 50%;
	float: left;
	padding-left: 30px;
}

.daterange-content .start-calendar>span,
.daterange-content .end-calendar>span {
	display: block;
	color: #acacac;
	font-size: 10pt;
}

.daterange-content .start-calendar>span input,
.daterange-content .end-calendar>span input {
	display: inline-block;
	vertical-align: middle;
	padding: 10px 10px;
	background: #10122b;
	color: #fff;
	border: 1px solid #5c5d75;
	width: 150px;
	margin-left: 10px;
}

.daterange-content input.calendarsubmit {
	background: #ed3657;
	padding: 10px 10px 8px;
	display: block;
	width: 100%;
	color: #fff;
	font-size: 10pt;
	text-align: center;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	margin-bottom: 10px;
}

.daterange-content input.calendarsubmit:hover {
	color: #fff;
	background: #f94b6b;

}

.daterange-dayspick {
	display: block;
	width: 100%;
	padding-top: 25px;
}

.daterange-dayspick ul {
	overflow: hidden;
}

.daterange-dayspick ul li {
	display: block;
	width: 170px;
	padding: 10px 0px 8px;
	border: 1px solid #5c5d75;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	font-size: 10pt;
	float: left;
	cursor: pointer;
	margin: 0px 9.5px;
}

.daterange-dayspick ul li:hover {
	background: #2bb7ad;
	border: 1px solid #2bb7ad;
}

.daterange-dayspick ul li:first-child {
	margin-left: 0;
}

.daterange-dayspick ul li:last-child {
	margin-right: 0;
}

/*calendar date range picker*/










/*popup*/
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: none;
}

.popup-cover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 95%;
	max-width: 700px;
	background: #212139;
	padding: 25px 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#responsiblegaming .popup-cover {
	max-height: 70%;
	height: auto;
	overflow-x: hidden;
	overflow-y: auto;
}

.popup .h1 {
	display: block;
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	border-bottom: 2px solid #ed3657;
	margin-bottom: 20px;
}

.popup p {
	color: #fff;
	font-size: 10pt;
	line-height: 15pt;
}

#responsiblegaming ul,
#agerestrict ul {
	list-style-type: disc;
	margin-left: 20px;
}

#responsiblegaming ul li,
#agerestrict ul li {
	font-size: 10pt;
	margin: 5px 0px;
	color: #ed3657;
}

#responsiblegaming ul li p,
#agerestrict ul li p {
	color: #acacac;
}


#responsiblegaming .popup-content a,
#agerestrict .popup-content a {
	color: #ed3657;
}


/* width */
.popup-cover::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.popup-cover::-webkit-scrollbar-track {
	background: #10122b;

}

/* Handle */
.popup-cover::-webkit-scrollbar-thumb {
	background: #44455d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* Handle on hover */
.popup-cover::-webkit-scrollbar-thumb:hover {
	background: #555;
}

span.closepopup {
	position: absolute;
	right: 2.5%;
	top: 30px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	z-index: 10000;

	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
}

span.closepopup:active {
	color: #ed3657;
}

#addtocart .popup-content p a {
	color: #ed3657;
}

/*popup*/


/*subscribe button*/
.subscribe-button {
	position: fixed;
	bottom: 30px;
	right: 20px;
	background: #bdc3c7;
	padding: 10px 10px;
	color: #10122b;
	border: 4px solid rgba(33, 33, 57, 0.8);
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	z-index: 99999;
	cursor: pointer;
}

.subscribe-button:hover {
	background: #ed3657;
	color: #fff;
}

.subscribe-button i {
	vertical-align: bottom;
	color: #10122b;
	font-size: 13pt;
}

.subscribe-button:hover i {
	color: #fff;
}

.subscribe-button span {
	width: 0;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	text-transform: uppercase;

	color: #10122b;
	font-family: "Lato-Regular";
	transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
}

.subscribe-button:hover span {
	color: #fff;
	margin-left: 10px;
	width: 75px;
	transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
}

/*subscribe button*/



/*backtotop*/
.backtotop {
	position: fixed;
	bottom: 85px;
	right: 20px;
	background: #ed3657;
	color: #fff;
	width: 45px;
	height: 40px;
	padding-top: 7px;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
	cursor: pointer;
	z-index: 99999;
	display: none;
}

.backtotop img {
	display: block;
	width: 20px;
	margin: 0 auto;
	position: relative;
	top: 7px;
}

.backtotop:active {
	background: #2bb7ae;
}

.backtotop span {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 6pt;
}

.backtotop i {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 17pt;
}

/*backtotop*/


/*subscribe popup*/
.subscribe-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: none;
}

span.close-subscribe {
	position: absolute;
	right: 30px;
	top: 30px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;

	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
}

span.close-subscribe:active {
	color: #ed3657;
}

.subscribe-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 95%;
	max-width: 700px;
	min-height: 456px;
	background: url(../images/newsletter.png) no-repeat bottom center;
	padding: 0px 0px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* width */
.subscribe-content::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.subscribe-content::-webkit-scrollbar-track {
	background: #10122b;

}

/* Handle */
.subscribe-content::-webkit-scrollbar-thumb {
	background: #44455d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.subscribe-content .h1 {
	display: block;
	color: #fff;
	font-size: 25pt;
	text-align: right;
	padding-top: 10px;
	font-family: "Lato-Bold";
	padding-bottom: 20px;
}

.subscribe-email {
	background: none;
	display: block;
	position: relative;
	width: 370px;
	float: right;
	padding-top: 30px;
	padding-right: 30px;
	font-family: "Lato-Regular";
}

.subscribe-email p {
	color: #2bb7ad;
	font-size: 12pt;
	display: block;
	padding-bottom: 20px;
}

.subscribe-email ul {
	padding-bottom: 10px;
}

.subscribe-email ul li {
	display: block;
	margin-bottom: 13px;
	color: #fff;
	font-size: 11pt;
}

.subscribe-email ul li i {
	margin-right: 10px;
	font-size: 9pt;
}

.subscribe-email input[type="email"] {
	background: #ebebeb;
	width: 100%;
	padding: 10px 10px;
	text-align: center;
	color: #000;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: none;
}

.subscribe-email .capcha {
	padding: 20px 0px;
}

.subscribe-email input[type="submit"] {
	background: #ed3657;
	width: 100%;
	padding: 13px 10px;
	text-align: center;
	color: #fff;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: none;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	cursor: pointer;
}

.subscribe-email input[type="submit"]:hover {
	background: #f94b6b;
}

/*subscribe popup*/




/*notice popup*/
.notice-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	z-index: 999999;
}

.notice-popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 95%;
	max-width: 400px;
	background: #212139;
	padding: 25px 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.notice-popup-content .h1 {
	color: #ed3657;
	font-size: 15pt;
	font-family: "Lato-Bold";
	text-transform: uppercase;
	display: block;
	padding-bottom: 20px;
	text-align: center;
}

.notice-popup-content p {
	color: #fff;
	font-size: 10pt;
	display: block;
	line-height: 15pt;
	text-align: center;
	padding-bottom: 10px;
}

.notice-popup-content p span.gump-error-message {
	display: block;
}

.notice-popup-content p a {
	color: #ed3657;
}

.notice-popup-content p a:hover {
	text-decoration: underline;
}

.notice-popup-content i.close-notice {
	position: absolute;
	right: 10px;
	top: 8px;
	font-size: 14pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
	font-family: "Lato-Bold";
}

/*notice popup*/



/*tips purchase detail popup*/

#tips-history .popup-cover {
	width: 95%;
	max-width: 800px;
	max-height: 400px;
	overflow-y: auto;
}

table.tips-purchased-detail {
	width: 100%;
}

table.tips-purchased-detail thead tr {
	border-bottom: 1px solid #5c5d75;
}

table.tips-purchased-detail thead tr th {
	padding: 20px 10px 15px;
	text-align: left;
	text-transform: uppercase;
	color: #acacac;
	font-family: "Lato-Regular";
	font-size: 9pt;
}

table.tips-purchased-detail tbody tr {
	border-bottom: 1px solid #5c5d75;
}

table.tips-purchased-detail tbody tr td {
	padding: 15px 10px;
	text-align: left;
	color: #fff;
	vertical-align: middle;
	text-transform: uppercase;
	font-size: 8pt;
	line-height: 12pt;
	font-family: "Lato-Regular";
}

table.tips-purchased-detail tbody tr td .tipster-link a {
	display: inline-block;
	text-align: center;
	line-height: 13pt;
	color: #ed3657;
	text-transform: capitalize;
}

table.tips-purchased-detail tbody tr td .tipster-link a:hover {
	text-decoration: underline;
}

table.tips-purchased-detail tbody tr td b {
	display: block;
	color: #2bb7ad;
	padding-top: 5px;
}

table.tips-purchased-detail tbody tr td i {
	display: block;
	color: #2bb7ad;
}

table.tips-purchased-detail tbody tr td span.result {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	cursor: pointer;
	color: #fff;
	width: 100%;
}

table.tips-purchased-detail tbody tr td span.result.lose {
	background: #c02555;
}

table.tips-purchased-detail tbody tr td span.result.win {
	background: #269f6c;
}

table.tips-purchased-detail tbody tr td span.result.pending {
	background: #009fce;
}

table.tips-purchased-detail tbody tr td span.result.void {
	background: #544e4b;
}

table.tips-purchased-detail tbody tr td span.result.incomplete {
	background: #544e4b;
}

/*tips purchase detail popup*/










/*bundletips purchase detail popup*/

#bundletips-history .popup-cover {
	width: 95%;
	max-width: 900px;
	max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
}

table.bundletips-purchased-detail {
	width: 100%;
}

table.bundletips-purchased-detail thead tr {
	border-bottom: 1px solid #5c5d75;
}

table.bundletips-purchased-detail thead tr th {
	padding: 20px 10px 15px;
	text-align: left;
	text-transform: uppercase;
	color: #acacac;
	font-family: "Lato-Regular";
	font-size: 9pt;
}

table.bundletips-purchased-detail tbody tr {
	border-bottom: 1px solid #5c5d75;
}

table.bundletips-purchased-detail tbody tr td {
	padding: 15px 10px;
	text-align: left;
	color: #fff;
	vertical-align: middle;
	text-transform: uppercase;
	font-size: 8pt;
	line-height: 12pt;
	font-family: "Lato-Regular";
}

table.bundletips-purchased-detail tbody tr td b {
	display: block;
	color: #66678b;
	padding-top: 5px;
}


table.bundletips-purchased-detail tbody tr td span.result {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	cursor: pointer;
	color: #fff;
	width: 100%;
}

table.bundletips-purchased-detail tbody tr td span.result.lose {
	background: #c02555;
}

table.bundletips-purchased-detail tbody tr td span.result.win {
	background: #269f6c;
}

table.bundletips-purchased-detail tbody tr td span.result.pending {
	background: #009fce;
}

table.bundletips-purchased-detail tbody tr td span.result.void {
	background: #544e4b;
}

table.bundletips-purchased-detail tbody tr td span.result.incomplete {
	background: #544e4b;
}


ul.bundle-detail-overall {
	float: right;
	width: 250px;
	overflow: hidden;
	padding: 20px 0px 10px;
}



ul.bundle-detail-overall li {
	display: block;
	color: #acacac;
	width: 100%;
	margin: 5px 0px 20px !important;
	overflow: hidden;
}



ul.bundle-detail-overall li>span {
	float: left;
	font-family: "Lato-Regular";
	font-size: 10pt;
	color: #acacac;
}

ul.bundle-detail-overall li:last-child>span {
	margin-top: 8px;
}



ul.bundle-detail-overall li b {
	float: right;
	font-size: 10pt;
	color: #fff;
}

ul.bundle-detail-overall li b span.result {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	cursor: pointer;
	color: #fff;
	width: 100%;
}

ul.bundle-detail-overall li b span.result.lose {
	background: #c02555;
}

ul.bundle-detail-overall li b span.result.win {
	background: #269f6c;
}

ul.bundle-detail-overall li b span.result.pending {
	background: #009fce;
}

ul.bundle-detail-overall li b span.result.void {
	background: #544e4b;
}

ul.bundle-detail-overall li b span.result.incomplete {
	background: #544e4b;
}

/*bundletips purchase detail popup*/



/*verified popup*/
.verified-pop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: none;
}

span.closeverified {
	position: absolute;
	right: 2.5%;
	top: 30px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
}

.verified-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 95%;
	max-width: 400px;
	background: #212139;
	padding: 25px 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}


.verified-content h1 {
	display: block;
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	border-bottom: 2px solid #ed3657;
	margin-bottom: 20px;
}

.verified-content p {
	color: #fff;
	display: block;
	padding-bottom: 20px;
}

.verified-content input.input-field {
	background: #ebebeb;
	color: #000;
}


.verified-content input.request {
	width: 100%;
	margin-top: 20px;
}

.verified-content input.apply {
	width: 100%;
	margin-top: 10px;
}

/*verified popup*/



/*match info*/
.matchinfo-cover {
	width: 700px;
	margin: 0 auto;
	border: 1px solid #d7d7d7;

}

.matchheader {
	background: #10122b url(../images/logo.png) no-repeat center right 20px;
	background-size: 200px;
	color: #fff;
	padding: 20px 20px;
	text-transform: uppercase;
}

.matchcontent {
	padding: 20px 30px;
	background: #212138;
}

.tipster-tipsmatch,
.tipster-whotips {
	display: table;
	width: 100%;
	position: relative;
}

.tipster-whotips {
	background: #f5f5f5;
	margin-top: 20px;
	margin-bottom: 20px;
}

.tipsmatch-info,
.tipster-whotips div {
	display: table-cell;
	width: 33%;
	text-align: center;
	vertical-align: middle;
}

.tipster-whotips div {
	padding: 10px 10px;
}

.tipster-whotips div i {
	margin-right: 10px;
	color: #555555;
	font-size: 12pt;
}

.tipster-whotips div a {
	font-family: "Lato-Regular";
	color: #00aeef;
}

.tipster-whotips div a:hover {
	text-decoration: underline;
}

.tipsmatch-info .teamlogo {
	width: 100px;
	margin: 10px auto 20px;
	display: block;
}

.tipsmatch-info .teamlogo img {
	width: 100%;
}

.tipsmatch-info .teamname {
	display: block;
	font-family: "Lato-Regular";
	margin: 10px 0px;
	text-transform: uppercase;
	font-size: 12pt;
	color: #fff;
}

.tipsmatch-info .tipsmatch-date {
	display: block;
	font-family: "Lato-Regular";
	color: #fff;
	line-height: 15pt;
}

.tipsmatch-info .tipsmatch-time {
	display: block;
	font-size: 15pt;
	font-family: "Lato-Regular";
	color: #fff;
}

.tipsmatch-info .tipsmatch-event {
	display: block;
	font-family: "Lato-Regular";
	text-transform: uppercase;
	color: #959595;
}

.tipsmatch-tips span {
	margin: 5px 0px;
}

.tipsmatch-tips a {
	font-family: "Lato-Regular";
	max-width: 250px;
	margin: 0 auto;
	text-transform: uppercase;
}


.tipsmatch-tips .tipsmatch-showtips {
	display: table;
	width: 100%;
}

.tipsmatch-tips .tipsmatch-showtips .showtips-tip,
.tipsmatch-tips .tipsmatch-showtips .showtips-odds {
	display: table-cell;
	border: 2px solid #fce533;
	text-align: center;
	padding: 5px 5px;
}

.tipsmatch-tips .tipsmatch-showtips .showtips-odds {
	border-left: none;
}

.tipsmatch-tips .tipsmatch-showtips .showtips-tip span,
.tipsmatch-tips .tipsmatch-showtips .showtips-odds span {
	font-family: "Lato-Regular";
	text-transform: uppercase;
	color: #fff;
	display: block;
	margin: 0px;
}

.tipsmatch-tips .tipsmatch-showtips .showtips-tip p,
.tipsmatch-tips .tipsmatch-showtips .showtips-odds p {

	color: #959595;
}

table.matchinfo-table {
	width: 90%;
	margin: 0 auto;
}

table.matchinfo-table thead tr th {
	padding: 10px 10px;
	background: #ed3657;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

table.matchinfo-table tbody tr td {
	padding: 10px 10px;
	border: 1px solid #d7d7d7;
	vertical-align: middle;
	color: #fff;
	position: relative;
}


.fa-square.yellowredcard {
	position: relative;
	color: #cd1b38 !important;
}

.fa-square.yellowredcard:after {
	position: absolute;
	top: -4px;
	left: -4px;
	font-family: "FontAwesome";
	content: "\f0c8";
	color: #ffc427 !important;
}

/*match info*/






.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	z-index: 1000;
	display: none;
}



.mobile-overlay i {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
}



.forgetpass-pop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: none;
}


.forgetpass-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 95%;
	max-width: 500px;
	background: #212139;
	padding: 25px 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.forgetpass-content h1,
.forgetpass-content .h1 {
	display: block;
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Regular";
	padding-bottom: 10px;
	border-bottom: 2px solid #ed3657;
	margin-bottom: 20px;
}

.forgetpass-content p {
	color: #fff;
	font-size: 10pt;
	line-height: 15pt;
}

.forgetpass-content input[type="email"] {
	padding: 10px 10px;
	border: 1px solid #44455d;
	color: #fff;
	background: #54556d;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-top: 25px;
	position: relative;
}


.forgetpass-content input.sub {
	padding: 10px 10px;
	color: #fff;
	background: #ed3657;
	border: none;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
	margin-top: 20px;
	width: 150px;
}

/* width */
.forgetpass-content::-webkit-scrollbar {
	width: 5px;
}

/* Track */
.forgetpass-content::-webkit-scrollbar-track {
	background: #10122b;

}

/* Handle */
.forgetpass-content::-webkit-scrollbar-thumb {
	background: #44455d;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* Handle on hover */
.forgetpass-content::-webkit-scrollbar-thumb:hover {
	background: #555;
}

span.close-forget {
	position: absolute;
	right: 2.5%;
	top: 30px;
	font-size: 40pt;
	color: #fff;
	cursor: pointer;
	z-index: 10000;

	transform: scaleY(0.8);
	-moz-transform: scaleY(0.8);
	-ms-transform: scaleY(0.8);
	-o-transform: scaleY(0.8);
	-webkit-transform: scaleY(0.8);
}

span.close-forget:active {
	color: #ed3657;
}



/*thankyou page css*/
.registersuccess,
.actionsuccess {
	display: block;
	padding: 30px 0px;
}

.registersuccess h2,
.actionsuccess h2 {
	display: block;
	font-size: 20pt;
	margin-bottom: 30px;
	text-transform: uppercase;
	color: #ed3657;
	font-family: "Lato-Bold";
}

.registersuccess h2 i,
.actionsuccess h2 i {
	font-size: 30pt;
	display: inline-block;
	vertical-align: sub;
}

.registersuccess p,
.actionsuccess p {
	color: #fff;
	padding-bottom: 20px;
	font-size: 10pt;
	line-height: 14pt;
}

.registersuccess a,
.actionsuccess a {
	display: inline-block;

}



.payment-redirect-loading {
	display: block;
	padding: 30px 0px 30px 0px;
}

.payment-redirect-loading img {
	width: 50px;
	margin: 0 auto 30px;
	display: block;
}

.payment-redirect-loading span {
	color: #898989;
	padding-top: 20px;
	font-size: 10pt;
	padding-bottom: 50px;
	display: block;
	text-align: center;
}

.payment-redirect-loading p {
	color: #fff;
	font-size: 10pt;
	line-height: 15pt;
	text-align: center;
}

/*thankyou page css*/



.search-result table.today-tips tbody tr td .buythistips ul {
	text-align: right;
}

.search-result table.today-tips tbody tr td .buythistips ul li {
	display: inline-block;
	vertical-align: middle;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: left;
	text-transform: uppercase;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	border: none;
	background: #44455d;
	color: #fff;
	font-family: "Lato-Regular";
	width: 200px;
	margin: 3px 0px;
}

.search-result table.today-tips tbody tr td .buythistips ul li span {
	color: #2bb7ad;
	text-transform: uppercase;
	display: block;
	padding-top: 3px;

}

.verified-extracredit {
	display: block;
	width: 90%;
	margin: 10px auto 30px;
}

.verified-extracredit img {
	width: 100%;
}

.pagination {
	display: block;
	width: 100%;
}

.pagination p {
	color: #fff;
	font-size: 9pt;
	margin-top: 10px;
}

.pagination ul {
	text-align: center;
}

.pagination ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px;
}

.pagination ul li a {
	display: block;
	color: #fff;
	padding: 5px 5px;
}


.pagination ul li.currentpage a {
	color: #ed3657;
	text-decoration: underline;
}

table.main-table.today-tips thead tr th a.viewall {
	display: block;
	float: right;
	color: #acacac;
	font-size: 10pt;
}

table.main-table.dashboard-runningtips .buythisbundle {
	text-align: right;
}

.services {
	width: 100%;
	padding-bottom: 100px;
	display: block;
}

.services-content {
	padding: 30px 0px;
}


.services-content h2 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 12pt;
	line-height: 15pt;
	padding-bottom: 5px;
}

.services-content strong {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 11pt;
	line-height: 15pt;
	padding-bottom: 5px;
}


.services-content p {
	color: #ccc;
	font-size: 10pt;
	line-height: 15pt;
}


.services-content p a {
	color: #ed3657;
}

.services-content p b {
	color: #ed3657;
}


.services-content>ul {
	list-style-type: decimal;
	margin-left: 15px;
}

.services-content>ul>li {
	font-size: 11pt;
	color: #fff;
	margin: 5px 0px;
	line-height: 15pt;
}


/*error 404*/
.errorpage p {
	display: block;
	color: #fff;
	font-size: 11pt;
	line-height: 15pt;
	font-family: "Lato-Regular";
}

.errorpage .errorpage-content {
	padding: 30px 0px;
}

.errorpage .errorpage-content ul {
	display: inline-block;
	width: 31%;
	margin-right: 10px;
	vertical-align: top;
	color: #2bb7ad;
	margin-bottom: 30px;
	min-width: 200px;

}

.errorpage .errorpage-content ul li {
	list-style-type: disc;
	margin: 10px 0px;
	margin-left: 15px;
	font-size: 11pt;
}


.errorpage .errorpage-content ul li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	font-family: "Lato-Regular";
	font-size: 10pt;
}

.errorpage .errorpage-content ul li a:hover {
	color: #ed3657;
}

/*error 404*/

/*wechat alipay*/
span.qr_button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Light";
	text-align: center;
	text-transform: uppercase;
	display: none;
	padding: 10px 20px;
	font-size: 10pt;
	position: relative;
	cursor: pointer;

	background: #ed3657;
	color: #fff;
	border: 1px solid #ed3657;
}

span.qr_button:hover {
	color: #fff;
	background: #f94b6b;
	border: 1px solid #f94b6b;
}

#qr-scan .popup-cover {
	width: 95%;
	max-width: 350px;
}

#qr-scan .popup-content .auto_center.result {
	width: 300px;
	margin: 0 auto;
}

#qr-scan .popup-content .auto_center.result a {
	color: #ed3657;
}

/*wechat alipay*/

/*payment method*/
.payment-list-content {
	margin-top: 50px;
	border-top: 1px solid #5c5d75;
}

.paymentlist {
	width: 100%;
	display: block;
	padding: 0px 0px 50px;
}

.payment-list-content table {
	width: 100%;
}

.payment-list-content table tr {
	border-bottom: 1px solid #5c5d75;
}

.payment-list-content table tr td {
	padding: 20px 10px 20px 30px;
	box-sizing: border-box;
}

.payment-list-content table tr td p {
	line-height: 16pt;
}

.country-name {
	width: 20%;
	color: #2bb7ad;
}

.banklist {
	width: 80%;
	box-sizing: border-box;
	color: #fff;
}

.banklist p span {
	margin: 0px 5px;
	color: #acacac;
}

.paymentimglogo {
	display: inline-block;
	background: #fff;
	border-radius: 4px;
	width: 84px;
	overflow: hidden;
	padding: 2px 0;
	text-align: center;
	margin-right: 10px;
	margin-top: 12px;
}

.paymentimglogo img {
	width: 80px;
	display: inline-block;
}

.cta-section {
	color: #fff;
	font-size: 13pt;
	line-height: 22pt;
	margin-top: 60px;
	text-align: center;
}

a.cta-red {
	width: 200px;
	font-size: 11pt;
	display: inline-block;
	padding: 6px 0px;
	color: #fff;
	background: #ed3657;
	border: 1px solid #ed3657;
	text-transform: uppercase;
	margin-right: 40px;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}

a.cta-red:hover {
	background: #f94b6b;
}

a.cta-purple {
	width: 200px;
	font-size: 11pt;
	display: inline-block;
	padding: 6px 0px;
	color: #fff;
	background: #212038;
	border: 1px solid #66678b;
	text-transform: uppercase;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
}


a.cta-purple:hover {
	color: #10122b;
	background: #44455d;
}

/*payment method*/


/*2 april 2019*/
.blog-categories-list {
	display: block;
	padding-bottom: 50px;
	width: 100%;
}

.blog-categories-list ul {
	width: 100%;
	padding: 10px 10px;
}

.blog-categories-list ul li {
	color: #ed3657;
	font-size: 10pt;
	margin: 5px 20px 5px 0px;
	padding-left: 15px;
	display: inline-block;
	position: relative;
}

.blog-categories-list ul li:before {
	width: 5px;
	height: 5px;
	position: absolute;
	content: "";
	background: #ed3657;
	left: 0;
	top: 50%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;

	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.blog-categories-list ul li a {
	color: #fff;
	display: block;
}

.blog-categories-list ul li a:hover {
	text-decoration: underline;
}

ul.others-blog>li ul.current-blog-cat {
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
}

ul.others-blog>li ul.current-blog-cat li {
	color: #ed3657;
	font-size: 10pt;
	margin: 5px 20px 5px 0px;
	padding-left: 15px;
	display: inline-block;
	position: relative;
}

ul.others-blog>li ul.current-blog-cat li a {
	color: #fff;
	display: block;
}

ul.others-blog>li ul.current-blog-cat li:before {
	width: 5px;
	height: 5px;
	position: absolute;
	content: "";
	background: #ed3657;
	left: 0;
	top: 50%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

/*2 april 2019*/

/*dailybanner*/
.story {
	display: block;
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 99999;
	top: 0;
	left: 0;
}

.story .overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.5;
	top: 0;
	left: 0;
}

.story .content {
	display: block;
	margin: 0 auto;
	width: 90%;
	max-width: 620px;
	position: absolute;
	top: 50%;
	left: 50%;
	border: solid 5px #ffffff;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.story .content a {
	display: block;
	line-height: 0;
}

.story .content a img {
	width: 100%;
	border-radius: 5px 5px 5px 5px;
	-o-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	-ms-border-radius: 5px 5px 5px 5px;
}

.story .content b {
	display: block;
	position: absolute;
	z-index: 999;
	width: 35px;
	height: 35px;
	background: #ffffff;
	top: -20px;
	right: -20px;
	cursor: pointer;
	border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
}

.story .content b i {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 15pt;
	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

/*dailybanner*/




/*fixture-tips*/

.fixture-content {
	display: block;
	width: 100%;
}

.team-versus {
	display: block;
	width: 100%;
	text-align: center;
	padding: 20px 10px;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	margin-bottom: 20px;
}

.team-versus .teamname>span {
	display: block;
	color: #fff;
	font-size: 17pt;
	text-transform: uppercase;
	font-family: "Lato-Black";
	padding-bottom: 10px;
	padding-top: 10px;

}

.team-versus .teamname>span b {
	color: #2bb7ad;
	font-size: 11pt;
}

.team-versus .teamname>p {
	display: block;
	color: #000;
	font-size: 12pt;
	text-transform: uppercase;
	padding-bottom: 10px;
	color: #acacac;
}

.team-versus .teamname ul {
	text-align: center;
	display: block;
	margin: 20px 0px 30px;
}

.team-versus .teamname ul li {
	display: inline-block;
	vertical-align: middle;
	width: 30%;
	margin: 0 0;
}

.team-versus .teamname ul li:nth-child(2) b {
	display: block;
	color: #ed3657;
	font-size: 13pt;
	padding-bottom: 8px;
	font-family: "Lato-Bold";
}

.team-versus .teamname ul li:nth-child(2) i {
	display: block;
	color: #fff;
	font-size: 16pt;
}

.fixture-content .tips-box {
	margin-top: 0;
}

.fixture-content .todaytips-list h2.sub-title {
	display: block;
	font-family: "Lato-Regular";
	font-size: 11pt;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0px 0px 10px 0px;
}

.fixture-content .todaytips-list {
	margin-bottom: 50px;
}

.fixture-content .tipster-profile .pright .pdesc span a {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-family: "Lato-Regular";
	text-align: center;
	text-transform: uppercase;
	display: block;
	padding: 7px 10px 7px;
	font-size: 9pt;
	border: 1px solid #44455d;
	cursor: pointer;
	color: #fff;
	width: 170px;
}

.fixture-content .tipster-profile .pright .pdesc span a:hover {
	color: #10122b;
	background: #44455d;
}

.fixture-content .tipster-profile .pright .pdesc span {
	height: auto;
}

.fixture-content .tipster-profile .pright {
	padding: 30px 30px 30px 120px;
}

.fixture-content .tipster-profile .pleft {
	width: 76px;
}

.fixture-content .tipster-profile .pleft .pimg {
	width: 76px;
	height: 76px;
}

.fixture-content .tipster-profile .pright .pdesc span h2 {
	color: #2d9834;
}

.fixture-content .tipster-profile {
	margin-bottom: 50px;
	overflow: hidden;
	width: 100%;
	background: #ebebeb;
}

.fixture-content .livescore-h2h {
	margin-bottom: 50px;
}

.fixture-content .odds-compare {
	display: block;
	margin-bottom: 50px;
}

.fixture-content .profile-performance {
	margin-bottom: 50px;
}

.fixture-content .odds-compare h2 {
	display: block;
	font-family: "Lato-Regular";
	font-size: 11pt;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 2px solid #ed3657;
}

.fixture-content .odds-compare .odds-box {
	display: block;
	width: 100%;
	overflow: hidden;
}

.fixture-content .odds-compare .odds-box .homeaway-odds {
	display: none;
	overflow: hidden;
}

.fixture-content .odds-compare .odds-box ul.odds-select {
	display: block;
	overflow: hidden;
	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
}

.fixture-content .odds-compare .odds-box ul.odds-select li {
	display: block;
	float: left;
	width: 16.5%;
}

.fixture-content .odds-compare .odds-box ul.odds-select li:last-child {
	width: 17.5%;
}

.fixture-content .odds-compare .odds-box ul.odds-select li a {
	display: block;
	text-align: center;
	color: #acacac;
	background: #44455d;
	padding: 10px 5px;
	font-size: 8pt;
	border-right: 1px solid #5c5d75;
}

.fixture-content .odds-compare .odds-box ul.odds-select li a:hover {
	color: #fff;
	background: #ed3657;
}

.fixture-content .odds-compare .odds-box ul.odds-select li.active a {
	background: #ed3657;
	color: #fff;
}

.fixture-content .odds-compare select {
	display: block;
	border: none;
	width: 100%;
	padding: 10px 10px;
	background: #444444 url(../images/angle-down.png) no-repeat center right 10px;
	color: #fff;
	font-size: 10pt;
	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	appearance: none;
	-o-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	margin-bottom: 10px;
}

.fixture-content .odds-compare .odds-home-away {
	display: block;
	float: left;
	width: 50%;
}

.fixture-content .odds-compare .odds-home-away .head {
	display: block;
	margin: 10px 0 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	background: #ed3657;
	text-align: center;
	padding: 10px 10px 10px 10px;
	font-size: 9pt;
	color: #fff;
	text-transform: uppercase;
	font-family: "Lato-Bold";
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.fixture-content .odds-compare .odds-home-away ul.content {
	display: block;
	width: 100%;
}

.fixture-content .odds-compare .odds-home-away ul.content li {
	border: 1px solid #5c5d75;
	border-top: none;
	display: block;
	text-align: center;
	color: #acacac;
	font-size: 9pt;
	padding: 15px 10px;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	background: #10122b;
}

.fixture-content .odds-compare .odds-home-away ul.content li:nth-child(even) {
	background: #44455d;
}

.fixture-content .fixture-last-five-result {
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
}

.fixture-content .fixture-last-five-result h2 {
	display: block;
	font-family: "Lato-Regular";
	font-size: 11pt;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 2px solid #ed3657;
}

.fixture-content .fixture-last-five-result .latestresult {
	display: block;
	width: 48%;
}

.fixture-content .fixture-last-five-result .latestresult.hometeam {
	float: left;
}

.fixture-content .fixture-last-five-result .latestresult.awayteam {
	float: right;
}

.fixture-content .fixture-last-five-result .latestresult .head {
	display: block;
	margin: 10px 0 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	background: #ed3657;
	text-align: center;
	padding: 10px 10px 10px 10px;
	font-family: "Lato-Bold";
	font-size: 9pt;
	color: #fff;
	text-transform: uppercase;
	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.fixture-content .fixture-last-five-result .latestresult ul {
	display: block;
	width: 100%;
	border-left: 1px solid #5c5d75;
	border-right: 1px solid #5c5d75;
}

.fixture-content .fixture-last-five-result .latestresult ul li {
	display: block;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #5c5d75;
	overflow: hidden;
	background: #212138;
}



.fixture-content .fixture-last-five-result .latestresult ul li span {
	display: block;
	float: left;
	padding: 5px 0px;
	overflow: hidden;
	font-size: 9pt;
}

.fixture-content .fixture-last-five-result .latestresult ul li span.date {
	width: 50%;
	text-align: left;
	color: #fff;
	font-size: 9pt;
	margin-top: 5px;
}

.fixture-content .fixture-last-five-result .latestresult ul li span.result {
	width: 50%;
	text-align: right;
}

.fixture-content .fixture-last-five-result .latestresult ul li span.result b {
	display: inline-block;
	padding: 5px 5px;
	color: #fff;
	background: #10122b;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
}

.fixture-content .fixture-last-five-result .latestresult ul li span.event {
	width: 100%;
	color: #fff;
	text-align: right;
}

.fixture-content .fixture-last-five-result .latestresult ul li span i {
	display: block;
	float: left;
	color: #959595;
	font-size: 9pt;
	text-transform: uppercase;
	text-align: left;
}

.fixture-content .fixture-last-five-result .latestresult ul li span.player {
	width: 100%;
	color: #fff;
	text-align: right;
}

.per-cover ul.perlist li span.event a {
	color: #ffc427;
}



.fixture-content .tipster-profile {
	display: block;
	overflow: hidden;
	padding: 30px 30px 30px 30px;
	position: relative;
	margin: 0px 0px 50px 0px;
	border-top: 2px solid #ed3657;
	background: #10122b;
}

.fixture-content .tipster-profile .pleft {
	display: block;
	float: left;
	width: 106px;
}

.fixture-content .tipster-profile .pleft .pimg {
	display: block;
	width: 106px;
	height: 106px;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: 50% 50% !important;

	border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
}

.fixture-content .tipster-profile .pright {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	padding: 30px 30px 30px 155px;
	overflow: hidden;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.fixture-content .tipster-profile .pright .pdesc {
	display: block;
	overflow: hidden;
	padding-top: 17px;
}

.fixture-content .tipster-profile .pright .pdesc span {
	display: block;
	float: left;
	width: 32%;
}

.fixture-content .tipster-profile .pright .pdesc span h2 {
	display: block;
	font-family: "Lato-Bold";
	font-size: 12pt;
	text-transform: uppercase;
	color: #ffffff;
	padding: 0;
	margin: 0px 0px 5px 0px;
}

.fixture-content .tipster-profile .pright .pdesc span h3 {
	display: block;
	font-family: "Lato-Regular";
	font-size: 10pt;
	color: #66678b;
	padding: 0;
	margin: 0px 0px 10px 0px;
}

.fixture-content .tipster-profile .pright .pdesc span p {
	display: block;
	overflow: hidden;
}

.fixture-content .tipster-profile .pright .pdesc span p i {
	display: block;
	float: left;
	width: 20px;
	height: 20px;
	margin: 0px 8px 0px 0px;
	border: solid 1px #ffffff;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: 50% 50% !important;

	border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
}

.fixture-content .tipster-profile .pright .pdesc span p b {
	display: block;
	font-family: "Lato-Regular";
	font-size: 9pt;
	float: left;
	color: #ffffff;
	text-transform: uppercase;
	padding: 5px 0px 5px 0px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-number {
	display: block;
	float: right;
	width: 66%;
	height: 66px;
	margin: 0;
	padding: 0;
	list-style-type: none;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-number li {
	display: block;
	float: left;
	width: 32%;
	margin: 0px 2% 0px 0px;
	padding: 10px 15px 10px 15px;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-number li:last-child {
	margin: 0;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-number li b {
	display: block;
	text-align: center;
	font-family: "Lato-Bold";
	text-transform: uppercase;
	font-size: 15pt;
	color: #ffffff;
	padding: 0;
	margin: 0px 0px 10px 0px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-number li p {
	padding: 5px 5px 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #66678b;
	color: #212138;
	font-size: 10pt;
	display: block;
	text-align: center;
	width: 100%;
	font-family: "Lato-Regular";
}

.fixture-content .tipster-profile .pright .pdesc ul.p-number li.profit b {
	color: #2bb7ad;

}

.fixture-content .tipster-profile .pright .pdesc ul.p-number li.profit p {
	background: #2bb7ad;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link {
	display: block;
	width: 100%;
	margin: 10px 0px 0px 0px;
	padding: 0;
	list-style-type: none;
	float: left;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li {
	display: block;
	width: 32%;
	margin: 0px 2% 0px 0px;
	float: left;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li:last-child {
	margin: 0;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li a {
	display: inline-block;
	padding: 8px 20px 8px 20px;
	text-align: center;
	font-family: "Lato-Regular";
	font-size: 9pt;
	text-transform: uppercase;
	color: #ffffff;
	border: solid 1px #ffffff;

	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li a:hover {
	background: #ffffff;
	color: #000000;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.follow a {
	border: solid 1px #ffc427;
	display: block;
	color: #ffc427;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.follow a:hover {
	background: #ffc427;
	color: #000000;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share {
	text-align: right;
	float: right;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share p {
	display: inline-block;
	font-family: "Lato-Regular";
	font-size: 9pt;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0px 10px 0px 0px;
	padding: 9px 0px 9px 0px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share a {
	display: block;
	float: right;
	position: relative;
	padding: 0;
	width: 30px;
	height: 30px;
	border: none;

	box-sizing: border-box;
	-o-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share a:hover {
	background: #ffffff !important;
	color: #000000;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share a.fb {
	background: #2d5891;
	margin: 0px 0px 0px 5px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share a.tw {
	background: #33d4e7;
	margin: 0px 0px 0px 5px;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share a.gp {
	background: #df1f3e;
}

.fixture-content .tipster-profile .pright .pdesc ul.p-link li.share a i {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.fixture-content .tipster-summary {
	display: block;
	padding: 30px 30px 30px 30px;
	background: #000000;
	margin: 0px 0px 20px 0px;
}

.fixture-content ul.summary-main {
	display: block;
	margin: 0px 0px 20px 0px;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	background: #0c0c0c;
}

.fixture-content ul.summary-main li {
	display: block;
	float: left;
}

.fixture-content ul.summary-main li a {
	display: block;
	font-family: "Lato-Bold";
	font-size: 10pt;
	padding: 10px 15px 10px 15px;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
}

.fixture-content ul.summary-main li.active a {
	background: #ffc427;
	color: #000000;
}

.fixture-content .sumbox {
	display: none;
	padding: 20px 20px 20px 20px;
	background: #272727;
	overflow: hidden;
	position: relative;
}

.fixture-content .livescore-h2h h3 {
	font-size: 11pt;
	color: #666;
	padding-bottom: 10px;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}


ul.left-social li a {
	display: inline-block;
	margin-right: 25px;
	color: #ed3657;
	font-size: 12pt;
	margin-bottom: 10px;
}


/*new homepage toptipster*/

.toptipster-list-all {
	width: 100%;
	overflow: hidden;
}

.tipsterdata {
	float: left;
	width: 25%;
	border-right: 1px solid #5c5d75;
}

.tipsterdata .title {
	color: #fff;
	padding: 20px 10px 10px;
	text-transform: uppercase;
	font-size: 10pt;
	text-align: center;
	font-family: "Lato-Regular";
}

/*new homepage toptipster*/


.social-check {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.social-check .content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 220px;
}

.social-check .content i {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 15pt;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	color: #fff;
	cursor: pointer;
	background: #3c3f4a;
	z-index: 99;
}


/*extra note*/

.page-extra-note {
	width: 100%;
}

.page-extra-note .note-cover {
	display: block;
	width: 100%;
	color: #acacac;
	font-size: 10pt;
	line-height: 15pt;
	padding: 100px 0px 30px;
}


.page-extra-note .note-cover .title {
	display: block;
	padding-bottom: 10px;
	text-transform: uppercase;
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 12pt;
	border-bottom: 2px solid #ed3657;
	position: relative;
	margin-bottom: 30px;
}


.page-extra-note .note-cover b {
	font-weight: bold;
	color: #ed3657;
}



.header-slider {
	width:49%;
}

.header-slider .swiper{
	width:100%;
}


.header-slider .swiper img{
	display:block;
	object-fit:contain;
	width:auto;
	max-width:100%;
}

.header-slider .swiper .swiper-slide a{
	display:flex;
	justify-content:center;
	align-items:center;
	background:#000000;
	height:100%;
}


.subscription_tips_dd {
  width: 100%;
  position: relative;
  min-width:250px;
  text-align:center;
}

.subscription_tips_dd .selected {
  width: 100%;
  color: #fff;
    border: 1px solid #44455d;
  padding: 10px 10px;
  line-height: 1.3;
  cursor: pointer;
  background: url(../images/angle-down.png)
	no-repeat right 5px center;
	text-align:Center;
	    font-family: "Lato-Regular";
}

.subscription_tips_dd .dd_option {
  position: absolute;
  left: 0;
  top: 100%;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  width: 100%;
  display: none;
  z-index:10;
  -webkit-box-shadow: 9px 11px 10px -6px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 9px 11px 10px -6px rgba(0, 0, 0, 0.35);
  box-shadow: 9px 11px 10px -6px rgba(0, 0, 0, 0.35);
  height:150px;
  overflow-y:auto;
}

.subscription_tips_dd .dd_option .item {
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 10px;
  color: #000000;
  line-height: 1.3;
  cursor: pointer;
  background:#ffffff;
}

.subscription_tips_dd .dd_option .item:hover {
  background: #f5f5f5;
}

.subscription_tips_dd .dd_option .item:last-child {
  border-bottom: none;
}

table.today-tips tbody tr td .logintoview input[type=submit],
.buythisbundle input[type=submit],
.tipster_detail_subscription input[type=submit],
table.dashboard-runningtips>tbody>tr>td input[type=submit]{
	width:250px;
	color:#ed3657;
}



.cart-total ul li.promocode_checkout{
	display:flex;
	align-items:center;
}

.cart-total ul li.promocode_checkout .input-field{
	width:calc(100% - 80px);
	border-radius:3px 0px 0px 3px;
}

.cart-total ul li p#promote_code_msg{
	line-height:1.3;
	color:green;
}

.cart-total ul li p#promote_code_msg.false{
	color:red;
}

.cart-total ul li.promocode_checkout .applybutton{
	width:80px;
	text-align: center;

}

.cart-total ul li.voucher_checkout{
	padding-top:10px;
	padding-bottom:10px;
}

.cart-total ul li.voucher_checkout .showallcoupon{
	text-align:center;
	color:#acacac;
	font-size:14px;
	text-decoration:underline;
	cursor:pointer;
}

.cart-total ul li.voucher_checkout .voucherList{
	padding:20px 0px;
	display:none;
	flex-direction:column;
	gap:10px;
}


.cart-total ul li.voucher_checkout .voucherList .voucherDetail{
	border:1px solid #44455d;
	border-radius:4px;
	display:flex;
	flex-wrap:wrap;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail .top{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:20px 10px;
	width:100%;
	background:#07091d;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail .btm{
	background:#11252e ;
	padding:10px 10px;
	color:#acacac;
	width:100%;
	font-size:12px;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail .top .vname{
	font-size:14px;
	color:#ffffff;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail p{
	font-size:14px;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail a{
	font-weight:bold;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
	border:1px solid #acacac;
	border-radius:4px;
	background:#1abc9c;
	cursor:pointer;
	padding:10px 12px;
	width:80px;
	text-align:center;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail a.active{
	background:#03946a;
	border:1px solid #03946a;
	color:#acacac;
}

.cart-total ul li.voucher_checkout .voucherList .voucherDetail a:hover{
	background:#03946a;
	color:#acacac;
}

.cart-total ul li.promocode_checkout .remove_promotecode,
.cart-total ul li.voucher_checkout .voucherList .voucherDetail a.remove_promotecode{
	background:#ed3657;
	color:#ffffff;
	border:1px solid #ed3657;
}


@media only screen and (max-width: 768px) {
	.fixture-content .tipster-profile .pright .pdesc span {
		width: 100%;
		margin-bottom: 15px;
	}

	.fixture-content .tipster-profile .pright .pdesc ul.p-number {
		width: 100%;
	}

	.fixture-content .tipster-profile .pright {
		position: relative;
		width: auto;
		padding: 0px 0px 20px 20px;
	}
}


@media only screen and (max-width: 667px) {
	.fixture-content .fixture-last-five-result .latestresult {
		width: 100%;
		float: none;
	}

	.fixture-content .fixture-last-five-result .latestresult.hometeam {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 600px) {
	.fixture-content .tipster-profile .pright {
		width: 100%;
		padding: 20px 0px 0px;
	}

	.fixture-content .tipster-profile .pleft {
		float: none;
		margin: 10px auto;
	}

	.fixture-content .tipster-profile .pright .pdesc span {
		text-align: center;
	}

	.fixture-content .tipster-profile .pright .pdesc span a {
		margin: 0 auto;
	}
	
	.subscription_tips_dd .dd_option{
		position:relative;
	}
}


@media only screen and (max-width: 480px) {
	.fixture-content .odds-compare .odds-box ul.odds-select li {
		width: 50% !important;
	}

	.fixture-content .odds-compare .odds-home-away {
		width: 100%;
		margin: 10px 0px;
	}

	.fixture-content .tipster-profile .pright .pdesc ul.p-number {
		height: auto;
	}

	.fixture-content .tipster-profile .pright .pdesc ul.p-number li {
		width: 100%;
	}
}

/*fixture-tips*/


.registersocial {
	display: block;
	width: 100%;
	padding: 20px 0px;
}

.registersocial p {
	color: #fff;
	font-size: 10pt;
}

.registersocial ul {
	width: 100%;
	padding: 0 0;
	margin-top: 20px;
	margin-left: 0;
}

.registersocial ul li {
	display: block;
}

.registersocial ul li:before {
	display: none;
}

.registersocial ul li.loginfb a {
	padding: 10px 10px;
	color: #fff;
	background: #526ba6;
	border: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
	display: block;
	text-align: center;
}

.registersocial ul li.loginfb a:hover {
	opacity: 0.8;
}

.registersocial ul li.loginfb a i {
	margin-right: 10px;
}

.registersocial ul li.logingp a {
	padding: 10px 10px;
	color: #fff;
	background: #ed413c;
	border: none;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
	display: block;
	text-align: center;
}

.registersocial ul li.logingp a:hover {
	opacity: 0.8;
}

.registersocial ul li.logingp a i {
	margin-right: 10px;
}

.blog-bottompart .pagetitle {
	overflow: hidden;
	display: block;
}

.blog-bottompart .pagetitle a.viewall {
	display: block;
	float: right;
	color: #66678b;
	font-size: 9pt;
}

.homeblog.blog-bottompart {
	padding-bottom: 50px;
}



/*latest signup*/
.have-acc .h1 {
	color: #fff;
	font-size: 23pt;
	font-family: "Lato-Regular";
	display: block;
	text-align: left;
	text-transform: uppercase;
	line-height: 25pt;
	margin-top: 20px;
}

.have-acc .logo {
	width: 100%;
	margin-top: -10px;
	margin-bottom: 20px;
}

.have-acc .logo img {
	display: block;
	width: 80%;
	margin-top: 20px;
}

.joinus-message ul li .sub-register {
	padding: 10px 10px;
	color: #fff;
	background: #ed3657;
	border: none;
	text-transform: uppercase;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	cursor: pointer;
}

.joinus-message ul li .sub-register:hover {
	background: #f94b6b;

}

/*latest signup*/




/*latest blog */
.blog-left {
	float: left;
	width: calc(100% - 250px);
}

.blog-right {
	float: left;
	width: 250px;
	padding-left: 40px;
}

ul.others-blog li .blog-content {
	display: table;
}

ul.others-blog li .blog-content .blog-content-left {
	display: table-cell;
	vertical-align: middle;
	width: 150px;
	text-align: center;
}

ul.others-blog li .blog-content .blog-content-left b {
	display: block;
	text-align: center;
	color: #66678b;
	font-family: "Lato-Black";
	font-size: 50pt;
	padding-bottom: 10px;
}

ul.others-blog li .blog-content .blog-content-left i {
	display: block;
	font-size: 12pt;
	color: #66678b;
	text-transform: uppercase;
	font-family: "Lato-Regular";
}

ul.others-blog li .blog-content .blog-content-left span {
	display: block;
	text-align: center;
	margin-top: 10px;

}

ul.others-blog li .blog-content .blog-content-left span a {
	color: #ed3657;
	font-size: 10pt;
}

ul.others-blog li .blog-content .blog-content-right {
	display: table-cell;
	vertical-align: top;
	width: calc(100% - 150px);
}

.blog-readmore {
	display: block;
	width: 100%;
	margin-top: 10px;
}

.blog-readmore a {
	display: block;
	width: 100%;
	border-radius: 20px;
	padding: 10px 10px;
	border: 1px solid #66678b;
	text-transform: uppercase;
	text-align: center;
	color: #ee4a66;
}

.blog-readmore a:hover {
	background: #ee4a66;
	color: #fff;
	border: 1px solid #ee4a66;
}

.blog-right .blog-right-sections {
	display: block;
}

.blog-right .blog-right-sections .h1 {
	font-family: "Lato-Light";
	font-size: 12pt;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 2px solid #ed3657;
}

.blog-right .blog-right-sections .sections {
	padding-bottom: 40px;
}


.blog-right .blog-right-sections .sections.categories ul {
	width: 100%;
}

.blog-right .blog-right-sections .sections.categories ul li {
	display: block;
	margin: 12px 0px;
	position: relative;
	color: #ed3657;
}

.blog-right .blog-right-sections .sections.categories ul li:before {
	width: 5px;
	height: 5px;
	position: absolute;
	content: "";
	background: #ed3657;
	left: 0;
	top: 50%;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-border-radius: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.blog-right .blog-right-sections .sections.categories ul li a {
	color: #fff;
	display: block;
	padding-left: 10px;
}

.blog-right .blog-right-sections .sections.tag ul {
	padding: 10px 0px 10px;
	width: 100%;
	overflow: hidden;
}

.blog-right .blog-right-sections .sections.tag ul li {
	display: inline-block;
	vertical-align: top;
	margin: 0px 5px 8px 0px;
	padding: 0;
}

.blog-right .blog-right-sections .sections.tag ul li a {
	display: block;
	padding: 8px 10px;
	border: 1px solid #44455d;
	text-transform: uppercase;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #fff;
	font-size: 8pt;
	line-height: 11pt;
}

.blog-right .blog-right-sections .sections.tag ul li a:hover {
	background: #ed3657;
	border: 1px solid #ed3657;
	color: #fff;
}

ul.user-button {
	width: 100%;
}

ul.user-button li {
	display: inline-block;
	margin: 0px 10px 10px 0px;
}

ul.user-button li a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
	line-height: 27px;
	text-align: center;
	color: #fff;
	border: 1px solid #44455d;
}

ul.user-button li a:hover,
ul.user-button li.active a {
	background: #ee4a66;
}

/*latest blog*/

.footer-right .h2 {
	color: #fff;
	font-family: "Lato-Regular";
	font-size: 12pt;
	line-height: 15pt;
	padding-bottom: 5px;
}

.new {
	left: 3px;
	bottom: 12px;
	position: relative;
	font-size: 9px;
	color: gold;
}

.mobile-new::after {
	content: "NEW";
	position: relative;
	font-size: 10px;
	color: gold;
	top: -11px;
}

.top-head {
	display: flex;
	align-items: center;
}

.top-head-left {
	width: 30%;
	line-height: 20px;
}

.top-head-right {
	width: 70%;
	position: relative;
	padding-bottom: 39.25%;
	/* 16:9 */
	height: 0;
}

.top-head-right iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-series-title {
	color: white;
	float: left;
	width: 50%;
	font-size: 16px;
	font-weight: bold;

}


.video-series-view-all {
	color: #66678b;
	float: right;
	width: 50%;
	text-align: right;
	transition: 0.4s;
}


.top-head-wrap {
	margin-bottom: 30px;
}

.red-lines {
	border: 0;
	border-bottom: 2px solid #ed3657;
	margin: 10px 0;
}

.top-head-date {
	color: #66678b;
	display: inline-block;
}

.top-head-title {
	color: white;
	font-size: 20px;
	font-weight: bold;
	line-height: 25px;
}

.video-series-content {
	display: flex;
	flex-wrap: wrap;

}

.video-time-stamp {
	color: white;
	padding: 5px;
	box-sizing: border-box;
	background-color: #ed3557;
	display: inline-block;
	margin: 10px;
}

.video-series-content-slot-video-wrap {
	position: relative;
}

.video-play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 55px;
	color: white;
}

.video-time-stamp {
	position: absolute;
	bottom: 0;
	left: 0;
}


.video-date {
	color: white;
	color: #66678b;
	display: inline-block;
	padding-top: 10px;
	box-sizing: border-box;
}

.video-date-calender {
	display: inline-block;
	color: #66678b;
}

.video-date-view {
	display: inline-block;
	color: #66678b;
	padding-left: 10px;
	box-sizing: border-box;
}

.iframe-popup {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
}

.iframe-popup>iframe {
	position: absolute;
	top: 50%;
	max-width: 95%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-series-content-slot {
	width: 32%;
	padding-bottom: 30px;
	box-sizing: border-box;
	margin: 0 1%;
}

.video-series-content .video-date {
	font-size: 13px;
	padding: 10px 0;
}


.video-title {
	font-size: 14px;
	color: white;
	line-height: 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.video-desc {
	font-size: 12px;
	color: white;
	line-height: 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}



.video-series-content-slot:nth-child(3n + 1) {
	margin-left: 0;
}

.video-series-content-slot:nth-child(3n) {
	margin-right: 0;
}

.video-series-content-slot-video {
	filter: brightness(50%);
	transition: 0.4s;
	width: 100%;
}

.video-series-content-slot-video:hover {
	filter: brightness(100%);
	transition: 0.4s;

}

.video-series-content-wrap {
	padding-top: 15px;
	box-sizing: border-box;
}

.video-series-view-all:hover {
	color: #ed3657;
	transition: 0.4s;
}


.video-play-button-btn {
	background-image: url('/images/play-btn.png');
	width: 40px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}




.video-popup-wrap{
	display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    top: 0;
    left: 0;
}

.video-popup-wrap .overlay{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.5;
	top: 0;
	left: 0;
}


.video-popup{
    display: block;
    width: 750px;
    position: absolute;
    top: 50%;
    left: 50%;
    border: solid 3px #626386;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
	color: white;
	background-color: #212138;
	border-radius: 10px;
	padding: 15px 10px;
	box-sizing: border-box;
}


.video-popup-content{	
	display: flex;
	flex-direction: column;
	align-items: center;
}

.video-popup-content-title{
	font-size: 27px;
    font-family: 'Lato-Regular';
    color: #626386;
	padding-bottom: 20px;
	box-sizing: border-box;
}


.video-popup-content-para{
    font-size: 14px;
    padding: 10px 50px;
	padding-top: 0;
    line-height: 20px;
    font-family: 'Lato-Regular';
}

.video-popup-content-para a{
	color: #ed3558;
}





.video-popup-close{
	display: block;
	color:  #626386;
	padding: 5px;
	cursor: pointer;
	font-size: 22px;
	text-align: right;
}


.video-banner img{
	padding: 20px 0;
}

.youtube-sub-button{
	display: block;
	text-align: right;
	margin-top: 30px;
}


.youtube-sub-button a{
    padding: 5px 20px;
    color: white;
    background-color: #ed3558;
    display: inline-block;
    border-radius: 5px;
}















/*responsive code*/

@media only screen and (max-width: 1024px) {

	.top-action-header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		margin-bottom: 0;
		padding: 15px 15px;
		background: #10122b;
	}

	.top-action-header.beforelogin .mobile-menu {
		display: table-cell;
	}

	.main-left {
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100vh;
		float: none;
		min-height: auto;
		z-index: 20000000000;

		transition: all ease 0.3s;
		-moz-transition: all ease 0.3s;
		-ms-transition: all ease 0.3s;
		-o-transition: all ease 0.3s;
		-webkit-transition: all ease 0.3s;
	}

	.main-left.trigger {
		left: 0;

		transition: all ease 0.3s;
		-moz-transition: all ease 0.3s;
		-ms-transition: all ease 0.3s;
		-o-transition: all ease 0.3s;
		-webkit-transition: all ease 0.3s;
	}

	.main-left .login-after a {
		display: block;
		float: none;
		width: 100%;
		font-size: 10pt;
	}

	.main-left .login-after a.mydashboard {
		margin-bottom: 10px;
	}

	.main-right {
		width: 100%;
		padding-top: 87px;
	}


	/* width */
	.main-left::-webkit-scrollbar {
		width: 5px;
	}

	/* Track */
	.main-left::-webkit-scrollbar-track {
		background: #44455d;

	}

	/* Handle */
	.main-left::-webkit-scrollbar-thumb {
		background: #2bb7ad;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	/* Handle on hover */
	.main-left::-webkit-scrollbar-thumb:hover {
		background: #555;
	}



	.footer-sitemap {
		width: 33%;
		margin-bottom: 40px;
	}

	.login-people {
		display: none;
	}

}

@media only screen and (max-width: 950px) {
	.faq-submission-left {
		width: 39%;
	}

	.faq-submission-right {
		width: 61%;
	}


}

@media only screen and (max-width: 900px) {

	.homepage-gadget-left,
	.homepage-gadget-right {
		float: none;
		width: 100%;
	}

	.homepage-gadget-left {
		padding-right: 0;
		margin-bottom: 40px;
	}

	.login-left {
		display: block;
		width: 100%;
		float: none;
		min-height: auto;
		height: auto;
		padding: 50px 15px;
	}

	.welcome-message {
		margin-top: 0;
		margin: 0 auto;
	}

	.login-right {
		width: 100%;
		display: block;
		float: none;
		min-height: auto;
		height: auto;
		padding: 70px 15px 0px;
	}

	.loginform ul {
		height: auto;
		padding-right: 0;
	}

	.loginform {
		float: none;
		margin: 0 auto;
		width: 100%;
		max-width: 350px;
	}

	.register-form ul {
		height: auto;
	}

	.login-left.trigger {
		width: 100%;
		overflow: hidden;
	}

	.login-right.trigger {
		width: 100%;
		overflow: hidden;
	}

	.have-acc {
		position: relative;
		top: 0;
		right: 0;
		padding: 0px 0px 30px;
		margin: 0 auto;
		width: 100%;
		max-width: 300px;
	}

	.joinus-message {
		float: none;
		margin: 30px auto 0;
		max-width: 450px;
		padding: 0px 15px 0px;
	}

	.register-form {
		float: none;
		margin: 0 auto;
		padding: 50px 15px 0px;
	}

	.register-form h1,
	.register-form .h1 {
		margin-left: 0;
	}

	.register-form ul.register > li {
		padding-left: 0;
	}

	.left-bg.trigger {
		width: 100%;
	}

	.left-bg img {
		margin: 0 auto;
		bottom: 0;
		top: 50%;
		right: 0;
		left: 0;

		transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.left-bg {
		width: 100%;
	}

	.acc-activation h1,
	.acc-activation>p {
		margin-left: 0;
	}

	.acc-activation ul {
		padding-left: 0;
	}

	.acc-activation {
		padding-left: 0px;
	}
}

@media only screen and (max-width: 860px) {

	.toppart-cover{
		flex-wrap:wrap;
		row-gap:20px;
	}

	.cta-banner {
		display: block;
		width: 100%;
		min-height: initial;
		height: auto;
	}

	.embed-video {
		width: 100%;
		float: none;
		padding-left: 0;
		display: block;
	}
	
	.header-slider{
		width:100%;
	}

	.toptipster-left,
	.toptipster-right {
		width: 100%;
		float: none;
		display: block;
	}

	.toptipster-left {
		margin-bottom: 30px;
	}

	.team-lineup-home .team-logo ul li {
		display: block;
		margin-right: 0;
	}


	.team-lineup-home .team-logo ul li:first-child span,
	.team-lineup-away .team-logo ul li:last-child span {
		margin: 0 auto 10px;
	}

	.team-lineup-away .team-logo ul li:first-child {
		display: table-footer-group;
		width: 100%;
	}

	.team-lineup-away .team-logo ul li:last-child {
		display: table-header-group;
		width: 100%;
	}

	.team-lineup-away .team-logo ul {
		display: table;
		width: 100%;
	}
}

@media only screen and (max-width: 800px) {
	.faq-submission-left {
		display: block;
		width: 100%;
		float: none;
		padding: 50px 0px 30px;
	}

	.faq-submission-right {
		display: block;
		width: 100%;
		float: none;
		border-left: none;
		border-top: 2px solid #5c5d75;
		padding-left: 0;
	}
}

@media only screen and (max-width: 768px) {

	.video-popup{
		width: 300px;
	}

	.video-banner img{
		width: 170px;
	}

	.video-popup-content-para{
		padding: 20px;	
	}

	.youtube-sub-button{
		text-align: center;
	}


	.tipsterdata {
		width: 50%;

	}

	.tipsterdata.junior,
	.tipsterdata.senior {
		border-bottom: 1px solid #5c5d75;
	}

	.tipsterdata.senior,
	.tipsterdata.bundle {
		border-right: none;
	}

	ul.others-blog li .blog-content {
		display: block;
	}

	ul.others-blog li .blog-content .blog-content-left {
		display: block;
		text-align: left;
		width: 100%;
		margin-bottom: 20px;
	}

	ul.others-blog li .blog-content .blog-content-left b {
		text-align: left;
		display: inline-block;
	}

	ul.others-blog li .blog-content .blog-content-left i {
		display: inline-block;
	}

	ul.others-blog li .blog-content .blog-content-left span {
		display: inline-block;
		margin-left: 10px;
	}

	ul.others-blog li .blog-content .blog-content-right {
		display: block;
		width: 100%;
	}

	ul.in-cart-item>li .cart-item {
		min-height: 76px;
		height: auto;
	}

	ul.in-cart-item li .cart-item .event-match p b {
		display: block;
		margin-left: 0;
	}

	.copyright ul {
		display: block;
		float: none;
		padding-top: 10px;
	}

	.copyright p {
		float: none;
	}

	.latest-news-list>ul>li {
		display: block;
		float: none !important;
		width: 100% !important;
	}

	.latest-news-list .news-text p {
		height: auto;
	}

	.tipsterprofile-top-header {
		padding-left: 0;
		padding-bottom: 70px;
	}


	.tipsterprofile-top-header ul.sharesocial {
		float: none;
		display: block;
		width: 100%;
		text-align: left;
		padding-top: 5px;
	}

	.tipsterprofile-top-header ul.sharesocial li:first-child {
		margin-left: 0;
	}

	.tipsterprofile-top-header ul.sharesocial li {
		margin: 5px 20px 5px 0px;
	}

	.tipsterprofile-top-header .tipstername {
		float: none;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance li p {
		height: 31px;
	}

	ul.dashboard-myaccount-link li a {
		font-size: 9pt;
		line-height: 13pt;
		padding: 30px 10px;
		height: 94px;
	}

	table.purchased-tips-history,
	table.purchased-tips-history thead,
	table.purchased-tips-history thead tr,
	table.purchased-tips-history thead tr th,
	table.purchased-tips-history tbody,
	table.purchased-tips-history tbody tr,
	table.purchased-tips-history tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
	}

	table.purchased-tips-history thead {
		display: none;
	}

	table.purchased-tips-history thead tr th {
		width: 33%;
		float: left;
	}

	table.purchased-tips-history tbody tr {
		padding: 5px 0px;
	}

	table.purchased-tips-history tbody tr td {
		padding: 5px 10px 5px;
		line-height: 11pt;
	}

	table.purchased-tips-history tbody tr td:nth-child(1),
	table.purchased-tips-history tbody tr td:nth-child(2),
	table.purchased-tips-history tbody tr td:nth-child(3) {
		width: 100%;
		text-align: left;
	}

	table.purchased-tips-history tbody tr td:nth-child(4),
	table.purchased-tips-history tbody tr td:nth-child(5),
	table.purchased-tips-history tbody tr td:nth-child(6) {
		width: 33%;
		float: left;

	}

	table.purchased-tips-history tbody tr td span.header {
		display: inline-block;
		margin-right: 5px;
		text-transform: capitalize;
	}

	table.purchased-tips-history tbody tr td span {
		padding: 0;
		background: none;
	}

	table.purchased-tips-history tbody tr td a.tips-history {
		margin: 0 0;
	}

	table.purchased-bundle-history,
	table.purchased-bundle-history thead,
	table.purchased-bundle-history thead tr,
	table.purchased-bundle-history thead tr th,
	table.purchased-bundle-history tbody,
	table.purchased-bundle-history tbody tr,
	table.purchased-bundle-history tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	table.purchased-bundle-history thead {
		display: none;
	}

	table.purchased-bundle-history thead tr th {
		float: left;
		width: 33%;
	}

	table.purchased-bundle-history thead tr th:last-child {
		display: none;
	}

	table.purchased-bundle-history tbody tr {
		padding: 10px 0px;
	}

	table.purchased-bundle-history tbody tr td {
		float: left;
		width: 33%;
		padding: 5px 10px;
	}

	table.purchased-bundle-history tbody tr td:nth-child(1),
	table.purchased-bundle-history tbody tr td:nth-child(2),
	table.purchased-bundle-history tbody tr td:nth-child(3) {
		width: 100%;
		text-align: left;
	}

	table.purchased-bundle-history tbody tr td:nth-child(4),
	table.purchased-bundle-history tbody tr td:nth-child(5),
	table.purchased-bundle-history tbody tr td:nth-child(6) {
		width: 33%;
		float: left;
		text-align: left;
	}

	table.purchased-bundle-history tbody tr td:nth-child(4) span.header,
	table.purchased-bundle-history tbody tr td:nth-child(5) span.header,
	table.purchased-bundle-history tbody tr td:nth-child(6) span.header {
		display: block;
		margin-right: 5px;
	}

	table.purchased-bundle-history tbody tr td>span {
		padding: 0;
		background: none;
	}

	table.purchased-bundle-history tbody tr td span.header {
		display: block;
		text-transform: capitalize;
		line-height: 12pt;
	}

	table.purchased-bundle-history tbody tr td:last-child {
		width: 100%;
		height: auto;
		padding-top: 10px;
	}


	table.purchased-credit-history,
	table.purchased-credit-history thead,
	table.purchased-credit-history thead tr,
	table.purchased-credit-history thead tr th,
	table.purchased-credit-history tbody,
	table.purchased-credit-history tbody tr,
	table.purchased-credit-history tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	table.purchased-credit-history thead {
		display: none;
	}

	table.purchased-credit-history thead tr th {
		float: left;
		width: 33%;
	}

	table.purchased-credit-history tbody tr {
		padding: 10px 0px;
	}

	table.purchased-credit-history tbody tr td {
		display: block;
		position: relative;
		padding: 5px 10px;
	}

	table.purchased-credit-history tbody tr td:nth-child(1),
	table.purchased-credit-history tbody tr td:nth-child(2),
	table.purchased-credit-history tbody tr td:nth-child(3) {
		width: 100%;
	}

	table.purchased-credit-history tbody tr td:nth-child(4),
	table.purchased-credit-history tbody tr td:nth-child(5),
	table.purchased-credit-history tbody tr td:nth-child(6) {
		width: 33%;
		float: left;
	}

	table.purchased-credit-history tbody tr td span.header {
		display: inline-block;
		margin-right: 5px;
		text-transform: capitalize;
	}

	table.purchased-credit-history tbody tr td span {
		padding: 0;
		background: none;
	}

	table.bundletips-purchased-detail thead {
		display: none;
	}

	table.bundletips-purchased-detail,
	table.bundletips-purchased-detail tbody,
	table.bundletips-purchased-detail tbody tr,
	table.bundletips-purchased-detail tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	table.bundletips-purchased-detail tbody tr {
		margin-bottom: 20px;
		padding-bottom: 10px;
		border-bottom: 3px solid #5c5d75
	}

	table.bundletips-purchased-detail tbody tr td {
		height: 66px;
		padding: 20px 10px 0px 0px;
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(1),
	table.bundletips-purchased-detail tbody tr td:nth-child(3),
	table.bundletips-purchased-detail tbody tr td:nth-child(5) {
		width: 34%;
		float: left;
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(2),
	table.bundletips-purchased-detail tbody tr td:nth-child(4) {
		width: 66%;
		float: left;
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(6),
	table.bundletips-purchased-detail tbody tr td:nth-child(7) {
		width: 33%;
		float: left;
	}

	table.bundletips-purchased-detail tbody tr td:before {
		position: absolute;
		top: 0;
		left: 0;
		font-size: 9pt;
		color: #898989;
		text-transform: uppercase;
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(1):before {
		content: "date";
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(2):before {
		content: "match";
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(3):before {
		content: "betting type";
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(4):before {
		content: "tip";
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(5):before {
		content: "odds";
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(6):before {
		content: "result";
	}

	table.bundletips-purchased-detail tbody tr td:nth-child(7):before {
		content: " profits";
	}

	table.bundletips-purchased-detail tbody tr td span.result {
		width: 100%;
		max-width: 150px;
	}

	.notification ul li {
		text-align: left;
	}
}

@media only screen and (max-width: 667px) {

	.blog-left {
		width: 100%;
		float: none;
	}

	.blog-right {
		display: none;
	}

	.footer-sitemap {
		width: 50%;
	}

	.footer-gadget {
		display: block;
	}

	.footer-left {
		padding-bottom: 20px;
	}

	.footer-left,
	.footer-right {
		display: block;
		width: 100%;
	}

	.blog-upper-left {
		width: 100%;
		float: none;
		padding-right: 0;
		padding-bottom: 30px;
	}

	.blog-upper-right {
		width: 100%;
		float: none;
		overflow: hidden;
	}

	.news-upper-left {
		width: 100%;
		padding-right: 0;
	}

	.news-upper-right {
		width: 100%;
		margin-top: 20px;
	}

	.tispterprofile-servicetype ul {
		float: none;
		display: block;
		width: 100%;
		margin: 10px 0px 20px;
		padding-bottom: 30px;
	}

	.tispterprofile-servicetype ul:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.country-tips-ranking ul li {
		width: 100%;
		float: none;
	}

	.country-tips-ranking ul li:nth-child(odd) {
		padding-right: 0;
	}

	.country-tips-ranking ul li:nth-child(even) {
		padding-left: 0;
	}

	table.performancetable>thead>tr>th>span {
		display: block;
		width: 100%;
		float: none;
		margin-bottom: 10px;
	}


	table.dashboard-runningtips tbody tr td .date-bettingtype p b {
		display: block;
		margin-left: 0;
		margin-top: 5px;
	}

	table.dashboard-runningtips,
	table.dashboard-runningtips tbody,
	table.dashboard-runningtips tbody tr,
	table.dashboard-runningtips tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
	}

	table.bundle-subscribed-table,
	table.bundle-subscribed-table tbody,
	table.bundle-subscribed-table tbody tr,
	table.bundle-subscribed-table tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
	}



	table.transaction-history-table,
	table.transaction-history-table tbody,
	table.transaction-history-table tbody tr,
	table.transaction-history-table tbody tr td {
		display: block;
		width: 100%;
		overflow: hidden;
	}

	table.transaction-history-table thead {
		display: none;
	}



	table.transaction-history-table tbody tr {
		padding-top: 10px;
	}

	table.transaction-history-table tbody tr td {
		float: left;
		width: 33%;

		padding: 10px 10px;

	}

	table.transaction-history-table tbody tr td:nth-child(1),
	table.transaction-history-table tbody tr td:nth-child(2),
	table.transaction-history-table tbody tr td:nth-child(3) {
		display: block;
		width: 100%;
		padding: 5px 10px;
	}

	table.transaction-history-table tbody tr td i {
		display: inline-block;
		margin-right: 5px;
		color: #898989;
	}

	table.transaction-history-table tbody tr td span {
		display: inline-block;
	}


}

@media only screen and (max-width: 640px) {
	.match-selection {
		float: none;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.responsive-cover {
		padding-right: 80px;
		width: 100%;
		padding-left: 10px;
	}

	.live-table {
		position: relative;
	}

	.live-table div.match-link {
		float: left;
		width: 100%;
		padding-bottom: 10px;
	}

	.live-table div.match-result {
		float: left;
	}

	.live-table div.match-status {
		float: left;
	}

	.live-table div.match-link ul {
		overflow: hidden;
	}

	.live-table div.match-link ul li {
		margin: 0px 10px 5px 0px;
	}

	.live-table div.event {
		max-width: 100%;
		padding-right: 80px;
	}

	.daterange-content {
		width: 280px;
		height: 300px;
		overflow-y: auto;
	}


	/* width */
	.daterange-content::-webkit-scrollbar {
		width: 5px;
	}

	/* Track */
	.daterange-content::-webkit-scrollbar-track {
		background: #10122b;

	}

	/* Handle */
	.daterange-content::-webkit-scrollbar-thumb {
		background: #2bb7ad;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	/* Handle on hover */
	.daterange-content::-webkit-scrollbar-thumb:hover {
		background: #555;
	}

	.daterange-content .start-calendar,
	.daterange-content .end-calendar {
		display: block;
		width: 100%;
		float: none;
		border-right: none;
		padding: 20px 0px;
	}

	.daterange-dayspick ul li {
		width: 100%;
		margin: 10px 0px;
	}

	.daterange-content .start-calendar {
		border-bottom: 1px solid #5c5d75;
	}

	/* video responsive   */
	.video-series-content-slot {
		width: 48%;
	}

	.video-series-content-slot {
		margin: 0;
	}

	.video-series-content {
		justify-content: space-between;
	}

	.top-head{
		flex-direction: column;
		align-items: initial;
	}

	.top-head-left {
		width: 100%;
	
	}

	.top-head-right{
		width: 100%;
		padding-bottom: 56.25%;
	}


	.top-head-title{
		padding-bottom:20px;
	}

	.video-series-title{
		font-size: 14px;
	}

	.video-title {
		font-size: 14px; 
	}

	.video-date{
		font-size: 12px;
	}




}

@media only screen and (max-width: 600px) {

	ul.others-blog>li ul.current-blog-cat {
		height: auto;
	}

	.top-action-header.beforelogin ul li.top-action-login,
	.top-action-header.beforelogin ul li.top-action-register,
	.top-action-header.afterlogin ul li.mydashboard {
		display: none;
	}

	.top-action-header.beforelogin ul,
	.top-action-header.afterlogin ul {
		width: 37px;
	}

	table.today-tips,
	table.today-tips thead,
	table.today-tips thead tr,
	table.today-tips thead tr th,
	table.today-tips tbody,
	table.today-tips tbody tr,
	table.today-tips tbody tr td {
		display: block;
		width: 100% !important;
		overflow: hidden;
	}

	table.today-tips tbody tr td {
		padding: 15px 10px;
	}

	table.today-tips tbody tr td .logintoview {
		float: none;
		overflow: hidden;
	}

	table.today-tips tbody tr td .logintoview .buythistips {
		width: 100%;
		float: none;
	}

	table.today-tips tbody tr td .logintoview a {
		float: right;
	}


	.subscribe-content {
		background: url(../images/newsletter.png) no-repeat bottom right;
	}


	ul.others-blog li .blog-content {
		padding: 10px 10px 10px 10px;
		min-height: auto;
	}


	ul.paymentmethod li .method-cover {
		display: block;
	}

	ul.paymentmethod li .method-cover .method-image,
	ul.paymentmethod li .method-cover .method-content {
		display: block;
		width: 100%;

		border-radius: 10px 10px 0px 0px;
		-moz-border-radius: 10px 10px 0px 0px;
		-ms-border-radius: 10px 10px 0px 0px;
		-o-border-radius: 10px 10px 0px 0px;
		-webkit-border-radius: 10px 10px 0px 0px;
	}

	ul.paymentmethod li .method-cover .method-content {
		display: block;
		width: 100%;
		height: auto;
		padding: 20px 20px;

		border-radius: 0px 0px 10px 10px;
		-moz-border-radius: 0px 0px 10px 10px;
		-ms-border-radius: 0px 0px 10px 10px;
		-o-border-radius: 0px 0px 10px 10px;
		-webkit-border-radius: 0px 0px 10px 10px;
	}

	ul.paymentmethod li .method-detail {
		padding: 20px 0px 0px 0px;
	}

	.country-selection {
		padding: 10px 20px;
	}

	.bank-selection {
		padding: 0xp 20px;
	}


	.team-lineup-home,
	.team-lineup-away {
		display: block;
		width: 100%;
		float: none;
	}

	.team-lineup-middle {
		display: none;
	}

	ul.livescore-select {
		text-align: center;
	}

	ul.livescore-select li {
		vertical-align: top;
	}

	ul.livescore-select li a {
		border-right: none;
		margin: 0 auto;
		float: none;
		padding: 15px 25px 5px;
	}

	.news-bottompart-left {
		display: block;
		padding-right: 0;
		width: 100%;
	}

	.news-bottompart-right {
		display: block;
	}

	ul.in-cart-item li .cart-item .event-match {
		padding: 3px 0px;
	}

	ul.in-cart-item li .cart-item .event-match p b {
		display: block;
		margin-left: 0;

	}

	ul.in-cart-item>li .item-price span {
		text-align: center;
		line-height: 15pt;
		padding-top: 10px;
	}

	ul.in-cart-item>li .item-price span b {
		display: block;
		text-align: center;
		margin-left: 0;
	}

	ul.in-cart-item>li .cart-item {
		height: auto;
	}

	ul.in-cart-item>li .item-price {
		border-right: none;
	}

	.tipsterprofile-info-cover {
		display: block;
	}

	.tipsterprofile-info-image {
		display: block;
		margin: 0 auto;
	}

	.tipsterprofile-info-basicstat {
		display: block;
		width: 100%;
		padding-left: 0;
	}

	.tipsterprofile-info-basicstat ul.tipster-stat {
		text-align: center;
	}

	.tipsterprofile-info-basicstat ul.tipster-stat li {
		margin: 0 10px 20px !important;
	}

	.bundletipster-package-selection .buythisbundle a {
		margin: 8px auto !important;
		display: block;
		width: 100%;
		max-width: 300px;
		line-height: 13pt;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance li {
		margin: 0 0 10px 0px;
		display: block;
		width: 49%;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance li:nth-child(odd) {
		float: left;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance li:nth-child(even) {
		float: right;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li:nth-child(1) {
		border-right: none;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li p b {
		width: 112px;
	}

	.tipster-profile-performance-summary ul li .hiddensummary ul.performance-games li {
		padding: 7px 0px 5px;
		display: block;
	}


	table.tips-purchased-detail thead {
		display: none;
	}

	table.tips-purchased-detail,
	table.tips-purchased-detail tbody,
	table.tips-purchased-detail tbody tr,
	table.tips-purchased-detail tbody tr td {
		display: block;
		position: relative;
		overflow: hidden;
		width: 100%;
	}

	table.tips-purchased-detail tbody tr {
		margin-bottom: 20px;
	}

	table.tips-purchased-detail tbody tr td {
		width: 50%;
		float: left;
		height: 60px;
		padding: 15px 10px 15px 0px;
		text-align: left !important;
	}

	table.tips-purchased-detail tbody tr td:nth-child(3) {
		height: auto;
		padding-bottom: 20px;
		min-height: 50px;
	}

	table.tips-purchased-detail tbody tr td .tipster-link a {
		text-align: left;
	}

	table.tips-purchased-detail tbody tr td b {
		padding-top: 0;
	}

	table.tips-purchased-detail tbody tr td:last-child {
		width: 100%;
		padding-top: 20px;
	}

	table.tips-purchased-detail tbody tr td span.result {
		width: 100%;
		max-width: 150px;

	}

	table.tips-purchased-detail tbody tr td:before {
		position: absolute;
		left: 0;
		top: 0;
		font-size: 9pt;
		color: #898989;
		text-transform: uppercase;
	}

	table.tips-purchased-detail tbody tr td:nth-child(1):before {
		content: "tipster";
	}

	table.tips-purchased-detail tbody tr td:nth-child(2):before {
		content: "betting type";
	}

	table.tips-purchased-detail tbody tr td:nth-child(3):before {
		content: "event";
	}

	table.tips-purchased-detail tbody tr td:nth-child(4):before {
		content: "price";
	}

	table.tips-purchased-detail tbody tr td:nth-child(5):before {
		content: "result";
	}

	.personal-info-form ul li,
	.changepassword ul li {
		width: 100% !important;
		float: none !important;
	}

	.profile-setting-form {
		padding: 20px 20px;
	}

}

@media only screen and (max-width: 550px) {
	table.performancetable tbody tr td .date-bettingtype p b {
		display: block;
		margin-left: 0;
		margin-top: 5px;
	}






	.message-top-cover {
		padding: 20px 10px;
	}

	.message-send .message-content {
		margin-left: 20px;
		margin-right: 20px;
	}

	.message-received .message-content {
		margin-right: 20px;
		margin-left: 20px;
	}
}


@media only screen and (max-width: 500px) {
	.footer-sitemap {
		width: 100%;
		float: none;
	}

	.cta-banner-content.second-content form ul li {
		float: none !important;
		width: 100% !important;
	}

	table.today-tips tbody tr td .logintoview ul li,
	table.today-tips tbody tr td .logintoview a,
	table.today-tips tbody tr td .logintoview input[type=submit],
	.buythisbundle input[type=submit],
.tipster_detail_subscription input[type=submit],
table.dashboard-runningtips>tbody>tr>td input[type=submit]	{
		width: 100%;
	}

	span.close-subscribe {
		top: 20px;
	}

	.subscribe-content {
		min-height: auto;
		height: 70%;
		overflow: hidden;
		overflow-y: auto;
	}

	.subscribe-content .h1 {
		padding-right: 10px;
	}

	.subscribe-email {
		width: auto;
		padding: 20px 20px;
	}

	.toptipster-weekmonth-list .pos {
		width: 20%;
	}

	.toptipster-weekmonth-list .tipsterprofile {
		width: 80%;
	}

	.toptipster-weekmonth-list .followbutton {
		width: 100%;
		margin-top: 10px;
	}



	/*leaderboard-table responsive*/
	table.leaderboard-table,
	table.leaderboard-table thead,
	table.leaderboard-table thead tr,
	table.leaderboard-table thead tr th,
	table.leaderboard-table tbody,
	table.leaderboard-table tbody tr,
	table.leaderboard-table tbody tr td {
		display: block;
		width: 100%;
	}

	table.leaderboard-table tbody tr td .followbutton {
		float: none;
		margin: 0 auto;
	}

	table.leaderboard-table tbody tr td .follow-button,
	table.leaderboard-table tbody tr td .unfollow-button {
		margin: 0 auto;
	}

	table.leaderboard-table thead tr th select {
		float: none;
	}

	ul.tipster-leaderboard-profile>li:first-child {
		max-width: 100%;
		margin-right: 0;
		padding-bottom: 10px;
	}


	ul.tipster-leaderboard-profile>li {
		display: block;
	}


	ul.odds-hits-profits-roi {
		overflow: hidden;
	}

	ul.odds-hits-profits-roi li {
		display: block;
		width: 49%;
		margin: 0px 0px 10px;
	}

	ul.odds-hits-profits-roi li:nth-child(odd) {
		float: left;
	}

	ul.odds-hits-profits-roi li:nth-child(even) {
		float: right;
	}

	table.leaderboard-table tbody tr td:last-child {
		padding-top: 0;
	}

	table.leaderboard-table tbody tr td .tipster-link {
		text-align: Center;
	}

	table.leaderboard-table thead tr th a.viewall,
	table.main-table.today-tips thead tr th a.viewall {
		float: none;
		display: block;
		width: 100%;
		max-width: 170px;
		margin-top: 5px;
	}

	/*leaderboard-table responsive*/

	table.dashboard-mytipster tbody tr td .unfollow-button {
		width: 100%;
		padding: 10px 10px;
	}

	.cart-checkout a.checkout-promo-code {
		display: inline-block;
		margin-bottom: 20px;
		float: none;
	}

	.cart-checkout .cart-total {
		width: 100%;
	}

	.contactus-form ul li {
		width: 100% !important;
		float: none !important;
	}

	.faq-submission-input {
		padding: 0px 10px;
	}

	.faq-submission-right ul.social-login li {
		float: none;
		width: 100%;
		margin-bottom: 10px;
	}

	.faq-submission-right ul.user-login li {
		width: 100% !important;
		float: none !important;
	}

	.faq-submission-right ul.user-login li:first-child {
		margin-bottom: 10px;
	}

	.odds-link ul {
		overflow: hidden;
	}

	.odds-link ul li {
		display: block;
		float: left;
		width: 32%;
		margin: 10px 1%;
	}

	.odds-link ul li:nth-child(1),
	.odds-link ul li:nth-child(4) {
		margin-left: 0;
	}

	.odds-link ul li:nth-child(3),
	.odds-link ul li:nth-child(6) {
		margin-right: 0;
	}

	.odds-link ul li span,
	.odds-link ul li a {
		width: 100%;
	}

	ul.oddstable>li {
		padding: 10px 10px;
	}

	span.match-result ul {
		padding-top: 15px;
		overflow: hidden;
		width: 100%;
		display: block;
	}

	span.match-result ul li.tip {
		width: 100%;
		text-align: center;
		clear: both;
	}

	span.match-result ul li {
		padding: 10px 10px;
	}

	span.match-result ul li:nth-child(2) {
		width: 32%;
		float: left;
		display: block;
		margin: 10px 1% 10px 0px;
	}

	span.match-result ul li:nth-child(3) {
		width: 32%;
		float: left;
		display: block;
		margin: 10px 1%;
	}

	span.match-result ul li:nth-child(4) {
		display: block;
		width: 32%;
		float: left;
		margin: 10px 0px 10px 1%;
	}

	.rpts-table>ul>li span.match-result {
		float: none;
	}

	.mytipsperformance .rpts-table>ul>li {
		padding: 30px 0px;
	}

	.mytipsperformance-table .rpts-table>ul>li:first-child {
		padding-top: 0;
	}

	.tipsterprofile-top-header .tipstername b {
		display: block;
		text-align: center;
		margin-left: 0;
		margin-top: 10px;
		width: 170px;
	}

	.tipsterprofile-top-header ul.sharesocial li:first-child {
		display: none;
	}

	table.dashboard-runningtips tbody tr td .logintoview ul li {
		width: 100%;
	}

	table.dashboard-runningtips tbody tr td .logintoview {
		float: none;
	}

	.bundle-subscribed-result {
		display: block;
		float: none;
	}

	.bundle-subscribed-result ul li:nth-child(odd) {
		display: block;
		float: left;
		width: 49%;
		margin: 5px 0px;
	}

	.bundle-subscribed-result ul li:nth-child(even) {
		display: block;
		float: right;
		width: 49%;
		margin: 5px 0px;
	}

	table.bundle-subscribed-table tr td:last-child {
		padding-left: 0;
	}

	.bundle-subscribed-result ul li b {
		font-size: 9pt;
	}

	ul.dashboard-myaccount-link li {
		display: block;
		float: none !important;
		width: 100% !important;

	}

	ul.dashboard-myaccount-link li a {
		padding: 10px 10px;
		height: auto;
	}

	table.purchased-tips-history thead {
		display: none;
	}



	span.message-sendtime {
		display: block;
		margin-left: 0;
		padding-top: 5px;
	}

}

@media only screen and (max-width: 480px) {

	.tipsterdata {
		width: 100%;
		border-right: none !important;
		border-bottom: 1px solid #5c5d75;
	}

	.latest-news ul li {
		float: none;
		width: 100%;
		margin: 0 0 20px;
	}

	.blogdetails h1,
	.blogdetails .h1 {
		font-size: 15pt;
		line-height: 20pt;
	}

	.next-prev-blog ul li {
		width: 100%;
		display: block;
		float: none;
		margin: 10px 0px;
		text-align: left !important;
	}

	.next-prev-blog ul li a {
		width: 100%;
		float: none !important;
		text-align: left !important;
	}

	.next-prev-blog ul li a span {
		text-align: left;
	}

	.next-prev-blog ul li a span {
		max-width: 100%;
	}

	.tipster-profile-running-tips table.today-tips .buythisbundle {
		width: 100%;
		float: none;
	}

	.tipster-profile-running-tips table.today-tips .buythisbundle a {
		width: 100%;
		margin: 5px 0px !important;
	}

	.rpts-table>ul>li span.match-detail {
		width: 100%;
	}

	table.dashboard-runningtips tbody tr td .date-bettingtype p,
	span.match-detail .date-bettingtype p {
		display: block;
		overflow: hidden;
		padding-top: 8px;
	}

	table.dashboard-runningtips tbody tr td .date-bettingtype p b,
	span.match-detail .date-bettingtype p b {
		float: right;
		margin-top: -5px;
	}

	.livescoregame-list ul li span.live-title .standing-select {
		display: block;
		float: none;
		overflow: hidden;
		clear: both;
		padding-top: 10px;
	}

	.livescoregame-list ul li span.live-title .live-select {
		float: right;
		margin-top: -5px;
	}

	.banner-aboutus {
		height: 110px;
		background-size: contain !important;
		margin-bottom: 10px;
	}

	.odds-link ul li span {
		text-align: center;
	}

	table.today-tips tbody tr td .date-bettingtype {
		overflow: hidden;
	}

	table.today-tips tbody tr td .date-bettingtype p {
		display: block;
		padding-top: 5px;
	}

	table.today-tips tbody tr td .date-bettingtype p b {
		float: right;
		margin-left: 0;
		margin-top: -5px;
	}

	table.performancetable tbody tr td .date-bettingtype {
		overflow: hidden;
		padding-top: 5px;
	}

	table.performancetable tbody tr td .date-bettingtype p {
		width: 100%;
	}

	table.performancetable tbody tr td .date-bettingtype p b {
		float: right;
		margin-top: -5px;
	}

	table.performancetable tbody tr {
		padding-bottom: 5px;
	}

	.tipsterprofile-info-basicstat {
		position: relative;
	}

	.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(2) {
		position: absolute;
		top: -29px;
		right: 0;
		width: 110px;
		margin: 0 0 !important;
		text-align: right;
	}

	.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(2) p {
		padding: 0 0;
		color: #fff;
		display: inline-block;
		margin-right: 5px;
		font-size: 11pt;
	}

	.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(2) span {
		padding: 0;
		margin: 0;
		display: inline-block;
		background: none;
		color: #acacac;
		font-size: 11pt;
		width: auto;
	}



	.tipsterprofile-info-image {
		width: auto;
	}

	.tipsterprofile-info-image span {
		margin: 0 0;
		padding: 15px 15px;
		display: inline-block;
		width: 100%;
		max-width: 200px;
	}

	.tipsterprofile-top-body {
		padding: 20px 20px;
	}

	.tipsterprofile-top-header {
		text-align: center;
	}

	.tipsterprofile-top-header .tipstername b {
		margin: 10px auto 0px;
	}

	.tipsterprofile-top-header ul.sharesocial {
		text-align: center;
	}

	.tipsterprofile-top-header ul.sharesocial li {
		margin: 5px 10px 5px 10px;
	}

	.homepage-gadget-right {
		height: auto;
	}

	.toptipster-content {
		height: auto;
	}

	ul.toptipster-list {
		height: auto;
	}

	ul.toptipster-list li .followhome {
		right: 5px;
	}

	.successpopup .notice-popup-content p a {
		border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		-webkit-border-radius: 3px;
		font-family: "Lato-Light";
		text-align: center;
		text-transform: uppercase;
		display: block;
		padding: 10px 20px !important;
		font-size: 10pt;
		position: relative;
		border: none;
		cursor: pointer;
		width: 100%;
		max-width: 250px;
		background: #ed3657;
		color: #fff;
		margin: 15px auto 0px;
	}


	.cta-banner {
		min-height: 300px;
	}

	.cta-banner-content.first-content {
		text-align: center;
		padding: 50px 30px;
	}

	.cta-banner-content.first-content .h1 {
		font-size: 22pt;
		font-family: "Lato-Black";
	}

	.cta-banner-content.first-content a {
		display: block;
		width: 100%;
	}

	.dashboard-profile-picture {
		float: none;
		display: block;
		width: 100%;
	}

	.dashboard-profile-picture ul li {
		margin: 10px auto;
		display: block;
		text-align: center;
	}

	.dashboard-profile-picture ul li span {
		margin: 0 auto;
	}

	.dashboard-profile-picture ul li a {
		margin: 0 auto;
	}

	table.main-table.dashboard-runningtips .buythistips,
	table.main-table.dashboard-runningtips .buythisbundle {
		width: 100%;
	}

	table.main-table.dashboard-runningtips .buythistips a,
	table.main-table.dashboard-runningtips .buythisbundle a {
		width: 100%;
		max-width: 100%;
		display: block;
		margin: 5px 0px !important;
	}

	table.main-table.dashboard-runningtips a.addtocart {
		width: 100%;
		max-width: 100%;
	}

	ul.in-cart-item>li .cart-item {
		display: block;
		width: 80%;
		float: none;
	}

	ul.in-cart-item>li .item-price {
		display: block;
		width: 80%;
		float: none;
		border-right: 1px solid #44455d;
	}
	
	ul.in-cart-item>li{
		flex-wrap:wrap;
	}

	ul.in-cart-item>li .remove-item {
		float: none;
		position: absolute;
		top: 50%;
		right: 20px;
		width: 40px;
		height: 40px;
		transform: translateY(-50%);
	}

	ul.in-cart-item li .cart-item .tipster-link a {
		width: 90%;
	}

	ul.in-cart-item li .cart-item .event-match {
		padding: 5px 0px;
	}

	ul.in-cart-item li .cart-item .date-bettingtype p b {
		display: block;
		margin-left: 0;
		margin-top: 5px;
	}

	.empty-cart span {
		float: none;
		margin: 0 auto;
	}


	.tipster-profile-performance-summary>ul>li>span {
		padding: 30px 20px;
	}

	.tipster-profile-performance-summary ul li .hiddensummary {
		padding: 0px 20px 30px;
	}

	ul.highestrate li {
		min-width: auto;
		margin-right: 0px;
		margin-bottom: 40px;
		text-align: center;
	}

	ul.highestrate li .highestbadge {
		padding-right: 0;
	}

	ul.topoftheweek li .awardstime {
		display: block;
		margin-top: 10px;
	}

	ul.topoftheweek li {
		margin: 0 auto 40px;
		text-align: center;
		display: block;
	}

	ul.topoftheweek li .awardsbadge {
		margin-right: 0;
	}

	table.performancetable,
	table.performancetable>tbody,
	table.performancetable>tbody>tr,
	table.performancetable>tbody>tr>td {
		display: block;
		width: 100%;
		overflow: hidden;
	}

	table.performancetable>thead,
	table.performancetable>thead>tr,
	table.performancetable>thead>tr>th {
		display: block;
		width: 100%;
	}

	table.performancetable thead tr th .daterange-wrapper {

		margin-bottom: 10px;
	}

	.performancetips-result ul li {
		width: 110px;
	}

	.dashboard-profile-status ul li:nth-child(odd) {
		display: block;
		width: 49%;
		float: left;
		margin: 0 0 10px;
	}

	.dashboard-profile-status ul li:nth-child(even) {
		display: block;
		width: 49%;
		float: right;
		margin: 0 0 10px;
	}

	table.bundle-subscribed-table tbody tr td .tipster-link,
	table.dashboard-runningtips tbody tr td .tipster-link {
		white-space: normal;
	}

	table.bundle-subscribed-table tbody tr td .tipster-link a,
	table.dashboard-runningtips tbody tr td .tipster-link a {
		width: 90%;
	}

	.toptipster-weekmonth-list .tipsterprofile p i {
		display: block;
		width: 140px;
		text-align: center;
	}

	.subscribe-content .h1 {
		padding-left: 50px;
	}

	.news-bottom-right-content:nth-child(1) {
		display: none;
	}

	.news-bottompart-right {
		width: 100%;
	}

	ul.news-right-followus li:nth-child(odd) {
		width: 49%;
		float: left;
	}

	ul.news-right-followus li:nth-child(even) {
		width: 49%;
		float: right;
	}


	.news-right-subscribe input[type="submit"] {
		width: 100%;
	}




	.blog-upperpart a.readmore {
		display: block;
	}

	table.main-table.today-tips select.select-dropdown {
		float: left !important;
		margin-top: 10px;
	}

	table.today-tips tbody tr td .event-match p i {
		display: block;
	}

	table.today-tips tbody tr td .event-match p b {
		margin-bottom: 0;
	}

	.dashboard-others-link ul li {
		min-width: auto;
		margin: 0 0 10px 0px;
		display: block;
		width: 100%;
		clear: both;
	}

	.dashboard-others-link ul li:nth-child(1) {
		display: none;
	}

	.dashboard-others-link ul li:nth-child(3) {
		display: block;
		width: 100%;
		clear: both;
	}

	.dashboard-others-link ul li:nth-child(3) a {
		color: #898989;
	}

	.dashboard-makedeposit a {
		width: 100%;
		margin-top: 10px;
	}

	.dashboard-makedeposit {
		padding: 20px 20px;
		width: 100%;
	}

	table.dashboard-runningtips tbody tr td .event-match p i {
		display: block;
	}

	table.dashboard-runningtips tbody tr td .event-match p b {
		margin-bottom: 0px;
	}

	span.match-detail .event-match p b {
		display: block;
	}

	ul.livescore-select li a {

		padding: 15px 10px 5px;
	}

	.livescore-selectdate .select-dropdown {
		float: left;
	}

	.live-table div.match-link ul li {
		display: block;
		float: left;
		margin: 0px 1% 10px;
		width: 32%;
	}

	.live-table div.match-link ul li:first-child {
		margin-left: 0;
	}

	.live-table div.match-link ul li:last-child {
		margin-right: 0;
	}

	.live-table div.match-link {
		padding-bottom: 0;
	}

	.live-table div.match-result {
		width: 66%;
		margin-right: 1%;
	}

	.live-table div.match-status {
		width: 32%;
		margin-left: 1%;
		padding-right: 0;
	}

	.live-table div.match-link ul {
		margin-bottom: 0;
	}

	.live-table div.match-link ul li a {
		width: 100%;
	}

	.responsive-cover {
		position: relative;
		padding-right: 55px;
	}

	.responsive-cover:before {
		content: "";
		position: absolute;
		right: 45px;
		top: 0;
		height: 100%;
		width: 1px;
		background: #44455d;
	}

	.odd-value ul li {
		display: block;
		width: 100%;
		margin: 5px 0px 5px 0px;
	}

	ul.oddcompare>li span.odd-value {
		float: none;
		display: block;
		width: 100%:
	}

	ul.oddcompare>li span.odd-provider {
		float: none;
		width: 100%;
		display: block;
		overflow: hidden;
	}

	.odd-value ul li p {
		text-align: center;
		overflow: hidden;
	}

	.odd-value ul li p b {
		display: block;
		width: 33%;
		float: left;
		margin: 10px 0 0;
	}

	ul.oddcompare>li span.odd-provider img {
		float: left;
		padding-bottom: 0;
	}

	ul.oddcompare>li span.odd-provider a {
		float: right;
	}

	.standing-result ul {
		overflow: hidden;
	}

	.standing-result ul li {
		display: block;
	}

	.standing-result ul li:nth-child(1) {
		display: block;
		float: left;
		width: 22%;
		text-align: left;
		margin-left: 0;
	}

	.standing-result ul li:nth-child(1) b,
	.standing-result ul li:nth-child(2) b,
	.standing-result ul li:nth-child(1) p,
	.standing-result ul li:nth-child(2) p {
		text-align: left;
	}

	.standing-result ul li:nth-child(2) {
		display: block;
		float: left;
		width: 74%;
		text-align: left;
	}

	.standing-result ul li:nth-child(n+3) {
		padding: 10px 10px;
		width: 22%;
		display: block;
		float: left;
		margin: 0 4% 0 0;
	}

	.standing-result {
		display: block;
		float: none;
		width: 100%;
		clear: both;
	}

	.standing-result ul li:last-child {
		margin-right: 0;
	}

	ul.in-cart-item>li .item-price span b {
		display: inline-block;
		margin-left: 5px;
	}

	table.performancetable thead tr th .select-dropdown {
		float: left;
		width: 155px;
		padding: 8px 30px 8px 10px;
	}

	table.performancetable thead tr th .daterange-wrapper {
		margin-left: 0;
	}

	table.performancetable tbody tr td .event-match p b {
		display: block;
	}

	.creditspackage ul li b {
		display: block;
		text-align: center;
		padding-bottom: 5px;
	}

	.dashboard-myaccount h1.pagetitle span,
	.dashboard-myaccount .h1.pagetitle span {
		display: block;
	}

	.dashboard-myaccount h1.pagetitle i,
	.dashboard-myaccount .h1.pagetitle i {
			
			display: none;
		}

		ul.dashboard-myaccount-link {
			display: none;
		}

		.cta-banner-content.first-content a {
			width: 100%;
		}

		table.purchased-tips-history tbody tr td:nth-child(4) {
			width: 100%;
			float: none;
		}

		table.purchased-tips-history tbody tr td:nth-child(5),
		table.purchased-tips-history tbody tr td:nth-child(6) {
			width: 50%;
		}

		.payment-list-content table,
		.payment-list-content table tr,
		.payment-list-content table tr td {
			display: block;
			width: 100%;
		}

		a.cta-red,
		a.cta-purple {
			margin: 10px auto;
			display: block;
		}

		.video-series-content-slot{
			width: 100%;
		}


	}

	@media only screen and (max-width: 430px) {

		.homepage-gadget-left {
			height: auto;
		}

		.homepage-gadget-left .news-list ul li {
			width: 25%;
			float: left;
		}

		ul.news-image-list {
			float: none;
			width: 100%;
		}

		.homepage-gadget-left .news-list {
			float: none;
			width: 100%;
			height: auto;
		}

		.bundle-subscribed-result ul li {
			display: block;
			float: none !important;
			width: 100% !important;
			margin: 10px 0px !important;
		}

		.dashboard-myaccount-link-content .content-date-select .daterange-wrapper {
			margin-bottom: 10px;
		}


		table.transaction-history-table tbody tr td {
			font-size: 9pt;
		}


		table.purchased-credit-history tbody tr td {
			font-size: 9pt;
			text-align: left;
		}

		.message-bottom-cover input.sub,
		.upload-file {
			width: 100%;
		}

		table.transaction-history-table tbody tr td:nth-child(4) i,
		table.transaction-history-table tbody tr td:nth-child(5) i,
		table.transaction-history-table tbody tr td:nth-child(6) i {
			display: block;
		}


	}

	@media only screen and (max-width: 400px) {
		.tipsterprofile-info-image span {
			max-width: 150px;
		}
	}

	@media only screen and (max-width: 380px) {

		.banner-aboutus {
			height: 80px;
			background-size: contain !important;
			margin-bottom: 0px;
		}

		.tipster-profile-performance-summary ul li .hiddensummary ul.performance li p {
			font-size: 10pt;
		}


		.mytipsperformance .content-date-select .select-dropdown {
			width: 143px;
			padding: 8px 10px 8px 10px;
		}

		.mytipsperformance .content-date-select .daterange-wrapper .select-date-button {
			padding: 0px 35px 0px 10px;
		}
	}

	@media only screen and (max-width: 360px) {

		.tipsterprofile-info-image span {
			width: 130px;
		}

		.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(2) p {
			font-size: 10pt;
		}

		.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(2) span {
			font-size: 10pt;
		}

		.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(1),
		.tipsterprofile-info-basicstat ul.tipster-stat li:nth-child(3) {
			display: block;
			width: 100%;
			margin: 0 0 15px !important;
		}

		ul.in-cart-item>li .remove-item {
			right: 10px;
		}


		ul.toptipster-list li a .toptipster-profile {
			display: block;
			width: 100%;
		}

		ul.toptipster-list li .followhome {
			right: auto;
			left: 50%;
			bottom: 20px;
			top: auto;

			transform: translate(-50%, 0%);
			-moz-transform: translate(-50%, 0%);
			-ms-transform: translate(-50%, 0%);
			-o-transform: translate(-50%, 0%);
			-webkit-transform: translate(-50%, 0%);
		}


		table.performancetable thead tr th .daterange-wrapper,
		table.performancetable thead tr th .select-dropdown {
			float: right;
			width: 100%;
			max-width: 175px;
		}

	}