/* offcanvas */
    .bs-canvas-overlay {
   		opacity: 0;
        top: 0;
		z-index: -1;
        width: 100vw;
        height: 100vh;
	}
	
	.bs-canvas-overlay.show {
   		opacity: 0.85;
		z-index: 1100;
	}
	
	.bs-canvas-overlay, .bs-canvas {
		transition: all .4s ease-out;
		-webkit-transition: all .4s ease-out;
		-moz-transition: all .4s ease-out;
		-ms-transition: all .4s ease-out;
	}
	
	.bs-canvas {
		top: 0;
		z-index: 1110;
		overflow-x: hidden;
		overflow-y: auto;
		width: 640px;		
	}
	
	.bs-canvas-left {
		left: 0;
		margin-left: -640px;
	}
	
	.bs-canvas-right {
		right: 0;
		margin-right: -640px;
	}
	.sub-menu > .active > a {
		background-color: #fd1a1a !important;
		color: #fff !important;
	}
    @media (max-width: 991px) {
        .bs-canvas {width: 100vw;}
        .bs-canvas-right {margin-right: -100vw;}
    }