@charset "UTF-8";
:root {
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
}

.accordion-collapse-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.ajax-progress, .ajax-progress-throbber {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  vertical-align: middle;
  text-align: center;
}

.ajax-progress-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/themes/custom/confluence/img/ajax-loader.gif");
  background-size: 100px;
  background-position: center;
  color: #000;
  z-index: 501;
}

.view-global-alerts.view {
  position: relative;
}
.view-global-alerts .views-row.color--red a {
  text-decoration: none;
  -webkit-box-shadow: inset 0 -1px 0 0 white !important;
          box-shadow: inset 0 -1px 0 0 white !important;
}
.view-global-alerts .views-row.color--red a:hover {
  -webkit-box-shadow: inset 0 -3px 0 0 white !important;
          box-shadow: inset 0 -3px 0 0 white !important;
}
.view-global-alerts .views-row.color--grey {
  background-color: var(--gray-300);
  color: var(--gray-900);
}
.view-global-alerts .views-row.color--grey a {
  color: var(--gray-900) !important;
  text-decoration: none;
}
@media only screen and (max-width: 992px) {
  .view-global-alerts .views-row .field-content {
    padding-right: 0 !important;
  }
}
.view-global-alerts .alerts {
  line-height: 1.2;
  width: 100%;
}
.view-global-alerts .alerts__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
.view-global-alerts .alerts__nav-item {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.view-global-alerts .alerts__nav-item.tns-nav-active .alerts__nav-item-button {
  background-color: #004468;
  border-color: #004468;
}
.view-global-alerts .alerts__nav-item.tns-nav-active .alerts__nav-item-button:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.view-global-alerts .alerts__nav-item-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid var(--secondary);
  -webkit-transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  position: relative;
}
.view-global-alerts .alerts__nav-item-button:before {
  content: "";
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.view-global-alerts .alerts__nav-item-button:hover {
  background-color: var(--secondary);
}
.view-global-alerts .alerts__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.view-global-alerts .alerts__controls--hidden {
  display: none;
}
@media only screen and (max-width: 992px) {
  .view-global-alerts .alerts__controls {
    position: relative;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    top: auto;
    padding-bottom: 16px;
  }
}
.view-global-alerts .alerts__control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  color: #fff;
  background-color: #00669b;
  border-color: #00669b;
  margin: 0;
  padding-left: 12px;
  padding-right: 12px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.view-global-alerts .alerts__control:hover {
  color: #212529;
  text-decoration: none;
}
.view-global-alerts .alerts__control:focus, .view-global-alerts .alerts__control.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
}
.view-global-alerts .alerts__control:hover {
  color: #fff;
  background-color: #004d75;
  border-color: #004468;
}
.view-global-alerts .alerts__control:focus, .view-global-alerts .alerts__control.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
}
.view-global-alerts .alerts__control:not(:disabled):not(.disabled):active, .view-global-alerts .alerts__control:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #004468;
  border-color: #003c5b;
}
.view-global-alerts .alerts__control:not(:disabled):not(.disabled):active:focus, .view-global-alerts .alerts__control:not(:disabled):not(.disabled).active:focus:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
}
.view-global-alerts .alerts__control:after {
  content: "";
  width: 100%;
  height: 44px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.view-global-alerts.color--red .alerts__nav-item-button {
  border-color: var(--white);
}

*.badge {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 80%;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 10rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 1em;
  padding-left: 1em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #123985;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #0c2658;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(18, 57, 133, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(18, 57, 133, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #00669B;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #fff;
  background-color: #004468;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #00AB4E;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #007837;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 171, 78, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 171, 78, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #00BFDF;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #0093ac;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 191, 223, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 191, 223, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #FFB71B;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #e79e00;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 183, 27, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 183, 27, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #CE2334;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #a21c29;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 35, 52, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(206, 35, 52, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #E4EFF4;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #c0dae5;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 239, 244, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(228, 239, 244, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.badge-white {
  color: #212529;
  background-color: #fff;
}

a.badge-white:hover,
a.badge-white:focus {
  color: #212529;
  background-color: #e6e6e6;
}

a.badge-white:focus,
a.badge-white.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.badge-teal {
  color: #212529;
  background-color: #2ED9C3;
}

a.badge-teal:hover,
a.badge-teal:focus {
  color: #212529;
  background-color: #21b3a1;
}

a.badge-teal:focus,
a.badge-teal.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(46, 217, 195, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(46, 217, 195, 0.5);
}

.badge-blue {
  color: #fff;
  background-color: #00BFDF;
}

a.badge-blue:hover,
a.badge-blue:focus {
  color: #fff;
  background-color: #0093ac;
}

a.badge-blue:focus,
a.badge-blue.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 191, 223, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 191, 223, 0.5);
}

