/* Minimal nice-select core styles for custom select dropdown */
.nice-select {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  height: 42px;
  line-height: 40px;
  padding: 0 30px 0 18px;
  position: relative;
  outline: none;
  user-select: none;
  min-width: 120px;
}
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.nice-select.open:after {
  transform: translateY(-50%) rotate(-135deg);
}
.nice-select .list {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68,68,68,0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 9;
  transition: all 0.2s cubic-bezier(0.5,0,0,1.25), opacity 0.15s ease-out;
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  min-height: 40px;
  padding: 0 29px 0 18px;
  text-align: left;
  transition: background 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background: #f6f6f6;
}
.nice-select .option.disabled {
  background: transparent;
  color: #999;
  cursor: default;
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
/* Optional: support for .wide, .right, .small if used */
.nice-select.wide {
  width: 100%;
}
.nice-select.right {
  float: right;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
/* Pointer events fallback for old browsers */
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
