#modal-condition.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
}

#modal-condition .modal-box {
  width: 550px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

#modal-condition .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

#modal-condition .modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

#modal-condition .modal-close {
  border: none;
  background: none;
  font-size: 30px;
  cursor: pointer;
}

#modal-condition .modal-body {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  padding: 0;
  max-height: 70vh;
  overflow-y: auto;
}

#modal-condition .modal-body .discount-voucher-wrapper {
  position: relative;
}
.cart-discount-voucher-card {
  background-color: #507313;
  padding: 60px;
  margin-bottom: 72px;
}
.cart-discount-voucher-card-inner {
  position: absolute;
  bottom: -50%;
  left: 20px;
  display: flex;
  align-items: center;
  background-color: #ffff;
  gap: 12px;
  width: calc(100% - 40px);
  box-shadow: 2px 4px 4px -2px #e5e5e5bd;
  border-radius: 6px;
}

.cart-discount-voucher-info {
}

.cart-discount-voucher-card-inner-img {
  width: 120px;
  height: 120px;
  background-color: #82a93c;
  min-width: 120px;
  border-radius: 4px 0 0 4px;
}
.cart-discount-voucher-card-inner-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 4px 0 0 4px;
}
.cart-discount-voucher-name {
  font-size: 18px;
  font-weight: 600;
  color: #414141;
  margin-bottom: 4px;
}
.cart-discount-voucher-min-order {
  font-size: 16px;
  color: #525252;
  margin-bottom: 4px;
}
.cart-discount-voucher-expire {
  font-size: 16px;
  color: #ec4747;
}

.section-list {
  padding: 10px 20px;
  list-style: none;
}

.section-item {
  margin-bottom: 20px;
}

.section-list .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #414141;
  margin: 0 0 8px 0;
}

.section-list .section-content {
  font-size: 16px;
  color: #525252;
  line-height: 1.5;
}
.section-list .discount-code {
  color: #82a93c;
}
.modal-footer {
  padding: 15px 20px;
}
.modal-footer .btn-submit {
  width: 100%;
  background: #82a93c;
  color: white;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
}

.modal-footer .btn-submit:hover {
  background: #6fa02f;
}
