.nice-select {
  -webkit-tap-highlight-color: transparent;
  /*background-color: #fff;*/
  /*border: 0 none;*/
  border: 1px solid #EBEBEB;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: flex;
  float: left;
  font-family: inherit;
  font-weight: normal;
  font-size:12px;
  height: 100%;
  line-height: 1;
  outline: none;
  padding-left: 10px;
  padding-right: 25px;
  position: absolute;
  top: 0px;
  align-items: center;
  text-align: left !important;
      background-image: url("images/ddlArrow.png"), url("images/ddlNoArrow.png");
    background-position: right, right;
    background-repeat: no-repeat, repeat-y;

  -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;
  width: 100%; }
  .nice-select:hover {
    border-color: #dbdbdb; 
    box-shadow: inset 0 0 5px rgba(51,102,248,.4);
  }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; 
  }
  .nice-select:after {
/*    content: '';
    background-image: url("images/ddlArrow.png"), url("images/ddlNoArrow.png");
    background-position: right, right;
    background-repeat: no-repeat, repeat-y;
    display: block;
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0px;
    top: 0px;
    transition: all 0.15s ease-in-out;
    width: 25px;*/ }
  .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.gray {
    background-color: transparent; 
    padding-left: 5px;
    }
  .nice-select.blue {
    background-color: var(--LabelBG);
    font-size:11px;
    padding-left: 5px;
  }
    .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-color: #fff;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow-x: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    right:0;
    max-height: 200px;
    overflow-y: scroll;
    -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: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; 
      color:black;
    }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 1;
    list-style: none;
    padding: 8px 12px;
    outline: none;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color:black;
  }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background: var(--LabelBG);
      color: #fff;
    }
    .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; }

.current {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}