/* ===================================
	Progress Bar
====================================== */
.elementor-progress-bar {
	display: flex;
	width: 0;
	transition: width 1s ease-in-out;
}
.crafto-progress-wrapper:not(.progress-style-2) {
	background-color: #eee;
	height: 4px;
	border-radius: 0;
	margin-bottom: 4rem;
}
.crafto-progress-wrapper .elementor-progress-bar {
	position: relative;
	overflow: visible;
	background-color: #0038e3;
	height: 4px;
	border-radius: 0;
}
.crafto-progress-wrapper:not(.progress-style-2) .elementor-progress-bar .elementor-progress-percentage {
	position: absolute;
	bottom: 17px;
	right: -20px;
	color: #fff;
	font-weight: 500;
	font-size: 11px;
	line-height: 12px;
	min-width: 40px;
	min-height: 26px;
	padding: 7px;
	background-color: #252840;
	border-radius: 3px;
	text-align: center;
}
.crafto-progress-wrapper:not(.progress-style-2) .elementor-progress-bar .elementor-progress-percentage:after {
	content: "";
	top: 100%;
	left: 50%;
	height: 0;
	width: 0;
	z-index: 9;
	margin-left: -4px;
	border-width: 4px;
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	border-top-color: var( --e-global-color-secondary, #232323 );
}
.crafto-progress-wrapper:not(.progress-style-2) .elementor-progress-text {
	color: var( --e-global-color-secondary, #232323 );
	font-size: 13px;
	line-height: 22px;
	padding-left: 0;
	position: absolute;
	bottom: 15px;
	flex-grow: 1;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.crafto-progress-wrapper .elementor-progress-percentage {
	padding-right: 0;
}
.crafto-progress-wrapper.fixed .elementor-progress-bar {
	position: unset;
}
.crafto-progress-wrapper.fixed .elementor-progress-bar .elementor-progress-percentage {
	background-color: transparent;
	color: #000;
	font-size: 17px;
	right: 0;
	bottom: 10px;
	min-width: inherit;
	padding-left: 0;
	padding-right: 0;
}
.crafto-progress-wrapper.fixed .elementor-progress-bar .elementor-progress-percentage::after {
	display: none;
}
.crafto-progress-wrapper.fixed .elementor-progress-text {
	bottom: 10px;
}

/* Progress Bar Style 02 */
.progress-style-2 {
	margin-bottom: 15px;
	border-radius: 50px;
}
.progress-style-2 .progress-inner {
	height: 30px;
	overflow: hidden;
	position: relative;
	border-radius: 50px;
	font-weight: 600;
	font-size: 11px;
	line-height: 12px;
	color: #fff;
	background-color: #fff;
	display: flex;
	align-items: center;
}
.progress-style-2 .elementor-progress-bar {
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: visible;
	transition: all 1s cubic-bezier(.5,1,.5,1);
	align-items: center;
}
.progress-style-2 .elementor-progress-percentage {
	color: #ef991f;
	position: absolute;
	right: 20px;
	background-color: transparent;
	padding: 0;
}
.progress-style-2 .elementor-progress-text {
	text-transform: uppercase;
	position: absolute;
	left: 20px;
}