/* BASE CSS START */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Oswald:200,300,400,500,600,700|Lora:400,700");

body {
	max-width: 100%;
}

.alignleft {
	float: left;
	margin-right: 15px;
}

.alignright {
	float: right;
	margin-left: 15px;
}

.aligncenter {
	display: block;
	margin: 0 auto 15px;
}

a,
a:hover,
a:focus,
button:focus {
	outline: 0 solid !important;
	text-decoration: none;
}

a {
	transition: 0.3s;
	color: #212529;
	cursor: pointer;
}

a:hover {
	color: #212529;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	font-weight: 700;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: "Open Sans", sans-serif;
	overflow-x: hidden;
	position: relative;
	font-size: 15px;
	font-weight: 400;
	scrollbar-width: thin;
	scrollbar-color: #1e2531 #f1f1f1;
}

/* html,
body {
    height: 100%;
} */

/* html.admin-html, body.admin-body {
    height: 100vh;
} */
/* width */
body::-webkit-scrollbar {
	width: 6px;
	height: 7px;
	border-radius: 0;
}

/* Track */
body::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
body::-webkit-scrollbar-thumb {
	background: #1e2531;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
	background: #0d1016;
}

/* ----------------------- */
/* width */
.custom-scrollbar-1,
.custom-scrollbar-2,
.custom-scrollbar-3,
.custom-scrollbar-4,
.live-in-play-carousel-parent,
.betslip-item-list,
.registration-area-step-1 .rs-body,
.chatbox-body,
.live-support-form-input-wrapper,
.ngx-select__choices,
* {
	scrollbar-color: #fff #dadada;
	scrollbar-width: thin;
}

.custom-scrollbar-5 {
	scrollbar-color: #ddd #fff;
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 6px;
	height: 7px;
	border-radius: 0;
}

/* Track */
::-webkit-scrollbar-track {
	background: #dadada;
	border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #fff;
	border-radius: 0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #fff;
	border-radius: 0;
}

.section-padding {
	padding: 80px 0;
}

