/* progress bar */
/* .neo-progressbars {
	display: grid
}
 */
.neo-bar-wrap {
	position: relative;
	/* height: 24px; */
	background-color: #f5f5f5;
	border-radius: 4px;
	margin-bottom: 50px;
}

.neo-bar-label {
	position: absolute;
	top: -30px;
	z-index: 1;
	width: 100%;
}

.neo-bar {
	width: 0%;
	height: 25px;
	transition: width 2s ease-in-out;
}

.neo-bar-percent {
	position: relative;
	font-size: 12px;
	color: #999;
}

/* layout one */
.progressbar-layout-one .neo-bar-percent {
	right: 0;
	top: -21px;
	float: right;
}

.progressbar-layout-two .neo-bar-percent {
	padding-right: 8px;
	color: #fff;
	float: right;
	top: 50%;
	transform: translateY(-50%);
}

.progressbar-layout-two .neo-bar-label {
	position: absolute;
	z-index: 1;
	color: white;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* layout three */
/* .progressbar-layout-three .neo-bar {
	position: absolute;
}
 */
 
.progressbar-layout-three .neo-bar {
	height: 10px !important;
	position: relative;
}

.progressbar-layout-three .neo-bar-percent {
	position: absolute;
	right: -20px;
	top: -100%;
	margin-top: -25px;
	padding: 0px 12px;
	background: #F4F7F9;
	color: #555;
	border-radius: 2px;
	font-weight: bold;
}

.progressbar-layout-three .neo-bar-percent:after {
	position: absolute;
	content: "";
	left: 50%;
	bottom: -10px;
	width: auto;
	margin-left: -5px;
	height: auto;
	border-width: 5px 6px;
	border-style: solid;
	border-color: #F4F7F9 transparent transparent;
}

.progressbar-layout-three .neo-bar-percent:before {
	position: absolute;
	content: "";
	width: 15px;
	right: 11px;
	height: 15px;
	border: 4px solid #fff;
	border-radius: 100%;
	top: 100%;
	margin-top: 7px;
	box-shadow: 0 2px 4px 0 lightgrey;
}

/* .neo-bar-striped {
	position: absolute;
} */

.neo-bar-striped:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent) );
	z-index: 0;
	background-size: 50px 50px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	overflow: hidden;
	animation: striped 10s linear infinite;
}

@keyframes striped {
	100% {
		background-position: 100% 100%;
	}
}

/* NO-JS */
@media(scripting: none) {
	.neo-bar {
		/* width: attr(data-max); */
		width: 100%;
	}
}