* {
    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;
}

/* Chillax font */
@font-face {
    font-family: "Chillax-Bold";
    src: url("../fonts/chillax-cufonfonts/Chillax-Bold.otf");
}

@font-face {
    font-family: "Chillax-Light";
    src: url("../fonts/chillax-cufonfonts/Chillax-Light.otf");
}

@font-face {
    font-family: "Chillax-Medium";
    src: url("../fonts/chillax-cufonfonts/Chillax-Medium.otf");
}

@font-face {
    font-family: "Chillax-Regular";
    src: url("../fonts/chillax-cufonfonts/Chillax-Regular.otf");
}

@font-face {
    font-family: "Chillax-Semibold";
    src: url("../fonts/chillax-cufonfonts/Chillax-Semibold.otf");
}

/* common css */
:root {
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #242424;
    --light-gray-color: #ACACAC;
    --yellow-color: #FFF600;
}
.yellow {
    color: var(--yellow-color);
}

body {
    background: #0F0F0F;
    font-family: "Chillax-Regular";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--white-color);
    font-family: "Chillax-Medium";
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--yellow-color);
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--light-gray-color);
}

p:last-child {
    margin-bottom: 0;
}

p span {
    color: var(--gray-color);
}

p a {
    color: var(--gray-color);
    font-size: inherit;
    font-family: inherit;
}

.textNormal {
    font-weight: 400;
}

.textMedium {
    font-weight: 500;
}

.textSemiBold {
    font-weight: 600;
}

.textBold {
    font-weight: 700;
}

.textBlack {
    font-weight: 900;
}

.textWhite {
    color: var(--white-color);
}

.textBlack {
    color: var(--black-color);
}

.textCenter {
    text-align: center;
}

