/*	Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
	*/

.response {
  display : none;
}

@media
  only screen 
  and (max-width : 760px), (min-width : 768px) 
  and (max-width : 1024px)

{
  /* Force table to not be like tables anymore */
  table, thead, tbody, th, td, tr {
    display : block;
  }

    /* Hide table headers (but not display : none;, for accessibility) */
  thead tr {
    position : absolute;
    top : -9999px;
    left : -9999px;
  }

  .response {
    display : block;
  }

  tr {
    margin : 0 0 1rem 0;
  }

  .noshow {
    display : none;
  }

  td:nth-child(1) {
    font-weight : bold; /* for titles */
  }

  td {
    /* Behave  like a "row" */
    border : none;
    border-bottom : 1px solid #00008b;
    position : relative;
    padding-left : 40%;
  }

  td:before {
    /* Now like a table header */
    position : absolute;
    /* Top/left values mimic padding */
    top : 0;
    left : 0px;
    width : 35%;
    /* padding-right : 10px;*/
    white-space : nowrap;
  }

/* Label the data */
  td:before { 
    font-weight : bold;
    background-color  : #add8e6;
    color  : #00008b;
    text-align  : left;
    vertical-align  : baseline;
    font-size  : 1rem;
    padding  : 0.125rem;
    border  : none;
    white-space  : pre-wrap;
  }

  td:nth-of-type(1):before {
    content: "Station";
  }

  td:nth-of-type(2):before {
    content: "Listing level";
  }

/* Zebra striping */
  tr:nth-of-type(even) {
    background-color : rgba(208,231,242,0.5);
  }
}