/* Кастомный select (FiamoSelect) */

.fiamo-field--select .fiamo-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 9L12 16L19 9' stroke='%23F1F8FB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 44px;
  cursor: pointer;
}

.fiamo-field--select .fiamo-input option {
  color: #07070a;
  background: #ffffff;
}

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

.fiamo-select__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fiamo-select__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 9L12 16L19 9' stroke='%23F1F8FB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 44px;
  cursor: pointer;
}

.fiamo-select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fiamo-select__value.is-placeholder {
  color: rgba(241, 248, 251, 0.55);
}

.fiamo-select.is-open .fiamo-select__trigger {
  border-color: #c1f328;
  box-shadow: 0 0 0 1px #c1f328;
}

.fiamo-select__list {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border: 1px solid #c1f328;
  border-radius: 12px;
  background: #2c4c54;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fiamo-select__list:not(.is-visible) {
  display: none;
}

.fiamo-select--drop-down .fiamo-select__list {
  top: calc(100% + 6px);
}

.fiamo-select--drop-up .fiamo-select__list {
  bottom: calc(100% + 6px);
}

.fiamo-select__option {
  padding: 8px 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease;
}

.fiamo-select__option:hover,
.fiamo-select__option.is-focused {
  background: #64a1b0;
}

.fiamo-select__option.is-selected {
  background: rgba(100, 161, 176, 0.35);
}

.fiamo-select__option.is-selected:hover,
.fiamo-select__option.is-selected.is-focused {
  background: #64a1b0;
}
