#sidebar body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

#sidebar p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

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

#sidebar .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);
}

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

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

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

#sidebar {
    width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    height: 100vh;
    z-index: 1001;
    background: #fff;
    /* background: rgb(197, 38, 16);
    background: -moz-linear-gradient(180deg, rgba(197, 38, 16, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(197, 38, 16, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(180deg, rgba(197, 38, 16, 1) 0%, rgba(0, 0, 0, 1) 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c52610", endColorstr="#000000", GradientType=1);*/
    color: rgb(107, 107, 107);
    opacity: 1;
    transition: all .6s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    right: 0;
}

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

#dismiss:hover {
    color: #000;
}

#dismiss i {
    font-size: 2.5em;
}

.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: 20px;
    background: #fff;
}

#sidebar img {
    width: 150px;
}

#sidebar ul.components {
    padding: 20px 30px;
}

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

#sidebar ul li {
    /* border-top: 1px solid #843838; */
    border-bottom: 1px solid #843838;
}

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

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

#sidebar .social {
    text-align: center;
    font-size: 3em;
    color: #fff;
    background: rgb(24, 24, 24);
    position: fixed;
    bottom: 0;
    right: -450px;
    width: 450px;
    padding: 30px 0;
    transition: all .6s;
}

#sidebar .social p {
    font-family: 'Poppins', sans-serif;
    font-size: .5em;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}

#sidebar .social i {
    color: #d2d2d2;
    transition: all .7s;
}

#sidebar .social i:hover {
    color: #fff;
    transform: scale(1.1);
}

#sidebar .social.active {
    right: 0;
}

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

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

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

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

#sidebar ul.CTAs {
    padding: 20px;
}

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

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

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

@media screen and (max-width: 576px) {
    #sidebar {
        right: -270px;
        width: 270px;
    }

    #sidebar .social {
        right: -270px;
        width: 270px;
    }
}