body {
    pointer-events: none;
  }

  #modal {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 9999;
  }

  #modal-content {
    background-color: white;
    color: black;
    font-size: 16px;
    border:10px solid #EB780E;
    box-sizing: border-box;
    margin: 100px auto;
    max-width: 960px;
    max-height: 100%;
    overflow-y: auto;
    padding: 20px;
    pointer-events: auto;
  }
  
  #modal th,
  #modal td {
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    vertical-align: top;
  }

  #modal th {
    font-size: 18px;
  }

  #modal ul {
    padding-left: 15px;
    font-family: "ralewayregular", "Raleway", Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1.5;
  }

  #modal a, 
  #modal link{
    color: #167cbe;
    text-decoration: none;
  }

  #modal a:focus, 
  #modal link:focus {
    text-decoration: underline;
  }

  #modal a:hover, 
  #modal link:hover {
    color: #1073b6;
    text-decoration: underline;
  }