.textRight {
    text-align: right;
}

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

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: var(--light-gray-color);
}
a:hover {
    color: var(--light-gray-color);
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-heading h4 {
    background: var(--black-color);
    padding: 10px;
    border-radius: 30px;
}

.section-heading p {
    font-size: 22px;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.btn.btn-yellow {
	font-size: 20px;
	padding: 10px 40px;
	background: var(--yellow-color);
	color: var(--black-color);
	border-radius: 50px;
	border: none;
	display: flex;
	align-items: center;
	font-family: "Chillax-Medium";
}

.btn.btn-yellow img {
    max-width: 30px;
    margin-right: 10px;
}

section {
    overflow: hidden;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.bg {
    background: var(--gray-color);
    padding: 20px;
    border-radius: 15px;
}

img,
video {
    max-width: 100%;
}

.button-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    background: green;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: red;
    outline: 2px solid red;
    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;
}

.container-fluid {
    max-width: 90%;
}

/* 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 #fff;
}

#header {
	padding: 0px 0 60px;
}

#header .header-top {
	padding: 35px;
	background: #242424;
	margin-bottom: 50px;
  }

#header .header-box {
    background: var(--yellow-color);
    border-radius: 100px;
    padding: 5px 20px;
}

#header nav ul li.desktop {
    max-width: 170px;
    margin-top: -50px;
    margin-bottom: -50px;
}

#header nav ul li.desktop img {
    width: 100%;
}

#header nav ul li.desktop a {
    padding: 0;
}

#header .logo-box img {
    max-width: 100px;
    width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    font-size: 25px;
    color: black;
    cursor: pointer;
    display: none;
}

#header .button-box {
    margin-left: 20px;
}

#header .button-box .btn.btn-yellow {
    padding: 8px 30px;
}

#header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#header nav ul li {
    display: inline-block;
    padding: 5px;
    position: relative;
}

#header nav ul li a {
    color: var(--black-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 20px;
    font-family: "Chillax-Regular";
}

#header nav ul li a.router-link-active {
    background: var(--black-color);
    color: var(--yellow-color);
}
#header nav ul li.desktop a.router-link-active {
	background: transparent;
}
#header .container {
    max-width: 1200px;
}

/* main box1 css */
.box .same li:not(:last-child) {
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.list-box ul li {
	color: var(--light-gray-color);
}

.box .same .button-box {
    padding-top: 15px;
}

.ad-box img {
    width: 100%;
}
.box .same .content-box {
	display: flex;
	align-items: center;
}
.app-box .content-box .img-box {
	margin-right: 10px;
}
.app-box li {
	position: relative;
}
.app-box li::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 20px;
	right: 0;
	top: 3px;
	background: url('../images/down-arrows.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#main .box .ranking-box .content-box p {
	margin-bottom: 0;
}
#main .box .same .content-box .img-box {
	margin-right: 10px;
}
.nav-tabs {
	border: 1px solid #707070;
	border-radius: 40px;
	justify-content: space-between;
	padding: 10px 20px;
	margin-bottom: 20px;
}
.nav-tabs .nav-link {
	margin-bottom: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 5px 25px;
	border-radius: 40px;
    font-family: "Chillax-Medium";
    color: var(--light-gray-color);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: var(--black-color);
	background-color: var(--yellow-color);
}
#main .box1 > :not(:last-child), #main .box3 > :not(:last-child) {
	margin-bottom: 30px;
}
#main .box .ranking-box.same .nav-tabs li {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
	flex: 33.33%;
	max-width: 33.33%;
}
#main .stories-box .img-box img {
	width: 100%;
	border-radius: 25px;
}
#main .sub_content {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
#main .stories-box .list a {
	display: block;
}
#main .timing {
	display: flex;
	justify-content: flex-end;
	padding-top: 20px;
}
#main .timing li:not(:last-child) {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 2px solid var(--light-gray-color);
}
#main .timing li p {
	line-height: 1;
}
#main .stories-box .list > li {
	border-bottom: 1px solid #707070;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#main .stories-box .text-box {
	padding-top: 15px;
}
#main .stories-box .text-box h5 {
	text-transform: unset;
    display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#main .news-box .list > li {
	display: flex;
	align-items: center;
	background: #0F0F0F;
	padding: 15px;
	border-radius: 20px;
}
#main .news-box .list li .img-box {
	width: 30%;
}
#main .news-box .list li .text-box {
	width: 65%;
}
#main .news-box .list li .img-box a {
	display: block;
}
#main .news-box .list li .img-box img {
	width: 100%;
	border-radius: 25px;
}
#main .news-box .list li .img-box {
	width: 35%;
	padding-right: 20px;
}
#main .news-box .list li .text-box h5 {
	text-transform: unset;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#main .news-box .list > li:not(:last-child) {
	margin-bottom: 20px;
}
#main .news-box .list li .text-box p {
	margin-bottom: 0;
	/* display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis; */
}
#main .box2 .button-box {
	padding-top: 30px;
}
#main .stories-box.bdr .list > li {
	border-top: 1px solid #707070;
	padding-top: 20px;
	margin-top: 20px;
}
#main .box.box2 .end.bg {
	margin: 20px 0;
	height: 300px;
}

/* footer css */
#footer {
	overflow: hidden;
	padding-top: 60px;
}
#footer .footer-top ul li.desktop {
	max-width: 170px;
	margin-top: -30px;
	margin-bottom: -30px;
	padding: 0 !important;
	border: none !important;
}
#footer ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .footer-top ul li:not(:last-child), #footer .footer-end ul li:not(:last-child) {
	padding-right: 30px;
	margin-right: 30px;
	border-right: 2px solid #fff;
    line-height: 1;
}
#footer .footer-top ul a, #footer .footer-end ul a {
	line-height: 1;
    color: var(--white-color);
    font-size: 20px;
}
#footer .footer-top{
	background: var(--gray-color);
}
#footer .footer-end {
	padding: 50px 0 20px;
}
#header .footer-center h5 {
	margin-bottom: 0;
	font-family: "Chillax-Regular";
	font-size: 17px;
}
#header .footer-center li:not(:last-child) {
	margin-right: 20px;
}
#header .footer-center a.link {
	border: 1px solid #FFFFFF30;
	padding: 7px 20px 7px 7px;
	border-radius: 50px;
	display: flex;
	align-items: center;
}
#header .footer-center ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
#header .footer-center a.link .img-box {
	width: 30px;
	height: 30px;
	background: #262626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
