
.custom-alert {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  }
  
  .custom-alert .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2.5rem 5.5rem ;
    width: 30%;
    border-radius: 0.5rem;
    text-align: center;
  }
  @media (max-width: 767.98px) {
    .custom-alert .modal-content {
      width: 90%;
    }
  }
  .custom-alert .modal-content a {
    color: #F5B335;
  }
  .custom-alert .modal-content .close-button {
    width: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    background-color: #F6F6F7;
  }
  .custom-alert .modal-content .close-button:hover {
    background-color: #B5B8BD;
  }
  .custom-alert .modal-content .title {
    font-style: bold;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    /* color: #D02631; */
    margin-top: 2rem;
  }
  .custom-alert .modal-content .description {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
  }
  .custom-alert .modal-content .modal-footer {
    padding: 2.5rem 0 0 0;
    justify-content: space-around;
  }
  .custom-alert .modal-content .modal-footer .btn {
    padding: 1rem 3.5rem;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
  }
  .custom-alert .modal-content .modal-footer .btn.btn-secondary {
    background: #F6F6F7;
    border-color: #F6F6F7;
    color: #201747;
  }
  .custom-alert .modal-content .modal-footer .btn.btn-secondary:hover {
    opacity: 0.7;
  }
  
  .custom-alert.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    z-index: 99;
  }