.cir-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cir-select {
  position: relative;
  width: 100%;
  font: inherit;
}

.cir-select.is-open {
  z-index: 80;
}

.cir-select-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 12px;
  padding: 12px 14px;
  color: #E5E7EB;
  background: rgba(8, 13, 22, .96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.cir-select-trigger:hover,
.cir-select.is-open .cir-select-trigger {
  border-color: rgba(34, 211, 238, .36);
  background: rgba(10, 17, 29, .98);
}

.cir-select-trigger:focus-visible {
  outline: none;
  border-color: #22D3EE;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .14);
}

.cir-select.is-invalid .cir-select-trigger {
  border-color: rgba(248, 113, 113, .72);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .12);
}

.cir-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cir-select-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.cir-select-icon::before,
.cir-select-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #22D3EE;
  transition: transform .16s ease;
}

.cir-select-icon::before {
  left: 1px;
  transform: rotate(45deg);
}

.cir-select-icon::after {
  right: 1px;
  transform: rotate(-45deg);
}

.cir-select.is-open .cir-select-icon::before {
  transform: rotate(-45deg);
}

.cir-select.is-open .cir-select-icon::after {
  transform: rotate(45deg);
}

.cir-select-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  max-height: 260px;
  margin: 0;
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(34, 211, 238, .20);
  border-radius: 14px;
  background: #070A0F;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .04);
  list-style: none;
}

.cir-select:not(.is-open) .cir-select-menu {
  display: none;
}

.cir-select-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  border-radius: 10px;
  padding: 9px 10px;
  color: #CBD5E1;
  cursor: pointer;
  transition: color .14s ease, background .14s ease;
}

.cir-select-option:hover,
.cir-select-option.is-active {
  color: #F9FAFB;
  background: rgba(34, 211, 238, .10);
}

.cir-select-option.is-selected {
  color: #F9FAFB;
  background: rgba(34, 211, 238, .16);
}

.cir-select-option.is-selected::after {
  content: "";
  width: 6px;
  height: 10px;
  justify-self: center;
  border: solid #22D3EE;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cir-select-option.is-disabled {
  color: #64748B;
  cursor: not-allowed;
}

.cir-select-option.is-disabled:hover {
  background: transparent;
}

.cir-file-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cir-file {
  display: grid;
  gap: 8px;
  width: 100%;
}

.cir-file-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  border: 1px dashed rgba(148, 163, 184, .28);
  border-radius: 14px;
  padding: 10px;
  color: #CBD5E1;
  background: rgba(8, 13, 22, .72);
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.cir-file-control:hover,
.cir-file.is-active .cir-file-control {
  border-color: rgba(34, 211, 238, .48);
  background: rgba(10, 17, 29, .92);
}

.cir-file.is-focus .cir-file-control {
  border-color: #22D3EE;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .14);
}

.cir-file-button {
  display: inline-grid;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: #071018;
  background: #22D3EE;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.cir-file-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cir-file-name {
  min-width: 0;
  overflow: hidden;
  color: #E5E7EB;
  font-size: 14px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cir-file-meta {
  color: #7C8798;
  font-size: 12px;
  line-height: 1.35;
}

.cir-file.has-file .cir-file-control {
  border-style: solid;
  border-color: rgba(34, 211, 238, .34);
  background: rgba(34, 211, 238, .07);
}

.cir-file.has-file .cir-file-name {
  color: #F9FAFB;
}

@media (max-width: 640px) {
  .cir-select-menu {
    max-height: 220px;
  }

  .cir-file-control {
    grid-template-columns: minmax(0, 1fr);
  }

  .cir-file-button {
    justify-content: center;
  }
}
