/***** This is /scripts/css/styles-main.css. Styles for all pages including home *****/


/* === UNIVERSAL ANTI-SCROLL FIX === */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Collapse stray top-of-body whitespace (SSI emits a #text " " node) */

body {
  line-height: 0 !important;
}

body > * {
  line-height: normal;
}


/* ===== Responsive Wrapper Adjustments ===== */
/* These helpers improve flex and fixed-width containers */
.page-body,
.container,
.logo-container,
.sidebar-area {
  max-width: 100vw;
  box-sizing: border-box;
  min-width: 0;
}


:root {
  --logo-width: 399px;
  --logo-height: 109px;
}


/* ================================
   Global Font, Color & Link Styles
   ================================ */
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}


a {
  color: #174d35;
  text-decoration: none;
  transition: color 0.2s;
}


a:hover,
a:focus {
  color: #69be28;
  text-decoration: underline;
  outline: none;
}


/* ===========================
   Text Styles for Div Classes
   =========================== */
.centered-text {
  text-align: center;
}


blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 20px;
  color: #333;
}


blockquote p {
  margin: 0;
}


cite {
  font-style: italic;
}


/* ===========================
   Page Title & Heading Styles
   =========================== */
.msl-page-title {
  color: #006a4d;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}


/* All headings: use condensed, bold */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  font-stretch: condensed;
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}


/* h1: green, centered, bold, keep default size */
h1 {
  color: #006a4d;
  text-align: center;
}


/* .tagline: for your visual subheading */
.tagline {
  display: block;
  text-align: center;
  margin: 0.25em 0 0.5em 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #444;
  font-style: italic;
  letter-spacing: 0.04em;
}


/* h2: all-caps, centered, keep usual h2 size */
h2 {
  text-transform: uppercase;
  text-align: center;
}


/* h3: only centered; size = browser default, bold condensed */
h3 {
  text-align: center;
}


/* h4-h6: normal heading styles, bold condensed, NOT centered or all-caps */
h4,
h5,
h6 {
  text-align: left;
  text-transform: none;
}


/* ============================
   Header: Logo & Navbar Styles
   ============================= */
.header-with-logo {
  background-color: #006a4d;
  border-bottom: 0 !important;
}


.navbar,
.header-with-logo .navbar {
  background-color: #006a4d !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}


.logo-container {
  min-width: var(--logo-width);
  height: var(--logo-height);
  display: flex;
  align-items: flex-end;
  padding: 0 15px 0 0;
  background: #006a4d;
  box-sizing: border-box;
}


.logo-container img {
  display: block;
  max-height: calc(var(--logo-height) - 24px);
  width: auto;
}


.header-with-logo .navbar-brand {
  padding: 0;
  margin-right: 2rem;
  height: var(--logo-height);
  display: flex;
  align-items: flex-end;
}


.header-with-logo .navbar-nav {
  flex-direction: row;
  align-items: flex-end;
}


.header-with-logo .nav-link,
.header-with-logo .navbar-text {
  color: #fff !important;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
}


.header-with-logo .dropdown-menu {
  margin-top: 0.25rem;
}


.header-with-logo .nav-top .dropdown-menu-end {
  right: 0;
  left: auto;
}


#supportDropdown + .dropdown-menu {
  min-width: 21rem;
}


.navbar-toggler {
  border-color: #fff;
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* Shared header/navbar spacing for home and interior pages */
.header-with-logo .nav-top {
  padding-top: 0.2rem;
}


.header-with-logo .nav-top .navbar-nav > .nav-item > .nav-link,
.header-with-logo .nav-top .navbar-nav > .nav-item > .dropdown-toggle {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  line-height: 1.2;
}


.header-with-logo .nav-top .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding-top: 0.15rem !important;
  padding-bottom: 0.15rem !important;
}


.header-with-logo .nav-top .dropdown-toggle::after {
  margin-top: 0;
  vertical-align: middle;
}


