/* popup table */

.popup {
  display: none;
  width: 100%;
  min-width: 250px;
  margin-top: 3em;
}

.check-results {
  width: 100%;
  min-width: 250px;
  margin-top: 3em;
}

#back {
  display: inline-block;
  margin-bottom: 50px;
}

.popup table, .responsive-table table, .check-results table {
  width: inherit;
  white-space: nowrap;
}

.basic-info {
  font-size: 14px;
  color: #808080;
  padding: 1% 0 1% 0;
}

.basic-info > span {
  margin-right: 30px;
}

#print {
  width: 120px;
  height: 50px;
  border: solid;
  border-radius: 8px;
  margin-top: 20px;
}

/* rules for printing area */ 

@media print {
  header, footer {
      display: none;
  }

  .responsive-table {
    display: none;
  }

  #export-link, #export-all-link {
      display: none;
  }

  .results > * {
      display: none;
  }

  .popup, .popup *:not(#print),
  .check-results, .check-results *:not(#print)
  {
    visibility: visible;
  }

  .basic-info span {
    display: inline-table;
    margin-right: 35px;
  }

  #print {
      display: none;
  }

  .check-results {
    position: absolute;
    left: 0;
    //top: -180px;
    top: 0;
    margin-top: 0;
    max-width: 100% !important;
    page-break-after: avoid;
    page-break-before: always;
    display: block;

  }

  .check-results #check-detail {
      margin: 0.25em 0;
  }

  th {
    font-size: 13px;
  }

  td {
    text-align: center;
    padding: 1em;
    font-size: 12px;
  }


}





  