.badge-purple {
  color: #fff;
  background-color: #6460AA;
}

a.badge-purple:hover,
a.badge-purple:focus {
  color: #fff;
  background-color: #4e4b8c;
}

a.badge-purple:focus,
a.badge-purple.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(100, 96, 170, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(100, 96, 170, 0.5);
}

.badge-primary {
  background-color: #d0d7e7;
  color: #212529;
}

.badge-secondary {
  background-color: #cce0eb;
  color: #212529;
}

.badge-success {
  background-color: #cceedc;
  color: #212529;
}

.badge-info {
  background-color: #ccf2f9;
  color: #212529;
}

.badge-warning {
  background-color: #fff1d1;
  color: #212529;
}

.badge-danger {
  background-color: #f5d3d6;
  color: #212529;
}

.badge-light {
  background-color: #fafcfd;
  color: #212529;
}

.badge-dark {
  background-color: #d6d8d9;
  color: #212529;
}

.badge-white {
  background-color: #fff;
  color: #212529;
}

.badge-teal {
  background-color: #d5f7f3;
  color: #212529;
}

.badge-blue {
  background-color: #ccf2f9;
  color: #212529;
}

.badge-purple {
  background-color: #e0dfee;
  color: #212529;
}

a.badge-primary {
  text-decoration: underline;
}

a.badge-primary:hover,
a.badge-primary:focus {
  text-decoration: underline;
  background-color: #97a8c9;
  color: #212529;
}

a.badge-secondary {
  text-decoration: underline;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  text-decoration: underline;
  background-color: #8fbcd3;
  color: #212529;
}

a.badge-success {
  text-decoration: underline;
}

a.badge-success:hover,
a.badge-success:focus {
  text-decoration: underline;
  background-color: #8fdab1;
  color: #212529;
}

a.badge-info {
  text-decoration: underline;
}

a.badge-info:hover,
a.badge-info:focus {
  text-decoration: underline;
  background-color: #8fe3f1;
  color: #212529;
}

a.badge-warning {
  text-decoration: underline;
}

a.badge-warning:hover,
a.badge-warning:focus {
  text-decoration: underline;
  background-color: #ffdf9b;
  color: #212529;
}

a.badge-danger {
  text-decoration: underline;
}

a.badge-danger:hover,
a.badge-danger:focus {
  text-decoration: underline;
  background-color: #e99ea6;
  color: #212529;
}

a.badge-light {
  text-decoration: underline;
}

a.badge-light:hover,
a.badge-light:focus {
  text-decoration: underline;
  background-color: #f3f8fa;
  color: #212529;
}

a.badge-dark {
  text-decoration: underline;
}

a.badge-dark:hover,
a.badge-dark:focus {
  text-decoration: underline;
  background-color: #a6a8ab;
  color: #212529;
}

a.badge-white {
  text-decoration: underline;
}

a.badge-white:hover,
a.badge-white:focus {
  text-decoration: underline;
  background-color: #fff;
  color: #212529;
}

a.badge-teal {
  text-decoration: underline;
}

a.badge-teal:hover,
a.badge-teal:focus {
  text-decoration: underline;
  background-color: #a3eee5;
  color: #212529;
}

a.badge-blue {
  text-decoration: underline;
}

a.badge-blue:hover,
a.badge-blue:focus {
  text-decoration: underline;
  background-color: #8fe3f1;
  color: #212529;
}

a.badge-purple {
  text-decoration: underline;
}

a.badge-purple:hover,
a.badge-purple:focus {
  text-decoration: underline;
  background-color: #bbb9da;
  color: #212529;
}