.header-with-logo .nav-main {
  padding-top: 0.15rem;
  padding-bottom: 0.25rem;
}


.header-with-logo .nav-main .navbar-collapse {
  align-items: flex-end;
}


/* Make 2nd navbar text bolder */
.header-with-logo .nav-main .nav-link {
  font-weight: 600;
}


/* Top nav only: bright green dividers between menu items */
@media (min-width: 992px) {
  .header-with-logo .nav-top .navbar-nav > .nav-item + .nav-item {
    position: relative;
  }


  .header-with-logo .nav-top .navbar-nav > .nav-item + .nav-item::before {
    content: "|";
    color: #69be28;
    position: absolute;
    left: -0.15rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    pointer-events: none;
  }
}

/* Shared top-nav utility icons for home and interior headers */
.header-with-logo .nav-top .navbar-collapse {
  gap: 0.5rem;
}

.top-nav-icons {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.2rem;
  padding-left: 0.45rem;
  flex: 0 0 auto;
  position: relative;
}

.top-nav-icons::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.85rem;
  background: rgba(255,255,255,0.38);
  transform: translateY(-50%);
}

.top-nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 999px;
  opacity: 0.92;
  transition: color 0.15s ease, opacity 0.15s ease, background-color 0.15s ease;
}

.top-nav-icon-link:hover,
.top-nav-icon-link:focus {
  color: #ffffff !important;
  opacity: 1;
  background-color: rgba(255,255,255,0.1);
  text-decoration: none;
}

.top-nav-icon-link svg {
  display: block;
  fill: currentColor;
}

@media (max-width: 991.98px) {
  .top-nav-icons {
    margin-left: 0;
    margin-top: 0.5rem;
    padding-left: 0;
  }

  .top-nav-icons::before {
    display: none;
  }
}


/* Narrow desktop / tablet landscape:
   reduce reserved logo width so top nav has more room before collapsing */
@media (min-width: 992px) and (max-width: 1250px) {
  .header-with-logo .logo-container {
    min-width: 220px;
    padding-right: 8px;
  }
}


@media (max-width: 991.98px) {
  .logo-container,
  .header-with-logo .navbar-brand {
    min-width: 0;
    height: auto;
    padding: 0.5rem 0;
    margin-right: 0;
  }


  .logo-container img {
    max-height: 48px;
    width: auto;
    margin: 0 auto;
  }


  .header-with-logo .navbar-nav {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Only affects headers with BOTH header-with-logo and header-2nd-level */
.header-with-logo.header-2nd-level .logo-container {
  min-width: 266px;
  height: 73px;
  padding: 5px 0 10px 20px;
  display: flex;
  align-items: flex-end;
  background: #006a4d;
  box-sizing: border-box;
}


.header-with-logo.header-2nd-level .logo-container img {
  max-height: 58px;
  width: auto;
  display: block;
}


/* LibCal 'Today's Hours' widget text over green header */
#api_hours_today_iid848_lid0,
#api_hours_today_iid848_lid0 * {
  color: #ffffff !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}


/* Override LibCal inline styles for 'Today's building hours' and similar links */
#api_hours_today_iid848_lid0 .hours-col-loc a {
  color: #ffffff !important;
  background-color: #006a4d !important;
}


/* Add a bit of breathing room on the right for the LibCal hours in the header */
.header-with-logo .navbar-text {
  padding-right: 20px;
}


/* Wrapper for the LibCal hours widget in the header */
.hours-widget-wrap {
  display: block;
}


/* =========================================
   Mobile navbar: tighter spacing, preserved tap targets
   ========================================= */
@media (max-width: 991.98px) {
  .header-with-logo .navbar-collapse {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .header-with-logo .nav-top .navbar-nav > .nav-item > .nav-link,
  .header-with-logo .nav-top .navbar-nav > .nav-item > .dropdown-toggle,
  .header-with-logo .nav-main .navbar-nav > .nav-item > .nav-link,
  .header-with-logo .nav-main .navbar-nav > .nav-item > .dropdown-toggle {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
    line-height: 1.2;
  }

  .header-with-logo .navbar-nav > .nav-item + .nav-item {
    margin-top: 0;
  }

  .header-with-logo .dropdown-menu {
    margin-top: 0;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .header-with-logo .dropdown-menu .dropdown-item,
  .header-with-logo .dropdown-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    line-height: 1.2;
  }
}

/* =================
   Breadcrumb Styles
   ================= */
.msl-breadcrumbs {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  color: #222;
}


.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}


.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #006a4d;
  font-weight: 700;
  font-size: 1rem;
}


