.nice-select .list::-webkit-scrollbar {
  width: 0
}

.nice-select {
  position: relative;
  z-index: 2;
}

.nice-select .current {
  height: 48px;
  background: var(--color-text-backing);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 0 17px;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-200);
}

.nice-select .current::after {
  content: "\e90e";
  font-family: 'icomoon' !important;
  margin-left: 13px;
  font-size: 70%;
  transform: rotate(90deg);
}

.nice-select .list {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.12);
  background: var(--color-white);
  border-radius: 10px;
  padding: 8px;
  max-height: 210px;
  overflow-y: scroll;
  margin-top: 10px;
}

.nice-select.open .list {
  display: block;
}

.nice-select.has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 53px;
  line-height: 22px
}

.nice-select.has-multiple span.current {
  border: 1px solid #CCC;
  background: #EEE;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px
}

.nice-select.has-multiple .multiple-options {
  display: block;
  line-height: 37px;
  margin-left: 30px;
  padding: 0
}

.nice-select .option {
  border-radius: 10px;
  padding: 10px 30px 10px 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-200);
  cursor: pointer;
}

.nice-select .option:hover {
  background: var(--color-text-backing);
}

.nice-select .option.selected {
  background-image: url('data:image/svg+xml,<svg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0927 1.20193V1.51125L12.9548 1.8611C10.6059 4.2734 8.21717 6.66216 5.80487 9.01099C5.45592 9.22227 4.99283 9.20141 4.68142 8.93529L1.10066 5.35394C0.414372 4.34045 1.70739 3.26795 2.58827 4.10414L5.30006 6.81682L11.5244 0.596989C12.1216 0.128833 12.9422 0.481664 13.0927 1.20163V1.20193Z" fill="%23FD933A" /></svg>');
  background-position: right 12px center;
  background-repeat: no-repeat;
}

.nice-select .nice-select-search-box {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  margin-top: 5px;
  top: 100%;
  left: 0;
  z-index: 8;
  padding: 5px;
  background: #FFF;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 0 1px rgba(68, 88, 112, .11);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(.75) translateY(-21px);
  -ms-transform: scale(.75) translateY(-21px);
  transform: scale(.75) translateY(-21px);
  -webkit-transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
  transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out
}

.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: none;
  color: #333;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%!important;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0!important
}

.nice-select.open .nice-select-search-box {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0)
}


