.cost_section{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Cost part --- */

.cost_part{
    width: 100%;
    height: 200px;
    display: flex;
    gap: 20px;
}

/* --- Solution mark --- */

.solution_mark{
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 14px;
    background: var(--component);
}

/* image */

.solution_mark img{
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

/* text */

.solution_mark p{
    font-size: 18px;
    color: var(--text1);
}

/* --- Cost info --- */

.cost_info{
    width: 60%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 70px;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    background: var(--component);
}

/* --- Cost price --- */

.cost_info p{
    font-size: 22px;
    color: var(--text1);
}

/* span */

.cost_info p span{
    font-size: 13px;
    color: var(--text2);
}

/* --- Bar --- */

.bar{
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: rgb(220, 226, 230);
}

/* --- Fill --- */

.fill{
    height: 100%;
    border-radius: 10px;
}

/* colors */

.red{
    width: 84%;
    background: var(--red);
}

.green{
    width: 15%;
    background: var(--green);
}

/* --- Media --- */

@media screen and (max-width: 800px) {

    .cost_part{
        flex-direction: column;
        height: fit-content;
    }

    /* --- Solution mark --- */

    .solution_mark{
        width: 100%;
        height: 150px;
        box-sizing: border-box;
        padding-left: 60px;
        padding-right: 60px;
        justify-content: flex-start;
    }

    /* --- Cost info --- */

    .cost_info{
        width: 100%;
        height: 150px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media screen and (max-width: 500px) {


    .solution_mark{
        padding-left: 5px;
        padding-right: 5px;
        justify-content: center;
    }

    /* --- Cost info --- */

    .cost_info{
        padding-left: 40px;
        padding-right: 40px;
        align-items: center;
    }
}