.nice-select, #act_pattern {
  font-weight: 500;
  letter-spacing: -0.22px;
  color: var(--button-color);
  background: var(--button-bg);
  border: var(--input-border);
  border-radius: 6px;
  clear: both;
  display: flex;
  align-items: center;
  float: left;
  height: 32px;
  width: 100%;
  line-height: 30px;
  outline: none;
  padding-left: 12px;
  padding-right: 34px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#filters { width: 272px; }

.nice-select {
  cursor: pointer;
}

.nice-select .current, .nice-select .option {
  white-space: nowrap;
}

.nice-select a { 
  display: block;
  color: #fff;
}

input.date {
  color: var(--button-color);
  background: var(--button-bg);
  border: var(--input-border);
}

.nice-select.errorField, input.date.errorField { border: 1px solid rgba(206, 55, 82, 1) }

.nice-select:hover, input.date:hover { 
  background: #2C314D;
  color: rgba(255, 255, 255, 1);
}

.nice-select.open, input.date:focus {
  background: #2C314D;
  border-color: #0473FD;
  cursor: pointer;
}
.nice-select:after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Icons' !important;
  content: '\E01E';
  font-size: 15px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.nice-select.open:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.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 {

}

.nice-select .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 1);
  background: rgba(41, 41, 61, 0.8);
  border: 1px solid rgba(37, 37, 51, 1);
  border-radius: 6px;
  margin-top: 8px;
  opacity: 0;
  max-height: 300px;
  overflow-y: scroll;
  backdrop-filter: blur(5px);
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.15);
  -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 200ms cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 200ms cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list::-webkit-scrollbar { width: 8px; opacity: 1; }

.nice-select .list::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 8px;
  left: 2px solid rgba(41, 41, 61, 1);
  border-right: 2px solid rgba(41, 41, 61, 1);
}

.nice-select .list:hover .option:not(:hover) {
  background: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  list-style: none;
  outline: none;
  line-height: 24px;
  padding: 0 6px;
  border-radius: 4px;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background: rgba(4, 115, 253, 1);
}

.nice-select .option.selected {
  color: rgba(255, 255, 255, 0.4);
  background: transparent !important;
}

.nice-select .option.disabled {
  background: none;
  color: rgba(206, 55, 82, 1);
  cursor: default;
}

.nice-select.disabled {
  background: var(--button-bg);
  border: var(--input-border);
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.03);
  opacity: 0.5;
  pointer-events: none;
}

.hidden { display: none; }