#header .footer-center a.link .img-box img {
	max-width: 20px;
}
#header .footer-center {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
#header .footer-center::after {
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	background: #ffffff25;
	transform: translate(-50%,0);
}
#footer .center {
	width: 14%;
	text-align: center;
	margin: -30px 0;
}
#header .left, #header .right {
	width: 50%;
}


#schdule h4, #schdule h6 {
	text-transform: capitalize;
}
#schdule p {
    font-family: "Chillax-Medium";
}
#schdule .end {
	display: flex;
	align-items: center;
	justify-content: center;
}
#schdule .bottomData {
	text-align: center;
	margin-top: 15px;
}
#schdule .end .left, #schdule .end .right {
	display: flex;
	align-items: center;
	min-width: 240px;
}
#schdule h6, #schdule h5, #schdule h4 {
    margin-bottom: 0;
}
#schdule .end .center {
	padding: 0 20px;
}
#schdule .end .left .text {
	margin-right: -20px;
	background: linear-gradient(270deg, rgba(193,186,4,1) 0%, rgba(36,36,36,0) 90%);
	padding: 10px 30px 10px 10px;
}
#schdule .end .right .text {
	margin-left: -20px;
	background: linear-gradient(270deg, rgba(36,36,36,0) 10%, rgba(193,186,4,1) 100%);
	padding: 10px 10px 10px 30px;
}
#schdule .end .left h6, #schdule .end .right h6 {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#schdule .end .left h6 {
	text-align: right;
}
#schdule .end .left {
	justify-content: end;
}
#schdule .end img {
	position: relative;
	max-width: 70px;
	min-width: 70px;
	background: #fff;
	border-radius: 50%;
	border: 2px solid #b3ad07;
}
/* #schdule .right {
	max-width: 700px;
} */
#schdule.seriesDetail .list:not(:last-child) {
	margin: 25px 0;
	border-bottom: 1px solid #707070;
}

#schdule  .details {
	margin: 25px 0;
}
#schdule .heading-box {
	background: var(--black-color);
	padding: 10px 20px;
	border-radius: 50px;
}
#schdule .list:last-child {
	padding-bottom: 0;
}
/* #schdule .list:not(:last-child) {
	border-bottom: 1px solid #707070;
} */
#schdule .details .end:not(:first-child) {
	padding-top: 20px;
}
#schdule .box.box4 {
	padding-top: 20px;
}
#schdule .list:first-child .display {
	border-top: none;
}
#schdule .list .display {
	border-top: 1px solid #707070;
}
#schdule .list .display, #schdule .list .notdisplay {
	padding: 20px  20px 0px;
}
#schdule .list .right.bb {
    border-bottom: 1px solid #707070;
}
#schdule .end .text p {
	color: #fff;
}
#schdule .end .left .text p {
	text-align: right;
}
/* #schdule .list {
	padding: 20px;
} */
#schdule .box.box3 > :not(:last-child) {
	margin-bottom: 30px;
}
#schdule .nav-tabs {
	display: inline-block;
}
#schdule .box.box1 > .nav-tabs li {
	display: inline-block;
}
#schdule .box.box1 > .nav-tabs {
	border: none;
	border-radius: 0;
	justify-content: flex-start;
	padding: 0 20px;
	margin-bottom: 0;
}
#schdule .box.box1 > .nav-tabs .nav-link {
	border-radius: 0;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 8px 30px;
}
#schdule .box .same .nav-tabs li {
	border: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}
#series h6, #series h5, #series h4 {
    margin-bottom: 0;
}
#series .heading-box {
	background: var(--black-color);
	padding: 10px 20px;
	border-radius: 50px;
}
#series h4, #series h6 {
	text-transform: capitalize;
}
#series .list:first-child .display {
	border-top: none;
}
#series .list .display {
	border-top: 1px solid #707070;
}
#series .list .display, #series .list .notdisplay {
	padding: 20px 0 0px 20px;
}
#series .list li {
	padding-bottom: 10px;
    border-bottom: 1px solid #707070;
}




