.nice-select {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 45px;
  outline: none;
  color: #fff;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;


  float: left;
  width: 200px;
  cursor: pointer;
  line-height: 60px;
  padding: 0 30px;
  box-sizing: border-box;
  font-size: 16px;
  background: rgba(255,255,255,0.08);
}

.nice-select:after {
  content: '';
  display: block;
  height: 14px;
  width: 8px;
  background: url(../images/slide_btn2q.png) no-repeat center;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.nice-select.open .list {
  display: block;
  opacity: 1;
  max-height: 300px;
  overflow: auto;
  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.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: 5px;
  box-sizing: border-box;
  margin-top: 5px;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  display: none;
  top: 100%;
  width: 100%;
  left: 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: 9;
}


.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding: 0 30px;
  color: #333;
  font-size: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}


.nice-select .option:hover,
.nice-select .option.selected {
  color: #fff;
  background: #f00;
}

.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;
}

.store .nice-select:after{
  width: 13px;
  height: 7px;
  top: 50%;
  margin-top: -3px;
  right: 20px;
    background: url(../images/menu_dot.png) no-repeat center;
}
.store .nice-select{
    background: none;
    line-height: 48px;
    padding: 0 20px;
    font-size: 14px;
    width: 180px;
    border-radius: 8px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.store .inside_banner .search{
  margin-left: 0;
}
.store .nice-select.open:after{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.store .nice-select .option{
  font-size: 14px;
  padding: 0 20px;
}