.picker-loading {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.picker {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}

.picker > div {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}

.picker .picker-input,
.picker .picker-separator {
  flex-grow: 0;
  height: auto;
}

.picker .picker-list {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.picker .picker-item-wrapper {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  height: auto;
  width: auto;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  text-align: initial;
  border-radius: 0;
  width: 100%;
  line-height: inherit;
}

.picker .picker-item {
  width: 100%;
  display: flex;
  flex-grow: 1;
  outline: 0;
}

.picker .picker-item.selected {
  color: rgba(0, 120, 212, 1);
  color: var(--communication-background,rgba(0, 120, 212, 1));
}

.picker .picker-item.picker-empty-item {
  color: rgba( 166, 166, 166 ,  1 );
  color: rgba( var(--palette-neutral-30,166, 166, 166) ,  1 );
  font-style: italic;
}

.picker .picker-item .picker-content {
  flex-grow: 1;
  align-self: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.picker .picker-item .picker-actions {
  flex-grow: 0;
  overflow: hidden;
}

.picker .picker-item .picker-actions .selection {
  font-size: 20px;
  color: rgba(0, 120, 212, 1);
  color: var(--communication-background,rgba(0, 120, 212, 1));
}

.picker .picker-item .picker-actions .container {
  display: inline-block;
  overflow: hidden;
}

.picker .picker-item .picker-actions .selected-fade .container {
  width: 0;
  height: 0;
}

.picker .picker-item .picker-actions .selected-fade-active .container {
  transition: height ease-out .1s, width ease-in-out .4s;
  width: 100%;
  height: 100%;
}

.filter-box {
  font-size: 14px;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  position: relative;
  border:  1px solid;
  border-color: rgba( 43, 136, 216 ,  1 );
  border-color: rgba( var(--palette-primary-tint-10,43, 136, 216) ,  1 );
}

.filter-box.is-active {
  border-color: rgba( 16, 110, 190 ,  1 );
  border-color: rgba( var(--palette-primary-shade-10,16, 110, 190) ,  1 );
}

.filter-box.is-active .filter-box-field {
  padding-left: 8px;
}

.filter-box.is-active .filter-box-icon {
  display: none;
}

.filter-box.is-disabled {
  border-color: rgba( 244, 244, 244 ,  1 );
  border-color: rgba( var(--palette-neutral-4,244, 244, 244) ,  1 );
}

.filter-box.is-disabled .filter-box-icon {
  color: rgba( 200, 200, 200 ,  1 );
  color: rgba( var(--palette-neutral-20,200, 200, 200) ,  1 );
}

.filter-box.is-disabled .filter-box-field {
  background-color: rgba( 244, 244, 244 ,  1 );
  background-color: rgba( var(--palette-neutral-4,244, 244, 244) ,  1 );
  pointer-events: none;
  cursor: default;
}

.filter-box.can-clear .filter-box-clearButton {
  display: block;
}

.filter-box:hover .filter-box-field {
  border-color: rgba( 0, 69, 120 ,  1 );
  border-color: rgba( var(--palette-primary-shade-30,0, 69, 120) ,  1 );
}

.filter-box:hover .filter-box-label {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
}

.filter-box:hover .filter-box-label .filter-box-icon {
  color: rgba( 0, 69, 120 ,  1 );
  color: rgba( var(--palette-primary-shade-30,0, 69, 120) ,  1 );
}

input.filter-box-field {
  position: relative;
  border: none;
  outline: transparent 1px solid;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  height: 43px;
  line-height: 43px;
  padding: 6px 38px 7px 31px;
  width: 100%;
  transition: padding-left .16s;
}

input.filter-box-field:focus {
  padding-right: 32px;
}

input.filter-box-field::-ms-clear {
  display: none;
}

.bowtie-icon.filter-box-clearButton {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  height: auto;
  width: auto;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  text-align: initial;
  border-radius: 0;
  display: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 45px;
  line-height: 45px;
  vertical-align: top;
  color: rgba(0, 90, 158, 1);
  color: var(--communication-foreground,rgba(0, 90, 158, 1));
  text-align: center;
  font-size: 18px;
}

.bowtie-icon.filter-box-icon {
  position: absolute;
  left: 8px;
  top: 0;
  height: 45px;
  line-height: 45px;
  vertical-align: top;
  width: 16px;
  color: rgba(0, 90, 158, 1);
  color: var(--communication-foreground,rgba(0, 90, 158, 1));
  margin-right: 6px;
  font-size: 18px;
}
