@charset "utf-8";
#fullImage {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 2s ease-in-out;
	z-index:10000;
    object-fit: cover;
}
#progressBar{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 20px;
    background-color: #fff;
    display: none;
}
#progressBar .progContainer{
    width:100%;
    height: 100%;
    max-width: 784px;
    margin: 0 auto;
}
#progressBar.active{
    display: block;
    z-index: 1000;
}

#progress{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 6px;
    background-color: #DADADA;
}
#progress::before{}
#progress:after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%,-50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 4px solid #DADADA;
    border-radius: 50%;
}
#progress .progress_step{
    display: block;
    width: 0%;
    height: 6px;
    background-color: #EFEDFE;
    transition: 0.5s all;
    position: relative;
}
#progress .progress_step::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%,-50%);
    width: 24px;
    height: 24px;
    background:#EFEDFE url(../images/common/check_icon.svg) no-repeat center center/cover;
    border-radius: 50%;
}
#progress .progress_step::before{
    content: '';
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 8px solid #6149F8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%,-50%);
    box-shadow: 0 6px 10px 0 rgba(0,0,0, 0.05);
    z-index: 11;
}
#progress #center{
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 4px solid #DADADA;
    border-radius: 50%;
}
#progress #center.active{
    background:#EFEDFE url(../images/common/check_icon.svg) no-repeat center center/cover;
    border: none;
}
.buttons{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.buttons button {
    position: relative;
    cursor: pointer;
  }
  #leftBtn::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 1px;
    height: 24px ;
    border-radius: 3px;
    background: #F0F0F0;
    /* background:#6149F8; */
}
#rightBtn::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 1px;
    height: 24px ;
    border-radius: 3px;
    background: #F0F0F0;
    /* background:#6149F8; */
}
/* .toggleBtn{
    position: absolute;
    top: -15px;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: #2E6DE2;
} */
.status {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: #ddd;   z-index: -1;

}
.control-btn {

}

.buttons button{

}

#sinEstimate{
    position: absolute;
    /* left: 74.25%; */
    right: 1.56%;
    bottom: 11px;
    width: 138px;
    display: none;
}
#sinEstimate.active{
    display: block;
    z-index: 1000;
}


@media (max-width:1120px) {
    #sinEstimate{
        left: unset;
        width: 48px;
        height: 48px;
        bottom: 90px;
        /* right: 10%; */
    }
}
@media (max-width:768px) {
    #progress {
        width: 54.874%;
    }
    #progressBar{
        height: 38px;
    }
    .buttons {
        width: 85%;
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: space-between;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 300px;
    }
    #leftBtn::before{
        height: 14px;
    }
    #righttBtn::before{
        height: 14px;
    }
    #sinEstimate{
        left: unset;
        right: 20px;
        bottom: 58px;
    }
}

@media (max-width:500px) {
    #progress {
        width: 195px;
    }
    #sinEstimate{
        width: 12.31%;
        height: 6.585%;
    }
}
@media (max-width: 375px) {
    #leftBtn::before {
        right: -14px;
    }
    #rightBtn::before {
        left: -14px;
    }
}