.customSelect {
  z-index: 1;
  width: 100%;
  max-width: 470px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.customSelect .selectButton {
  color: var(--Gray);
  border: 1px solid var(--Medium-gray);
  background: var(--Medium-blue);
  cursor: pointer;
  border-radius: 12px;
  outline: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 26px;
  display: flex;
}

.customSelect .selectRequiredInput {
  opacity: 0 !important;
  border: 0 !important;
  height: 0 !important;
  padding: 1px !important;
}

.customSelect .selectedValue {
  text-align: left;
  gap: 8px;
  display: flex;
}

.customSelect .arrow {
  transition: transform .3s ease-in-out;
  transform: rotate(90deg);
}

.customSelect.active .arrow {
  transform: rotate(-90deg);
}

.customSelect.active .selectDropdown {
  opacity: 1;
  visibility: visible;
}

.selectDropdown {
  z-index: 1;
  box-sizing: border-box;
  background-color: var(--Black);
  border: 1px solid var(--Medium-gray);
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  list-style: none;
  transition: all .5s;
  position: absolute;
  overflow: hidden auto;
}

.selectDropdown li {
  cursor: pointer;
  align-items: center;
  gap: 1rem;
  display: flex;
  position: relative;
}

.selectDropdown li label {
  cursor: pointer;
  width: 100%;
  padding: 12px 20px;
}

.selectDropdown li:hover, .selectDropdown input:checked ~ label {
  color: var(--White);
  background-color: var(--Medium-blue);
}

.selectDropdown input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 0;
}
/*# sourceMappingURL=app.55f9e98f.css.map */