.purple-megenta-bg-gradient {
	background: #3e233e;
	background: -moz-linear-gradient(45deg, #3e233e 24%, #a31d66 100%);
	background: -webkit-linear-gradient(45deg, #3e233e 24%, #a31d66 100%);
	background: linear-gradient(45deg, #3e233e 24%, #a31d66 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e233e', endColorstr='#a31d66', GradientType=1);
}

.overflow-hidden {
	overflow: hidden !important;
}

.overflow-y-hidden {
	overflow-y: hidden !important;
}

/* BASE CSS END */
/* HEADER AREA CSS START */
.header-area {
	background: #1e2531;
	color: #fff;
	/* border-bottom: 3px solid #a61d67; */
	padding: 10px;
	padding-bottom: 14px;
	transition: 0.3s;
}

.header-bottom-border {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #a61d67;
	left: 0;
	bottom: 0;
}

.header-area.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2000;
	border-bottom: 1px solid;
}

.header-area [class*="col-lg-"],
.header-area [class*="col-md-"] {
	padding-left: 0;
	padding-right: 0;
}

.logo a {
	display: inline-block;
}

.logo img {
	max-height: 45px;
}

.header-time.position-absolute {
	top: 50%;
	transform: translateY(-50%);
}

.main-menu ul li {
	display: inline-block;
	position: relative;
}

.main-menu ul li a {
	color: #fff;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	padding: 15px;
}

.main-menu ul li ul {
	position: absolute;
	left: 56%;
	top: 50px;
	transform: translateX(-50%);
	z-index: 1000;
	text-align: left;
	background: #fff;
	color: #333;
	border-radius: 0;
	width: auto;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.main-menu ul li ul li {
	display: flex;
	position: relative;
	flex-shrink: 0;
	white-space: nowrap;
}

.main-menu ul li ul li a {
	color: #1e2531;
	padding: 7px 15px;
	border-bottom: 1px solid #ddd;
	display: flex;
	width: 100%;
}

.main-menu ul li ul li:last-child a {
	border: none;
}

.main-menu ul li a:hover,
.main-menu ul li.active a,
.main-menu ul li ul li.active a,
.main-menu ul li.active ul li:not(.active) a:hover {
	color: #ffc536;
}

.main-menu ul li.active ul li:not(.active) a {
	color: #1e2531;
}

.main-menu ul li ul:before {
	position: absolute;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 10px solid #fff;
	content: "";
	left: 50%;
	top: -8px;
	transform: translateX(-50%);
}

.main-menu ul li:hover ul {
	opacity: 1;
	visibility: visible;
	top: 35px;
}

.header-right-area ul:not(.dropdown-menu) {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-right-area ul li {
	display: flex;
	margin: 0;
}

.main-menu ul li img {
	max-height: 5px;
}

.sign-up-area a,
.sign-up-area span {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	border: 2px solid #1e2531;
	border-radius: 0;
	transition: 0.3s;
	padding: 2px 20px;
	cursor: pointer;
}

.sign-up-area a.register,
.sign-up-area span.register {
	border-color: #fff;
}

.sign-up-area a.register:hover,
.sign-up-area span.register:hover {
	color: #fff;
	border-color: #14732f;
	background-color: #14732f;
}

.sign-up-area a.sign-in:hover,
.sign-up-area span.sign-in:hover,
.sign-up-area.show span.sign-in {
	color: #ffc536;
}

.language-list .btn {
	background: #0c1422;
	border-radius: 0;
}

.language-list img {
	max-height: 16px;
}

.language-list .btn span {
	margin-left: 4px;
	display: inline-block;
}

.language-list .dropdown-toggle::after {
	display: none !important;
}

.language-list .btn.focus,
.language-list .btn:focus {
	outline: 0;
	box-shadow: none;
}

.language-list .dropdown-menu li {
	display: block;
	margin: 0;
	padding: 5px 10px 8px;
	transition: 0.3s;
}

.language-list .dropdown-menu li:last-child {
	padding-bottom: 8px;
	border-radius: 0;
}

.language-list .dropdown-menu li:hover {
	background: #0c1422;
}

.language-list .dropdown-menu {
	min-width: initial;
	padding: 0;
	width: 70px;
	text-align: center;
}

.language-list .dropdown-menu li a {
	display: block;
}

.gift-box img {
	max-height: 24px;
}

/* HEADER AREA CSS END */
/* COMPANY LOGO AREA CSS START */
.logo-list ul li {
	display: inline-block;
	margin: 0 17px;
}

.logo-list ul li img {
	max-height: 20px;
}

.company-logo {
	padding: 15px 0;
	background: #fff;
}

/* COMPANY LOGO AREA CSS END */
/* FOOTER AREA CSS START */
.footer-area {
	background: #f0f0f0;
	padding: 0px 0;
}
.footer-area-bottom {
	background: #f0f0f0;
	padding: 0px 0;
}

.footer-links h3,
.mobile-apps h3,
.follow-us h3 {
	color: #1e2531;
	font-size: 13px;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.footer-links ul li {
	position: relative;
	margin-bottom: 5px;
}

.footer-links ul li a {
	color: #1e2531;
	font-size: 13px;
	transition: 0.3s;
}

.footer-links ul li a:hover {
	color: #777;
}

.follow-us ul li a {
	display: block;
	font-size: 20px;
	color: #fff;
	transition: .3s;
	padding: 0 5px;
}

.follow-us ul li a:hover {
	color: #FFDF1B;
	opacity: 1;
}

.mobile-apps ul li {
	margin-bottom: 13px;
}

.mobile-apps ul li a {
	display: inline-block;
}

.mobile-apps ul li a:hover {
	opacity: 0.8;
}

.follow-us ul li {
	display: inline-block;
	margin: 0 7px;
}

.follow-us ul li a:hover {
	opacity: 0.8;
}

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

.eighteen-plus h2 {
	font-size: 45px;
	color: #1e2531;
	font-family: "Oswald", sans-serif;
	margin-bottom: 0;
}

.eighteen-plus p {
	color: #1e2531;
	font-size: 13px;
	margin-bottom: 0;
}

.follow-us ul li img {
	max-height: 26px;
}

.mobile-apps h3,
.follow-us h3 {
	margin-bottom: 11px;
}

/* FOOTER AREA CSS END */
/* COPYRIGHT AREA CSS START */
.copyright-text {
	font-size: 13px;
	color: #1e2531;
	margin-left: 20px;
}

.copyright-logo img {
	max-height: 65px;
}

.copyright-area {
	padding: 20px 0;
}

.copyright-area p:last-child {
	margin-bottom: 0;
}

/* COPYRIGHT AREA CSS END */
/* LEFT SIDEBAR AREA CSS START */
.game-content-area,
.admin-template-area {
	padding: 5px 5px;
	background: #c9c9c9;
	height: calc(100vh - 68px) !important;
	min-height: 1px;
}

.left-sidebar,
.right-sidebar {
	padding: 0;
}

.left-sidebar-wrapper {
	display: flex;
	flex-direction: column;
	height: 100% !important;
}

.game-content-area .row,
.admin-template-area .row {
	margin: 0;
}

.left-sidebar-toggle-btn-area {
	position: relative;
	background: #1e2531;
	border-radius: 0;
	padding: 10px;
	cursor: pointer;
	height: 35px;
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* .left-sidebar-toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  max-height: 12px;
} */
.left-sidebar-tab-search-wrapper {
	background: #1e2531;
	margin-top: 8px;
	border-radius: 0;
	padding: 5px;
	margin-bottom: 8px;
	position: relative;
}

.left-sidebar-tab-links ul li {
	display: flex;
	background: #3f444e;
}

.left-sidebar-tab-links ul li a {
	color: #fff !important;
	padding: 3px 8px;
	display: block;
	cursor: pointer;
	min-width: 34px;
	text-align: center;
}

.left-sidebar-tab-links ul li i.zmdi {
	font-size: 18px;
}

.left-sidebar-tab-links ul li img {
	max-height: 10px;
}

.left-sidebar-tab-links ul li a.active {
	background: #4d515a;
}

.left-sidebar-tab-links ul li:first-child,
.left-sidebar-tab-links ul li:first-child a {
	border-radius: 0;
}

.left-sidebar-tab-links ul li:last-child,
.left-sidebar-tab-links ul li:last-child a {
	border-radius: 0;
}

.left-sidebar-tab-links {
	margin-bottom: 5px;
}

.left-sidebar-search-area {
	position: relative;
	background: #fff;
	border-radius: 0;
}

.left-sidebar-search-area i.fas {
	position: absolute;
	top: 50%;
	font-size: 16px;
	transform: translateY(-50%);
}

.left-sidebar-search-area i.fas.fa-search {
	left: 8px;
}

.left-sidebar-search-area i.fas.fa-times {
	right: 8px;
	display: none;
}

.left-sidebar-search-area input[type="search"],
.left-sidebar-search-area input[type="text"] {
	width: 100%;
	border: none;
	padding: 5px;
	border-radius: 0;
	font-size: 13px;
	padding-left: 34px;
}

.favourite-card {
	color: #c9c9c9;
	border-radius: 0;
	padding: 3px;
	cursor: pointer;
	background: #1e2531;
	margin-bottom: 8px;
	position: relative;
}

.favourite-card-header {
	padding: 10px;
}

.favourite-card-body {
	background: #c9c9c9;
	color: #717479;
	text-align: center;
	font-size: 13px;
	padding: 6px;
}

.favourite-card-header[aria-expanded="true"] i.fas.fa-chevron-down {
	display: none;
}

.favourite-card-header[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

.favourite-card-header .number {
	margin-right: 6px;
	font-size: 88%;
}

.favourite-card-header i.fas.fa-star {
	margin-right: 6px;
	display: inline-block;
	font-size: 18px;
}

.sport-card-level-one {
	background: #fff;
	border-radius: 0;
	margin-bottom: 5px;
}

.sport-card-level-one-header img {
	max-height: 24px;
	margin-right: 6px;
}

.sport-card-level-one-header {
	padding: 6px 10px;
	cursor: pointer;
	border-left: 4px solid #999;
	border-radius: 0;
	transition: 0.3s;
	position: relative;
}


/* Create three unequal columns that floats next to each other */
.column-all {
	float: left;
	padding: 3px;
	width: 35px;
	height: 25px;
}

.cleft {
	width: 50%;
}

.cmiddle .cright {
	width: 25%;
}

/* Clear floats after the columns */
.rowc:after {
	content: "";
	display: table;
	clear: both;
}

.sport-card-level-one-header[aria-expanded="true"] {
	border-radius: 0;
}

.sport-card-level-one-header .number {
	margin-right: 8px;
}

.sport-card-level-one-header[aria-expanded="true"] i.fas.fa-chevron-down {
	display: none;
}

.sport-card-level-one-header[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

.sport-card-level-one-body {
	background: #c9c9c9;
	padding: 2px 0;
}

.sport-card-level-two-header {
	background: #dfdfdf;
	padding: 4px 12px;
	cursor: pointer;
	font-size: 13px;
	overflow: hidden;
	padding-left: 25px;
}

.sport-card-level-two-header img {
	max-height: 15px;
	margin-right: 8px;
}

.sport-card-level-two-header .name {
	overflow: hidden;
	width: 80%;
	white-space: nowrap;
	margin-top: 3px;
	text-overflow: ellipsis;
}

.sport-card-level-two-header span {
	float: left;
}

.sport-card-level-two-header[aria-expanded="true"] i.fas.fa-chevron-down {
	display: none;
}

.sport-card-level-two-header[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

.sport-card-level-two-header i.fas.fa-chevron-down,
.sport-card-level-two-header i.fas.fa-chevron-up {
	margin-top: 4px;
	font-size: 16px;
}

.sport-card-level-two-body {
	background: #f5f5f5;
	padding: 5px;
}

.sport-card-level-three {
	background: #ffffff;
	border-radius: 0;
}

.sport-card-level-three-header {
	font-size: 14px;
	padding: 5px;
	cursor: pointer;
	border-radius: 0;
	transition: 0.3s;
}

.sport-card-level-three-header .float-right {
	color: #ffc536;
}

.sport-card-level-three-header ul li:last-child .float-right {
	color: #aeb0b3;
}

.sport-card-level-three-header button {
	color: #aeb0b3;
	background: none;
	border: none;
	cursor: pointer;
}

.sport-card-level-three-header .status {
	color: #14732f;
	font-size: 12px;
}

.sport-card-level-three-header ul li:last-child {
	margin-top: 5px;
}

span.sport-card-level-three-accordion-btn[aria-expanded="true"] i.fas.fa-chevron-down,
span.sport-card-level-three-accordion-btn[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

span.sport-card-level-three-accordion-btn {
	cursor: pointer;
}

.sport-card-level-three-body {
	text-align: center;
	font-size: 13px;
	border-top: 1px solid #c9c9c9;
}

.sport-card-level-three-body .row {
	margin: 0;
}

.sport-card-level-three-body .col {
	padding: 0;
}

.sport-card-level-three-body .row .col {
	border-right: 1px solid #c9c9c9;
}

.sport-card-level-three-body .row .col:last-child {
	border: none;
}

.single-bet-box {
	padding: 10px;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
}

.single-bet-box .goal-number {
	margin-bottom: 6px;
}

.single-bet-box .goal-point {
	color: #014a85;
}

.single-bet-box.green .goal-point {
	color: #6fad4b;
}

.single-bet-box.red .goal-point {
	color: #dd563b;
}

.single-bet-box.green:before {
	position: absolute;
	right: 0;
	top: 0;
	border-top: 10px solid #6fad4b;
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
}

.single-bet-box.red:before {
	position: absolute;
	right: 0;
	bottom: 0;
	border-bottom: 10px solid #dd563b;
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
}

.sport-card-level-three-header:hover,
.single-bet-box:hover {
	background: #c9c9c9;
}

.sport-card-level-three-header:hover *,
.single-bet-box:hover * {
	color: #444 !important;
}

.sport-card-level-one .sport-card-level-one-header {
	border-color: #1A5685;
}

.sport-card-level-one .sport-card-level-one-header:hover,
.sport-card-level-one .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one .sport-card-level-one-header.active {
	color: #fff;
	background: #1A5685;
}

.sport-card-level-one.green .sport-card-level-one-header {
	border-color: #14732f;
}

.sport-card-level-one.green .sport-card-level-one-header:hover,
.sport-card-level-one.green .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one.green .sport-card-level-one-header.active {
	color: #fff;
	background: #14732f;
}

.sport-card-level-one.purple .sport-card-level-one-header {
	border-color: #473067;
}

.sport-card-level-one.purple .sport-card-level-one-header:hover,
.sport-card-level-one.purple .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one.purple .sport-card-level-one-header.active {
	color: #fff;
	background: #473067;
}

.sport-card-level-one.megenta .sport-card-level-one-header {
	border-color: #a61f67;
}

.sport-card-level-one.megenta .sport-card-level-one-header:hover,
.sport-card-level-one.megenta .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one.megenta .sport-card-level-one-header.active {
	color: #fff;
	background: #a61f67;
}

.sport-card-level-one.black .sport-card-level-one-header {
	border-color: #1b1b1b;
}

.sport-card-level-one.black .sport-card-level-one-header:hover,
.sport-card-level-one.black .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one.black .sport-card-level-one-header.active {
	color: #fff;
	background: #1b1b1b;
}

.sport-card-level-one.orange .sport-card-level-one-header {
	border-color: #d96c23;
}

.sport-card-level-one.orange .sport-card-level-one-header:hover,
.sport-card-level-one.orange .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one.orange .sport-card-level-one-header.active {
	color: #fff;
	background: #d96c23;
}

.sport-card-level-one.blue .sport-card-level-one-header {
	border-color: #1489ac;
}

.sport-card-level-one.blue .sport-card-level-one-header:hover,
.sport-card-level-one.blue .sport-card-level-one-header[aria-expanded="true"],
.sport-card-level-one.blue .sport-card-level-one-header.active {
	color: #fff;
	background: #1489ac;
}

.sport-card-level-one .sport-card-level-one-header,
.sport-card-level-two-header {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.sport-card-level-one-header span,
.sport-card-level-two-header span {
	display: flex;
	align-items: center;
}

.sport-card-level-one-header .float-right,
.sport-card-level-two-header .float-right {
	margin-left: auto;
}

.sport-card-level-one-header .name,
.sport-card-level-two-header .name {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* LEFT SIDEBAR AREA CSS END */
/* RIGHT SIDEBAR AREA CSS START */
.game-preview-card-header {
	background: #202531;
	padding: 8px 12px;
	border-radius: 0;
	color: #c9c9c9;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.game-preview-card-header .football-field-icon img {
	width: 24px;
}

span.football-field-icon {
	display: inline-grid;
}

.game-preview-card-body {
	background: #202531;
	border-top: 2px solid #000;
}

.game-preview-accordion-btn[aria-expanded="true"] i.fas.fa-chevron-down,
.game-preview-accordion-btn[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

.game-preview-accordion-btn {
	cursor: pointer;
	margin-top: 5px;
}

.game-preview-accordion-btn i.fas {
	margin-left: 10px;
}

.sound-icon {
	cursor: pointer;
}

.sound-icon i.zmdi {
	font-size: 16px;
}

.sound-icon img,
.sound-icon i.zmdi {
	display: none;
}

.sound-icon img.active,
.sound-icon i.zmdi.active {
	display: inline-block;
}

.game-score-card span:not(.team-name) {
	display: flex;
}

.team-icon img {
	max-height: 9px;
}

.game-score-card {
	overflow: hidden;
	padding: 6px 10px;
	display: flex;
	justify-content: center;
}

.game-score-card .left-side,
.game-score-card .right-side {
	display: flex;
	width: 50%;
	align-items: center;
}

.team-tshirt img {
	max-height: 12px;
}

.team-name {
	max-width: 55%;
	width: auto;
	color: #c9c9c9;
	font-size: 13px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.team-score {
	background: #3f444e;
	color: #c9c9c9;
	font-weight: 700;
	font-size: 16px;
	padding: 4px 7px;
	border-radius: 0;
	min-width: 32px;
	text-align: center;
	justify-content: center;
}

.right-side .team-score {
	margin-right: auto;
}

.left-side .team-score {
	margin-left: auto;
}

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

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

.left-side .team-tshirt,
.left-side .team-name {
	margin-right: 5px;
}

.right-side .team-tshirt,
.right-side .team-name {
	margin-left: 5px;
}

.game-current-time {
	background: #007236;
	color: #fff;
	text-align: center;
	padding: 7px;
	font-size: 13px;
}

.game-play-preview-area {
	position: relative;
	padding: 3px;
}

.game-preview-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.game-field-area {
	position: relative;
	z-index: 2;
}

.game-status {
	background: rgba(0, 0, 0, 0.4);
	position: relative;
	z-index: 2;
	border-radius: 0;
	margin: 4px 3px 2px;
	padding: 2px 8px;
	color: #fff;
	font-size: 11px;
}

.game-status .left-side {
	font-weight: 700;
	text-transform: uppercase;
}

.game-status .right-side {
	position: relative;
	padding-right: 10px;
}

.game-status .right-side:before {
	position: absolute;
	right: 0;
	top: 2px;
	width: 2px;
	height: calc(100% - 4px);
	background: #fff;
	content: "";
}

.event-header {
	background: #ffffff;
	padding: 9px 12px;
	border-radius: 0;
	color: #202531;
	font-weight: 700;
}

.upcoming-events {
	margin-top: 8px;
}

.event-header a {
	color: #202531;
	font-weight: 400;
	transition: 0.3s;
}

.event-header a:hover {
	color: #00a651;
}

.event-type-list {
	background: #dddddd;
	border-radius: 0;
	padding: 5px;
	overflow-x: auto;
	display: flex;
	width: 100%;
	position: relative;
}

.single-event-type-list-item {
	display: block;
	align-items: center;
	flex-shrink: 0;
	background: #ffffff;
	border-radius: 0;
	border-top: 3px solid #888;
	height: 35px;
	padding: 4px 8px;
	width: auto;
	white-space: nowrap;
	overflow: hidden;
	justify-content: flex-start;
	transition: background-color 0.3s, max-width 0.3s;
	max-width: 35px;
	cursor: pointer;
}

.single-event-type-list-item img {
	max-height: 20px;
	display: inline-block;
	height: 20px;
}

.single-event-type-list-item:not(last-child) {
	margin-right: 5px;
}

.single-event-type-list-item .name {
	margin-left: 8px;
}

.single-event-type-list-item.active,
.single-event-type-list-item:hover {
	max-width: 150px;
	background: #888;
	color: #fff;
}

.single-event-type-list-item.green {
	border-color: #14732f;
}

.single-event-type-list-item.green.active,
.single-event-type-list-item.green:hover {
	color: #fff;
	background: #14732f;
}

.single-event-type-list-item.purple {
	border-color: #473067;
}

.single-event-type-list-item.purple.active,
.single-event-type-list-item.purple:hover {
	color: #fff;
	background: #473067;
}

.single-event-type-list-item.megenta {
	border-color: #a61f67;
}

.single-event-type-list-item.megenta.active,
.single-event-type-list-item.megenta:hover {
	color: #fff;
	background: #a61f67;
}

.single-event-type-list-item.black {
	border-color: #1b1b1b;
}

.single-event-type-list-item.black.active,
.single-event-type-list-item.black:hover {
	color: #fff;
	background: #1b1b1b;
}

.single-event-type-list-item.orange {
	border-color: #d96c23;
}

.single-event-type-list-item.orange.active,
.single-event-type-list-item.orange:hover {
	color: #fff;
	background: #d96c23;
}

.single-event-type-list-item.blue {
	border-color: #1489ac;
}

.single-event-type-list-item.blue.active,
.single-event-type-list-item.blue:hover {
	color: #fff;
	background: #1489ac;
}

.event-time {
	display: flex;
	background: #fff;
	border-radius: 0;
	height: 34px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.single-event-time {
	display: flex;
	max-width: 100%;
	flex-grow: 1;
	justify-content: center;
	cursor: pointer;
	height: 34px;
	align-items: center;
	color: #1E2531;
}

.single-event-time:not(last-item) {
	border-right: 1px solid #ccc;
}

.single-event-time.active {
	background: #14732f;
	color: #fff;
}

.single-event-time.active:first-child {
	border-radius: 0;
}

.single-event-time.active:last-child,
.single-event-time:last-child {
	border-radius: 0;
}

.event-card-header {
	background: #fff;
	border-radius: 0;
	font-size: 10px;
	padding: 4px 8px;
	cursor: pointer;
	overflow: hidden;
}

.event-card-header[aria-expanded="true"] {
	border-radius: 0;
}

.event-card {
	margin-bottom: 5px;
}

.event-card-header span:not(.float-right) {
	overflow: hidden;
	text-overflow: ellipsis;
	width: 93%;
	white-space: nowrap;
	float: left;
}

.event-card-header[aria-expanded="true"] i.fas.fa-chevron-down,
.event-card-header[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

.event-card-body {
	background: #dfdfdf;
	padding: 5px;
}

.event-info {
	font-size: 13px;
	padding: 2px 7px;
	display: flex;
	flex-grow: 1;
	align-items: center;
	margin-bottom: 5px;
}

.event-info .time {
	font-weight: 700;
	color: #555;
}

.event-info span.details {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.event-info .count a {
	color: #212529;
	border: 1px solid #212529;
	border-radius: 0;
	font-size: 10px;
	display: flex;
	padding: 0 5px;
	transition: 0.3s;
}

.event-info .count a:hover {
	background: #212529;
	color: #fff;
}

.event-info .count.red a {
	color: #a61d67;
	border-color: #a61d67;
}

.event-info .count.red a:hover {
	background: #a61d67;
	color: #fff;
}

.event-info .count.green a {
	color: #14732f;
	border-color: #14732f;
}

.event-info .count.green a:hover {
	background: #14732f;
	color: #fff;
}

.event-info .stat a {
	display: flex;
	color: #999;
	font-size: 14px;
	padding: 4px 8px;
	transition: 0.3s;
}

.event-info .stat a:hover {
	color: #444;
}

.event-info .stat {
	display: flex;
	flex-grow: 1;
}

.event-list ul {
	display: flex;
	flex-basis: 100%;
	flex-direction: column;
}

.event-list ul li {
	display: flex;
	width: 100%;
	flex-shrink: 0;
	flex-grow: 1;
	flex-basis: 100%;
	background: #fff;
	padding: 5px 10px;
	border-radius: 0;
	transition: 0.3s;
	cursor: pointer;
}

.event-list ul li span:not(.list-name) {
	display: flex;
}

.event-list ul li span.coefficient {
	margin-left: auto;
	color: #014a85;
}

.event-list ul li:not(:last-child) {
	margin-bottom: 5px;
}

.event-list ul li:hover {
	background: #c9c9c9;
}

.event-list ul li span.list-name {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 90%;
	float: left;
}

.event-list ul li.active {
	background: #14732f;
	color: #fff;
}

.event-list ul li.active span.coefficient,
.event-list ul li.active:hover span.coefficient {
	color: #fff;
}

.event-list ul li:hover span.coefficient {
	color: #212529;
}

#event-image-carousel {
	margin-top: 10px;
}

.single-statistics-box {
	position: relative;
	padding: 15px 5px;
}

.single-statistics-box .round-chart {
	position: relative;
	max-width: 55px;
	margin: 0 auto;
}

.round-chart-icon img {
	display: block;
}

.round-chart .left-value,
.round-chart .right-value {
	position: absolute;
	color: #c9c9c9;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	font-weight: 600;
}

.round-chart .left-value {
	left: -5px;
}

.round-chart .right-value {
	right: -5px;
}

.round-chart-icon {
	display: block;
	max-width: 35px;
	margin: 0 auto;
}

.statistics-name {
	color: #c9c9c9;
	font-size: 10px;
	font-weight: 600;
	margin-top: 10px;
}

.game-summary-statistics .col {
	padding: 0 5px;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
	display: flex;
}

.owl-carousel .owl-item img {
	width: 100% !important;
	height: 322px;
}

.cricket-match-summary-carousel.owl-carousel {
	background: #666;
	overflow: hidden;
}

.cricket-match-summary-carousel .owl-nav button {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 5px;
	top: 36px;
	background: #000 !important;
	color: #fff !important;
	opacity: 0.7;
	transition: 0.3s;
	line-height: 7px !important;
}

.cricket-match-summary-carousel .owl-nav button i.fas {
	font-size: 10px;
}

.cricket-match-summary-carousel .owl-nav button.owl-next {
	left: auto;
	right: 5px;
}

.cricket-match-summary-carousel:hover .owl-nav button:hover,
.cricket-match-summary-carousel:hover .owl-nav button.owl-next:hover {
	opacity: 0.9;
}

.cricket-match-summary {
	/* width: calc(100% - 8px); */
	display: flex;
	flex-direction: column;
}

.cricket-match-summary-header {
	display: flex;
	background: #00a651;
	color: #fff;
	font-size: 13px;
	height: 30px;
	align-items: center;
}

.green .cricket-match-summary-header {
	background: #00a651;
	color: #fff;
}

.black .cricket-match-summary-header {
	background: #252525;
	color: #fff;
}

.cricket-match-summary-header span {
	display: flex;
}

.cricket-match-summary-header span.match-type {
	background: #019047;
	height: 30px;
	align-items: center;
	padding: 8px;
	text-transform: uppercase;
}

.green .cricket-match-summary-header span.match-type {
	background: #019047;
}

.black .cricket-match-summary-header span.match-type {
	background: #4b4b4b;
}

.cricket-match-summary-header span.match-date {
	margin-left: 7px;
}

.cricket-match-summary-header span.match-time {
	margin-left: auto;
	padding-right: 8px;
	font-weight: 700;
}

.cricket-match-summary-details {
	background: #e9e9e9;
	color: #1e2531;
}

.cricket-match-summary-details .match-result {
	font-size: 14px;
	text-align: center;
	padding: 20px 40px;
}

.cricket-match-summary-details .match-details-info {
	display: flex;
	justify-content: space-between;
	padding: 15px;
}

.cricket-match-summary-details .match-details-info span {
	display: flex;
}

.cricket-match-summary-details span.team-name-flag .flag img {
	height: 50px;
	border-radius: 0;
	max-width: 75px !important;
}

.cricket-match-summary-details span.team-name-flag {
	flex-direction: column;
	text-align: center;
	max-width: 75px;
}

.cricket-match-summary-details span.team-name-flag .flag {
	justify-content: center;
}

.cricket-match-summary-details span.team-name-flag .name {
	color: #666;
	font-family: "Oswald";
	font-size: 14px;
	margin-top: 8px;
	font-weight: 500;
	justify-content: center;
}

.cricket-match-summary-details .match-details-info .team-score {
	flex-direction: column;
	height: 50px;
	background: #e9e9e9;
	color: #666;
	font-family: "Oswald";
	font-size: 15px;
	justify-content: center;
	align-items: start;
	padding: 0;
	margin-left: 6px;
	line-height: 18px;
}

.cricket-match-summary-details .match-details-info .right-side .team-score {
	align-items: flex-end;
	margin-left: 0;
	margin-right: 6px;
}

.cricket-match-summary-details span.series-flag {
	align-items: center;
	width: 80px;
	padding: 0 20px;
	height: 50px;
}

.cricket-match-summary .match-location ul {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	font-size: 12px;
	padding: 10px;
}

.cricket-match-summary .match-location ul li {
	display: inline-block;
	position: relative;
	margin: 0 15px;
}

.cricket-match-summary .match-location ul li:before {
	position: absolute;
	right: -16px;
	top: 50%;
	width: 5px;
	height: 5px;
	background: #555;
	content: "";
	border-radius: 50%;
	transform: translateY(-50%);
}

.cricket-match-summary .match-location ul li:last-child:before {
	display: none;
}

.cricket-match-summary-details .match-details-info .team-score .bottom {
	font-size: 11px;
	color: #555;
}

.cricket-match-summary-details .won span.team-name-flag .name,
.cricket-match-summary-details .match-details-info .won .team-score,
.cricket-match-summary-details .match-details-info .won .team-score .bottom {
	color: #111;
}

/* football match summary css */
.football-match-summary-carousel.owl-carousel {
	background: #f4f4f4;
	overflow: hidden;
}

.football-match-summary-carousel .owl-nav button {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 5px;
	top: 5px;
	background: #000 !important;
	color: #fff !important;
	opacity: 0.7;
	transition: 0.3s;
	line-height: 7px !important;
}

.football-match-summary-carousel .owl-nav button i.fas {
	font-size: 10px;
}

.football-match-summary-carousel .owl-nav button.owl-next {
	left: auto;
	right: 5px;
}

.football-match-summary-carousel .owl-nav button:hover,
.football-match-summary-carousel .owl-nav button.owl-next:hover {
	opacity: 0.9;
}

.football-match-summary {
	background: #f4f4f4;
	display: flex;
	flex-direction: column;
	color: #666;
	padding: 20px 0;
	transition: 0.3s;
	width: calc(100% - 8px);
}

.football-match-summary:hover {
	color: #444;
}

.football-match-summary .match-date-time {
	text-align: center;
	padding: 10px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.football-match-summary .match-details-info {
	display: flex;
	justify-content: space-between;
	padding: 0 25px;
}

.football-match-summary .match-details-info span {
	display: flex;
}

.football-match-summary span.team-name-flag {
	flex-direction: column;
	text-align: center;
	max-width: 80px;
}

.football-match-summary span.team-name-flag .flag img {
	max-height: 60px;
}

.football-match-summary span.team-name-flag .flag {
	justify-content: center;
	margin-bottom: 10px;
}

.football-match-summary span.team-name-flag .name {
	font-family: "Oswald";
}

.football-match-summary .match-details-info .team-score {
	background: transparent;
	color: #666;
	padding: 0 30px;
	height: 60px;
	align-items: center;
}

.football-match-summary span.details-separator {
	height: 60px;
	font-size: 20px;
	font-weight: 700;
	align-items: center;
}

.football-match-summary .series-name {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	padding: 10px;
}

.football-match-summary .won *,
.football-match-summary .match-details-info .won .team-score {
	color: #1e2531;
}

/* RIGHT SIDEBAR AREA CSS END */
/* GAME AREA CSS START */
.game-area,
.admin-content {
	padding: 0 2px;
	border-radius: 0;
}

.height-1000 {
	height: 1000px;
}

.game-content-area > .row, .admin-template-area > .row {
	/*height: 100% !important;*/
	/*min-height: 1px;*/
	height: auto !important;
	/*min-height: 1101px;*/
}

.left-sidebar,
.right-sidebar,
.game-area,
.admin-content {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	height: 100% !important;
	transition: 0.4s;
}

.left-sidebar {
	padding-right: 2px;
}

.right-sidebar {
	padding-left: 2px;
}

.custom-scrollbar-1.ps.ps--active-y,
.custom-scrollbar-2.ps.ps--active-y,
.custom-scrollbar-3.ps.ps--active-y {
	padding-right: 8px;
}

.custom-scrollbar-1 .ps__rail-y,
.custom-scrollbar-1 .ps__thumb-y,
.custom-scrollbar-2 .ps__rail-y,
.custom-scrollbar-2 .ps__thumb-y,
.custom-scrollbar-3 .ps__rail-y,
.custom-scrollbar-3 .ps__thumb-y {
	opacity: 1 !important;
}

.custom-scrollbar-1 .ps__rail-y,
.custom-scrollbar-2 .ps__rail-y,
.custom-scrollbar-3 .ps__rail-y {
	opacity: 1 !important;
}

.custom-scrollbar-1 .ps__thumb-y,
.custom-scrollbar-2 .ps__thumb-y,
.custom-scrollbar-3 .ps__thumb-y {
	background-color: #fff;
	width: 5px;
	right: 0px;
}

.custom-scrollbar-1 .ps__rail-y:hover .ps__thumb-y,
.custom-scrollbar-2 .ps__rail-y:hover .ps__thumb-y,
.custom-scrollbar-3 .ps__rail-y:hover .ps__thumb-y {
	width: 5px !important;
}

.custom-scrollbar-1 .ps__rail-y,
.custom-scrollbar-1.ps.ps--active-y > .ps__rail-y,
.custom-scrollbar-2 .ps__rail-y,
.custom-scrollbar-2.ps.ps--active-y > .ps__rail-y,
.custom-scrollbar-3 .ps__rail-y,
.custom-scrollbar-3.ps.ps--active-y > .ps__rail-y {
	background: #dadada;
	border: 1px solid #dadada;
	border-radius: 0;
	width: 5px;
}

.custom-scrollbar-1 .ps__rail-y:hover > .ps__thumb-y,
.custom-scrollbar-1 .ps__rail-y:focus > .ps__thumb-y,
.custom-scrollbar-2 .ps__rail-y:hover > .ps__thumb-y,
.custom-scrollbar-2 .ps__rail-y:focus > .ps__thumb-y,
.custom-scrollbar-3 .ps__rail-y:hover > .ps__thumb-y,
.custom-scrollbar-3 .ps__rail-y:focus > .ps__thumb-y {
	background-color: #fff;
}

.custom-scrollbar-1 .ps__rail-x,
.custom-scrollbar-1 .ps__thumb-x,
.custom-scrollbar-1.ps:hover > .ps__rail-x:hover,
.custom-scrollbar-2 .ps__rail-x,
.custom-scrollbar-2 .ps__thumb-x,
.custom-scrollbar-2.ps:hover > .ps__rail-x:hover,
.custom-scrollbar-3 .ps__rail-x,
.custom-scrollbar-3 .ps__thumb-x,
.custom-scrollbar-3.ps:hover > .ps__rail-x:hover {
	display: none;
}

.live-in-play-header {
	background: #00a651;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-family: "Oswald";
	font-weight: 400;
	margin: 0;
	padding: 8px;
}

.live-in-play-header.in-mobile {
	display: none;
}

.live-in-play-header.green {
	background: #00a651;
}

.live-in-play-header.purple {
	background: #473067;
}

.live-in-play-header.megenta {
	background: #a61f67;
}

.live-in-play-header.black {
	background: #1b1b1b;
}

.live-in-play-header.orange {
	background: #d96c23;
}

.live-in-play-header.blue {
	background: #1489ac;
}

.live-in-play-carousel-parent-wrapper {
	position: relative;
	overflow: hidden;
	height: 80px;
}

.live-in-play-carousel-parent {
	max-width: 100%;
	height: 80px;
	overflow: hidden;
	background: #1e2531;
	position: relative;
	overflow-x: auto;
	/* margin: 0 20px; */
}

.live-in-play-carousel.owl-carousel .live-in-play-carousel-item {
	height: 80px;
}

.live-in-play-carousel .owl-nav button {
	position: absolute;
	width: 20px;
	height: 100%;
	left: 0;
	top: 0;
	background: #1A5685 !important;
	color: #fff !important;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.live-in-play-carousel .owl-nav button i.fas {
	font-size: 12px;
}

.live-in-play-carousel .owl-nav button.owl-next {
	left: auto;
	right: 0;
}

.live-in-play-carousel .owl-nav button:hover,
.live-in-play-carousel .owl-nav button.owl-next:hover {
	background: #4988B9 !important;
}

.simplebar-scrollbar::before {
	background: #fff;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
	opacity: 0.9;
}

.drag-left-handle,
.drag-right-handle {
	position: absolute;
	top: 0;
	width: 20px;
	height: 100%;
	text-align: center;
	z-index: 3;
	/* background: #ddd; */
	font-size: 12px;
	line-height: 80px;
	color: #888;
	cursor: pointer;
	transition: 0.3s;
	background: rgba(255, 255, 255, 0.8);
	opacity: 0;
	visibility: hidden;
}

.live-in-play-carousel-parent-wrapper:hover .drag-left-handle,
.live-in-play-carousel-parent-wrapper:hover .drag-right-handle {
	opacity: 1;
	visibility: visible;
}

.live-in-play-carousel-parent-wrapper:hover .drag-left-handle {
	left: 0;
}

.live-in-play-carousel-parent-wrapper:hover .drag-right-handle {
	right: 0;
}

.drag-left-handle {
	box-shadow: inset -1px 0px 5px 0px #555;
	left: -20px;
}

.drag-right-handle {
	box-shadow: inset 1px 0px 5px 0px #555;
	right: -20px;
}

.live-in-play-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	flex-wrap: unset;
	flex-direction: row;
	border-bottom: none;
	left: 0;
	transition: 0.4s;
	background: #1A5685;
}

.live-in-play-carousel.stage-padding {
	padding-left: 20px;
	padding-right: 20px;
}

.live-in-play-carousel.owl-carousel {
	display: flex !important;
}

.live-in-play-carousel-item {
	display: flex;
	width: 85px;
	justify-content: center;
	white-space: nowrap;
	flex-shrink: 0;
	padding: 5px;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
	background: #1e2531;
}

.live-in-play-carousel-item img {
	height: auto !important;
	margin: 0 auto;
	display: flex !important;
	/* box-shadow: 0 0 5px #555;
    border-radius: 50%;
    background: #ddd; */
	margin-top: -2px;
}

.live-in-play-carousel-item img,
.owl-carousel .owl-item .live-in-play-carousel-item img {
	width: 25px !important;
}

.live-in-play-carousel-item p {
	display: flex;
	color: #fff;
	font-size: 12px;
	margin-top: 8px;
	margin-bottom: 0;
	transition: 0.3s;
	overflow-wrap: break-word;
	overflow: hidden;
	white-space: pre-wrap;
	text-align: center;
	line-height: 15px;
}

.live-in-play-carousel-item.active,
.live-in-play-carousel-item:hover,
.green .live-in-play-carousel-item.active,
.green .live-in-play-carousel-item:hover {
	background: #1b5797;
	color: #fff;
}

.purple .live-in-play-carousel-item.active,
.purple .live-in-play-carousel-item:hover {
	background: #473067;
	color: #fff;
}

.megenta .live-in-play-carousel-item.active,
.megenta .live-in-play-carousel-item:hover {
	background: #a61f67;
	color: #fff;
}

.black .live-in-play-carousel-item.active,
.black .live-in-play-carousel-item:hover {
	background: #1b1b1b;
	color: #fff;
}

.orange .live-in-play-carousel-item.active,
.orange .live-in-play-carousel-item:hover {
	background: #d96c23;
	color: #fff;
}

.blue .live-in-play-carousel-item.active,
.blue .live-in-play-carousel-item:hover {
	background: #1489ac;
	color: #fff;
}

.live-in-play-carousel-item.active p,
.live-in-play-carousel-item:hover p {
	color: #fff;
}

.single-match-result-accordion-header {
	font-size: 14px;
	cursor: pointer;
	border-radius: 0;
	transition: 0.3s;
	background: #dddddd;
	display: flex;
	align-items: center;
	padding-left: 10px;
	padding-right: 0;
}

.single-match-result-accordion-header .right-side {
	display: flex;
	margin-left: auto;
	align-items: center;
}

.single-match-result-accordion-header .right-side,
.single-match-result-accordion-header .right-side a {
	color: #666666;
	transition: 0.3s;
}

.single-match-result-accordion-header .favourite-action {
	color: #aeb0b3;
	background: none;
	border: none;
	cursor: pointer;
	transition: 0.3s;
	padding: 0 10px;
}

.single-match-result-accordion-header .status {
	color: #333333;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	transition: 0.3s;
}

.single-match-result-accordion-header .status:hover {
	color: #555;
}

.single-match-result-accordion-header[aria-expanded="true"] i.fas.fa-chevron-down,
.single-match-result-accordion-header[aria-expanded="false"] i.fas.fa-chevron-up {
	display: none;
}

.single-match-result {
	margin-top: 5px;
	border-radius: 0;
	background: #eee;
	padding: 5px;
}

.single-match-result-header {
	background: #fff;
	border-radius: 0;
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #000;
	padding: 8px 10px;
	display: flex;
	align-items: start;
}

.single-match-result-header .left-side,
.single-match-result-header .right-side {
	display: flex;
}

.single-match-result-header .left-side .header-category-icon {
	max-width: 15px;
	margin-right: 6px;
	margin-top: 4px;
}

.single-match-result-header .left-side span.match-infos {
	flex-direction: column;
}

.single-match-result-header .left-side .header-live-icon {
	max-width: 18px;
	margin-left: 8px;
	margin-top: 6px;
}

.single-match-result-header .right-side {
	width: 30%;
	margin-left: auto;
	flex-direction: column;
}

.single-match-result-header .right-side * {
	justify-content: flex-end;
	display: flex;
	text-align: right;
	font-size: 13px;
}

.single-match-result-header .right-side p {
	margin-bottom: 2px;
}

.single-match-result-header .top-side img {
	max-width: 18px;
}

.single-match-result-header .top-side,
.single-match-result-header .top-side > * {
	display: flex;
	align-items: center;
}

.single-match-result-header .left-side span.match-infos {
	width: calc(100% - 20px);
}

.single-match-result-header .left-side .bottom-side {
	justify-content: flex-start;
}

.single-match-result-header .bottom-side {
	display: flex;
	margin-top: 3px;
	width: 100%;
	justify-content: flex-end;
}

.single-match-result-header .top-side .score-text {
	margin: 0 8px;
}

.single-match-result-header .current-time {
	font-size: 20px;
	color: #336699;
}

.single-match-result-header .left-side {
	width: 70%;
	align-items: flex-start;
}

.single-match-result-header .left-side span {
	color: #222;
	transition: 0.3s;
}

.single-match-result-header .left-side:hover span {
	color: #555;
}

.single-match-result-header .left-side > * {
	display: flex;
}

.single-match-result-header span.top-side {
	font-family: 'Lora', serif;
	font-weight: 400;
}

.single-match-result-accordion-btn {
	width: 27px;
	height: 34px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 0px solid #bbb;
}

.single-match-result-accordion-header .right-side a:hover,
.single-match-result-accordion-header .favourite-action:hover,
.single-match-result-accordion-header .favourite-action.active {
	color: #222;
}

.single-match-result-accordion-header .right-side a.bet-cash-out {
	background: #014a85;
	color: #fff;
	font-size: 8px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	text-align: center;
	line-height: 14px;
	box-shadow: 0 0 0 1px #ddd, 0 0 0 2px #014a85;
	opacity: 0.7;
}

.single-match-result-accordion-header .right-side a.bet-cash-out:hover {
	opacity: 1;
}

.single-match-result-accordion-header .right-side a.match-event-link {
	margin-right: 12px;
}

.single-match-result-accordion-header .right-side a.match-event-link span {
	color: #014a85;
}

.single-match-result-accordion-header .right-side a.match-event-link i.fas {
	font-size: 12px;
}

.single-match-result-accordion-header .right-side a.match-event-link span:hover {
	color: #222;
}

.single-match-result-accordion-body {
	text-align: center;
	font-size: 13px;
}

.single-match-result-accordion-body .row {
	margin: 0;
}

.single-match-result-accordion-body .col {
	padding: 0;
}

/* .single-match-result-accordion-body .row .col {
    border-right: 1px solid #c9c9c9;
    border-top: 1px solid #c9c9c9;
} */
.single-match-result-accordion-body .row .col:last-child,
.single-match-result-accordion-body .row .col-lg-4:nth-child(3n+3),
.single-match-result-accordion-body .row .col-lg-6:nth-child(2n),
.single-match-result-accordion-body .row .col-lg-3:nth-child(4n+1) {
	border-right: none;
}

.single-match-result-box {
	padding: 7px 10px;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
	background: #fff;
	display: flex;
	align-items: center;
	text-align: left;
	z-index: 0;
	overflow: hidden;
	height: 33px;
}

.single-match-result-box .match-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 90%;
	color: #333333;
}

.single-match-result-box .match-point {
	display: flex;
	margin-left: auto;
}

.single-match-result-box .match-point {
	color: #014a85;
}

.single-match-result-box.green .match-point {
	color: #6fad4b;
}

.single-match-result-box.red .match-point {
	color: #dd563b;
}

.single-match-result-box.green:before {
	position: absolute;
	right: 0;
	top: 0;
	border-top: 10px solid #6fad4b;
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
}

.single-match-result-box.red:before {
	position: absolute;
	right: 0;
	bottom: 0;
	border-bottom: 10px solid #dd563b;
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
}

/* .single-match-result-box:hover {
  background: #c9c9c9;
} */
.single-match-result-box:hover * {
	color: #444 !important;
}

[data-balloon]:after,
[data-balloon]::before {
	background: rgba(17, 17, 17, 0.66);
}

[data-balloon][data-balloon-pos="left"]:hover:before,
[data-balloon][data-balloon-pos="left"][data-balloon-visible]:before {
	opacity: 0.72;
}

.single-match-result-box::after {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(26, 86, 133, 0.3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(15, 80, 245, 0.68) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.single-match-result-box:hover::after,
.single-match-result-box.update::after {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.single-match-result-box.flip {
	transform-style: preserve-3d;
	-webkit-animation: box-flip .75s;
	animation: box-flip .75s;
}

@-webkit-keyframes box-flip {
	0% {
		transform: rotateX(-180deg);
	}
	100% {
		transform: rotateX(0deg);
	}
}

@keyframes box-flip {
	0% {
		transform: rotateX(-180deg);
	}
	100% {
		transform: rotateX(0deg);
	}
}

/* GAME AREA CSS END */
/* COLLAPS ACTION CSS START */
.left-sidebar.collaps-active {
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	max-width: 60px;
}

.game-area.collaps-active {
	-ms-flex: 0 0 calc(75% - 70px);
	flex: 0 0 calc(75% - 70px);
	max-width: calc(75% - 70px);
}

.collaps-active .left-sidebar-toggle-btn-area {
	display: flex;
	justify-content: center;
	align-items: center;
}

.collaps-active .left-sidebar-toggle-btn {
	position: relative;
	right: auto;
	top: auto;
	transform: initial;
	/* max-height: 12px; */
}

.left-sidebar {
	z-index: 1000;
}

.game-area,
.admin-content {
	z-index: 999;
	background: #ddd;
}

/* AFTER NEW THEME */
.game-area {
	margin: 0 5px;
	flex: 0 0 calc(58.333333% - 10px);
	max-width: calc(58.333333% - 10px);
}

.left-sidebar,
.game-area,
.right-sidebar,
.admin-content {
	padding: 5px;
}

.game-indicator-message {
	font-size: 13px;
	text-align: center;
	margin-top: 20px;
	padding: 20px;
	color: #444;
}

.collaps-active .favourite-card .name,
.collaps-active .favourite-card-body,
.collaps-active .favourite-card-header .accordion-icon,
.collaps-active .left-sidebar-tab-links,
.collaps-active .left-sidebar-search-area input[type="search"],
.collaps-active .left-sidebar-search-area input[type="text"],
.collaps-active .left-sidebar-search-area i.fas.fa-times,
.collaps-active .sport-card-level-one-header .name,
.collaps-active .sport-card-level-one-header .float-right,
.collaps-active .sport-card-level-one-body {
	display: none;
}

.collaps-active .favourite-card-header .number {
	position: absolute;
	right: 0;
	top: 2px;
}

.collaps-active .favourite-card-header .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.collaps-active .favourite-card-header {
	height: 40px;
}

.collaps-active .left-sidebar-tab-search-wrapper,
.collaps-active .sport-card-level-one-header {
	height: 46px;
}

.collaps-active .left-sidebar-search-area i.fas.fa-search {
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
}

.collaps-active .left-sidebar-search-area {
	background: transparent;
	height: 36px;
	cursor: pointer;
}

.collaps-active .sport-card-level-one-header img {
	margin-right: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.collaps-active .sport-card-level-one-header[aria-expanded="true"] {
	border-radius: 0;
}

.sport-card-level-one a.sport-card-level-one-header-link {
	display: flex;
	align-items: center;
	width: 100%;
}

.sport-card-level-one .sport-card-level-one-header[aria-expanded="false"] .sport-card-level-one-header-link.active {
	color: #212529;
}

.sport-card-level-one-header[aria-expanded="true"] a.sport-card-level-one-header-link,
.sport-card-level-one:hover a.sport-card-level-one-header-link,
.sport-card-level-one a.sport-card-level-one-header-link:hover,
.sport-card-level-one a.sport-card-level-one-header-link.active,
.sport-card-level-one .sport-card-level-one-header:hover,
.sport-card-level-one .sport-card-level-one-header[aria-expanded="false"]:hover .sport-card-level-one-header-link.active {
	color: #fff;
}

.game-summery-popup-area {
	padding: 0;
	background: #dfdfdf;
	color: #fff;
	border-radius: 0;
	position: fixed;
	left: 75px;
	top: 0;
	z-index: 1200;
	width: 550px;
	border: 1px solid #1e2531;
	color: #1e2531;
	font-size: 13px;
	display: none;
}

.game-summery-popup-area.active {
	display: block;
}

.game-summery-popup-header {
	background: #1e2531;
	position: relative;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	height: 40px;
	display: flex;
	padding: 15px;
	align-items: center;
	margin: 0;
}

.game-summery-popup-header:before {
	position: absolute;
	left: -10px;
	top: 50%;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 15px solid #1e2531;
	border-bottom: 10px solid transparent;
	content: "";
	transform: translateY(-50%);
}

.game-summery-popup-body .favourite-text {
	margin: 0;
	padding: 15px;
	text-align: center;
	color: #333;
	border-radius: 0;
}

.game-summery-popup-body .favourite-text i.fas {
	color: #888;
}

.game-summery-popup-body .search-collapsed-area {
	background: #fff;
	position: relative;
	border-radius: 0;
}

.game-summery-popup-body .search-collapsed-area input[type="search"],
.game-summery-popup-body .search-collapsed-area input[type="text"] {
	background: #fff;
	border: none;
	width: 100%;
	height: 40px;
	padding: 10px;
}

.game-summery-popup-body .search-collapsed-area i.fas.fa-times {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	display: none;
}

.game-summery-popup-body .search-collapsed-area input[type="search"]:focus,
.game-summery-popup-body .search-collapsed-area input[type="text"]:focus,
.game-summery-popup-body .search-collapsed-area:focus {
	outline: 0 solid;
}

.game-list {
	background: #fff;
	border-radius: 0;
}

.game-list ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #ccc;
	padding: 8px;
	cursor: pointer;
	transition: 0.3s;
}

.game-list ul li span {
	display: flex;
	align-items: center;
}

.game-list span.match-collapsed-title {
	width: 70%;
}

.game-list span.team-collaped-name {
	max-width: 49%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block !important;
}

.game-list span.team-divider {
	padding: 0 5px;
}

.game-list ul li:hover {
	background: #f3f3f3;
}

.game-list span.video-icon img {
	max-width: 16px;
}

.game-list span.match-collapsed-score {
	color: #14732f;
}

.game-list span.score-divider {
	padding: 0 3px;
}

.game-list .match-collapsed-details .favourite-action {
	background: none;
	border: none;
	padding: 0;
	margin-left: 10px;
	color: #999;
	transition: 0.3s;
}

.game-list .match-collapsed-details .favourite-action:hover {
	color: #333;
}

/* COLLAPS ACTION CSS END */
/* BETSLIP AREA CSS START */
.betslip-card.fixed {
	margin: 0;
	position: fixed;
	bottom: 0;
	right: 50px;
	z-index: 2000;
}

.betslip-card {
	width: 365px;
	background: #dfdfdf;
}

.betslip-card-header {
	background: #1e2531;
	border-top: 3px solid #14732f;
	padding: 10px;
	color: #fff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

span.betslip-card-header-text {
	position: relative;
	font-size: 14px;
}

span.betslip-card-header-text .number {
	background: #14732f;
	width: 16px;
	position: absolute;
	right: -18px;
	top: -5px;
	text-align: center;
	border-radius: 50%;
	font-size: 10px;
	height: 16px;
	line-height: 16px;
}

.betslip-card-header[aria-expanded="true"] i.fas.fa-chevron-up,
.betslip-card-header[aria-expanded="false"] i.fas.fa-chevron-down {
	display: none;
}

.betslip-currency-type .form-control {
	font-size: 13px;
	background: transparent;
	padding: 10px 5px;
	border-radius: 0;
}

.betslip-currency-type .form-control:focus {
	border: none;
	outline: 0 solid;
	box-shadow: 0 0 0 0;
}

.betslip-actions {
	background: #f5f5f5;
	padding: 9px 5px;
	margin: 5px;
	border-radius: 0;
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.betslip-action-list .form-control {
	font-size: 12px;
	padding: 0;
	height: auto;
	background: #dfdfdf;
}

.betslip-action-list .form-control:focus {
	outline: 0 solid;
	box-shadow: 0 0 0 0;
	border: none;
}

.betslip-item-remove {
	font-size: 12px;
	cursor: pointer;
}

.betslip-item-list {
	padding: 5px;
	max-height: 300px;
	/* overflow-y: auto; */
	/* margin-bottom: 5px; */
}

.betslip-actions.betslip-message {
	flex-direction: column;
}

.betslip-actions.betslip-message h5 {
	margin: 0;
	font-size: 14px;
}

.betslip-actions.betslip-message h5.bet-range-message {
	color: #1A5685;
}

.betslip-actions.betslip-message h5.bet-error-message {
	margin-top: 10px;
	font-size: 12px;
	color: #d02402;
}

.single-betlist-item {
	background: #ccc;
	padding: 5px;
	border-radius: 0;
}

.single-betlist-item .top-part span {
	display: flex;
}

span.red-mark-ban-icon {
	position: relative;
	width: 15px;
	height: 15px;
	cursor: pointer;
	margin-right: 10px;
}

span.red-icon-tooltip {
	position: absolute;
	border: 1px solid #e44a3f;
	border-radius: 0;
	background: #f5f5f5;
	flex-direction: column;
	width: 220px;
	font-size: 13px;
	bottom: 22px;
	left: -12px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.red-mark-ban-icon:before {
	position: absolute;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #e44a3f;
	content: "";
	top: -8px;
	left: 46%;
	transform: translateX(-50%);
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}

.single-betlist-item:first-child .red-mark-ban-icon:before {
	border-top: 6px solid transparent;
	border-bottom: 6px solid #e44a3f;
	top: auto;
	bottom: -8px;
}

.single-betlist-item:first-child span.red-icon-tooltip {
	bottom: auto;
	top: 22px;
}

span.red-icon-tooltip .tooltip-top-part {
	padding: 2px 10px;
	background: #e44a3f;
	color: #fff;
}

span.red-icon-tooltip .tooltip-bottom-part {
	padding: 5px 10px;
}

.single-betlist-item .top-part {
	display: flex;
	align-items: center;
	padding: 5px 1px;
	justify-content: space-between;
}

span.red-mark-ban-icon:hover span.red-icon-tooltip,
span.red-mark-ban-icon:hover:before {
	opacity: 1;
	visibility: visible;
}

span.betlist-info-icon {
	position: relative;
	width: 15px;
	height: 15px;
	cursor: pointer;
	margin-left: 10px;
}

span.info-icon-tooltip {
	position: absolute;
	right: 30px;
	background: #dfdfdf;
	border-radius: 0;
	box-shadow: 0px 1px 2px #aaa;
	width: 230px;
	flex-direction: column;
	border: 1px solid #ccc;
	top: -8px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

span.info-icon-tooltip .tooltip-top-part img {
	max-height: 16px;
	margin-right: 9px;
	display: flex;
}

span.info-icon-tooltip .tooltip-top-part {
	background: #14732f;
	border-radius: 0;
	color: #fff;
	font-size: 13px;
	padding: 5px 10px;
	line-height: 15px;
	position: relative;
	align-items: center;
	height: 32px;
}

span.info-icon-tooltip .tooltip-top-part:before {
	position: absolute;
	right: -8px;
	top: 48%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #14732f;
	content: "";
}

.green span.info-icon-tooltip .tooltip-top-part {
	background: #14732f;
}

.green span.info-icon-tooltip .tooltip-top-part:before {
	border-left: 8px solid #14732f;
}

.purple span.info-icon-tooltip .tooltip-top-part {
	background: #473067;
}

.purple span.info-icon-tooltip .tooltip-top-part:before {
	border-left: 8px solid #473067;
}

.megenta span.info-icon-tooltip .tooltip-top-part {
	background: #a61f67;
}

.megenta span.info-icon-tooltip .tooltip-top-part:before {
	border-left: 8px solid #a61f67;
}

.black span.info-icon-tooltip .tooltip-top-part {
	background: #1b1b1b;
}

.black span.info-icon-tooltip .tooltip-top-part:before {
	border-left: 8px solid #1b1b1b;
}

.orange span.info-icon-tooltip .tooltip-top-part {
	background: #d96c23;
}

.orange span.info-icon-tooltip .tooltip-top-part:before {
	border-left: 8px solid #d96c23;
}

.blue span.info-icon-tooltip .tooltip-top-part {
	background: #1489ac;
}

.blue span.info-icon-tooltip .tooltip-top-part:before {
	border-left: 8px solid #1489ac;
}

span.info-icon-tooltip .tooltip-bottom-part {
	padding: 4px 10px;
	font-size: 13px;
}

span.betlist-info-icon:hover span.info-icon-tooltip {
	opacity: 1;
	visibility: visible;
}

span.betlist-info-icon i.fas,
.red-mark-ban-icon i.fas,
.betlist-single-item-remove-icon i.fas {
	color: #666;
	transition: 0.3s;
}

span.betlist-info-icon i.fas:hover,
.red-mark-ban-icon i.fas:hover {
	color: #333;
}

.betlist-single-item-remove-icon i.fas:hover {
	color: #e44a3f;
}

span.betlist-single-item-remove-icon {
	cursor: pointer;
	margin-left: 10px;
	width: 15px;
	height: 15px;
}

span.betlist-text {
	font-size: 12px;
	width: calc(100% - 20px);
	flex-direction: column;
	align-items: center;
}

.single-betlist-item .top-part span.match-vs {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
}

.single-betlist-item .middle-part span.bet-name {
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 4px;
	display: flex;
}

.single-betlist-item .bottom-part {
	background: #f5f5f5;
	border-radius: 0;
	border: 1px solid #ccc;
	padding: 5px 0px;
	font-size: 12px;
}

.single-result-item {
	display: flex;
	justify-content: space-between;
	padding: 1px 10px;
	align-items: center;
}

.single-result-item .stroke-through {
	text-decoration: line-through;
}

.single-betlist-item .bottom-part span.non-stroke-through,
.single-betlist-item .bottom-part span.stroke-through {
	margin-right: 7px;
	background: #5695c5;
	color: #fff;
	padding: 2px 10px;
	display: inline-block;
	border-radius: 0;
	text-align: center;
	min-width: 35px;
	font-size: 10px;
	/* font-weight: 700; */
}

.single-result-item .blue {
	color: #014a85;
}

.single-result-item .down-icon {
	color: #ffc536;
}

.single-result-item .up-icon {
	color: #14732f;
}

.betslip-bid-area ul {
	display: flex;
	flex-direction: column;
}

.betslip-bid-area ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	padding: 4px 6px;
}

.betslip-bid-area ul li input[type="text"]:focus,
.betslip-bid-area ul li input[type="number"]:focus {
	outline: 0 solid;
}

.betslip-bid-area ul li input[type="text"],
.betslip-bid-area ul li input[type="number"] {
	width: 80px;
	text-align: right;
	border: none;
	background: #fff;
	padding: 6px;
	border-radius: 0;
	height: 24px;
}

.betslip-bid-area {
	padding: 5px;
	background: #f5f5f5;
	margin: 0 5px;
	border-radius: 0;
}

.betslip-bid-area ul li .blue {
	color: #014a85;
}

.betslip-bid-area ul li:last-child {
	border-top: 1px solid #dcdcdc;
	margin-top: 4px;
	padding-top: 6px;
}

.place-bet-btn {
	background: rgb(52, 109, 151);
	border: none;
	border-radius: 0;
	width: calc(100% - 10px);
	margin: 5px;
	position: relative;
	padding: 8px;
	font-weight: 700;
	letter-spacing: 0.7px;
	color: #eaf1f7;
	border-color: #6c757d;
	cursor: pointer;
}

.accept-changes-btn {
	background: #14732f;
	transition: 0.3s;
	cursor: pointer;
}

.place-bet-btn:hover {
	background: rgb(27, 87, 151);
}

.accept-changes-btn.inactive {
	background: #7aa987;
	cursor: default;
}

.accept-changes-btn.inactive:hover {
	background: #7aa987;
}

span.button-tooltip {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 51%;
	text-align: center;
	font-size: 10px;
	font-family: "Open Sans";
	top: -30px;
	background: #999a9c;
	border-radius: 6px;
	color: #ddd;
	padding: 3px 8px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

span.button-tooltip a {
	color: #ddd;
	text-decoration: underline;
}

span.button-tooltip:before {
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 6px solid #999a9c;
	content: "";
	transform: translateX(-50%);
}

button.place-bet-btn:hover span.button-tooltip {
	opacity: 1;
	visibility: visible;
}

/* BETSLIP AREA CSS END */
/* REGISTRATION SIGN IN AREA CSS START */
/****  floating-Lable style start ****/
.floating-label {
	position: relative;
	margin-bottom: 20px;
}

.floating-input,
.floating-textarea,
.floating-select {
	font-size: 14px;
	padding: 6px 10px;
	display: block;
	width: 100%;
	height: 40px;
	background-color: #fff;
	border: 1px solid #fff;;
	border-radius: 0;
	padding-top: 20px;
}

.form-control.empty {
	border: 1px solid #ff4545;
}

.floating-select {
	padding: 6px 6px;
	padding-top: 20px;
	font-size: 12px;
}

.floating-input:focus,
.floating-label.control-focus .floating-input:focus,
.floating-textarea:focus,
.floating-label.control-focus .floating-textarea:focus,
.floating-select:focus,
.floating-label.control-focus .floating-select:focus {
	outline: none;
	box-shadow: 0 0 5px #ddd;
	font-size: 14px;
}

.floating-label.control-focus .floating-select:focus {
	font-size: 12px;
}

.floating-label label {
	color: #555;
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 10px;
	top: 50%;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
	transform: translateY(-50%);
	z-index: 1510;
}

.floating-label .floating-textarea ~ label {
	top: 30px;
}

.floating-input:focus ~ label,
.floating-input:not(:placeholder-shown) ~ label,
.floating-textarea:focus ~ label,
.floating-textarea:not(:placeholder-shown) ~ label,
.floating-select:focus ~ label,
.floating-select:not([value=""]):valid ~ label,
.floating-label .floating-select-label {
	top: 11px;
	font-size: 10px;
	transform: translateY(-50%);
}

.floating-label.control-focus label,
.floating-label.control-highlight label {
	top: 11px;
	font-size: 10px;
	transform: translateY(-50%);
}

.floating-textarea {
	min-height: 100px;
	max-height: 260px;
}

/****  floating-Lable style end ****/
/* section.registration-sign-in-area {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2500;
    top: 0;
    left: 0;
} */
.registration-sign-in-area-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 3500;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	transition-delay: 0.2s;
}

.registration-sign-in-area-overlay.active {
	opacity: 0.7;
	visibility: visible;
}

.registration-area-step-1,
.sign-in-area,
.forgot-password-area {
	position: fixed;
	left: 50%;
	top: 51%;
	width: 450px;
	transform: translate(-50%, -50%);
	background: #efefef;
	border-radius: 0;
	/* max-height: 500px; */
	transition: 0.3s;
	transition-delay: 0.15s;
	opacity: 0;
	visibility: hidden;
	z-index: 3501;
}

.registration-area-step-1.active,
.sign-in-area.active,
.forgot-password-area.active {
	top: 50%;
	opacity: 1;
	visibility: visible;
}

.rs-header {
	background: #1e2531;
	padding: 18px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 17px;
	border-radius: 0;
	position: relative;
}

.rs-header .close {
	position: absolute;
	right: 17px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	height: 20px;
	width: 20px;
	display: flex;
	transition: 0.3s;
}

.rs-header .close.chevron {
	right: auto;
	left: 17px;
	display: flex;
}

.rs-header .close.chevron.inactive {
	display: none;
}

.rs-header .close img {
	max-height: 20px;
	display: flex;
}

.rs-body {
	padding: 30px;
}

.rs-submit {
	text-align: center;
}

.rs-submit input[type="submit"],
.rs-submit button {
	background: #14732f;
	text-transform: uppercase;
	border: none;
	color: #fff;
	padding: 10px 60px;
	border-radius: 0;
	font-size: 16px;
	line-height: 16px;
	transition: 0.3s;
	cursor: pointer;
	width: 100%;
	margin-top: 15px;
}

.rs-submit input[type="submit"]:hover,
.rs-submit button:hover {
	background: #0d5421;
}

.rs-submit input[type="submit"]:focus,
.rs-submit button:focus {
	outline: 0 solid;
	box-shadow: 0 0 0 0;
}

.rs-other-info {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-top: 40px;
	align-items: center;
	text-align: center;
}

.rs-other-info .text-center {
	display: flex;
	margin: auto;
	align-items: center;
}

.rs-other-info .rs-link {
	cursor: pointer;
	margin-left: 10px;
	color: #14732f;
	font-weight: 700;
	transition: 0.3s;
	text-decoration: underline;
}

.rs-other-info .rs-sign-in-link:hover {
	color: #0d5421;
}

.field-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	cursor: pointer;
	transition: 0.3s;
	color: #666;
}

.fp-instruction-text {
	font-size: 17px;
	margin-bottom: 25px;
}

/* REGISTRATION SIGN IN AREA CSS END */
/* Sign IN CSS START */
.sign-up-area .dropdown-menu {
	-webkit-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	-moz-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	-ms-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	-o-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	max-height: 0;
	display: block;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}

.sign-up-area.show .dropdown-menu {
	-webkit-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	-moz-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	-ms-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	-o-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	max-height: 390px;
	opacity: 1;
	visibility: visible;
}

.sign-up-area .dropdown-menu.dropdown-menu-right {
	/* transform: translate3d(-110px, 50px, 0px) !important; */
	color: #fff;
	box-shadow: 0 0 10px #777;
	padding: 0;
	border: none;
}

.sign-up-area .dropdown-menu.dropdown-menu-right:not(.after-login-dropdown-menu) {
	min-width: 6rem;
	width: 18rem;
}

button.btn.btn-primary.sign-in-btn {
	color: #111;
	background: #ffc536;
	border: none;
	width: 100%;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 15px;
	justify-content: center;
	border-radius: 0;
}

button.btn.btn-primary.sign-in-btn:hover {
	background: #ddaa27;
}

.sign-up-area span {
	border: none;
	font-family: "Open Sans";
	text-transform: initial;
}

.sign-up-area .rs-other-info {
	margin: 0;
}

.sign-up-area .rs-other-info span {
	display: flex;
	white-space: nowrap;
	padding: 0;
}

.sign-up-area .rs-other-info span.left-side {
	padding-left: 20px;
}

.sign-up-area .rs-other-info span.left-side label {
	cursor: pointer;
}

.sign-up-area .rs-other-info span.left-side .form-check-input {
	position: absolute;
	margin-top: 3px;
	margin-left: -1.25rem;
}

.sign-up-area .rs-other-info .rs-link {
	color: #fff;
	font-weight: 400;
}

.sign-up-area .rs-other-info .rs-link.rs-reg-link {
	color: #ffc536;
	font-weight: 700;
}

.sign-up-area .rs-other-info .rs-link:hover {
	color: #ffc536;
}

.sign-up-area .rs-other-info .rs-link.rs-reg-link:hover {
	color: #ddaa27;
	font-weight: 700;
}

.sign-up-area .dropdown-divider {
	margin: 0;
	opacity: .5;
}

.sign-up-area .rs-other-info span.cursor-default {
	cursor: default;
}

.sign-up-area span.field-icon {
	padding: 0;
	color: #666;
	font-family: "Font Awesome 5 Free";
}

.select2-container {
	z-index: 4502;
	width: 100% !important;
}

.select2-dropdown {
	border: 1px solid #ddd !important;
}

.select2-container--default .select2-selection--single {
	border: none !important;
}

.select2-container--default .select2-selection--single:focus {
	border: none !important;
	outline: 0 solid !important;
	box-shadow: 0 0 0 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #555 !important;
	font-size: 14px !important;
	line-height: 16px !important;
}

.select2-container .select2-selection--single {
	height: 40px !important;
	border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #666 transparent transparent transparent !important;
	border-width: 7px 7px 0 7px !important;
	margin-left: -7px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #666 transparent !important;
	border-width: 0 7px 7px 7px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100% !important;
	top: 0 !important;
	right: 8px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 10px !important;
	padding-right: 28px !important;
	padding-top: 20px !important;
}

.registration-area-step-1 {
	width: 60%;
}

.row.form-inputs-wrapper .col-lg-6:nth-child(2n) {
	padding-left: 10px;
}

.row.form-inputs-wrapper .col-lg-6:nth-child(2n+1) {
	padding-right: 10px;
}

.rs-other-info.termes-policy {
	margin: 0;
}

.rs-other-info.termes-policy span {
	white-space: pre-line;
	word-wrap: break-word;
	display: block;
}

.rs-other-info.termes-policy a {
	color: #14732F;
	font-weight: 700;
	margin-left: 6px;
	transition: .3s;
}

.rs-other-info.termes-policy a:hover {
	color: #0d5421;
}

/* SIGN IN CSS END */
/* LIVE SUPPORT CSS START */
.live-support-content-area {
	/* height: 500px; */
	width: 360px;
	position: fixed;
	z-index: 3000;
	left: 20px;
	bottom: 70px;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.live-support-content-area.active {
	bottom: 90px;
	opacity: 1;
	visibility: visible;
}

.live-support-content-area.inactive {
	display: none;
	opacity: 0;
	visibility: hidden;
}

.live-support-form-input-wrapper {
	height: 350px;
	overflow-x: hidden;
	padding: 15px 20px;
	box-sizing: border-box;
}

span.live-support-content-close img {
	max-height: 25px;
}

.live-support-icon {
	position: fixed;
	bottom: 20px;
	left: 20px;
	color: #f5f5f5;
	height: 50px;
	align-items: center;
	z-index: 3000;
	cursor: pointer;
}

.live-support-icon .icon {
	position: relative;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
	background: #A61D67;
	height: 50px;
	z-index: 1;
	font-size: 25px;
}

.live-support-icon .icon:before {
	position: absolute;
	right: -7px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 8px solid #A61D67;
	content: "";
	transition: .3s;
}

.live-support-icon .text {
	transition: .3s;
	display: flex;
	padding: 0 20px;
	position: absolute;
	background: #A61D67;
	left: 0;
	top: 0;
	height: 50px;
	white-space: nowrap;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	font-weight: 600;
	font-size: 18px;
}

.live-support-icon:hover .icon {
	background: #f5f5f5;
	color: #A61D67;
}

.live-support-icon:hover .icon:before {
	border-left-color: #f5f5f5;
}

.live-support-icon:hover .text {
	opacity: 1;
	visibility: visible;
	left: 50px;
}

.live-support-icon.active .icon:before {
	display: none;
}

.live-support-icon.active .text {
	display: none;
}

span.live-support-content-close img {
	max-height: 10px;
}

span.live-support-content-close {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 3500;
	width: 10px;
	height: 10px;
	display: flex;
	cursor: pointer;
	transition: .3s;
}

span.live-support-content-close:hover {
	opacity: .6;
}

.live-support-content-header {
	height: 45px;
	color: #fff;
	padding: 10px;
	border-radius: 0;
	font-weight: 700;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.live-support-form-input-wrapper .floating-label {
	margin-bottom: 12px;
}

.live-support-form-input-wrapper .floating-input,
.live-support-form-input-wrapper .floating-textarea,
.live-support-form-input-wrapper .floating-select {
	background-color: transparent;
	border: none;
	border-radius: 0;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .8);
	padding: 6px 0;
	padding-top: 20px;
}

.live-support-form-input-wrapper .floating-input:focus,
.live-support-form-input-wrapper .floating-textarea:focus,
.live-support-form-input-wrapper .floating-select:focus {
	box-shadow: 0 0 0 0;
	border-color: #fff;
	background: transparent;
	color: #fff;
}

.live-support-form-input-wrapper .floating-label label {
	color: #fff;
	left: 0;
}

.live-support-form-input-wrapper .dropify-wrapper:hover {
	background-image: -webkit-linear-gradient(135deg, #7E4168 25%, transparent 25%, transparent 50%, #7E4168 50%, #7E4168 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #7E4168 25%, transparent 25%, transparent 50%, #7E4168 50%, #7E4168 75%, transparent 75%, transparent);
}

.live-support-form-input-wrapper .dropify-wrapper {
	color: #fff;
	background-color: transparent;
	border: 1px solid #E5E5E5;
}

.live-support-send-btn {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.live-support-send-btn button {
	display: flex;
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
	background: #333;
	border: none;
	font-size: 28px;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	padding-left: 5px;
	transition: .3s;
	position: relative;
	z-index: 1;
}

.live-support-send-btn button:hover {
	background: #333;
	color: #fff;
}

.live-support-send-btn button:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	content: "";
	border-radius: 50%;
	z-index: -1;
	transform: scale(1);
	transition: .3s;
}

.live-support-send-btn button:hover:before {
	transform: scale(0);
}

.admin-body .live-support-icon {
	left: auto;
	right: 25px;
}

.admin-body .live-support-icon .icon:before {
	right: auto;
	left: -7px;
	border-left: transparent;
	border-right: 8px solid #A61D67;
}

.admin-body .live-support-icon .text {
	left: auto;
	right: 0;
}

.admin-body .live-support-icon:hover .text {
	left: auto;
	right: 50px;
}

.admin-body .live-support-content-area {
	left: auto;
	right: 25px;
}

/* LIVE SUPPORT CSS END */
/* CHATBOX AREA CSS START */
section.chatbox-area {
	position: fixed;
	left: 10px;
	bottom: 0;
	width: 300px;
	z-index: 4000;
	border-radius: 0;
}

section.chatbox-area.inactive {
	display: none;
}

.chatbox-feedback span {
	display: flex;
	justify-content: center;
}

.chatbox-feedback .user-image img {
	max-height: 50px;
	border-radius: 50%;
	background: #fff;
}

span.feedback-message {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 18px;
}

span.feedback-icons button {
	background: transparent;
	border: none;
	margin: 0 7px;
	cursor: pointer;
}

span.feedback-icons button img {
	width: 41px;
	opacity: .7;
	transition: .3s;
}

span.feedback-icons button:hover img {
	opacity: 1;
}

.chatbox-feedback {
	padding: 25px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.chatbox-single-chat {
	display: flex;
	justify-content: space-between;
	margin: 40px 0;
}

.chatbox-single-chat-user-image {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	margin-top: -10px;
}

.chatbox-single-chat-user-image img {
	max-width: 40px;
	max-height: 40px;
	border-radius: 50%;
	background: #fff;
}

.chatbox-single-chat-user-text {
	display: flex;
	flex-direction: column;
	background: #fff;
	position: relative;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 0;
}

.chatbox-body {
	padding: 12px;
	height: 240px;
	overflow-x: hidden;
	overflow-y: auto;
}

.chatbox-single-chat-user-text span {
	margin-bottom: 8px;
}

.chatbox-single-chat-user-text span:last-child {
	margin-bottom: 0;
}

.chatbox-single-chat.chat-agent .chatbox-single-chat-user-image {
	margin-left: 10px;
	margin-right: 0;
}

.chatbox-single-chat-user-text .time {
	position: absolute;
	right: 15px;
	top: -16px;
	color: #f9f9f9;
	font-size: 10px;
	font-weight: 600;
}

.chatbox-single-chat-user-text:before {
	position: absolute;
	left: 0;
	top: -9px;
	width: 0;
	height: 0;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
	content: "";
}

.chatbox-single-chat.message-owner .chatbox-single-chat-user-text {
	border-top-left-radius: 0;
}

.chatbox-single-chat.chat-agent .chatbox-single-chat-user-text {
	border-top-right-radius: 0;
}

.chatbox-single-chat.chat-agent .chatbox-single-chat-user-text:before {
	left: auto;
	right: 0;
	border-left: 10px solid transparent;
	border-right: navajowhite;
}

.chatbox-single-chat:first-child {
	margin-top: 15px;
}

.chatbox-single-chat:last-child {
	margin-bottom: 5px;
}

.chatbox-form {
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .3);
	padding-top: 10px;
}

span.chatbox-upload-file {
	width: 10%;
}

.chatbox-form .dropify-wrapper {
	height: 100%;
	padding: 0;
	border: none;
	background-color: transparent;
}

.chatbox-form .dropify-message p:not(.dropify-error) {
	display: none;
}

.chatbox-form .dropify-wrapper .dropify-message span.file-icon {
	font-size: 20px;
	cursor: pointer;
}

.chatbox-form .dropify-wrapper:hover {
	background-image: -webkit-linear-gradient(135deg, #7E4168 25%, transparent 25%, transparent 50%, #7E4168 50%, #7E4168 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #7E4168 25%, transparent 25%, transparent 50%, #7E4168 50%, #7E4168 75%, transparent 75%, transparent);
}

.chatbox-form .dropify-wrapper .dropify-message {
	transform: translateY(0);
	cursor: pointer;
}

span.chatbox-textarea textarea {
	max-height: 70px;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, .7);
	font-size: 12px;
	color: #fff;
}

span.chatbox-textarea textarea:focus {
	outline: 0 solid;
}

span.chatbox-submit button {
	background: none;
	border: none;
	color: #fff;
	width: 25px;
	height: 40px;
	padding: 0;
	margin-right: 10px;
	cursor: pointer;
}

.chatbox-header {
	display: flex;
	align-items: center;
	color: #eee;
	font-size: 13px;
	height: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	padding: 6px;
	transition: .3s;
}

.chatbox-header span {
	display: flex;
	align-items: center;
}

.chatbox-header .right-side {
	margin-left: auto;
}

span.chatbox-header-user-icon img {
	max-height: 18px;
	background: #fff;
	border-radius: 50%;
	margin: 0 8px;
}

span.chatbox-close,
span.chatbox-minimize {
	cursor: pointer;
	font-size: 17px;
	margin: 0 7px;
	opacity: .7;
	transition: .3s;
}

span.chatbox-close:hover,
span.chatbox-minimize:hover {
	opacity: 1;
}

span.chatbox-header-text {
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	float: left;
}

.chatbox-area.active .chatbox-feedback,
.chatbox-area.active .chatbox-body,
.chatbox-area.active .chatbox-form,
.chatbox-area.active span.chatbox-settings,
.chatbox-area.active span.right-side {
	display: none;
}

section.chatbox-area.active span.chatbox-header-user-icon img {
	max-height: 32px;
}

.chatbox-area.active .chatbox-header {
	cursor: pointer;
}

.chatbox-area.active .chatbox-header {
	height: 50px;
}

/* CHATBOX AREA CSS END */
/****************************************
            MATCH DETAILS PAGE CSS
*****************************************/
/* GAME VIEW BUTTON LIST CSS START */
.game-view-btn-list-area ul {
	display: flex;
	justify-content: space-around;
	align-items: center;
	border-radius: 0;
	margin-bottom: 5px;
	background: #eee;
}

.game-view-btn-list-area ul li {
	font-size: 13px;
	color: #1E2531;
	width: 50%;
	text-align: center;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #bbb;
	transition: .3s;
	cursor: pointer;
	border-top: 3px solid #eee;
}

.game-view-btn-list-area ul li a {
	color: #1E2531;
	transition: .3s;
	display: flex;
	flex-basis: 100%;
	justify-content: center;
	height: 100%;
	align-items: center;
}

.game-view-btn-list-area ul li:last-child {
	border-right: none;
}

.game-view-btn-list-area ul li:hover {
	background: #fff;
}

.game-view-btn-list-area ul li.active {
	border-top-color: #14732F;
	background: #fff;
}

/* GAME VIEW BUTTON LIST AREA CSS END */
/* GAME BANNER SUMMARY AREA CSS START */
.single-game-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 230px;
}

.game-banner-match-summary {
	position: absolute;
	width: 60%;
	height: auto;
	background: #fff;
	z-index: 2500;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	border-radius: 0;
	box-shadow: 0 40px 30px -23px rgba(0, 0, 0, 0.75);
}

.game-banner-match-summary-inner {
	display: flex;
	position: relative;
	z-index: 1;
}

.game-banner-match-summary-inner .teams {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.game-banner-match-summary-inner .game-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
}

.game-banner-match-summary-inner .game-info span {
	padding: 7px 10px;
}

.game-banner-match-summary-inner .teams div {
	display: flex;
	align-items: center;
	padding: 7px 0;
	padding-left: 10px;
}

.game-banner-match-summary-inner .teams div:first-child {
	color: #fff;
	border-top-left-radius: 5px;
	font-size: 13px;
}

.game-banner-match-summary-inner .game-info span:first-child {
	color: #fff;
	font-size: 13px;
}

.game-banner-match-summary-inner:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 32px;
	background: #1E2531;
	content: "";
	z-index: -1;
	border-radius: 0;
}

.game-banner-match-summary-inner:after {
	position: absolute;
	left: 10px;
	bottom: 35px;
	width: calc(100% - 20px);
	height: 1px;
	background: #ddd;
	content: "";
}

.game-banner-match-summary-inner .teams div.non-colorable img {
	margin-right: 10px;
	display: flex;
}

.game-banner-match-summary-inner .teams div.non-colorable span {
	line-height: 23px;
	display: flex;
}

/* GAME BANNER SUMMARY AREA CSS END */
/* MATCH DETAILS GAME HEADER AREA CSS START */
.match-details-game-header {
	background: #14732F;
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 8px 12px;
	align-items: center;
}

.match-details-game-header.green {
	background: #14732F;
}

.match-details-game-header.purple {
	background: #473067;
}

.match-details-game-header.black {
	background: #1b1b1b;
}

.match-details-game-header.orange {
	background: #d96c23;
}

.match-details-game-header.blue {
	background: #1489ac;
}

.match-details-game-header span {
	display: flex;
}

.match-details-game-header .statistics img {
	display: flex;
	height: 15px;
	transition: .3s;
	opacity: .7;
	cursor: pointer;
}

.match-details-game-header .statistics img:hover {
	opacity: 1;
}

.match-details-game-header .text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 96%;
	display: inline-block;
}

/* MATCH DETAILS GAME HEADER AREA CSS END */
/* MATCH DETAILS GAME TAB AREA CSS START */
.nav.match-details-game-tab a {
	display: flex;
	color: #333;
	background: #ccc;
	height: 35px;
	align-items: center;
	padding: 0 16px;
	margin-right: 5px;
	border-radius: 0;
	font-size: 13px;
	transition: .3s;
	border-top: 3px solid #ccc;
}

.nav.match-details-game-tab a:hover,
.nav.match-details-game-tab a.active {
	background: #f9f9f9;
	border-top-color: #333;
}

.nav.match-details-game-tab.green a:hover,
.nav.match-details-game-tab.green a.active {
	border-top-color: #14732f;
}

.nav.match-details-game-tab.purple a:hover,
.nav.match-details-game-tab.purple a.active {
	border-top-color: #473067;
}

.nav.match-details-game-tab.megenta a:hover,
.nav.match-details-game-tab.megenta a.active {
	border-top-color: #a61f67;
}

.nav.match-details-game-tab.black a:hover,
.nav.match-details-game-tab.black a.active {
	border-top-color: #1b1b1b;
}

.nav.match-details-game-tab.orange a:hover,
.nav.match-details-game-tab.orange a.active {
	border-top-color: #d96c23;
}

.nav.match-details-game-tab.blue a:hover,
.nav.match-details-game-tab.blue a.active {
	border-top-color: #1489ac;
}

span.match-details-game-tab-favourite {
	position: relative;
}

span.match-details-game-tab-favourite i.zmdi {
	font-size: 22px;
	display: block;
}

span.match-details-game-tab-favourite .number {
	position: absolute;
	right: -10px;
	top: -4px;
	border: 1px solid #777;
	width: 12px;
	height: 12px;
	font-size: 8px;
	border-radius: 50%;
	z-index: 1;
	text-align: center;
	line-height: 10px;
	color: #666;
}

.nav.match-details-game-tab {
	background: #EEEEEE;
	padding: 5px;
	border-radius: 0;
	margin-bottom: 5px;
	margin-top: 5px;
}

.match-details-game-tab-area [class*='col-lg-'] {
	padding-left: 0;
	padding-right: 0;
	background: #081f31;
}

.match-details-game-tab-area .pre-match-bets-row .col-lg-6 {
	border-right: 1px solid #144d75;
}

.match-details-game-tab-area .pre-match-bets-row .col-lg-6:nth-child(2n) {
	border-right: none;
}

.match-details-game-tab-area .single-match-result {
	background: transparent;
	margin-top: 0;
}

.nav.match-details-game-tab-2 {
	margin-bottom: 5px;
}

.nav.match-details-game-tab-2 .single-event-type-list-item img {
	max-height: 40px;
	height: 40px;
	max-width: max-content;
	width: auto;
}

.nav.match-details-game-tab-2 .single-event-type-list-item {
	height: 55px;
	max-width: 55px;
}

.nav.match-details-game-tab-2 .single-event-type-list-item.active,
.nav.match-details-game-tab-2 .single-event-type-list-item:hover {
	max-width: 260px;
}

.nav.match-details-game-tab-2 .single-event-type-list-item .name {
	font-size: 18px;
	margin-right: 6px;
}

.match-details-game-tab-area .tab-content {
	background: #eee;
	border-radius: 0;
}

/* MATCH DETAILS GAME TAB AREA CSS END */
/* MATCH DETAILS GAME INFO AREA CSS START */
.match-details-game-info-area {
	background: #eee;
	margin-top: 5px;
	padding: 5px;
	border-radius: 0;
}

.match-details-game-info-wrapper {
	background: #e5e5e5;
	display: flex;
	align-items: center;
	font-size: 12px;
	padding: 0 6px;
}

.match-details-game-info-wrapper .icon {
	margin-right: 10px;
}

/* MATCH DETAILS GAME INFO AREA CSS END */
/****************************************
            ADMIN PAGE CSS
*****************************************/
section.admin-template-area {
	background: #F2F2F3;
	overflow: hidden;
}

.admin-content {
	background: #FDFDFD;
	margin-left: 5px;
	max-width: calc(83.333333% - 5px);
	flex: 0 0 calc(83.333333% - 5px);
	display: flex;
	flex-direction: column;
	padding: 14px;
	overflow: hidden;
}

/* ADMIN LEFT SIDEBAR CSS START */
section.admin-template-area .left-sidebar {
	/* padding-right: 8px !important; */
	/* display: flex;
  flex-direction: column; */
}

.admin-profile-image {
	width: 150px;
	height: 150px;
	background-size: cover;
	background-position: center;
	background-color: #fff;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	cursor: pointer;
	margin: 0 auto;
}

.admin-left-sidebar-toggle-btn-wrapper {
	background: #1E2531;
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 12px;
	height: 40px;
	font-size: 13px;
	align-items: center;
	border-radius: 0;
	margin-bottom: 5px;
}

.admin-left-sidebar-toggle-btn-wrapper .icon {
	font-size: 22px;
	display: flex;
	cursor: pointer;
}

.admin-profile-info-area {
	background: #fff;
	text-align: center;
	border-radius: 0;
	padding-top: 25px;
}

span.admin-profile-image-hover {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, .6);
	border-radius: 50%;
	font-size: 14px;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}

span.admin-profile-image-hover i.zmdi {
	font-size: 24px;
	margin-bottom: 7px;
}

.admin-profile-image:hover span.admin-profile-image-hover {
	opacity: 1;
	visibility: visible;
}

.admin-profile-username {
	font-weight: 500;
	font-size: 18px;
	padding: 20px 10px 5px;
}

.admin-profile-id {
	padding: 5px 10px;
	font-size: 12px;
	color: #777;
}

.admin-profile-info-show-more-header {
	text-align: right;
	padding: 10px;
	font-size: 11px;
	cursor: pointer;
	transition: .3s;
}

.admin-profile-info-show-more-header:hover {
	color: #777;
}

.admin-profile-info-show-more-header[aria-expanded="true"] .show-more,
.admin-profile-info-show-more-header[aria-expanded="false"] .show-less {
	display: none;
}

.admin-profile-info-show-more-body .top-part {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	display: flex;
	height: 70px;
	justify-content: space-around;
	align-items: center;
	padding: 12px 0;
}

span.registration-login-date {
	display: flex;
	flex-direction: column;
	font-size: 10px;
	color: #777;
	padding: 0 15px;
}

span.registration-login-date .date {
	color: #111;
	font-weight: 700;
	font-size: 12px;
	margin-top: 5px;
}

span.vertical-divider {
	width: 1px;
	height: 100%;
	background: #ccc;
}

.admin-profile-info-show-more-body .bottom-part {
	padding: 12px 0;
}

.admin-profile-balance {
	background: #1B222D;
	border-radius: 0;
	color: #fff;
	padding: 15px;
}

.main-balance h4 {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.main-balance p {
	font-size: 12px;
	margin-bottom: 0;
}

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

.bonus-balance h5 {
	font-size: 11px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.bonus-balance p {
	font-size: 10px;
	margin-bottom: 0;
}

.bonus-balance {
	opacity: .8;
}

.admin-profile-sidebar-option-header {
	background: #fff;
	height: 45px;
	display: flex;
	padding: 12px;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	cursor: pointer;
	position: relative;
	transition: .3s;
	border-radius: 0;
}

.admin-profile-sidebar-option-header[aria-expanded="true"] {
	border-radius: 0;
}

.admin-profile-sidebar-option-header:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: #1B222D;
	content: "";
	border-radius: 0;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.admin-profile-sidebar-option-header:hover:before,
.left-sidebar:not(.collaps-active) .admin-profile-sidebar-option-header[aria-expanded="true"]:before,
.left-sidebar.collaps-active .admin-profile-sidebar-option-header.active:before {
	opacity: 1;
	visibility: visible;
}

.admin-profile-sidebar-option-header .icon {
	font-size: 20px;
	margin-right: 10px;
}

.admin-profile-sidebar-option-header span {
	display: flex;
	align-items: center;
}

.admin-profile-sidebar-option-header[aria-expanded="true"] .accordion-icon i.fas.fa-chevron-down,
.admin-profile-sidebar-option-header[aria-expanded="false"] .accordion-icon i.fas.fa-chevron-up {
	display: none;
}

.admin-profile-sidebar-option-header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.admin-profile-sidebar-option-body {
	background: #EDECEF;
	padding: 5px;
}

.admin-profile-sidebar-option-body a {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: #333;
	background: #fff;
	height: 35px;
	padding: 10px;
	justify-content: center;
	margin-bottom: 5px;
	transition: .3s;
	position: relative;
	border-radius: 0;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
}

.admin-profile-sidebar-option-body a:last-child {
	margin-bottom: 0;
}

.admin-profile-sidebar-option-body a:hover,
.admin-profile-sidebar-option-body a.active {
	font-weight: 700;
	padding-left: 15px;
}

.admin-profile-sidebar-option-body a:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: #1B222D;
	content: "";
	border-radius: 0;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
}

.admin-profile-sidebar-option-body a:hover:before,
.admin-profile-sidebar-option-body a.active:before {
	opacity: 1;
	visibility: visible;
}

.admin-profile-sidebar-option-area {
	position: relative;
}

.admin-profile-left-sidebar-footer {
	background: #fff;
	flex: 1;
	border-radius: 0;
	transition: .3s;
	margin-top: 5px;
}

.admin-profile-sidebar-option {
	margin-top: 5px;
}

/* Avater Upload Area Css Start */
.admin-avater-list-area,
.admin-menu-list-area {
	background: #fff;
	position: fixed;
	top: 123px;
	left: 17.6%;
	z-index: 7000;
	width: 400px;
	box-shadow: 0 0 7px #999;
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding-top: 10px;
}

.admin-menu-list-area {
	left: 70px !important;
}

.admin-avater-list-area.active,
.admin-menu-list-area.active {
	opacity: 1;
	visibility: visible;
}

/* .admin-menu-list-area .admin-profile-sidebar-option-body {
    display: none;
}
.admin-menu-list-area .admin-profile-sidebar-option-body.active {
    display: block;
} */
span.admin-avater-list-area-close {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.admin-avater-upload-droppable-area {
	width: 100%;
	height: 160px;
	border: 2px dashed #bbb;
	cursor: pointer;
	position: relative;
}

input.admin-avater-upload-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.admin-avater-upload-area {
	padding: 20px;
	border-bottom: 1px solid #ccc;
	display: none;
}

.admin-avater-upload-instruction {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.admin-avater-upload-instruction span {
	color: #777;
	font-size: 14px;
	margin-bottom: 5px;
	display: flex;
}

.admin-avater-upload-instruction .up-btn {
	background: #999;
	color: #fff;
	font-size: 13px;
	padding: 8px 22px;
	border-radius: 0;
	height: 35px;
	align-items: center;
	justify-content: center;
}

.admin-avater-upload-instruction .size {
	font-size: 12px;
	font-style: italic;
	margin-top: 4px;
}

.admin-avater-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 280px;
	padding: 6px;
	overflow: hidden;
	overflow-y: auto;
}

.admin-single-avater-item img {
	max-height: 60px;
}

.admin-single-avater-item {
	display: flex;
	margin: 7px 12px;
	cursor: pointer;
	transition: .3s;
	border: 4px solid #eee;
	border-radius: 50%;
}

.admin-single-avater-item:hover,
.admin-single-avater-item.active {
	border-color: #1E2531;
}

button.admin-avater-save-btn {
	display: flex;
	margin: 15px auto 25px;
	text-align: center;
	background: #038C24;
	border: none;
	color: #fff;
	font-family: "Oswald";
	font-size: 15px;
	padding: 5px 30px;
	border-radius: 0;
	height: 35px;
	align-items: center;
	justify-content: center;
	line-height: 15px;
	cursor: pointer;
}

.admin-avater-list-area-arrow,
.admin-menu-list-area-arrow {
	position: absolute;
	left: -10px;
	top: 23px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-right: 10px solid #ffff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	content: "";
	z-index: 200000;
}

/* Avater Upload Area Css End */
/* ADMIN LEFT SIDEBAR CSS END */
/* ADMIN RIGHT SIDEBAR CSS START */
.admin-content .tab-content .tab-pane {
	/* height: 100% !important; */
	width: 100%;
}

.admin-content .tab-content .tab-pane .row {
	height: auto !important;
}

.admin-content .tab-content {
	display: flex;
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 0;
	border-top: none;
	padding: 20px;
	overflow: hidden;
	overflow-y: auto;
	position: relative;
}

.admin-page-close-btn {
	position: absolute;
	right: 18px;
	top: 5px;
	font-size: 25px;
	color: #999;
	cursor: pointer;
	transition: .3s;
}

.admin-page-close-btn:hover {
	color: #666;
}

.admin-content a.nav-item.nav-link {
	color: #1E2531;
	font-size: 14px;
	margin: 0;
	padding: 6px 40px;
	border-radius: 0;
	border: none;
	border-right: 1px solid #ddd;
	border-top: 1px solid #ddd;
	position: relative;
	white-space: nowrap;
	cursor: pointer;
}

.admin-content .nav.nav-tabs {
	overflow: hidden;
	overflow-x: auto;
	flex-wrap: nowrap;
}

.admin-content a.nav-item.nav-link:first-child {
	border-top-left-radius: 4px;
	border-left: 1px solid #ddd;
}

.admin-content a.nav-item.nav-link:last-child {
	border-top-right-radius: 4px;
}

.admin-content a.nav-item.nav-link:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: #fff;
	content: "";
	transition: .3s;
}

.admin-content a.nav-item.nav-link:hover:before,
.admin-content a.nav-item.nav-link.active:before {
	background: #1E2531;
}

.admin-content a.nav-item.nav-link:first-child:hover:before,
.admin-content a.nav-item.nav-link:first-child.active:before {
	border-top-left-radius: 4px;
}

.admin-content a.nav-item.nav-link:last-child:hover:before,
.admin-content a.nav-item.nav-link:last-child.active:before {
	border-top-right-radius: 4px;
}

.admin-content a.nav-item.nav-link.active {
	color: #1E2531;
	font-weight: 700;
}

.admin-content-header {
	margin-bottom: 15px;
}

.admin-content .tab-content.custom-scrollbar-2 .ps__rail-y,
.admin-content .tab-content.custom-scrollbar-2.ps.ps--active-y > .ps__rail-y {
	background: #ececec;
	border: none;
}

.admin-content .tab-content.custom-scrollbar-2 .ps__thumb-y {
	background-color: #c4c4c4;
}

.admin-content .tab-content.custom-scrollbar-2.ps.ps--active-y {
	padding-right: 20px;
}

.admin-profile-update-form .form-group {
	margin: 15px 0;
}

.admin-profile-update-form .form-group label {
	font-weight: 700;
	color: #444;
	font-size: 13px;
	display: block;
}

.admin-profile-update-form .form-group .form-control {
	background: #f9f9f9;
	border-color: #ddd;
	border-radius: 0;
	font-size: 14px;
	height: 35px;
	position: relative;
}

.admin-profile-update-form .form-group .form-control:disabled,
.admin-profile-update-form .form-group .form-control[readonly] {
	background: #f9f9f9;
	border-color: #eee;
}

.input-group.date.custom-bootstrap-ui-datepicker .input-group-addon {
	position: absolute;
	right: 11px;
	top: 48%;
	transform: translateY(-50%);
	z-index: 1000;
}

.admin-profile-update-form .form-group .form-control:focus {
	outline: 0 solid;
	box-shadow: 0 0 0 0;
}

.admin-profile-update-form .form-group textarea.form-control {
	height: 160px;
}

.admin-profile-update-form .form-group .select2-container .select2-selection--single {
	height: 35px !important;
	background: #f9f9f9;
}

.admin-profile-update-form .form-group .ng2-floating-select-2 .select2-container .select2-selection--single {
	border: none;
}

.admin-profile-update-form .form-group .select2-container .select2-selection--single .select2-selection__rendered {
	padding-top: 5px;
	padding-bottom: 5px;
	height: 100%;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 0;
}

.admin-profile-update-form .form-group .ng2-floating-select-2 .select2-container .select2-selection--single .select2-selection__rendered {
	padding: .375rem .75rem !important;
	padding-right: 28px !important;
}

.admin-profile-update-form .form-group .ng2-floating-select-2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
	margin-top: -3px;
}

.admin-profile-update-form .form-group .ng2-floating-select-2 .ngx-select__toggle:hover {
	color: #333;
	background-color: #f9f9f9 !important;
	border-color: #ddd !important;
}

input.admin-profile-update-form-submit {
	background: #14732F;
	color: #fff;
	border: none;
	margin-top: 30px;
	border-radius: 0;
	/* font-family: "Oswald"; */
	font-size: 13px;
	padding: 8px 30px;
	transition: .3s;
	cursor: pointer;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: 600;
}

input.admin-profile-update-form-submit:hover {
	background: #0e5221;
	color: #fff;
}

input.admin-profile-update-form-submit:focus {
	outline: 0 solid;
}

input.admin-profile-update-form-submit.disabled {
	opacity: .7;
	cursor: default;
}

.form-group-input-wrapper {
	position: relative;
}

.form-group-input-wrapper .input-validation {
	color: #ff0c0c;
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	font-size: 11px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 0;
}

.form-group-input-wrapper .input-validation.textarea-validation {
	top: 10px;
	transform: translateY(0);
}

.row.admin-profile-table.justify-content-center .col-lg-12 {
	padding-left: 0;
	padding-right: 0;
}

.admin-profile-table table tbody td {
	border-top: none;
	border-bottom: 1px solid #eee;
	transition: .3s;
	vertical-align: middle;
	font-size: 14px;
}

.admin-profile-table table tbody tr:first-child td {
	border-top: 1px solid #eee;
}

.admin-profile-table table tbody tr:nth-child(2n) td {
	background: #fafafa;
}

.admin-profile-table table tbody tr:nth-child(2n):hover td,
.admin-profile-table table tbody tr:nth-child(2n+1):hover td {
	background: #e9e9e9;
}

.admin-profile-table table tbody tr:nth-child(2n+1) td {
	background: #f3f3f3;
}

.admin-profile-table table.table thead th {
	border-bottom: 1px solid #dee2e6;
	background: #fafafa;
	font-size: 14px;
	vertical-align: middle;
	white-space: nowrap;
}

.admin-profile-table table tbody td small {
	display: block;
}

.table-pagination {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 30px;
}

.table-pagination ul {
	display: flex;
	justify-content: center;
}

.table-pagination ul li {
	display: flex;
}

.table-pagination ul li a {
	display: flex;
	width: 25px;
	height: 25px;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	border: 1px solid #ddd;
	border-left: none;
	color: #1B222D;
	transition: .3s;
	margin: 0;
}

.table-pagination ul li:first-child a {
	border-left: 1px solid #ddd;
}

.table-pagination ul li a:hover,
.table-pagination ul li.active a {
	color: #fff;
	background: #1B222D;
}

.table-pagination ul li.active a {
	cursor: default;
	pointer-events: none;
}

#nav-view-profile table tbody tr td:first-child {
	font-weight: 700;
}

.admin-profile-condition {
	position: relative;
	min-height: 35px;
	border-radius: 0;
	background: #eee;
	padding: 8px;
	font-size: 14px;
	padding-left: 12px;
	padding-right: 40px;
	margin-bottom: 15px;
}

.admin-profile-condition .icon {
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	background: #ccc;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.admin-profile-condition .colored-text {
	display: block;
	color: #e44a3f;
}

a.action-refund {
	background: #e44a3f;
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 5px 10px;
	transition: .3s;
	cursor: pointer;
}

a.action-refund:hover {
	background: #c3362c;
	color: #fff;
}

/* ADMIN RIGHT SIDEBAR CSS END */
/* ADMIN COLLAPS ACTION CSS START */
.admin-content.collaps-active {
	-ms-flex: 0 0 calc(100% - 66px);
	flex: 0 0 calc(100% - 66px);
	max-width: calc(100% - 66px);
}

.admin-left-sidebar-toggle-btn-wrapper .text {
	white-space: nowrap;
}

.collaps-active .admin-left-sidebar-toggle-btn-wrapper .text,
.collaps-active span.admin-profile-image-hover,
.collaps-active .admin-profile-username,
.collaps-active .admin-profile-id,
.collaps-active .admin-profile-info-show-more-accordion-area,
.collaps-active .admin-profile-balance,
.collaps-active .admin-profile-sidebar-option-header span.right-side,
.collaps-active .admin-profile-sidebar-option-header span.name,
.collaps-active .admin-profile-sidebar-option-body-wrapper {
	display: none;
}

.collaps-active .admin-profile-image {
	width: 35px;
	height: 35px;
}

.collaps-active .admin-profile-info-area {
	padding: 3px;
}

.collaps-active .admin-left-sidebar-toggle-btn-wrapper,
.collaps-active .admin-profile-sidebar-option-header {
	justify-content: center;
}

.collaps-active .admin-left-sidebar-toggle-btn-wrapper .icon {
	width: 42px;
	height: 40px;
	justify-content: center;
	align-items: center;
}

.collaps-active .admin-left-sidebar-toggle-btn-wrapper {
	padding: 0;
}

.collaps-active .admin-profile-sidebar-option-header .icon {
	font-size: 24px;
	margin-right: 0;
	cursor: pointer;
}

.collaps-active .admin-profile-sidebar-option-header .left-side {
	padding-right: 0;
}

.collaps-active .admin-profile-sidebar-option-header {
	padding: 0;
}

.collaps-active .admin-profile-sidebar-option-header-wrapper {
	justify-content: center;
	height: 100%;
}

.collaps-active .admin-profile-sidebar-option-header[aria-expanded="true"] {
	border-radius: 0;
}

.admin-menu-list-area {
	padding-top: 0;
	width: 200px;
}

.admin-menu-list-area.profile {
	top: 161px;
}

.admin-menu-list-area.profile.active {
	top: 171px;
}

.admin-menu-list-area.wallet {
	top: 211px;
}

.admin-menu-list-area.wallet.active {
	top: 221px;
}

.admin-menu-list-area.help {
	top: 261px;
}

.admin-menu-list-area.help.active {
	top: 271px;
}

.admin-menu-list-area-arrow {
	border-right: 10px solid #cecece;
}

.admin-profile-sidebar-option-header.active:before {
	opacity: 1;
	visibility: visible;
}

/* ADMIN COLLAPS ACTION CSS START */
/* USER PROFILE AFTER LOGIN CSS START */
a.logged-in-user {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
}

a.logged-in-user span {
	display: flex;
	padding: 0;
	border: none;
}

a.logged-in-user span.user-image {
	flex-shrink: 0;
}

a.logged-in-user span.user-image img {
	height: 40px;
	width: auto;
	display: block;
}

a.logged-in-user span.user-balance {
	flex-direction: column;
	font-size: 13px;
	margin-left: 10px;
}

a.logged-in-user span.user-balance .bottom-balance {
	font-size: 10px;
	color: #F4E849;
	font-weight: 700;
}

.after-login-dropdown-menu .nav {
	flex-direction: column;
	text-align: center;
	padding: 5px;
}

.after-login-dropdown-menu .nav a {
	color: #fff;
	margin-bottom: 5px;
	border-color: #fff;
	font-size: 15px;
}

.after-login-dropdown-menu .nav a:last-child {
	margin-bottom: 0;
}

.after-login-dropdown-menu .nav a:hover,
.after-login-dropdown-menu .nav a.active {
	background: #fff;
	color: #1e2531;
}

.dropdown-menu.after-login-dropdown-menu {
	padding: 0;
	/* top: 10px !important; */
}

/* USER PROFILE AFTER LOGIN CSS END */
/* SOME GENERAL CSS START */
.form-control:focus {
	border-color: transparent;
	outline: 0;
}

/* SOME GENERAL CSS END */
/* RESPONSIVE SLICKNAV MENU CSS START */
.slicknav_menu {
	display: none;
}

.slicknav_menu {
	background: transparent;
	padding: 0;
}

.slicknav_btn {
	margin: 0;
	text-shadow: none;
	background-color: #000;
	padding: 8px 12px;
	font-size: 22px;
}

.slicknav_nav {
	position: fixed;
	background: #1E2531;
	width: 100%;
	left: 0;
	top: 64px;
	z-index: 10000;
	border-bottom: 3px solid #A61D67;
	text-align: left;
}

.slicknav_nav li {
	border-top: 1px solid #555;
}

.slicknav_nav li a i.fas {
	display: none;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background: #FFC536;
	color: #1E2531;
}

.slicknav_nav .slicknav_row:hover a {
	color: #1E2531;
}

.slicknav_nav a {
	font-size: 18px;
}

/* RESPONSIVE SLICKNAV MENU CSS END */
/* RESPONSIVE CUSTOM MENU CSS START */
.responsive-main-menu-wrapper,
.responsive-main-menu .dropdown-menu {
	position: fixed !important;
	background: #1E2531;
	width: 100%;
	left: 0;
	z-index: 10000;
	text-align: left;
}

.responsive-main-menu-wrapper {
	top: 64px !important;
	border-bottom: 3px solid #A61D67;
}

.responsive-main-menu .dropdown-menu {
	transform: translate3d(0px, 0px, 0px) !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 0 !important;
}

.responsive-main-menu .dropdown-menu .responsive-main-menu-wrapper {
	-webkit-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	-moz-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	-ms-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	-o-transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	transition: max-height 0.3s, opacity 0.2s 0.1s, visibility 0s 0.3s;
	max-height: 0;
	display: block;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}

.responsive-main-menu.show .dropdown-menu .responsive-main-menu-wrapper {
	-webkit-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	-moz-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	-ms-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	-o-transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	transition: max-height 0.3s, opacity 0.2s, visibility 0s;
	max-height: 390px;
	opacity: 1;
	visibility: visible;
}

.responsive-main-menu-wrapper li {
	border-top: 1px solid #555;
}

.responsive-main-menu-wrapper li a:hover {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background: #FFC536;
	color: #1E2531;
}

.responsive-main-menu-wrapper li a {
	font-size: 18px;
	color: #fff;
	padding: 5px 10px;
	margin: 2px 5px;
	display: block;
}

.responsive-main-menu-wrapper ul {
	flex-direction: column;
}

.responsive-main-menu-wrapper ul li {
	width: 100%;
}

.responsive-main-menu-wrapper ul li ul {
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	height: 0;
}

.responsive-main-menu-wrapper ul li:hover ul {
	opacity: 1;
	visibility: visible;
	height: max-content;
}

.responsive-main-menu button,
.responsive-main-menu a.dropdown-toggle {
	cursor: pointer;
	background: #0C1422;
	border: none;
	color: #fff;
	font-size: 20px;
	padding: 4px 15px;
	border-radius: 0;
}

.responsive-main-menu .dropdown-toggle::after {
	display: none;
}

.responsive-main-menu-wrapper ul li ul li a {
	font-size: 90%;
	padding-left: 25px;
}

/* RESPONSIVE CUSTOM MENU CSS END */
/* PRELOADER CSS START */
#preloader {
	position: fixed;
	z-index: 25000;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

#preloader img {
	max-height: 60px;
}

.preloader-spin {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}

#preloader img.preloader-image {
	max-height: 30px;
}

/* PRELOADER CSS END */
/* LIVE EVENT FOR MOBILE CSS START */
.live-events-in-mobile {
	background: #ddd;
	padding: 10px 6px;
	display: none;
}

.live-events-in-mobile-wrapper {
	overflow: hidden;
	overflow-x: auto;
	display: flex;
	flex-wrap: nowrap;
	flex-shrink: 0;
}

.live-events-in-mobile-wrapper::-webkit-scrollbar {
	display: none;
}

.single-live-events-in-mobile {
	background: #fff;
	border-radius: 0;
	margin-right: 10px;
	width: 94%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	flex-shrink: 0;
	padding: 13px;
	min-height: 131px;
}

.single-live-events-in-mobile:last-child {
	margin-right: 0;
}

.single-live-events-in-mobile-header span {
	display: flex;
}

span.single-live-events-in-mobile-icon img {
	max-height: 20px;
}

.single-live-events-in-mobile-header {
	display: flex;
	align-items: center;
}

span.single-live-events-in-mobile-icon {
	margin-right: 10px;
}

span.single-live-events-in-mobile-name {
	font-weight: 700;
	font-size: 14px;
}

.single-live-events-in-mobile-team-name-score {
	display: flex;
	justify-content: space-between;
	margin: 10px 0;
}

.single-live-events-in-mobile-team-name-score span {
	display: flex;
	align-items: center;
}

span.single-live-events-in-mobile-team-name {
	width: 84%;
	overflow: hidden;
}

span.single-live-events-in-mobile-team-score .team-score {
	background: transparent;
	color: #00A651;
	font-size: 15px;
	padding: 0;
	min-width: auto;
}

span.single-live-events-in-mobile-team-score .separator {
	font-size: 15px;
	font-weight: 700;
	color: #aaa;
	margin: 0 5px;
}

span.single-live-events-in-mobile-team-name .team-name {
	display: inline-block;
	color: #333;
}

span.single-live-events-in-mobile-team-name .separator {
	margin: 0 5px;
}

.single-live-events-in-mobile-summary {
	font-size: 12px;
	color: #777;
}

/* LIVE EVENT FOR MOBILE CSS END */
/* mCS SCROLLBAR CSS START */
.mCSB_scrollTools {
	width: 8px !important;
	opacity: 1 !important;
	filter: "alpha(opacity=100)" !important;
	-ms-filter: "alpha(opacity=100)" !important;
}

.mCSB_outside + .mCSB_scrollTools {
	right: 0 !important;
}

.mCustomScrollbar:not(.mCS_no_scrollbar) .mCSB_container {
	margin-right: 8px !important;
}

.tab-pane.custom-scrollbar-2 .mCSB_outside + .mCSB_scrollTools {
	right: -13px !important;
}

.tab-pane.custom-scrollbar-2.mCustomScrollbar:not(.mCS_no_scrollbar) .mCSB_container {
	margin-right: 0 !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
	width: 6px !important;
	background-color: #dadada !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #fff !important;
	width: 6px !important;
}

/* mCS SCROLLBAR CSS END */
/* NGX SCROLLBAR CSS START */
.custom-scrollbar-2 {
	--scrollbar-color: #dadada !important;
	--scrollbar-container-color: #dadada !important;
	--scrollbar-thumb-color: #fff !important;
	--scrollbar-thumb-hover-color: #fff !important;
	--scrollbar-border-radius: 0 !important;
	--scrollbar-size: 6px !important;
	--scrollbar-padding: 0 !important;
	/* --scroll-view-margin: 0 3px 0 0 !important; */
	--scroll-view-color: transparent !important;
}

ng-scrollbar-x.ng-scrollbar-visible[_ngcontent-c11],
ng-scrollbar-y.ng-scrollbar-visible[_ngcontent-c11] {
	margin-left: 3px !important;
}

.live-in-play-carousel-parent {
	--scrollbar-color: transparent !important;
	--scrollbar-container-color: transparent !important;
	--scrollbar-thumb-color: #fff !important;
	--scrollbar-thumb-hover-color: #fff !important;
	--scrollbar-border-radius: 0 !important;
	--scrollbar-size: 6px !important;
	--scrollbar-padding: 0 0 6px 0 !important;
	--scroll-view-margin: 0 !important;
	--scroll-view-color: transparent !important;
	cursor: pointer !important;
}

[trackY=true][_nghost-c11] > .ng-scrollbar-layout[_ngcontent-c11] > .ng-scrollbar-layout[_ngcontent-c11] > .ng-scroll-view-container[_ngcontent-c11] > .ng-scroll-view[_ngcontent-c11] {
	width: calc(100% + 6px) !important;
}

/* NGX SCROLLBAR CSS END */
/* HEADER FIX CSS START */
.game-content-area,
.admin-template-area {
	margin-top: 68px;
}

/* HEADER FIX CSS END */
.tab-d-none {
	display: none;
}

/* SOME FIX AFTER CONVERTING ANGULAR START */
app-user-profile,
app-user-wallet,
app-help-desk {
	display: flex;
	flex-direction: column;
	height: 100% !important;
}

.admin-content .tab-content {
	height: calc(100% - 70px);
}

app-view-profile,
app-edit-profile,
app-change-club,
app-my-followers,
app-bet-history,
app-change-password,
app-make-deposit,
app-deposit-history,
app-coin-transfer,
app-withdraw,
app-withdraw-history,
app-statement,
app-submit-complain,
app-home-layout,
app-complain-history {
	width: 100%;
}

/* SOME FIX AFTER CONVERTING ANGULAR END */
/* DATATABLE CSS START */
.dataTables_wrapper .dataTables_length {
	font-size: 13px !important;
	font-weight: 700 !important;
}

.dataTables_wrapper .dataTables_length select {
	border-radius: 0;
	margin: 0 5px;
	padding: 0 8px;
}

.dataTables_wrapper .dataTables_length select:focus {
	outline: 0 solid;
}

.dataTables_wrapper .dataTables_filter input[type=search] {
	border: 1px solid #ccc;
	border-radius: 0;
	color: #212529 !important;
	font-size: 13px;
	height: 30px;
	padding: 0 15px;
}

.dataTables_wrapper .dataTables_filter {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 5px;
}

.dataTables_wrapper .dataTables_filter input[type=search]:focus {
	outline: 0 solid;
}

table.dataTable.no-footer {
	border-bottom-color: #dee2e6 !important;
}

table.dataTable {
	margin-bottom: 12px !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
	color: #212529 !important;
}

.dataTables_wrapper .dataTables_info {
	font-size: 13px !important;
	font-weight: 700 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	font-size: 13px !important;
	background: #fff !important;
	border-color: #ccc !important;
	width: 30px !important;
	height: 30px !important;
	text-align: center !important;
	padding: 0 !important;
	line-height: 29px !important;
	margin: 0 3px !important;
	color: #212529 !important;
	border-radius: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate span .paginate_button.current,
.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
	background: #1A5685 !important;
	color: #fff !important;
	border-radius: 0 !important;
	border-color: #1A5685 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
	width: auto !important;
	padding: 0 10px !important;
	border-color: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
	background: transparent !important;
	color: #1A5685 !important;
}

.dataTables_wrapper .dataTables_paginate {
	margin-bottom: 20px !important;
}

/* DATATABLE CSS END */
/* ANGULAR PERFECT SCROLLBAR CSS START */
.custom-scrollbar-2 {
	width: 100%;
	max-width: 100%;
}

perfect-scrollbar > .ps {
	width: 100% !important;
	max-width: 100% !important;
}

perfect-scrollbar > .ps.ps--active-y > .ps__rail-y {
	width: 6px !important;
	background: #dadada !important;
	border: none !important;
	border-radius: 0;
}

.custom-scrollbar-2 .ps__thumb-y {
	background-color: #fff !important;
	width: 6px !important;
	border-radius: 0;
}

.custom-scrollbar-2 .ps.ps--active-y .ps-content {
	padding-right: 6px;
}

/* ANGULAR PERFECT SCROLLBAR CSS END */
/* ANGULAR MATERIAL LODING BAR CSS START */
.mat-progress-bar {
	position: absolute !important;
	z-index: 2002;
	bottom: 0;
	left: 0;
	height: 2px !important;
}

.mat-progress-bar-secondary.mat-progress-bar-fill.mat-progress-bar-element {
	background: #ff1b1b;
}

.mat-progress-bar-buffer.mat-progress-bar-element {
	background: #FFDF1B;
}

/* ANGULAR MATERIAL LODING BAR CSS END */
/* NEW LAYOUT CSS START */
.logo-list.logo-list-stacked ul li {
	background: #fff;
	width: 75px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 8px;
	margin: 5px;
	flex-direction: column;
}

.logo-list.logo-list-stacked ul {
	display: flex;
	flex-wrap: wrap;
}

.footer-bg-area {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.left-sidebar,
.game-area,
.right-sidebar,
.single-match-result {
	background: transparent;
	padding: 0;
}

.custom-scrollbar-2 .ps.ps--active-y .ps-content {
	padding-right: 8px;
}

.favourite-card {
	margin-bottom: 5px;
}

.left-sidebar-tab-search-wrapper {
	margin-top: 5px;
	margin-bottom: 5px;
}

.betslip-count-box {
	position: fixed;
	right: 0;
	top: 50%;
	background: #23507c;
	width: 80px;
	height: 70px;
	z-index: 10000;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
	box-shadow: 0 0 8px #4a7568;
	border-left: 3px solid #F4E849;
	text-transform: uppercase;
}

.betslip-count-box:before {
	position: absolute;
	left: 5px;
	top: 5px;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #fff;
	content: "";
	opacity: .3;
}

.betslip-count-box span.betslip-text-wrapper {
	position: relative;
	z-index: 1;
}

.betslip-count-box span.betslip-text-wrapper .number {
	position: absolute;
	right: -5px;
	top: -1px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #F4E849;
	content: "";
	color: #23507c;
	transition: .3s;
	-webkit-animation: scale-up-center 2s cubic-bezier(0.680, -0.550, 0.265, 1.550) infinite alternate both;
	animation: scale-up-center 2s cubic-bezier(0.680, -0.550, 0.265, 1.550) infinite alternate both;
}

@-webkit-keyframes scale-up-center {
	0% {
		-webkit-transform: scale(0.2);
		transform: scale(0.2);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale-up-center {
	0% {
		-webkit-transform: scale(0.2);
		transform: scale(0.2);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.betslip-collapse {
	background: #23507c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 13px;
	height: 34px;
	padding: 10px;
	width: 100%;
	cursor: pointer;
	margin-bottom: 5px;
}

.betslip-collapse span {
	display: flex;
	align-items: center;
}

.betslip-card-header.no-border {
	border: none;
}

.header-area {
	padding: 0;
}

.container-fluid.header-top-area {
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	padding: 0;
	height: 40px;
}

.footer-top-left,
.footer-top-left ul:not(.dropdown-menu),
.footer-top-right,
.footer-top-right ul:not(.dropdown-menu) {
	display: flex;
	align-items: center;
	justify-content: left;
	height: 55px;
}

.footer-top-left ul li a {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-right: 1px solid rgba(255, 255, 255, .3);
	transition: .3s;
	color: #fff;
}

.footer-top-left ul li a:hover {
	background: #0e3754;
	color: #F4E849;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-top-right,
.footer-top-right ul:not(.dropdown-menu) {
	justify-content: flex-end;
}

.sign-up-area a,
.sign-up-area span {
	font-family: "Open Sans", sans-serif;
	border: none;
	padding: 0;
}

.language-list .btn {
	background: transparent;
	padding: 0;
	display: flex;
	align-items: center;
	color: #fff;
	border: none;
}

.language-list img:not(.dropdown-icon) {
	height: 16px;
	border-radius: 50%;
	width: 16px;
}

.language-list .dropdown-menu li a img {
	margin-right: 10px;
}

.language-list .dropdown-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: #fff;
}

.language-list .dropdown-menu {
	background: #23507c;
	border-radius: 0;
	border: none;
	box-shadow: 0 0 5px #334e45;
}

.footer-top-right ul li a,
.footer-top-right ul li button,
.language-list .btn,
.header-time,
.sign-up-area span.register {
	font-size: 13px;
	font-weight: 600;
	height: 40px;
	display: flex;
	align-items: center;
	border-left: 1px solid rgba(255, 255, 255, .3);
	padding: 0 20px;
}

.footer-top-right ul li a:hover,
.header-time:hover,
.sign-up-area span.register:hover,
.footer-top-right ul li button:hover,
.footer-top-right ul li a[aria-expanded="true"],
.footer-top-right ul li button[aria-expanded="true"] {
	background: #123a54;
	color: #F4E849;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.footer-top-right ul.dropdown-menu li a {
	border-left: none;
	padding: 0;
	height: auto;
}

.footer-top-right ul.dropdown-menu li a:hover {
	border: none;
	background: transparent;
}

a.logged-in-user span.user-image img {
	height: 30px;
	width: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.main-menu ul li a {
	color: #fff;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	padding: 15px;
	font-weight: 600;
}

.container-fluid.header-bottom-area .row {
	height: 50px;
	margin-bottom: 0.5px;
}

.game-content-area {
	margin-top: 0;
}

.game-other-info-box-area {
	margin-top: 70px;
	margin-bottom: 4px;
	padding: 0 2px;
}

.game-other-info-box-area .row {
	margin: 0;
}

.game-other-info-box-area .col-lg-2,
.game-other-info-box-area .col-lg-4,
.game-other-info-box-area .col-lg-6,
.game-other-info-box-area .col-lg-9,
.game-other-info-box-area .col-lg-3 {
	padding-left: 3px;
	padding-right: 3px;
}

.game-other-info-registration-area {
	position: relative;
	background-size: cover;
	background-position: center;
	border: 1px solid #4684b4;
	z-index: 1;
	color: #fff;
	height: 325px;
	overflow: hidden;
	overflow-y: auto;
}

.game-other-info-registration-wrapper {
	background: rgba(18, 28, 63, 0.85);
	padding: 10px;
	min-height: 100%;
}

.game-other-info-registration-area.registration-fullpage-area:before,
.sign-in-fullpage-area:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #082234;
	content: "";
	z-index: -1;
	opacity: .85;
}

.game-other-info-registration-area h3 {
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
}

.after-login-dropdown-menu .nav a {
	margin-bottom: 0;
	font-size: 13px;
	height: 25px;
	padding: 0;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, .4) !important;
}

.after-login-dropdown-menu .nav a:hover,
.after-login-dropdown-menu .nav a.active {
	padding-left: 10px;
}

.header-area .header-bottom-area [class*="col-lg-"],
.header-area .header-bottom-area [class*="col-md-"] {
	padding-left: 15px;
	padding-right: 15px;
}

.betslip-card {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.single-banner-slider {
	height: 323px;
	background-size: cover;
	background-position: center;
	display: flex;
	padding: 50px 30px;
	color: #fff;
	transition: .3s;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.single-banner-slider:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #082234;
	content: "";
	opacity: .7;
	z-index: -1;
}

.single-banner-slider h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 20px;
	max-width: 100%;
	transition: .3s;
}

.single-banner-slider h2 span {
	display: block;
	text-transform: capitalize;
}

.single-banner-slider h2 span.heading-with-bg {
	display: inline-block;
	color: #082234;
	background: #fff;
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: "Oswald";
	padding: 8px 12px;
	margin-bottom: 20px;
	transform: skewX(-5deg) rotate(-3deg);
}

.single-banner-slider a,
.single-banner-slider button {
	background: #F4E849;
	display: inline-block;
	color: #082234;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 8px 30px;
	transition: .3s;
	border: none;
	cursor: pointer;
}

.single-banner-slider a:hover,
.single-banner-slider button:hover {
	color: #fff;
	background: #23507c;
}

.single-banner-slider:hover {
	color: #fff;
}

.ngx-select__item_active {
	background-color: #23507c !important;
	border-radius: 0 !important;
}

.ngx-select__choices.dropdown-menu.show {
	z-index: 1800;
	border-radius: 0;
}

.ngx-select__toggle.btn.form-control,
.ngx-select.dropdown.open.show .ngx-select__search.form-control {
	border: 1px solid #fff !important;
	border-radius: 0 !important;
	font-size: 14px !important;
	padding: 2px 10px !important;
	padding-top: 17px !important;
	height: 40px;
	line-height: 20px !important;
}

.ngx-select__toggle.btn.form-control:hover {
	background-color: #fff !important;
}

.ngx-select__search.form-control:focus {
	outline: 0 solid !important;
	box-shadow: 0 0 0 0 !important;
}

.banner-slider-carousel {
	position: relative;
}

.banner-slider-carousel .owl-dots {
	position: absolute;
	left: 30px;
	bottom: 30px;
}

.banner-slider-carousel .owl-dots button {
	height: 2px !important;
	width: 30px !important;
	display: inline-block !important;
	margin: 0 5px !important;
	transition: .2s;
	background: #fff !important;
}

.banner-slider-carousel .owl-dots button.active {
	background: #F4E849 !important;
}

.game-other-info-registration-area .form-inputs-wrapper .form-group-input-wrapper {
	margin-bottom: 8px;
	width: 100%;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control,
.game-other-info-registration-area .form-inputs-wrapper .form-group-input-wrapper .form-control {
	border-radius: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .4);
	font-size: 13px;
	color: #fff;
	height: 30px;
	padding: 7px;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control:focus,
.game-other-info-registration-area .form-inputs-wrapper .form-group-input-wrapper .form-control:focus {
	box-shadow: 0 0 0 0;
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control::placeholder,
.game-other-info-registration-area .form-inputs-wrapper .form-group-input-wrapper .form-control::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #fff;
	opacity: 1;
	/* Firefox */
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control:-ms-input-placeholder,
.game-other-info-registration-area .form-inputs-wrapper .form-group-input-wrapper .form-control:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control::-ms-input-placeholder,
.game-other-info-registration-area .form-inputs-wrapper .form-group-input-wrapper .form-control::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #fff;
}

.game-other-info-registration-area .form-inputs-wrapper .col-lg-6:nth-child(2n+1) {
	padding-left: 0;
	padding-right: 5px;
}

.game-other-info-registration-area .form-inputs-wrapper .col-lg-6:nth-child(2n) {
	padding-right: 0;
	padding-left: 5px;
}

.sign-in-fullpage-area .form-group-input-wrapper .input-validation,
.game-other-info-registration-area .form-group-input-wrapper .input-validation {
	color: #F4E849;
	position: relative;
	right: auto;
	top: auto;
	transform: translateY(0);
	font-size: 10px;
	margin-top: 2px;
	display: block;
}

.sign-in-fullpage-area .form-group-input-wrapper .field-icon,
.game-other-info-registration-area .form-group-input-wrapper .field-icon {
	color: #fff;
}

.sign-in-fullpage-area .form-group-input-wrapper .form-group-input-password-wrapper,
.game-other-info-registration-area .form-group-input-wrapper .form-group-input-password-wrapper {
	position: relative;
}

.game-other-info-registration-area .ngx-select.dropdown .ngx-select__toggle.btn.form-control {
	border: 1px solid rgba(255, 255, 255, .4) !important;
}

.game-other-info-registration-area .ngx-select.dropdown.open.show .ngx-select__toggle.btn.form-control {
	border: 1px solid #fff !important;
}

.game-other-info-registration-area .ngx-select__toggle.btn.form-control,
.game-other-info-registration-area .ngx-select.dropdown.open.show .ngx-select__search.form-control {
	font-size: 13px !important;
	padding: 3px 7px !important;
	height: 30px;
}

.game-other-info-registration-area .ngx-select__toggle.btn.form-control:hover {
	background-color: transparent !important;
}

.game-other-info-registration-area .ngx-select__placeholder.text-muted {
	color: #fff !important;
}

.game-other-info-registration-area .rs-other-info.termes-policy a,
.game-other-info-registration-area .rs-other-info .rs-link,
.game-other-info-registration-area .rs-other-info .rs-link a {
	color: #F4E849;
}

.game-other-info-registration-area .rs-other-info.termes-policy a:hover,
.game-other-info-registration-area .rs-other-info .rs-link:hover,
.game-other-info-registration-area .rs-other-info .rs-link a:hover {
	color: #c3b600;
}

.game-other-info-registration-area .rs-submit input[type="submit"],
.rs-submit button {
	background: #F4E849;
	color: #082234;
	font-size: 14px;
	font-weight: 700;
}

.game-other-info-registration-area .rs-submit input[type="submit"]:hover,
.rs-submit button:hover {
	background: #c3b600;
	color: #082234;
}

.rs-other-info {
	margin-top: 20px;
}

.rs-other-info .rs-link {
	color: #4684b4;
}

.game-other-info-box-area .col-lg-2 {
	flex: 0 0 21%;
	max-width: 21%;
}

.game-other-info-box-area .col-lg-4 {
	flex: 0 0 29%;
	max-width: 29%;
}

.game-other-info-box-area .col-lg-3 {
	flex: 0 0 30%;
	max-width: 30%;
}

.game-other-info-box-area .col-lg-9 {
	flex: 0 0 70%;
	max-width: 70%;
}

.game-other-info-box-area .col-lg-6 {
	flex: 0 0 50%;
	max-width: 50%;
	display: flex;
}

.cricket-carousel-logged-in, .football-carousel-logged-in {
	width: 50%;
}

.slider-home {
	width: 100%;
	height: 325px;
}

.cricket-carousel-logged-in {
	padding-right: 3px;
}

.football-carousel-logged-in {
	padding-left: 3px;
}

.banner-slider-carousel {
	border: 1px solid #4684b4;
}

.cricket-match-carousel-area,
.football-match-carousel-area {
	position: relative;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #fff;
	z-index: 1;
	border: 1px solid #4684b4;
	color: #fff;
	height: 160px;
}

.slider-home-area {
	position: relative;
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #081f31;
	z-index: 1;
	width: 100%;
	border: 1px solid #4684b4;
	color: #fff;
	height: 325px;
}

.cricket-carousel-logged-in .cricket-match-carousel-area, .football-carousel-logged-in .football-match-carousel-area {
	height: 325px;
	margin-bottom: 0;
}

.cricket-match-carousel-area {
	margin-bottom: 5px;
}

.cricket-match-carousel-area:before,
.football-match-carousel-area:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #082234;
	content: "";
	z-index: -1;
	opacity: .85;
}

.cricket-match-carousel-area.no-live-match:before,
.football-match-carousel-area.no-live-match:before {
	opacity: .65;
}

.cricket-match-carousel-area .cricket-match-summary-carousel.owl-carousel,
.cricket-match-carousel-area .cricket-match-summary-details,
.cricket-match-carousel-area .cricket-match-summary-details .match-details-info .team-score {
	background: transparent;
}

.cricket-match-carousel-area .cricket-match-summary {
	align-items: center;
	cursor: pointer;
}

.cricket-match-carousel-area .cricket-match-summary-details {
	display: flex;
	width: 100%;
	flex-direction: column;
	flex: 1;
	justify-content: space-between;
}

.cricket-match-carousel-area .cricket-match-summary-details.pb-30 {
	padding-bottom: 30px;
}

.cricket-match-carousel-area .cricket-match-summary-details .match-details-info {
	width: 100%;
}

.cricket-match-carousel-area .cricket-match-summary-header {
	display: flex;
	font-size: 11px;
	height: 25px !important;
	width: 100%;
	padding: 0 5px;
}

.cricket-match-carousel-area .cricket-match-summary-header span {
	display: inline-block;
	width: 100%;
	overflow: hidden;
	text-transform: uppercase;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}

.cricket-match-carousel-area .cricket-match-summary-details span.team-name-flag .name {
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-size: 10px;
	margin-top: 5px;
	font-weight: 600;
	text-transform: uppercase;
	height: 30px;
	overflow: hidden;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: pre-wrap;
}

.cricket-match-carousel-area .cricket-match-summary-details span.team-name-flag {
	max-width: 45px;
}

.cricket-match-carousel-area .cricket-match-summary-details span.team-name-flag .flag img {
	height: 30px;
	max-width: 50px !important;
}

.cricket-carousel-logged-in .cricket-match-carousel-area .cricket-match-summary-details span.team-name-flag .flag img {
	height: 40px;
}

.cricket-carousel-logged-in .cricket-match-carousel-area .cricket-match-summary-details span.team-name-flag .name {
	height: auto;
}

.cricket-match-carousel-area .cricket-match-summary-details .match-details-info .team-score {
	height: 35px;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.cricket-match-carousel-area .cricket-match-summary-details .match-details-info .team-score .bottom.overs small {
	margin-left: 2px;
}

.cricket-match-carousel-area .cricket-match-summary-details .match-result {
	font-size: 12px;
	padding: 10px;
	display: block;
	width: 100%;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding-top: 0;
	/* text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden; */
	white-space: nowrap;
	padding-bottom: 5px;
	/* animation: left-right 5s linear infinite alternate; */
}


@keyframes left-right {
	0% {
		transform: translate(90%, 0);
	}

	100% {
		transform: translate(-90%, 0);
	}
}

.cricket-match-carousel-area .cricket-match-summary-details .match-details-info {
	padding: 13px 15px;
}

.cricket-match-carousel-area span.series-vs-text {
	width: 25px;
	height: 25px;
	background: #F4E849;
	align-items: center;
	justify-content: center;
	color: #082234;
	font-weight: 700;
	font-size: 14px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #082234, 0 0 0 3px #F4E849;
	position: relative;
}

.cricket-match-carousel-area span.series-vs-text:before,
.cricket-match-carousel-area span.series-vs-text:after {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	height: 8px;
	width: 2px;
	background: #F4E849;
	content: "";
}

.cricket-match-carousel-area span.series-vs-text:after {
	top: auto;
	bottom: -15px;
}

.cricket-match-carousel-area .cricket-match-summary-details span.series-flag {
	height: 70px;
}

.football-match-carousel-area .football-match-summary {
	background: transparent;
	color: #fff;
	width: 100%;
	padding: 0;
}

.football-match-carousel-area .football-match-summary .match-details-info {
	padding: 0 8px;
	width: 100%;
}

.football-match-carousel-area .football-match-summary-carousel.owl-carousel {
	background: transparent;
}

.football-match-carousel-area .football-match-summary .match-date-time {
	text-align: center;
	padding: 0 5px;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 13px;
	text-transform: uppercase;
	height: 25px;
	background: rgba(5, 58, 41, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
}

.football-match-carousel-area .football-match-summary .match-date-time span {
	display: inline-block;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	overflow: hidden;
	height: auto;
}

.football-match-carousel-area .football-match-summary span.team-name-flag .name {
	font-family: "Open Sans", sans-serif;
	font-size: 8px;
	text-transform: uppercase;
	font-weight: 600;
	height: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	white-space: pre-wrap;
}

.football-match-carousel-area .football-match-summary:hover {
	color: #fff;
}

.football-match-carousel-area .football-match-summary .won *,
.football-match-carousel-area .football-match-summary .match-details-info .won .team-score {
	color: #fff;
}

.football-match-carousel-area .football-match-summary .match-details-info .team-score {
	color: #fff;
}

.football-match-carousel-area .football-match-summary span.team-name-flag .flag img {
	max-height: 30px;
	height: 30px;
	width: auto !important;
}

.football-carousel-logged-in .football-match-carousel-area .football-match-summary span.team-name-flag .flag img {
	max-height: 40px;
	height: 40px;
}

.football-match-carousel-area .football-match-summary .series-name {
	font-size: 12px;
	font-weight: 400;
	text-transform: capitalize;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding-top: 12px;
	padding-bottom: 2px;
}

.football-carousel-logged-in .football-match-carousel-area .football-match-summary span.team-name-flag .name {
	font-size: 10px;
	height: auto;
	overflow: unset;
}

.cricket-match-carousel-area .cricket-match-summary-carousel,
.cricket-match-carousel-area .cricket-match-summary,
.cricket-match-carousel-area .cricket-match-summary-carousel *,
.football-match-carousel-area .football-match-summary-carousel,
.football-match-carousel-area .football-match-summary,
.football-match-carousel-area .football-match-summary-carousel * {
	height: 100%;
}

.cricket-match-carousel-area .cricket-match-summary *,
.football-match-carousel-area .football-match-summary * {
	height: auto;
}

.football-match-carousel-area .football-match-summary {
	justify-content: space-between;
	padding-bottom: 30px;
}

.cricket-match-carousel-area .cricket-match-summary-carousel .owl-dots,
.football-match-carousel-area .football-match-summary-carousel .owl-dots {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px;
	position: absolute;
	bottom: 0;
	height: auto;
}

.cricket-match-carousel-area .cricket-match-summary-carousel .owl-dots button,
.football-match-carousel-area .football-match-summary-carousel .owl-dots button {
	height: 2px !important;
	width: 30px !important;
	display: inline-block !important;
	margin: 0 5px !important;
	transition: .2s;
	background: #fff !important;
}

.cricket-match-carousel-area .cricket-match-summary-carousel .owl-dots button.active,
.football-match-carousel-area .football-match-summary-carousel .owl-dots button.active {
	background: #F4E849 !important;
}

.game-content-area {
	height: auto !important;
	margin-bottom: 20px;
}

.right-sidebar.custom-scrollbar-2 {
	position: sticky;
	top: 100px;
}

.responsive-main-menu button[aria-expanded="true"],
.responsive-main-menu a.dropdown-toggle[aria-expanded="true"] {
	color: #f4e849;
}

.container-fluid.header-top-area .col {
	padding: 0;
}

.container-fluid.header-top-area .row {
	margin: 0;
}

.container-fluid.header-top-area .row .col-lg-6 {
	width: 100%;
}

.admin-template-area {
	margin-top: 96px;
}

.admin-template-area {
	height: calc(100vh - 96px) !important;
}

section.admin-template-area .left-sidebar {
	padding-right: 2px !important;
}

.admin-profile-update-form .form-group .ngx-select__toggle.btn.form-control {
	border-color: #ddd !important;
	padding-top: 2px !important;
	height: 40px;
}

.admin-profile-update-form .form-group .ngx-select__toggle.btn.form-control:hover {
	background: #f9f9f9 !important;
}

.header-time,
.language-list .btn {
	justify-content: center;
}

.no-cricket-match-live,
.no-football-match-live {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	font-size: 16px;
	text-transform: capitalize;
	padding: 16px;
}

.no-cricket-match-live-content h3,
.no-football-match-live-content h3 {
	font-size: 18px;
	margin-bottom: 6px;
}

.no-cricket-match-live-content a,
.no-football-match-live-content a {
	color: #F4E849;
	font-size: 12px;
	font-weight: 600;
}

.no-cricket-match-live-content a i.zmdi,
.no-football-match-live-content a i.zmdi {
	margin-left: 7px;
}

.sport-card-accordion {
	background: #23507c;
	padding: 4px;
	border-radius: 4px;
	padding-top: 0;
}

.sport-card-accordion-header {
	color: #fff;
	height: 35px;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.collaps-active .collapse-d-none {
	display: none;
}

.sport-card-level-one {
	margin-bottom: 0;
	border-top: 1px solid #aaa;
}

.sport-card-level-one .sport-card-level-one-header {
	border: none;
}

.sport-card-level-one-wrapper .sport-card-level-one:first-child {
	border-top: 0.5px solid #FFF;
}

.sport-card-level-one .sport-card-level-one-header:hover,
.sport-card-level-one .sport-card-level-one-header.active {
	background: #113756db;
}

.sport-card-level-one .sport-card-level-one-header .sport-card-level-one-header-link.active {
	color: #fff;
}

.sport-card-level-one .sport-card-level-one-header:hover .sport-card-level-one-header-link.active {
	color: #fff;
}

.favourite-card-header .number {
	margin: 0;
	width: 25px;
	height: 25px;
	background: #F4E849;
	color: #082234;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
}

.favourite-card-header {
	padding: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.collaps-active .favourite-card-header .number {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 20px;
	height: 20px;
	font-size: 11px;
}

.single-match-result-box .match-name {
	width: 65%;
}

.single-match-result-box .match-point {
	height: 33px;
	align-items: center;
	justify-content: center;
	width: 30%;
	background: #F4F4F4;
	font-weight: 700;
}

.single-match-result-box {
	padding-right: 0;
}

.match-details-breadcumb-area {
	background: #23507c;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: auto;
	padding: 5px;
}

.match-details-breadcumb-area ul {
	display: flex;
	align-items: center;
}

.match-details-breadcumb-area ul.statistics-link {
	width: 30%;
	justify-content: flex-end;
}

.match-details-breadcumb-area ul.breadcumb {
	width: 70%;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-wrap: wrap;
}

.match-details-breadcumb-area ul li {
	display: inline-block;
}

.match-details-breadcumb-area ul li a {
	display: flex;
	color: #fff;
	transition: .3s;
	height: 20px;
	align-items: center;
	margin: 0 5px;
	font-size: 13px;
	position: relative;
	white-space: nowrap;
}

.match-details-breadcumb-area ul.statistics-link li a {
	width: 20px;
}

.match-details-breadcumb-area ul li a:hover {
	color: #F4E849;
}

.match-details-breadcumb-area ul li a i.fas {
	font-size: 20px;
}

.match-details-breadcumb-area ul li a img {
	height: 25px;
}

.match-details-breadcumb-area ul.breadcumb li a {
	margin-right: 20px;
}

.match-details-breadcumb-area ul.breadcumb li a:before {
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	content: "/";
	color: #fff;
	font-weight: 700;
}

.match-details-breadcumb-area ul.breadcumb li:last-child a:before {
	display: none;
}

.match-details-banner {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/*background-image: url("./footer-bg.jpg");*/
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	color: #fff;
}

.match-details-banner {
}

.match-details-banner:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #082234;
	content: "";
	z-index: -1;
	opacity: .85;
}

.match-countdown-timer {
	height: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
}

.match-countdown-timer .icon {
	margin-right: 10px;
	font-size: 14px;
}

.match-countdown-timer .timer span,
.match-countdown-timer .timer sup {
	margin-right: 5px;
	text-transform: uppercase;
	font-weight: 600;
}

.match-countdown-timer .timer sup {
	font-size: 8px;
}

.match-countdown-timer .timer span.active,
.match-countdown-timer .timer sup.active {
	color: #F4E849;
}

.match-location-date {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	height: 20px;
}

.match-location-date .icon {
	margin-left: 10px;
}

.match-location-date .icon img {
	height: 15px;
}

.match-team-list {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
	padding: 20px;
}

.match-team-list .team-name-flag .flag img {
	height: 40px;
	box-shadow: 0 0 0 5px rgba(0, 0, 0, .4);
	border-radius: 1px;
}

.team-name-flag {
	display: flex;
	flex-direction: column;
}

.team-name-flag a {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 8px;
	display: inline-block;
	transition: .3s;
}

.match-start-time {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	font-size: 12px;
	color: #F4E849;
}

.match-start-time .time {
	font-size: 30px;
	line-height: 30px;
}

.team-name-flag a:hover {
	color: #F4E849;
}

.match-weather-forecast {
	background: rgba(0, 0, 0, .3);
	display: flex;
	font-size: 11px;
	justify-content: space-between;
	padding: 8px 20px;
	align-items: center;
}

.match-weather-forecast ul {
	display: flex;
	align-items: center;
}

.match-weather-forecast ul li {
	margin-right: 20px;
}

.match-weather-forecast ul li:last-child {
	margin-right: 0;
}

.match-weather-forecast .icon {
	margin-right: 7px;
}

.match-weather-forecast i.fas.rotate-180 {
	transform: rotate(180deg);
}

.game-options-area {
	background: #144d75;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
}

.game-options-left-side, .game-options-right-side {
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bets-number {
	background: #0b3c2c;
	color: #fff;
	font-size: 12px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3px 10px;
}

.game-option-list-search {
	display: flex;
}

.bets-number .icon {
	margin-right: 6px;
}

.game-search-area input:not([type=submit]) {
	border-radius: 0;
	border: none;
	background: #23507c;
	color: #fff;
	position: relative;
	padding: 5px;
	padding-left: 40px;
	height: 40px;
	width: 220px;
	font-size: 13px;
}

.game-search-area input[type=submit],
.game-search-area button[type=submit] {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	color: #F4E849;
	cursor: pointer;
}

.game-search-area {
	position: relative;
	margin: 0 5px;
}

.game-search-area .input-validation {
	color: #F4E849;
}

.game-search-area input:not([type=submit]):focus {
	box-shadow: 0 0 0 0;
}

.game-search-area input:not([type=submit])::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #fff;
}

.game-search-area input:not([type=submit])::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff;
}

.game-search-area input:not([type=submit]):-ms-input-placeholder {
	/* IE 10+ */
	color: #fff;
}

.game-search-area input:not([type=submit]):-moz-placeholder {
	/* Firefox 18- */
	color: #fff;
}

.game-option-list {
	margin: 0 5px;
	width: 220px;
}

.game-option-list .ngx-select__toggle.btn.form-control,
.game-option-list .ngx-select.dropdown .ngx-select__search.form-control,
.game-option-list .ngx-select.dropdown.open.show .ngx-select__search.form-control {
	padding-top: 2px !important;
	border: none !important;
}

.game-option-list .ngx-select__toggle.btn.form-control {
	background: #0b3c2c !important;
	color: #fff !important;
	font-size: 13px !important;
}

.game-option-list .ngx-select.dropdown.open.show .ngx-select__search.form-control {
	background: #fff !important;
	color: #333 !important;
}

.game-option-list .ngx-select__toggle.btn.form-control span.ngx-select__placeholder.text-muted {
	color: #fff !important;
	display: flex;
	align-items: center;
}

.game-bets-view-modes ul li {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	cursor: pointer;
	transition: .3s;
}

.game-bets-view-modes ul {
	display: flex;
	align-items: center;
}

.game-bets-view-modes ul li img {
	height: 25px;
}

.game-bets-view-modes ul li.active:before,
.game-bets-view-modes ul li:hover:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #F4E849;
	content: "";
	transition: .3s;
}

.game-bets-view-modes ul li.active {
	background: #0b3c2c;
}

.match-details-game-tab-area .tab-content.match-details-game-tab {
	background: #081f31;
}

.match-details-game-tab-area .tab-content.match-details-game-tab .row {
	margin-left: -2px;
	margin-right: -2px;
}

.match-details-game-tab-area .tab-content.match-details-game-tab .row [class*='col-lg-'] {
	padding-left: 2px;
	padding-right: 2px;
}

.match-details-game-tab-area .single-match-result-accordion-body .row {
	margin: 0 !important;
}

.match-details-game-tab-area .single-match-result-accordion-body .row .col {
	border: none;
	padding: 0 !important;
}

.match-details-game-tab-area .single-match-result {
	/* margin-bottom: 5px; */
	border-bottom: 1px solid #081f31;
}

.betslip-item-list-v2 .single-betlist-item {
	background: #fff;
	position: relative;
	padding: 6px 10px;
	border-left: 2px solid #23507c;
}

.betslip-item-list-v2 span.match-title-image .icon img {
	height: 15px;
}

.betslip-item-list-v2 span.match-title-image .icon {
	margin-right: 10px;
}

.betslip-item-list-v2 span.match-title-image {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.betslip-item-list-v2 span.betlist-text {
	color: #23507c;
}

.betslip-item-list-v2 span.match-title-image .match-title:not(.fw-400) {
	font-weight: 700;
}

.betslip-item-list-v2 span.single-result-item {
	padding: 0;
	text-transform: uppercase;
}

.betslip-item-list-v2 span.single-result-item .left-side {
	width: 87%;
}

.betslip-item-list-v2 span.betlist-single-item-remove-icon {
	margin-left: 0;
	position: absolute;
	right: 3px;
	top: 3px;
	z-index: 10;
}

.input-number-wrapper {
	position: relative;
	display: flex;
}

.input-number-wrapper .input-number.minus,
.input-number-wrapper .input-number.plus {
	width: 24px;
	height: 24px;
	display: flex;
	background: #ddd;
	font-weight: 700;
	font-size: 14px;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .3s;
	cursor: pointer;
}

.betslip-bid-area ul li .input-number-wrapper input[type="text"],
.betslip-bid-area ul li .input-number-wrapper input[type="number"] {
	text-align: center;
}

.input-number-wrapper .input-number.plus:hover {
	background: #23507c;
	color: #fff;
}

.input-number-wrapper .input-number.minus:hover {
	background: #FF4B55;
	color: #fff;
}

.logo img {
	max-height: 37px;
}

a.logged-in-user span.user-balance {
	margin-left: 0;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.main-balance {
	margin-bottom: 0;
}

.admin-profile-info-area {
	padding-top: 0;
}

.admin-profile-username {
	font-size: 17px;
	padding: 10px 10px 5px;
	text-transform: uppercase;
}

.betslip-bid-area ul li .possible-win {
	font-weight: 700;
}

.message-preloader-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.8);
	z-index: 10000;
	height: 100%;
	color: #555;
	font-size: 20px;
}

.preloader-message {
	padding: 40px 20px;
	border: 4px double #555;
	background: rgba(243, 243, 243, 0.74);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.preloader-message .icon img {
	height: 100px;
}

.preloader-message .message .large {
	font-size: 45px;
	font-weight: 600;
	margin: 15px 0;
	line-height: 45px;
}

.preloader-message .message .small {
	font-size: 22px;
	padding: 10px;
	max-width: 80%;
	margin: 0 auto;
}

.preloader-message a.try-button {
	font-size: 17px;
	color: #144d75;
	display: inline-block;
	padding: 8px 30px;
	border: 2px solid #144d75;
	margin-top: 30px;
	transition: .3s;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
}

.preloader-message a.try-button:hover {
	color: #fff;
	background: #144d75;
}

.collaps-active .admin-left-sidebar-toggle-btn-wrapper {
	margin-bottom: 0;
}

.admin-menu-list-area.profile.active {
	top: 147px;
}

.admin-menu-list-area.wallet.active {
	top: 196px;
}

.admin-menu-list-area.help.active {
	top: 245px;
}

/* ng-http-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
} */
ng-http-loader #spinner.backdrop {
	position: absolute;
}

.online {
	background-color: green;
	color: #ffffff;
	padding: 10px;
	text-align: center;
	animation: online-response 0.5s 1;
	-webkit-animation: online-response 0.5s 1;
	animation-fill-mode: forwards;
	animation-delay: 2s;
	-webkit-animation-delay: 1s;
	/* Safari and Chrome */
	-webkit-animation-fill-mode: forwards;
	position: fixed;
	top: 10px;
	right: 10px;
	width: 10%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 15000;
}

@keyframes online-response {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes online-response {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.admin-content .tab-content {
	border: none;
	padding: 0;
}

.admin-content-header {
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 600;
	padding-bottom: 7px;
	border-bottom: 1px solid #e2e2e2;
	position: relative;
}

.admin-content-header:before {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 15%;
	height: 1px;
	background: #23507c;
	content: "";
}

.admin-profile-table .col-lg-6 {
	padding: 0;
}

.admin-profile-table .col-lg-6:nth-child(2n) {
	padding-left: 6px;
}

.admin-profile-table .col-lg-6:nth-child(2n+1) {
	padding-right: 6px;
}

.admin-profile-table-v-2 table tr td {
	width: 50%;
}

.admin-profile-update-form span.ngx-select__placeholder.text-muted {
	align-items: center;
	display: flex;
}

.admin-profile-update-form .ngx-select.dropdown.open.show .ngx-select__search.form-control {
	border: 1px solid #23507c !important;
	padding-top: 2px !important;
	background: #23507c;
	color: #fff !important;
	height: 40px;
}

.admin-profile-update-form .ngx-select.dropdown.open.show .ngx-select__search.form-control::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #fff;
	opacity: 1;
	/* Firefox */
}

.admin-profile-update-form .ngx-select.dropdown.open.show .ngx-select__search.form-control:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

.admin-profile-update-form .ngx-select.dropdown.open.show .ngx-select__search.form-control::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #fff;
}

app-game-content-area.mt-100 .game-content-area,
.mt-100 {
	margin-top: 97px;
}

.sport-card-level-one a.sport-card-level-one-header-link {
	justify-content: space-between;
}

.sport-card-level-one a.sport-card-level-one-header-link span.category-number .number {
	justify-content: center;
	margin: 0;
	width: 20px;
	height: 20px;
	background: #33883b;
	color: #fff;
	font-size: 11px;
	border-radius: 15%;
	transition: .3s;
	position: relative;
	z-index: 100;
}

.anumber {
	justify-content: center;
	margin: 0;
	width: 20px;
	height: 20px;
	background: #888;
	color: #fff;
	font-size: 11px;
	border-radius: 15%;
	transition: .3s;
	position: relative;
	z-index: 100;
}

.sport-card-level-one a.sport-card-level-one-header-link:hover span.category-number .number,
.sport-card-level-one .sport-card-level-one-header[aria-expanded="true"] a.sport-card-level-one-header-link span.category-number .number,
.sport-card-level-one .sport-card-level-one-header.active a.sport-card-level-one-header-link span.category-number .number {
	background: #F4E849;
	color: #081f31;
}

.collaps-active .sport-card-level-one a.sport-card-level-one-header-link span.category-number {
	position: absolute;
	right: 2px;
	top: 2px;
	border: 2px solid #fff;
	border-radius: 50%;
	transform: scale(.8);
}

.collaps-active .sport-card-level-one a.sport-card-level-one-header-link span.anumber {
	display: none;
}

.collaps-active .sport-card-level-one .sport-card-level-one-header:hover a.sport-card-level-one-header-link span.category-number {
	border: 2px solid #113756db;
}


.game-other-info-registration-area.registration-fullpage-area {
	border: none;
	padding: 1%;
	display: contents;
	align-items: center;
	justify-content: center;
	/*height: calc(100vh - 97px);*/
}

.registration-fullpage-tab-box {
	width: 100%;
	border: 1px solid #4684b4;
	/*position: relative;*/
}

.registration-fullpage-tab-box .tab-content {
	padding: 15px;
}

.registration-fullpage-tab-box .tab-content .row.form-inputs-wrapper {
	margin-left: 0;
	margin-right: 0;
}

.registration-fullpage-tab-box .nav {
	display: flex;
	justify-content: space-between;
}

.registration-fullpage-tab-box .nav-tabs .nav-item {
	width: 33.333333%;
	text-align: center;
}

.registration-fullpage-tab-box .nav-tabs .nav-item a {
	background: transparent;
	color: #F4E849;
	border-radius: 0;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.registration-fullpage-tab-box .nav-tabs .nav-item a.active {
	background: #fff;
	color: #082234;
}

.registration-fullpage-tab-box:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #082234;
	content: "";
	z-index: -1;
	opacity: .45;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control,
.game-other-info-registration-area.registration-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control,
.game-other-info-registration-area.registration-fullpage-area .ngx-select__toggle.btn.form-control,
.game-other-info-registration-area.registration-fullpage-area .ngx-select.dropdown.open.show .ngx-select__search.form-control {
	height: 35px;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control:focus,
.game-other-info-registration-area.registration-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control:focus {
	color: #333;
	background: #fff;
}

.game-other-info-registration-area.registration-fullpage-area .rs-other-info {
	margin-top: 5px;
}

.registration-fullpage-tab-box .col-lg-12 {
	padding-left: 0;
	padding-right: 0;
}

.registration-fullpage-tab-box .form-check-input {
	position: absolute;
	margin-top: 2px;
	margin-left: 0px;
}

.registration-fullpage-tab-box .form-check-label {
	padding-left: 20px;
}

.game-other-info-registration-area.registration-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control:focus + .field-icon {
	color: #666;
}

.game-other-info-registration-area .ngx-select__placeholder.text-muted {
	display: flex;
	align-items: center;
}

.game-other-info-registration-area.registration-fullpage-area .fp-instruction-text {
	font-size: 15px;
	margin-bottom: 18px;
	text-align: center;
}

input[type="submit"]:disabled,
button[type="submit"]:disabled {
	cursor: not-allowed;
}

.game-other-info-registration-area.registration-fullpage-area.mt-100 {
	background-position: bottom;
}

.sign-up-area .rs-other-info .rs-link a {
	padding: 0;
	display: flex;
	font-size: 12px;
	text-transform: capitalize;
	font-weight: 700;
	border: none;
	color: #F4E849;
	transition: .3s;
	background: none;
	height: auto;
}

.sign-up-area .rs-other-info .rs-link a:hover {
	color: #eecf03;
}

.event-type-list {
	padding: 0;
}

.nav.match-details-game-tab-2 .single-event-type-list-item {
	border: 0;
	padding: 7px;
	background: #4684b4;
}

.nav.match-details-game-tab-2 .single-event-type-list-item.active,
.nav.match-details-game-tab-2 .single-event-type-list-item:hover {
	background: #113756db;
	color: #fff;
}

.admin-profile-table table.table thead th {
	font-weight: 400;
}

.admin-template-area .row.justify-content-left [class*="col-lg-"] {
	padding-left: 0;
	padding-right: 0;
}

.admin-content {
	margin-left: 10px;
	max-width: calc(83.333333% - 10px);
	flex: 0 0 calc(83.333333% - 10px);
	padding: 0;
	border: 7px solid #23507c;
}

.admin-content-header-new {
	background: #23507c;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 12px;
	padding-top: 3px;
}

.admin-content .tab-content .tab-pane .admin-content-scroll-wrapper {
	margin: 15px;
	overflow: hidden;
	overflow-y: auto;
	/*height: calc(100% - 64px);*/
	height: 70%;
	position: relative;
}

.admin-content .tab-content {
	overflow-y: hidden;
}

.admin-content .tab-content .tab-pane {
	height: 100% !important;
}

.admin-profile-update-form .form-group {
	margin-bottom: 0;
	margin-top: 25px;
}

.admin-profile-update-form .form-group label {
	margin-bottom: 0;
	height: 40px;
	display: flex;
	align-items: center;
	font-size: 15px;
}

.admin-profile-update-form .form-group .form-group-input-wrapper {
	display: flex;
	align-items: center;
}

.admin-profile-update-form .form-group .input-group-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 40px;
	border: 1px solid #ddd;
	border-right: none;
	background: #e1e1e1;
	color: #222;
}

.admin-profile-update-form .form-group ngx-select,
.admin-profile-update-form .form-group .form-control {
	width: calc(100% - 42px);
}

.admin-profile-update-form .ngx-select.dropdown.open.show .ngx-select__search.form-control,
.admin-profile-update-form .form-group .ngx-select__toggle.btn.form-control,
.admin-profile-update-form .form-group .form-control.form-control-100 {
	width: 100%;
}

.admin-profile-update-form .form-group .form-control {
	height: 40px;
}

.admin-profile-condition .icon {
	border-top-right-radius: 0;
}

.admin-profile-condition {
	margin-bottom: 8px;
	margin-top: 20px;
}

.live-in-play-header {
	font-family: "Open Sans", sans-serif;
}

.single-live-events-in-mobile {
	margin-right: 0;
	width: 100%;
}

.admin-content.collaps-active {
	-ms-flex: 0 0 calc(100% - 70px);
	flex: 0 0 calc(100% - 70px);
	max-width: calc(100% - 70px);
}

.admin-left-sidebar-toggle-btn-wrapper .icon {
	width: 22px;
}

.admin-left-sidebar-toggle-btn-wrapper .icon img,
.left-sidebar-toggle-btn-area img {
	height: 18px;
}

.admin-profile-sidebar-menu-area {
	background: #23507c;
	margin-top: 5px;
	padding: 20px;
	color: #fff;
	min-height: 710px;
}

.admin-profile-sidebar-menu-group h4 {
	color: rgb(255, 204, 0);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 12px;
}

.admin-profile-sidebar-menu-list ul li a {
	color: #fff;
	display: flex;
	width: 100%;
	align-items: center;
	transition: .3s;
	margin-bottom: 5px;
}

.admin-profile-sidebar-menu-list ul li a:hover,
.admin-profile-sidebar-menu-list ul li a.active {
	color: #F4E849;
}

.admin-profile-sidebar-menu-list ul li a .icon {
	margin-right: 12px;
	width: 20px;
	text-align: center;
}

.admin-profile-sidebar-menu-group {
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.admin-profile-sidebar-menu-group:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.collaps-active .admin-profile-sidebar-menu-list ul li a .icon {
	margin-right: 0;
}

.collaps-active .admin-profile-sidebar-menu-list ul li a .text,
.collaps-active .admin-profile-sidebar-menu-group h4 {
	display: none;
}

.collaps-active .admin-profile-sidebar-menu-area {
	margin-top: 5px;
	padding: 10px;
}

.collaps-active .admin-profile-sidebar-menu-list ul li a {
	margin-bottom: 0;
	width: 32px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swal2-container {
	z-index: 10060 !important;
}

.swal2-styled {
	background-color: #23507c !important;
	transition: .3s;
}

.responsive-menu-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.responsive-menu-wrapper .icon-user-menu {
	display: none;
	margin-right: 10px;
}

.responsive-menu-wrapper .icon-user-menu img {
	height: 18px;
}

.sign-up-button-mobile {
	display: none !important;
}


.sign-in-off-canvas-area {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
	width: 100%;
	height: 100%;
	transition: .5s;
	opacity: 0;
	visibility: hidden;
}


.sign-in-off-canvas {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 260px;
	padding: 10px;
	height: auto;
	transition: .5s;
}

.sign-in-off-canvas-area-close {
	position: absolute;
	left: -40px;
	top: 0;
	width: 40px;
	height: 40px;
	background: #F4E849;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #081f31;
	transition: .5s;
}

.active .sign-in-off-canvas {
	transform: translate(-50%, -50%) scale(1);
}


.sign-in-off-canvas-area-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .5;
	visibility: hidden;
	transition: .5s;
}

.sign-in-off-canvas-area.active {
	opacity: 1;
	visibility: visible;
}

.active .sign-in-off-canvas-area-overlay {
	opacity: .5;
	visibility: visible;
}


.sign-in-off-canvas-header {
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
	padding-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sign-in-off-canvas-header span {
	color: #fff;
	text-transform: uppercase;
	font-size: 17px;
}

.sign-in-off-canvas-header span.icon-close {
	color: #F4E849;
	font-size: 17px;
}

.full-height {
	height: 100% !important;
}

.overflow-x-hidden {
	overflow-x: hidden !important;
}

.overflow-y-auto {
	overflow-y: auto !important;
}

.p-0 {
	padding: 0 !important;
}

.sign-in-off-canvas.full-height {
	background: #23507c;
}

.off-canvas-user-info-area {
	background: #265f8a;
	color: #fff;
	padding: 20px;
}

.off-canvas-user-info-area .welcome-message {
	text-transform: uppercase;
	font-size: 10px;
	color: #F4E849;
}

.off-canvas-user-info-area .user-profile-username {
	margin-bottom: 15px;
	text-transform: uppercase;
	font-weight: 700;
}

.off-canvas-user-info-area .user-main-balance {
	display: flex;
	font-size: 13px;
	text-transform: capitalize;
	justify-content: space-between;
}

.user-top-up-link a {
	display: flex;
	height: 30px;
	background: #F4E849;
	color: #081f31 !important;
	text-align: center;
	margin-top: 10px;
	width: 100%;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	align-items: center;
	justify-content: center;
}

.user-logout a {
	display: flex;
	height: 30px;
	background: #fff;
	color: #081f31 !important;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.hidden {
	/*visibility: hidden;*/
	opacity: 0;
	transition: visibility 0s 0.3s, opacity 0.3s linear;
}

.center {
	margin: auto;
	width: 100%;
}

.spinner {
	position: fixed;
	padding: 0px;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9998;
	background: #000;
	opacity: 0.6;
	transition: opacity 0.3s linear;
}
.loading-text {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0;
	padding: 0;
	margin: 0;
	color: #FFF;
	font-family: sans-serif;
	background: transparent;
	text-align: center;
	padding-top: 30%;
}

.loading-text, .spinner {
	z-index: 10001 !important;
}
#loading-spinner-text {
	font-size: 26px;
}

.after-login-dropdown-menu .nav a:first-child {
	border-top: none !important;
}

.dropdown-menu {
	z-index: 3000;
}

a.logged-in-user span.user-balance span {
	text-transform: uppercase !important;
}

.off-canvas-user-info-area .user-main-balance .balance {
	color: #F4E849;
}

.betslip-card-close {
	color: #F4E849;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.main-balance p {
	color: #F4E849;
}

.cricket-match-summary-details .match-details-info .right-side span.top {
	text-align: right;
}

.cricket-match-summary-details .match-details-info span.left-side,
.cricket-match-summary-details .match-details-info span.right-side {
	width: 50%;
}

.cricket-match-summary-details .match-details-info span.right-side {
	justify-content: flex-end;
}

.cricket-match-summary-details .match-details-info span.left-side {
	justify-content: flex-start;
}


.betslip-item-list-v2 .single-betlist-item.colored-header {
	padding: 0;
	border: none;
}

.betslip-item-list-v2 span.match-title-image {
	padding: 0 10px;
}

.betslip-item-list-v2 span.match-title-image.colored-title {
	background: #23507c;
	color: #fff;
	padding: 6px 10px;
}

.betslip-item-list-v2 .single-betlist-item.colored-header .single-result-item {
	align-items: unset;
}

.betslip-item-list-v2 .single-betlist-item.colored-header span.single-result-item .left-side {
	padding: 6px 10px;
	display: flex;
	background: #eee;
}

.betslip-item-list-v2 .single-betlist-item.colored-header span.single-result-item .right-side {
	background: #23507c;
	color: #F4E849;
	padding: 3px 10px;
	flex: 1 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
}

.match-details-game-tab-area .tab-content.match-details-game-tab .row.one-column-mode .col-lg-6 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

app-banner-slider {
	width: 100%;
}


.place-bet-btn, .accept-changes-btn {
	font-family: "Open Sans", sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
	font-size: 14px;
}


.upcomming-matches-area {
	/*margin-top: 5px;*/
	background: #081f31;
}

.upcomming-matches-section-title {
	/*background: #23507c;*/
	background: #0657a6;
	color: #fff;
	font-size: 14px;
	padding: 10px;
}

.upcomming-match-details-link {
	display: flex;
	width: 100%;
	flex-direction: column;
}

.upcomming-matches-list {
	padding: 5px;
	max-height: 800px;
	overflow: hidden;
	overflow-y: auto;
}

.single-upcomming-match-card {
	background: #fff;
	margin-bottom: 5px;
	display: flex;
	transition: .3s;
}

.single-upcomming-match-card:hover {
	opacity: .85;
}

.single-upcomming-match-card:last-child {
	margin-bottom: 0;
}

.upcomming-match-date {
	background: #23507c;
	display: flex;
	flex-direction: column;
	text-align: center;
	color: #F4E849;
	padding: 7px;
	width: 20%;
	justify-content: center;
	align-items: center;
}

.upcomming-match-date .date {
	font-size: 35px;
	font-weight: 700;
	line-height: 35px;
}

.upcomming-match-date .month {
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1.4px;
}

.upcomming-match-details {
	display: flex;
	flex-direction: column;
	padding: 5px 10px;
	justify-content: center;
	width: 80%;
	padding-bottom: 0;
}

.upcomming-match-tournament {
	color: #23507c;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
}

.upcomming-match-teams {
	font-weight: 700;
	color: #444;
	margin: 2px 0;
}

.upcomming-match-day-time {
	font-size: 12px;
	font-weight: 600;
	color: #666;
	margin-bottom: 6px;
}

.game-other-info-box-area .row.form-inputs-wrapper .col-lg-12 {
	padding: 0;
}

.game-other-info-box-area .row.form-inputs-wrapper .col-lg-12 {
	padding: 0;
}

.game-other-info-registration-wrapper .nav {
	display: flex;
	justify-content: space-between;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.game-other-info-registration-wrapper .nav li {
	width: 50%;
	text-align: center;
}

.game-other-info-registration-wrapper .nav li a {
	background: rgba(20, 128, 94, 0.58);
	color: rgba(255, 255, 255, 0.86);
	font-weight: 700;
	text-transform: capitalize;
	font-size: 12px;
	border-radius: 0;
	border: none;
}

.game-other-info-registration-wrapper .nav li a.active {
	color: #f4e849;
	background: #23507c;
}

.registration-fullpage-tab-box .nav-tabs .nav-item:nth-child(2) {
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}


.upcomming-match-bet-lists-header {
	color: #23507c;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	margin: 8px 0 8px;
	display: block;
	text-decoration: underline;
}

.upcomming-match-bet-lists {
	margin-left: -10px;
	margin-right: -10px;
}


a.logged-in-user {
	position: relative;
	min-width: 135px;
}

span.dropdown-icon {
	font-size: 20px;
	background: rgba(5, 58, 41, 0.41);
	height: calc(100% - 2px);
	align-items: center;
	width: 25px;
	justify-content: center;
	position: absolute;
	right: 0;
}


/* notice css */
.notice-bar-area {
	/*position: fixed;*/
	width: 100%;
	height: 30px;
	background: #f0f0f0;
	color: #121c3f;
	z-index: 2001;
	overflow: hidden;
	padding: 0 10px;
	display: flex;
	/*justify-content: center;*/
}

.notice-lists {
	display: flex;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.notice-lists ul {
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
	width: 100%;
}

.notice-lists ng-marquee {
	width: 100%;
}

.notice-lists ul li {
	flex-wrap: nowrap;
	white-space: nowrap;
	font-size: 15px;
	font-weight: 600;
	display: inline-flex;
	margin-right: 60px;
	position: relative;
}

.notice-lists ul li strong {
	margin: 0 5px;
}

.notice-lists ul li:before {
	position: absolute;
	right: -35px;
	top: 50%;
	transform: translateY(-50%);
	content: "|";
	color: #fff;
}

.notice-lists ul li:last-child {
	margin-right: 0;
}

.notice-lists ul li:last-child:before {
	display: none;
}

.notice-text {
	background: #e25461;
	color: #fff;
	position: relative;
	padding: 0 30px;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 1;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	margin-left: -30px;
}

.notice-bar-area .ng-marquee-wrapper {
	display: flex;
	align-items: center;
}

.notice-bar-area .ng-marquee-wrapper > div {
	height: 100%;
	display: inline-flex;
	margin: 0;
	padding-left: 100%;
	-webkit-animation: 2s linear infinite marqueeAnimation;
	animation: 2s linear infinite marqueeAnimation;
	white-space: nowrap;
	align-items: center;
}

.notice-text:before {
	position: absolute;
	right: -12px;
	top: 0;
	width: 0;
	height: 0;
	border-left: 12px solid #bb332e;
	border-top: 15px solid transparent;
	/*content: "";*/
	border-bottom: 15px solid transparent;
}


.example1 {
	height: 50px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.notice-lists ul {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	text-align: center;
	/* Starting position */
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	/* Apply animation to this element */
	-moz-animation: example1 5s linear infinite;
}



.notice-lists:hover ul {
	-moz-animation-play-state: paused;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

.form-control {
	border-radius: 0;
}

.has-notice-bar .header-area.fixed {
	top: 30px;
}

.has-notice-bar .admin-template-area {
	margin-top: 127px;
}

.has-notice-bar .admin-template-area {
	height: calc(100vh - 127px) !important;
}

.has-notice-bar .game-other-info-box-area {
	/*margin-top: 132px;*/
	margin-top: 75px;
}

.has-notice-bar app-game-content-area.mt-100 .game-content-area {
	margin-top: 127px;
}

.mt-100 {
	margin-top: 97px;
}

.preloader-message .icon {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 100px;
	color: #999;
}

.preloader-message .icon img {
	height: 100px;
	width: 100px;
	display: flex;
}

a.logged-in-user.top-up-area {
	justify-content: center;
	padding: 0 !important;
}

a.logged-in-user.top-up-area span.user-balance {
	width: 100%;
	justify-content: space-between;
	height: 38px;
}

a.logged-in-user.top-up-area span.user-balance .bottom-balance {
	height: 19px;
	width: 100%;
	justify-content: center;
	align-items: center;
}

a.logged-in-user.top-up-area span.user-balance span.top-up-text {
	background: #E4423C;
	width: 100%;
	justify-content: center;
	height: 18px;
	align-items: center;
}

a.logged-in-user.top-up-area span.user-balance span.top-up-text.h-40 {
	height: 38px;
	background: #F4E849;
	color: #113756db;
}

.ngx-select__choices {
	max-height: 120px !important;
}


.header-time {
	white-space: nowrap;
}

h2.home-all-category-heading {
	background: #4684b4;
	margin: 0;
	text-align: center;
	color: #F4E849;
	text-transform: uppercase;
	font-size: 16px;
	padding: 10px;
	font-weight: 500;
	margin-top: 5px;
	margin-bottom: -5px;
}

.forgot-by-btn-area {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.forgot-by-btn-area .by-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border: 1px solid #fff;
	margin: 0 5px;
	height: 40px;
	cursor: pointer;
	transition: .3s;
}

.forgot-by-btn-area .by-btn.active {
	background: #F4E849;
	border-color: #F4E849;
	color: #082234;
	font-weight: 600;
	cursor: default;
}


.form-group-input-wrapper .form-group-phone-wrapper {
	display: flex;
	align-items: center;
}

.form-group-input-wrapper .form-group-phone-wrapper .phone-code-label {
	background: #fff;
	height: 35px;
	border: 1px solid #fff;
	color: #082234;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-weight: 600;
	border-right: 1px solid #082234;
	position: relative;
	z-index: 1;
	font-size: 13px;
}

.form-group-input-wrapper .form-group-phone-wrapper .phone-code-label.h-30 {
	height: 30px;
	border-right: 1px solid #fff;
}


.sport-card-level-two-header {
	padding: 4px 6px;
	padding-left: 0;
}

ul.sport-card-level-one-body {
	margin: 0px 0px 0px 32px;
	list-style: none;
}

ul.sport-card-level-one-body li {
	position: relative;
}

ul.sport-card-level-one-body li:before {
	position: absolute;
	left: -15px;
	top: 0px;
	content: '';
	display: block;
	border-left: 1px solid #23507c;
	height: 16px;
	border-bottom: 1px solid #23507c;
	width: 10px;
}

ul.sport-card-level-one-body li:after {
	position: absolute;
	left: -15px;
	bottom: -7px;
	content: '';
	display: block;
	border-left: 1px solid #23507c;
	height: 100%;
}

ul.sport-card-level-one-body li.root {
	margin: 0px 0px 0px -20px;
}

ul.sport-card-level-one-body li.root:before {
	display: none;
}

ul.sport-card-level-one-body li.root:after {
	display: none;
}

ul.sport-card-level-one-body li:last-child:after {
	display: none;
}

.single-match-result-header .right-side .top-side p {
	color: #f4e849;
}

.sign-in-fullpage-area {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 8000;
	background-size: cover;
	background-position: center bottom;
}

.sign-in-fullpage-area .registration-fullpage-tab-box h3 {
	background: rgba(0, 84, 58, 0.86);
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	color: #F4E849;
	font-size: 17px;
	font-weight: 400;
	border-bottom: 1px solid #4684b4;
	margin-bottom: 0;
}

.sign-in-fullpage-area .registration-fullpage-tab-box .login-form {
	padding: 20px;
}

.sign-in-fullpage-area .registration-fullpage-tab-box .login-form .row {
	margin-left: 0;
	margin-right: 0;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper .form-control {
	height: 40px;
	padding: 0 15px;
}

.sign-in-fullpage-area .form-inputs-wrapper .form-group-input-wrapper {
	margin-bottom: 10px;
}

.sign-in-fullpage-area .form-inputs-wrapper .col-lg-12:nth-last-child(2) .form-group-input-wrapper {
	margin-bottom: 0;
}

.sign-in-fullpage-area .form-group-input-wrapper .form-control:focus + .field-icon {
	color: #666;
}

.sign-in-fullpage-area .registration-fullpage-tab-box {
	width: 25%;
}

.game-other-info-registration-wrapper .nav.nav-tabs li a.nav-link.disabled {
	color: rgba(255, 255, 255, 0.86);
	background-color: rgba(20, 128, 94, 0.58);
}

.forgot-by-btn-area .by-btn.disabled {
	cursor: default;
	pointer-events: none;
}


.mobile-extra-header-menu-area {
	border-top: 1px solid rgba(255, 255, 255, .3);
	display: none;
}

.mobile-extra-header-menu ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2px;
}

.mobile-extra-header-menu ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	border-right: 1px solid rgba(255, 255, 255, .3);
}

.mobile-extra-header-menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	font-size: 11px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
}

.mobile-extra-header-menu ul li:nth-child(2n) {
	border-right: none;
}

.mobile-extra-header-menu ul li.active {
	background-color: #0d7554;
}

.collaps-active .sport-card-level-one a.sport-card-level-one-header-link span.category-number {
	border: 2px solid #113756db;
}


.dropdown-balance-area {
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, .3);
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.dropdown-balance-area .balance-area {
	display: flex;
	align-items: center;
}

.dropdown-balance-area .balance-area span.balance {
	padding: 0;
	margin-right: 20px;
	white-space: nowrap;
}

.dropdown-balance-area .balance-area .balance-refresh-btn {
	color: #F4E849;
	cursor: pointer;
}

.sign-up-area.after-login .dropdown-balance-area a.deposit-link-boxed {
	color: #F4E849 !important;
	border: 1px solid #F4E849 !important;
	padding: 2px 10px !important;
	font-weight: 600;
	height: 34px;
	width: 100%;
	text-align: center;
	justify-content: center;
}

.sign-up-area.after-login .dropdown-balance-area a.deposit-link-boxed:hover {
	color: #0D543E !important;
	background: #F4E849 !important;
}

.balance-type-area {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.single-balance-type {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px 20px;
	border-right: 1px solid rgba(255, 255, 255, .3);
}

.single-balance-type:last-child {
	border-right: none;
}

.single-balance-type .header-text {
	font-size: 12px;
	text-transform: capitalize;
	color: #F4E849;
	white-space: nowrap;
}

.single-balance-type .amount-text {
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	white-space: nowrap;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
	white-space: initial !important;
}

/* NEW LAYOUT CSS END */

/* INITIAL POPUP CSS START */
.initial-popup-area {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 10000000;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
	overflow-y: auto;
	background: rgba(0, 0, 0, .7);
	transition: .4s;
	opacity: 0;
	visibility: hidden;
}

.initial-popup-area.active {
	opacity: 1;
	visibility: visible;
}

.initial-popup-backdrop {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: rgba(255, 0, 0, 0);
	content: "";
	z-index: 1;
	overflow-y: auto;
	bottom: 0;
	right: 0;
}

.initial-popup-modal {
	width: 35%;
	background-color: #fff;
	border-radius: 10px;
	margin: 20px;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 5px #022d20;
	background-size: cover;
	background-position: center;
}

.initial-popup-modal:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #23507c;
	content: "";
	border-radius: 10px;
	z-index: -1;
	opacity: .7;
}

.initial-popup-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	cursor: pointer;
	/* background: #fff; */
	border-top-right-radius: 10px;
}

/* .initial-popup-left, .initial-popup-right {
    max-width: 20%;
    flex: 0 0 20%;
} */

.initial-popup-content {
	max-width: 100%;
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 40px;
}

.initial-popup-content h3 {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 22px;
	color: #f4e849;
}

.initial-popup-content p {
	font-size: 13px;
	margin-bottom: 10px;
	color: #eee;
}

.initial-popup-content p.terms {
	font-size: 12px;
}

.initial-popup-content p.terms a {
	text-decoration: underline;
	font-weight: 600;
	color: #fff;
}

.initial-popup-content p.terms a:hover {
	color: #F4E849;
}

.initial-popup-content p:last-child {
	margin-bottom: 0;
}

.sign-in-register-area {
	margin: 20px 0 30px;
	min-width: 50%;
}

.sign-in-register-area a {
	display: inline-flex;
	padding: 3px 10px;
	border: 1px solid #23507c;
	border-radius: 5px;
	height: 30px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	/* width: 80%; */
	white-space: nowrap;
	color: #23507c;
	background: #F4E849;
	font-weight: 700;
}

.sign-in-register-area .register a {
	width: auto;
	padding: 0;
	height: auto;
	border: none;
	color: #F4E849;
	font-weight: 600;
}

.show-no-more-message-form-group {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.show-no-more-message-form-group label {
	margin: 0;
	margin-left: 6px;
	cursor: pointer;
	color: #F4E849;
	font-weight: 600;
}

.sign-in-register-area a:hover {
	background: #fded20;
	border-color: #0c5f45;
	color: #0c5f45;
}

.sign-in-register-area .register a:hover {
	background: none;
	border: none;
	color: #F4E849;
}

.error {
	color: #962929;
	font-size: 12px;
}

.club-user-admin {
	margin-top: 0px;
}

/* INITIAL POPUP CSS END */

/* modal design start */
.bet_slip_popup_width {
	width: 400px;
	margin-top: 100px;
}

.betting_slip_block {
}

.betting_slip_block h2 {
	background: #41ad00;
}

.betting_slip_block h4 {
	background: #ffaf51;
}

.betting_slip_block_adv {
	margin-bottom: 0px !important;
}

.betting_slip_block_adv h2 {
	background: #41ad00;
}

.betting_slip_block_adv h4 {
	background: #ffaf51;
}

.common_block_panel {
	background: #494949;
}

.news_update_panel h2, .common_block_panel h2 {
	font-size: 14px;
	font-weight: normal;
	line-height: 21px;
	margin: 0;
	padding: 5px 10px;
	color: #FFF;
	background: linear-gradient(to bottom, rgba(99, 154, 195, 1) 0%, rgba(0, 58, 102, 1) 100%)
}

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

.common_block_panel p {
	color: #4988b9;
	font-size: 12px;
	line-height: 16px;
	clear: both;
	display: inline-block;
	margin-bottom: 0;
}

.bet_slip_container {
	padding: 10px 7px;
	color: #4988b9;
}

.bet_slip_container div {
	color: #3f3f3f;
	font-size: 12px;
}

.bet_slip_container_adv {
	padding: 10px 7px;
	color: #4988b9;
}

.bet_slip_container_adv div {
	color: #3f3f3f;
	font-size: 12px;
}

.pallate_container {
	display: block;
	padding: 10px;
}

.sports_event_pallate_container {
	display: block;
	padding: 0px;
}

.bet_slip_container {
	padding: 1px 1px;
	color: #4988b9;
}

.bet_slip_container div {
	color: #ffffff;
	font-size: 16px;
}

.bet_slip_select_box {
	background: #1e2531;
	border: 1px solid #000;
	position: relative;
}

.bet_slip_select_box a.remove_button {
	/*  position:absolute;
            left:-5px;
            top:-9px;*/
	padding: 3px;
	color: #666666;
	margin-left: -20px;
}

.bet_slip_select_box a:hover.remove_button {
	color: #c14008;
}

.bet_slip_select_box .remove_button span {
}

.bet_slip_select_box .remove_button span i {

}

.bet_slip_select_box h5.select_bet_perticipant_name {
	font-size: 14px;
	font-weight: bold;
	background: #cde9bd;
	color: #2b2c2b;
	display: block;
	padding: 7px 5px 7px 20px;
	position: relative;
}

.bet_slip_select_box h5 span.match_result_rating {
	display: inline-block;
	text-align: right;
	padding: 7px 5px;
	background: #f58500;
	color: #FFF;
	margin-left: 10px;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	vertical-align: middle;
}

.select_bet_match_information {
	font-size: 12px;
	padding: 5px 20px;
}

.betting_slip_block_adv {
	margin-bottom: 0px !important;
}

.betting_slip_block_adv h2 {
	background: #41ad00;
}

.betting_slip_block_adv h4 {
	background: #ffaf51;
}

.bet_slip_container_adv {
	padding: 10px 7px;
	color: #4988b9;
}

.bet_slip_container_adv div {
	color: #3f3f3f;
	font-size: 12px;
}

.bet_slip_select_box_adv {
	background: #c9d2c4;
	border: 1px solid #000;
	position: relative;
}

.bet_slip_select_box_adv a.remove_button {
	/*  position:absolute;
            left:-5px;
            top:-9px;*/
	padding: 3px;
	color: #666666;
	margin-left: -20px;
}

.bet_slip_select_box_adv a:hover.remove_button {
	color: #c14008;
}

.bet_slip_select_box_adv .remove_button span {
}

.bet_slip_select_box_adv .remove_button span i {

}

.bet_slip_select_box_adv h5.select_bet_perticipant_name {
	font-size: 14px;
	font-weight: bold;
	background: #cde9bd;
	color: #2b2c2b;
	display: block;
	padding: 7px 5px 7px 20px;
	position: relative;
}

.bet_slip_select_box_adv h5 span.match_result_rating {
	display: inline-block;
	text-align: right;
	padding: 7px 5px;
	background: #f58500;
	color: #FFF;
	margin-left: 10px;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	vertical-align: middle;
}

.bet_slip_select_box h5.select_bet_perticipant_name {
	font-size: 14px;
	font-weight: bold;
	background: #3c749e;
	color: rgba(255,255,255,.7);
	display: block;
	padding: 7px 5px 7px 20px;
	position: relative;
}

.bet_slip_select_box_adv h5.select_bet_perticipant_name {
	font-size: 14px;
	font-weight: bold;
	background: #cde9bd;
	color: #2b2c2b;
	display: block;
	padding: 7px 5px 7px 20px;
	position: relative;
}

.bet_slip_select_box a.remove_button {
	/*  position:absolute;
            left:-5px;
            top:-9px;*/
	padding: 3px;
	color: #666666;
	margin-left: -20px;
}

.bet_slip_select_box a:hover.remove_button {
	color: #c14008;
}

.bet_slip_select_box .remove_button span {
}

.bet_slip_select_box .remove_button span i {

}

.bet_slip_select_box_adv a.remove_button {
	/*  position:absolute;
            left:-5px;
            top:-9px;*/
	padding: 3px;
	color: #666666;
	margin-left: -20px;
}

.bet_slip_select_box_adv a:hover.remove_button {
	color: #c14008;
}

.bet_slip_select_box_adv .remove_button span {
}

.bet_slip_select_box_adv .remove_button span i {

}

.select_bet_match_information .bet_result, .select_bet_match_information .bet_result.bet_slip_error {
	background: #d40000;
	padding: 6px 10px;
	text-align: center;
	display: block;
	color: #FFFFFF !important;
	margin-bottom: 8px
}

.select_bet_match_information .bet_result.bet_slip_success {
	background: #0fa003;
	padding: 6px 10px;
	text-align: center;
	display: block;
	color: #0fa003;
	margin-bottom: 8px
}

.select_bet_match_information .betlimit,
.select_bet_match_information .betslipQ,
.select_bet_match_information .betslipA {
	border-bottom: 1px solid #989898;
	padding-top: 7px;
	padding-bottom: 7px;
}

.select_bet_match_information .betlimit {
	color: #0039dc;
}

.select_bet_match_information .betslipQ {
}

.select_bet_match_information .betslipA {
}

.btn {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
}

.select_bet_match_information {
	font-size: 12px;
	padding: 5px 20px;
}

.select_bet_match_information .bet_result, .select_bet_match_information .bet_result.bet_slip_error {
	background: #d40000;
	padding: 6px 10px;
	text-align: center;
	display: block;
	color: #FFFFFF !important;
	margin-bottom: 8px
}

.select_bet_match_information .bet_result.bet_slip_success {
	background: #0fa003;
	padding: 6px 10px;
	text-align: center;
	display: block;
	color: #0fa003;
	margin-bottom: 8px
}

.select_bet_match_information .betlimit,
.select_bet_match_information .betslipQ,
.select_bet_match_information .betslipA {
	border-bottom: 1px solid #989898;
	padding-top: 7px;
	padding-bottom: 7px;
}

.select_bet_match_information .betlimit {
	color: #85a4fd;
}

.rating_option_line {
	padding: 5px 20px;
	display: block;
}

.rating_stake_field {
	width: 80px;
	display: inline-block;
	margin-right: 2px;
}

.rating_stake_field .form-group {
	margin-bottom: 0;
}

.rating_stake_field .stake_inputbox {
	border-radius: 0;
	padding: 3px 5px;
	font-size: 12px;
	height: 30px;
}

.rating_stake_field .stake_inputbox {
	border-radius: 0;
	padding: 3px 5px;
	font-size: 12px;
	height: 30px;
}

.to_return_box {
	width: 150px;
	display: inline-block;
	vertical-align: middle;
}

.to_return_box span.return_amount {
	color: #f7c40a;
}

.to_return_box span.return_amount {
	color: #f7c40a;
}

.place_bid_button_line {
}

.place_bid_button_line button.place_bid_custom_btn {
	border-radius: 0;
	width: 100%;
	padding: 4px 10px;
}

.place_bid_button_line button.place_bid_custom_btn span.bidding_amount {
	font-size: 13px;
	font-weight: bold;
}
/*
@media screen and (min-width: 768px) {
}

@media (min-width: 768px) and (max-width: 991px) {
	.common_block_panel {
		border-left: 2px solid #1a1a1a;
		border-right: 2px solid #1a1a1a;
	}
}

@media (min-width: 993px) and (max-width: 1025px) {

}

@media (min-width: 1026px) and (max-width: 1366px) {
}

@media (max-width: 767px) {
	.common_block_panel {
		border-left: 2px solid #1a1a1a;
		border-right: 2px solid #1a1a1a;
	}
}
*/
/* modal design end */

.swiper-slide {
	display: flex;
	overflow-x: auto;
}

.swiper-slide img {
	margin-right: 15px;
}

.swiper-slide::-webkit-scrollbar {
	display: none;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: #0c0c0c;
}

.head {
	position: relative;
	height: 100px;
	width: 200px;
	display: block;
	overflow: hidden;
	background-color: rgba(0, 222, 255, 0.3);
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}

.stem {
	margin: 0 auto;
	height: 75px;
	width: 10px;
	background-color: rgba(0, 222, 255, 0.3);
	border-bottom: 2px solid rgb(0, 155.4, 178.5);
	border-radius: 0px 0px 5px 5px;
}

.base {
	margin: 0 auto;
	margin-top: -6px;
	width: 100px;
	height: 25px;
	border-radius: 50%;
	background-color: rgba(0, 222, 255, 0.3);
}

.head .liquid {
	position: absolute;
	top: -60px;
	left: 0;
	width: 200px;
	height: 220px;
	background-color: rgba(0, 222, 255, 0.3);
	box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
	transition: 1s;
}

.head .liquid::after,
.head .liquid::before {
	content: '';
	width: 200%;
	height: 200%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -75%);
	background: #000;
	box-shadow: inset 0 0 6px rgba(202, 228, 225, 0.98),
	0 0 30px rgba(202, 228, 225, 0.42), inset 0 0 12px rgba(30, 132, 242, 0.58),
	inset 0 0 22px rgba(30, 132, 242, 0.84),
	inset 0 0 38px rgba(30, 132, 242, 0.88), 0 0 60px rgba(30, 132, 242, 1);
}

.head .liquid::before {

	border-radius: 45%;
	background: rgba(20, 20, 20, 1);
	animation: animate 5s linear infinite;
}

.head .liquid::after {

	border-radius: 40%;
	background: rgba(20, 20, 20, .5);
	animation: animate 10s linear infinite;
}

.head:hover .liquid {
	top: -120px;
}

@keyframes animate {
	0% {
		transform: translate(-50%, -75%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -75%) rotate(360deg);
	}
}

.loginError{
	color: #69f0ae;
	font-size: 12px;
}
.live-match-title{
	-webkit-animation:Font 2.2s infinite alternate;
	font-weight: bold;
}
.live-match-bar-text{
	-webkit-animation:Font 2.2s infinite alternate;
}
@-webkit-keyframes Font {
	0% {color: #FFF700;}
	10% {color: #121c3f;}
	20% {color: #ffffff;}
	30% {color: rgba(29, 48, 118, 0.61);}
	40% {color: #FFF700;}
	50% {color: #121c3f;}
	60% {color: #ffffff;}
	70% {color: rgba(29, 48, 118, 0.61);}
	80% {color: #FFF700;}
	90% {color: #121c3f;}
	100% {color: #ffffff;}
}


