/* common css ******************************************************************************/
:root {
    --white: #fff;
    --black: #000;
    --black_474747: #474747;
    --black_6B6B6B: #6B6B6B;
    --navy_0C2747: #0C2747;
    --blue_6FBBEF: #6FBBEF;
    --blue_4CFFFF: #4CFFFF;
    --pink_FAA9BA: #FAA9BA;
    --green_219934: #219934;
    --gray_E7EAED: #E7EAED;
    --gray_EFEFEF: #EFEFEF;
    --brown_560503: #560503;
    --yellow_FAFD40: #FAFD40;
}
.white {
    color: var(--white);
}
.black {
    color: var(--navy_0C2747);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
*::before,
*::after {
    box-sizing: border-box;
}
.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}
body {
    background: #fff;
    font-family: "DM Sans", sans-serif;
}
body.show {
    position: fixed;
    top: 0;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--navy_0C2747);
    font-weight: 700;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 52px;
}
h2 {
    font-size: 44px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}
p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--navy_0C2747);
}
.small {
    font-size: 16px;
}
p:last-child {
    margin-bottom: 0;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}
span {
    display: inline-block;
}
.section-heading {
	text-align: center;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.section-heading .title {
	display: flex;
	align-items: center;
}
.section-heading .title img {
	max-width: 45px;
	margin-right: 10px;
}
.btn-common {
	font-size: 22px;
	padding: 12px 35px;
	background: #000a20;
	color: var(--white) !important;
	border-radius: 15px;
	border: 2px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: capitalize;
	font-weight: 700;
	transform: skewX(-10deg);
}
.btn-common.yellow {
	background: var(--yellow_FAFD40);
    color: var(--black) !important;
}
.btn-common.transparent {
	background: var(--white);
	color: var(--navy_0C2747) !important;
	border-color: var(--navy_0C2747);
}
.btn-common.opacity {
	background: #ffffff4a;
}
.btn-common span {
	transform: skewX(10deg);
}
.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}
section {
	padding-bottom: 100px;
	overflow: hidden;
}
.bg {
    padding: 100px 0;
}
.mobile {
    display: none !important;
}
.desktop {
    display: block !important;
}
img,
video {
    max-width: 100%;
}
.button-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--navy_0C2747);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.owl-nav {
    margin-top: 0;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav button.owl-prev {
    left: 0;
}
.owl-nav button.owl-next {
    right: 0;
}
.form-control-common {
	background: var(--white);
	border: 1px solid var(--black_6B6B6B);
	font-size: 16px;
	padding: 12px 15px;
	width: 100%;
	appearance: textfield;
	color: var(--black_6B6B6B);
	border-radius: 10px !important;
	box-shadow: none;
	resize: none;
	outline: none;
	font-weight: 500;
}
::placeholder {
	color: var(--black_6B6B6B);
	opacity: 1;
}
label {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 5px;
}
.input-group {
	margin-bottom: 20px;
}
.accordion-button {
	font-size: 20px;
	padding: 20px;
	background: #000a20 !important;
	color: var(--white) !important;
	font-weight: 600;
    box-shadow: none !important;
}
.accordion-item:not(:last-child) {
	margin-bottom: 20px;
}
.accordion-item {
	background-color: #cbccd0;
    border: none;
    border-radius: 0 !important;
}
.accordion-button::after {
	content: "\2b";
	font-size: 25px;
	position: absolute;
	top: 18px;
	right: 20px;
	font-family: fontawesome;
	background: none;
	width: auto;
	height: auto;
    background: none;
}
.accordion-button:not(.collapsed)::after {
	content: "\f068";
    background: none;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #000;
}
#header {
	padding: 30px 0;
	transition: .5s all;
	position: relative;
}
#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo-box img {
    max-width: 220px;
    width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--navy_0C2747);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}
