.modal-wrapper {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal {
  pointer-events: none;

  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  position: relative;
}
.modal-body{
  max-height: 300px;
  overflow-y: auto;
  pointer-events: all;
}
.close_modal {
  padding-top: 5px !important;
  padding-right: 15px !important;
  padding-bottom: 5px !important;
  padding-left: 15px !important;
  background-color: #b00c12 !important;
}

.close_modal:hover {
  background-color: #b00c12 !important;
}

.close_modal:active {
  transform: scale(1.05);
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: #b00c12 !important;
}

.loader {
  border: 5px solid #f3f3f3;
  /* Light grey */
  border-top: 5px solid #d72d2d;
  /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.coupon_content {
  margin: 15px 0;
  display: flex;
  padding: 10px 5px;
  justify-content: space-between;
  border: 1px #ccc8c8 solid;
  border-radius: 5px;
  align-items: center;
  box-shadow: 9px 10px 13px -11px rgba(0, 0, 0, 0.22);

}

.coupon_content p {
  margin-bottom: 0 !important;
}

.coupon_content label {
 font-weight: bold;
}