#series .right h6 {
	margin-bottom: 10px;
}
#series .list:last-child {
	padding-bottom: 0;
}
#series .box.box4 {
	padding-top: 20px;
}
#series .box.box3 > :not(:last-child) {
	margin-bottom: 30px;
}
#news .heading-box {
	background: var(--black-color);
	padding: 10px 20px;
	border-radius: 50px;
}
#news h4, #news h5, #news h6 {
	text-transform: none;
}
#news .same.ranking-box .top img {
	width: 100%;
	border-radius: 15px;
}
#news  .bottom {
	margin-top: 25px;
}
#news .list:not(:last-child) {
	border-bottom: 1px solid #707070;
}
#news .list {
	padding: 20px 0 20px 10px;
}
#news .list li:not(:last-child) {
	padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #707070;
}
#news .right h6 {
	margin-bottom: 10px;
}
#news .list:last-child {
	padding-bottom: 0;
}
#news .box.box4 {
	padding-top: 20px;
}
#news .box.box3 > :not(:last-child) {
	margin-bottom: 30px;
}
#news .timing {
	display: flex;
	justify-content: flex-end;
	padding-top: 20px;
}
#news .timing li:not(:last-child) {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 2px solid var(--light-gray-color);
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
#news .timing li p {
	line-height: 1;
}
#news .heading-box h4 {
	margin-bottom: 0;
}
#news .list .right h5 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#news .list .right p {
    display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#news .list .left img {
	width: 100%;
	border-radius: 15px;
}
#news .bottom p a {
	color: var(--light-gray-color);
	text-decoration: underline;
}
#news .list .left a {
	display: block;
}
#news .list .row {
	align-items: center;
}


#videos .heading-box {
	background: var(--black-color);
	padding: 10px 20px;
	border-radius: 50px;
}
#videos h4, #videos h5, #videos h6 {
	text-transform: none;
}
#videos .list:not(:last-child) {
	border-bottom: 1px solid #707070;
}
#videos .list {
	padding: 20px 0 20px 10px;
}
#videos .list li:not(:last-child) {
	padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #707070;
}
#videos .right h6 {
	margin-bottom: 10px;
}
#videos .list:last-child {
	padding-bottom: 0;
}
#videos .box.box4 {
	padding-top: 20px;
}
#videos .box.box3 > :not(:last-child) {
	margin-bottom: 30px;
}
#videos .timing {
	display: flex;
	justify-content: flex-end;
	padding-top: 20px;
}
#videos .timing li:not(:last-child) {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 2px solid var(--light-gray-color);
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
#videos .timing li p {
	line-height: 1;
}
#videos .heading-box h4 {
	margin-bottom: 0;
}
#videos .list .right h5 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#videos .list .right p {
    display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#videos .list .left video {
	width: 100%;
}
#videos .list .left a {
	display: block;
}
#videos .list .row {
	align-items: center;
}

#ranking .heading-box {
	background: var(--black-color);
	padding: 10px 20px;
	border-radius: 50px;
	margin-bottom: 30px;
}
#ranking .heading-box h4 {
	margin-bottom: 0;
}
#ranking h4, #ranking h5, #ranking h6 {
	text-transform: none;
}
#ranking .box.box5 {
	margin-bottom: 20px;
}
table {
	width: 100%;
}
.table-responsive {
	border: 1px solid var(--light-gray-color);
}
table tr:not(:last-child) {
	border-bottom: 1px solid var(--light-gray-color);
}
table th, td {
	color: var(--light-gray-color);
	font-weight: normal;
	padding: 10px 20px;
	font-size: 16px;
	white-space: nowrap;
}
.table-box h5 {
	margin-bottom: 0;
	padding: 20px;
    border: 1px solid var(--light-gray-color);
	border-bottom: none;
}
.table-box .button-box {
	padding: 15px;
	border: 1px solid var(--light-gray-color);
	border-top: none;
}
.table-box .button-box .btn.btn-yellow {
	justify-content: center;
}
#ranking .ad-box {
	padding: 20px 0;
}
table thead tr{
	background: var(--black-color);
}
table tbody tr:nth-child(1){
	background: #404040;
}

#termsandconditions .section-heading, #privacyPolicy .section-heading, #grievance .section-heading {
	text-align: left;
}
.section-heading h3 {
	background: var(--black-color);
	padding: 10px;
	border-radius: 30px;
}

.footData h4 {
	margin-top: 25px;
	text-align: center;
}