.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #e5e5e5;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: RaisonnePro, sans-serif;
  font-size: 14px;
  font-weight: normal;
  outline: none;
  padding: 16px 42px 16px 16px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.nice-select:hover {
  border-color: #d8d8d8;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #e5e5e5;
}
.nice-select:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.24 13.7'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23000;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M10.09,13.7H10a1,1,0,0,1-.74-.38L.21,1.61A1,1,0,0,1,1.79.39l8.38,10.77L20.52.31A1,1,0,0,1,22,1.69L10.81,13.39A1,1,0,0,1,10.09,13.7Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #eaeaea;
  color: #e5e5e5;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: white;
}
.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 {
  opacity: 0;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  position: absolute;
  z-index: 1;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 1px 10px 0 rgba(0, 0, 0, 0.06), 0 4px 5px 0 rgba(0, 0, 0, 0.07);
  margin: 0;
  background-color: white;
  left: 0;
  top: calc(100% + 2px);
  padding: 0;
}
.nice-select .option {
  cursor: pointer;
  list-style: none;
  outline: none;
  line-height: 1;
  padding: 4px 16px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #e5e5e5;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #e5e5e5;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*# sourceMappingURL=nice-select.css.map */
