.coupon-container {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  padding: 20px;
  background: #a3f9ff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
  margin: 100px auto 30px auto;
  font-family: "Roboto", sans-serif;
  transition: all 400ms ease;
}

.coupon-container .close {
  width: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  cursor: pointer;
}


.coupon-container img.bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.coupon-container img.gift {
  position: absolute;
  width: 180px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.coupon-container h2,
.coupon-container p,
.coupon-container .discount,
.coupon-container .code,
.coupon-container .btn {
  position: relative;
}

.coupon-container h2 {
  color: #023047;
  font-weight: 900;
  font-size: 30px;
  padding-top: 70px;
  margin-bottom: 0;
}

.coupon-container p {
  font-size: 18px;
  color: #023047;
  margin: 8px;
}

.coupon-container .discount {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: #076170;
}

.coupon-container .code {
  font-size: 45px;
  font-weight: 900;
}

.coupon-container .btn {
  text-decoration: none;
  background: #e63946;
  padding: 16px;
  display: inline-block;
  width: 100%;
  color: #fff;
  box-sizing: border-box;
  margin-top: 24px;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 300ms ease;
}

.coupon-container .btn:hover {
  background: #e22535;
}

