/* 
topnav.css
This CSS styles the TopNav in all sections of the site (including both Material and Bootstrap areas)

STRUCTURE
  :root VARS
  #topnav (z3)
    .primary-nav
      .mobile-header
      .category-menu
      .search-box
      #searchPopover
      .account-box
      #accountPopover
    .secondary-nav (z3)
    .tertiary-nav
    #historyPopover
  #statusbox (z3)
*/

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

:root {
  /* React Theme */
  --rt-fg-primary: #171717;
  --rt-fg-secondary: #525252;
  --rt-fg-tertiary: #737373;
  --rt-bg-base: #fff;
  --rt-bg-base-alt: #fafafa;
  --rt-bg-prime: #f5f5f5;
  --rt-bg-prime-alt: #ededed;
  --rt-bg-deep: #e5e5e5;
  --rt-bg-deep-alt: #e6e6e6;
  --rt-bd-faint: #f5f5f5;
  --rt-bd-subtle: #e5e5e5;
  --rt-bd-strong: #a3a3a3;
  --rt-text-xxs: 10px;
  --rt-text-xs: 12px;
  --rt-text-sm: 14px;
  --rt-text-md: 16px;
  --rt-gutter: 8px;
  --rt-round-sm: 4px; 
  --rt-round-lg: 8px;
  --rt-breakpoint-sm: 640px;
  --rt-breakpoint-md: 768px;
  --rt-breakpoint-lg: 1024px;
  --rt-backdrop-color: rgba(0, 0, 0, 0.5);
  --rt-backdrop-filter: blur(3px);
  --rt-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
  --rt-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
  /* TopNav Vars */
  --tn-primary-nav-height: 64px;
  --tn-secondary-nav-height: 48px;
  --tn-tertiary-nav-height: 36px;
  --tn-banner-space: 40px;
  --tn-menu-group-width: 272px;
  --tn-menu-group-max-height: 344px;
  --tn-search-input-reduced-width: 144px;
  --tn-search-input-width: 184px;
  --tn-search-popover-width: 248px;
  --tn-history-popover-width: 260px;
  --tn-input-height: 36px;
}

/* Utility: .mobile-only */
@media only screen and (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

/* Utility: .desktop-only */
@media only screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* Utility: sr-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Set Content Height for Scrolling */
/* No Banner, No Secondary Nav */
#topnav ~ #pcs-content > main.main-content {
    height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-tertiary-nav-height));
}
/* Has Banner, No Secondary Nav */
#topnav.has-banner ~ #pcs-content > main.main-content {
    height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-banner-space) - var(--tn-tertiary-nav-height));
}
/* No Banner, Has Secondary Nav */
#topnav.has-secondary-nav ~ #pcs-content > main.main-content {
    height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-secondary-nav-height) - var(--tn-tertiary-nav-height));
}
/* Has Banner, Has Secondary Nav */
#topnav.has-secondary-nav.has-banner ~ #pcs-content > main.main-content {
    height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-banner-space) - var(--tn-secondary-nav-height) - var(--tn-tertiary-nav-height));
}

/* Topnav */
#topnav {
  z-index: 3;
  position: relative;
  color: var(--mdc-theme-on-primary-contrast);
  background-color: var(--mdc-theme-primary);
  font-family: "Red Hat Display", sans-serif;
  font-size: var(--rt-text-sm);
  line-height: normal;
}

/* Ensure Width Calculations are the same in materialize and bootstrap environment */
#topnav,
#topnav * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Primary Nav */
#topnav .primary-nav {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: end;
  height: var(--tn-primary-nav-height);
}

/* Banner Container */
#topnav .banner-container {
  display: none;
}
#topnav.has-banner .banner-container {
  display: block;
  position: absolute;
  inset: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  background-color: var(--mdc-theme-primary);
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  background-blend-mode: luminosity;
  /* background-image set by userdefined styles */
}

