/* steps bar  */

.steps-bar {
    width: 95%;
    height: 3.123rem;
    position: fixed;
    left: 0px;
    right: 0px;
    border-radius: 30px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 11;
    overflow: hidden;
    transition: top 0.4s;
    box-shadow: rgba(51, 69, 87, 0.08) 0px 10px 10px;
    /* top: -6.25rem; */
    top: 0px;
    animation: 1.5s ease-in-out 0s 1 normal forwards running testAnimation;
    margin: 1rem auto 0 auto;
}

@keyframes testAnimation {
    0% {
        /* top: -100px; */
        opacity: 0;
        background-color: transparent;
    }
    85% {
        background-color: transparent;
        opacity: 1;
    }
    100% {
        top: 0px;
        filter: drop-shadow(rgba(51, 69, 87, 0.15) 0px 15px 40px);
    }
}

.steps-bar-progress-wrapper {
    position: absolute;
    height: 3.1rem;
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(157, 176, 197, 0.1);
    clip-path: none;
    z-index: -10;
    animation: 1.5s ease-in-out 0s 1 normal forwards running testAnimation2;
}

@keyframes testAnimation2 {
    0% {
        background-color: transparent;
    }
    85% {
        background-color: transparent;
    }
    100% {
        background-color: rgb(255, 255, 255);
    }
}

.steps-bar-progress-percent {
    height: 3.123rem;
    border-radius: 25px;
    position: absolute;
    z-index: -10;
    clip-path: none;
    animation: 2s ease-out 1s 1 normal forwards running testAnimation3;
}

@keyframes testAnimation3 {
    0% {
        width: 20px;
        background-color: transparent;
    }
    5% {
        background-color: #015f83;
    }
    100% {
        
        background-color: #015f83;
    }
}


.steps-bar-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}


.goBackStep {
    transition: background-color 0.5s;
    background-color: #015f83;
    width: 3.125rem;
    height: 3.125rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    border-radius: 50px;
    cursor: pointer;
    padding: 2px 6px 2px 6px;
    color: white;
}

.goBackStep:hover {
    background-color: rgb(194 204 239 / 47%);
}

.logoWrapper {
    height: 100%;
    display: flex;
}

.logoWrapper .linkHome {
    margin-right: 12vw;
    width: 11rem;
    height: 3.125rem;
    border: none;
    transition: background-color 0.5s;
    background-color: transparent;
    display: flex;
}

.logoStepWrapper {
    color: rgb(255, 255, 255);
    width: 7.5rem;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 4rem;
}

.logoStepWrapper img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 576px) {
	.steps-help {
		display: none!important;
	}
	.logoStepWrapper img {
		max-width: 100px!important;
	}
	.logoStepWrapper {
		margin-left: 3.25rem!important;
	}
}


.step-bar-steps {
    display: flex;
    height: 100%;
}


.steps-home {
    display: flex;
    height: 100%;
    flex-direction: row;
}

.steps-others{
    display: flex;
    height: 100%;
    flex-direction: row;
}

.steps-button {
    transition: background-color 0.5s;
    border: none;
    height: 100%;
    background: transparent;
    text-align: left;
    white-space: nowrap;
    padding: 0 2vw;
    display: block;
    color: #fff;
    font-weight: 600;
}

.steps-button.uncovered {
    color: black;
}

.step-info-wrapper {
    display: flex;
    flex-direction: column;
}

.show-step-info {
    font-size: 14px;
    display: none;
}

@media (max-width: 1119px) {
	#stepOneProgressBtn, #stepThreeProgressBtn, #stepFourProgressBtn {
		display: none;
	}
	
	#stepTwoProgressBtn {
		display: block;
	}
}

.steps-help {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    border-radius: 30px;
    top: 0;
    right: 8px;
    height: 100%;
}

.steps-call-us {
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
    color: black!important;
	
}

/* end of steps bar  */

@media (max-width: 767px) {
	.linkHome {
		margin-right: 0!important;
		width: auto!important;
	}
}

@media (max-width: 576px) {
	.logoStepWrapper {
		width: auto!important;
	}
}