.breadcrumb-item a {
  color: #006a4d;
  text-decoration: none;
}


.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: #174d35;
  text-decoration: underline;
  outline: none;
}


.breadcrumb-item.current {
  color: #222;
  font-weight: 700;
}


/* ======================
   Sidebar + NavChipsStyles
   ======================= */
.msl-sidebar {
  border-right: 1px solid #000;
  padding-right: 1.5rem;
  margin-right: 2rem;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
}


.msl-sidebar nav {
  display: block;
  height: auto;
}


.msl-sidebar,
.msl-sidebar * {
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}


.sidebar-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #006a4d;
  margin-bottom: 0.75rem;
  text-align: left;
}


.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}


.sidebar-nav li {
  margin-bottom: 0.5rem;
}


.sidebar-nav a {
  color: #006a4d;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}


.sidebar-nav a:hover,
.sidebar-nav a:focus {
  color: #174d35;
  text-decoration: underline;
}


.sidebar-divider {
  border: none;
  border-top: 1px solid #000;
  margin: 1.5rem 0 1rem 0;
}


.sidebar-contact {
  color: #222;
  font-size: 0.97rem;
  font-weight: 400;
  margin-top: 0.5rem;
}


.sidebar-you-belong {
  font-weight: 700;
}


.main-headline {
  display: block;
  color: #222;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0rem;
}


@media (max-width: 991.98px) {
  .msl-sidebar {
    border-right: none;
    border-bottom: 1px solid #000;
    margin-right: 0;
    margin-bottom: 2rem;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
}


/* re-useable yellow button text style */
.btn-yellow {
  color: #174d35 !important;
  font-weight: 800;
}


.btn-yellow:hover,
.btn-yellow:focus {
  color: #174d35 !important;
  text-decoration: underline;
}


/* Centered inline link/menu block */
.inline-nav-center {
  text-align: center;
}


/* ========
   NavChips
   ========= */
.nav-chips .nav-chip {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}


.nav-chips .btn-outline-secondary.nav-chip {
  color: #006a4d;
  border-color: #006a4d;
}


.nav-chips .btn-outline-secondary.nav-chip:hover,
.nav-chips .btn-outline-secondary.nav-chip:focus {
  color: #ffffff;
  background-color: #174d35;
  border-color: #174d35;
}


/* =====================================
   Styles for Ask Your Personal Librarian
   ===================================== */
.librarian-card-grid {
  margin-bottom: 2.5em;
}


/* Responsive grid: 3 per row on large (lg), 2 per row on medium, stack on small */
.librarian-card-grid > .col-12 {
  display: flex;
}


.librarian-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 1.5px 8px #0001;
  border-radius: 1em;
  border: 1px solid #e8e8e8;
  background: #fff;
  width: 100%;
  min-width: 0;
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.15s;
  position: relative;
}


.librarian-card:focus-within {
  outline: 3px solid #006a4d;
  box-shadow: 0 4px 14px #069a7e33;
  z-index: 2;
}


.librarian-photo {
  width: 104px;
  height: 104px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid #f5f7fa;
  background: #f5f7fc;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em;
  box-shadow: 0 1px 4px #0001;
}


@media (max-width: 991.98px) {
  .librarian-photo {
    width: 80px;
    height: 80px;
  }
}


@media (max-width: 767.98px) {
  .librarian-photo {
    width: 64px;
    height: 64px;
  }
}


.librarian-card-header {
  padding-bottom: 0.1em;
}


.librarian-card .card-title {
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 0.35em;
}


.librarian-card .card-subtitle {
  font-size: 0.99em;
}


.librarian-card .librarian-appointment {
  font-size: 1em;
  background: #008744;
  border-color: #008744;
  color: #fff;
  font-weight: 600;
  border-radius: 0.7em;
  padding: 0.45em 0.85em;
  margin: 0.2em 0 0.9em 0;
  box-shadow: 0 2px 8px #00874422;
}


.librarian-card .librarian-appointment:hover,
.librarian-card .librarian-appointment:focus-visible {
  background: #0ca664;
  color: #fff;
  outline: 2px solid #0ca644;
}


.librarian-card .btn.disabled,
.librarian-card .btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.57;
}