/* Nav with Banner is taller (On Desktop) */
@media only screen and (min-width: 1025px) {
  #topnav.has-banner .primary-nav {
    height: calc(var(--tn-primary-nav-height) + var(--tn-banner-space));
  }

  #topnav.has-banner .primary-nav ul.category-menu li a {
    border-top-left-radius: var(--rt-round-sm);
    border-top-right-radius: var(--rt-round-sm);
  }

  #topnav.has-banner .primary-nav #searchPopover {
    top: calc(var(--tn-primary-nav-height) + var(--tn-banner-space) - var(--rt-gutter));
    height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-banner-space) + var(--rt-gutter));
  }

  #topnav.has-banner ul.secondary-nav > li .megamenu {
    top: calc(var(--tn-primary-nav-height) + var(--tn-secondary-nav-height) + var(--tn-banner-space) - 4px);
    max-height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-secondary-nav-height) - var(--tn-banner-space));
  }

  #topnav.has-banner ul#accountPopover {
    inset: calc(var(--tn-primary-nav-height) + var(--tn-banner-space) - var(--rt-gutter)) calc(3 * var(--rt-gutter)) auto auto;
  }
}

/* Mobile Header */
#topnav .mobile-header {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  margin-right: auto;
  cursor: pointer;
}

/* Category Menu Mobile */
@media only screen and (max-width: 768px) {
  #topnav ul.category-menu {
    display: none; /* Hide by default, Toggled by JS */
    z-index: 4; /* Appear above content and other nav elements */
    position: fixed;
    top: var(--tn-primary-nav-height);
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--tn-primary-nav-height));
    margin: 0;
    padding: 0;
    padding-bottom: var(--rt-gutter);
    overflow-y: auto;
    list-style-type: none;
    background-color: var(--mdc-theme-primary);
    box-shadow: var(--rt-shadow-lg);
  }

  #topnav ul.category-menu li {
    margin: 0;
    padding: 0;
  }

  #topnav ul.category-menu li a {
    display: flex;
    align-items: center;
    height: calc(6 * var(--rt-gutter));
    padding: 0;
    padding-left: calc(5 * var(--rt-gutter));
    border-top: 1px solid var(--mdc-theme-secondary);
    color: var(--mdc-theme-on-primary-contrast);
    text-decoration: none;
    font-weight: 600;
    background-color: var(--mdc-theme-primary);
  }

  #topnav ul.category-menu li:last-child a {
    border-bottom: 1px solid var(--mdc-theme-secondary);
  }

  #topnav ul.category-menu li a.selected {
    border-left: 8px solid var(--mdc-theme-secondary);
    padding-left: calc(4 * var(--rt-gutter));
  }
}

/* Logo & Home Link */
#topnav .logo-container {
  display: block;
  position: relative;
  width: 88px;
  height: 100%;
  margin: 0 calc(2 * var(--rt-gutter));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  /* Cannot set a background-image here, see "Force Default Logo" below. */
}

/*
Force Default Logo: 
Problem: Setting a default logo in this CSS is overridden by "../custom/" in userdefined.css when there is no user defined logo (!important is used there)
Solution: Add .force-default-logo with javascript if there is no custom logo to increase specificity above the rule in userdefined.css (Search materialise.js for "force-default-logo")
*/
#topnav .logo-container.force-default-logo {
  background-image: url(../images/facts-logo-bw.png) !important;
}

#topnav .logo-container:hover {
  scale: 1.05;
  transition-duration: 100ms;
  filter: drop-shadow(var(--rt-shadow-lg));
}

#topnav.has-banner .logo-container {
  margin: 0 calc(3 * var(--rt-gutter));
}

/* Search & Account Menu Container */
#topnav .search-account-cointainer {
  display: flex;
  position: absolute;
  right: 0;
  height: var(--tn-primary-nav-height);
  align-items: center;
}

