/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
body {
    
    background: #fafafa;
}

p {
   
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #141313;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.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);
}

.login-bar{
    border-bottom: solid 1px #b8bec3;
    padding:15px;
    
    background-color: white;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.line-sm {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 1.5rem 0;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
   

}

#sidebar {
    min-width: 250px;
    max-width: 250px;
   
    color: #fff;
    transition: all 0.3s;
    background: #121212;
    padding:1rem;
}

#sidebar p{
    color: #ccc;
    font-size:.8rem;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #121212;
}

#sidebar ul.components {
    padding: 20px 0;
  
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    margin: 10px 0;
}

#sidebar ul li a i {
    position: relative;
    top: 5px;
}

#sidebar ul li a:hover {
    background: #16344f;
    border-radius: 10px;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #16344f;
    border-radius: 10px;
}

a[data-toggle="collapse"] {
    position: relative;
}

.right {float: right;}

.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: #3278b4;
}

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;
}

.progress-bar {
    background-color: #16344f ;
}

.btn-secondary {
    background-color: #908b8b;
}

.btn-sm{
    padding:10px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
}

.content-inner {

    padding: 20px;

}


/* ---------------------------------------------------
    Lessons STYLE
----------------------------------------------------- */
.lessons sup {
    display: block;
    color: #ccc;
    margin:.5rem 0;
}

.lessons .nav .nav-link {
    display: block;
    padding: 1rem;
}

.lessons ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.lessons ul li {

list-style: circle;
}

.lesson-content{
    background-color: #f1f1f1;
    padding:1rem;
}

.lesson-content a {
    color:  #3278b4;
    text-decoration: underline;
}

.lessons h3 { 
    margin: 1rem 0;
}

.course-info{
    background-color: #e9ecef;
    padding: 2rem 1rem;
    margin-bottom:1.5rem;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #16344f;
}

.policy-content {
height: 650px;
overflow: auto;

}
/* ---------------------------------------------------
    Reports STYLE
----------------------------------------------------- */
.report-content{
    
    padding:1rem;
    background-color:#fff;

}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}