.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 0;
  border: solid 1px #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: normal;
  height: 48px;
  line-height: 46px;
  outline: none;
  padding-left: 0;
  padding-right: 12;
  position: relative;
  -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;
  padding-top: 15px;
  position: relative;
}

.nice-select:hover {
  border-color: #495e6d;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #495e6d;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nice-select:after {
  font-family: 'fontAwesome';
  content: "\f107";
  color: #495e6d;
  padding: 12px 7px;
  position: absolute;
  right: 5px;
  top: 0;
  z-index: 1;
  text-align: center;
  height: 100%;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 2.25rem;
  pointer-events: none;
}

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

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

.nice-select.disabled {
  border-color: #e2e2e2;
  color: #dddddd;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #7892a4;
}

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

.nice-select.wide .list {
  left: 0;
  right: 0;
}

.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-divider {
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: white;
  margin-left: 0;
  left: 0;
  z-index: 10;
}

.nice-select .list {
  margin-top: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  padding: 0;
  outline: 2px solid #495e6d;
  z-index: 2;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 46px;
  list-style: none;
  min-height: 46px;
  outline: none;
  padding-left: 0;
  padding-right: 11;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  font-weight: normal;
  color: white;
  background: #495e6d;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #dddddd;
  cursor: default;
}

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

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