.categorized-links {
  clear: both;
  display: block;
  padding: 2rem 0 1rem 0;
  width: 100%;
}
.categorized-links__content {
  background-color: rgba(0, 102, 155, 0.1);
  padding: 1.5rem 1.75rem;
  text-align: center;
  line-height: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.categorized-links__content a {
  position: relative;
  margin-right: 1.75rem;
  margin-left: 1.75rem;
  display: inline-block;
}
.categorized-links__content a:hover {
  text-decoration: underline;
}
.categorized-links__content a:not(:last-of-type):after {
  position: absolute;
  display: inline-block;
  content: "|";
  margin-left: 1.7rem;
  color: var(--gray-400);
  cursor: default;
}
.categorized-links__header {
  clear: both;
  display: block;
  margin: 0;
  width: 100%;
}
.categorized-links__section {
  display: none;
  -webkit-transition: 0.35s opacity ease-in-out;
  -o-transition: 0.35s opacity ease-in-out;
  transition: 0.35s opacity ease-in-out;
  opacity: 0;
}
.categorized-links__section--active {
  display: block;
  opacity: 1;
}
.categorized-links--mobile {
  display: none;
}
.categorized-links--mobile .accordion:not(:last-of-type) {
  margin-bottom: 0.25rem;
}
.categorized-links--mobile #card {
  border: none !important;
  border-radius: 0 !important;
  margin: 0;
}
.categorized-links--mobile #card .card-header {
  background-color: var(--secondary);
  border-radius: 0 !important;
}
.categorized-links--mobile #card .card-header .heading,
.categorized-links--mobile #card .card-header i {
  color: var(--white);
}
.categorized-links--mobile #card .card-body {
  background-color: rgba(0, 102, 155, 0.1);
}
@media only screen and (max-width: 48rem) {
  .categorized-links {
    display: none;
  }
  .categorized-links--mobile {
    display: block;
  }
}

.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category-list__item:not(:last-child) {
  margin-right: 0.125rem;
}
.category-list__button {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--secondary);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #fff;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.5;
}
.category-list__button:hover {
  background-color: rgba(0, 102, 155, 0.85);
}
.category-list__button--selected {
  background-color: var(--primary);
  background-image: url(/themes/custom/confluence/img/nav-notch.png);
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
}
.category-list__button--selected:hover {
  background-color: #123985;
}

.cc_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 48rem) {
  .cc_banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.cc_banner-wrapper {
  border-top: 1px solid var(--gray-300);
  background-color: var(--white);
  bottom: 0;
  left: 0;
  max-height: 60vh;
  overflow: hidden auto;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.cc_logo {
  display: none;
}
.cc_message {
  margin: 0;
  padding: 0 2rem 0 0;
}
@media only screen and (max-width: 48rem) {
  .cc_message {
    margin: 0 0 1rem 0;
    padding: 0;
    width: 100%;
  }
}

.datepicker {
  padding: 4px !important;
  min-width: 275px !important;
  border-radius: 4px;
  direction: ltr;
}
.datepicker table {
  width: 100% !important;
}

.datepicker-inline {
  width: 220px;
}

.datepicker-rtl {
  direction: rtl;
}

.datepicker-rtl.dropdown-menu {
  left: auto;
}

.datepicker-rtl table tr td span {
  float: right;
}

.datepicker-dropdown {
  top: 0;
  left: 0;
}

.datepicker-dropdown:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

.datepicker-dropdown:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}

.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}

.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}

.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}

.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}

.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}

.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker td, .datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}

.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
  background-color: transparent;
}

.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}

