/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.btn-sidebarMenu{
    background: unset;
    border: unset;
}

.btn-sidebarMenu:hover{
    background: #ca0600;
}

#sidebarMenu {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 100000;
    background: #a70500;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebarMenu.active {
    left: 0;
}

#sidebarMenu ul{
    margin: 0;
    padding: 0 1rem;
}

#sidebarMenu ul.sub-menu{
    margin: 0;
    padding: 0;
}

#sidebarMenu ul{
    list-style-type: none;
}

#sidebarMenu li{
    list-style-type: none;
    padding: 0.5rem 1rem;
}

#sidebarMenu ul li{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#sidebarMenu ul li h3 a{
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
}

#sidebarMenu li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
}

#sidebarMenu ul li p{
    margin: 0;
    padding: 0;
}

#sidebarMenu ul li p a{
    color: #fff;
    font-weight: 300;
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
}

#sidebarMenu li ul li a{
    color: #fff;
    font-weight: 300;
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
}

#sidebarMenu div div li:last-child {
    padding-bottom: 8rem;
}

#sidebarMenu div div li ul li:last-child {
    padding-bottom: unset;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #ca0600;
    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: #fff;
    color: #ca0600;
}

.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;
    top:0;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebarMenu .sidebar-header {
    padding: 4rem 0 0 0;
    background: #a70500;
    text-align: center;
}

#sidebarMenu .sidebar-header h3{
    font-size: 1.4rem;
    font-weight: 700;
}

#sidebarMenu ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebarMenu ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

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

.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: #6d7fcc;
}

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;
}