.gmap-frame {
  width: 100%;
  height: 450px;
  display: block;
  margin: auto;
  border: 0px solid transparent;
}
.carousel{
  display: flex;
}
.carousel-controls{
  position: relative;
}
.card-img-top{
  width: 100%;
  height: 250px;
  line-height: 250px;
  text-align: center;
  object-fit: contain;
}

/* Add-to-cart button animation */
.btn-add-to-cart {
  transition: transform 120ms ease, background-color 200ms ease, box-shadow 200ms ease;
}
.btn-add-to-cart.added {
  background-color: #198754; /* bootstrap success */
  border-color: #198754;
  transform: scale(1.06);
  box-shadow: 0 0.5rem 1rem rgba(25, 135, 84, 0.25);
}
