.pace-running {
    background: #0068b6;
}
.pace-running .container{
    opacity: 0;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
		opacity: 1;
    }
}

.pace-done .container {
    animation-name: fadeIn;
    animation-duration: 1s; /* 5秒間のフェードイン時間ですが、任意で調整可能 */
	animation-timing-function: ease-in;
}

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

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

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

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

	z-index: 2000;
	position: fixed;
	margin: auto;
	top: 12px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 200px;
	height: 50px;
	overflow: hidden;
}



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

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


.pace-running .first__loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #bdd8e7;
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pace-done .first__loading {
	display: none;
}

.pace-running .logo__wrapper {
	width: 15%;
	min-width: 200px;
	position: relative;
	opacity: 1;
}

.pace-running  .logo.bg {
	opacity: .2;
}

.pace-running  .logo.cover {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;

}
.pace-running  .logo.cover svg {
	width: 100%;
}

.pace-running .st0 {
	fill: #fff;
}

.pace-running .st1 {
	fill: #0068b6;
}
