/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

#sidebar-wrapper {
	display: none;
}


@media(max-width: 767px) {


	body {
	    padding-left: 0;
	    -webkit-transition: all .5s ease;
	    -moz-transition: all .5s ease;
	    -o-transition: all .5s ease;
	    transition: all .5s ease;
	}

	body .box_all_toggle_navigation{
		background-image: url(/images/hamburger.png) !important;
	}

	body.toggled .box_all_toggle_navigation{
		background-image: url(/images/hamburger-stale.png) !important;
	}

	body.toggled #sidebar-wrapper {
	    width: 225px;
	}

	#page-content-wrapper {
	    width: 100%;
	    position: absolute;
	    padding: 15px;
	}

	body.toggled #page-content-wrapper {
	    position: absolute;
	    margin-right: -225px;
	}


	#sidebar-wrapper {
		display: block;
	    z-index: 1000;
	    position: fixed;
	    left: 225px;
	    width: 0;
	    height: 100%;
	    margin-left: -225px;
	    overflow-y: auto;
	    margin-top: 50px;
		background: #13B5EA;    
	    -webkit-transition: all .5s ease;
	    -moz-transition: all .5s ease;
	    -o-transition: all .5s ease;
	    transition: all .5s ease;
	}

	.side-nav li  a {
		color: white !important;
		padding-left: 5px;
	}

	.side-nav li a:hover, .side-nav li a:focus, .navbar-nav .open .dropdown-menu > li > a{
		color: white !important;
		background-color: initial;
	}
	/* Sidebar Styles */

	.side-nav {
	    position: absolute;
	    top: 0;
	    width: 225px;
	    margin: 0;
	    padding: 0;
	    list-style: none;
	}

	.side-nav li {
	    text-indent: 20px;
	    line-height: 40px;
	}

	.side-nav > .sidebar-brand {
	    height: 65px;
	    font-size: 18px;
	    line-height: 60px;
	}

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    body.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }

    .box_all_navBar_items > .active > a{
		background: none;
		border-left:solid white 5px;
		padding-left: 0px;
	}

	.nav .open > a, .nav .open > a:hover, .nav .open > a:focus, .navbar-nav .open .dropdown-menu{
		background-color: initial;
		color: white;
	}
}


}