/* Category Menu Desktop */
@media only screen and (min-width: 769px) {
  #topnav ul.category-menu {
    display: flex !important; /* !important to override category menu toggling in JS - on desktop the menu is always visible */
    position: relative;
    align-items: center;
    height: var(--tn-primary-nav-height);
    margin: 0 auto 0 0;
    padding: 0;
    overflow: hidden;
    font-weight: 600;
  }

  #topnav ul.category-menu li {
    display: block;
    margin: 0;
    padding: 0;
  }

  #topnav ul.category-menu li a {
    display: flex;
    align-items: center;
    height: var(--tn-primary-nav-height);
    padding: 0 calc(1.75 * var(--rt-gutter));
    color: var(--mdc-theme-on-primary-contrast);
    text-decoration: none;
    white-space: nowrap;
  }

  #topnav ul.category-menu li a:hover {
    color: var(--mdc-theme-on-secondary-contrast);
    background-color: var(--mdc-theme-secondary);
  }

  #topnav ul.category-menu li a.selected {
    color: var(--mdc-theme-on-primary-variant);
    background-color: var(--mdc-theme-primary-variant);
  }
}

/* Search Box */
#topnav .search-box {
  display: flex;
  position: relative;
  align-items: center;
  height: var(--tn-primary-nav-height);
}

#topnav .search-box input {
  width: var(--tn-search-input-width);
  height: var(--tn-input-height);
  margin-right: var(--rt-gutter);
  padding: 0 var(--rt-gutter);
  border: 1px solid var(--rt-bd-subtle);
  border: none;
  border-radius: var(--rt-round-sm);
  color: var(--rt-fg-secondary);
  background-color: var(--rt-bg-base);
  font-size: var(--rt-text-sm);
  line-height: normal;
}

#topnav .search-box input:focus {
  outline: none;
  outline: 2px solid var(--mdc-theme-primary-variant);
  box-shadow: var(--rt-shadow-sm);
}

#topnav .search-box input::placeholder {
  color: var(--rt-fg-tertiary);
}

/* Show the search cancel button on bootstrap, which hides it by default (their search inputs have custom cancel buttons) */
#topnav input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: auto;
  opacity: 1;
}

/* Search Results */
#topnav #searchPopover {
  inset: calc(var(--tn-primary-nav-height) - var(--rt-gutter)) 0 0 auto;
  width: var(--tn-search-popover-width);
  height: calc(100vh - var(--tn-primary-nav-height) + var(--rt-gutter));
  margin: 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--rt-bd-strong);
  border-left: 1px solid var(--rt-bd-strong);
  border-top-left-radius: var(--rt-round-sm);
  background-color: var(--rt-bg-base);
  box-shadow: var(--rt-shadow-lg);
}

#topnav #searchPopover .search-results-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#topnav #searchPopover h3 {
  gap: var(--rt-gutter);
  display: flex;
  align-items: center;
  height: calc(6 * var(--rt-gutter));
  margin: 0;
  padding: var(--rt-gutter);
  padding-left: calc(2 * var(--rt-gutter));
  color: var(--mdc-theme-on-primary-variant);
  font-weight: normal;
  font-size: var(--rt-text-md);
  background-color: var(--mdc-theme-primary-variant);
  flex-shrink: 0;
}

#topnav #searchPopover ul {
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

#topnav #searchPopover ul li {
  display: block;
  margin: 0;
  padding: 0;
}

#topnav #searchPopover ul li a {
  display: flex;
  align-items: center;
  padding: var(--rt-gutter) calc(2 * var(--rt-gutter));
  border-bottom: 1px solid var(--rt-bd-subtle);
  color: var(--rt-fg-primary);
  text-decoration: none;
}

#topnav #searchPopover ul li a:hover {
  background-color: var(--rt-bg-prime-alt);
}

#topnav #searchPopover ul li.no-results {
  padding: calc(4 * var(--rt-gutter)) 0;
  text-align: center;
  color: var(--rt-fg-secondary);
}

/* Reduce Search on small screens so it does not overlay categories */
@media only screen and (max-width: 1024px) {
  #topnav .search-box input {
    width: var(--tn-search-input-reduced-width);
  }
}

