table.resize-mobile {
  border:initial;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table.resize-mobile caption {
  /* font-size: 1.5em; */
  margin: .5em 0 .75em;
}

table.resize-mobile tr {
  background: inherit;
  border: 1px solid #ddd;
  padding: .35em;
}

table.resize-mobile tr:nth-child(odd) {
    background: #fff;
  }

table.resize-mobile th,
table.resize-mobile td {
  padding: .625em;
}

table.resize-mobile th {
  /* font-size: .85em; */
  /* letter-spacing: .1em; */
  /* text-transform: uppercase; */
}

.height-150-desktop{
  height: 150px
}


@media screen and (max-width: 600px) {
  table.resize-mobile {
    border: 0;
  }

  table.resize-mobile caption {
    /* font-size: 1.3em; */
  }
  
  table.resize-mobile thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table.resize-mobile tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
    background:#fff;
  }
  
  table.resize-mobile td {
    border-bottom: 1px solid #ddd;
    display: block;
    /* font-size: .8em; */
    /* text-align: right; */
  }
  
  table.resize-mobile td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    color: rgba(0,53,99,1)
  }
  
  table.resize-mobile td:last-child {
    border-bottom: 0;
  }

  .height-150-desktop{
    height: auto
  }
}