[data-hidden=true],
option[disabled] {
  display: none !important;
}

ul {
  list-style: none;
}

.nice-select {
  --c: #333;
  --bc: #fff;
  --border: #9e9e9e;
  --dropdown-bc: #fff;
  --option-color: #1e293b;
  --option-selected-color: #fff;
  --option-selected-bc: #e50012;
  --search-border: #9e9e9e;
  --search-bc: #fff;
  width: 300px;
  max-width: 100%;
  position: relative;
}
.nice-select.open .nice-select__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  translate: none;
  transition: translate 300ms ease;
}
.nice-select.open .nice-select__display::after {
  top: calc(50% + 3px);
  rotate: 225deg;
}
.nice-select.insert_before img {
  margin-right: 12px;
}
.nice-select.insert_after img {
  margin-left: 12px;
}
.nice-select__display {
  width: 100%;
  height: 50px;
  background-color: var(--bc);
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  padding: 4px 40px 4px 15px;
  cursor: pointer;
  color: var(--c);
}
@media only screen and (min-width: 768px) {
  .nice-select__display {
    transition: filter 150ms linear;
  }
  .nice-select__display:hover {
    filter: brightness(0.65);
  }
}
.nice-select__display::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  translate: 0 -50%;
  rotate: 45deg;
  border-bottom-right-radius: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: 150ms linear;
}
.nice-select__current {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  font-size: 1.6rem;
}
.nice-select__current img {
  width: 16px;
  display: inline-block;
}
.nice-select__dropdown {
  min-width: 100%;
  background-color: var(--dropdown-bc);
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  left: 0;
  translate: 0 -16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 4px;
  border: 1px solid var(--border);
  transform-origin: 50% 0;
}
.nice-select__dropdown img {
  width: 16px;
  display: inline-block;
  transition: 150ms linear;
}
.nice-select__dropdown_search {
  padding: 10px;
}
.nice-select__dropdown_search input[type=text] {
  width: 100%;
  height: 44px;
  background-color: var(--search-bc);
  display: block;
  outline: 0;
  border: 1px solid var(--search-border);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1f1f1f;
}
.nice-select__dropdown_search input[type=text]::placeholder {
  color: #9e9e9e;
}
.nice-select__dropdown_search + .nice-select__dropdown_list {
  border-top: 1px solid var(--search-border);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nice-select__dropdown_list {
  border-radius: inherit;
  overflow: auto;
  max-height: 200px;
  scrollbar-width: thin;
  white-space: nowrap;
}
.nice-select__dropdown_list .option {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--option-color);
  padding: 11px 16px;
  border-top: 1px solid var(--option-selected-color);
}
.nice-select__dropdown_list .option.disabled {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .nice-select__dropdown_list .option:not(.disabled) {
    cursor: pointer;
    transition: 150ms linear;
  }
  .nice-select__dropdown_list .option:not(.disabled):hover {
    color: var(--option-selected-color);
    background-color: var(--option-selected-bc);
  }
  .nice-select__dropdown_list .option:not(.disabled):hover img {
    filter: brightness(10);
  }
}
.nice-select__dropdown_list .option:nth-child(1) {
  border-top: 0;
}
.nice-select__dropdown_list .option.selected {
  color: var(--option-selected-color);
  background-color: var(--option-selected-bc);
  pointer-events: none;
}
.nice-select__dropdown_list .option.selected img {
  filter: brightness(10);
}

/*# sourceMappingURL=nice-select.css.map */
