.custom-select select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.custom-select-wrap {
  position: relative;
  display: inline-block;
  min-width: 120px;
}

.custom-select-current {
  padding: 0.5em 2em 0.5em 0.75em;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.custom-select-current::after {
  content: '';
  position: absolute;
  right: 0.75em;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
}

.custom-select-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 2px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 100;
  display: none;
}

.custom-select-wrap.open .custom-select-dropdown {
  display: block;
}

.custom-select-dropdown-item {
  padding: 0.5em 0.75em;
  cursor: pointer;
}

.custom-select-dropdown-item:hover {
  background: #f0f0f0;
}

.custom-select-dropdown-item.selected {
  background: #e0e0e0;
  font-weight: bold;
}
