.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  border: 1px solid #2d2f39;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-size: 14px;
  outline: none;
  position: relative;
  color: #fff;
  padding: 12px 15px;
  transition: 0.3s;
  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: auto; }
  .nice-select:after {
    content: "";
    background: url(../images/icons/arrow-d.png) no-repeat;
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -2px;
    width: 9px;
    height: 6px;
    opacity: 0.3;
    transition: 0.3s;
  }
  .sort-select:before {
    content: "";
    background: url(../images/icons/sort-icon.png) no-repeat;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -5px;
    width: 12px;
    height: 12px;
    transition: 0.3s;
  }
  .nice-select.open:after {
    transform: rotate(180deg); }
  .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.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select .list {
    background-color: #07070b;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    padding: 10px 0px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    -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: 20; }
    .nice-select .list:before {
      content: ''; 
        position: absolute;
        right: 30px; top: -20px;
        border: 10px solid transparent;
        border-bottom: 10px solid #07070b;
    }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    list-style: none;
    outline: none;
    padding: 9px 30px;
    font-size: 13px;
    text-align: left;
    margin: 3px 0px;
    position: relative;
    min-width: 200px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:after {
      content: "";
      background: url(../images/icons/check-icon.png) no-repeat;
      width: 11px;
      height: 8px;
      position: absolute;
      right: 10px;
      top: 50%;
      margin-top: -4px;
      opacity: 0;
    }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background: linear-gradient(to right, #0eca90, #11c2b6); 
      color: #142922;
    }
    .nice-select .option:hover:after, .nice-select .option.focus:after, .nice-select .option.selected.focus:after {
      opacity: 1;
    }

.no-csspointerevents .nice-select .list {
  display: none; }

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