@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-contextual-menu {
  border-radius: 4px;
  max-width: 320px;
  overflow-x: hidden;
  overflow-y: auto; }
  @media screen and (-ms-high-contrast: active) {
    .bolt-contextual-menu {
      border: 1px solid; } }

.overflow .bolt-contextual-menu {
  overflow-y: scroll; }

.bolt-menu-container {
  outline: none; }

.bolt-menu {
  border-collapse: separate;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  display: table;
  table-layout: auto;
  font-size: 14px; }

.bolt-menuitem-row {
  background-color: transparent;
  border-radius: 3px;
  color: inherit;
  display: table-row;
  outline: none;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap; }
  @media screen and (-ms-high-contrast: active) {
    .bolt-menuitem-row {
      border: 1px solid transparent; } }
  .bolt-menuitem-row.focused {
    background-color: transparent;
    outline: none; }
    @media screen and (-ms-high-contrast: active) {
      .bolt-menuitem-row.focused {
        border-color: windowtext; } }
  .bolt-menuitem-row:hover, .bolt-menuitem-row.expanded {
    background-color: rgba(0, 0, 0, 0.04);
    background-color: var(--palette-black-alpha-4,rgba(0, 0, 0, 0.04)); }
  @media screen and (-ms-high-contrast: active) {
    .bolt-menuitem-row.expanded {
      border-color: windowtext; }
    .bolt-menuitem-row:hover {
      border-color: highlight; } }
  .bolt-menuitem-row.disabled {
    color: rgba(0, 0, 0, .38);
    color: var(--text-disabled-color,rgba(0, 0, 0, .38)); }
    .bolt-menuitem-row.disabled:hover {
      background-color: transparent; }

.bolt-focus-visible .bolt-menuitem-row.focused {
  animation: focus-shadow-pulse-inset 4s ease-in-out infinite;
  background-color: rgba(0, 0, 0, 0.04);
  background-color: var(--palette-black-alpha-4,rgba(0, 0, 0, 0.04));
  outline: none; }

a.bolt-menuitem-row:not(.ms-Button),
a.bolt-menuitem-row:not(.ms-Button):visited,
a.bolt-menuitem-row:not(.ms-Button):hover {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  text-decoration: none; }

.bolt-menuitem-header {
  font-weight: 600; }

.bolt-menuitem-divider:hover,
.bolt-menuitem-header:hover {
  background-color: transparent; }
  @media screen and (-ms-high-contrast: active) {
    .bolt-menuitem-divider:hover,
    .bolt-menuitem-header:hover {
      border: 1px solid transparent; } }

.bolt-menuitem-cell {
  padding: 0;
  vertical-align: middle; }
  .bolt-menuitem-cell:first-child .bolt-menuitem-cell-content {
    padding-right: 0px; }
  .bolt-menuitem-cell:last-child .bolt-menuitem-cell-content {
    padding-left: 0px; }

.bolt-menuitem-cell-content {
  justify-content: center;
  padding: 6px; }

.bolt-menuitem-cell-text {
  justify-content: flex-start;
  max-width: 225px;
  min-width: 180px; }

.bolt-menuitem-cell-secondary {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55)); }

.bolt-menuitem-cell-submenu {
  font-size: 12px; }

.bolt-menuitem-divider-content {
  background-color: rgba(0, 0, 0, 0.20);
  background-color: var(--palette-black-alpha-20,rgba(0, 0, 0, 0.20));
  height: 1px;
  margin: 6px 6px;
  padding: 0px; }

.bolt-menu-spacer {
  padding: 4px; }
