/* == Table == */
.case.table {
  width: 100%;
  background: #FFFFFF;
  margin: 0em;
  border: 1px solid #dddddd;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0px;
  color: #3D4051;
}
.case.table:first-child {
  margin-top: 0em;
}
.case.table:last-child {
  margin-bottom: 0em;
}
.case.table th,
.case.table td {
  transition: background 0.1s ease, color 0.1s ease;
}
.case.table thead {
  box-shadow: none;
}
.case.table thead th {
  cursor: auto;
  background: #F9FAFB;
  text-align: inherit;
  color: rgba(0, 0, 0, 0.87);
  padding: 1em 0.750em;
  vertical-align: inherit;
  font-size: .875rem;
  font-weight: 600;
  text-transform: none;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  border-left: none;
}
.case.table thead tr > th:first-child {
  border-left: none;
}
.case.table thead tr:first-child > th:first-child {
  border-radius: 0.188rem 0em 0em 0em;
}
.case.table thead tr:first-child > th:last-child {
  border-radius: 0em 0.188rem 0em 0em;
}
.case.table thead tr:first-child > th:only-child {
  border-radius: 0.188rem 0.188rem 0em 0em;
}
.case.table tfoot {
  box-shadow: none;
}
.case.table tfoot th {
  cursor: auto;
  border-top: 1px solid #dddddd;
  background: #F9FAFB;
  text-align: inherit;
  color: rgba(0, 0, 0, 0.87);
  padding: 0.750em 0.750em;
  vertical-align: middle;
  font-style: normal;
  font-size: .813rem;
  font-weight: 600;
  text-transform: none;
}
.case.table tfoot tr > th:first-child {
  border-left: none;
}
.case.table tfoot tr:first-child > th:first-child {
  border-radius: 0em 0em 0em 0.188rem;
}
.case.table tfoot tr:first-child > th:last-child {
  border-radius: 0em 0em 0.188rem 0em;
}
.case.table tfoot tr:first-child > th:only-child {
  border-radius: 0em 0em 0.188rem 0.188rem;
}
.case.table tr td {
  border-top: 3px solid rgba(0,0,0,0.05);
}
.case.table tr:first-child td {
  border-top: none;
}
.case.table td {
  padding: 0.750em 0.750em;
  text-align: inherit;
  font-weight: 300;
}
.case.table > .icon {
  vertical-align: baseline;
}
.case.table > .icon:only-child {
  margin: 0em;
}
.case.table.segment {
  padding: 0em;
}
.case.table.segment:after {
  display: none;
}
.case.table.segment.stacked:after {
  display: block;
}
/* == Image == */
.case.table th .image,
.case.table th .image img,
.case.table td .image,
.case.table td .image img {
  max-width: none;
}
/* == Types == */
.case.basic.table.dashed tr td {
  border-top: 2px dashed rgba(34, 36, 38, 0.1);
}
.case.basic.table.dashed {
  border-bottom: 2px dashed rgba(34, 36, 38, 0.1);
  border-radius: 0
}
.case.structured.table {
  border-collapse: collapse;
}
.case.structured.table thead th {
  border-left: none;
  border-right: none;
}
.case.structured.sorting.table thead th {
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.case.structured.basic.table th {
  border-left: none;
  border-right: none;
}
.case.structured.celled.table tr th,
.case.structured.celled.table tr td {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
  border-right: 1px solid rgba(34, 36, 38, 0.1);
}
/* == Definition == */
.case.definition.table {
  border: 0
}
.case.definition.table thead th {
  background: #fff;
}
.case.definition.table thead:not(.full-width) th:first-child {
  pointer-events: none;
  background: transparent;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.4);
}
.case.definition.table tfoot:not(.full-width) th:first-child {
  pointer-events: none;
  background: transparent;
  font-weight: rgba(0, 0, 0, 0.4);
  color: normal;
  box-shadow: 1px 1px 0px 1px #FFFFFF;
}
.case.celled.definition.table thead:not(.full-width) th:first-child {
  box-shadow: 0px -1px 0px 1px #FFFFFF;
}
.case.celled.definition.table tfoot:not(.full-width) th:first-child {
  box-shadow: 0px 1px 0px 1px #FFFFFF;
}
.case.definition.table tr td:first-child {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.95);
  font-size: 0.688rem;

  text-align: center;
}
.case.definition.table thead:not(.full-width) th:nth-child(2) {
  border-left: 1px solid #dddddd;
}
.case.definition.table tfoot:not(.full-width) th:nth-child(2) {
  border-left: 1px solid #dddddd;
}
.case.definition.table td:nth-child(2) {
  border-left: 1px solid #dddddd;
}
/* == Collapsing == */
.case.table th.collapsing,
.case.table td.collapsing {
  width: 1px;
  white-space: nowrap;
}
/* == Fixed == */
.case.fixed.table {
  table-layout: fixed;
}
.case.fixed.table th,
.case.fixed.table td {
  overflow: hidden;
  text-overflow: ellipsis;
}
/* == Striped == */
.case.striped.table > tr:nth-child(2n),
.case.striped.table tbody tr:nth-child(2n) {
  background-color: #F5F5F5;
}
.case.rounded.table {
  border-radius: 0.188rem;
}
/* == Grid Based == */
.case.one.column.table td {
  width: 100%;
}
.case.two.column.table td {
  width: 50%;
}
.case.three.column.table td {
  width: 33.33333333%;
}
.case.four.column.table td {
  width: 25%;
}
.case.five.column.table td {
  width: 20%;
}
.case.six.column.table td {
  width: 16.66666667%;
}
.case.seven.column.table td {
  width: 14.28571429%;
}
.case.eight.column.table td {
  width: 12.5%;
}
.case.nine.column.table td {
  width: 11.11111111%;
}
.case.ten.column.table td {
  width: 10%;
}
.case.eleven.column.table td {
  width: 9.09090909%;
}
.case.twelve.column.table td {
  width: 8.33333333%;
}
.case.thirteen.column.table td {
  width: 7.69230769%;
}
.case.fourteen.column.table td {
  width: 7.14285714%;
}
.case.fifteen.column.table td {
  width: 6.66666667%;
}
.case.sixteen.column.table td {
  width: 6.25%;
}
/* Column Width */
.case.table th.one.wide,
.case.table td.one.wide {
  width: 6.25%;
}
.case.table th.two.wide,
.case.table td.two.wide {
  width: 12.5%;
}
.case.table th.three.wide,
.case.table td.three.wide {
  width: 18.75%;
}
.case.table th.four.wide,
.case.table td.four.wide {
  width: 25%;
}
.case.table th.five.wide,
.case.table td.five.wide {
  width: 31.25%;
}
.case.table th.six.wide,
.case.table td.six.wide {
  width: 37.5%;
}
.case.table th.seven.wide,
.case.table td.seven.wide {
  width: 43.75%;
}
.case.table th.eight.wide,
.case.table td.eight.wide {
  width: 50%;
}
.case.table th.nine.wide,
.case.table td.nine.wide {
  width: 56.25%;
}
.case.table th.ten.wide,
.case.table td.ten.wide {
  width: 62.5%;
}
.case.table th.eleven.wide,
.case.table td.eleven.wide {
  width: 68.75%;
}
.case.table th.twelve.wide,
.case.table td.twelve.wide {
  width: 75%;
}
.case.table th.thirteen.wide,
.case.table td.thirteen.wide {
  width: 81.25%;
}
.case.table th.fourteen.wide,
.case.table td.fourteen.wide {
  width: 87.5%;
}
.case.table th.fifteen.wide,
.case.table td.fifteen.wide {
  width: 93.75%;
}
.case.table th.sixteen.wide,
.case.table td.sixteen.wide {
  width: 100%;
}
/* == Text Alignment == */
.case.table[class*="left aligned"],
.case.table [class*="left aligned"] {
  text-align: left;
}
.case.table[class*="center aligned"],
.case.table [class*="center aligned"] {
  text-align: center;
}
.case.table[class*="right aligned"],
.case.table [class*="right aligned"] {
  text-align: right;
}
.case.table[class*="top aligned"],
.case.table [class*="top aligned"] {
  vertical-align: top;
}
.case.table[class*="middle aligned"],
.case.table [class*="middle aligned"] {
  vertical-align: middle;
}
.case.table[class*="bottom aligned"],
.case.table [class*="bottom aligned"] {
  vertical-align: bottom;
}
/* == Sortable == */
.case.sorting.table thead th {
  cursor: pointer;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.87);
}
.case.sorting.table thead th:first-child {
  border-left: none;
}
.case.sorting.table thead th.sorted,
.case.sorting.table thead th.sorted:hover {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.case.sorting.table thead th:not(.disabled):after {
  display: inline-block;
  width: 1em;
  opacity: 0.2;
  margin: 0 0 0 .5em;
  font-family: "CaseIcons";
  content: '\e915';
  font-style: normal;
  font-weight: 400;
  font-size: .750rem;
  text-decoration: inherit;
}
.case.sorting.table thead th.asc:after {
  content: '\e145';
}
.case.sorting.table thead th.desc:after {
  content: '\e142';
}
.case.sorting.table th.disabled:after {
  content: '';
}
.case.sorting.table th.disabled:hover {
  cursor: auto;
  color: rgba(0, 0, 0, 0.95);
}
.case.sorting.table thead th:hover {
  color: #33BFC1;
}
.case.sorting.table thead th.sorted {
  background-color: #F5F5F5;
  color: rgba(0, 0, 0, 0.95);
}
.case.sorting.table thead th.sorted:after {
  display: inline-block;
}
.case.sorting.table thead th.sorted:hover {
  background-color: #F5F5F5;
  color: rgba(0, 0, 0, 0.95);
}
.case.table i.icon.handle {
  cursor: pointer;
}
.case.table tr.sorting-row {
  background-color: #F7F7F7;
}
.case.collapsing.table {
  width: auto;
}
/* == Basic == */
.case.basic.table {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.case.basic.table thead,
.case.basic.table tfoot {
  box-shadow: none;
}
.case.basic.table th {
  background: transparent;
  border-left: none;
  text-transform: uppercase;
  font-size: 0.813rem;
}
.case.basic.table tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.case.basic.table thead tr:first-child > th:last-child,
.case.table thead tr:first-child > th:first-child {
  border-radius: 0;
}
.case.basic.striped.table tbody tr:nth-child(2n) {
  background-color: #F9F9F9;
}
/* Very Basic */
.case[class*="very basic"].table {
  border: none;
}
.case[class*="very basic"].table:not(.sorting):not(.striped) th,
.case[class*="very basic"].table:not(.sorting):not(.striped) td {
  padding: '';
}
.case[class*="very basic"].table:not(.sorting):not(.striped) th:first-child,
.case[class*="very basic"].table:not(.sorting):not(.striped) td:first-child {
  padding-left: 0em;
}
.case[class*="very basic"].table:not(.sorting):not(.striped) th:last-child,
.case[class*="very basic"].table:not(.sorting):not(.striped) td:last-child {
  padding-right: 0em;
}
.case[class*="very basic"].table:not(.sorting):not(.striped) thead tr:first-child th {
  padding-top: 0em;
}
.case.very.basic.table tr td {
  border-top: 0 solid rgba(34, 36, 38, 0.1);
}
/* == Celled == */
.case.celled.table tr th,
.case.celled.table tr td {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
}
.case.celled.table tr th:first-child,
.case.celled.table tr td:first-child {
  border-left: none;
}
/* == Padded == */
.case.padded.table th {
  padding-left: 1em;
  padding-right: 1em;
}
.case.padded.table th,
.case.padded.table td {
  padding: 1em 1em;
}
.case[class*="very padded"].table th {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.case[class*="very padded"].table td {
  padding: 1.5em 1.5em;
}
/* == Compact == */
.case.compact.table th {
  padding-left: 0.7em;
  padding-right: 0.7em;
}
.case.compact.table td {
  padding: 0.5em 0.7em;
}
.case[class*="very compact"].table th {
  padding-left: 0.6em;
  padding-right: 0.6em;
}
.case[class*="very compact"].table td {
  padding: 0.4em 0.6em;
}
.case.compact.fitted.table td {
  padding: 0.2em 0.4em;
}
/* == Text Alignment == */
.case.table[class*="left aligned"],
.case.table [class*="left aligned"] {
  text-align: left;
}
.case.table[class*="center aligned"],
.case.table [class*="center aligned"] {
  text-align: center;
}
.case.table[class*="right aligned"],
.case.table [class*="right aligned"] {
  text-align: right;
}
.case.table[class*="top aligned"],
.case.table [class*="top aligned"] {
  vertical-align: top;
}
.case.table[class*="middle aligned"],
.case.table [class*="middle aligned"] {
  vertical-align: middle;
}
.case.table[class*="bottom aligned"],
.case.table [class*="bottom aligned"] {
  vertical-align: bottom;
}
/* == Sizes == */
.case.small.table {
  font-size: 0.9em;
}
.case.table {
  font-size: 1em;
}
.case.large.table {
  font-size: 1.1em;
}
/* == Responsive == */
table.bt thead {
  display: none;
}
table.bt tbody td {
  border: none;
  display: block;
  vertical-align: middle;
  text-align: left;
}
table.bt tbody td:before {
  content: attr(data-th) ": ";
  font-weight: 600;
  font-size: .875em;
  width: 8em;
  display: inline-block;
  color: rgba(34, 36, 38, 1)
}
table.bt tbody td.bt-hide {
  display: none;
}
table.bt tbody td .bt-content {
  vertical-align: middle;
  display: inline-block;
}
.bt-wrapper.active {
  max-height: 610px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width:769px) {
.case.table tr td {
  border-top: 1px solid rgba(34, 36, 38, 0);
}
.case.basic.table tbody tr {
  box-shadow: 0 2px 0 0 #B4C1C7;
}
.case.table th.collapsing,
.case.table td.collapsing {
  width: auto;
  white-space: normal;
}
.case.table[class*="center aligned"],
.case.table [class*="center aligned"],
.case.table[class*="tight aligned"],
.case.table [class*="tight aligned"] {
  text-align: left;
}
}
