.card-container {
  width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.card {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 250px;
  margin: 20px;
  overflow: hidden;
  position: relative;
}

.card img {
  width: 100%;
  height:140px;
}

.card-price {
  position: absolute;
  top: 100px;
  left: 0;
  background: #FF4A52;
  padding: 3px 10px 2px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.discount {
  font-weight: 400;
  margin-right: 5px;
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 13px;
}

.card-content {
  padding:10px;
  margin-bottom: 10px;
}

.card-content p{
  color: #ccc;
}

.card-title {
  display: block;
  height: 50px;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  overflow: hidden;
}

a.button {
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  padding: .4em 1.1em .4em 1.1em;
  color: #fff;
  background: #FF4A52;
  border: 2px solid #FF4A52;
  font-size: 15px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  margin-bottom: 10px;
}

a.button:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.clear {
  clear: both;
}