.albaimage {
  width: 100%;
  height: auto;
}


body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  background: #f7f7f7;
}

div.header-container {
  width: 100%;
  display: block;
  background: #f5f7f9;
}

div.header-container .title {
  width: 1230px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0 5px 0;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

div.header-container .demos {
  width: 1230px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 45px 0;
}

div.header-container .demos a {
  display: inline-block;
  text-decoration: none;
  color: #045131;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #dde5f0;
  padding: 10px 8px 12px 8px;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 10px;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

div.header-container .demos a:last-of-type {
  margin-right: 0;
}

div.header-container .demos a:hover,
div.header-container .demos a.active {
  background: #3d4451;
  border-color: #3d4451;
  color: #fff;
}

div.page-container {
  width: 1230px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

div.page-container h1 {
  margin: 50px 0 25px 0;
  font-size: 28px;
  font-weight: 400;
  color: #000;
  line-height: 42px;
}

/*
________________________________________________________________________
RESPONSIVE
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

@media only screen and (max-width: 1249px) {
  div.header-container .title,
  div.header-container .demos,
  div.page-container {
    width: 990px;
  }
}

@media only screen and (max-width: 1009px) {
  div.header-container .title,
  div.header-container .demos,
  div.page-container {
    width: 750px;
  }
}

@media only screen and (max-width: 769px) {
  div.header-container .title,
  div.header-container .demos,
  div.page-container {
    width: 460px;
  }

  div.header-container .title {
    font-size: 28px;
  }

  div.page-container h1 {
    font-size: 20px;
    line-height: 1.4;
  }

  div.header-container .demos a {
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 7px 5px 8px 5px;
    margin-right: 5px;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 479px) {
  div.header-container .title,
  div.header-container .demos,
  div.page-container {
    width: 300px;
  }
}
[role="table"] img {
}

[role="table"] ul,
[role="table"] ol,
[role="table"] li {
}

[role="table"] ul {
}
[role="table"],
[role="row-group"],
[role="row"],
[role="subheader"] {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -webkit-flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1 !important;
}

[role="table"] [role="column-header"],
[role="table"] [role="cell"] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  /* Minimum single cell width (cell padding and border deducted) */
  /* 5% means that (up to) 20 columns are displayed side by side (100% / 20 = 5%) */
  flex: 1 1 calc(5% - 20px - 2px);
  -webkit-flex: calc(5% - 20px - 2px);

  padding: 20px 10px;
  line-height: 21px;
  color: black;
}

[role="table"] [role="row-group"] + [role="row-group"] > [role="row"] {
  border-right: 1px solid #dde5f0;
}

[role="table"] > [role="row-group"]:last-child {
  border-bottom: 1px solid #dde5f0;
}

[role="table"] label {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: arial, sans-serif;
  min-width: 20px;
  background: #dde5f0;
  color: #045131;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-transition-property: background, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;

  -moz-transition-property: background, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;

  -o-transition-property: background, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;

  -ms-transition-property: background, color;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: ease;

  transition-property: background, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

[role="table"] label:hover {
  background: #045131;
  color: #fff;
}

/* Table Description */
[role="table"] div.table-desc {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  min-height: 30px;
  margin-bottom: 20px;
  color: #045131;
}

[role="table"] div.table-desc > span {
  display: inline-block;
  width: 60%;
  line-height: 1.5;
  font-size: 16px;
}

[role="table"] div.table-desc > span a {
  color: #045131;
  text-decoration: none;
  display: inline-block;
}

[role="table"] div.table-desc > span a:hover {
  text-decoration: underline;
}

/* Table Header */
[role="table"] div.table-desc + [role="row-group"] {
  background: #045131;
  border-radius: 4px 4px 0 0;
  padding-right: 1px;
}

[role="table"] [role="row"] [role="column-header"] {
  color: #fff;
  padding-left: 11px;
}

[role="table"] [role="column-header"].narrow {
  flex-grow: 0.5;
  -webkit-flex-grow: 0.5;
}

[role="table"] [role="column-header"].narrower {
  flex-grow: 0;
  -webkit-flex-grow: 0;
}

[role="table"] [role="column-header"].wide {
  flex-grow: 2;
  -webkit-flex-grow: 2;
}

[role="table"] [role="column-header"].wider {
  flex-grow: 10;
  -webkit-flex-grow: 10;
}

/* Table Subeader */
[role="table"] [role="subheader"] {
  background: #dde5f0;
  padding-left: 1px;
}

[role="table"] [role="subheader"] [role="cell"] {
  padding: 8px 10px 8px 10px;
  font-size: 11px;
  color: #045131;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  border-right: 0;
}

/* Table Row */
[role="table"] [role="row"] {
  align-items: stretch;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]:nth-child(odd)
  [role="cell"] {
  background: #fff;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]:nth-child(even)
  [role="cell"] {
  background: #f5f7f9;
}

/* Table Cell */
[role="table"] [role="row"] [role="cell"] {
  border-left: 1px solid #dde5f0;

  -webkit-transition-property: background, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;

  -moz-transition-property: background, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;

  -o-transition-property: background, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;

  -ms-transition-property: background, color;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: ease;

  transition-property: background, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* Table Cell Images */
[role="table"] [role="row"] [role="cell"] img {
  height: 24px;
  margin: -4px 10px -6px 0px;
}

/* Table Cell Width Modifiers */
[role="table"] [role="cell"].narrow {
  flex-grow: 0.5;
  -webkit-flex-grow: 0.5;
}

[role="table"] [role="cell"].narrower {
  flex-grow: 0;
  -webkit-flex-grow: 0;
}

[role="table"] [role="cell"].wide {
  flex-grow: 2;
  -webkit-flex-grow: 2;
}

[role="table"] [role="cell"].wider {
  flex-grow: 10;
  -webkit-flex-grow: 10;
}

/* Links */
[role="table"] [role="column-header"] a,
[role="table"] [role="cell"] a {
  color: #045131;
  text-decoration: none;
}

[role="table"] [role="column-header"] a:hover,
[role="table"] [role="cell"] a:hover {
  text-decoration: underline;
}

/*
________________________________________________________________________
CHECK/ CROSS ICONS
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [role="cell"] .check::before,
[role="table"] [role="cell"] .cross::before {
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  margin: -10px 10px -10px 0;
  background: #dde5f0;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: #045131;
  float: initial;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[role="table"] [role="cell"] .check::before {
  content: "âœ“";
}

[role="table"] [role="cell"] .cross::before {
  content: "âœ•";
}

/*
________________________________________________________________________
STATUS LABEL
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [role="cell"].status {
  display: flex;
  align-items: center;
  position: relative;
}

[role="table"] [role="cell"] [status-label] {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  line-height: 15px;
  padding: 5px 8px;
  margin: -5px 0;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 20px);
  display: inline-block;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* New */
[role="table"] [role="cell"] [status-label="id-1"] {
  background: #dde5f0;
  color: #045131;
}

/* Confirmed */
[role="table"] [role="cell"] [status-label="id-2"] {
  background: #f4bc16;
}

/* In Progress */
[role="table"] [role="cell"] [status-label="id-3"] {
  background: #f4bc16;
}

/* Completed */
[role="table"] [role="cell"] [status-label="id-4"] {
  background: #3fb16c;
}

/* Cancelled */
[role="table"] [role="cell"] [status-label="id-5"] {
  background: #f14343;
}

/*
________________________________________________________________________
STATUS BAR
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [role="cell"] [status-bar] {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 15px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: -6px;
}

[role="table"] [role="cell"] [status-bar]::before {
  content: "";
  width: calc(100% - 20px);
  height: 5px;
  border-radius: 999px;
  display: block;
  position: absolute;
  margin-top: -6px;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* New */
[role="table"] [role="cell"] [status-bar="id-1"]::before {
  width: 20%;
  background: #dde5f0;
  color: #045131;
}

/* Confirmed */
[role="table"] [role="cell"] [status-bar="id-2"]::before {
  width: 20%;
  background: #f4bc16;
}

/* In Progress */
[role="table"] [role="cell"] [status-bar="id-3"]::before {
  width: 50%;
  background: #f4bc16;
}

/* Completed */
[role="table"] [role="cell"] [status-bar="id-4"]::before {
  background: #3fb16c;
}

/* Cancelled */
[role="table"] [role="cell"] [status-bar="id-5"]::before {
  background: #f14343;
}

/*
________________________________________________________________________
BUTTONS
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [role="cell"].button {
  display: flex;
  align-items: center;
  position: relative;
}

[role="table"] [role="cell"] a.button {
  text-decoration: none;
  display: block;
  float: left;
  cursor: pointer;
  text-align: center;
  background: #dde5f0;
  color: #045131;
  padding: 9px 15px 9px 15px;
  margin: -9px 10px -9px 0;
  border-radius: 4px;
  line-height: 21px;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-transition-property: background, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;

  -moz-transition-property: background, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;

  -o-transition-property: background, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;

  -ms-transition-property: background, color;
  -ms-transition-duration: 0.2s;
  -ms-transition-timing-function: ease;

  transition-property: background, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

[role="table"] [role="cell"] a.button:last-child {
  margin-right: 0;
}

[role="table"] [role="cell"] a.button:hover {
  background: #045131;
  color: #fff;
}

[role="table"] [role="row"] div.expandable a.button {
  margin-top: 20px;
  margin-bottom: 5px;
}

/*
________________________________________________________________________
TOOLTIPS
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [tooltip] {
  z-index: 100;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: #aaa;
  -moz-text-decoration-color: #aaa;
}

[role="table"] [role="column-header"] [tooltip] {
  text-decoration-color: #fff;
  -moz-text-decoration-color: #fff;
}

[role="table"] [tooltip]::before {
  content: attr(tooltip);
  position: absolute;
  z-index: 100;

  -ms-transform: translate(0px, -130%);
  -webkit-transform: translate(0px, -130%);
  transform: translate(0px, -130%);

  white-space: initial;
  background: #3d4451;
  text-align: center;
  color: #fff;
  padding: 5px 8px 7px 8px;
  border-radius: 4px;
  pointer-events: none;
  max-width: 120px;
  text-align: left;
  opacity: 0;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[role="table"] [tooltip]:hover::after,
[role="table"] [tooltip]:hover::before {
  opacity: 1;
  -ms-transform: translate(0px, -110%);
  -webkit-transform: translate(0px, -110%);
  transform: translate(0px, -110%);
}

/*
________________________________________________________________________
LEAGUE TEAM FORM
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [role="cell"] [status-form] {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 999px;
  margin: 0px 4px 0px 0px;
}

/* Win */
[role="table"] [role="cell"] [status-form="id-1"] {
  background: #3fb16c;
}

/* Draw */
[role="table"] [role="cell"] [status-form="id-2"] {
  background: #f4bc16;
}

/* Loss */
[role="table"] [role="cell"] [status-form="id-3"] {
  background: #f14343;
}

/*
________________________________________________________________________
EXPANDABLE/ COLLAPSIBLE ROWS
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] [role="row"] input[type="checkbox"],
[role="table"] [role="row"] input[type="radio"] {
  display: none;
}

/* Expandable/ Collapsible Button */
[role="table"] [role="row"] label {
  width: 38px;
  min-width: 38px;
  border-radius: 999px;
  margin: -9px 0;
  padding: 0;
  line-height: 38px;
  height: 38px;
  margin-right: 10px;
}

[role="table"] [role="row"] label::before {
  display: inline-block;
  content: "▼";
  position: relative;
  top: -2px;
  z-index: 1;
}

/* Expandable/ Collapsible Section */
[role="table"] [role="row"] div.expandable {
  flex: 1 1 100%;
  display: none;
  order: 1;
  white-space: normal;
  flex-direction: column;
  flex-wrap: nowrap;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  div.expandable
  [role="cell"] {
  background: #fff;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  div.expandable:not([role="cell"])
  [role="row"]:last-child {
  border-bottom: 1px solid #dde5f0;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]:last-child
  div.expandable:not([role="cell"])
  [role="row"]:last-child {
  border-bottom: 0;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  [role="cell"].expandable {
  background: #fff !important;
  border-bottom: 1px solid #dde5f0;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]:last-child
  [role="cell"].expandable {
  border-bottom: 0;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  [role="cell"].expandable
  [role="row"] {
  border-top: 0;
}

/* Expandable/ Collapsible Section Text */
[role="table"] [role="row"] div.expandable h2,
[role="table"] [role="row"] div.expandable h3,
[role="table"] [role="row"] div.expandable p {
  width: 100%;
  line-height: 150%;
  text-align: left;
}

[role="table"] [role="row"] div.expandable h2 {
  font-size: 24px;
  margin: 0 0 15px 0;
}

[role="table"] [role="row"] div.expandable h3 {
  font-size: 18px;
  margin: 0 0 15px 0;
}

[role="table"] [role="row"] div.expandable p {
  margin: 0;
}

[role="table"] [role="row"] div.expandable p + p {
  margin-top: 15px;
}

[role="table"] [role="row"] div.expandable p + h2,
[role="table"] [role="row"] div.expandable p + h3 {
  margin-top: 20px;
}

/* Expandable/ Collapsible Section Images */
[role="table"] [role="row"] div.expandable img {
  max-width: 100%;
  height: initial;
  margin: initial;
}

/* Expandable/ Collapsible Section Column Layout */
[role="table"] [role="row"] div.expandable [role="row"] div.column-20 {
  width: calc(20% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-20:first-of-type {
  width: 20%;
  margin-left: 0;
}

[role="table"] [role="row"] div.expandable [role="row"] div.column-25 {
  width: calc(25% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-25:first-of-type {
  width: 25%;
  margin-left: 0;
}

[role="table"] [role="row"] div.expandable [role="row"] div.column-33 {
  width: calc(33.3333333% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-33:first-of-type {
  width: 33.3333333%;
  margin-left: 0;
}

[role="table"] [role="row"] div.expandable [role="row"] div.column-50 {
  width: calc(50% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-50:first-of-type {
  width: 50%;
  margin-left: 0;
}

[role="table"] [role="row"] div.expandable [role="row"] div.column-66 {
  width: calc(66.6666666% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-66:first-of-type {
  width: 66.6666666%;
  margin-left: 0;
}

[role="table"] [role="row"] div.expandable [role="row"] div.column-75 {
  width: calc(75% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-75:first-of-type {
  width: 75%;
  margin-left: 0;
}

[role="table"] [role="row"] div.expandable [role="row"] div.column-80 {
  width: calc(80% - 20px);
  margin-left: 20px;
}

[role="table"]
  [role="row"]
  div.expandable
  [role="row"]
  div.column-80:first-of-type {
  width: 80%;
  margin-left: 0;
}

/* Show/ Hide Expandable/ Collapsible Section */
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="checkbox"]:checked
  + div.expandable,
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="radio"]:checked
  + div.expandable {
  display: flex;
}

/* Expanded (Active) Row */
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="checkbox"]:checked
  ~ span,
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="radio"]:checked
  ~ span {
  background: #e9eef4;
  border-color: #e9eef4;
  color: #045131;
}

/* Expanded (Active) Row Content Elements */
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="checkbox"]:checked
  ~ span
  [status-label],
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="checkbox"]:checked
  ~ span
  span.check::before,
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="checkbox"]:checked
  ~ span
  span.cross::before,
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="radio"]:checked
  ~ span
  [status-label],
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="radio"]:checked
  ~ span
  span.check::before,
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="radio"]:checked
  ~ span
  span.cross::before {
  background: #b2c1d5;
  color: #fff;
}

[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="checkbox"]:checked
  ~ span
  [status-bar]::before,
[role="table"]
  [role="row-group"]:last-child
  [role="row"]
  input[type="radio"]:checked
  ~ span
  [status-bar]::before {
  background: #b2c1d5;
}

[role="table"]
  [role="row"]
  input[type="checkbox"]:checked
  ~ span
  > label::before,
[role="table"] [role="row"] input[type="radio"]:checked ~ span > label::before {
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  top: 3px;
  color: #fff;
}

[role="table"] [role="row"] input[type="checkbox"]:checked ~ span > label,
[role="table"] [role="row"] input[type="checkbox"]:checked ~ span > .button,
[role="table"] [role="row"] input[type="radio"]:checked ~ span > label,
[role="table"] [role="row"] input[type="radio"]:checked ~ span > .button {
  background: #045131;
  color: #fff;
}

[role="table"]
  [role="row"]
  input[type="checkbox"]:checked
  ~ span
  > .button:hover,
[role="table"] [role="row"] input[type="radio"]:checked ~ span > .button:hover {
  background: #3d4451;
}

/*
________________________________________________________________________
ACCORDION OPTION
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/
[role="table"]
  [role="row-group"]
  + [role="row-group"].accordion
  > [role="row"]
  > span {
  text-align: left;
  font-weight: 700;
}

[role="table"]
  [role="row-group"]
  + [role="row-group"].accordion
  > [role="row"]
  > span
  label {
  float: right;
  margin-left: auto;
  margin-right: 0;
  font-weight: 400;
}

[role="table"]
  [role="row-group"]
  + [role="row-group"].accordion
  > [role="row"]
  > [role="cell"]::before {
  display: none;
}

/*
________________________________________________________________________
TABLE COLUMN FILTERING
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

[role="table"] input[type="checkbox"] {
  display: none;
}

/* Filter Button */
[role="table"] div.filter-panel label[for="filter-column"] {
  float: right;
  border-radius: 4px;
  margin: 0 0 0 10px;
  padding: 10px 20px 11px 20px;
  line-height: 24px;
  height: 24px;
  background: #045131;
  font-family: "Roboto", arial, sans-serif;
  color: #fff;
}

[role="table"] div.filter-panel label[for="filter-column"]:hover {
  background: #3d4451;
}

[role="table"] div.filter-panel label[for="filter-column"]::after {
  display: inline-block;
  content: "▼";
  margin-left: 30px;
  position: relative;
  top: -2px;
  line-height: 1;
  font-family: arial, sans-serif;
}

/* Filtering Panel */
[role="table"] div.filter-panel {
  display: block;
  position: relative;
  float: right;
}

/* Filtering Panel Label List */
[role="table"] div.filter-panel ul {
  display: none;
  position: absolute;
  top: 55px;
  right: 0;
  z-index: 10;
  min-width: 160px;
  white-space: normal;
  list-style-type: none;
  border: 1px solid #dde5f0;
  border-radius: 4px;
  margin: 0;
  padding: 15px 25px 15px 20px;
  background: #fff;
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.1);
}

/* Filtering Panel Label List Item */
[role="table"] div.filter-panel ul li label {
  width: 100%;
  margin: 0;
  padding: 0;
  white-space: normal;
  text-align: left;
  font-weight: 400;
  font-family: "Roboto", arial, sans-serif;
  background: none;
  line-height: 40px;
  color: #045131;
}

[role="table"] div.filter-panel ul li label:hover {
  color: #666;
}

/* Filter Checkbox */
[role="table"] div.filter-panel ul li label::before {
  display: inline-block;
  content: "✓";
  float: left;
  width: 16px;
  height: 16px;
  border: 2px solid #045131;
  border-radius: 2px;
  margin: 11px 10px 0 0;
  background: #045131;
  background-clip: content-box !important;
  text-align: center;
  font-size: 13px;
  color: #fff;
  line-height: 16px;
  font-family: arial, sans-serif;

  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* Show/ Hide Filtering Panel */
[role="table"]
  input#filter-column[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul {
  display: block;
}

[role="table"]
  input#filter-column[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  label[for="filter-column"] {
  background: #3d4451;
}

[role="table"]
  input#filter-column[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  label[for="filter-column"]::after {
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  top: 3px;
}

/* Show/ Hide Filtering Panel Label List Item */
[role="table"]
  input#col-1[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(1)
  label,
[role="table"]
  input#col-2[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(2)
  label,
[role="table"]
  input#col-3[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(3)
  label,
[role="table"]
  input#col-4[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(4)
  label,
[role="table"]
  input#col-5[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(5)
  label,
[role="table"]
  input#col-6[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(6)
  label,
[role="table"]
  input#col-7[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(7)
  label,
[role="table"]
  input#col-8[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(8)
  label,
[role="table"]
  input#col-9[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(9)
  label,
[role="table"]
  input#col-10[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(10)
  label,
[role="table"]
  input#col-11[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(11)
  label,
[role="table"]
  input#col-12[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(12)
  label,
[role="table"]
  input#col-13[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(13)
  label,
[role="table"]
  input#col-14[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(14)
  label,
[role="table"]
  input#col-15[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(15)
  label,
[role="table"]
  input#col-16[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(16)
  label {
  color: #999;
}

[role="table"]
  input#col-1[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(1)
  label::before,
[role="table"]
  input#col-2[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(2)
  label::before,
[role="table"]
  input#col-3[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(3)
  label::before,
[role="table"]
  input#col-4[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(4)
  label::before,
[role="table"]
  input#col-5[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(5)
  label::before,
[role="table"]
  input#col-6[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(6)
  label::before,
[role="table"]
  input#col-7[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(7)
  label::before,
[role="table"]
  input#col-8[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(8)
  label::before,
[role="table"]
  input#col-9[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(9)
  label::before,
[role="table"]
  input#col-10[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(10)
  label::before,
[role="table"]
  input#col-11[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(11)
  label::before,
[role="table"]
  input#col-12[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(12)
  label::before,
[role="table"]
  input#col-13[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(13)
  label::before,
[role="table"]
  input#col-14[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(14)
  label::before,
[role="table"]
  input#col-15[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(15)
  label::before,
[role="table"]
  input#col-16[type="checkbox"]:checked
  ~ div.table-desc
  > div.filter-panel
  ul
  li:nth-of-type(16)
  label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #dde5f0;
  background: #fff;
}

/* Show/ Hide Table Column */
[role="table"]
  input#col-1[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:not(.accordion):nth-of-type(1),
[role="table"]
  input#col-2[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(2),
[role="table"]
  input#col-3[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(3),
[role="table"]
  input#col-4[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(4),
[role="table"]
  input#col-5[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(5),
[role="table"]
  input#col-6[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(6),
[role="table"]
  input#col-7[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(7),
[role="table"]
  input#col-8[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(8),
[role="table"]
  input#col-9[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(9),
[role="table"]
  input#col-10[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(10),
[role="table"]
  input#col-11[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(11),
[role="table"]
  input#col-12[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(12),
[role="table"]
  input#col-13[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(13),
[role="table"]
  input#col-14[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(14),
[role="table"]
  input#col-15[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(15),
[role="table"]
  input#col-16[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  > span:nth-of-type(16) {
  display: none !important;
}

/*
________________________________________________________________________
TABLE CELL TEXT WRAP
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

/* Table Cell Text Wrap Button */
[role="table"] div.filter-panel label[for="wrap-text"] {
  float: right;
  padding: 10px 20px 11px 20px;
  line-height: 24px;
  height: 24px;
  border-radius: 4px;
  font-family: "Roboto", arial, sans-serif;
}

[role="table"] div.filter-panel label[for="wrap-text"]::after {
  content: "â€¦";
  margin: 0 0 0 10px;
  font-family: arial, sans-serif;
  display: inline-block;
  width: 15px;
}

/* Wrap/ Unwrap Table Cell */
[role="table"]
  input#wrap-text[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  span[role="cell"],
[role="table"]
  input#wrap-text[type="checkbox"]:checked
  ~ [role="row-group"]
  [role="row"]
  span[role="column-header"] {
  display: flex;
  white-space: normal;
  align-items: center;
  z-index: 1;
  word-break: break-word;
}

[role="table"]
  input#wrap-text[type="checkbox"]:checked
  ~ div.table-desc
  div.filter-panel
  label[for="wrap-text"]::after {
  content: "â¤¶";
  color: #fff;
  font-family: arial, sans-serif;
}

[role="table"]
  input#wrap-text[type="checkbox"]:checked
  ~ div.table-desc
  div.filter-panel
  label[for="wrap-text"] {
  background: #045131;
  color: #fff;
}

/*
________________________________________________________________________
RESPONSIVE
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

@media only screen and (max-width: 1009px) {
  [role="table"] [role="column-header"],
  [role="table"] [role="cell"] {
    /* Minimum single cell width (cell padding and border deducted) */
    /* 25% means that (up to) 4 columns are displayed side by side (100% / 4 = 25%) */
    flex: 1 1 calc(25% - 20px - 2px);
    -webkit-flex: calc(25% - 20px - 2px);
  }

  [role="table"] [role="column-header"].narrow,
  [role="table"] [role="column-header"].narrower,
  [role="table"] [role="column-header"].wide,
  [role="table"] [role="column-header"].wider,
  [role="table"] [role="cell"].narrow,
  [role="table"] [role="cell"].narrower,
  [role="table"] [role="cell"].wide,
  [role="table"] [role="cell"].wider {
    flex-grow: 1;
    -webkit-flex-grow: 1;
  }

  [role="table"] [role="cell"] {
    border-bottom: 1px solid #dde5f0;
  }

  [role="table"] [role="subheader"] [role="cell"],
  [role="table"] > [role="row-group"]:last-child {
    border-bottom: 0;
  }

  [role="table"] div.table-desc > span {
    width: 50%;
  }

  [role="table"] [role="row"] div.expandable {
    border-top: 0;
  }

  [role="table"]
    [role="row-group"]:last-child
    [role="row"]:last-child
    [role="cell"].expandable {
    border-bottom: 1px solid #dde5f0;
  }
}

@media only screen and (max-width: 769px) {
  [role="table"] [role="column-header"],
  [role="table"] [role="cell"] {
    /* Minimum single cell width (cell padding and border deducted) */
    /* 100% means that only one column is displayed in a row (100% / 1 = 100%) */
    flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    padding: 8px 10px;
  }

  [role="table"] [role="cell"] {
    border-bottom: 0;
  }

  [role="table"] [role="row"] > [role="cell"]:last-of-type {
    padding-bottom: 15px;
  }

  [role="table"] [role="row"] > [role="cell"]:not(.expandable):first-of-type {
    padding-top: 14px;
  }

  [role="table"] [role="cell"] a.button {
    padding: 6px 12px 7px 12px;
  }

  [role="table"] [role="cell"],
  [role="table"] [role="cell"] span {
    text-align: right;
    justify-content: space-between;
    display: initial;
  }

  [role="table"] [role="row"] label {
    float: right;
    width: 32px;
    min-width: 32px;
    margin: -4px 0px -8px 10px;
    line-height: 32px;
    height: 32px;
  }

  [role="table"]
    [role="row-group"]
    + [role="row-group"].accordion
    [role="row"]
    label {
    margin: -9px 0;
  }

  [role="table"] [role="cell"]::before {
    content: attr(data-header);
    float: left;
    text-align: left;
    font-weight: 700;
    margin-right: 20px;
  }

  [role="table"] [role="cell"] [status-bar]::before {
    right: 10px;
  }

  /* New */
  /* Confirmed */
  [role="table"] [role="cell"] [status-bar="id-1"]::before,
  [role="table"] [role="cell"] [status-bar="id-2"]::before {
    width: 10%;
  }

  /* In Progress */
  [role="table"] [role="cell"] [status-bar="id-3"]::before {
    width: 25%;
  }

  /* Completed */
  /* Cancelled */
  [role="table"] [role="cell"] [status-bar="id-4"]::before,
  [role="table"] [role="cell"] [status-bar="id-5"]::before {
    width: calc(50% - 20px);
  }

  [role="table"] div.table-desc + [role="row-group"] {
    display: none;
  }

  [role="table"] div.table-desc ~ [role="row-group"] {
    border-top: 1px solid #dde5f0;
  }

  [role="table"] [role="subheader"]:first-child {
    border-radius: 4px 4px 0 0;
  }

  [role="table"] div.table-desc {
    flex-direction: column;
  }

  [role="table"] div.table-desc > span {
    width: 100%;
    margin-bottom: 30px;
    font-size: 14px;
  }

  [role="table"] div.filter-panel label[for="wrap-text"] {
    float: left;
  }

  [role="table"]
    [role="row-group"]
    + [role="row-group"]:not(.accordion)
    > [role="row"] {
    border-top: 1px solid #dde5f0;
    border-bottom: 1px solid #dde5f0;
    margin-bottom: 20px;
  }

  [role="table"]
    [role="row-group"]
    + [role="row-group"].accordion
    [role="row"] {
    border-top: 0;
    border-bottom: 1px solid #dde5f0;
    margin-bottom: 0;
  }

  [role="table"]
    [role="row-group"]
    + [role="row-group"]
    > [role="row"]:first-child {
    border-top: 0;
  }

  [role="table"] > [role="row-group"]:last-child,
  [role="table"]
    [role="row-group"]:last-child
    [role="row"]
    div.expandable:not([role="cell"])
    [role="row"]:last-child,
  [role="table"]
    [role="row-group"]:last-child
    [role="row"]
    [role="cell"].expandable {
    border-bottom: 0;
  }

  [role="table"] div.expandable [role="row"] {
    border-top: 1px solid #dde5f0;
  }

  [role="table"]
    [role="row-group"]:last-child
    [role="row"]:last-child
    [role="cell"].expandable {
    border-bottom: 0;
  }

  [role="table"] [role="row"] div.expandable [role="row"] div.column-20,
  [role="table"] [role="row"] div.expandable [role="row"] div.column-25,
  [role="table"] [role="row"] div.expandable [role="row"] div.column-33,
  [role="table"] [role="row"] div.expandable [role="row"] div.column-50,
  [role="table"] [role="row"] div.expandable [role="row"] div.column-66,
  [role="table"] [role="row"] div.expandable [role="row"] div.column-75,
  [role="table"] [role="row"] div.expandable [role="row"] div.column-80,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-20:first-of-type,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-25:first-of-type,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-33:first-of-type,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-50:first-of-type,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-66:first-of-type,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-75:first-of-type,
  [role="table"]
    [role="row"]
    div.expandable
    [role="row"]
    div.column-80:first-of-type {
    width: 100%;
    margin-left: 0;
  }

  [role="table"] [role="row"] div.expandable img {
    min-width: 100%;
    margin-bottom: 15px;
  }
}

/*
________________________________________________________________________
PRINT
Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯Â¯
*/

@media print {
  [role="table"] [role="row-group"]:last-child [role="row"] div.expandable {
    display: flex;
  }

  [role="table"]
    [role="row-group"]:last-child
    [role="row"]:nth-child(even)
    [role="cell"] {
    background: #fff !important;
  }

  [role="table"] [role="row-group"] [role="row"] span[role="cell"],
  [role="table"] [role="row-group"] [role="row"] span[role="column-header"] {
    display: flex;
    white-space: normal;
    align-items: center;
    z-index: 1;
  }

  [role="table"] [role="row"] span > label::before {
    transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    top: 3px;
    color: #fff;
  }

  [role="table"] [role="row"] span > label,
  [role="table"] [role="row"] span > .button {
    background: #045131;
    color: #fff;
  }
}