/*
 * Responsive Tables plugin 2.2.1
 * Ryan Wells 
 * Copyright 2019, Ryan Wells (https://ryanwells.com)
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
*/
@media only screen and (max-width:800px) {
   .jrt table, .jrt tbody, .jrt thead, .jrt tr, .jrt th{
      display: block;
      text-align: left
   }

      .jrt thead tr {
         position: absolute;
         top: -9999px;
         left: -9999px
      }

   .jrt tr {
      border: 1px solid #ccc
   }

   .jrt td {
    
      display: flex;
      border: none;
      border-bottom: 1px solid #eee;
      font-weight: 400
   }

      .jrt td:before {
        
         display: flex;
         width: 100%;
         max-width: 45%;
         padding-right: 6px;
         font-weight: 700
      }

    #ctl00_ContentPlaceHolder1_ctl01 > div >.jrt th {
      display: table-cell !important;
   }

   #ctl00_ContentPlaceHolder1_ctl01 > div > .jrt tr {
      display: table-row !important;
   }
   #ctl00_ContentPlaceHolder1_ctl01 > div > .jrt td:before {
      display: table-cell !important;
   }
   #ctl00_ContentPlaceHolder1_ctl01 > div > .jrt td {
      display: table-cell !important;
   }
}

.jrt tr {
   border-radius: 10px;
   margin: 15px 5px 15px 5px;
}
