.bolt-callout {
  background-color: transparent;
  pointer-events: auto; }

/* NOTE: Create a element that overlaps the container by 5000px on all sides.
 * This allows callouts to layout naturally and not be influenced by edges of
 * the window.
 */
.bolt-portal.bolt-layout-relative {
  bottom: -5000px;
  left: -5000px;
  right: -5000px;
  top: -5000px; }

.bolt-light-dismiss {
  pointer-events: auto; }

.bolt-callout-modal {
  background-color: rgba(0, 0, 0, 0.20);
  background-color: var(--palette-black-alpha-20,rgba(0, 0, 0, 0.20)); }
  @media (forced-colors: active) {
    .bolt-callout-modal {
      background: transparent; } }

.bolt-callout-content {
  background-color: rgba(255, 255, 255, 1);
  background-color: var(--callout-background-color,rgba(255, 255, 255, 1));
  z-index: 1; }

.bolt-callout-shadow {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, .132);
  box-shadow: 0px 6px 12px var(--callout-shadow-color,rgba(0, 0, 0, .132)); }
  body.ms-vss-web-vsts-theme-hc-dark .bolt-callout-shadow {
    box-shadow: none;
    border: 2px solid rgba(0, 120, 212, 1);
    border: 2px solid var(--focus-border-color,rgba(0, 120, 212, 1)); }
  body.ms-vss-web-vsts-theme-hc-light .bolt-callout-shadow {
    box-shadow: none;
    border: 2px solid rgba(0, 120, 212, 1);
    border: 2px solid var(--focus-border-color,rgba(0, 120, 212, 1)); }

.bolt-callout-extra-large {
  width: 800px; }
  @media screen and (max-width: 1023px) {
    .bolt-callout-extra-large {
      max-width: 800px;
      min-width: 80%;
      width: auto; } }

.bolt-callout-large {
  width: 640px; }
  @media screen and (max-width: 1023px) {
    .bolt-callout-large {
      max-width: 640px;
      min-width: 80%;
      width: auto; } }

.bolt-callout-medium {
  width: 480px; }

.bolt-callout-small {
  width: 320px; }

.bolt-callout-auto {
  width: auto; }
