/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 26 2024 | 15:22:55 */
.progress-bar-container{
	display: flex;
	flex-direction: row;
	height: 90px;
	z-index: 10;
}
.progress-bar{
	position: relative;
	width: calc(100% - 40px);
    max-width: 1020px;
    height: 90px;
    background: #212141;
    margin-left: auto;
    margin-right: auto;
    border-radius: 85.5px;
    padding: 30px 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	z-index: 10;
}
.progress-bar.sticky{
	position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.progress-bar .sections{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	position: relative;
	z-index: 1;
}
.progress-bar .sections:before{
	display: block;
	content: "";
	width: calc(100% - 8px);
	margin-left: auto;
	margin-right: auto;
	height: 3px;
	background-color: #4C4C68;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 1;
}
.progress-bar .sections .section{
	position: relative;
}

.progress-bar .sections .section .marker{
	width: 12px;
	height: 12px;
	border: 1px solid #4C4C68;
	border-radius: 50%;
	background-color: #4C4C68;
	z-index: 2;
	position: relative;
	transition: 0.3s;
}
.progress-bar .sections .section:hover .marker,
.progress-bar .sections .section.active .marker{
	transform: scale(2.7);
}

.progress-bar .sections .section .marker:before{
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background-color: #D41829;
	border: 1px solid #212141;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
}
.progress-bar .sections .section.active .marker:before{
	opacity: 1;
}


.progress-bar .tooltip{
	position: absolute;
    top: -92px;
	left: 50%;
	translate: -50%;
	width: max-content;
	font-weight: 500;
	transform-origin: 50% calc(100% + 10px);
	transition: transform .5s ease-in-out, left 0.3s, translate 0.3s, opacity 0.5s;
	pointer-events: none;
	opacity: 0;
}
.progress-bar .section:hover .tooltip{
	opacity: 1;
}
.progress-bar .tooltip .content{
    position: relative;
    background: #2F2F4E;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
	z-index: 2;
}
.progress-bar .tooltip .subtitle{
    font-size: 9.6px;
    line-height: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2px;
    margin-top: 0;
}
.progress-bar .tooltip .title{
	font-size: 12.6px;
	margin: 0;
	line-height: 1em;
	font-weight: 600;
    text-align: center;
}
.progress-bar .tooltip .pointer{
	position: absolute;
	bottom: 0;
	left: 50%;
	transition: 0.3s;
	z-index: 1;
}
.progress-bar .tooltip .pointer:before{
	content: "";
	display: block;
	position: absolute;
	bottom: -10px;
	left: 50%;
	translate: -50%;
	width: 45px;
	height: 45px;
	border-radius: 8px;
	transform: rotate(45deg);
	z-index: 1;
	background-color: #2F2F4E;
}
@media(max-width: 991px){
	.progress-bar-container{
		height: 70px;
	}
	.progress-bar{
		width: calc(100% - 40px);
		height: 70px;
	}
}