/****************** Coupon popup styles ******************/
.coupon-container {
  border-radius: 24px;
}
.coupon-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px;
  background-color: #fbf3e0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.coupon-image {
  height: 320px;
  width: 320px;
  object-fit: contain;
}
.border {
  border: 1px solid red;
}
.coupon-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 210px;
}
.coupon-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--colorBrown);
  margin: 0;
  margin-bottom: 10px;
}
.coupon-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #3f3f3f;
  margin: 0;
  margin-bottom: 10px;
}
.coupon-code {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #828282;
  margin: 0;
}
