.nice-select {
  min-width:126px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border: solid 1px #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 48px;
  line-height: 46px;
  outline: none;
  padding-left: 16px;
  padding-right: 38px;
  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: auto;
}

.nice-select:hover {
  border: 2px solid #1a7cd2;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border: 1px solid #cccccc;
}

.nice-select:after {
  content:'';
  display: block;
  margin-top: -12px;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 24px;
  height: 24px;
  background: url("../images/common/guide/bgArr_down.png") no-repeat 0 0;
  border-bottom: 0;
  border-right: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.nice-select.open:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background: url("../images/common/guide/bgArr_up.png") no-repeat 0 0;
}

.nice-select.open .list {
  width: 280px;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}

.nice-select.disabled {
  background-color: #f2f2f2;
  border-color: #ccc;
  color: #bfbfbf;
  pointer-events: none;
}

.nice-select.disabled:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background: url("../images/common/guide/bgArr_down_disabled.png") no-repeat 0 0;
}

.nice-select.readonly {
  background-color: #f2f2f2;
  border-color: #ccc;
  color: #333333;
  pointer-events: none;
}

.nice-select.readonly:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background: url("../images/common/guide/bgArr_down_disabled.png") no-repeat 0 0;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: -1px !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 1px;
  opacity: 0;
  height: 147px;
  border:1px solid #ccc;
  overflow-y: auto;
  overflow-x:hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 1px);
  left: -2px;
  z-index: 9;
}
.nice-select .list li {position:relative; box-sizing: border-box;}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 48px;
  list-style: none;
  min-height: 48px;
  outline: none;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-bottom: solid 1px #e6e6e6;
}

.nice-select .option:last-child {
  border: 0;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  background: url("../images/common/guide/bgArr_selectd.png") no-repeat calc(100% - 6px) center;
  color: #006ecd;
}

.nice-select .option.disabled {
  background-color: #f7f7f7;
  color: #999;
  cursor: default;
}

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

.no-csspointerevents .nice-select.open .list {
  display: block;
}
/*# sourceMappingURL=nice-select.css.map */