@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-master-panel {
  background-color: rgba( 248, 248, 248 ,  1 );
  background-color: rgba( var(--palette-neutral-2,248, 248, 248) ,  1 );
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid var(--palette-black-alpha-8,rgba(0, 0, 0, 0.08)); }
  @media screen and (max-width: 1023px) {
    .bolt-master-panel:not(.show-on-small-screens) {
      display: none !important; } }
  @media screen and (min-width: 1920px) {
    .bolt-master-panel {
      width: 384px; } }
  @media screen and (max-width: 1919px) {
    .bolt-master-panel {
      width: 320px; } }
  @media screen and (max-width: 1365px) {
    .bolt-master-panel {
      width: 280px; } }

.bolt-master-panel-header {
  padding-top: 8px;
  padding-bottom: 24px;
  transition: padding 0.2s ease 0s;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: inherit; }
  .bolt-master-panel-header.has-search {
    padding-bottom: 8px; }
  .bolt-master-panel-header.content-scrolled {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--palette-black-alpha-8,rgba(0, 0, 0, 0.08));
    padding-bottom: 8px; }
    .bolt-master-panel-header.content-scrolled .bolt-master-panel-header-title {
      font-size: 15px; }
    .bolt-master-panel-header.content-scrolled .bolt-master-panel-header-secondary {
      display: none; }
    .bolt-master-panel-header.content-scrolled .bolt-master-panel-standard-header {
      padding-top: 0px; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .bolt-master-panel-header {
    position: relative;
    top: auto;
    z-index: inherit; } }

.bolt-master-panel-standard-header {
  transition: padding 0.2s ease 0s; }

.bolt-master-panel-header-title {
  transition: font-size 0.2s ease 0s; }

.bolt-master-panel-header-title,
.bolt-master-panel-subtitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.bolt-master-panel-search {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--palette-black-alpha-8,rgba(0, 0, 0, 0.08));
  padding: 9px 21px; }

.bolt-master-panel-content .bolt-list-row.selected {
  background-color: rgba( 234, 234, 234 ,  1 );
  background-color: rgba( var(--palette-neutral-8,234, 234, 234) ,  1 ); }