/* Subject specialty tiny badges */
.librarian-card .librarian-specialty-badge {
  font-size: 0.85em;
  margin: 0 1.5px 3.5px 0;
  font-weight: 500;
  padding: 0.38em 0.81em;
  vertical-align: middle;
  border-radius: 0.75em;
}


.librarian-card .librarian-specialty-badge a {
  color: inherit;
  text-decoration: none;
}


.librarian-card .librarian-specialty-badge a:focus,
.librarian-card .librarian-specialty-badge a:hover {
  text-decoration: underline;
}


.librarian-card .profile-link {
  display: inline-block;
  margin-top: 0.4em;
  font-size: 1.04em;
  color: #01549b;
  text-decoration: underline;
  font-weight: 600;
}


.librarian-card .profile-link:focus,
.librarian-card .profile-link:hover {
  color: #008744;
  background: #e7fcf2;
}


/* Vacant position styling */
.librarian-card-vacant {
  background: #cccccc;
  border-color: #ffd872 !important;
}


.librarian-card-vacant .card-title {
  color: #b79000 !important;
}


.librarian-card-vacant .librarian-specialty-badge {
  background: #cccccc;
  border: 1.3px solid #ffe06a;
  color: #988000;
}


/* Responsive styles for stacking, photo sizing, spacing */
@media (max-width: 1199.98px) {
  .librarian-card {
    max-width: 97vw;
  }
}


@media (max-width: 991.98px) {
  .librarian-card-grid > .col-md-6 {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100%;
  }


  .librarian-photo {
    width: 80px;
    height: 80px;
  }
}


@media (max-width: 767.98px) {
  .librarian-card {
    margin-bottom: 1.2em;
  }


  .librarian-photo {
    width: 64px;
    height: 64px;
  }
}


.librarian-card-vacant {
  background-color: #f8f9fa;
  border: 1px dashed #ced4da;
  box-shadow: none;
}


.librarian-card-vacant .card-title {
  color: #495057;
}


.librarian-card-vacant .librarian-specialty-badge {
  background-color: #ffffff;
  border-color: #ffc107;
}


/* Force vacant card heading and subtitle to ignore inline colors */
.librarian-card-vacant .card-title,
.librarian-card-vacant .card-subtitle {
  background-color: transparent !important;
  color: #343a40 !important;
}


/* ============================================================
   Required form field styles to meet color contrast requirement
   ============================================================ */
.text-danger {
  color: #b10000 !important;
}


/* =============
   Footer Styles
   ============= */
.footer-main {
  background: #006a4d;
  color: #fff;
}


.footer-link {
  color: #ffd872;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1em;
}


.footer-link:hover,
.footer-link:focus {
  color: #fff;
  text-decoration: underline;
}


.footer-hr {
  border-top: 2px solid #ffd872;
  opacity: 1;
  width: 60%;
  margin: 0.5em 0 1em 0;
}


.footer-bottom {
  background: #174d35;
  color: #fff;
  font-size: 0.95em;
}


