.nice-select {
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;

  border-radius: 1rem;
  box-shadow: inset 0 0.1rem 0.3rem 0 rgba(255, 255, 255, .06);
  border: solid 1px rgba(222, 222, 222, .2);
  background-color: #101010;
  padding: 0px 1.7rem;
  width: 13rem;
  height: 5rem;
  line-height: 4.8rem;
}

.nice-select:hover {
  /* border-color: #dbdbdb;  */
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  /* border-color: #999;  */
}

.nice-select:after {
  content: '';
  display: block;
  width: 1rem;
  height: 0.6rem;
  transform: translateY(-50%);
  pointer-events: none;
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transition: all 0.15s ease-in-out;
  background: url(/img/front/icon/ico_select_arrow.svg) no-repeat center / 100%;
}

.nice-select.open:after {
  transform: translateY(-50%) rotate(180deg);
}

.nice-select span {
  font-size: 1.6rem;
  color: #8c8c8c;
  font-weight: 500;
}

.nice-select .list {
  width: 100%;
  background-color: #171717;
  border-radius: .5rem;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: .4rem;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-2rem);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  max-height: 18rem;
  overflow-y: auto;
  border: 1px solid rgba(222, 222, 222, 0.2);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  list-style: none;
  min-height: 4rem;
  line-height: 4.5rem;
  outline: none;
  padding-left: 1.8rem;
  padding-right: 3rem;
  text-align: left;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #000000;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

@media (max-width: 767px) {
  .nice-select {
    height: 5rem;
    line-height: 4.6rem;
    padding: 0 1.3rem;
  }

  .nice-select:after {
    width: 0.8rem;
    top: calc(50% + 0.2rem);
  }

  .nice-select span {
    font-size: 1.1rem;
    color: #fff;
  }
}