.datepicker table tr td.new, .datepicker table tr td.old {
  color: #999;
}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
  background-color: #fde19a;
  background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd49a), to(#fdf59a));
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fdd49a", endColorstr="#fdf59a", GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}

.datepicker table tr td.today.active, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled.disabled, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled:hover.disabled, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today.disabled:hover[disabled], .datepicker table tr td.today.disabled[disabled], .datepicker table tr td.today:active, .datepicker table tr td.today:hover, .datepicker table tr td.today:hover.active, .datepicker table tr td.today:hover.disabled, .datepicker table tr td.today:hover:active, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today:hover[disabled], .datepicker table tr td.today[disabled] {
  background-color: #fdf59a;
}

.datepicker table tr td.today.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today:active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today:hover:active {
  background-color: #fbf069\9 ;
}

.datepicker table tr td.today:hover:hover {
  color: #000;
}

.datepicker table tr td.today.active:hover {
  color: #fff;
}

.datepicker table tr td.range, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover, .datepicker table tr td.range:hover {
  background: #eee;
  border-radius: 0;
}

.datepicker table tr td.range.today, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today:hover {
  background-color: #f3d17a;
  background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3c17a), to(#f3e97a));
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3c17a", endColorstr="#f3e97a", GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}

.datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled.disabled, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled:hover.disabled, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.disabled:hover:hover, .datepicker table tr td.range.today.disabled:hover[disabled], .datepicker table tr td.range.today.disabled[disabled], .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today:hover.disabled, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today:hover:hover, .datepicker table tr td.range.today:hover[disabled], .datepicker table tr td.range.today[disabled] {
  background-color: #f3e97a;
}

.datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today:hover:active {
  background-color: #efe24b\9 ;
}

.datepicker table tr td.selected, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected:hover {
  background-color: #9e9e9e;
  background-image: -o-linear-gradient(to bottom, #b3b3b3, grey);
  background-image: -o-linear-gradient(top, #b3b3b3, grey);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), to(grey));
  background-image: linear-gradient(to bottom, #b3b3b3, grey);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3b3b3", endColorstr="#808080", GradientType=0);
  border-color: grey grey #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled.disabled, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled:hover.disabled, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.disabled:hover:hover, .datepicker table tr td.selected.disabled:hover[disabled], .datepicker table tr td.selected.disabled[disabled], .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected:hover.disabled, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected:hover:hover, .datepicker table tr td.selected:hover[disabled], .datepicker table tr td.selected[disabled] {
  background-color: grey;
}

.datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected:hover:active {
  background-color: #666 \9 ;
}

.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
  background-color: #123985;
  background-repeat: repeat-x;
  border-color: #123985;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active[disabled] {
  background-color: #123985;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active:active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover:active {
  background-color: #039 \9 ;
}

.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}

.datepicker table tr td span.focused, .datepicker table tr td span:hover {
  background: #eee;
}

.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover {
  background-color: #123985;
  border-color: #123985;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active[disabled] {
  background-color: #123985;
}

.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active:hover:active {
  background-color: #039 \9 ;
}

.datepicker table tr td span.new, .datepicker table tr td span.old {
  color: #999;
}

.datepicker .datepicker-switch {
  width: 145px;
}

.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th {
  cursor: pointer;
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: #eee;
}

.datepicker .next.disabled, .datepicker .prev.disabled {
  visibility: hidden;
}

.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

.input-append.date .add-on, .input-prepend.date .add-on {
  cursor: pointer;
}

.input-append.date .add-on i, .input-prepend.date .add-on i {
  margin-top: 3px;
}

.input-daterange input {
  text-align: center;
}

.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}

.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}

.department-footer {
  background-color: var(--gray-200);
}
.department-footer .view-department-footer .view-content {
  padding: 2rem 0;
}
.department-footer .view-department-footer .views-row {
  margin-top: 3rem;
}
.department-footer .view-department-footer .views-row:first-child {
  margin-top: 0;
}

#block-webform .webform-submission-feedback-form > fieldset {
  display: block;
}
#block-webform .webform-submission-feedback-form .fieldset-legend {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 44px;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 28px;
}
@media (max-width: 991.98px) {
  #block-webform .webform-submission-feedback-form .fieldset-legend {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 991.98px) {
  #block-webform .webform-submission-feedback-form .fieldset-legend {
    line-height: 26px;
  }
}
#block-webform .webform-submission-feedback-form #edit-selection {
  padding: 0;
  position: relative;
  margin: 1rem 0 0 0;
}
#block-webform .webform-submission-feedback-form #edit-selection input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
#block-webform .webform-submission-feedback-form #edit-selection input:focus + label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(54, 87, 151, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(54, 87, 151, 0.5);
}
#block-webform .webform-submission-feedback-form #edit-selection--wrapper {
  margin: 0;
}
#block-webform .webform-submission-feedback-form #edit-selection--wrapper + * {
  margin-top: 1rem;
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes],
#block-webform .webform-submission-feedback-form label[for=edit-selection-no] {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  color: #fff;
  background-color: #00669b;
  border-color: #00669b;
  cursor: pointer;
  margin: 0;
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:hover,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:hover {
  color: #212529;
  text-decoration: none;
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:focus, #block-webform .webform-submission-feedback-form label[for=edit-selection-yes].focus,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:focus,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no].focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:hover,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:hover {
  color: #fff;
  background-color: #004d75;
  border-color: #004468;
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:focus, #block-webform .webform-submission-feedback-form label[for=edit-selection-yes].focus,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:focus,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no].focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:not(:disabled):not(.disabled):active, #block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:not(:disabled):not(.disabled).active,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:not(:disabled):not(.disabled):active,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #004468;
  border-color: #003c5b;
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:not(:disabled):not(.disabled):active:focus, #block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:not(:disabled):not(.disabled).active:focus:focus,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:not(:disabled):not(.disabled):active:focus,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:not(:disabled):not(.disabled).active:focus:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5);
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes]:active,
#block-webform .webform-submission-feedback-form label[for=edit-selection-no]:active {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5) !important;
          box-shadow: 0 0 0 0.2rem rgba(38, 125, 170, 0.5) !important;
}
#block-webform .webform-submission-feedback-form label[for=edit-selection-yes] {
  margin-right: 0.25rem;
}

