/* add thumbnail on the cart page */
.woocommerce-cart table.cart td.product-thumbnail img {
  width: 100px;
}

@media (max-width: 768px) {
  .woocommerce-cart table.cart td.product-thumbnail img {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .woocommerce table.cart tr {
    position: relative;
    border-bottom: 1px solid rgb(238, 238, 238);
  }

  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: white;
  }

  .woocommerce table.cart td.product-thumbnail {
    display: block;
    border-top: 0px;
  }

  .woocommerce table.cart td.product-thumbnail::before {
    display: none;
  }

  .woocommerce table.cart td {
    border-top: 0px;
  }

  .woocommerce table.cart td.product-remove {
    height: 120px;
  }
}
/* add thumbnail on the cart page - End */

/* Add cart text */
#et-top-navigation #mini-cart-count {
  float: left;
  margin: -2px 0 0 -4px;
  font-size: 16px;
  color: inherit;
  position: relative;
}

#et_top_search {
  display: none;
}

@media (max-width: 980px) {
  #et-top-navigation #mini-cart-count {
    margin-top: 5px;
  }
}
/* Add cart text - End */