/* Search on Mobile */
#topnav #mobile-search-button {
  display: none;
  margin-right: var(--rt-gutter);
}

@media only screen and (max-width: 1024px) {
  #topnav #mobile-search-button {
    display: block;
  }

  #topnav .search-box input {
    display: none; /* Hide by default, Toggled by JS */
  }
}

/* Account Menu */
#topnav .account-box {
  display: flex;
  position: relative;
  align-items: center;
  height: var(--tn-primary-nav-height);
  margin: 0 var(--rt-gutter) 0 0;
}

#topnav .account-box > .mdc-icon-button {
  padding: 0;
}

#topnav ul#accountPopover {
  inset: calc(var(--tn-primary-nav-height) - var(--rt-gutter)) calc(3 * var(--rt-gutter)) auto auto;
  margin: 0;
  padding: 0;
  border: 1px solid var(--rt-bd-subtle);
  border-radius: var(--rt-round-sm);
  background-color: var(--rt-bg-base);
  box-shadow: var(--rt-shadow-lg);
}

#topnav ul#accountPopover li {
  display: block;
  margin: 0;
  padding: 0;
}

#topnav ul#accountPopover li a,
#topnav ul#accountPopover li button {
  display: flex;
  align-items: center;
  height: calc(6 * var(--rt-gutter));
  padding: 0 calc(2 * var(--rt-gutter));
  color: var(--rt-fg-secondary);
  text-decoration: none;
  background-color: var(--rt-bg-base);
  border: 0 0 1px solid var(--rt-bd-subtle) 0;
  cursor: pointer;
  font-size: var(--rt-text-sm);
  justify-self: stretch;
}

#topnav ul#accountPopover li:last-child a #topnav ul#accountPopover li:last-child button {
  height: calc(8 * var(--rt-gutter));
  border-bottom: none;
}

#topnav ul#accountPopover li a:hover,
#topnav ul#accountPopover li button:hover {
  color: var(--rt-fg-primary);
  background-color: var(--rt-bg-prime-alt);
}

#topnav ul#accountPopover li a i,
#topnav ul#accountPopover li button i {
  margin-right: var(--rt-gutter);
}

/* Secondary Nav */
#topnav ul.secondary-nav {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  display: none;
  z-index: 3;
  position: relative;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  color: var(--mdc-theme-on-primary-variant);
  background-color: var(--mdc-theme-primary-variant);
}

#topnav ul.secondary-nav::-webkit-scrollbar {
  display: none;
}

#topnav ul.secondary-nav > li {
  display: block;
  margin: 0;
  padding: 0;
}

#topnav ul.secondary-nav > li > a {
  display: flex;
  align-items: center;
  height: var(--tn-secondary-nav-height);
  padding: 0 calc(2 * var(--rt-gutter));
  overflow: visible;
  color: var(--mdc-theme-on-primary-variant);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
}

#topnav ul.secondary-nav > li:hover > a {
  color: var(--mdc-theme-on-secondary-contrast);
  background-color: var(--mdc-theme-secondary);
}

#topnav ul.secondary-nav > li > a.selected {
  border-bottom: 4px solid var(--mdc-theme-secondary);
  border-top: 4px solid transparent;
}

#topnav ul.secondary-nav > li .megamenu {
  gap: calc(2 * var(--rt-gutter));
  display: grid;
  position: fixed;
  top: calc(var(--tn-primary-nav-height) + var(--tn-secondary-nav-height) - 4px);
  max-height: calc(100vh - var(--tn-primary-nav-height) - var(--tn-secondary-nav-height) + 4px);
  left: 0;
  padding: calc(2 * var(--rt-gutter));
  border: 1px solid var(--rt-bd-subtle);
  border-top: 1px solid transparent;
  border-radius: var(--rt-round-sm);
  overflow-y: auto;
  background-color: var(--rt-bg-base);
  box-shadow: var(--rt-shadow-lg);
}

