.filter-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.filter-wrapper span {
  background-color: #51557E;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 0px 10px;
  cursor: pointer;
  transition: 0.4s ease;
}
.filter-wrapper span:hover {
  background-color: #6495ED;
}
.filter-active {
  background-color: #6495ED !important;
}
