.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #00504b;
  color: #fff;
  border-radius: 8px;
  border: solid 2px #0530ad;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  line-height: 42px;
  outline: none;
  padding-left: 20px;
  padding-right: 38px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
  box-shadow: 0 2px 8px rgba(5,48,173,0.08);
}
.nice-select:hover, .nice-select:focus, .nice-select.open {
  border-color: #2f6d93;
  background: #2f6d93;
  color: #fff;
}
.nice-select:active {
  border-color: #001a5e;
}
.nice-select:after {
  border-bottom: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  content: '';
  display: block;
  height: 7px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: rotate(45deg);
  width: 7px;
  transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.disabled {
  border-color: #ededed;
  background: #e3ecff;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.small {
  font-size: 13px;
  height: 36px;
  line-height: 34px;
}
.nice-select .list {
  background-color: #00504b;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(5,48,173,0.12);
  margin-top: 6px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: scale(0.95) translateY(-10px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  min-width: 100%;
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 42px;
  list-style: none;
  min-height: 42px;
  outline: none;
  padding-left: 20px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
  color: #fff;
  background: #2f6d93;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #2f6d93;
  color: #fff;
}
.nice-select .option.selected {
  font-weight: bold;
  background: #001a5e;
  color: #fff;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #bfc8e6;
  cursor: default;
}