.nice-select {
  -webkit-tap-highlight-color: transparent;
  /*! background-color: #F0F6FF; */
  /*! border: 2px solid #032664; */
  /*! box-sizing: border-box; */
  clear: both;
  cursor: pointer;
  display: block;
  /*! float: left; */
  font-family: inherit;
  /*! font-weight: normal; */
  outline: none;
  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: 100%;
  /*! line-height: 18px; */
  /*! height: 80px; */
  /*! display: flex; */
  align-items: center;
  /*! padding: 20px 30px; */
  /*! font-size: 20px; */
}

.nice-select:after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.15s ease-in-out;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Font Awesome 6 Pro';
  font-size: 16px;
  background-image: url(../images/icons/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.nice-select > span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  padding: 0 32px 0 12px;
}

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

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

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

.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 {
  background-color: var(--white-colour);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: auto;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  right: 0;
  padding: 0;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  /*! font-family: Gilroy; */
  /*! font-weight: 400; */
  /*! font-size: 14px; */
  /*! line-height: 24px; */
  /*! letter-spacing: 0%; */
}

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

.nice-select .option {
  cursor: pointer;
  list-style: none;
  outline: none;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--slate-900);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  padding: 8px 12px;
  border-radius: 0;
  font-size: 14px;
  line-height: 23px;
  /*! border-radius: 8px; */
  border-bottom: 1px solid var(--slate-300);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.nice-select .option:last-of-type {
  border-bottom: 0;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #ECECEC70;
  /*! color: #195ace; */
}

.nice-select .option.selected {
  /*! font-weight: bold; */
}

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

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

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


.nice-select.select-big {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nice-select.select-big.open::after {
  top: 3px;
}