.grid-row > * > *:first-child + * {
  margin-top: 8px;
}

header.global-header .language-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 75rem) {
  header.global-header .language-container {
    gap: 1rem 2rem;
  }
  header.global-header .language-container .region-nav-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  header.global-header .language-container .region-nav-header ul a {
    margin: 0;
  }
  header.global-header .language-container .language-link {
    margin: 0;
  }
}
@media (max-width: 74.9988rem) {
  header.global-header .language-container a {
    line-height: 1.2;
  }
}
header.global-header .language-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
header.global-header nav.main-nav {
  left: 0;
}
@media (min-width: 75rem) {
  header.global-header nav.main-nav {
    max-width: 80%;
  }
}

.homepage-hero img {
  height: auto;
  max-width: 100%;
}

a:hover {
  color: #091c42;
}

.tabs a.is-active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-outline-secondary:not(.disabled):not(:disabled):not(.active):not(:active):hover, .btn-outline-secondary:not(.disabled):not(:disabled):not(.active):not(:active):focus {
  color: #212529;
  border-color: #212529;
  background-color: #CCE0EA;
}

.container, .cc_container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
.container--wide, .cc_container--wide {
  max-width: 2040px !important;
}

@media (min-width: 36rem) {
  .container, .cc_container {
    max-width: 600px;
  }
}
@media (min-width: 48rem) {
  .container, .cc_container {
    max-width: 720px;
  }
}
@media (min-width: 62rem) {
  .container, .cc_container {
    max-width: 960px;
  }
}
@media (min-width: 75rem) {
  .container, .cc_container {
    max-width: 1152px;
  }
}
nav.tabs {
  margin-bottom: 1rem;
}

.global-header {
  position: relative;
}
.global-header .navbar-collapse {
  top: 100% !important;
}

img {
  height: auto;
}

figure img {
  width: 100%;
}

.header-gradient .header-close-btn {
  display: block;
  left: auto;
  right: 0;
  top: 5rem;
}

.region-sidebar-first .sidebar-title-box .sidebar-title {
  background-color: transparent;
}
.region-sidebar-first nav .m-menu {
  display: none;
}
.region-sidebar-first nav .m-menu__item--active-trail > .m-menu {
  display: block;
}
.region-sidebar-first nav .sidenav {
  display: block;
}
.region-sidebar-first nav .is-active {
  background-color: var(--light);
}
.region-sidebar-first nav .is-active:before {
  background-color: var(--secondary);
}

