.container {
  margin-top: 50px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.table{
  width: 100%;
  box-shadow: 0px 0px 70px -22px rgba(0,196,255,1);
}

#step-table{
  animation: slideDown 2s ease; 
}

.table-header {
  display: flex;
  width: 100%;
  background: rgb(0, 132, 255);
  padding: 18px 0;
}

.table-row {
  display: flex;
  width: 100%;
  padding: 18px 0;
  transition: all 0.3s ease;
  background-color: #d1dae6a0;
}

.table-row:hover{ 
  background-color: #bcc4cfa0;
  box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.44);
}

.selected{
  background-color: #a3b6d0a0;

}

.table-data,
.header__item {
  flex: 1 1 20%;
  text-align: center;
}

.header__item {
  text-transform: uppercase;
}

.header_item a {
  color: white; 
}

.filter__link {
  color: white;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  padding-right: 24px;
}

.filter__link::after {
  content: "";
  position: absolute;
  right: -18px;
  color: white;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.filter__link.desc::after {
  content: "(desc)";
}
.filter__link.asc::after {
  content: "(asc)";
}