.kadence-coupons a, .kadence-coupons a:hover {
  color: #ffffff;
  background: #D53638;
  border-radius: 5px;
  box-shadow: none;
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.4em 1em;
  transition: all .3s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.kadence-coupons {
  display: grid;
  gap: 1rem;
}
.kadence-coupon-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 1024px) {
  .kadence-coupon-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


.kadence-coupon-header {
  border-radius: 10px;
  background-color: #F8F8F8;
  padding: 1.5rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
}
.kadence-coupon-header img {
  border-radius: 200px !important;
  max-width: 100%;
}
.kadence-coupon-header p {
  color: #b2b2b2;
}
.kadence-coupon-header h2 {
  margin-bottom: 0 !important;
  font-size: 1.25rem;
}


.kadence-coupon-voucher {
  background-image: url(https://staging.staging2.menupriceshub.com/wp-content/uploads/2023/09/Group-8613.png);
  background-size: 100% 80%;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  margin-top: 0.5rem;
}

.kadence-coupon-voucher h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.kadence-coupon-code {
  margin: 1.5rem 0;
  text-align: center;
}
.kadence-coupon-code .muted {
  color: #555;
  font-size: 0.875rem;
  margin-bottom: 0;
}
.kadence-coupon-code svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.25rem;
}
.kadence-coupon-code .info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coupon-button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 1.25rem 0;
}

.coupon-button {
  display: inline-flex;
  align-items: center;
}

.coupon-code {
  padding: 6px 40px 7px;
  background-color: #FBFBFB;
  border: 1px solid #E7E7E7;
  border-radius: 5px 0 0 5px;
  font-size: 20px;
  color: #333; /* Text color for the coupon code */
}

.copy-button {
  background-color: #D53638;
  color: #fff;
  border: 1px solid #D53638;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 10px;
}

.copy-button:hover {
  background-color: #B32426; /* Change the background color on hover */
}


@media (min-width: 768px) {
  .kadence-coupon-voucher {
    min-height: 10rem;
  }
  .kadence-coupon-voucher h3 {
    font-size: 1.5rem;
  }
  .kadence-coupon-header {
    flex-direction: row;
    align-items: center;
  }
  .kadence-coupon-header h2 {
    font-size: 1.75rem;
  }
}