.footer-bottom-link {
  color: #ffd872;
  margin-left: 1em;
  text-decoration: none;
  font-size: 0.95em;
}


.footer-bottom-link:hover,
.footer-bottom-link:focus {
  color: #fff;
  text-decoration: underline;
}


@media (max-width: 767.98px) {
  .footer-bottom .container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5em;
  }


  .footer-bottom-link {
    margin-left: 0;
    margin-right: 1em;
  }
}


/* ===========================
   Utility
   =========================== */
/*
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.175)!important;
}
*/


/* Accessibility: Skip link for keyboard/screenreader users */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  background: #ffd872;
  color: #222;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
}


.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  font-size: 1rem;
  outline: 2px solid #222;
}


/* Page layout flex container */
.page-body {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}


main[role="main"] {
  flex: 1 1 0%;
  min-width: 0;
}


aside.sidebar-area {
  flex: 0 0 260px;
  max-width: 260px;
  min-width: 180px;
  margin-left: 2rem;
}


/* Responsive adjustments for page body and sidebar */
@media (max-width: 991.98px) {
  .page-body {
    flex-direction: column;
  }


  aside.sidebar-area {
    margin-left: 0;
    max-width: none;
    margin-top: 2rem;
  }
}


/* =================
   Responsive & Misc
   ================= */
@media (max-width: 991.98px) {
  .header-with-logo {
    flex-direction: column;
    align-items: stretch;
  }
}


/* =============================================
   Override / Kludge for Springshare FAQ on Site Map
   ============================================== */
#s-la-widget-18644 {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 900px;
  line-height: 1.4;
}


#s-la-widget-18644 li {
  margin-bottom: 0.9rem;
}


#s-la-widget-18644 a {
  color: #174d35;
  font-weight: 500;
  text-decoration: underline;
}


#s-la-widget-18644 .s-la-faq-listing-topics,
#s-la-widget-18644 .s-la-faq-listing-views {
  display: inline;
  font-size: 0.85rem;
  color: #6c757d;
}


#s-la-widget-18644 .s-la-faq-listing-topics .metalabel,
#s-la-widget-18644 .s-la-faq-listing-views .metalabel {
  display: inline;
  margin-right: 0.1rem;
}


#s-la-widget-18644 .s-la-faq-listing-topics ul.list-inline {
  display: inline;
  padding-left: 0;
  margin: 0;
}


#s-la-widget-18644 .s-la-faq-listing-topics ul.list-inline > li {
  display: inline;
  margin-right: 0.25rem;
}


#s-la-widget-18644 .s-la-faq-listing-topics .divider {
  display: inline;
  margin: 0 0.25rem;
}


#s-la-widget-18644 .s-la-faq-listing-views .metavalue {
  display: inline;
}


/* Hide the LibCal "Hours Today" caption line */
table.hours-today > caption {
  display: none;
}


/* ======================================
   Springshare Chat Widget Placement
   ====================================== */
/* Remove Springshare button chrome */
.s-lch-widget-float,
.s-lch-widget-float .s-lch-widget-float-btn,
.s-lch-widget-float .s-lch-widget-img-btn {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}


/* Keep only placement */
.s-lch-widget-float {
  top: 35px !important;
  right: 10px !important;
  bottom: auto !important;
  z-index: 9999 !important;
}


/* Tablet */
@media (max-width: 1024px) {
  .s-lch-widget-float {
    top: 55px !important;
    right: 8px !important;
  }
}


/* Phone */
@media (max-width: 767px) {
  .s-lch-widget-float {
    top: 50px !important;
    right: 6px !important;
  }
}


/* Give the open LibChat window enough height to show its content */
.s-lch-widget-float.open,
.s-lch-widget-float.open .s-lch-widget-window,
.s-lch-widget-float.open iframe {
  height: 520px !important;
  max-height: 75vh !important;
}


.s-lch-widget-float.open .s-lch-widget-window,
.s-lch-widget-float.open iframe {
  overflow-y: auto !important;
}


