@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-label-autocomplete {
  position: relative;
  min-width: 128px;
  min-height: 20px;
  flex-shrink: 0; }
  .bolt-label-autocomplete input {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent;
    z-index: 2; }
    .bolt-label-autocomplete input::-ms-clear {
      display: none; }
    .bolt-label-autocomplete input.suggestion {
      color: rgba(0, 0, 0, .55);
      color: var(--text-secondary-color,rgba(0, 0, 0, .55));
      z-index: 1; }

.bolt-label-suggestions-callout {
  border-radius: 4px; }
  .bolt-label-suggestions-callout .bolt-callout-content {
    width: 248px;
    border-radius: 4px; }

.bolt-label-suggestions-container {
  padding: 8px 0px; }
  .bolt-label-suggestions-container .bolt-colorpip .bolt-colorpip-content {
    background-color: rgba( 239, 239, 239 ,  1 );
    background-color: rgba( var(--palette-neutral-6,239, 239, 239) ,  1 ); }
  .bolt-label-suggestions-container .bolt-label-suggestions-row {
    height: 32px; }
    .bolt-label-suggestions-container .bolt-label-suggestions-row.selected {
      background-color: rgba( 222, 236, 249 ,  1 );
      background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) ,  1 ); }
    .bolt-label-suggestions-container .bolt-label-suggestions-row.clickable {
      cursor: pointer; }
    .bolt-label-suggestions-container .bolt-label-suggestions-row .bolt-label-suggestions-row--content {
      display: flex;
      flex: 1;
      min-width: 0px;
      height: 32px;
      align-items: center;
      font-size: 14px; }
      .bolt-label-suggestions-container .bolt-label-suggestions-row .bolt-label-suggestions-row--content span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
    .bolt-label-suggestions-container .bolt-label-suggestions-row .bolt-label-suggestions-icon {
      margin: 0px 8px;
      font-size: 16px;
      display: flex;
      align-items: center; }
  .bolt-label-suggestions-container .bolt-suggestions-separator {
    height: 1px;
    margin: 7px 12px 8px;
    background-color: rgba( 218, 218, 218 ,  1 );
    background-color: rgba( var(--palette-neutral-10,218, 218, 218) ,  1 ); }
  .bolt-label-suggestions-container .bolt-colorswatchpicker.selected {
    background-color: rgba( 222, 236, 249 ,  1 );
    background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) ,  1 ); }
  .bolt-label-suggestions-container .bolt-label-suggestions-list {
    max-height: 208px;
    overflow-y: auto; }
