
@font-face {
    font-family: 'Noto Sans';
    src: url('xf/noto-sans.ttf') format('truetype');
	font-display: block;
}

* { font-family: 'Noto Sans'; font-size: 0.6rem; }

html { font-size: 0.7cm; }
html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; overflow: hidden; background-color: #FEFEFE; position: relative; }

div[xf-app-loading-screen] {
	background-color: #2196f3;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;	
	width: 100%;
	height: 100%;
	display: table;
	z-index: 99999;

	-webkit-transform: translateZ(0px);
    transform: translateZ(0px);
	
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

div[xf-app-loading-screen].animate {
	-webkit-transition: all 0.35s !important;
    transition: all 0.35s !important;
}

div[xf-app-loading-screen] > div {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

div[xf-app-loading-screen-icon] {
	padding-top: 2rem;
	margin-bottom: 0.5rem;
}

div[xf-app-loading-screen-icon] > img {
	width: 6rem;
	height: 6rem;
	-webkit-filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.1));
	filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.1));
}

div[xf-app-loading-screen-progress-bar] {
	display: inline-block;
	width: 4rem;
	height: 0.075rem;
	text-align: left;
	padding: 0.0375rem;
	border: 0.0375rem #007bff solid;
	background-color: #007bff;
	border-radius: 0.07rem;
	margin-bottom: 0.1rem;
}

div[xf-app-loading-screen-progress-bar] > div {
	background-color: #ffffff;
	width: 0%;
	height: 100%;
	
	-webkit-transition: all 0.25s;
    transition: all 0.25s;
	
	-webkit-transform: translateZ(0px);
    transform: translateZ(0px);
	
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

div[xf-app-loading-screen-message] {
	font-size: 0.4rem;
    color: #ffffff;
	margin-bottom: 0.5rem;
}

div[xf-app-loading-screen-retry] button {
	background-color: #c7e6ff;
    color: #156dff;
    border: 0.0375rem #007bff solid;
    font-size: 0.5rem;
    padding: 0.1rem;
    padding-left: 2rem;
    padding-right: 2rem;
	opacity: 0;
	
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	-o-user-select: auto;
	user-select: auto;
	
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-tap-highlight-color: rgba(255, 255, 255, 0);
	-ms-tap-highlight-color: rgba(255, 255, 255, 0);
	-o-tap-highlight-color: rgba(255, 255, 255, 0);
	tap-highlight-color: rgba(255, 255, 255, 0);
	
	-webkit-appearance: none;
	appearance: none;
	
	-webkit-outline: none;
	outline: none;
	
	-webkit-transform: scale(1);
	transform: scale(1);
}