.custom-select-component {
  position: relative;
  width: 100%;
}

.custom-select-component select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select-component .custom-select {
  position: relative;
}

.custom-select-component .custom-select__trigger {
  width: 100%;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border: 1px solid #555555;
  border-radius: 0.375rem;
  background: rgba(0, 0, 0, 0.14);
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-select-component .custom-select__trigger:focus-visible {
  outline: none;
  border-color: #CCCCCC;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.custom-select-component .custom-select__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-component .custom-select__icon {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #EEEEEE;
  border-bottom: 2px solid #EEEEEE;
  transform: rotate(45deg);
  margin-left: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.custom-select-component .custom-select.open .custom-select__icon {
  transform: rotate(-135deg);
  margin-top: 0.25rem;
}

.custom-select-component .custom-select__menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 35;
  max-height: 250px;
  margin: 0;
  padding: 0.35rem 0;
  overflow-y: auto;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.custom-select-component .custom-select__menu[hidden] {
  display: none;
}

.custom-select-component .custom-select__option {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.6rem 0.9rem;
  color: #212529;
  cursor: pointer;
}

.custom-select-component .custom-select__option:hover,
.custom-select-component .custom-select__option:focus-visible {
  outline: none;
  background: #f1f6ff;
}

.custom-select-component .custom-select__option.is-selected {
  background: #e9f2ff;
  color: #333333;
  font-weight: 600;
}/*# sourceMappingURL=components.css.map */