.category-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(420px, 100%);
  color: #8f97a9;
  font-size: 12px;
}

.category-picker span {
  flex: none;
  font-weight: 700;
  letter-spacing: .08em;
}

.category-picker select {
  min-width: 0;
  height: 42px;
  flex: 1;
  border: 1px solid #303543;
  border-radius: 10px;
  background: #090b10;
  color: #eef0f6;
  padding: 0 38px 0 13px;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.category-picker select:focus {
  border-color: #9470ff;
  box-shadow: 0 0 0 3px #9470ff1f;
}

@media (max-width: 850px) {
  .category-picker {
    width: 100%;
    min-width: 0;
    margin-bottom: 10px;
  }
}
