.modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 60px 0;
      z-index: 99999;
    }
  
    .modal-content {
        background-color: #ffffff;
        padding: 30px;
        width: 1200px;
        max-width: 90%;
        margin: 0 auto;
        position: relative;
        text-align: left;
        height: 100%;
        overflow-y: auto;
    }
    .modal-content h2{margin-bottom: 30px;}
    .modal-content h4{margin-bottom: 15px;}
    .modal-content p + h4{margin-top: 30px;}
    .modal-content p:not(:last-of-type){margin-bottom: 15px;}
  
    .close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 40px;
        line-height: 1; 
        cursor: pointer;
        /* position: fixed;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: #000;
        color: #716f6f;
        font-size: 30px;
        text-align: center;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        cursor: pointer; */
    }
    #loadingSpinner{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 60px 0;
        font-size: 30px;
        line-height: 1;
        color: #fff;
        align-items: center;
        justify-content: center;
        z-index: 99999;
    }