.common-select {
  position: relative;
}

.common-select__trigger,
.common-select__native {
  min-width: 180px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: #2f3d47;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 1.2;
}

.common-select__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  cursor: pointer;
}

.common-select__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  z-index: 20;
}

.common-select__menu button {
  width: 100%;
  border: 0;
  background: #fff;
  color: #2b3740;
  text-align: left;
  font-size: 13px;
  padding: 9px 12px;
  cursor: pointer;
}

.common-select__menu button:hover {
  background: #e8f3fa;
}

.common-select--native {
  display: inline-flex;
  align-items: center;
}

.common-select--native::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #677581;
  pointer-events: none;
  font-size: 12px;
}

.common-select__native {
  appearance: none;
  -webkit-appearance: none;
  padding: 0 34px 0 12px;
  outline: none;
}

.common-select--language .common-select__native {
  min-width: 104px;
}
