/* step_form_page */

.step_form_page{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: auto;
    display: none;
}

.step_form_page.show{
    display: flex;
}

.step_form_page_header{
    width: 100%;
    height: 8rem;
    background: #f9b233;
    flex-shrink: 0;
}



.step_form_body{
    padding: 4rem 0;
    flex-shrink: 0;
    display: none;
}

.step_form_body.current{
    display: block;
}


/* Step dot */

.step_dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.step_dot{
    width: 2.5rem;
    height: 0.4rem;
    border-radius: .2rem;  
    background: #d7d7d7; 
}

.step_dot.fill{
    background: #f9b233;
}


.step_content_container{
    width: 40rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}


/* title */

.step_form_page .title_box{
    padding: 4rem 2rem;
}

.step_form_page .title{
    color: #22344f;
    font-size: 2.4rem;
    line-height: 1.416;
    text-align: center;
}

.step_form_page .title_lg{
    color: #22344f;
    font-size: 3rem;
    line-height: 1.416;
    text-align: center;
    font-weight: 600;
    padding-top: 2rem;
}


/* radio box */

.radio_box.mb_10{
    margin-bottom: 1rem;
}

.radio_box input{
    opacity: 0;
    position: absolute;
}

.radio_box label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5.2rem;
    border-radius: .5rem;
    background: #fff;
    padding: 0 1.7rem;
    font-size: 1.6rem;
    border: .2rem solid rgb(234, 234, 235);
    cursor: pointer;
    transition: 300ms;
}

.radio_box label:hover{
    background: #fbfbfb;
}

.radio_box label .circle{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    outline: 1px solid rgb(234, 234, 235);
    border: .2rem solid transparent;
    background: transparent;
    transition: 300ms;
}

/* checked */
.radio_box input:checked + label{
    border-color: #22344f;
}

.radio_box input:checked + label .circle{
    outline: 1px solid #22344f;
    background: #22344f;
    border-color: #fff;
}



/* input */

.step_form_page .form_group{
    padding-bottom: 1.8rem;
}

.step_form_page .label{
    display: block;
    font-size: 1.6rem;
    padding-bottom: 0.4rem;
    color: #22344f;
}

.step_form_page .input{
    width: 100%;
    height: 4.8rem;
    border-radius: .5rem;
    background: #fff;
    padding: 0 1rem;
    font-size: 1.6rem;
    border: 1px solid rgb(234, 234, 235);
    transition: 300ms;
}

.step_form_page .input:focus{
    border-color: #22344f;
}

.step_form_page .input:hover{
    background: #fbfbfb;
}

.step_form_page .input::placeholder{
    opacity: 1;
    color: #677283;
}


/* Input icon */

.step_form_page .input_with_icon{
    position: relative;
}

.step_form_page .input_icon{
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgb(234, 234, 235);
    transition: 300ms;
}

.step_form_page .input_icon img{
    width: 1.8rem;
}

.step_form_page .input_with_icon .input{
    padding-left: 5.8rem;
}

.step_form_page .input_with_icon .input:focus + .input_icon{
    border-color: #22344f;
}


/* Button */

.step_button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4.8rem;
    background: #22344f;
    border: 1px solid #22344f;
    color: #fff;
    border-radius: .5rem;
    padding: 1.7rem;
    font-size: 1.7rem;
    font-weight: 700;
    margin-top: 5rem;
    transition: 300ms;
}

.step_button:hover:not(:active){
    color: #fff; 
    background: #f9b233;  
    border-color: #f9b233;  
}

.step_button .arrow{
    width: 1.8rem;
}



/* step footer */

.step_footer{
    margin-top: auto;
    background: #fafafb;
    text-align: center;
    padding: 3rem 1.5rem;
    flex-shrink: 0;
}

.step_footer .text{
    font-size: 1.6rem;
    color: #22344f;
}



.iti{
    width: 100%;
}

.iti .iti__selected-dial-code{
    font-size: 1.6rem;
}

.iti__selected-country-primary{
    border-right: 1px solid rgb(234, 234, 235);
}


/* Responsive for 1399px and down devices */

@media (max-width: 1399px){

    .step_content_container{
        width: 47rem;
    }

    .step_dots {
        gap: .55rem;
    }

    .step_dot {
        width: 2.8rem;
        height: 0.5rem;
        border-radius: .3rem;
    }

    .step_form_body{
        padding-bottom: 10rem;
    }

    .step_form_page .title{
        font-size: 2.8rem;
    }

    .radio_box label{
        height: 6.4rem;
        font-size: 2rem;
    }

    .step_button{
        font-size: 2rem;
        height: 6rem;
    }

    .step_form_page .form_group {
        padding-bottom: 2.4rem;
    }

    .step_form_page .label{
        font-size: 2rem;
    }

    .step_form_page .input{
        height: 6rem;
        font-size: 2rem;
        padding: 0 1.6rem;
    }

    .step_form_page .input_icon{
        width: 6rem;
    }

    .step_form_page .input_icon img{
        width: 2.2rem;
    }

    .step_form_page .input_with_icon .input {
        padding-left: 7.2rem;
    }

    .step_footer .link_list a {
        font-size: 1.8rem;
    }

    .step_footer .text{
        font-size: 2rem;
    }

    .iti .iti__selected-dial-code {
        font-size: 2rem;
    }

}

@media (max-width: 575px){

    .step_content_container{
        width: 100%;
    }

}