.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: auto;
  outline: none;
  padding: 10px 15px;
  position: relative;
  text-align: left !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 {
    }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    box-shadow: none;
    }
  .nice-select:after {
    content: '';
    display: block;
    /* height: 100%; */
    /* margin-top: -4px; */
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: calc(50% - 2.5px);
    width: 5px;
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-180deg);
    }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    }
  .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-color: #fff;
    border-radius: 0 0 4px 4px;
    box-sizing: border-box;
    opacity: 0;
    max-height: 200px;
    overflow: auto;
    width: calc(100% + 2px);
    border: 1px solid #ccc;
    padding: 0;
    /* border-top: none; */
    position: absolute;
    top: 90%;
    left: -1px;
    pointer-events: none;
    z-index: 9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    margin: 0;
    }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 34px;
    list-style: none;
    min-height: 34px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    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; }
