/* Whatsapp icon */
.whatsapp-container {
  z-index: 99999999999;
  position: fixed;
  bottom: 120px;
  left: 20px;
}
.whatsapp-container a {
  height: 70px;
  width: 70px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 100%;
  background: #fff;
  color: #ffc107;
  font-size: 2.5rem;
  text-decoration: none;
  border: thin solid #eee;
  transition: margin-left 1s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.whatsapp-container a:hover {
  color: black;
  margin-left: 20px;
}
/* Mobile view @query */
@media screen and (max-width: 736px) {
  .price-container {
    margin-bottom: 1em;
  }
  .whatsapp-container {
      left: 30px;
  }
  .whatsapp-container a {
    height: 60px;
    width: 60px;
    font-size: 2.5rem;
  }
}