#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}
#header .main-nav nav ul li {
	display: inline-block;
	position: relative;
	margin-right: 30px;
	padding-right: 30px;
	border-right: 2px solid var(--navy_0C2747);
	line-height: 1;
}
#header .main-nav nav ul li:last-child {
	margin-right: 0;
	padding-right: 0;
	border: none;
}
#header .main-nav nav ul li a {
	font-size: 18px;
	text-transform: uppercase;
	color: var(--navy_0C2747);
	font-weight: 500;
	line-height: 1;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
	background: url("../images/bannerBg.png") no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 56.25%;
}
/* section css ******************************************************************************/
.marque .marque-box {
	background: var(--navy_0C2747);
	border-radius: 50px;
	display: flex;
	align-items: center;
	padding: 10px 20px 10px 12px;
}
.marque .marque-box marquee {
	color: var(--white);
	font-weight: 700;
	font-size: 20px;
}
.marque .marque-box .img-box {
	background: var(--white);
	display: inline-flex;
	padding: 5px 15px;
	border-radius: 50px;
	margin-right: 20px;
}
.marque .marque-box .img-box img {
	max-width: 35px;
}
/* games css ******************************************************************************/
#games #gamesCarousel .img-box img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	margin: 0 auto;
}
#games #gamesCarousel .img-box .img-text {
	font-weight: 700;
	text-align: center;
	padding: 10px 0 25px;
    position: relative;
}
#games .owl-nav button {
	position: absolute;
	top: -95px;
	transform: none;
	width: 60px;
	height: 50px;
	background: var(--navy_0C2747);
	transform: skewX(-5deg);
	border-radius: 12px;
}
#games .owl-nav button.owl-prev {
	left: auto;
	right: 70px;
}
#games .owl-nav button i {
	color: var(--white);
    transform: skewX(5deg);
}
#games {
	padding-top: 10px;
}
#games .nav-tabs .nav-link {
	padding: 0;
	margin-bottom: 0;
	border: none;
	opacity: .2;
	transition: .5s all;
	margin: 0 auto;
}
#games .nav-tabs .nav-link.active {
	opacity: 1;
}
#games .nav-tabs {
	border-bottom: none;
}
#games .nav-tabs .nav-link.active .img-text::after {
	content: '\f103';
	position: absolute;
	left: 50%;
	bottom: 0;
	font-family: fontawesome;
	transform: translateX(-50%);
}
table {
	width: 100%;
}
table th {
	background: var(--navy_0C2747);
	color: var(--white);
	padding: 20px 40px;
	font-weight: 500;
}
.team-box, .team {
	display: flex;
	align-items: center;
}
table .small {
	font-size: 14px;
}
.team img {
	max-width: 40px;
	margin-right: 10px;
}
.team span {
	font-weight: 500;
}
.team:first-child {
	padding-right: 60px;
}
.match-title {
	margin-bottom: 5px;
}
table td {
	padding: 25px 35px;
}
table th.center {
	text-align: center;
}
table th, table td {
	font-size: 18px;
	white-space: nowrap;
}
table tr {
	border-bottom: 1px solid var(--navy_0C2747);
    position: relative;
}
table tbody tr:last-child {
	border-bottom: none;
}
.table-responsive {
	border: 2px solid var(--navy_0C2747);
	border-radius: 35px;
}
table tr .live {
	position: absolute;
	left: 0;
	top: 30px;
	background: var(--green_219934);
	writing-mode: sideways-lr;
	color: var(--navy_0C2747);
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 700;
	padding: 15px 2px;
	border-radius: 0 10px 10px 0;
}
.number-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
    gap: 10px;
}
.number-buttons button {
	width: 70px;
	height: 45px;
	line-height: 1;
	border-radius: 10px;
	border: none;
	font-weight: 700;
}
.number-buttons button.blue {
	background: var(--blue_6FBBEF);
}
.number-buttons button.pink {
	background: var(--pink_FAA9BA);
}
.number-buttons button.navy {
	background: var(--navy_0C2747);
	color: var(--white);
}
/* liveCasino css ******************************************************************************/
#liveCasino .img-box:not(.center) {
	padding: 10px;
	background: var(--gray_E7EAED);
	border-radius: 20px;
}
#liveCasino .img-box {
	margin: 0 10px;
}
#liveCasino .row {
	row-gap: 45px;
}
/* bonuses css ******************************************************************************/
#bonuses .box {
	background: url('../images/casinoBg.png') no-repeat;
	background-size: cover;
	background-position: center;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	border-radius: 30px;
}
#bonuses .box.box2 {
	background-image: url('../images/sportsBg.png');
}
#bonuses .box .img-text {
	color: var(--white);
}
#bonuses .box .right {
	text-align: center;
	width: 60%;
}
#bonuses .box .left {
	width: 40%;
}
#bonuses .box .right .title {
	color: var(--white);
}
#bonuses .box .right .gift-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 10px;
}
#bonuses .box .right .gift-box .gift h6 {
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url('../images/gift.png') no-repeat;
	background-size: 100% 100%;
	padding: 5px;
}
#bonuses .box .right .gift-box img {
	max-width: 70px;
}
#bonuses .button-box ul {
	justify-content: center;
	padding-top: 10px;
}
#bonuses .button-box ul .btn-common {
	width: 150px;
	padding: 10px;
}
#bonuses .box .left img {
	width: 100%;
	height: 250px;
	object-fit: contain;
}
#bonuses {
	padding-bottom: 50px;
}
/* footer css ******************************************************************************/
#footer .support-box .link-box ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .support-box .link-box h5 {
	text-transform: uppercase;
	line-height: .8;
	text-align: center;
}
#footer .support-box .link-box h5 a {
	color: inherit;
	font-weight: inherit;
}
#footer .support-box {
	padding: 20px 0;
	background: var(--blue_4CFFFF);
}
#footer .support-box .link-box ul li:not(:last-child) {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 3px solid var(--navy_0C2747);
}
#footer .top-box .list-box ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
#footer .top-box .list-box li:not(:last-child) {
	margin-right: 20px;
	padding-right: 20px;
	border-right: 2px solid var(--navy_0C2747);
	line-height: 1;
}
#footer .top-box .list-box a {
	font-size: 24px;
	line-height: 0.8;
}
#footer .top-box .list-box {
	padding: 50px 0;
	border-bottom: 1px solid #00000012;
}
#footer .top-box .text-box p {
	text-align: center;
	max-width: 85%;
	margin: 0 auto;
	padding: 50px 0;
}
#footer p, #footer a {
	font-weight: 500;
	color: var(--navy_0C2747);
}
#footer .end-box .link-box ul li:not(:last-child) {
	margin-right: 20px;
}
#footer .end-box {
	padding: 30px 0;
}
#footer .end-box .link-box img {
	max-width: 60px;
	width: 100%;
}
#footer .end-box .link-box ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
/* modal css ******************************************************************************/
.login .modal-dialog {
	max-width: 1500px;
}
.login .modal-body {
	padding: 0;
}
.login .header .title h3 {
	font-weight: 500;
	color: var(--black_474747);
	margin-bottom: 5px;
}
.login .header .title {
	padding-bottom: 20px;
}
.login .header .title p {
	color: var(--black_474747);
}
.login .header {
	text-align: center;
}
.login .nav-tabs {
	border-bottom: none;
	justify-content: center;
	gap: 10px;
}
.login .nav-tabs {
	border-bottom: none;
	justify-content: center;
	gap: 10px;
	padding-bottom: 20px;
}
.login .nav-tabs .nav-item {
	width: 50%;
	flex: 1;
}
.login .nav-tabs .nav-link {
	border: none;
	color: var(--black_474747);
	font-weight: 700;
	font-size: 18px;
	width: 100%;
	background: var(--gray_EFEFEF);
	border-radius: 10px;
	padding: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login .nav-tabs .nav-link.active {
	background: var(--blue_6FBBEF);
}
.login .nav-tabs .nav-link i {
	margin-right: 10px;
}
.login .box.box2 {
	padding: 0 100px;
}
.login .end {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.login .end [type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	flex: 0 0 auto;
}
.login .end .left {
	display: flex;
}
.login .end .left label {
	color: var(--black_6B6B6B);
	margin-bottom: 0;
}
.login .end .right .small {
	color: var(--black_6B6B6B);
	font-weight: 500;
}
.login button {
	width: 100%;
	border: none;
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	background: var(--black);
	padding: 15px;
	border-radius: 10px;
}
.login .text .small {
	padding-top: 20px;
	color: var(--black_6B6B6B);
	font-weight: 500;
	text-align: center;
}
.login .text .small a {
	color: var(--black_474747);
	font-weight: 700;
}
.login .img-box {
	margin-right: -25px;
}

.signUp input[type="number"] {
	padding-left: 120px;
}
.signUp select.form-control-common {
	padding-left: 60px;
	padding-right: 60px;
	background: url('../images/down.png') no-repeat;
	background-size: 15px;
	background-position: calc(100% - 15px);
	appearance: none;
}
.signUp .form-icon {
	position: absolute;
	top: 39px;
	left: 15px;
	display: flex;
	align-items: center;
	line-height: 1;
	gap: 10px;
	font-weight: 700;
	color: var(--black_6B6B6B);
	cursor: pointer;
}
.signUp .form-icon img {
	width: 25px;
	height: 20px;
	object-fit: contain;
}
.signUp .promoCode .promoBack {
	display: none;
}
.signUp .promoCode .promoFront {
	font-weight: 700;
	color: var(--black_6B6B6B);
	cursor: pointer;
	display: none;
}
.signUp .promoCode .promoFront.active {
	display: inline-block;
}
.signUp .promoCode .promoFront i {
	color: #1B79CE;
	margin-right: 5px;
}
.signUp .promoCode {
	margin-bottom: 20px;
}
.signUp .promoCode .promoBack.active {
	display: block;
}
.signUp .end {
	margin-bottom: 0;
	margin-top: 10px;
}
.signUp .end .left label {
	font-size: 14px;
	margin-top: 2px;
}
/* singlePoint css ******************************************************************************/
#bettingMarque {
	padding-bottom: 50px;
}
.point-header {
	background: var(--navy_0C2747);
}
.point-header, .point-body {
	padding: 15px 25px;
}
.point-header p {
	color: var(--white);
	font-size: 18px;
}
.pointButton {
	background: transparent;
	border: none;
	font-weight: 700;
	color: var(--black);
	width: 90px;
	border-radius: 10px;
	font-size: 18px;
	line-height: 1;
}
.pointButton span {
	font-size: 14px;
	font-weight: 500;
	display: block;
}
.point-header .pointButton {
	height: 40px;
}
.point-body .pointButton {
	height: 45px;
}
.pointButton.back {
	background: var(--blue_6FBBEF);
}
.pointButton.lay {
	background: var(--pink_FAA9BA);
}
.pointButton-box {
	display: flex;
	gap: 5px;
}
.point-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.point-row:not(:last-child) {
	margin-bottom: 5px;
}
.pointContainer .left img {
	max-width: 40px;
	margin-right: 10px;
}
.point-body .point-row .left p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}
.pointContainer {
	border: 2px solid var(--navy_0C2747);
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 15px;
}
.pointButton-box.suspended {
	position: relative;
}
.singlePoint .point-row .left p {
	display: flex;
	align-items: center;
}
.singlePoint .point-row .left p span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
}
.singlePoint .left {
	width: calc(100% - 580px);
}
.pointButton-box.suspended::after {
	content: 'SUSPENDED';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ffffffd9;
	font-size: 22px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--navy_0C2747);
}
.doublePoint .point-body .col-lg-6 {
	margin-bottom: 5px;
}
.doublePoint .point-body .col-lg-6:nth-last-of-type(-n+2) {
	margin-bottom: 0;
}
.doublePoint .left {
	width: calc(100% - 200px);
}
.doublePoint .point-body .left p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* singlePoint css ******************************************************************************/
.bet-header, .bet-body {
	padding: 23px 20px;
}
.bet-header {
	background: var(--navy_0C2747);
}
.betSlip {
	border: 2px solid var(--navy_0C2747);
	border-radius: 30px;
	overflow: hidden;
}
.betSlip:not(:last-child) {
	margin-bottom: 15px;
}
.bet-header p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--white);
}
.betSlipButton {
	background: var(--navy_0C2747);
	color: var(--white);
	border: none;
	font-weight: 700;
	width: calc(25% - 4px);
	border-radius: 10px;
	font-size: 18px;
	line-height: 1;
	height: 40px;
}
.bet-body p {
	margin-bottom: 10px;
	line-height: 1.2;
	font-weight: 500;
	font-size: 18px;
}
.bet-body p:last-child {
	margin-bottom: 0;
}
.bet-body .flex-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bet-body .flex-box p {
	font-weight: 700;
	margin-bottom: 0;
}
.bet-body .top-box .flex-box button {
	background: transparent;
	color: var(--navy_0C2747);
	border: 1px solid var(--navy_0C2747);
	font-weight: 700;
	border-radius: 10px;
	font-size: 18px;
	line-height: 1;
	padding: 5px 20px;
}
.bet-body .end-box {
	border-top: 1px solid var(--navy_0C2747);
	margin-top: 20px;
	padding-top: 20px;
}
.bet-body .end-box .flex-box button {
	background: #0C274714;
	color: var(--navy_0C2747);
	border: none;
	font-weight: 700;
	border-radius: 10px;
	font-size: 18px;
	line-height: 1;
	padding: 10px 40px;
}
.bet-body .end-box .flex-box p {
	font-size: 16px;
	text-align: right;
}
.bet-body .end-box .flex-box p span {
	display: block;
	font-weight: 500;
	font-size: 14px;
}
.betSlip .button-box {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.betSlipButton.full {
	width: 100%;
	margin-top: 10px;
}
.bet-body .end-box .flex-box {
	margin-bottom: 10px;
}