/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700";
body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
}

p {
    font-family: 'Open Sans', sans-serif;
    color: #444;
}

h1 {
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  background: #ffffff;
}

h3 {
    padding-bottom: 5px;
}

h4 {
  padding-top: 10px;
  padding-bottom: 5px;
}

h5 {
  padding-top: 10px;
  padding-bottom: 5px;
}

.navbar {
    /*padding: 15px 10px;*/
    border: none;
    border-radius: 0;
    /*margin-bottom: 20px;*/
    /*border-bottom: 1px solid #ddd;*/
    /*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);*/
}

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

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #ddd;
    margin: 30px 0;
}


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

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 200px;
    max-width: 200px;
    transition: all 0.3s;
    border-right: 1px solid #ddd; /* ADDED */
    text-align: center;
}

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

#sidebar.active {
    margin-left: -200px;
}

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

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #fafafa;
}

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

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

#sidebar ul li a:hover {
    /*color: #ddd;*/
    background: #ddd;
}

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

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

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

a.download {
    background: #ddd;
    /*color: #fff;*/
}

#sidebar ul li a.download:hover {
    color: #fff;
    background: #444;
}

tr.colorrow {
    background: #ddd;
}

tr.colorrowDUE {
    background: #ffaec9;
}

tr.colorrowSRG {
    background: #e1ffcb;
}

tr.colorrowLRG {
    background: #e9cbff;
}

.borderless td, .borderless th {
    border: none;
}

tr.bordered {
    border-bottom: 0px solid #444;
}

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

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -200px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}