#wpcs_eq_nav_calculation {
    .wpcs_empty_cart {
        padding: 20px 0px;
    }
    .wpcs_eq_single {
        display: flex;
        border-bottom: 1px solid black;
        padding: 20px 0px 10px 0px;
        gap: 20px;
        margin-bottom: 20px;
        img {
            width: 20%;
            object-fit: cover;
            height: 200px;
        }
        .wpcs_eq_nav_content {
            display: flex;
            gap: 20px;
            width: 80%;
            .wpcs_eq_nav_info {
                flex: 1;
                .wpcs_eq_name {
                    font-weight: 700;
                    font-size: 18px;
                }
            }
        }
        .wpcs_eq_nav_price {
            flex-shrink: 0;
            span.wpcs_eq_price {
                font-weight: 700;
                font-size: 18px;
            }
        }
    }
    .wpcs_eq_single:last-child {
        border-bottom: none;
    }
}

.wpcs_form_eq_nav {
    ul {
        padding: 0;
        li {
            display: flex;
            list-style: none;
            padding-left: 0;
            justify-content: space-between;
            align-items: center;
            span.wpcs_eq_label {
                display: flex;
                align-items: flex-end;
                gap: 10px;
            }
            .dashicons-plus {
                display: none;
            }
            span.wpcs_eq_price {
                font-weight: 500;
            }
        }
    }
}

#wpcs_eq_nav_consumer_price {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    .dxim_vehicle_price {
        text-align: right;
        font-size: 12px;
        line-height: 1;
    }
}

div#wpcs_eq_nav_full_price_wrapper {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid black;
    padding-top: 10px;
    #wpcs_full_price {
        font-weight: 700;
        font-size: 25px;
    }
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 768px) {
    #wpcs_eq_nav_calculation {
        .wpcs_eq_single {
            flex-direction: column;
            img {
                width: 100%;
                object-fit: cover;
            }
            .wpcs_eq_nav_content {
                width: 100%;
                flex-direction: column;
            }
            .wpcs_eq_nav_price {
                display: flex;
                justify-content: flex-end;
            }
        }
    }
}