body {
    margin: 12px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #444444;
    font-size: 16pt;
    background-color: #ffffff;
}


div.wrapper {
    width: 100%;
    height: 100%;
}

div.header {
    width: 100%;
    height: 100px;
}

div.logoff {
    position: absolute;
    right: 12px;
    top: 12px;
}

div.body {
    width: 100%;
    min-height: 300px;
}

div.footer {
    width: 100%;
    height: 100px;
}




.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0;
    justify-content: left;
    align-items: left;
  }
  
  .table-container {
    display: flex;
    flex-flow: column nowrap;
    background-color: white;
    width: 80%;
    margin: 0 auto;
    border-radius: 4px;
    border: 1px solid #DADADA;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, .08);
  }
  
  .table-row {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    border-bottom: 1px solid #dadada;
  }
  
  .heading {
    background-color: #ececec;
    color: #3e3e3e;
    font-weight: bold;
  }
  
  .row-item {
    display: flex;
    flex: 3;
    padding: 8px 8px;
    justify-content: left;
    align-items: left;
    transition: all 0.15s ease-in-out;
  }

  .row-item img {
    width: 20px;
  }
  
  .row-item.link:hover {
    cursor: pointer;
    background-color: #F0F0F0;
  /*   box-shadow: 0px 1px 4px rgba(0, 0, 0, .08); */
  }
  .row-item.small{
    flex: 1;
  }
  .row-sub-container {
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
  }
  
  .row-sub-container .row-item {
    padding: 8px 0;
    border-bottom: 1px solid #dadada;
  }
  
  .table-row:last-child,
  .row-sub-container .row-item:last-child {
    border-bottom: 0;
  }