#block-sitemap-main > ul {
  padding-left: 0;
  list-style: none;
}
#block-sitemap-main > ul > li:first-child > h2 {
  border: 0;
  padding-top: 0;
}
#block-sitemap-main .sitemap__section-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#block-sitemap-main .sitemap__section-title + ul {
  padding-left: 0;
  list-style: none;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
@media only screen and (max-width: 64rem) {
  #block-sitemap-main .sitemap__section-title + ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media only screen and (max-width: 48rem) {
  #block-sitemap-main .sitemap__section-title + ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
#block-sitemap-main .sitemap__section-title + ul ul {
  list-style: circle;
}

#block-sitemap-header {
  margin-top: 2rem;
}
#block-sitemap-header #sitemap-quicklinks {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#block-sitemap-header > ul {
  padding-left: 0;
  list-style: none;
}

header.global-header nav.main-nav .dropdown-menu li.dropdown > a {
  max-width: calc(100% - 3rem);
}
@media only screen and (max-width: 600px) {
  header.global-header nav.main-nav .dropdown-menu li.dropdown > a {
    max-width: calc(100% - 5rem);
  }
}

@media (max-width: 1199.98px) {
  header.global-header nav.main-nav .dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
}

@media only screen and (min-width: 75rem) {
  #block-mainmenu .main-menu > .dropdown:last-of-type > a {
    background-color: #003e5e;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin-right: 0;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
  #block-mainmenu .main-menu > .dropdown:last-of-type > a:hover, #block-mainmenu .main-menu > .dropdown:last-of-type > a:focus {
    color: #003049;
    background-color: #fff;
  }
}
#block-mainmenu .main-menu > .dropdown:last-of-type > .dropdown-menu {
  right: 0;
  left: auto;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal-dialog:not(.modal-dialog-scrollable) .modal-header, .modal-dialog:not(.modal-dialog-scrollable) .modal-footer {
  border: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.555555555;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 36rem) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 62rem) {
  .modal-lg, .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 75rem) {
  .modal-xl {
    max-width: 1140px;
  }
}
.released-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 1rem;
}
.released-date h3 {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
.released-date > * {
  margin: 0 0.25rem 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #123985;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #00669b;
  text-decoration: none;
  background-color: #fff;
  border-color: #00669b;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #00669b;
  border-color: #00669b;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.249999875rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-sm .page-link {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.flippy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 !important;
}

.flippy-previous,
.flippy-next {
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}
.flippy-previous a,
.flippy-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 0 8px;
  padding: 0.5rem 1rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #123985;
  background-color: #fff;
  border: 1px solid #dee2e6;
  margin: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flippy-previous a:hover,
.flippy-next a:hover {
  z-index: 2;
  color: #00669b;
  text-decoration: none;
  background-color: #fff;
  border-color: #00669b;
}
.flippy-previous a:focus,
.flippy-next a:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25) !important;
          box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25) !important;
}

.flippy-previous a {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.flippy-previous a:before {
  content: "\f104";
  font-family: "Font Awesome 5 Pro";
}

.flippy-next {
  margin-left: -1px !important;
}
.flippy-next a {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.flippy-next a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
}

.was-validated select:valid:focus, select.is-valid:focus {
  border-color: #007837;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 120, 55, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 120, 55, 0.25);
}

.was-validated select:valid ~ .valid-feedback, .was-validated select:valid ~ .valid-tooltip, select.is-valid ~ .valid-feedback, select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated select:invalid, select.is-invalid {
  border-color: #CE2334;
  padding-right: calc((1em + 1rem) * 3 / 4 + 2rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23CE2334' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23CE2334' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 2rem/calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
}

.was-validated select:invalid:focus, select.is-invalid:focus {
  border-color: #CE2334;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 35, 52, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(206, 35, 52, 0.25);
}

.was-validated select:invalid ~ .invalid-feedback, .was-validated select:invalid ~ .invalid-tooltip, select.is-invalid ~ .invalid-feedback, select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.form-inline .input-group, .form-inline select {
  width: auto;
}

.input-group > .form-control, .input-group > .form-control-plaintext, .input-group > select, .input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control, .input-group > .form-control + select, .input-group > .form-control + .custom-file, .input-group > .form-control-plaintext + .form-control, .input-group > .form-control-plaintext + select, .input-group > .form-control-plaintext + .custom-file, .input-group > select + .form-control, .input-group > select + select, .input-group > select + .custom-file, .input-group > .custom-file + .form-control, .input-group > .custom-file + select, .input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus, .input-group > select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .form-control:not(:last-child), .input-group > select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child), .input-group > select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-lg > .form-control:not(textarea), .input-group-lg > select {
  height: calc(1.55em + 1rem + 2px);
}

.input-group-lg > .form-control, .input-group-lg > select, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.249999875rem;
  line-height: 1.55;
  border-radius: 0.25rem;
}