#topnav ul.secondary-nav > li .megamenu .megamenu-group {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  width: 100%;
  border-radius: var(--rt-round-sm);
  overflow: hidden; /* Preserve the border-radius */
  background-color: var(--rt-bg-prime);
  max-height: var(--tn-menu-group-max-height);
}

#topnav ul.secondary-nav > li .megamenu .megamenu-group h4 {
  margin: 0;
  display: flex;
  flex-shrink:0;
  align-items: center;
  height: calc(5 * var(--rt-gutter));
  padding: 0 calc(1.5 * var(--rt-gutter));
  color: var(--mdc-theme-on-secondary-contrast);
  font-size: var(--rt-text-sm);
  font-weight: 700;
  background-color: var(--mdc-theme-secondary);
}

#topnav ul.secondary-nav > li .megamenu .megamenu-group ul {
  break-inside: avoid;
  height: auto;
  margin: 0;
  padding: var(--rt-gutter) 0;
  list-style-type: none;
  /* Group Scroll */
  overflow-y: auto;
}

#topnav ul.secondary-nav > li .megamenu .megamenu-group ul li {
  margin: 0;
  padding: 0;
}

#topnav ul.secondary-nav > li .megamenu .megamenu-group ul li a {
  display: flex;
  align-items: center;
  margin: 0;
  
  font-weight: 500;
  line-height: 14px;
  padding: 6px calc(2 * var(--rt-gutter));
  color: var(--rt-fg-secondary);
  text-decoration: none;
  background-color: var(--rt-bg-prime);
}

#topnav ul.secondary-nav > li .megamenu .megamenu-group ul li a:hover {
  background-color: var(--rt-bg-prime-alt);
}

@media only screen and (max-width: 640px) {
  #topnav ul.secondary-nav > li .megamenu .megamenu-group {
    max-height: none;
  }
}

/* Tertiary Nav (Page Nav) */
#topnav .tertiary-nav {
  display: flex;
  position: relative;
  align-items: center;
  height: var(--tn-tertiary-nav-height);
  border-bottom: 1px solid var(--rt-bd-subtle);
  color: var(--rt-fg-secondary);
  background-color: var(--rt-bg-base);
}

#topnav .tertiary-nav button {
  color: var(--rt-fg-secondary);
  height: var(--tn-tertiary-nav-height);
  font-size: var(--rt-text-xs);
  font-weight: 500;
  letter-spacing: normal;
  border-right: 1px solid var(--rt-bd-subtle);
  padding: 0 var(--rt-gutter);
  border-radius: 0;
  text-transform: none;
  font-family: "Red Hat Display", sans-serif;
}

/* Sometimes the icon is inside the tertiary-nav-button as a child element */
#topnav .tertiary-nav button .material-icons {
  font-family: 'Material Icons';
  font-size: var(--rt-text-md);
  
}

/* Sometimes the icon is the tertiary-nav-button itself. */
#topnav .tertiary-nav button.material-icons {
  padding: 0;
  font-family: 'Material Icons';
  font-size: var(--rt-text-md);
  width: calc(4px + var(--tn-tertiary-nav-height));
}

/* On Small Screens the buttons should all behave as icon-only buttons, no labels */
@media only screen and (max-width: 640px) {
  #topnav .tertiary-nav button {
    padding: 0;
    min-width: auto;
    width: calc(4px + var(--tn-tertiary-nav-height));
  }
  #topnav .tertiary-nav button .mdc-button__label {
    display: none;
  }
  #topnav .tertiary-nav button .mdc-button__icon {
    margin: 0;
  }
}

#topnav .tertiary-nav button::before,
#topnav .tertiary-nav button::after {
  border-radius: 0;
}

/* Bread Crumbs */
#topnav .tertiary-nav #tertiary-nav-crumbs {
  display: flex;
  flex-grow: 1;
  align-items: center;
  height: var(--tn-tertiary-nav-height);
  padding-left: var(--rt-gutter);
  border-right: 1px solid var(--rt-bd-subtle);
}

