/*!
 * pace.js v1.2.4 | Default theme
 * https://github.com/CodeByZach/pace/
 * Licensed MIT © HubSpot, Inc.
 */
.pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pace-inactive{display:none}.pace .pace-progress{background:#d72630;position:fixed;z-index:2000;top:0;right:100%;width:100%;height:2px}

/* Center Simple */
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;

	z-index: 2000;
	position: fixed;
	margin: auto;
	top: 0;
	left: 20%;
	right: 20%;
	bottom: 0;
	height: 2px;
	/* background: #fff;
	border: 1px solid #d99082; */

	overflow: hidden;
}

.pace .pace-progress {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	/* max-width: 200px; */
	z-index: 2000;
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	background-color: #99885c;
}

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

/* Green Studio */
.wrap {
	transition: .3s;
}
.pace-running .wrap {
	opacity: 0;
}
.pace-done .wrap {
	opacity: 1;
}
.pace::after {
	content: '';
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -25px;
	/* transform: translate(-50%, -160%); */
	display: block;
	width: 50px;
	height: 50px;
	background: url(../../img/common/logo-mark-5.svg) no-repeat;
	background-size: contain;

	animation: loading-icon 4s linear infinite;
}

@media screen and (min-width: 1000px) {
	.pace {
		width: 200px;
	}
}

@keyframes loading-icon {
	0% {
		transform: rotate(0);
		opacity: 1;
	}
	50% {
		opacity: .3;
	}
	100% {
		opacity: 1;
		transform: rotate(360deg);
	}
}
