body {
	font-family: sans-serif;
	background: #eee;
}

.group {
	background: #fff;
	padding: 25px;
}
.group .subgroup {
	background: #fff;
}


.CodeMirror {
	height: auto;
}




.no-gutter {
	padding-right: 0;
	padding-left: 0;
}
.no-gutter-right {
	padding-right: 0;
}
.no-gutter-left {
	padding-left: 0;
}

.componentTitle {
	font-size: 35px;
	padding: 0;
	font-weight: bold;
}


.list-group-item {
	background: transparent;
}
.list-group-item h3 {
	margin: 0 0 5px 0;
}
.list-group-item h3 .badge {
	margin-top: -4px;
}

.params-list > .list-group-item:nth-child(even) {
	background: #eee;
}




















/*
    DEMO STYLE
*/

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

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

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

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

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;

    display: flex;
    flex-direction: column;
}

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

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

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

#sidebar ul li .subMenu {
	padding-right: 40px;
}

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

    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

a[aria-expanded="true"] {
    color: #fff;
    background: #6074c8;
}
/* sub menus */
#sidebar ul li ul li a {
    background: #92a0d9;
}

#sidebar ul li.active a {
    color: #fff;
    background: #5469c3 !important;
}


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

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
    line-height: 21px;
}
a[aria-expanded="true"]::before {
    content: '\e260';
}


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

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: #6074c8 !important;
    color: #fff !important;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#knockout-components {
    width: calc(100% - 300px);
    padding: 20px;
    transition: all 0.3s;
    position: absolute;
    top: 25px;
    right: 25px;
    bottom: 25px;
    overflow-y: auto;
}
#knockout-components.active {
    width: 100%;
}


/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #knockout-components {
        width: 100%;
    }
    #knockout-components.active {
        width: calc(100% - 250px);
    }
    #sidebarCollapse span {
        display: none;
    }
}
