    .itemListElement {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #ccc;
        flex-wrap: wrap;
    }

    .item_details {
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }

    .item_name {
        flex: 1 1 60%;
        margin-bottom: 10px;
    }

    .item_select_part {
        gap: 10px;
        flex-wrap: wrap;
    }

/* Responsive */
@media (max-width: 768px) {
    .item_select_part {
    	flex: 1 1 100%;
        align-items: flex-start;
    }

    .service_price_field,
    .service_duration_field,
    .select_item_bttn {
        width: 100%;
    }

    .service_price_field span {
        display: block;
    }
}