
.content{
    min-height: 100vh;
    font-family: sans-serif;
}
.top_box{
    background: linear-gradient(90deg, rgba(25,144,122,1) 0%, rgba(203,255,245,1) 100%);
    height: 40vh;
    width: 100%;
}
.top_box .header_box{
    height: 80px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.top_box .header_box .right_box{
    display: flex;
    align-items: center;
    gap: 20px;
}
.top_box .header_box .right_box a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
    border-radius: 10px;
}
.top_box .header_box .right_box a:hover{
    background-color: #f08c05;

}
.top_box .header_box .left_box{
    display: flex;
    align-items: center;
    gap: 5px;
}
.control_steps_box {
    display: flex;
    justify-content: space-between;
}

.top_box .header_box .left_box > img{
    width: 50px;
    height: 50px;
}
.bottom_box{
    background-color: #fff;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    top: -100px;
    min-height: 60vh;
    margin: 0 50px;
    border-radius: 10px;
}
.projects_item{
    width: 250px !important;
    height: 120px !important;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
}
.projects_item:hover{
    background-color: #ffb657;

}
.projects_item .name{
    display: block;
    text-align: left;
    font-weight: 400;
    color: #ababab;
    font-size: 14px;
    margin: 0px 0 8px;
}
.projects_item .demand{
    font-size: 18px;
    font-weight: 600;
}
.projects_item .area,.projects_item .district{
    text-align: left;
    font-weight: 400;
    color: #ababab;
    font-size: 14px;
    padding-right: 5px;
}
.swiper-button-next, .swiper-button-prev{
    color: #f8f6f6 !important;
    background: #adadad !important;
    padding: 5px;
    /* font-size: 5px; */
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    box-sizing: border-box;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 18px !important;
}

/* step */
.steps_top {
    display: flex;
    justify-content: center;
}
.steps_box{
    display: flex;
    align-items: center;
   justify-content: center;
   margin: 20px 0 50px;
    width: 80%;
}
.steps_box .step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.steps_box .step .circle{
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.steps_box .step.active .circle{
    background-color: var(--SuccessProgress);
}
.step_title{
    position: absolute;
    top: 50px;
    width: 300px;
    display: flex;
    justify-content: center;
    transform: translateX(-44%);
}
.steps_box .line{
    width: 100%;
    height: 4px;
    background-color: #ccc;
}
.steps_box .line.active{
    background-color: var(--SuccessProgress);
}
.thisStep .circle{
    background-color: var(--CurrentProgress) !important;
}

.primary_btn{
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--Primary);
    width: 70px;
    box-sizing: border-box;
    cursor: pointer;

}
.next_btn {
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--NextBtnProgress);
    min-width: 120px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*.payment_btn{*/
/*    padding: 10px 15px;*/
/*    border-radius: 10px;*/
/*    color: #fff;*/
/*    background-color: var(--PaymentBtnProgress);*/
/*    box-sizing: border-box;*/
/*    cursor: pointer;*/
/*    text-align: center;*/

/*}*/
.prev_btn{
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--NextBtnProgress);
    min-width: 120px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

}
.content_step {
    display: flex;
    flex-direction: row;
}
.info_box_list_right {
    flex: 1;
}
.info_box_list_left {
    flex: 2;
}

.dontShow{
    display: none !important;
}

@media only screen and (max-width: 600px) {
    .step_title {
        position: static;
        width: fit-content;
        transform: unset;
    }
    .steps_box .step .circle{
        width: 50px;
    }
}