.input-group-sm > .form-control:not(textarea), .input-group-sm > select {
  height: calc(1.15em + 1rem + 2px);
}

.input-group-sm > .form-control, .input-group-sm > select, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.15;
  border-radius: 0.2rem;
}

.input-group-lg > select, .input-group-sm > select {
  padding-right: 2rem;
}

select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2rem;
  color: #343a40;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select:focus {
  border-color: #00669B;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 155, 0.25);
}

select:focus::-ms-value {
  color: #343a40;
  background-color: #fff;
}

select[multiple], select[size]:not([size="1"]) {
  height: auto;
  padding-right: 1rem;
  background-image: none;
}

select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

select::-ms-expand {
  display: none;
}

select.custom-select-sm {
  height: calc(1.15em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
}

select.custom-select-lg {
  height: calc(1.55em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.249999875rem;
  line-height: 1.5rem;
}

.custom-control-label::before, .custom-file-label, select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before, .custom-file-label, select {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.sidenav-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sidenav-item-wrapper a {
  width: 100%;
}
.sidenav-item-wrapper .sidenav-btn {
  display: block;
  height: 2rem;
  padding: 0rem !important;
  width: 2rem !important;
}
.sidenav-item-wrapper .sidenav-btn::before {
  display: none !important;
}
.sidenav-item-wrapper .sidenav-btn i {
  left: 50%;
  right: auto !important;
  margin-top: 0 !important;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.navigation-mobile .navigation {
  display: block;
}

.sidebar .navigation .sidebar-title-box {
  display: none;
}
.sidebar .navigation .sidenav > .m-menu__item {
  display: none;
}
.sidebar .navigation .sidenav > .m-menu__item.m-menu__item--active-trail {
  display: block;
}
.sidebar .navigation .sidenav > .m-menu__item.m-menu__item--active-trail > .sidenav-item-wrapper > .sidenav-item {
  padding: 0.5rem 0.25rem 0.5rem 1.1rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.85rem;
  color: #123985;
  position: relative;
}
.sidebar .navigation .sidenav > .m-menu__item.m-menu__item--active-trail > .sidenav-item-wrapper > .sidenav-item:hover:after {
  background-color: var(--light);
}
.sidebar .navigation .sidenav > .m-menu__item.m-menu__item--active-trail > .sidenav-item-wrapper > .sidenav-item:after {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: -1px;
  top: 0;
  background-color: var(--white);
  z-index: 1;
}
.sidebar .navigation .sidenav > .m-menu__item.m-menu__item--active-trail > .sidenav-item-wrapper > .sidenav-btn {
  display: none;
}

ul.sidenav > li.show::before {
  display: none;
}
ul.sidenav > li > ul > li > .sidenav-item-wrapper > a,
ul.sidenav > li > ul > li > a {
  font-weight: 600 !important;
  padding-left: 1.1rem !important;
}
ul.sidenav > li > ul > li > .sidenav-item-wrapper > a::before,
ul.sidenav > li > ul > li > a::before {
  display: none;
}
ul.sidenav > li > ul > li > ul > li > .sidenav-item-wrapper > a,
ul.sidenav > li > ul > li > ul > li > a {
  padding-left: 2.4rem !important;
}
ul.sidenav > li > ul > li > ul > li > .sidenav-item-wrapper > a::before,
ul.sidenav > li > ul > li > ul > li > a::before {
  left: 1.15rem !important;
}
ul.sidenav > li > ul > li > ul > li > ul > li > .sidenav-item-wrapper > a,
ul.sidenav > li > ul > li > ul > li > ul > li > a {
  padding-left: 3.3rem !important;
}
ul.sidenav > li > ul > li > ul > li > ul > li > .sidenav-item-wrapper > a::before,
ul.sidenav > li > ul > li > ul > li > ul > li > a::before {
  left: 2.15rem !important;
}
ul.sidenav > li > ul > li > ul > li > ul > li > ul > li > .sidenav-item-wrapper > a,
ul.sidenav > li > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 4.25rem !important;
}
ul.sidenav > li > ul > li > ul > li > ul > li > ul > li > .sidenav-item-wrapper > a::before,
ul.sidenav > li > ul > li > ul > li > ul > li > ul > li > a::before {
  left: 3rem !important;
}
.toolbar a {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

blockquote {
  font-size: 1em;
  text-align: center;
  margin: 0 0 20px 0;
}
blockquote > * {
  font-size: 1.4em;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 0.25rem !important;
}
blockquote::before {
  color: #666;
  content: "“";
  font-size: 4em;
  line-height: 0.4em;
  vertical-align: -0.7em;
  font-family: Times New Roman;
  margin-left: 10px;
}
blockquote::after {
  color: #666;
  content: "”";
  font-size: 4em;
  line-height: 0.4em;
  margin-left: 0.15em;
  vertical-align: -0.66em;
  font-family: Times New Roman;
}

.list-view .view-content {
  margin-bottom: 16px;
}
.list-view .views-row {
  border-bottom: 1px solid var(--gray-300);
  display: block;
  padding: 20px 0;
  width: 100%;
}

.view-filters {
  margin-bottom: 16px;
  position: relative;
}
.view-filters .form--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.view-filters .form--inline > * {
  margin: 0 1rem 1rem 0;
}
.view-filters .form--inline > *:last-child {
  margin: 0 0 1rem 0;
}
.view-filters .form-actions input[id*=edit-reset] {
  position: absolute;
  left: 0;
  top: 100%;
  margin: 16px 0 0 0;
}
.view-filters:has(input[id*=edit-reset]) {
  margin-bottom: 64px;
}

.view-media-releases.view-display-id-block_5 .view-filters,
.view-media-releases.view-display-id-block_6 .view-filters {
  display: none;
}

#views-exposed-form-projects-block-1 .form-item-type,
#views-exposed-form-projects-block-1 .form-item-topic,
#views-exposed-form-projects-block-2 .form-item-type,
#views-exposed-form-projects-block-2 .form-item-topic {
  display: none;
}

.view-media-releases .view-filters *[id*=edit-date-wrapper] .fieldset-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.view-media-releases .view-filters .form-actions {
  margin-bottom: 32px;
}

.views-filters-summary {
  margin-bottom: 1rem;
}
.views-filters-summary .prefix:has(+ .items:empty) {
  display: none;
}
.views-filters-summary .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.views-filters-summary .item {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  position: relative;
  background-color: #cce0eb;
  border-radius: 50px;
  padding: 2px 16px;
  -webkit-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.views-filters-summary .item:hover {
  background-color: #a7cadd;
  text-decoration: underline;
}
.views-filters-summary .item:active {
  background-color: #cce0eb;
}
.views-filters-summary .label {
  font-weight: 600;
  font-size: 0.9rem;
}
.views-filters-summary .value {
  border: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.views-filters-summary a.remove-filter {
  background-color: unset;
  vertical-align: unset;
  margin: 0;
  padding: 0;
  border-radius: 0;
  display: inline-block;
  margin-left: 4px;
  overflow: hidden;
  text-indent: -9999px;
}
.views-filters-summary a.remove-filter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.views-filters-summary a.remove-filter:after {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  color: #212529;
  text-indent: 0;
  float: left;
}

.custom-checkbox .form-item, .custom-radio .form-item {
  margin: 0;
}

.form-item {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.form-item input.error, .form-item textarea.error {
  border: 1px solid #CE2334;
}
.form-item-date-time-date {
  margin-right: 0.5rem;
}

.form-managed-file input.error, .form-managed-file textarea.error {
  border: none;
}

.form-text {
  margin-top: 0;
}

.invalid-feedback {
  display: block;
}