[data-hidden=true],
option[disabled] {
  display: none !important;
}

ul {
  list-style: none;
}

.nice-select {
  max-width: 100%;
  position: relative;
}
.nice-select.open .nice-select__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  scale: 1;
  translate: none;
}
.nice-select.open .nice-select__display::after {
  top: calc(50% + 3px);
  rotate: 225deg;
}
.nice-select.can_scroll .nice-select__dropdown_up,
.nice-select.can_scroll .nice-select__dropdown_down {
  display: block;
}
.nice-select.on_top .nice-select__dropdown_up {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.nice-select.on_bottom .nice-select__dropdown_down {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.nice-select__display {
  width: 100%;
  height: 40px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border: 1px solid #a4a4a4;
  border-radius: 2px;
  position: relative;
  padding: 4px 40px 4px 8px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .nice-select__display {
    transition: opacity 300ms ease;
  }
  .nice-select__display:hover {
    opacity: 0.6;
  }
}
.nice-select__display::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: calc(50% - 3px);
  right: 8px;
  translate: 0 -50%;
  rotate: 45deg;
  border-right: 2px solid #a8a8a8;
  border-bottom: 2px solid #a8a8a8;
  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;
  font-weight: 600;
}
.nice-select__dropdown {
  min-width: 100%;
  background-color: #f7f7f7;
  border-radius: 4px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 200ms cubic-bezier(0.5, 0, 0, 1.25), opacity 150ms ease-out;
}
.nice-select__dropdown_list {
  border-radius: inherit;
  overflow: auto;
  max-height: 200px;
  scrollbar-width: thin;
  white-space: nowrap;
  padding: 0 5px;
}
.nice-select__dropdown_list ul {
  padding: 12px 0;
}
.nice-select__dropdown_list .option {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--option-color);
  border-radius: 4px;
  position: relative;
  padding: 2px 10px 2px 30px;
  cursor: pointer;
  transition: 150ms linear;
}
@media only screen and (min-width: 768px) {
  .nice-select__dropdown_list .option:hover {
    color: #fff;
    background-color: #a4a4a4;
  }
}
.nice-select__dropdown_list .option.disabled {
  display: none !important;
}
.nice-select__dropdown_list .option.selected {
  color: #fff;
  background-color: #a4a4a4;
  pointer-events: none;
  padding-top: 4px;
  padding-bottom: 4px;
}
.nice-select__dropdown_list .option.selected::before {
  background-image: url("./icon_selected.svg");
}
.nice-select__dropdown_list .option::before {
  content: "";
  width: 12px;
  height: 12px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 10px;
  translate: 0 -50%;
}
.nice-select__dropdown_up, .nice-select__dropdown_down {
  width: 100%;
  height: 18px;
  position: relative;
  display: none;
  transition: 300ms ease;
  cursor: pointer;
}
.nice-select__dropdown_up::after, .nice-select__dropdown_down::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 50%;
  translate: -50% 0;
  rotate: -135deg;
  border: 0;
  border-bottom: 1px solid #a4a4a4;
  border-right: 1px solid #a4a4a4;
}
.nice-select__dropdown_up {
  border-bottom: 1px solid #a4a4a4;
}
.nice-select__dropdown_down {
  border-top: 1px solid #a4a4a4;
}
.nice-select__dropdown_down::after {
  top: 3px;
  rotate: 45deg;
}

.block {
  padding: 40px;
}

/*# sourceMappingURL=nice-select.css.map */
