 /*..................cart..................*/

 .cart{
    width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
  }
  .cart h2 {
    margin-bottom: 20px;
  }
  .cart table{
    width: 100%;
  
  }
  .cart table thead tr th:first-child{
    text-align: left;
  }
  .cart table tr td{
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    text-align: center;
  }
  .cart table thead tr th:last-child{
    text-align: right;
  }
  .cart table tbody tr td:last-child{
    text-align: right;
  }
  
  /*..........................*/
  
  .cart button{
    margin-top: 12px;
    height: 30px;
    padding: 0 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
   background-color: tomato;
  }
  .cart {
    position: fixed;
    height: 100vh;
    width: 400px;
    right: 0;
    top: 0;
    background-color: #e9cdcd;
    padding: 12px 20px;
    overflow-y: scroll;
    right: -100%;
    transition: all 0.3s ease;
  }
  .cart i{
    cursor: pointer;
    margin-bottom: 30px;
    float: left;
  }
  .cart-icon i{
    cursor: pointer;
  }