/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
#sidebar-wrapper {
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	height: 100%;
	transition: all 0.5s ease;
	position:fixed;
	z-index: 1000;
	padding:20px;
}
.navbar-default {
    /*background-color: #e9e9e9;*/
	border:none;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
.sidebar-nav {
	display:block;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.sidebar-nav li {
  display: inline-block;
  line-height: 20px;
  position: relative;
  width: 100%;
}
.sidebar-nav li a,
.mobile li a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	text-transform: uppercase; 	
	color: #222 !important;
	font-size: 13px;
}
.sidebar-nav li a:hover,
.sidebar-nav li.active a,
.mobile li a:hover,
.mobile li.active a {
	color: #333 !important;
	background-color: #eee !important;
}
.sidebar-nav li.open:hover before,
.mobile li.open:hover before {
	-webkit-transition: width 0.2s ease-in;
	transition: width 0.2s ease-in;
	width: 100%;
}
.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover,
.mobile .open>a,
.mobile .open>a:focus,
.mobile .open>a:hover {
    background-color: #222 !important;
    border-color: #222 !important;
	color: #FFF !important;
}
.sidebar-nav .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:#e9e9e9;
}
.sidebar-nav > .sidebar-brand {
  font-size: 20px;
  line-height: 44px;
}
.sidebar-nav > .sidebar-brand img{
	max-width:100%;
}
.sidebar-nav li.sidebar-brand a:hover {
	background-color:#e9e9e9 !important;
}
.navbar-default .navbar-toggle {
    border-color: #fff;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #222;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #222;
}
.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #fff;
}
.nopad {
    padding: 0;
    position: relative;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
	background:#eee;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 9999999;
    transition: all 0.3s;
    overflow-y: scroll;
	padding-bottom:60px;
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #eee;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #fff;
    color: #7386D5;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 10px;
    background: #eee;
}
#sidebar .sidebar-header h3 {
	color:#333;
	font-weight:700;
	margin-top:10px;
}
#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active>a,
#sidebar a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    right: 0;
}