/* The Modal (background) */
.modalAdd {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  .modalUpdate {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  .modalHeader {
    background-color: #263544;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 12px;
    text-align: center;
  }
  .modalContent {
    padding: 20px;
  }

  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 42%;
    box-shadow: 3px 3px 20px 0px #535353;
    border-radius: 17px;
  }
  
  /* The Close Button */
  .closeAdd {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-right: 15px;
  }
  
  .closeAdd:hover,
  .closeAdd:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  .closeUpdate {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-right: 15px;
  }
  
  .closeUpdate:hover,
  .closeUpdate:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  #pdf_link {
    display: none;
  }

  .sop_tiles{
    width: 80%;
    padding-top: 10px; 
    padding-bottom: 10px; 
    display: inline-flex; 
    margin: 8px;
  }