

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar_navi {
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    height: 100vh;
    z-index: 999;
    background: #176696;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);text-align:left
}

#sidebar_navi.active {
    right: 0;
}

#dismiss {
 
    line-height: 35px;
    text-align: center;
    border-bottom: 2px solid #1d77ad;
    position: relative;
    top: 0;
    right: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    padding: 5px 15px;
}

#dismiss:hover {
   
}

.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;bottom: 0;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar_navi .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar_navi ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #176696;
}

#sidebar_navi ul p {
    color: #fff;
    padding: 10px;
}

#sidebar_navi ul li a {
    padding: 10px 20px;
    font-size: 14px;
    display: block;color:#fff;border-bottom:1px solid rgba(255,255,255,.1)
}

#sidebar_navi ul li a:hover {
    color: #176696;
    background: #fff;
}

#sidebar_navi ul li.active>a,
#sidebar_navi a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

#sidebar_navi a[data-toggle="collapse"] {
    position: relative;
}

#sidebar_navi .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar_navi ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

#sidebar_navi ul.CTAs {
    padding: 20px;
}

#sidebar_navi ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

#sidebar_navi a.download {
    background: #fff;
    color: #176696;
}

#sidebar_navi a.article,
#sidebar_navi a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */


/* width */
#sidebar_navi::-webkit-scrollbar {
  width: 6px;
}

/* Track */
#sidebar_navi::-webkit-scrollbar-track {
 background: transparent;
}

/* Handle */
#sidebar_navi::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,.2);
    border-radius: 20px;
}

/* Handle on hover */
#sidebar_navi::-webkit-scrollbar-thumb:hover {
 background: rgba(255,255,255,.3);
}