.pace {
	-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-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;

	-webkit-background-clip: padding-box;
	   -moz-background-clip: padding;
	        background-clip: padding-box;

	-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: 12px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 120px;
	height: 200px;
	border: 2px solid #4793cc;
	background-color: #fff;
}

.pace:before {
	content: '';
	position: absolute;
	border: 2px solid #4793cc;
	background-color: #fff;
	width: 20px;
	height: 4px;
	border-bottom-color: #fff;
	left: 50%;
	top: -8px;
	margin-left: -10px;
	border-radius: 3px 3px 0 0;
}

.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-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;

	-webkit-background-clip: padding-box;
	   -moz-background-clip: padding;
	        background-clip: padding-box;

	-webkit-transition: height 1s ease-in-out 1s linear;
	   -moz-transition: height 1s ease-in-out 1s linear;
	    -ms-transition: height 1s ease-in-out 1s linear;
	     -o-transition: height 1s ease-in-out 1s linear;
	        transition: height 1s ease-in-out 1s linear;

	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);

	max-height: 192px;
	z-index: 2000;
	display: block;
	position: absolute;
	left: 2px;
	bottom: 2px;
	width: 112px;
	font-size: 12px;
	background: #4793cc;
	color: #fff;
	line-height: 60px;
	font-weight: bold;
	font-family: 'Roboto Condensed', sans-serif;
}

.pace .pace-progress:after {
	content: attr(data-progress-text);
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	bottom: 60px;
	color: #fff;
	text-shadow: 1px 1px 1px #4793cc, -1px -1px 1px #4793cc;
}

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