/*
  CSS variable overrides go in this file.
  e.g.
  :root {
    --primary-rgb: 53, 160, 168;
    --secondary-rgb: 76, 211, 221;
    --body-color-rgb: 255, 255, 255;
    --body-bg-rgb: 15, 15, 15;
    
  --navbar-brand-height: 32px;
  --footer-brand-height: 25px;
  }

  NOTE: Sass variable overrides prefixed with $ should be added to the _variables.scss file instead
*/

:root {
  --primary-rgb: 48, 106, 223;
  --secondary-rgb: 105, 147, 232;
  --body-color-rgb: 0, 0, 0;
  --body-bg-rgb: 255, 255, 255;
  --body-color-hover-rgb: 50, 50, 50;
  --hover-background-rgb: 186, 186, 186;
  --body-bg-accent-rgb: 230, 230, 230;
  --link-color-hover-rgb: 51, 51, 51;
  --input-focus-border-color-rgb: 105, 147, 232;
  --main-content-icon-hover-rgb: 47, 47, 47;
  --navbar-brand-height: 60px;
  --footer-brand-height: 50px;
}

/* no footer logo, just using sponsor banner for footer branding */
footer {
  padding-top: 0px;
}
.footer-brand-link {
  display: none;
}