.tabel_edge {
  width: 150px;

}

.tabel_middle {
  width: 650px;

}

.container-products {
    max-width: 650px;
    justify-content: space-around;
    margin: 0 auto;
    margin-top: 50px;
}

.container-products ion-icon {
    font-size: 25px;
    color: blue;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.product-header {
    width: 100%;
    max-width: 650px;
    display: flex;
    justify-content: flex-start; 
    margin: 0 auto;
}

.product-title {
    width: 32%;
    padding-left: 175px;
}

.price {
    width: 10%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid lightgray;
}

.price_top {
    width: 10%;
    text-align: center;
 } 

.quantity {
    width: 20%;
    display: flex;
    border-bottom: 1px solid lightgray;
    align-items: center;
}

.quantity_top {
    width: 20%;
    text-align: center;
}

.total {
    width: 10%;
    border-bottom: 1px solid lightgray;
    display: flex;
    align-items: center;
}

.total_top {
    width: 15%;
    text-align: center;
}

.submit_button {
    width: 15%;
    text-align: center;
}

.product {
    width: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid lightgray;
    text-align: left;
}


.product ion-icon {
    cursor: pointer;
}

.item_name{
width: 200px;
text-align: left;
}

.cart_display {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.img {
    padding-right: 10px;
    align-items: center;
}

.basketTotalContainer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 10px 0;
}

.basketTotalTitle {
    width: 10%;
}

.basketTotal {
    width: 10%;
    }

@media(max-width: 700px) {
    .sm-hide {
        display: none;
    }
    .product-title {
    width: 40%;
    padding-left: 80px;
}
    .quantity_top {
    width: 20%;
    padding-left: 10px;
}.total_top {
    text-align: left;
}
.submit_button {
    width: 15%;
     align-items: left;
     padding-right: 20px;
}
.basketTotalTitle {
    width: 10%;
    text-align:left;
    padding-right: 10px;
}

.basketTotal {
    width: 10%;
     text-align:left;
     padding-right: 40px;
    }
    }

