/*
 * author : ridwan 
 * maintainer : ridwan
 *
 *
 * common style
 * class yang belum ada pada file css.css
 * tapi akan sering digunakan pada project ini
 */
*, ::after, ::before {
	box-sizing: border-box;
	font-family: arial;
}
html {
	margin: 0px;
	scroll-behavior: smooth;
	min-height: 100%;
	font-size: 13px;
}
body {
	margin: 0px;
	position: relative;
	min-height: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
	width: 100%;
	float: left;
}
div {
	width: 100%;
	float: left;
	position: relative;
}
pre {
	font-family: consolas, courier;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
	/* dari bootstrap */
	display: block;
	float: left;
	width: 100%;
}
form label span {
	padding: 3px 30px 4px;
}
fieldset {
	margin: 0;
	width: 100%;
}
fieldset, legend {
	border: 1px solid;
}
/*
 * DATA
 */
.outer {
	padding: 2px;
}
nav.main-menu button {
	padding: 5px 20px;
}
.top-menu-first,
.top-menu-first button{
	font-size: 13px;
}

/* main.main nav,
.content {
	margin-top: 10px;
} */
/* main.main nav button,
.btn-kecil {
	font-size: 13px;
	padding: 3px 8px 2px;
} */
.popup-wrapper {
	display: none;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(255, 255, 255, 0.5);
	top: 0;
	left: 0;
	position: fixed;
}
.popup-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px;
	margin-top: 1%;
	background-color: white;
	border: 1px solid #555;
	float: none;
	overflow-y: scroll;
	max-height: 700px;
}
.popup-title{
	font-size: 24px;
	font-weight: bold;
}
.popup-row{
	margin-bottom: 20px;
	margin-top: 10px;
}
/* 2022-10-04 08:34:26, main element */
.main-title{
	font-size: 22px;
	font-weight: bold;
}
/* 2022-09-30 08:25:20, sidebar */
.sidebar-left{
	width: 280px;
	padding-right: 3px;
}
.sidebar-left button{
	width: 100%;
	display: block;
	margin: 2px 0;
}
.sidebar-main{
	width: calc(100% - 280px);
	padding-left: 3px;
}
.content-title{
	font-size: 26px;
	font-weight: bold;
	border-bottom: 1px solid;
	padding-bottom: 5px;
}
button.aktif{
	background-color: orange;
}
label input{
	margin: 7px;
}
.btn {
	padding: 10px 20px;
}
.main-content{
	margin-top: 15px;
}