/* ==========================================================================
   title
   ==========================================================================
*/
.product-list-item-inner-small .product-description-link {
  height: 3.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   ADD TO CART POPUP
   ==========================================================================
*/

div.overlay {
  right: 0;
  bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: none;
  }
div.cart-popup {
  position: fixed;
  z-index: 1001;
  width: 100%;
  max-width: 600px;
  top: 20%;
  background: #FFF;
  border: 2px solid #ddd;
  padding: 0em;
  box-shadow: 0px 0px 4px #aaa;
  transform: translateX(-50%);
  left: 50%!important;
  color: #444;
  padding: 1em;
  display: none;
  max-height: 60vh;
  overflow: auto;
}
div.cart-popup h1 {
  font-size: 24px;
}
div.cart-popup > hr, div.cart-popup > div {
  display: none;
}