#topnav .tertiary-nav #tertiary-nav-crumbs a {
  text-decoration: underline;
  font-size: var(--rt-text-xs);
  color: var(--rt-fg-secondary);
}

#topnav .tertiary-nav #tertiary-nav-crumbs a:hover,
#topnav .tertiary-nav #tertiary-nav-crumbs a:focus {
  color: var(--rt-fg-primary);
}

#topnav .tertiary-nav #tertiary-nav-crumbs a::before {
    padding: 0 var(--rt-gutter);
    pointer-events: none;
    user-select: none;
    content: '>';
    text-decoration: none;
    display: inline-block;
    font-family: "Red Hat Display", sans-serif;
    font-size: var(--rt-text-xs);
}

#topnav .tertiary-nav #tertiary-nav-crumbs a:first-child {
    margin-left: 0;
    text-decoration: underline !important;
}

#topnav .tertiary-nav #tertiary-nav-crumbs a:first-child::before {
    display: none;
}

#topnav .tertiary-nav #tertiary-nav-crumbs a:last-child {
    text-decoration: none;
}


/* History Popover */
#topnav #historyPopover {
  inset: 0 auto 0 0;
  width: var(--tn-history-popover-width);
  height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  border-right: 1px solid var(--rt-bd-strong);
  background-color: var(--rt-bg-base);
  box-shadow: var(--rt-shadow-lg);
}

#topnav #historyPopover .history-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#topnav #historyPopover h3 {
  gap: var(--rt-gutter);
  display: flex;
  align-items: center;
  height: calc(4 * var(--rt-gutter));
  margin: 0;
  padding: var(--rt-gutter);
  padding-left: calc(2 * var(--rt-gutter));
  color: var(--mdc-theme-on-primary-variant);
  font-weight: normal;
  font-size: var(--rt-text-md);
  background-color: var(--mdc-theme-primary-variant);
  flex-shrink: 0;
}

#topnav #historyPopover h3 button {
  margin-left: auto;
}

#topnav #historyPopover ul {
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

#topnav #historyPopover ul li {
  display: block;
  margin: 0;
  padding: 0;
}

#topnav #historyPopover ul li a {
  display: flex;
  align-items: center;
  font-size: var(--rt-text-sm);
  min-height: 24px;
  padding: var(--rt-gutter) calc(2 * var(--rt-gutter));
  color: var(--rt-fg-secondary);
  text-decoration: none;
}

#topnav #historyPopover ul li a:hover {
  color: var(--rt-fg-primary);
  background-color: var(--rt-bg-base-alt);
}

#topnav #historyPopover div.no-results {
  padding: calc(4 * var(--rt-gutter)) 0;
  text-align: center;
  color: var(--rt-fg-secondary);
}

/* StatusBox */
#statusbox {
  display: flex;
  z-index: 3;
  position: fixed;
  right: 0;
  bottom: 0;
  justify-content: space-between;
  align-items: center;
  height: calc(3 * var(--rt-gutter));
  padding: 0 var(--rt-gutter);
  border-top: 1px solid var(--rt-bd-subtle);
  border-left: 1px solid var(--rt-bd-subtle);
  border-top-left-radius: var(--rt-round-sm);
  color: var(--rt-fg-secondary);
  font-size: var(--rt-text-xxs);
  background-color: var(--rt-bg-prime);
  box-shadow: var(--rt-shadow-sm);
}

#statusbox .logo-mark {
  width: auto;
  height: calc(2 * var(--rt-gutter));
  margin-right: calc(var(--rt-gutter) / 2);
}

#statusbox span:not(:last-child)::after {
    content: "\2022";
    margin: 0 calc(var(--rt-gutter) / 2);
}

/* Samra: adding dialog css*/
.mdc-dialog__title {
    background-color: var(--mdc-theme-secondary) !important;
    color: var(--mdc-theme-on-secondary) !important;
}