#oec-coupon-list {
  font-size: 13px;
}

#oec-coupon-list h3 {
  margin: 0px 0 10px 0;
  font-weight: 700;
  text-align: center;
}

#oec-coupon-list .coupon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#oec-coupon-list .coupon {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 5px;
  padding: 7px;
  text-align: center;
  max-width: 75%;
}


#oec-coupon-list .coupon-row {
  display: flex;
  align-items: center;
  margin: 25px auto;
  width: fit-content;
  color: #fff;
}

#oec-coupon-list .coupon-code-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px dashed #fff;
  border-right: 0;
  padding: 5px 10px;
  width: 50%;
  background: linear-gradient(135deg, #7158fe, #135af4);
  line-height: 1;
}

#oec-coupon-list .coupon-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

#oec-coupon-list .coupon-discount {
  font-size: 12px;
  color: #fff;
  color: #e9c8c2;
}

#oec-coupon-list .amount {
  color: #e9c8c2;
}

#oec-coupon-list .coupon-code {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden; 
  white-space: nowrap; 
  text-overflow: ellipsis; 
  width: 100%; 
}

#oec-coupon-list .coupon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background: #fff;
  padding: 10px 20px;
  color: #7158fe;
  cursor: pointer;
  width: 50%;
  border: 1px dashed #135af4;
  border-left: 0;
}

#oec-coupon-list .coupon-button:hover {
  background-color: rgba(19, 90, 244, 0.5);
  color: #fff;
}