/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#coupon-cta {
  background-color: #F6F6F7;
  border: solid #C8C6CC 2px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin: 0 0 50px;
  padding: 30px;
}
#coupon-cta #headline {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 460px) {
  #coupon-cta #headline,
  #coupon-cta #subheadline {
    text-align: center;
  }
}
#coupon-cta .details-wrap {
  color: #4A474F;
  display: flex;
  font-size: 0.875rem;
  justify-content: space-between;
  margin-bottom: 15px;
}
#coupon-cta .details-wrap .details {
  font-weight: bold;
}
@media (max-width: 460px) {
  #coupon-cta .details-wrap {
    align-items: center;
    flex-direction: column;
  }
}
#coupon-cta .api-response {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 20px;
}
#coupon-cta .api-response .coupon {
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #ccc;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
@media (max-width: 460px) {
  #coupon-cta .api-response .coupon {
    flex-wrap: wrap;
  }
}
#coupon-cta .api-response .logo {
  width: 35%;
}
#coupon-cta .api-response .logo img {
  max-height: 40px;
}
#coupon-cta .api-response .price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#coupon-cta .api-response .price .price-number {
  color: #51329d;
  font-weight: bold;
  font-size: 1.5rem;
}
#coupon-cta .api-response .price .price-signup {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 4px;
  font-size: 0.875rem;
}
@media (max-width: 460px) {
  #coupon-cta .api-response .price .price-signup {
    font-size: 0.75rem;
  }
}
#coupon-cta .api-response .price .price-signup .info-icon {
  align-items: center;
  border: solid #8ce389 2px;
  border-radius: 50%;
  color: #8ce389;
  display: flex;
  font-size: 0.875rem;
  font-weight: bold;
  height: 16px;
  justify-content: center;
  width: 16px;
  text-align: center;
}
#coupon-cta .api-response .price .price-signup a {
  color: rgba(107, 107, 107, var(--tw-text-opacity)) !important;
  text-decoration-color: #8ce389 !important;
}
@media (max-width: 460px) {
  #coupon-cta .api-response .couponbtn {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}
#coupon-cta .api-response .couponbtn a {
  background-color: #ff407a;
  border-radius: 8px;
  padding: 10px;
  font-weight: bold;
  color: #ffffff !important;
  text-decoration: none !important;
}
@media (max-width: 460px) {
  #coupon-cta .api-response .couponbtn a {
    display: block;
    width: 100%;
  }
}
#coupon-cta .coupon-see-all-btn {
  border-radius: 8px;
  border: solid #ff407a 1px;
  color: #ff407a !important;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  text-decoration: none !important;
  padding: 15px;
  width: 100%;
}
@media (min-width: 1024px) {
  #coupon-cta .coupon-see-all-btn {
    width: auto;
  }
}

#sticky-cta {
  transition: all 1s ease;
  bottom: 30px;
  opacity: 0;
  position: fixed;
  right: 20px;
  z-index: 100;
}
@media (max-width: 460px) {
  #sticky-cta .couponbtn {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
}
#sticky-cta .couponbtn a {
  background-color: #ff407a;
  border-radius: 8px;
  padding: 10px;
  font-weight: bold;
  color: #ffffff !important;
  text-decoration: none !important;
}
@media (max-width: 460px) {
  #sticky-cta .couponbtn a {
    display: block;
    width: 100%;
  }
}
#sticky-cta.is-visible {
  opacity: 1;
}
@media (min-width: 1024px) {
  #sticky-cta {
    right: 11%;
  }
}
@media (min-width: 1100px) {
  #sticky-cta {
    right: 14%;
  }
}
@media (min-width: 1280px) {
  #sticky-cta {
    right: 19.5%;
  }
}
