.nice-select {
  -webkit-tap-highlight-color: transparent;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 35px;
  outline: none;
  padding: 5px 10px;
  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:after {
  content: "\f0d7";
  color: #00aaa9;
  display: block;
  height: 35px;
  font: normal normal normal 22px/1 FontAwesome;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 4px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 16px;
  text-align: center;
  padding: 6px 0;
}

.nice-select.open:after {
  -webkit-transform: rotate(-180 deg);
  -ms-transform: rotate(-180 deg);
  transform: rotate(-180 deg);
}

.nice-select .list {
  max-height: 226px;
  width: 100%;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  /*feedback 171122*/
 /* -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);*/
  /*feedback 171122*/

  height: auto;
  overflow-y: auto;
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}



.nice-select .list {
  background-color: #fff;
  border: 1px solid #00aaa9;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 102%;
  left: 0;
  height: 0;
  /*feedback 171122*/
  /*-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);*/
  /*feedback 171122*/
  -webkit-transition: all 0.2s , opacity 0.15s;
  transition: all 0.2s , opacity 0.15s;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.openUpwards .nice-select .list{
  top: auto;
  bottom: 100%;
  
}

.nice-select .option {
  cursor: pointer;
  list-style: none;
  min-height: 35px;
  outline: none;
  padding: 5px 15px;
  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;
}


@media only screen and ( max-width: 768px) {
  .purchaseJourney_blk.step3 .nice-select,
  .nice-select {
    height: 25px;
    font-size: 12px;
  }
  .nice-select .option {
    min-height: 25px;
  }
  .nice-select:after {
    height: 25px;
    width: 25px;
  }
}