@charset "utf-8";

[data-bs-theme="light"] {
  --bs-primary: #004473;
  --bs-primary-rgb: 0,68,115;
  --bs-link-color: #004473;
  --bs-link-color-rgb: 4,68,115;
  --bs-link-hover-color: #00121f;
  --bs-link-hover-color-rgb: 0,18,31;
}

[data-bs-theme="dark"] {
  --bs-primary: #004473;
  --bs-primary-rgb: 0,68,115;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #004473 ;
  --bs-btn-border-color: #004473 ;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #003357;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #003357;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #004473 ;
  --bs-btn-disabled-border-color: #004473 ;
}

[data-bs-theme="light"] .bg-purple-subtle { background-color: #deccfa; }

[data-bs-theme="dark"] .bg-purple-subtle { background-color: #200642; }

#skip:focus-visible {
  display: block;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 0;
  padding: .5rem 0;
  text-align: center;
  font-weight: 500;
}

@supports (-moz-appearance:none) {
  #skip:focus-visible { font-weight: 600 !important; }
}

.bd-mode-toggle { z-index: 1500; }

[data-bs-theme="light"] .dropdown-menu {
  --bs-dropdown-link-hover-bg: #d4d6e3;
  --bs-dropdown-link-active-bg: #004473;
}

[data-bs-theme="light"] .nav-pills .nav-link.active,
[data-bs-theme="light"] .nav-pills .show > .nav-link { --bs-nav-pills-link-active-bg: #004473; }

.navbar-brand {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

.navbar-brand img {
  position: relative;
  bottom: .2rem;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: .25rem;
}

@media (min-width: 768px) {
  .sidebar .offcanvas-md {
    position: -webkit-sticky;
    position: sticky;
    top: 67.2px;
  }
}

/*@media (min-width: 768px) {
  [data-bs-theme="light"] .sidebar a.nav-link:not(.active):hover,
  [data-bs-theme="light"] .sidebar a.nav-link:not(.active):focus {
    color: var(--bs-link-color);
    background-color: #d4d6e3;
  }

  [data-bs-theme="light"] .sidebar a.nav-link.active {
    color: #000 !important;
    font-weight: 500 !important;
  }

  [data-bs-theme="dark"] .sidebar a.nav-link:not(.active):hover,
  [data-bs-theme="dark"] .sidebar a.nav-link:not(.active):focus {
    color: var(--bs-link-color);
    background-color: #000;
  }

  [data-bs-theme="dark"] .sidebar a.nav-link.active {
    color: #fff !important;
    font-weight: 500 !important;
  }

  @supports (-moz-appearance:none) {
    [data-bs-theme="light"] .sidebar a.nav-link.active { font-weight: 600 !important; }

    [data-bs-theme="dark"] .sidebar a.nav-link.active { font-weight: 600 !important; }
  }
}*/

main a:not([role="button"], .img-link) {
  color: var(--bs-link-color);
  font-weight: 500;
  text-decoration: none;  
}

@supports (-moz-appearance:none) {
  main a:not([role="button"], .img-link) { font-weight: 600; }
}

main a:not([role="button"], .img-link, .list-group-item):link, 
main a:not([role="button"], .img-link, .list-group-item):visited {
  border-bottom-width: .15rem;
  border-bottom-style: solid;
}

main a:not([role="button"], .img-link, .list-group-item):hover, 
main a:active {
  border-bottom-width: .25rem;
  border-bottom-style: solid;
  color: var(--bs-link-hover-color);
}

main a:not([role="button"], .img-link):focus,
main a:not([role="button"], .img-link):focus-visible {
  outline: none;
  border: none;
  border-radius: .25rem;
  background-color: var(--bs-primary);
  color: #fff !important;
}

main a.img-link:focus {
  display: block;
  outline-width: .25rem;
  outline-style: solid;
  outline-offset: .5rem;
  border-radius: .5rem;
  text-decoration: none;
}

main h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

main h3 {
  margin-top: .75rem;
  margin-bottom: .75rem;
  font-size: 1.5rem;
}

main h4 {
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
}

@supports (-moz-appearance:none) {
  main h4 { font-weight: 600 !important; }
}

main h2:first-child,
main h3:first-child,
main h4:first-child {
  margin-top: 0;
}

h2.sidebar-heading { font-size: 1.1rem; }

h3.accordion-header,
h4.accordion-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 1rem;
  font-weight: 500;
}

@supports (-moz-appearance:none) {
  h3.accordion-header,
  h4.accordion-header { font-weight: 600 !important; }
}

.me-6 { margin-right: 4rem !important; }

main p { margin: 0 0 .5rem 0; }

main p:last-child { margin-bottom: 0; }

main p.lead { font-weight: 400; }

main ul > li:not(.nav-item) { margin-bottom: .5rem; }

main ul > li:not(.nav-item):last-of-type { margin: 0; }

main ul.bullet-circle > li { list-style-type: circle; }

main ul.bullet-square > li { list-style-type: square; }

main ol.bullet-upper-roman > li { list-style-type: upper-roman; }

main ol.bullet-lower-roman > li { list-style-type: lower-roman; }

main ol.bullet-upper-alpha > li { list-style-type: upper-alpha; }

main ol.bullet-lower-alpha > li { list-style-type: lower-alpha; }

main ol.bullet-decimal > li { list-style-type: decimal-leading-zero; }

hr { margin: 2rem 0; }

.img-right {
  float: right;
  margin: 0 0 1rem 1rem;
}

.img-right picture {
  width: 50%;
  max-width: 200px;
}

caption,
.caption {
  color: rgba(33,37,41,.75);
  text-align: center;
  font-style: italic;
}

tfoot { font-weight: 500; }

@supports (-moz-appearance:none) {
  tfoot { font-weight: 600 !important; }
}

button.accordion-button { font-weight: 500; }

@supports (-moz-appearance:none) {
  button.accordion-button { font-weight: 600 !important; }
}

.chart-bar-cpftp {
  width: 100%;
  height: 500px;
}

.chart-pie-cpfps26 {
  width: 100%;
  height: 600px;
}

@media (min-width: 576px) {
  .chart-pie-cpfps26 {
    width: 100%;
    height: 700px;
  }
}

@media (min-width: 768px) {
  .chart-pie-cpfps26 {
    width: 100%;
    height: 700px;
  }
}

@media (min-width: 992px) {
  .chart-pie-cpfps26 {
    width: 100%;
    height: 800px;
  }
}

@media (min-width: 1200px) {
  .chart-pie-cpfps26 {
    width: 100%;
    height: 700px;
  }
}

@media (min-width: 1400px) {
  .chart-pie-cpfps26 {
    width: 100%;
    height: 700px;
  }
}

.table-projects th,
.table-projects td { text-align: end; }
 
.table-projects tr > *:first-child { text-align: start; }

.table-summary td:last-of-type { text-align: end; }

@media print {
  header.bg-primary { background-color: #fff !important; }

  header.shadow { box-shadow: none !important; }

  h1.navbar-brand {
    font-size: 3rem;
    color: #000 !important;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }
  
  a.alert-link {
    color: #000 !important;
    font-weight: normal !important;
    text-decoration: none !important;
  }
  
  a.pdf-link::before {
    content: url("https://forward.rsdmo.org/assets/images/icons/media_1af545c8975954322fc3a195253c7b93b604d2414.webp");
    position: relative;
    top: .4rem;
    padding-right: .5rem;
  }
  
  .page-break-before { break-before: always; }
  
  .card-body.border-primary { border-color: #000 !important; }

  h3.accordion-header,
  h4.accordion-header { font-weight: 400 !important; }

  .accordion-button { font-size: 1.5rem !important; }

  .accordion-button::after { background-image: none !important; }

  .accordion-button:not(.collapsed) {
    background-color: none !important;
    color: #000 !important;
  }

  .accordion-collapse.collapse:not(.show) { display: block !important; }

  .tab-content > .tab-pane { display: block; }

  .fade:not(.show) { opacity: 1; }
  
  .modal {
    display: block !important;
    position: relative !important;
    border: 0px solid transparent !important;
  }
  
  .modal.fade .modal-dialog { transform: none !important; }
  
  .modal-dialog.modal-xl.modal-dialog-centered {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
  }
  
  .modal-header { display: none !important; }
}