.pace {
	-webkit-pointer-events: none;
	pointer-events: none;

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

	z-index: 2000;
	position: fixed;
	height: 120px;
	width: 120px;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}


/* 외부 박스 */
.pace .pace-progress {
    z-index: 2000;
    position: absolute;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    background: transparent;
    transform: translate3d(0, 0, 0) !important;
}

/* 원 */
.pace .pace-progress:before {
    content: attr(data-progress-text);
    color: #fff;
    background: #999999;
    border-radius: 50%;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 12px;
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    position: absolute;
    top: 5%;
    left: 5%;
}

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

.pace .pace-activity {
	position: fixed;
	z-index: 2000;
	display: block;
	position: absolute;
	left: -30px;
	top: -30px;
	height: 120px;
	width: 120px;
	display: block;
	border-width: 30px;
	border-style: double;
	border-color: #999999 transparent transparent;
	border-radius: 50%;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

	-webkit-animation: spin 1s linear infinite;
	-moz-animation: spin 1s linear infinite;
	-o-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

.pace .pace-activity:before {
	content: ' ';
	position: absolute;
	top: 10px;
	left: 10px;
	height: 80px;
	width: 80px;
	display: block;
	border-width: 10px;
	border-style: solid;
	border-color: #999999 transparent transparent;
	border-radius: 50%;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

@-webkit-keyframes spin {
	100% { -webkit-transform: rotate(359deg); }
}

@-moz-keyframes spin {
	100% { -moz-transform: rotate(359deg); }
}

@-o-keyframes spin {
	100% { -moz-transform: rotate(359deg); }
}

@keyframes spin {
	100% {  transform: rotate(359deg); }
}