/* Body (All) */

body {background-color: #69F !important;}

/* Loader (Intro) */

.nc-mainwrapper {
	opacity: 0;
		-webkit-transition: all 0.5s ease-out;
				transition: all 0.5s ease-out;
				}

body.pace-done .nc-mainwrapper {
	opacity: 1;
		-webkit-transition: all 0.5s ease-out;
				transition: all 0.5s ease-out;
				}

.pace-running #page {opacity: 0;}

.pace-done #page {
	opacity: 1;
		-webkit-transition: all 0.5s ease-out;
				transition: all 0.5s ease-out;
				}

.pace {
	pointer-events: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
			}

.pace {z-index: 2000; position: fixed; height: 80px; width: 80px; margin: auto; top: 0; left: 0; right: 0; bottom: 0;}

.pace .pace-progress {
		-webkit-transform: none !important;
				transform: none !important;
				}
		  
.pace .pace-progress {
	position: fixed;
	z-index: 2000;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	width: 80px !important;
	line-height: 80px;
	font-size: 12px;
	border-radius: 50%;
	/* background: rgba(0, 0, 0, 0.8); */
	background-color: #069 !important; /* Fondo */
	color: #fff; /* Texto */
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	text-align: center;
	}
	
.pace .pace-progress:after {content: attr(data-progress-text); display: block; position: relative; z-index: 55;}
.pace .pace-progress:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	/* background: rgba(0, 0, 0, 0.8); */
	background-color: #369 !important;
	border-radius: 50%;
		-webkit-animation: rg_loader 0.8s linear infinite;
				animation: rg_loader 0.8s linear infinite;
				}

.pace.pace-inactive .pace-progress {display: none;}

@-webkit-keyframes rg_loader {
	0% {
		opacity: 1;
			-webkit-transform: scale(1);
					transform: scale(1);
					}
	100% {
		opacity: 0;
			-webkit-transform: scale(1.5);
					transform: scale(1.5);
					}
	}

@keyframes rg_loader {
	0% {
		opacity: 1;
			-webkit-transform: scale(1);
					transform: scale(1);
					}
	100% {
		opacity: 0;
			-webkit-transform: scale(1.5);
					transform: scale(1.5);
					}
}