@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
table {
  width: 100%;
}

.table {
  color: #333333;
  width: 100%;
  /*@media (prefers-color-scheme: dark) {
    @content;
  }*/
}
[data-darkreader-scheme=dark] .table, html[native-dark-active] .table {
  color: #dbdbdb;
}
.table thead {
  background-color: #333333;
  /*@media (prefers-color-scheme: dark) {
    @content;
  }*/
}
[data-darkreader-scheme=dark] .table thead, html[native-dark-active] .table thead {
  background-color: #111111;
}
.table thead th {
  border-bottom: 0;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 1rem;
  font-size: 1.2rem;
}
.table thead th a {
  display: flex;
  align-items: center;
  color: white;
}
.table thead th a:hover {
  text-decoration: none;
}
.table thead th a:hover .content {
  text-decoration: underline;
}
.table thead th .tablesort {
  width: auto;
  height: auto;
  background-image: none;
  display: flex;
}
.table thead th .tablesort--desc, .table thead th .tablesort--asc {
  margin-left: auto;
}
.table thead th .tablesort--desc:after, .table thead th .tablesort--asc:after {
  padding-left: 1rem;
  transition: transform 0.3s ease;
  font-family: "viavi-icons";
}
.table thead th .tablesort--desc:after {
  content: "\f078";
}
.table thead th .tablesort--asc:after {
  content: "\f077";
}
.table th,
.table td {
  border-top: 0;
  padding: 1rem;
  /*@media (prefers-color-scheme: dark) {
    @content;
  }*/
}
[data-darkreader-scheme=dark] .table th, html[native-dark-active] .table th,
[data-darkreader-scheme=dark] .table td,
html[native-dark-active] .table td {
  border-right: 4px solid #222222;
}
.table th:nth-last-child(1),
.table td:nth-last-child(1) {
  border-right: 0;
}
.table tbody tr:nth-last-child(even) {
  background-color: #fafafa;
  /*@media (prefers-color-scheme: dark) {
    @content;
  }*/
}
[data-darkreader-scheme=dark] .table tbody tr:nth-last-child(even), html[native-dark-active] .table tbody tr:nth-last-child(even) {
  background-color: #222222;
}
.table tbody tr:nth-last-child(odd) {
  background-color: #f2f2f2;
  /*@media (prefers-color-scheme: dark) {
    @content;
  }*/
}
[data-darkreader-scheme=dark] .table tbody tr:nth-last-child(odd), html[native-dark-active] .table tbody tr:nth-last-child(odd) {
  background-color: #333333;
}
.table-responsive.col {
  padding: 0;
}
@media (max-width: 767.98px) {
  .table-responsive .table {
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  .table-responsive thead {
    position: sticky;
  }
}

.sticky-header thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.sticky-header th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.sticky-header th {
  padding: 0.75rem;
  vertical-align: top;
}
@media (min-width: 992px) {
  .sticky-header .table-responsive {
    max-height: 50rem;
  }
}

@media (max-width: 767.98px) {
  .table-collapsed table thead th:not(:first-child),
  .table-collapsed table tbody td:not(:first-child) {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .table-collapsed table thead th:not(:first-child):not(:nth-child(2)),
  .table-collapsed table tbody td:not(:first-child):not(:nth-child(2)) {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .table-responsive {
    white-space: nowrap;
    overflow: auto;
  }
}
@media (max-width: 767.98px) {
  .table-responsive .table {
    white-space: nowrap;
  }
}
@media (max-width: 767.98px) {
  .table-responsive thead th:not(:first-child),
  .table-responsive tbody td:not(:first-child) {
    display: table-cell;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .table-responsive thead th:not(:first-child):not(:nth-child(2)),
  .table-responsive tbody td:not(:first-child):not(:nth-child(2)) {
    display: table-cell;
  }
}
.table-stackable {
  position: relative;
}
@media (max-width: 991.98px) {
  .table-stackable thead {
    position: absolute;
    top: 0;
    z-index: -1;
    background-color: transparent;
  }
}
.table-stackable tr {
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .table-stackable tr {
    display: table-row;
    margin-bottom: 0;
  }
}
.table-stackable td {
  display: block;
  flex-wrap: wrap;
  font-size: 0.8em;
  text-align: left;
}
.table-stackable td a {
  flex: 1 1 100%;
}
.table-stackable td .address {
  flex: 1 1 100%;
}
.table-stackable td::before {
  content: attr(data-label);
  display: block;
  width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.table-stackable td:first-child {
  background-color: #333333;
  color: white;
}
@media (min-width: 992px) {
  .table-stackable td:first-child {
    background-color: transparent;
    color: #333333;
  }
}
.table-stackable td:not(:first-child) {
  display: flex;
}
@media (min-width: 992px) {
  .table-stackable td:not(:first-child) {
    display: table-cell;
  }
}
@media (max-width: 767.98px) {
  .table-stackable td.v-sm-none {
    display: none;
  }
}
@media (min-width: 992px) {
  .table-stackable td {
    display: table-cell;
    font-size: 1.125rem;
  }
  .table-stackable td::before {
    display: none;
  }
}
/*# sourceMappingURL=table.component.css.map */
