/* ==========================================
   Sort Toolbar
========================================== */

.sort-toolbar {
  display: flex;
  gap: 12px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;

  background: #17344d;

  color: #acdde7;

  text-decoration: none;

  border-radius: 25px;

  transition: 0.25s;
}

.sort-btn:hover {
  background: #24557f;
  color: #fff;
}

.sort-btn.active {
  background: #2fbbf4;
  color: #fff;
}
