.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: 0.8rem;
  border: solid 1px #efefef;
  background-color: #fff;
  padding: 0px 1.7rem;
  width: 13rem;
  height: 4.6rem;
  line-height: 4.5rem;
  box-shadow: none;
  
}

.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: 1.3rem;
  height: 1.3rem;
  transform: translateY(-50%);
  pointer-events: none;
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transition: all 0.15s ease-in-out;
  background: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3.25 4.333 3.022 3.526a.3.3 0 0 0 .456 0L9.75 4.333' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat center/100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='12' viewBox='0 0 13 12' fill='none'%3E%3Cpath d='M9.75 3.986 6.72 7.24a.3.3 0 0 1-.44 0L3.25 3.986' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100%;
}
.nice-select.open:after {
  transform: translateY(-50%) rotate(180deg); 
}

.nice-select span {
  font-size: 1.2rem;
  color: #8c8c8c;
  font-weight: 500;
}
.nice-select .list {
  width: 100%;
  background-color: #fff;
  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;
}
.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: #f6f6f6; 
}
.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; 
}