.branch-context {
  align-items: center;
  display: flex;
  gap: 8px;
  min-height: 50px;
  padding: 7px 10px;
}

.branch-context__label {
  color: #fff;
  margin: 0;
}

.branch-context__select {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 6px;
  color: #1f2937;
  height: 34px;
  max-width: 230px;
  min-width: 150px;
  padding: 4px 30px 4px 10px;
}

.branch-context__select:disabled {
  cursor: wait;
  opacity: 0.7;
}

.branch-context__status {
  color: #fff;
  font-size: 12px;
  max-width: 220px;
}

@media (max-width: 767px) {
  .branch-context {
    padding: 7px 4px;
  }

  .branch-context__select {
    max-width: 145px;
    min-width: 110px;
  }

  .branch-context__status {
    display: none;
  }
}

