.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--Gray, hsl(var(--border)));
  padding: .5rem;
  height: 38px;
  line-height: normal;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 1px;
  border-radius: .25rem;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  background-image: url("data:image/svg+xml,%3Csvg stroke='rgb(156 163 175 / 1)' fill='rgb(156 163 175 / 1)' stroke-width='0' viewBox='0 0 320 512' class='h-5 w-5 text-gray-400' height='1em' width='1em' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
    content: "";
    display: block;
    height: 20px;
    background-size: contain;
    width: 20px;
    margin-top: -8px;
    pointer-events: none;
    position: absolute;
    right: 6px;
    top: 50%;
    transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  max-height: 300px;
  overflow: auto;
  padding: 8px 0;
  background-color: #fff;
  box-shadow: 0 0 0 0.5px var(--Gray, #afafaf);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list::-webkit-scrollbar {
  width: 6px;
}
.nice-select .list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}
.nice-select .list::-webkit-scrollbar-thumb {
  background: #afafaf;
  border-radius: 6px;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: initial !important;
}
.nice-select .option {
  color: var(--Dark, #1e1e1e);
  font-family: raleway, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.65px;
  cursor: pointer;
  list-style: none;
  outline: none;
  padding: 7px 6px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  color: #1e1e1e;
}
.nice-select .option.disabled {
  background-color: initial;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
