.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #F4F4F4;
  border-radius: 0px;
  border: solid 1px #F4F4F4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  cursor: pointer;
  outline: none;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-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%;
  height: 100%;
  border-radius: 35px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.nice-select:after {
  position: absolute;
  top: 50%;
  right: 30px;
  height: 11px;
  width: 7px;
  background: url("/img/icons/select_shevron.svg") 50% 50% no-repeat;
  background-size: auto;
  background-size: contain;
  content: "";
  display: block;
  -webkit-transform: rotate(0deg) translateY(-5px);
  -ms-transform: rotate(0deg) translateY(-5px);
  transform: rotate(0deg) translateY(-5px);
  z-index: 10;
}

.nice-select.open:after {
  -webkit-transform: rotate(-180deg) translateY(5px);
  -ms-transform: rotate(-180deg) translateY(5px);
  transform: rotate(-180deg) translateY(5px);
}

.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: #cccccc;
}

.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 {
  background: #F5F5F5;
  border-radius: 7px;
  margin-top: 0px;
  opacity: 0;
  overflow: hidden;
  padding: 26px 30px;
  pointer-events: none;
  position: absolute;
  top: -1px;
  left: -1px;
  right:-1px;
  max-height: 300px;
  overflow-y: auto;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-1px);
  -ms-transform: scale(0.75) translateY(-1px);
  transform: scale(0.75) translateY(-1px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  -o-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:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  list-style: none;
  letter-spacing: 0.02em;
  outline: none;
  padding:0;
  text-align: left;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  font-family: 'JekoMedium', sans-serif;
}
.nice-select .option + .option{
  margin-top: 10px;

}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  
}
.nice-select .option:hover{
  text-decoration: underline;
}
.nice-select .option.selected {
  font-family: 'JekoBold', sans-serif;
}

.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;
}