.stats-bar{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 576px){
  .stats-bar{
    flex-direction: row;
  }
}

@media (min-width: 768px){
  .stats-bar{
    flex-direction: column;
  }
}

@media (min-width: 992px){
  .stats-bar{
    flex-direction: row;
  }
}