/*==================================================
    WINDOW TO NEWS SIDEBAR
==================================================*/

.sidenav {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	z-index: 99999;
	background: #fff;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .35s;
	box-shadow: 0 0 18px rgba(0,0,0,.25);
	padding-bottom: 25px;
}

/* Scrollbar */

.sidenav::-webkit-scrollbar {
 width:6px;
}
 .sidenav::-webkit-scrollbar-track {
 background:#f3f3f3;
}
 .sidenav::-webkit-scrollbar-thumb {
 background:#8d0000;
 border-radius:20px;
}
/* Logo */

.side-logo {
	background: linear-gradient(135deg, #5a0000, #1b0000);
	padding: 22px 18px;
	text-align: center;
	position: relative;
}
.side-logo img {
	width: 100%;
	max-width: 175px;
}
/* Close Button */

.sidenav .closebtn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	background: transparent;
	border-radius: 50%;
	transition: background-color .2s ease, color .2s ease;
	z-index: 9999;
}
.sidenav .closebtn i {
	margin: 0;
	padding: 0;
}
.sidenav .closebtn:hover {
	color: #ff4d4d;
}
/* Divider */

.sidenav hr {
	margin: 12px 16px;
	border: none;
	border-top: 1px solid #e3e3e3;
}
/* Menu */

.sidenav a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 18px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border-left: 4px solid transparent;
	white-space: nowrap;
	transition: all .25s ease;
	font-family: 'Poppins', Arial, sans-serif;
}
/* Left Icon */

.sidenav a i:first-child {
	width: 22px;
	text-align: center;
	font-size: 16px;
	flex-shrink: 0;
}
/* Text */

.sidenav a span:not(.menu-arrow) {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* Right Arrow */

.menu-arrow {
	flex: 0 0 auto;
	color: #999;
	transition: .25s;
}
.menu-arrow i {
	margin: 0;
	padding: 0;
}
/* Hover */

.sidenav a:not(.closebtn):hover{
    color:#fff !important;
    padding-left:24px;
    transform:translateX(3px);
}
.sidenav a:hover .menu-arrow {
	transform: translateX(5px);
	color: #fff;
}
/*==================================================
    CATEGORY COLORS
==================================================*/

.home {
	background: #111;
	color: #fff !important;
}
.home:hover {
	background: #111;
	border-left-color: #fff;
}
.world {
	color: #ff4c4c;
}
.world:hover {
	background: #ff4c4c;
}
.india {
	color: #0f7c2d;
}
.india:hover {
	background: #0f7c2d;
}
.bhopal{
    color:#00838f;
}

.bhopal:hover{
    background:#00838f;
}
.business {
	color: #ff9800;
}
.business:hover {
	background: #ff9800;
}
.entertainment {
	color: #f12b5b;
}
.entertainment:hover {
	background: #f12b5b;
}
.science {
	color: #9c27b0;
}
.science:hover {
	background: #9c27b0;
}
.sport {
	color: #76b900;
}
.sport:hover {
	background: #76b900;
}
.health {
	color: #00a65a;
}
.health:hover {
	background: #00a65a;
}
.wtn-special {
	color: #6b0000;
}
.wtn-special:hover {
	background: #6b0000;
}
.gossip {
	color: #d81b60;
}
.gossip:hover {
	background: #d81b60;
}
.recipes {
	color: #f39c12;
}
.recipes:hover {
	background: #f39c12;
}
.drinks {
	color: #ff3b30;
}
.drinks:hover {
	background: #ff3b30;
}
.education {
	color: #d4a000;
}
.education:hover {
	background: #d4a000;
}
.lifestyle {
	color: #ff5e62;
}
.lifestyle:hover {
	background: #ff5e62;
}
.travel {
	color: #2196f3;
}
.travel:hover {
	background: #2196f3;
}
.art {
	color: #a61c5d;
}
.art:hover {
	background: #a61c5d;
}
.opinion {
	color: #2e7d32;
}
.opinion:hover {
	background: #2e7d32;
}
.bpl {
	color: #7b1fa2;
}
.bpl:hover {
	background: #7b1fa2;
}
.sidenav a:not(.closebtn):hover i,
.sidenav a:not(.closebtn):hover span{
    color:#fff !important;
}
/* Footer Links */

.sidenav hr:last-of-type {
	margin-top: 18px;
}
.sidenav hr:last-of-type + a {
	margin-top: 8px;
}
.sidenav a[href="#"] {
	color: #444;
	font-weight: 600;
	font-size: 14px;
}
.sidenav a[href="#"] i {
	color: #666;
}
.sidenav a[href="#"]:hover {
	background: #4b0000;
	color: #fff !important;
	border-left: 4px solid #ffcc00;
}
.sidenav a[href="#"]:hover i {
	color: #ffcc00;
}
.navbar-header .navbar-brand {
	color: #fff !important;
}
.navbar-header .navbar-brand:hover {
	color: #fff !important;
}
.navbar-header .fa-bars {
	color: #fff;
	font-size: 22px;
}
.navbar-header .fa-bars:hover {
	color: #ffcc00;
}
/* Close button should not behave like menu item */

.sidenav .closebtn,
.sidenav .closebtn:hover{
    padding:0 !important;
    margin:0 !important;
    border:none !important;
    transform:none !important;
    background:transparent !important;
    left:auto !important;
}

.sidenav .closebtn:hover{
    color:#ff4d4d !important;
}

.sidenav .closebtn i{
    color:inherit;
}

/* Mobile */

@media(max-width:768px) {
.sidenav a {
	padding: 12px 16px;
	font-size: 13px;
}
.side-logo {
	position: relative;
	padding: 18px 15px;
	text-align: center;
}
.side-logo img {
	max-width: 170px;
}
}
