
.grid { height: 100%; }

.row {
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
  width: 100%;
}

.cell {
  display: table-cell;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@supports (display: flex) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cell {
    display: block;
  }

  .cell-valign-middle,
  .cell-valign-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cell-min {
  width: 1%;
  -webkit-box-flex: 0;
      -ms-flex: none auto;
          flex: none auto;
}

.cell-max {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}

body, html {
  height: 100%;
}

body {
  /*background: url(http://desktop.freewallpaper4.me/view/original/6507/gold-bokeh.jpg);
  background-size: cover;*/
  color: black;
  font-family: verdana;
  padding-top: 10px;
}

.row {
  border-collapse: seperate;
  border-spacing: 4px 0;
  padding: 2px;
}

.cell {
  border-radius: 6px;
  background: white; /*rgba(136, 136, 136, 0.85);*/
  margin-right: 8px;
  padding: 6px;
}

.cell.colorO {
  border-radius: 6px;
  background: orange;
  margin-right: 8px;
  padding: 6px;
}
.cell.colorP {
  border-radius: 6px;
  background: purple;
  margin-right: 8px;
  padding: 6px;
  color: white;
}
.cell.cell-1-5 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 18%;
}
.cell.cell-nowrap {
  overflow: hidden;
  white-space: nowrap;
}
.cell.cell-valign-middle {
  vertical-align: middle;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cell.cell-valign-bottom {
  vertical-align: bottom;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.cell.cell-align-center {
  text-align: center;
}
.cell.cell-align-right {
  text-align: right;
}
.cell.cell-align-left {
  text-align: left;
}
.cell.cell-100px {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100px;
  max-width: 100px;
}

.cell.cell-100 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.fluid-banner {
    height: 100%;
    height: -webkit-calc(100vh - 200px);
    height: calc(100vh - 200px);
}
