<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

#sidebar {
    width: 80%;
    position: fixed;
    top: 0;
    left: -90%;
    height: 100vh;
    z-index: 1001;
    background: #343434;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

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

#dismiss:hover {
    
}

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

#sidebar .sidebar-header {
    padding: 20px; 
	padding-left:15px;
}

#sidebar ul.components {
  
   
}

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

#sidebar ul li a {
    padding: 15px;
    font-size: 1.1em;
    display: block;
	color: #ffffff;
    border-bottom: 1px solid #424242;
 
}
.chevron-down{ 
	float:right;
	margin-top:5px;
}
#sidebar ul li ul{  
	margin-bottom:10px;
	
}
#sidebar ul li li{
	margin:0
}
#sidebar ul li li a{ 
    padding: 10px;
	 border-bottom:none !important;
	 background-image:url(svg/dot-white.svg);
	 background-position:15px;
	 background-repeat:no-repeat;
	 background-size:15px;
}
 
#sidebar ul li ul a:hover {
    background-color:#424242
}

#sidebar ul li.active&gt;a,
a[aria-expanded="true"] {
   
}

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

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
 
ul ul a {
     
    padding-left: 35px !important; 
}

ul.CTAs {
    padding-top: 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;
}

.bottomicon{
	display:flex;
	justify-content: space-evenly;
}
.bottomicon a{
	display: inline-block;
	text-align:center;
	padding:10px;
	color:#ffffff;
}
.bottomicon a img{
	width:24px;
	height:24px;
}
/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}</pre></body></html>