/***BEGIN EditableDropdown.css***/
.bolt-editable-dropdown-with-selection .bolt-textfield-input::placeholder {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9)); }

.bolt-editable-dropdown-with-selection .bolt-textfield-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9)); }

.bolt-editable-dropdown-with-selection .bolt-textfield-input::-moz-placeholder {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  opacity: 1; }

.bolt-editable-dropdown-with-selection .bolt-textfield-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9)); }

.bolt-editable-dropdown-focused-item {
  background: rgba(0, 0, 0, 0.04);
  background: var(--palette-black-alpha-4,rgba(0, 0, 0, 0.04)); }
  @media (forced-colors: active) {
    .bolt-editable-dropdown-focused-item {
      border-color: Highlight; } }

.bolt-list-row.selected .bolt-editable-dropdown-focused-item {
  background: rgba( 199, 224, 244 ,  1 );
  background: rgba( var(--palette-primary-tint-20,199, 224, 244) ,  1 ); }
  @media (forced-colors: active) {
    .bolt-list-row.selected .bolt-editable-dropdown-focused-item {
      background: Highlight; } }

.bolt-dropdown-expandable-text-field.bolt-editable-dropdown:not(.disabled) .bolt-dropdown-expandable-textfield-input {
  cursor: text; }
/***END EditableDropdown.css***/

/***BEGIN Dropdown.css***/
.bolt-dropdown {
  border-radius: 4px;
  padding-top: 8px;
  overflow-y: hidden; }
  .bolt-dropdown .bolt-list-row.selected .bolt-list-cell:first-child {
    border-left: 0px none transparent; }

.bolt-dropdown-list-box-container {
  max-height: 270px;
  padding-bottom: 8px; }

.bolt-dropdown .bolt-dropdown-list-box-container {
  overflow-x: hidden;
  overflow-y: auto; }

.bolt-dropdown-filter.bolt-textfield {
  background: rgba(0, 0, 0, 0.06);
  background: var(--palette-black-alpha-6,rgba(0, 0, 0, 0.06));
  border-radius: 2px;
  border-color: transparent; }
  .bolt-dropdown-filter.bolt-textfield .bolt-textfield-input {
    background: transparent; }

.bolt-dropdown-filter-container {
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px; }

.bolt-actions-container {
  border-top: 1px solid;
  border-top-color: rgba(0, 0, 0, 0.06);
  border-top-color: var(--palette-black-alpha-6,rgba(0, 0, 0, 0.06));
  padding: 8px;
  align-items: flex-start; }

.bolt-dropdown-no-items {
  padding: 6px 10px;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  text-align: center; }

.bolt-focus-visible .bolt-dropdown .bolt-table-row.focused {
  outline: none;
  animation: focus-shadow-pulse-inset 4s ease-in-out infinite;
  box-shadow: inset 0 0 0 3px rgba(0, 120, 212, 0.23), inset 0 0 0 1px rgba(0, 120, 212, 1);
  box-shadow: inset 0 0 0 3px var(--focus-pulse-max-color,rgba(0, 120, 212, 0.23)), inset 0 0 0 1px var(--focus-border-color,rgba(0, 120, 212, 1)); }
  @media (forced-colors: active) {
    .bolt-focus-visible .bolt-dropdown .bolt-table-row.focused {
      animation: none; } }

_::-webkit-full-page-media,
_:future,
:root .bolt-focus-visible .bolt-dropdown .bolt-table-row.focused {
  outline-style: auto; }

.bolt-dropdown-action-right-button {
  margin: 8px 4px 0px 0px;
  align-self: flex-end; }

.bolt-dropdown-expandable-textfield-input {
  text-align: left;
  min-width: 0; }
  @media (forced-colors: active) {
    .bolt-dropdown-expandable-textfield-input {
      forced-color-adjust: none;
      border-color: highlight; } }
  @media screen and (-ms-high-contrast: black-on-white) {
    .bolt-dropdown-expandable-textfield-input {
      outline: 1px solid highlight;
      outline-offset: 1px; } }
  @media (forced-colors: active) {
    .bolt-dropdown-expandable-textfield-input {
      background: window;
      color: windowtext; } }

.bolt-dropdown-expandable-textfield-input:empty {
  min-height: 29px !important; }

.bolt-dropdown-expandable-textfield-input::-moz-focus-inner {
  border: 0; }

.bolt-dropdown-expandable-textfield-input.bolt-textfield-input {
  background-color: transparent; }

.bolt-dropdown-expandable-button-label {
  text-align: left; }

.bolt-dropdown-filter-bar-item {
  max-width: 100%; }
  .bolt-dropdown-filter-bar-item .bolt-button {
    max-width: 100%; }

.bolt-dropdown-filter-bar-item .bolt-dropdown-expandable-button-label {
  max-width: 340px;
  font-weight: normal; }
  .bolt-dropdown-filter-bar-item .bolt-dropdown-expandable-button-label .bolt-dropdown-filter-bar-item-selected-text {
    color: rgba(0, 0, 0, .9);
    color: var(--text-primary-color,rgba(0, 0, 0, .9)); }
    @media (forced-colors: active) {
      .bolt-dropdown-filter-bar-item .bolt-dropdown-expandable-button-label .bolt-dropdown-filter-bar-item-selected-text {
        color: windowText; } }

.bolt-dropdown-filter-bar-item-selected-text {
  font-weight: 600; }

.bolt-dropdown-filter-bar-item-placeholder {
  white-space: pre; }

.bolt-dropdown-filter-bar-item .bolt-button {
  background: transparent;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55)); }
  .bolt-dropdown-filter-bar-item .bolt-button.active {
    color: rgba(0, 0, 0, .9);
    color: var(--text-primary-color,rgba(0, 0, 0, .9)); }

