

/* JSON Beautifier 용 Style. see bfcCom.json.beautifier(data)
    max-height: 500px : 표시 영역을 500px로 제한 표시. 스크롤 발생.
*/
pre.bfcJson {
    outline: 1px solid #ccc;
    padding: 5px;
    margin: 5px;
    white-space: pre-wrap;
    border: initial;
    border-radius: initial;
    max-height: 500px;
}

pre.bfcJson .string {
    color: green;
}

pre.bfcJson .number {
    color: darkorange;
}

pre.bfcJson .boolean {
    color: blue;
}

pre.bfcJson .null {
    color: magenta;
}

pre.bfcJson .key {
    color: red;
}

/* dim */
.bfcDim {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	opacity: 0.6;
}
.btnOverDim {position: relative; z-index: 9999999;}

/* 영역 을 중앙에 위치 */
.bfcCenter {
	display: grid; /* Grid 활성화 */
	place-items: center; /* 가로와 세로를 동시에 중앙 정렬 */
	height: 100vh; /* 화면 전체 높이 */
}
.bfcCenter > div {
	text-align: center;
}

/* LodingBar */
.bfcLoadingBar {
	display: none;
	z-index: 999999; 
}
.bfcLoadingBar .content { 
	display: inline-block;
	width: 100%;
	height: 100px;
	background-image: url('/assets/bfc/images/loading-bar-792777f095784dcad641ae875b13aa7c.gif');
	background-size: contain; 
	background-repeat: no-repeat;
	background-position: center;
}

/* ProgressBar */
.bfcProgressBar {
	display: none;
	z-index: 999999; 
}
.bfcProgressBar .content {
	width: 200px;
	height: 200px;
}
