/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.search-input {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 50px 16px 16px;
  width: 100%;
  max-width: 260px;
  color: hsl(0, 0%, 0%);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 600;
  border-radius: 45px;
  border: 1px solid #a6a6a6;
  outline: 0;
  background-color: transparent;
  background: url("/assets/svg/search-icon.svg");
  background-position: 90% center;
  background-repeat: no-repeat;
  background-size: 18px;
  transition: border-color 150ms ease-in;
}
.search-input:focus-visible {
  border-color: #f58220;
}
@media screen and (min-width: 768px) {
  .search-input {
    padding: 20px 70px 20px 30px;
    max-width: 400px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    background-size: 23px;
  }
}
/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.select {
  user-select: none;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 50px 16px 16px;
  width: 100%;
  max-width: 260px;
  color: hsl(0, 0%, 0%);
  border: 0;
  border-radius: 45px;
  outline: none;
  background-image: url("/assets/svg/short-down-icon.svg");
  background-color: hsl(0, 0%, 100%);
  background-position: 90% 22px;
  background-repeat: no-repeat;
  background-size: 12px;
  appearance: none;
  cursor: pointer;
}
.select__active {
  color: hsl(0, 0%, 0%);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 600;
}
.select__options {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  padding: 0 40px;
  width: 100%;
  height: 0;
  background-color: hsl(0, 0%, 100%);
  overflow: hidden;
  transition: all 100ms ease-in;
}
.select__options-wrapper {
  overflow: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.select__options-wrapper::-webkit-scrollbar {
  width: 2px;
  background-color: transparent;
}
.select__options-wrapper::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: #f58220;
}
.select__item {
  color: #979797;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.select__item:hover {
  color: hsl(0, 0%, 0%);
}
.select.-expand {
  display: flex;
  flex-direction: column;
  background-image: url("/assets/svg/short-up-icon.svg");
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select.-expand .select__options {
  margin: 0;
  padding: 0 40px 10px 40px;
  height: 112px;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}
@media screen and (min-width: 768px) {
  .select {
    padding: 20px 90px 20px 40px;
    width: auto;
    min-width: 200px;
    max-width: unset;
    background-position: 83% 28px;
  }
  .select__active {
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
  .select__item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
  }
}