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

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


#dialog-overlay-proses{
    position:fixed !important;
    position:absolute; /*tambahkan posisi ini supaya fix di IE*/
    z-index:99999; /*nilai ini harus dibawah nila z-index pada kotak dialog*/
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    background-color:#fbfbfa;
    display:none;
	opacity: 0.5;
	filter: Alpha(Opacity=50);
    text-align:center;	
}

.msg-error{
	background:url('../img/error.png') no-repeat left #ffebe8;
	background-position:5px 50%;
	text-align:center;
	padding:2px;
	color:#000000;
	border:#dd3c10 solid 1px;
	border-radius:7px;
}
.msg-ok{
	background:url('../img/oke.png') no-repeat left #ccfcba;
	background-position:5px 50%;
	text-align:center;
	padding:2px;
	color:#000000;
	border:#a2f981 solid 1px;
	border-radius:7px;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #fff;
    color: #053a77;
    transition: all 0.3s;
}

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

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

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

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

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

#sidebar ul li a:hover {
    color: #053a77;
    background: #fff;
	text-decoration:none;
}

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

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

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

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

#content {
	background: #fbfcf6;
    width: 100%;
    padding: 15px;
    min-height: 100vh;
    transition: all 0.3s;
	text-align:justify;
}
#content h1{
font-size:21px;
font-weight:bold;
}

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

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