.price {
  text-align: center;
}

.price .currentPrice, .suggestedPrice {
  color: #383838;
  font-size: 30px;
  font-weight: 600;
}

.price .isCheaper .suggestedPrice {
  font-size: 20px;
  font-weight: normal;
  text-decoration: line-through;
  color: grey;
  padding-left: 5px;
}

.price .isMoreExpensive .suggestedPrice {
  font-size: 20px;
  font-weight: normal;
  color: grey;
  padding-left: 5px;
}

.price .isCheaper, .isMoreExpensive {
  margin-top: 3px;
}

.price .amountSaved {
  display: inline-block;
  font-size: 20px;
  font-weight: normal;
  color: white;
  background-color: green;
  border-radius: 4px;
  margin-top: 5px;
  padding: 2px 5px 2px 5px;
}