﻿/* https://codepen.io/lukepeters/pen/bfFur
----------------------------------------------------------*/

body {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.button {
    border-radius: .25rem;
    border-style: none;
    border: 1px solid transparent;
    box-sizing: inherit;
    color: #fff;
    display: inline-block;
    line-height: 1.25;
    overflow: visible;
    padding: .25rem .5rem;
    text-align: center;
    touch-action: manipulation;
    transition: all .15s ease-in-out;
    vertical-align: middle;
    white-space: nowrap;
}

.button.green {
    background-color: #28a745;
    border-color: #28a745;
}

.button.green:hover {
    background: #217c36;
}

.button.blue {
    background-color: #007bff;
    border-color: #007bff;
}

.button.blue:hover {
    background: #006699;
}

.button.grey {
    background-color: #888888;
    border-color: #666666;
}

.button.grey:hover {
    background: #444444;
}

.button.red {
    background-color: #e93700;
    border-color: #f13900;
}

.button.red:hover {
    background: #c92f00;
}

.wrapper {
  margin: 0 auto;
  padding: 40px;
  max-width: 800px;
}

.table {
  margin: 0 0 20px 0;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  display: table;
}

.table.left {
  border-radius: 5px;
  margin-top: 5px;
  margin-left: 6px;
  margin-right: auto;
  margin-bottom: 10px;
  float:left;
  padding: 0px;
  width: 600px;
}

.table.right {
  border-radius: 5px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: 45px;
  margin-bottom: 10px;
  padding: 0px;
  float:right;
  width: 475px;
}

.table.center {
  border-radius: 5px;
  margin-top: 0px;
  margin-left: 6px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding: 0px;
  float:none;
  width: 1105px;
}

.table.red {
  border: 3px solid #df5a5f;
}
.table.green {
  border: 3px solid #4f9f2e;
}
.table.blue {
  border: 3px solid #698ac0;
}
.table.orange {
  border: 3px solid #f19239;
}
.table.yellow {
  border: 3px solid #009999;
}
.table.grey {
  border: 3px solid #888888;
}

.row {
  display: table-row;
  background: rgba(0, 0, 0, 0.01);
  /* #f6f6f6; */
}
    /*.row:nth-of-type(odd) {
  background: #e9e9e9;
}*/
.row.header {
  font-weight: 700;
  font-size:1.2em;
  color: #ffffff;
  height: 30px;
  vertical-align:top;
}
.row.red {
  background: #df5a5f;
    /*ea6153*/
}
.row.green {
  background: #4f9f2e;    
    /*27ae60*/
}
.row.blue {
  background: #698ac0;
    /*2980b9*/
}
.row.orange {
  background: #f19239;
}
.row.yellow {
  background: #009999;
}
.row.grey {
  background: #888888;
}
.row.white {
  background: #FFFFFF;
}

.cell {
  padding: 4px 12px;
  display: table-cell;
}

.cell-title {
  font-weight: 500;
  font-size:1.2em;
  padding:1px 0 1px 5px;
  color: #303030;
}
.cell-label {
  font-weight: 600;
  font-size:1.2em;
  padding:1px 0 1px 0px;
  color: #0020b6
}
.cell-text {
  font-weight: 400;
  font-size:1.2em;
  line-height:1.5em;
  padding-top:6px;
  padding-bottom:6px;
  color: #303030;
}

tr.spaceUnder>td {
  padding-bottom: 1em;
}

.pagebreak { 
    page-break-before: always; /* use with "<div class="pagebreak"> </div>" - page-break-after works, as well */
}
