.switcher {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 28px;
  padding: 2px;
  border-radius: 6px;
  background-color: #E6E9EE;
  gap: 2px;
}

.switcher.large {
  height: 32px;
}

.switcher__item {
  box-sizing: border-box;
  height: 24px;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  appearance: none;
  color: var(--color-gray-900);
  display: table;
}

.switcher.large .switcher__item {
  height: 28px;
  padding: 5px 8px;
}

.switcher__item:checked {
  background-color: var(--color-white);
  color: var(--color-brand-blue-600);
}

.switcher__item:after {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 18px;
  box-sizing: border-box;
  letter-spacing: 0.2px;
  content: attr(data-label);
  white-space: nowrap;
}

.switcher__item:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
