body {
	overflow: hidden;
}

.wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}

.digit {
	display: inline-block;
	font-size: 14px;
	color: white;
	height: 12px;
	line-height: 1;
	margin: 0;
}

.time-part {
	text-align: center;
	height: 12px;
	overflow: hidden;
	display: inline-block;
	box-sizing: border-box;
	color: black;
}

.time-part.static {
	overflow: visible;
}

.time-part .digit-wrapper {
	animation-timing-function: cubic-bezier(1, 0, 1, 0);
	display: flex;
	overflow: visible;
	flex-direction: column;
}

.time-part.hundredths.tens .digit-wrapper {
	animation-name: hundredths-ones;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-iteration-count: 1;
}

.time-part.hundredths.ones .digit-wrapper {
	animation-name: hundredths-ones;
	animation-fill-mode: forwards;
	animation-duration: 0.2s;
	animation-iteration-count: 10
}

.time-part.hundredths.hun .digit-wrapper {
	animation-name: hundredths-ones2;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-iteration-count: 1;
	animation-timing-function: steps(1);
	opacity: 0;
}

@keyframes hundredths-ones2 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes hundredths-ones {
	10% {
		transform: translateY(-12px);
	}
	20% {
		transform: translateY(-24px);
	}
	30% {
		transform: translateY(-36px);
	}
	40% {
		transform: translateY(-48px);
	}
	50% {
		transform: translateY(-60px);
	}
	60% {
		transform: translateY(-72px);
	}
	70% {
		transform: translateY(-84px);
	}
	80% {
		transform: translateY(-96px);
	}
	90% {
		transform: translateY(-108px);
	}
	100% {
		transform: translateY(-120px);
	}
}

.skeleton-wrapper {
	display: flex;
	height: 100vh;
	width: 100vw;
}

.skeleton-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.skeleton-map {
	position: relative;
	flex: 1px;
	/*background: black;*/
	display: flex;
	align-items: center;
}

.skeleton-loader {
	font-size: 10px;
	margin: 50px auto;
	width: 11em;
	height: 11em;
	border-radius: 50%;
	background: #ffffff;
	background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
	position: relative;
	animation: load3 1.4s infinite linear;
	transform: translateZ(0);
}

.skeleton-loader:before {
	width: 50%;
	height: 50%;
	background: #ffffff;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}

.skeleton-text {
	width: 82.5px;
	height: 82.5px;
	background: #0e0e0e;;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	border-radius: 50%;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-weight: bold;
}

@-webkit-keyframes load3 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load3 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}




