.coupon-desc p {
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
}

.coupon-btn a {
  text-decoration: none;
}

.coupon-img img {
  width: 100%;
  background-size: contain;
  height: 48px !important;
}

.coupon * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
  font-size: 11px !important;
}

.card-container {
  padding: 20px;
  max-width: 400px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: black;
  margin-bottom: 10px;
}

.coupon-card {
  background-color: #F8FAFC;
  padding: 5px;
  max-width: 440px;
  margin-bottom: 10px;
  position: relative;
}

.coupon {
  max-width: 400px;
  border-radius: 5px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #FBCDCD;
  opacity: 0.8;
  position: relative;
  padding: 25px;
}

.coupon::after {
  position: absolute;
  content: "";
  height: 40px;
  right: -20px;
  border-radius: 40px;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #F8FAFC;
  width: 40px;
}

.coupon::before {
  position: absolute;
  content: "";
  height: 40px;
  left: -20px;
  border-radius: 40px;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  background-color: #F8FAFC;
  width: 40px;
}

.coupon-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 150px;
}

.coupon-img {
  width: 40%;
}

.coupon-desc {
  position: relative;
  width: 57%;
}

.coupon-desc::before {
  content: "";
  position: absolute;
  border-left: 5px dotted black;
}

.verticale {
  border-left: 5px dotted black;
  height: 100px;
  margin-left: 10px;
  margin-right: 10px;
}

.coupon-btn {
  position: absolute;
  max-width: 220px;
  margin: 15px auto 0;
  color: #000000;
  bottom: 5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

.coupon-rating p,
.expire p {
  font-size: 12px;
}

.coupon-code {
  background-color: #f5f6f8 !important;
  box-shadow: none;
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  height: auto !important;
  line-height: 45px;
  color: black !important;
  padding-right: 15px;
  text-align: right;
}

.coupon-show {
  cursor: pointer;
  background-color: black !important;
  border-color: black !important;
  max-width: 220px;
  color: white;
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  position: absolute;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  left: 0;
  top: 0;
  transition: all 0.5s ease 0s;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #FF6767 10px, #FF6767 20px), linear-gradient(to bottom, #FF6767, #FF6767);
}

.coupon-show-offer {
  cursor: pointer;
  background-color: black !important;
  border-color: black !important;
  width: 89%;
  color: white;
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  position: absolute;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 5px;
  transition: all 0.5s ease 0s;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, #FF6767 10px, #FF6767 20px), linear-gradient(to bottom, #FF6767, #FF6767);
}

.coupon-show:hover {
  width: 100%;
}

@media (min-width: 992px) {
  .coupon-show {
    width: 170px;
  }

  .coupon-show:hover {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .coupon-card {
    max-width: 230px;
  }
}
@media (min-width: 992px) {
  .coupon-card {
    max-width: 500px;
  }
}