.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .modal-content {
    margin: auto;
    border: 1px solid #888;
    width: 90% !important;
    animation: modalopen 0.5s;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    padding: 30px;
  }
  .modal-content .modal-content-header {
    font-weight: 500;
    font-size: 30px;
    text-align: center;
  }
  .modal-content .modal-content-header span {
    display: block;
    font-size: 18px;
    margin: 10px 0 30px;
  }
  .modal-content .modal-content-body {
    text-align: center;
  }
  .modal-content .modal-content-body .modal-content-body-textbox {
    font-size: 26px;
    color: #d32f2f;
  }
  .modal-content .modal-content-body .modal-content-body-textbox p {
    margin-bottom: 10px;
  }
  
  .modal-close {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    text-align: center;
    cursor: pointer;
  }
  
  .modal-close:hover {
    background-color: #d32f2f;
  }
  
  @keyframes modalopen {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }