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

#sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    z-index: 999;

    width: 250px;
    height: 100vh;
    overflow-y: scroll;

    transition: all .3s;

    color: #fff;
    background: #7386d5;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
}

#sidebar.active {
    left: 0;
}

#dismiss {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 35px;
    height: 35px;

    line-height: 35px;

    cursor: pointer;
    -webkit-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;
    text-align: center;

    background: #7386d5;
}

#dismiss:hover {
    color: #7386d5;
    background: #fff;
}

.overlay {
    position: fixed;
    z-index: 998;

    display: none;
    width: 100vw;
    height: 100vh;

    transition: all .5s ease-in-out;

    opacity: 0;
    background: rgba(0, 0, 0, .7);
}
.overlay.active {
    display: block;

    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 20px;

    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;

    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    padding: 10px;

    color: #fff;
}

#sidebar ul li a {
    display: block;
    padding: 10px;

    font-size: 1.1em;
}

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

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

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

.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 20px;

    display: block;

    transform: translateY(-50%);
}
ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    display: block;
    margin-bottom: 5px;

    font-size: .9em !important;

    text-align: center;

    border-radius: 5px;
}

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

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

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    min-height: 100vh;
    padding: 20px;

    transition: all .3s;
}
