.crate-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 640px) {
  .crate-list{
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-auto-flow: row;
  }
  .crate-img{
    max-height: 240px;
    max-width: 100%;
  }
}

.crate-list > li{
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.crate-img{
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  width: 100%;
}

.crate-title{
  font-size: 18px; 
  margin-bottom: .5rem;
  font-weight: bold !important;
} 

.crate-shortdesc{
  font-size: 15px;
  margin-bottom: .5rem;
}

.crate-shortdesc p{
  margin-bottom: 0!important;
}

.crate-price-label{
  font-size: 12px;
  margin-bottom: .5rem;
}

.crate-price.has-promo{
  text-decoration: line-through;
}

.crate-price-promo{
  color: #cc0000;
}

.crate-price-vat{
  font-weight: bold
}

.crate-qty-group{
  display: flex;
  align-items: center;
  margin-top: 1rem;

}

.crate-qty-input{
  width: 40px;
  height: 35px;
  margin: 0 1rem;
  border: 1px solid #ccc;
  text-align: center;
  font-weight: bold;
}

.crate-add-cart{
  height: 35px;
  background-color: #0054a8;
  border: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0 1rem;
  line-height: 35px;
  cursor: pointer;
}

.crate-content{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.crate-cart{
  background: #e1e4e9;
  padding: 1.5rem;
}

.crate-cart ul{
  border-top: 1px solid #eee;
  list-style: none;
  margin: 0 0 20px;
  padding: 0
}

.crate-cart h2{
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
  color: #0054a8;
}

.crate-cart-item{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  gap: 10px;
}

.crate-cart-item p{
  margin-bottom: 0;
}

.crate-cart-info{
  font-size: 18px;
  margin-bottom: 20px;
}

.crate-cart-submit{
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.crate-cart-submit .crate-button-quote{
  height: 40px;
  background-color: #0054a8;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0 1rem;
  line-height: 40px;
  text-transform: uppercase;
  min-width: 80px;
  border: none;
}

.crate-cart-empty h4{
  font-size: 20px;
  margin-bottom: .5rem;
}

.crate-cart-empty p{
  margin-bottom: 0;
}

.crate-cart-item a{
  color: #0054a8;
}