/**
 * @file
 * Visual styles for Enterprise+'s tables.
 */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 25px 0 40px;
  border-left: 1px solid #c6c6c6;
  border-top: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
}
table tr th {
  border-style: solid;
  border-width: 0 1px 1px 0 !important;
  border-color: #eaeaea;
  font-weight: 500;
  /* text-transform: uppercase; */
  border-right: 1px solid #69839e;
  background: #06407a;
  color: #fff !important;
  font-size: 18px;
  text-transform: none;
  text-align: left;
  padding: 12px;
}
/* table tr:first-child th {
  border-width: 1px 0 1px 0;
} */
table thead + tbody tr:first-child th:first-child {
  border-top-width: 0;
}
table tr th:last-child {
  border-right-width: 1px;
}
table tr td {
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #c6c6c6;;
  background-color: #ffffff;
  color: #707070;
  padding: 12px;
  vertical-align: top;

}
table tr:nth-child(even) td{  
  background-color: #efefef;  
}

table thead tr td {
  background: #06407a !important;
  border-radius: 0px !important;
  color: #ffffff !important;
}

table tbody tr td
{
  color: #000000 !important;
}

table td:last-child, 
table th:last-child {
  border-right: none;
}

table tr:first-child td {
  border-top-width: 1px;
}
table thead + tbody tr:first-child td {
  border-top-width: 0px;
}

table tr th:first-child,
table tr td:first-child {
  border-left-width: 1px;
}

/* top-left border-radius */
table tr:first-child th:first-child {
  border-top-left-radius: 0px;
}
table thead + tbody tr:first-child th:first-child {
  border-top-left-radius: 0;
}

/* top-right border-radius */
table tr:first-child th:last-child,
table tr:first-child td:last-child {
  border-top-right-radius: 0px;
}
table thead + tbody tr:first-child td:last-child {
  border-top-right-radius: 0;
}

/* bottom-left border-radius */
/* table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
table tr ~ tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
} */

/* bottom-right border-radius
table tr:last-child td:last-child {
  border-bottom-right-radius: 0px;
} */

/*Tables @gray regions*/
.region--gray-background table tr th {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}
table tr th,
table tr th span,table tr th div, table tr th strong,
table tr th h1, table tr th h2, table tr th h3 ,table tr th h4
 { color : #ffffff; }