/* ===============================
   SUCCESS MODAL
================================= */

/* Modal Content */
.success-modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Backdrop */
.success-backdrop {
  backdrop-filter: blur(4px) brightness(0.95);
  background-color: rgba(0, 0, 0, 0.15) !important;
}


/* ===============================
   WRAPPER
================================= */

.success-wrapper {
  padding: 40px 20px;
  background: none !important;
}


/* ===============================
   SUCCESS BOX
================================= */

.success-wrapper .success-box {
  background: #fff;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 14px;
  padding: 35px 0px 35px 20px;
  max-width: 520px;
  margin: auto;
}


/* Title */
.success-wrapper .success-box h4 {
  color: #3C9734;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}


/* Text */
.success-wrapper .success-box p {
  color: #010E1E;
  margin: 0;
  font-size: 15px;
}


/* ===============================
   BUTTON SECTION
================================= */

.success-wrapper .button-wrapper {
  margin: 0 auto;
  text-align: center;
}


/* Button */
.success-wrapper .button-wrapper .success-btn {
  margin-top: 30px;
  background: #031423;
  color: #ff6a3d;
  border-radius: 30px;
  padding: 12px 38px;
  border: none;
}

.success-wrapper .button-wrapper .success-btn:hover {
  background: #020f1c;
}



@media (min-width:0px) and (max-width: 576px) {

  .success-wrapper {
    padding: 25px 15px;

  }

  .success-wrapper .success-box {
    padding: 25px 18px;
    border-radius: 12px;
    flex-direction: column !important;

  }

  .success-wrapper .success-box .contain-wrapper {
    text-align: center;
  }

  .success-wrapper .success-box h4 {
    font-size: 18px;
  }

  .success-wrapper .success-box p {
    font-size: 13px;
    line-height: 1.5;
  }

  .success-wrapper .button-wrapper {
    margin-top: 20px;
  }

}

@media (min-width:578px) and (max-width: 991px) {

  .success-wrapper .success-box {
    gap: 20px;
    padding: 20px 20px;
  }

  .success-wrapper .success-box h4 {
    font-size: 21px;
  }

  .success-wrapper .success-box p {
    font-size: 14px;
  }

  .success-wrapper .button-wrapper {
    margin-top: 25px;
  }

}