.bolt-dropdown-pivot.bolt-button.subtle {
  font-weight: normal; }
  .bolt-dropdown-pivot.bolt-button.subtle:hover {
    background: transparent; }

.bolt-dropdown-pivot-selected {
  border-bottom: 2px solid rgba(0, 120, 212, 1);
  border-bottom: 2px solid var(--communication-background,rgba(0, 120, 212, 1));
  font-weight: 600; }

.bolt-dropdown-header {
  padding: 0 4px 4px 12px; }

.bolt-dropdown-header-text {
  padding: 6px 0; }

.bolt-dropdown-header-container {
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--palette-black-alpha-6,rgba(0, 0, 0, 0.06)); }

.bolt-dropdown-expandable-text-field:not(.disabled) {
  cursor: pointer; }
  .bolt-dropdown-expandable-text-field:not(.disabled) .bolt-dropdown-expandable-textfield-input {
    cursor: pointer; }
/***END Dropdown.css***/

/***BEGIN ExpandableTextField.css***/
.bolt-expandable-textfield-icon:not(.disabled) {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9)); }
/***END ExpandableTextField.css***/

/***BEGIN ListBox.css***/
.bolt-list-box-multi-select-row.bolt-list-row.selected {
  background: transparent; }
  .bolt-list-box-multi-select-row.bolt-list-row.selected:hover {
    background: rgba(0, 0, 0, .02);
    background: var(--component-grid-row-hover-color,rgba(0, 0, 0, .02)); }
  @media (forced-colors: active) {
    .bolt-list-box-multi-select-row.bolt-list-row.selected {
      background: transparent; } }

.bolt-list-box-header-row {
  font-weight: 600;
  cursor: text; }
  .bolt-list-box-header-row.bolt-list-row:hover {
    background: transparent; }

.bolt-list-box-text .bolt-table-cell-content {
  padding: 5px 0; }

.bolt-list-box-text-single-select.bolt-list-cell {
  padding: 0 12px; }

.bolt-list-box-text-multi-select {
  padding-right: 12px; }

.bolt-list-box-divider-multi-select {
  padding-left: 12px; }

.bolt-list-box-divider-row,
.bolt-list-box-loading-row {
  cursor: text; }
  .bolt-list-box-divider-row.bolt-list-row:hover,
  .bolt-list-box-loading-row.bolt-list-row:hover {
    background: transparent; }

.bolt-list-box-divider {
  margin-bottom: 1px;
  background-color: rgba(0, 0, 0, 0.10);
  background-color: var(--palette-black-alpha-10,rgba(0, 0, 0, 0.10));
  height: 1px; }

.bolt-focus-visible .bolt-table.bolt-list-box .bolt-list-row:focus .bolt-list-cell {
  border-color: transparent; }

.bolt-list-box-loading {
  padding: 8px 0px; }
  .bolt-list-box-loading .bolt-spinner {
    flex-direction: row; }
  .bolt-list-box-loading .bolt-spinner-circle {
    margin-right: 10px; }
  .bolt-list-box-loading .bolt-spinner-label {
    margin-top: 0px; }

.bolt-list-row.bolt-list-box-item-disabled {
  color: rgba(0, 0, 0, .38);
  color: var(--text-disabled-color,rgba(0, 0, 0, .38)); }
  @media (forced-colors: active) {
    .bolt-list-row.bolt-list-box-item-disabled {
      color: graytext; } }

.bolt-list-row.bolt-list-box-item-disabled:hover {
  background: transparent;
  cursor: text; }

.bolt-list-box-cell-container {
  width: 100%; }

@media (forced-colors: active) {
  .bolt-focus-visible .bolt-list-box-row:focus {
    font-weight: bold;
    color: highlight; }
    .bolt-focus-visible .bolt-list-box-row:focus .bolt-table-cell-select,
    .bolt-focus-visible .bolt-list-box-row:focus .bolt-list-box-text:not(.bolt-list-box-text-multi-select) {
      border-left: 2px solid highlight; }
    .bolt-focus-visible .bolt-list-box-row:focus .bolt-list-box-text {
      border-right: 2px solid highlight; } }

@media (forced-colors: active) {
  .bolt-list-box-row .bolt-table-cell-select,
  .bolt-list-box-row .bolt-list-box-text:not(.bolt-list-box-text-multi-select) {
    border-left: 2px solid transparent; }
  .bolt-list-box-row .bolt-list-box-text {
    border-right: 2px solid transparent; } }

body.ms-vss-web-vsts-theme-hc-dark .bolt-list-box-row:hover, body.ms-vss-web-vsts-theme-hc-dark .bolt-list-box-row:focus {
  background-color: rgba(0, 120, 212, 1);
  background-color: var(--focus-border-color,rgba(0, 120, 212, 1));
  color: rgba(255, 255, 255, 1);
  color: var(--background-color,rgba(255, 255, 255, 1)); }

body.ms-vss-web-vsts-theme-hc-light .bolt-list-box-row:hover, body.ms-vss-web-vsts-theme-hc-light .bolt-list-box-row:focus {
  background-color: rgba(0, 120, 212, 1);
  background-color: var(--focus-border-color,rgba(0, 120, 212, 1));
  color: rgba(255, 255, 255, 1);
  color: var(--background-color,rgba(255, 255, 255, 1)); }

@media (forced-colors: active) {
  .bolt-list-box {
    border: 1px solid windowText; } }

.dropdown-list-component-enabled .dropdown-list .checkmark-icon {
  padding-right: 12px; }

.dropdown-list-component-enabled .dropdown-list .bolt-header-cell {
  width: auto !important;
  min-width: 20px !important; }
/***END ListBox.css***/

