/* --------------------------------------------------------------------------------------------------------
 * specifically nobscoaching
 */
.gridtable { width: 100%; }
.gridtable tr {
  display: block;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width:480px) { /* portrait smartphones */
  .gridtable tr {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (min-width:480px) and (max-width:720px) { /* landscape smartphones and tablets*/
  .gridtable tr {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 0px;
    margin-bottom: 0px;
  }
}
/* 
* 
*/ 
