@keyframes focus-shadow-pulse-inset {
  0% {
    box-shadow: inset 0 0 0 3px rgba( 0, 120, 212 ,  0.35 );
    box-shadow: inset 0 0 0 3px rgba( var(--palette-primary,0, 120, 212) ,  0.35 ); }
  50% {
    box-shadow: inset 0 0 0 3px rgba( 0, 120, 212 ,  0.15 );
    box-shadow: inset 0 0 0 3px rgba( var(--palette-primary,0, 120, 212) ,  0.15 ); }
  100% {
    box-shadow: inset 0 0 0 3px rgba( 0, 120, 212 ,  0.35 );
    box-shadow: inset 0 0 0 3px rgba( var(--palette-primary,0, 120, 212) ,  0.35 ); } }

/**
 * Browser specific mixin's
 */
.bolt-dropdown {
  border-radius: 4px;
  padding-top: 8px; }

.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-container {
  outline: none; }

.bolt-dropdown-filter {
  background: rgba(0, 0, 0, 0.06);
  background: var(--palette-black-alpha-6,rgba(0, 0, 0, 0.06));
  border-radius: 2px;
  border: 0; }
  .bolt-dropdown-filter .bolt-textfield-input {
    background: transparent; }

.bolt-dropdown-filter-container {
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  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-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: 16px 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: ms-focus-shadow-pulse-inset 4s ease-in-out infinite;
  box-shadow: inset 0 0 0 3px rgba(0, 120, 212, 0.35);
  box-shadow: inset 0 0 0 3px var(--focus-pulse-max-color,rgba(0, 120, 212, 0.35)); }
  @media screen and (-ms-high-contrast: active) {
    .bolt-focus-visible .bolt-dropdown .bolt-table-row.focused {
      animation: none; } }

.bolt-dropdown-action-right-button {
  margin: 8px 4px 0px 0px;
  align-self: flex-end; }

.bolt-dropdown-expandable-textfield-input {
  text-align: left; }

.bolt-dropdown-expandable-button-label {
  text-align: left; }

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

.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));
  height: 32px; }

.bolt-dropdown.filter-bar-item-bolt-button .icon-right {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55)); }

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