/*
*
* Progress Bars
*/
.progress-linear {
	position: relative;
	text-align: left;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	color: #777777;
}

.progress-header {
	font-size: 12px;
}

.progress-header > * {
	max-width: 50%;
}

.progress-bar-linear-wrap {
	height: 11px;
	border-radius: 0;
	background: #dddddd;
}

.progress-bar-linear {
	position: relative;
	width: 0;
	height: inherit;
	background: #57a4e0;
	transition: .5s all ease-in-out;
}

.progress-bar-linear::before {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	margin-right: -9px;
	border-style: solid;
	border-width: 0 9px 16px 9px;
	border-color: transparent transparent #57a4e0 transparent;
}

.progress-value {
	position: absolute;
	bottom: 100%;
	right: -4px;
	margin-bottom: 12px;
	font-size: 14px;
	letter-spacing: .1em;
	transform: translate3d(50%, 0, 0);
	will-change: transform;
}

.progress-value::after {
	content: "%";
}

.progress-orange .progress-bar-linear {
	background: #ffb45c;
}

.progress-orange .progress-bar-linear::before {
	border-bottom-color: #ffb45c;
}

.progress-orange .progress-marker {
	background: #ffb45c;
}

.progress-green .progress-bar-linear {
	background: #73cca1;
}

.progress-green .progress-bar-linear::before {
	border-bottom-color: #73cca1;
}

.progress-green .progress-marker {
	background: #73cca1;
}

* + .progress-bar-linear-wrap {
	margin-top: 12px;
}

* + .progress-linear {
	margin-top: 35px;
}

.progress-linear + .progress-linear {
	margin-top: 40px;
}

@media (min-width: 768px) {
	.progress-value {
		font-size: 18px;
	}
	.progress-header {
		font-size: 14px;
		letter-spacing: .2em;
	}
}

@media (min-width: 992px) {
	.progress-linear + .progress-linear {
		margin-top: 50px;
	}
}

.lg-progress-bar {
	background-color: #333;
	height: 5px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1083;
	opacity: 0;
	-webkit-transition: opacity 80ms ease 0s;
	-moz-transition: opacity 80ms ease 0s;
	-o-transition: opacity 80ms ease 0s;
	transition: opacity 80ms ease 0s;
}

.lg-progress-bar .lg-progress {
	background-color: #57a4e0;
	height: 5px;
	width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
	width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
	opacity: 1;
}