@import url("./font-awesome/css/font-awesome.min.css");

.hil-loading-box{
	display: inline-block;
	position: relative;
}

.hil-loading-mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	text-align: center;
	transition: visibility 0ms linear 300ms, opacity 300ms linear 0ms;
}

.hil-loading-mask.fadeOut{
	visibility: hidden;
	opacity: 0;	
}

.hil-loading-sign{
	background-color: #E9E9E9;
	width: 120px;
	height: 120px;
	position: absolute;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	padding-top: 24px;
	color: #787878;
	font-size: 18px;
	font-weight: bold;
	font-family: Arial;
	border-radius: 12px;
}

