a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    position: absolute;
	z-index: 1;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.navbar-toggle {
	display: block;
}

.btn-info {
    color: #fff;
    border: 1px solid #fff;
}
@media (max-width: 767px) {
	.btn-info {
		margin-left: 10px;
		margin-right: 10px;
	}
}

.btn-info:hover {
    color: #fff;
    background-color: #231f20;
    border-color: #231f20;
}

.btn-info.focus, .btn-info:focus {
    color: #fff;
    background-color: #231f20;
    border-color: #231f20;
}

.btn-info.active, .btn-info:active {
    color: #fff;
    background-color: #332f30;
    border-color: #332f30;
}

.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover {
    color: #fff;
    background-color: #332f30;
    border-color: #332f30;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: #fff;
    color: #231f20;
    transition: all 0.3s;
    overflow-y: scroll;
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 25px;
    height: 40px;
    line-height: 40px;
	border-radius: 50%;
    text-align: center;
    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: #231f20;
    color: #fff;
}

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

#sidebar ul.components {
    padding: 8px 0;
    border-bottom: 1px solid rgba(35, 31, 32, 0.4);
}

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

#sidebar ul li a {
    padding: 10px;
    display: block;
}
#sidebar ul li a:hover {
    color: #fff;
    background: #231f20;
}

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


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

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
a[aria-expanded="true"]::before {
    content: '\e260';
}


ul ul a {
    padding-left: 30px !important;
    background: #f6f6f6;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    display: block;
    margin-bottom: 15px;
}
a.explore {
    background: transparent !important;
    color: #231f20 !important;
    border: 2px solid #231f20;
    font-weight: 600;
	border-radius: 0;
}
a.explore:hover {
    background: #231f20 !important;
    color: #fff !important;
    border: 2px solid #231f20;
    font-weight: 600;
}

.mCustomScrollBox {
	outline: 0;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
	padding-bottom: 200px;
}