#cart {
  overflow-x: auto;
}

#cart table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 30px;
}

#cart th,
#cart td {
  text-align: center;
  padding: 8px;
}

#cart table img {
  width: 100px;
  height: auto;
  object-fit: cover;
}


#cart td:nth-child(1) { width: 100px; }
#cart td:nth-child(2) { width: 150px; }
#cart td:nth-child(3) { width: 250px; }
#cart td:nth-child(4),
#cart td:nth-child(5),
#cart td:nth-child(6) { width: 150px; }


#cart td:nth-child(5) input {
  width: 70px;
  padding: 10px 5px 10px 15px;
}

#cart table thead {
  border: 1px solid rgb(219, 218, 217);
  border-left: none;
  border-right: none;
}

#cart table thead td {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 0;
}

#cart table tbody tr td {
  padding-top: 15px;
}



#cart-add {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content:space-evenly;
  margin-top: 50px;
}


#cupon  input {
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid grey;
  margin-top: 10px;
  width: 300px;

}

#cart-add button {
    font-size: 1rem;
    font-weight: 600;
    padding: 7px 10px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-left: -11px;
}



#Subtotal {
  width: 600px;
margin-bottom: 30px;
border: 1px solid grey;
padding: 20px;
}

#Subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#Subtotal table td {
  width: 50%;
  border: 1px solid rgb(219, 218, 217);
  padding: 10px;
  font-size: 13px;
}

 #Subtotal h3 {
  padding-bottom: 10px;
 }

 .fa-xmark {
  text-decoration: none;
  color: black;
 }



 .deliveryDate {
  margin: 10px 0 0 -6px;   
  padding: 10px 0;
  color: #007600;
  border-radius: 4px;
  font-size: 14px;
}

.deliveryDate p {
  margin: 0;
}

.deliveryDate span {
  color: #ffffff;                
  font-weight: bold;
}


 @media (max-width:799px) {
  #cart-add {
    margin-top: 50px;
}

#Subtotal {
  margin-top: 30px;
}
#cart td:nth-child(5) input {
    width: 70px;
    padding: 5px 5px 10px 15px;
}
 }