@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-list {
  border-spacing: 0 0;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  cursor: default;
  display: table;
  table-layout: fixed;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  /* IE11: Limit the width of the list to prevent it from growing out of control */ }
  @media screen and (min-width: 0\0) {
    .bolt-list {
      max-width: 100vw; } }

.bolt-list.bolt-list {
  border-collapse: separate; }

.bolt-list-row {
  display: table-row;
  outline: none;
  text-decoration: none;
  transition: background 80ms linear; }
  .bolt-list-row:hover {
    background-color: rgba(0, 0, 0, .02);
    background-color: var(--component-grid-row-hover-color,rgba(0, 0, 0, .02)); }
    @media screen and (-ms-high-contrast: active) {
      .bolt-list-row:hover {
        border-color: highlight; } }
    @media screen and (-ms-high-contrast: black-on-white) {
      .bolt-list-row:hover {
        outline: 2px solid highlight;
        outline-offset: 1px; } }
    .bolt-list-row:hover .bolt-list-cell-content-reveal {
      visibility: visible; }
  .bolt-list-row.focused .bolt-list-cell-content-reveal {
    visibility: visible; }
  .bolt-list-row.selected {
    background-color: rgba(222, 236, 249, 1);
    background-color: var(--component-grid-selected-row-color,rgba(222, 236, 249, 1));
    outline: none; }
  .bolt-list-row:hover.selected {
    background-color: rgba(222, 236, 249, 1);
    background-color: var(--component-grid-action-selected-cell-hover-color,rgba(222, 236, 249, 1)); }
  .bolt-list-row.single-click-activation {
    cursor: pointer; }

.bolt-list-row-loading:hover {
  background-color: initial;
  cursor: default; }

.bolt-list-cell {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  color: inherit;
  display: table-cell;
  overflow: hidden;
  position: relative;
  text-align: left;
  text-decoration: none;
  white-space: nowrap; }
  .bolt-list-cell:first-child {
    border-left: 1px solid transparent; }
  .bolt-list-cell:last-child {
    border-right: 1px solid transparent; }

.bolt-list-cell-content-reveal {
  visibility: hidden; }

.bolt-list-cell-spacer {
  padding: 0; }

.bolt-list-cell-text {
  overflow: hidden; }

.bolt-focus-visible .bolt-list-row:focus .bolt-list-cell {
  border-color: rgba(0, 120, 212, 1);
  border-color: var(--component-grid-focus-border-color,rgba(0, 120, 212, 1)); }

@media screen and (-ms-high-contrast: active) {
  .bolt-focus-visible .bolt-list-row:focus {
    border-color: highlight; } }

@media screen and (-ms-high-contrast: black-on-white) {
  .bolt-focus-visible .bolt-list-row:focus {
    outline: 2px solid highlight;
    outline-offset: 1px; } }

.bolt-list-overlay-container {
  width: 100%; }

.bolt-list-overlay {
  pointer-events: none;
  width: 100%; }

.bolt-list-drag-source-item {
  background-color: rgba(255, 255, 255, 0.40);
  background-color: var(--component-grid-drag-source-color,rgba(255, 255, 255, 0.40)); }

.bolt-drag-image-portal {
  z-index: 100; }

.bolt-drag-image {
  background-color: rgba(255, 255, 255, 1);
  background-color: var(--callout-background-color,rgba(255, 255, 255, 1));
  height: 40px;
  width: 320px;
  padding: 0px 8px; }
