@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-breadcrumb-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 3px; }

.bolt-breadcrumb-with-items {
  min-width: 50px; }

.bolt-breadcrumb-divider-container {
  display: flex;
  align-items: center;
  align-self: stretch; }

.bolt-breadcrumb-divider {
  width: 20px;
  height: 24px;
  text-align: center;
  padding: 0px 8px;
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55)); }

.bolt-breadcrumb-forward-slash {
  font-size: 16px;
  cursor: default; }

.bolt-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  align-self: stretch; }
  .bolt-breadcrumb-item a {
    text-decoration: none; }
  .bolt-breadcrumb-item a:hover {
    text-decoration: none; }

.bolt-breadcrumb-hidden-element {
  display: none; }

.bolt-breadcrumb-item-text-container {
  display: flex;
  align-items: center;
  border-radius: 2px; }
  .bolt-breadcrumb-item-text-container:hover {
    background-color: rgba(0, 0, 0, 0.06);
    background-color: var(--palette-black-alpha-6,rgba(0, 0, 0, 0.06)); }
  .bolt-breadcrumb-item-text-container:active {
    background-color: rgba(0, 0, 0, 0.08);
    background-color: var(--palette-black-alpha-8,rgba(0, 0, 0, 0.08)); }

.bolt-breadcrumb-list-item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap; }

.bolt-breadcrumb-overflow {
  position: relative;
  display: flex;
  align-items: center; }

.bolt-breadcrumb-overflow-visible {
  min-width: 50px; }

.bolt-breadcrumb-item-text {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  padding: 4px 8px;
  max-width: 200px;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis; }