/* ============================
   Slim Hours Bar
   ============================ */
.hours-bar {
  background-color: #557c81;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}


.hours-bar-inner {
  min-height: 28px;
  padding: 2px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.hours-bar .hours-widget-wrap {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15;
  text-align: right;
}


.hours-bar #api_hours_today_iid848_lid0,
.hours-bar #api_hours_today_iid848_lid0 * {
  color: #ffffff !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-align: right !important;
}


.hours-bar #api_hours_today_iid848_lid0 .hours-col-loc a {
  color: #ffffff !important;
  background-color: transparent !important;
  text-decoration: none;
}


.hours-bar table.hours-today {
  margin: 0 0 0 auto;
}


.hours-bar table.hours-today td,
.hours-bar table.hours-today th {
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
}


.hours-bar table.hours-today > caption {
  display: none;
}


@media (max-width: 767.98px) {
  .hours-bar-inner {
    justify-content: flex-end;
    padding: 3px 0;
  }


  .hours-bar .hours-widget-wrap {
    font-size: 0.85rem;
  }
}

/* ============================
SITE ALERT & PAGE ALERT STYLES
=============================== */

.site-alert {
  width: 100%;
}

.site-alert .container {
  max-width: 100%;
}

.site-alert-inner {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.site-alert-title,
.site-alert-text,
.site-alert-text p,
.site-alert-links,
.site-alert-links li {
  color: inherit;
}

.site-alert-title {
  display: block;
  margin: 0 0 0.2rem 0;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.site-alert-text {
  margin: 0;
  line-height: 1.45;
}

.site-alert-text p {
  margin: 0;
}

.site-alert a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.site-alert a:hover,
.site-alert a:focus {
  color: inherit;
}

.site-alert-links {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
}

.site-alert-links li {
  margin: 0.2rem 0 0 0;
}

.site-alert-note {
  font-weight: 500;
}

.site-alert-system {
  background: #ffd872;
  color: #222;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.site-alert-system .site-alert-inner {
  text-align: center;
}

.site-alert-system .site-alert-title {
  font-size: 1.06rem;
}

.site-alert-system .site-alert-text {
  font-size: 1rem;
}

.site-alert-system .site-alert-links {
  text-align: center;
}

.site-alert-emergency {
  background: #fff7e6;
  color: #5a1111;
  border-top: 4px solid #8b0000;
  border-bottom: 4px solid #8b0000;
}

.site-alert-emergency .site-alert-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-alert-emergency .site-alert-title {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.site-alert-emergency .site-alert-text {
  font-size: 1.08rem;
  font-weight: 500;
}

.site-alert-emergency .site-alert-note {
  font-weight: 700;
}

.page-alert-box {
  max-width: 52rem;
  margin: 0.5rem auto 1.1rem auto;
}

.page-alert-box .card {
  border: 2px solid #8b0000;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.18rem 0.55rem rgba(0, 0, 0, 0.05);
}

.page-alert-box .card-body {
  padding: 1rem 1.1rem;
  color: #222;
  font-size: 0.98rem;
  line-height: 1.45;
}

.page-alert-box .alert-heading {
  margin: 0 0 0.45rem 0;
  text-align: center;
}

.page-alert-box .alert-heading h2,
.page-alert-box .alert-heading .h6 {
  margin: 0;
  color: #8b0000;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.page-alert-box p:last-child,
.page-alert-box ul:last-child {
  margin-bottom: 0;
}

.page-alert-box a {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .site-alert-inner {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .site-alert-system .site-alert-title,
  .site-alert-emergency .site-alert-title {
    font-size: 1.08rem;
  }

  .site-alert-system .site-alert-text,
  .site-alert-emergency .site-alert-text {
    font-size: 0.98rem;
  }

  .page-alert-box .card-body {
    padding: 0.9rem 0.95rem;
  }

  /* END ALERT STYLES
   */

