.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: right;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-right: 18px;
  padding-left: 30px;
  position: relative;
  text-align: right !important;
  -webkit-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%; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
.nice-select:before {
    content: "";
    height: 100%;
    width: 30px;
    left: 0;
    top: 0;
    background: #fff;
    position: absolute;
    display: block;
    z-index: 1;
    border-radius: 10px 0 0 10px
}
  .nice-select:after {
    border-bottom: 2px solid #afe8ca;
    border-right: 2px solid #afe8ca;
    content: '';
    display: block;
    height: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    left: 8px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 8px; 
      z-index: 2
}
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .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); 
      border-radius: 10px; 
      
}
  .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; 
      max-height: 200px;
      overflow: auto;

}
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      right: auto;
      left: 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-color: #fff;
    
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
      width: 100%;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-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: 600; 
max-height: 200px;
overflow: scroll;
}
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important;

}
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-right: 18px;
    padding-left: 29px;
    text-align: right;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #eefff6;
      color: #2ecd79;
}
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }
.select-item .list {
    border-radius: 10px;
    top: 52px !important;
}
.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }
  .nice-select .list::-webkit-scrollbar {
    width: 0;
}
.nice-select .nice-select-search-box {
    padding: 10px;
}
.nice-select .nice-select-search {
    display: inline-block;
    padding: 7px 12px;
    vertical-align: middle;
    color: #333;
    border: 1px solid #eee;
    border-radius:10px;
    outline: 0 !important;
    background-color: #fff;
    -webkit-box-shadow: none;
        box-shadow: none;
    line-height: 22px;
}
.nice-select.has-multiple {
    height: auto;
    min-height: 36px;
    padding: 7px 12px;

}
.nice-select.has-multiple span.current {
    display: inline-block;
    padding: 0 10px;
    margin: 2px;
    color: #2ecd79;
    border: 1px solid #acffd3;
    border-radius: 100px;
    background: #eefff6;
    font-size: 14px;
    line-height: 24px;
}
.nice-select.has-multiple span.current:last-child {
    margin-left: 30px; 
}
.nice-select.has-multiple span.current .remove {
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}
.multi-select {
    display: block;
    overflow: auto;
    /*! height: 32px; */
    position: relative;

}
.nice-select.has-multiple .multiple-options {
    right: 0;
    top: 0;
    /*! height: 32px; */
    line-height: 32px;
}
.nice-select.open .nice-select-search-box {
    z-index: 10;
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    pointer-events: auto;
}
.has-multiple .selected {
  position: relative;
}
.has-multiple .selected:after {
  content: "\e81e";
  position: absolute;
  left: 10px;
  top: 2px;
  display: block;
  color: #2ecd79
}
.multiple-slider {
  height: 100%;

}
.multiple {
  display: flex;
  align-items: center
}
.multiple .has-multiple {
  padding: 2px 0 0;
  display: flex;
  align-items: center
}
.multiple .multi-select {
  overflow: hidden;
  width: 94%;
}
.multiple .multiple-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}