.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/ajax-loader.gif') 50% 50% no-repeat rgb(249, 249, 249);
    opacity: .8;
}

.side-menu-icon {
    font-size: 16px;
    color: transparent;
    /* width: 30px; */
    text-align: center;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: #fff;
}

.menu-header {
    margin-top:2px; 
    border-bottom:2px solid #00c0ef
}

.menu-header ul {
    list-style: none;
    background: #222d32;
    text-align: center;
    padding: 0;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.menu-header ul li {
    display: inline-block;
}

.menu-header ul li a {
    display: inline-block;
    text-align: center;
    padding: 10px 8px;
    color: #fff;
    margin-top: 0;
}

.menu-header ul li a:hover{
    background-color: #3d4e68;
}

.btn {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid;
}

.btn.btn-flat {
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1.5;
    border-radius: 3px;
}

.main-header .logo .logo-lg {
	display: block;
	color: #222d32;
}

.main-header .sidebar-baru {
    float: left;
    color:white;
    padding: 15px 15px;
    cursor:pointer;
}

/* ---------------- Scroll Up Button ---------------- */
html { 
    scroll-behavior: smooth; 
}

.scroll-up-button {
	display: inline-block;
	background-color: #FF9800;
	width: 32px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 30px;
	right: 5px;
	transition: background-color .3s, 
	opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	text-decoration: none;
}
.scroll-up-button::after {
	content: "\f077";
	font-family: 'Font Awesome 5 Free';
    font-weight:900;
	font-style: normal;
	font-size: 1.5em;
	line-height: 30px;
	color: #fff;
}
.scroll-up-button:hover {
	cursor: pointer;
	background-color: #333;
}
.scroll-up-button:active {
	background-color: #555;
}
.scroll-up-button.show {
	opacity: 1;
	visibility: visible;
}
