.nice-select {
  color: rgba(43, 52, 60, 0.8);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 126%;
    outline: none;
    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: 100%;
    z-index: 2;

  background: #FFF;
}
.nice-select>.current {
  display: block;
  width: 100%;
  background-color: #FFF;
    padding: 15px 13px;
    border: 1px solid #EEF0F5;
    border-radius: 8px;

}
.fg._error .nice-select>.current {
  border-color: #E30016;
  color: #E30016;
}
  .nice-select:after {
    border-bottom: 1px solid #232126;
    border-right: 1px solid #232126;
    content: '';
    display: block;
    height: 6px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 6px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .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: #FFF;
    border-radius: 0 0 5px 5px;
    border: 1px solid #EEF0F5;
    border-top: 0;
    box-sizing: border-box;
    opacity: 0;
    padding: 0;
    padding-top: 5px;
    pointer-events: none;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    right: 0;
    -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: 1; }
    [data-theme=dark] .nice-select .list {
      border: 1px solid rgba(255, 255, 255, 0.11);
    }
    .nice-select .list:hover .option:not(:hover, .selected) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 500;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding: 15px 13px;
    line-height: 126%;
    color: rgba(35, 33, 38, 0.8);
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:last-child {
      border-bottom: 0;
    }
    .nice-select .option:hover, .nice-select .option.focus {
      background-color: #FFC839!important;
    }
    .nice-select .option.selected.focus {
      /* font-weight: bold; */
      color: #2B343C;
      background-color: #FFC839!important;
    }

    .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; }