.table-row {
  flex-direction: column;
  position: relative;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 5px;
  border-bottom: 1px solid #273475;
}

.table-header {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .table-header {
    display: block;
  }

  .table-row {
    flex-direction: row;
  }
}

.table-item {
  width: 100%;
}

.table-item .arrow-right {
  position: absolute;
  top: 20px;
  right: 10px;
}

@media only screen and (min-width: 1024px) {
  .table-item .arrow-right {
    position: relative;
    top: 0;
    right: 0;
  }
}

.table-row-link {
  text-decoration: none;
  transition: 100ms ease-in;
}

.table-row-link:hover {
  color: inherit;
  background: #ffffff;
  display: block;
}

.table-item.table-item--link {
  max-width: 100px;
}

.table-header .table-row {
  border-bottom: 2px solid #273475;
  font-weight: 700;
}

.table-content .table-row {
  color: #222222;
}

.status-circle {
  background: grey;
  padding: 6px;
  display: block;
  border-radius: 30px;
  height: 4px;
  width: 4px;
  display: inline-block;
}

.status-circle--orange {
  background: orange;
}

.status-circle--green {
  background: green;
}

.status-circle--red {
  background: red;
}

.arrow-right {
  background: no-repeat;
  background-image: url(../images/svg/arrowright.svg);
  background-position: 96% 50%;
  z-index: 10000000;
  box-shadow: none;
  text-shadow: none;
  -moz-appearance: none;
  height: 25px;
  width: 25px;
  display: block;
}
