@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/
html {
	height: 100%;
}
body {
	font-family: 'momcake_thin';
	font-size: 24px;
	line-height: 30px;
	color: #fff;
	background-color: #000;
	height: 100%;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
}
p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	text-decoration: underline;
	color: #BBEADD;
}

ul li,
ol li {
	font-size: 24px;
	line-height: 36px;
	color: #3A3A3A;
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	text-decoration: none;
	color: #BBEADD;
}

h1 {
    font-family: 'momcake_bold';
    font-size: 64px;
    line-height: 65px;
    color: #63e2ff;
}

h2 {
    font-family: 'momcake_bold';
    font-size: 54px;
    line-height: 68px;
    color: #63e2ff;
}

h3 {
    font-family: 'momcake_bold';
    font-size: 40px;
    line-height: 44px;
    color: #63e2ff;
}

h4 {
    font-family: 'momcake_bold';
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #63e2ff;
}

h5 {
    font-family: 'momcake_thin';
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    color: #63e2ff;
}

h6 {
    font-family: 'momcake_thin';
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: #63e2ff;
}

.main-title {
	font-family: 'momcake_bold';
	font-size: 94px;
    line-height: 102px;
	color: #b066fe;
}

.main-title * {
	margin: 0;
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.small-title {
	font-family: 'momcake_thin';
	font-size: 60px;
	line-height: 70px;
	color: rgba(176, 102, 254, 0.231);
}

.small-title * {
	margin: 0;
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.block-title {
	font-family: 'momcake_bold';
	font-size: 164.47px;
	line-height: 166px;
	color: #63e2ff;
	letter-spacing: 100;
}

.block-title * {
	margin: 0;
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
        text-transform: uppercase;
}

.block-inner-title {
    font-family: 'momcake_bold';
    font-size: 28px;
    line-height: 34px;
    color: #63e2ff;
    letter-spacing: 50;
}

.block-inner-title * {
    margin: 0;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-transform: uppercase;
}

/* buttons */
.btn-play {
	font-family: 'momcake_bold';
	font-size: 22px;
    line-height: 28px;
	color: #b066fe;
	background-color: transparent;
	border: 1px solid #b066fe;
	text-decoration: none;
	margin: 0;
	padding: 26px 78px;
	border-radius: 64px;
	-webkit-border-radius: 64px;
	-moz-border-radius: 64px;
	-ms-border-radius: 64px;
	-o-border-radius: 64px;
	outline: none;
}


.btn-play:focus-visible,
.btn-play:focus,
.btn-play:active,
.btn-play:first-child:active,
.btn-play:hover {
	outline: none;
	background-color: #fff;
	color: #b066fe;
	border: 1px solid #fff;
}

/* buttons */

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
	z-index: 9;
	height: 170px;
}

.header .container {
	height: 100%;
}

.header .navbar {
	height: 100%;
}

.header .navbar .h-top {
	height: 100%;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 470px;
	right: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transform: translate(0 , 120px);
	-webkit-transform: translate(0 , 120px);
	-moz-transform: translate(0 , 120px);
	-ms-transform: translate(0 , 120px);
	-o-transform: translate(0 , 120px);
}

.h-login {
	margin: -30px 0 0 0;
}

.header .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header .navbar .h-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.h-top .h-login {
	display: flex;
	align-items: center;
}

.h-login .btn-play {
	font-size: 26px;
	line-height: 38px;
	padding: 8px 50px;
	margin-right: 10px;
	background-color: #b066fe;
	color: #fff;
	border: none;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.h-login .btn-play:last-child {
	margin-right: 0;
}

.h-login .btn-play:hover {
	background-color: #fff;
	color: #b066fe;
	border: none;
}

.header .navbar .h-top .h-login .btn-play:last-child {
	margin-right: 0;
}

.header .navbar .h-top .navbar-brand {
    margin: 10px 0 0 0;
    padding: 0;
    display: block;
    max-width: 140px;
    width: 100%;
}

.navbar-collapse {
	justify-content: flex-end;
}

.header .navbar .nav-item {
	margin: 0 26px;
}

.header .navbar .nav-item:first-child {
	margin-left: 0;
}

.header .navbar .nav-item:nth-last-child(2) {
	margin-right: 0;
}

.header .navbar .nav-item .nav-link {
	font-family: 'momcake_bold';
	font-size: 30px;
    line-height: 38px;
	color: #fff;
	text-decoration: none;
	text-align: center;
        text-transform: uppercase;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
	padding: 0;
}

.header .navbar .nav-item .nav-link.active,
.header .navbar .nav-item .nav-link:hover {
	color: #63e2ff;
}

.h-content {
	width: 100%;
    margin: -20px 0 0 0;
}
/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/
/*banner start*/

.content {
	height: 100%;
}

.scroll-to-section {
	position: absolute;
    right: 20px;
    bottom: 0px;
    max-width: 40px;
}
.scroll-to-section:hover {
	opacity: 0.5;
}

.banner-wrp {
	background-image: url("../images/header-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	height: 712px;
}

.banner-main {
	position: relative;
	height: 100%;
}

/* .banner-main .banner-logo { max-width: 270px; transform: translate(-150% , -43%); -webkit-transform: translate(-150% , -43%); -moz-transform: translate(-150% , -43%); -ms-transform: translate(-150% , -43%); -o-transform: translate(-150% , -43%); } */

.banner-main .banner-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-200% , -50%);
	-webkit-transform: translate(-200% , -50%);
	-moz-transform: translate(-200% , -50%);
	-ms-transform: translate(-200% , -50%);
	-o-transform: translate(-200% , -50%);
}

.jackpot-banner-wrp .banner-main .banner-logo {
	transform: translate(-200% , -90%);
	-webkit-transform: translate(-240% , -90%);
	-moz-transform: translate(-200% , -90%);
	-ms-transform: translate(-200% , -90%);
	-o-transform: translate(-200% , -90%);
}

.jackpot-banner-wrp .banner-logo img {
	max-width: 260px;
}

.banner-logo img {
	max-width: 300px;
    width: 100%;
}

.banner-item {
	margin: 0 20px;
	border-radius: 10px;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.banner-wrp .container {
	height: 100%;
}

.banner-item a {
	display: block;
}

.has-image[data-image-fit=contain] .fancybox__image {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.banner-item.slick-center img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.banner-item img {
	width: 100%;
}

.banner-item img,
.banner-item video {
	width: 100%;
	height: 227px;
	object-fit: cover;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.banner-item.slick-current img,
.banner-item.slick-current video {
	height: 300px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
}

.banner-bottom-slider {
	margin: -60px 0 0 0;
}

.banner-slider {
	position: relative;
	opacity: 0;
}

.banner-slider.slick-initialized {
	opacity: 1;
}

.banner-slider .slick-track {
	display: flex;
	align-items: center;
}

.banner-slider .slick-list {
	margin: 0 30px;
	padding: 0 400px 0 400px;
}

.slick-arrow {
	border: none;
	background-color: transparent;
	color: #63e2ff;
	position: absolute;
	top: 50%;
	transform: translate(0 , -50%);
	-webkit-transform: translate(0 , -50%);
	-moz-transform: translate(0 , -50%);
	-ms-transform: translate(0 , -50%);
	-o-transform: translate(0 , -50%);
}

.slick-arrow:hover {
	opacity: 0.5;
}

.slick-arrow img {
	max-width: 20px;
	max-height: 20px;
}

.slick-arrow:hover {
	color: #fff;
}

.slick-arrow.prev-arrow {
	left: 0;
}

.slick-arrow.next-arrow {
	right: 0;
}

.date-slider .slick-list {
	margin: 0 30px;
}

.date-slider {
	opacity: 0;
}

.date-slider.slick-initialized {
	opacity: 1;
}

.banner-video {
	height: 100%;
}

.banner-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*banner end*/

/*jackpot section start*/

.jackpot-main {
	padding: 20px 0 0 0;
}

.jackpot-title {
    padding: 0 20px;
    max-width: 510px;
    margin: 0 auto;
    width: 100%;
}

.jackpot-title .small-title:first-child {
	margin: 0 0 -40px 0;
}

.jackpot-title .small-title {
    font-size: 80px;
    line-height: 90px;
}

.jackpot-title .main-title {
    font-size: 104px;
    line-height: 106px;
}

.jackpot-title .small-title:last-child {
	margin: -30px 0 0 0;
}

.jackpot-btn {
    text-align: center;
    margin: 30px 0 0 0;
    width: 100%;
}

.jackpot-btn .btn {
    padding: 24px 134px;
    width: 100%;
	font-size: 26px;
    line-height: 30px;
}

.gradient-background {
	border-radius: 10px;
	background-image: -moz-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	margin: 10px 0 0 0px;
	padding: 11px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gradient-background-leaderboard {
	border-radius: 10px;
	background-image: -moz-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	padding: 11px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gradient-background .main-title {
	font-size: 44px;
    line-height: 54px;
	text-align: center;
	letter-spacing: 2.1px;
	color: #63e2ff;
}
/*jackpot section end*/

/*date section start*/
.date-slider-content .date-detail .small-title h4 {
    text-transform: uppercase;
    line-height: 0.001;
    text-align: center;
    font-size: 36px;
    line-height: 50px;
    color: rgba(99, 226, 255, 0.502);
    margin: 5px 0 -14px 0;
    font-family: 'momcake_thin';
    font-weight: 400;
}

.date-slider-content img {
	max-width: 34px;
}

.date-slider-content .date-detail .small-title span {
	display: block;
	font-family: 'momcake_bold';
        text-transform: uppercase;
	line-height: 0.001;
	text-align: center;
	font-size: 32px;
    line-height: 42px;
	color: rgba(99, 226, 255, 0.502);
}

.date-slider-content {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.date-slider-content .date-detail {
    padding: 0 0 0 24px;
	margin: 0 0 14px 0px;
}

.date-left .date-heading .gradient-background {
	justify-content: space-between;
}

.date-left .date-heading {
	margin: 0 0 0 50px;
}

.date-path {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 10px;
}

.date-path-block {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.date-path-block .block-inner-title {
	font-family: 'momcake_thin';
	font-size: 28px;
    line-height: 32px;
	text-align: center;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.date-path-block .detail span,
.date-path-block .detail p ,
.date-path-block .block-inner-title p {
	margin: -10px 0 0 0;
}

.date-path-block .detail {
	text-align: center;
	color: rgb(99, 226, 255);
	padding-top: 16px;
}

.date-path-block .detail span {
	font-family: 'momcake_bold';
	font-size: 24px;
	line-height: 28px;
	display: block;
}

.date-path-block .image img {
    max-width: 90px;
    max-height: 80px;
    object-fit: cover;
}

.date-path-btn {
	width: 100%;
	text-align: center;
	padding-top: 15px;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.date-path-btn .btn-play:first-child {
	margin-bottom: 16px;
}

.date-path-btn .btn-play {
	width: 240px;
}

.date-path-btn .btn-play {
    padding: 8px 33px;
    border: 1px solid rgb(99, 226, 255);
    color: rgb(99, 226, 255);
}

.date-path-btn .btn-play:hover {
	border: 1px solid #fff;
}

.date-path .date-path-block .image img:first-child {
	padding-right: 24px;
}

.date-main .row {
	margin: 0 -25px;
}

.date-main .row > * {
	padding: 0 25px;
}

/*date right*/

.date-bottom-detail {
	background-color: rgb(15, 34, 38);
}

.date-table .date-right-heading {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 70px 0 0;
}

.date-bottom-block {
	display: flex;
    align-items: center;
    justify-content: space-around;
	/* padding: 81px 0; */
	padding: 50px 0;
	border-bottom: 2px solid rgba(99, 226, 255, 0.502);
	margin: 0 60px;
}

.date-bottom-block h2,
.date-bottom-block span {
	display: block;
	font-size: 32px;
    line-height: 34px;
	color: #63e2ff;
	margin: 0;
}

.date-right-heading .gradient-background {
    margin-bottom: 0 !important;
    padding: 0 50px;
    margin-top: 10px;
    /* margin-bottom: 30px; */
}

.date-right .gradient-background {
	margin-bottom: 10px;
}

.date-table .date-bottom-detail:last-child .date-bottom-block {
	border-bottom: none;
}

.date-bottom-block .btn-play {
	color: #63e2ff;
	border: 1px solid #63e2ff;
	padding: 8px 17px;
}

.date-bottom-block .btn-play:hover {
	border: 1px solid #fff;
}

.date-wrp {
	padding: 50px 0;
}
/*date section end*/

/* jackpot page */
.jackpot-banner-wrp {
	background-image: url("../images/jackpot-bg.jpg");
	height: 752px;
}

.jackpot-banner-wrp .banner-main {
    padding: 440px 0 100px 0;
}

.jackpot-pg-right ul {
	margin: 0;
	padding: 0;
}

.jackpot-pg-right ul li {
	list-style: none;
	margin-top: 20px;
}

.jackpot-pg-right ul li:first-child {
	margin-top: 0;
}

.jackpot-pg-left .jackpot-btn {
	display: none;
}

.jackpot-pg-right {
	text-align: center;
    margin: 40px 0 0 0;
}

.jackpot-pg-right ul li a {
	max-width: 280px;
	width: 100%;
}

.jackpot-pg-right ul li .btn-play {
	font-size: 28px;
    line-height: 30px;
	padding: 22px 72px;
}

.price-detail-inner-wrp {
	background-color: rgb(15, 34, 38);
}

/* .prize-left {
	display: flex;
	align-items: center;
	justify-content: space-between;
} */

.prize-left .prize-detail-wrp {
	max-width: 300px;
    width: 100%;
}

.prize-right .block-title {
	font-size: 64px;
    line-height: 68px;
	text-align: center;
}

.prize-list ul {
	max-width: 600px;
    margin: 0 auto;
}

.prize-list ul li {
    font-size: 24px;
    line-height: 36px;
    color: #63e2ff;
	margin: 0 0 20px 0;
}

.prize-list ul li:last-child {
	margin-bottom: 0;
}

.prize-inner-detail {
	text-align: center;
}

.prize-left .date-bottom-detail .right-detail {
	display: flex;
	align-items: center;
	max-width: 250px;
	width: 100%;
}

.prize-left .date-bottom-detail .right-detail .detail p {
    font-size: 32px;
    line-height: 34px;
    color: #63e2ff;
    margin: 0;
}

.prize-left .date-bottom-detail .right-detail img {
	max-height: 110px;
    padding: 0 48px 0 0;
    /* margin: 0px 0 0 -150px; */
   	max-width: 110px;
}

.prize-left .prize-detail-wrp:first-child .prize-inner-detail .detail {
	min-height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prize-detail-wrp .detail p {
	font-weight: 400;
	font-size: 30px;
	line-height: 34px;
	color: #63e2ff;
}

.prize-left .prize-detail-wrp:nth-child(2) .right-detail {
	justify-content: flex-start;
}

/* result start */
.result-wrp {
    padding: 30px 0 0 0;
}

.result-left {
	margin: 20px 0 0 0;
}

.result-right .date-heading .gradient-background {
	justify-content: space-between;
	margin-top: 0;
}

.result-right .date-path-btn {
	padding-top: 0;
}

.result-right .date-path-block .block-inner-title {
	position: relative;
}

.result-right .date-path-block .block-inner-title .btn-popup {
    background-color: transparent;
    border: 1px solid rgb(99, 226, 255);
    border-radius: 64px;
    -webkit-border-radius: 64px;
    -moz-border-radius: 64px;
    -ms-border-radius: 64px;
    -o-border-radius: 64px;
    max-width: 130px;
    padding: 14px 54px 14px 28px;
    font-size: 20px;
    line-height: 26px;
    position: relative;
}

.result-right .date-path-block .block-inner-title .btn-popup::before {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-80%, -50%);
    -webkit-transform: translate(-80%, -50%);
    -moz-transform: translate(-80%, -50%);
    -ms-transform: translate(-80%, -50%);
    -o-transform: translate(-80%, -50%);
}

.result-right .date-path-block .block-inner-title button {
	background-color: transparent;
    border: none;
    box-shadow: none;
    position: absolute;
    top: -5px;
    right: 8px;
}

.result-right .date-path .date-path-block:first-child {
	max-width: 196px;
    width: 100%;
}

.result-right .date-path {
	padding-bottom: 30px;
}

.result-right .date-heading .gradient-background .block-inner-title:first-child {
    max-width: 310px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0px 0 -40px;
}

.result-left .result-title {
	border-top: 1px solid rgba(99, 226, 255, 0.502);
	border-bottom: 1px solid rgba(99, 226, 255, 0.502);
}

.result-right .result-main-title .small-title {
	color: #63e2ff;
	text-align: center;
	padding: 0 0 20px 0;
}

.result-left .date-bottom-block h2 {
	margin: 0 0 0 -50px;
}

.result-left .result-title ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* border-top: 1px solid rgba(99, 226, 255, 0.502);
	border-bottom: 1px solid rgba(99, 226, 255, 0.502); */
	padding: 20px 0;
	max-width: 460px;
	width: 100%;
	margin: 0 auto;
}

.result-left .result-title ul li {
	list-style: none;
	font-family: 'momcake_bold';
    font-size: 30px;
    line-height: 36px;
    color: #63e2ff;
	position: relative;
}

.result-left .result-title ul li::before {
	content: "";
    position: absolute;
    top: -3px;
    left: -70px;
    background-color: rgba(99, 226, 255, 0.502);
    height: 46px;
    width: 1px;
}

.result-left .result-title ul li:first-child::before {
	display: none;
}

.result-left .date-right-heading .gradient-background {
	margin-top: 40px;
}

.result-main {
	padding: 10px 0 60px 0;
}

.result-right .date-path-btn .btn-play {
	padding: 13px 32px;
	width: 260px;
	font-size: 26px;
    line-height: 30px;
	margin-bottom: 0;
}

.result-right .date-path-btn .btn-play:active {
	color: #63e2ff;
}

.result-main .row {
	margin: 0 -30px;
}

.result-main .row > * {
	padding: 0 30px;
}

.modal .date-slider.slick-initialized {
	opacity: 1;
}

/* result start */
/* jackpot page */

/* terms and condition pg */

.terms-wrp {
	height: 292px;
    background-position: center;
	/* background-image: none; */
}

/* .terms-condition-wrp {
	padding: 150px 0 0 0;
} */

.terms-conditin-main {
    padding: 20px 0 40px 0;
}

.terms-conditin-main .block-title {
    font-size: 64.47px;
    line-height: 76px;
}

.terms-conditin-main p {
    font-size: 22px;
    line-height: 26px;
    color: #63e2ff;
    margin-bottom: 10px;
}

.terms-conditin-main ol,
.terms-conditin-main ul {
	margin-top: 30px;
}

.terms-conditin-main ol li,
.terms-conditin-main ul li {
	font-size: 22px;
	line-height: 26px;
	color: #63e2ff;
	margin-bottom: 10px;
}
/* terms and condition pg */


/* modal 1 styling */
.modal-blue-counter .modal-body {
	background-color: #0f2226;
}

.modal-blue-counter .modal-content,
.modal-blue-counter .modal-header {
	background-color: transparent;
	border: none;
}

.modal-header .btn-close {
	background-image: url("../images/close-img.png");
	opacity: 1;
	box-shadow: none;
}

.modal-header .btn-close:focus {
	box-shadow: none;
}

.modal-blue-counter .date-slider-content .date-detail {
	margin: 0;
	padding: 0;
}

.modal-blue-counter {
    max-width: 560px;
}

.modal-date-counter {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	margin: 20px 0 0 0;
}

/* .modal-date-counter .modal-counter-inner:hover {
	background-color: rgb(99, 226, 255);
	border: 1px solid rgb(99, 226, 255);
} */

.modal-date-counter .modal-counter-inner .small-title.active,
.modal-date-counter .modal-counter-inner .small-title:hover {
	/* background-color: rgb(99, 226, 255); */
	border: 1px solid #fff;
	color: #0f2226;
	background-color: #fff;
}

.modal-date-counter .modal-counter-inner .small-title {
	background-color: transparent;
	border: 1px solid rgb(99, 226, 255);
	padding: 6px 10px;
	font-size: 18px;
/*        font-size: 25px;*/
	line-height: 26px;
	border-radius: 64px;
	-webkit-border-radius: 64px;
	-moz-border-radius: 64px;
	-ms-border-radius: 64px;
	-o-border-radius: 64px;
	text-align: center;
	color: rgb(99, 226, 255);
	display: block;
	text-decoration: none;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s;
}

.modal-date-counter .modal-counter-inner .small-bottom-title.active,
.modal-date-counter .modal-counter-inner .small-bottom-title:hover {
	border: 1px solid #fff;
	color: #0f2226;
	background-color: #fff;
	margin-top: 2px;
}

.modal-date-counter .modal-counter-inner .small-bottom-title {
	background-color: #63e2ff;
	color: #0f2226;
	margin-top: 2px;
}

.modal-date-counter .row {
	justify-content: center;
}

.modal-counter-inner {
	margin: 0 10px 20px 10px;
	max-width: 82px;
	width: 100%;
	text-decoration: none;
}

.modal-blue-counter .date-slider-content .date-detail .small-title span {
	color: rgba(99, 226, 255);
}

.modal-blue-counter .modal-body .date-slider {
	max-width: 220px;
	margin: 0 auto;
}

.date-inner-slider-main {
	border-bottom: 0.75px solid #398293;
	padding: 0 0 10px 0;
	margin: 20px;
}
/* modal 1 styling */

/* bet history page start */

.bet-history-banner {
	height: 562px;
}

.bet-history-banner .banner-main .banner-logo {
	transform: translate(-200% , -40%);
	-webkit-transform: translate(-200% , -40%);
	-moz-transform: translate(-200% , -40%);
	-ms-transform: translate(-200% , -40%);
	-o-transform: translate(-200% , -40%);
}

.bet-history-wrp {
	padding: 30px 0;
}

.bet-history-main .table {
	border: 1px solid rgba(57, 130, 147, 0.4);
	margin: 30px 0 50px 0;
}

.bet-history-main .small-title {
	color: #63e2ff;
}

.bet-history-main .table thead th {
	font-family: 'momcake_bold';
	font-size: 24px;
	line-height: 28px;
	color: #63e2ff;
	text-align: center;
	padding: 30px 0;
	border-radius: 10px;
    background-image: -moz-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(0,0,0) 0%, rgb(37,80,90) 52%, rgb(0,0,0) 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 80px 0 69px;
    padding: 11px 0;
    /* display: flex;
    align-items: center;
    justify-content: center; */
	white-space: nowrap;
}

.bet-history-main .table td {
	font-family: 'momcake_bold';
	font-size: 24px;
	line-height: 28px;
	color: #b066fe;
	text-align: center;
	padding: 30px 0;
	text-transform: lowercase !important;
	white-space: nowrap;
}

.bet-history-main .table tr.active {
	background-color: rgba(247, 240, 240, 0.1);
}

.bet-history-main .table .card-btn a {
	background-color: #398293;
    text-decoration: none;
    color: #fff;
    padding: 8px 10px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    font-size: 18px;
    line-height: 18px;
}

.bet-history-main .table .card-btn {
	padding: 29px 0;
}

.bet-history-main .table .card-btn a:hover {
	color: #fff;
	background-color: #b066fe;
}

.bet-history-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bet-history-search {
	display: flex;
	align-items: center;
}

.bet-history-search .form-label {
	margin: 0;
	color: #63e2ff;
    font-size: 24px;
    line-height: 32px;
	padding-right: 10px;
}

.bet-history-search .form-control:focus {
	box-shadow: none;
}

.bet-history-top .form-select,
.bet-history-search .form-control {
	background-color: transparent;
    border: 1px solid rgba(57, 130, 147, 0.4);
    color: #63e2ff;
    font-size: 24px;
    line-height: 32px;
	padding: 9px 10px;
    letter-spacing: 1.1px;
}

.bet-history-top .form-select {
	margin: 0 10px;
	padding: 5px 28px;
	background-image: url("../images/down-arrow.svg");
}

.bet-history-top .form-select:focus {
	box-shadow: none;
}

.bet-history-top .form-select option {
	color: #000;
}

.bet-history-search .form-control::placeholder {
	color: #63e2ff;
    font-size: 24px;
    line-height: 32px;
}

.bet-history-top .bet-enteries label {
	display: flex !important;
	align-items: center;
	color: #63e2ff;
    font-size: 24px;
    line-height: 32px;
}
/* bet history page end */

/* contact pg */
.contact-main .contact-form {
	max-width: 1030px;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0;
}

.contact-form .form-group {
	margin-bottom: 20px;
}

.contact-form .form-control {
	background-color: transparent;
	border: 1px solid rgba(57, 130, 147, 0.4);
	color: #63e2ff;
	font-size: 22px;
    line-height: 30px;
	padding: 12px 20px;
	letter-spacing: 1.1px;
}

.contact-form .form-control:focus {
	box-shadow: none;
}

.contact-form .form-control::placeholder {
	color: #63e2ff;
	font-size: 22px;
	line-height: 24px;
}

.contact-form .small-title {
	font-family: 'momcake_bold';
	color: #63e2ff;
	padding-bottom: 20px;
}

.contact-form .form-group .btn-play {
	padding: 8px 56px;
    border: 1px solid rgb(99, 226, 255);
    color: rgb(99, 226, 255);
	font-size: 26px;
    line-height: 32px;
}

.contact-form .form-check-label {
	position: relative;
	padding-left: 40px;
	color: #63e2ff;
    font-size: 22px;
    line-height: 25px;
}

.contact-form .form-check-label a {
	text-decoration: none;
	color: #63e2ff;
	/* font-family: 'momcake_bold'; */
	font-size: 22px;
    line-height: 26px;
}

.contact-form .form-check-label a:hover {
	color: #fff;
}

.contact-form .form-check-label::before {
	content: " ";
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(57, 130, 147, 0.5);
    background-color: transparent;
}

.contact-form .form-check-label::after {
	content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    position: absolute;
    top: 6px;
    left: 4px;
    opacity: 0;
    color: #398293;
}

.form-check-input {
	display: none;
}

.contact-form .form-check-input:checked + .form-check-label::after {
	opacity: 1;
}

.contact-form .form-check {
	margin-top: 20px;
	padding: 0;
}
/* contact pg */

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer-title {
	padding: 0 0 10px 0;
}

.footer {
	background-color: rgb(37, 80, 90);
	padding: 20px 0 10px 0;
	position: relative;
}

.footer-title h5 {
    font-family: 'momcake_bold';
    font-size: 26px;
    line-height: 32px;
    margin: 0;
    color: #63e2ff;
}

.footer-logo a {
    display: block;
    max-width: 105px;
}

.footer-menu ul {
	margin: 0;
	padding: 0;
}

.footer-menu ul li {
    list-style: none;
    color: #63e2ff;
    font-size: 20px;
    line-height: 31px;
}

.footer-menu ul li a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-email a {
	display: inline-block;
	color: #63e2ff;
	text-decoration: none;
	font-size: 20px;
    line-height: 22px;
}

.footer-email a:hover {
	text-decoration: none;
	color: #fff;
}

.footer-about {
    max-width: 490px;
    width: 100%;
}

.footer-about .detail p {
	color: #63e2ff;
	font-size: 20px;
    line-height: 24px;
}

.footer-logo {
    margin: 10px 0 20px 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom .social-media ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.footer-bottom .social-media ul li {
	list-style: none;
	margin: 0 10px;
}

.footer-bottom p {
	color: #63e2ff;
	font-size: 20px;
	line-height: 22px;
}

.footer-bottom ul li a:hover {
	opacity: 0.8;
}

.footer-bottom ul li:first-child {
	margin-left: 0;
}

.footer-bottom ul li:last-child {
	margin-right: 0;
}

.footer-bottom ul li a {
    display: block;
    max-width: 32px;
}

.footer-bottom ul li a:hover {
	opacity: 0.5;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.502);
    padding: 0 0 10px 0px;
}

.footer-bottom {
    padding: 10px 0 0 0;
}

/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #63e2ff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

.prize-left .date-right-heading .gradient-background {
    margin-top: 0;
}

.modal-date-counter 
.modal-counter-inner  
.small-title .active {
    background-color: #ffffff;
    color: #0f2226;
}