.root {
  position: relative;
  font-family: var(--font-family);
  background: var(--theme-background);
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--theme-border);
  &:hover {
    box-shadow:
      0 0 0 1px var(--theme-border),
      0 0 0 4px var(--theme-input-active);
  }
}

.disabled {
  position: relative;
  font-family: var(--font-family);
  background: var(--theme-background);
}

.select {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.icon {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
  transition: 200ms ease all;
  color: var(--theme-text);
}

.activeText {
  color: var(--theme-text);
  display: block;
  padding: 12px 16px 12px 16px;
  border-radius: 4px;
  line-height: 1.6;
  font-size: var(--type-scale-fixed-medium);
  white-space: pre-wrap;
}

.passiveText {
  color: var(--theme-border);
  display: block;
  padding: 12px 16px 12px 16px;
  border-radius: 4px;
  line-height: 1.6;
  font-size: var(--type-scale-fixed-medium);
  white-space: pre-wrap;
  box-shadow: 0 0 0 1px var(--theme-border);
  cursor: not-allowed;
}
