/* ============================================================
  Styles for components that are shared across the whole site. Individual SCSS files in this directory are separate libraries that are added in templates, etc.
  ============================================================ */
/* ============================================================
  Preprocessors, fonts, variables.
  These ITCSS naming conventions and structure are inspired by Lindsay Grizzard's article on Medium: https://medium.com/gusto-design/creating-the-perfect-css-system-fa38f5bcdd9e
  ============================================================ */
/* ============================================================
  Vendor-specific styles.
  ============================================================ */
/* ============================================================
  Breakpoints
  ============================================================ */
/* ============================================================
  Colors
  ============================================================ */
/* Opacity Mixin for background color only */
/* ============================================================
  Styles for fonts/typefaces.
  ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@400;500;700&display=swap");
/* ============================================================
  Placeholders for repeat styles.
  ============================================================ */
.footer__top, .footer__bottom, .header > div:first-child {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1em; }
  @media (min-width: 1025px) {
    .footer__top, .footer__bottom, .header > div:first-child {
      padding: 2em; } }
  @media (min-width: 1440px) {
    .footer__top, .footer__bottom, .header > div:first-child {
      padding: 2em 0; } }


.nomargin {
  margin: 0 !important; }


.nopadding {
  padding: 0 !important; }


.nospacing {
  margin: 0 !important;
  padding: 0 !important; }

header nav {
  font-family: "Red Hat Text", sans-serif;
  position: relative; }
  header nav li {
    display: block; }
    @media (min-width: 1025px) {
      header nav li {
        display: inline-block; } }
  header nav a {
    color: #3c5f96;
    text-decoration: none;
    font-weight: 600;
    display: block;
    width: 100%;
    height: 100%; }
    header nav a:hover {
      text-decoration: underline; }

header nav .menu-level-0 > li {
  padding: 0.75em 0; }
  @media (min-width: 1025px) {
    header nav .menu-level-0 > li {
      padding: 0.5em 0 0.5rem 1rem; } }
  @media (min-width: 1280px) {
    header nav .menu-level-0 > li {
      padding: 0.5em 0 0.5rem 2.5rem; } }

header nav .menu-level-1 {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s; }
  header nav .active.menu-level-1 {
    transform: scaleY(1); }

.hideClass {
  display: none; }

.showClass {
  display: block; }

::placeholder {
  color: #404040;
  opacity: 1;
  font-family: "Red Hat Text", sans-serif !important;
  font-size: 1.125rem; }

/* ============================================================
  Styles for alerts.
  Some of these are resetting the default styles for the
  "Site Alert" module, along with adding our custom styling.
  ============================================================ */
div.site-alert {
  font-weight: 400; }
  div.site-alert > div {
    border: 0 !important;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    margin: 0 !important; }
    @media (min-width: 888px) {
      div.site-alert > div {
        flex-direction: row; } }
    div.site-alert > div div.type,
    div.site-alert > div div.text {
      align-self: stretch;
      align-items: center;
      align-content: center;
      padding: 1rem; }
    div.site-alert > div div.type {
      display: flex;
      font-size: 1.688rem;
      min-width: 11rem; }
      div.site-alert > div div.type svg {
        margin: 0 1rem 0 0; }
      div.site-alert > div div.type span {
        display: flex;
        align-items: center;
        align-content: center;
        font-family: "Red Hat Text", sans-serif;
        font-weight: 500;
        flex: 1;
        height: 100%; }
    div.site-alert > div div.text {
      align-content: center;
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      font-size: 1.125rem;
      justify-content: center;
      min-width: 60%; }
      div.site-alert > div div.text h3,
      div.site-alert > div div.text h4,
      div.site-alert > div div.text h5 {
        margin: 0 0 1rem; }
      div.site-alert > div div.text a {
        font-weight: 400; }
  div.site-alert div.severity-high {
    background: #404040;
    color: #fff; }
    div.site-alert div.severity-high div.type {
      background: #b80000; }
      div.site-alert div.severity-high div.type span {
        text-transform: uppercase; }
    div.site-alert div.severity-high div.text {
      border-style: outset;
      border-top-color: #b80000;
      border-right-color: transparent;
      border-width: .365rem .365rem 0 0; }
      div.site-alert div.severity-high div.text h3,
      div.site-alert div.severity-high div.text h4,
      div.site-alert div.severity-high div.text h5,
      div.site-alert div.severity-high div.text a {
        color: #fff; }
      div.site-alert div.severity-high div.text a:hover {
        background: #b80000; }
  div.site-alert div.severity-medium {
    background: #404040;
    color: #fff; }
    div.site-alert div.severity-medium div.type {
      background: #4a5978; }
    div.site-alert div.severity-medium div.text h3,
    div.site-alert div.severity-medium div.text h4,
    div.site-alert div.severity-medium div.text h5,
    div.site-alert div.severity-medium div.text a {
      color: #fff; }
    div.site-alert div.severity-medium div.text a:hover {
      background: #4a5978; }
  div.site-alert div.severity-low {
    background: #eee;
    color: #404040; }
    div.site-alert div.severity-low div.type {
      border-bottom: 0.125rem solid #979797;
      padding: 1rem 0;
      margin: 0 1rem; }
      @media (min-width: 888px) {
        div.site-alert div.severity-low div.type {
          border: 0;
          margin: 0;
          padding: 1rem 0 1rem 1rem; } }
      @media (min-width: 888px) {
        div.site-alert div.severity-low div.type span {
          border-right: 0.125rem solid #979797; } }

/* ============================================================
  Styles for the footer.
  ============================================================ */
footer {
  background: #404040;
  color: #fff;
  margin-top: 1rem; }
  @media (min-width: 888px) {
    footer {
      margin-top: 4rem; } }
  footer a {
    color: #fff;
    border-bottom: 0;
    text-decoration: none; }
    footer a:hover {
      color: #bacae4;
      text-decoration: underline; }

.footer__top {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative; }
  @media (min-width: 888px) {
    .footer__top {
      flex-direction: row; } }
  @media (min-width: 1025px) {
    .footer__top {
      padding: .5rem 2rem; } }
  @media (min-width: 1440px) {
    .footer__top {
      padding: .5rem 0; } }
  .footer__top > div {
    flex: 1;
    margin: 1rem 0; }
  .footer__top .footer__address {
    display: flex;
    flex: 2; }
  .footer__top .footer__logo {
    margin: 0 1rem 0 0;
    max-width: 78px; }
  .footer__top address {
    font-style: normal; }
  .footer__top nav {
    flex: 1; }
    .footer__top nav ul li {
      margin: 1rem 0; }

.footer__bottom {
  border-top: 0.0625rem solid #979797;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between; }
  @media (min-width: 888px) {
    .footer__bottom {
      flex-direction: row;
      text-align: left; } }
  @media (min-width: 1025px) {
    .footer__bottom {
      padding: .5rem 2rem; } }
  @media (min-width: 1440px) {
    .footer__bottom {
      padding: .5rem 0; } }
  .footer__bottom > div {
    display: flex;
    align-items: center;
    align-content: center; }
  .footer__bottom .footer__utilities {
    margin: 0 0 1rem; }
    @media (min-width: 768px) {
      .footer__bottom .footer__utilities {
        margin: 0; } }
    .footer__bottom .footer__utilities nav > ul {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      align-content: center;
      position: relative; }
      @media (min-width: 888px) {
        .footer__bottom .footer__utilities nav > ul {
          flex-direction: row;
          padding: .5rem 0; } }
      .footer__bottom .footer__utilities nav > ul li {
        margin: 1rem 0 0; }
        @media (min-width: 888px) {
          .footer__bottom .footer__utilities nav > ul li {
            margin: 0 1rem 0 0; } }
  .footer__bottom .footer__copyright {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column; }
    @media (min-width: 888px) {
      .footer__bottom .footer__copyright {
        flex-direction: row;
        text-align: left; } }
    .footer__bottom .footer__copyright span {
      display: none; }
      @media (min-width: 888px) {
        .footer__bottom .footer__copyright span {
          display: block;
          margin: 0 .25rem; } }
    .footer__bottom .footer__copyright a {
      border-bottom: 0;
      margin: .5rem 0 1rem;
      display: flex;
      align-items: center;
      align-content: center; }
      @media (min-width: 888px) {
        .footer__bottom .footer__copyright a {
          margin: .5rem 0; } }
      .footer__bottom .footer__copyright a img {
        display: inline-block;
        width: 1.5rem;
        height: 1.5rem;
        margin: 0 0 0 .75rem; }

/* ============================================================
  Styles for the header.
  There will be instances of IDs targetting " --2" versions of
  blocks. These are for the styles on the login error page.
  ============================================================ */
.header {
  background: #fff;
  border-bottom: 0.1875rem solid #eee;
  margin: 0 auto 1.1rem;
  max-height: 100vh; }
  @media (min-width: 1025px) {
    .header {
      overflow: visible;
      max-height: 10.4rem; } }
  @media (min-width: 1280px) {
    .header {
      max-height: 10.25rem; } }
  .header a {
    text-decoration: none; }
  .header.active {
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto; }
  .menu-open .header {
    min-height: initial; }
  .header > div:first-child {
    display: flex;
    padding: 0;
    position: relative; }
    @media (min-width: 1025px) {
      .header > div:first-child {
        padding: 1rem 2rem; } }
    @media (min-width: 1440px) {
      .header > div:first-child {
        padding: 1rem 0; } }
    .menu-open .header > div:first-child {
      flex-direction: column; }
  .menu-open .header::after {
    display: none; }
  .header #block-paladin-branding,
  .header #block-paladin-branding--2 {
    background: #fff;
    height: 5rem;
    padding: .5rem;
    z-index: 500; }
    @media (min-width: 1025px) {
      .header #block-paladin-branding,
      .header #block-paladin-branding--2 {
        border: 0;
        height: initial;
        position: relative;
        left: 0;
        top: 0;
        right: auto;
        width: 6.25rem;
        z-index: 100;
        padding: 0;
        margin: 0 1rem 0 0; } }
    .header #block-paladin-branding a,
    .header #block-paladin-branding--2 a {
      border-bottom: 0;
      display: block; }
    .header #block-paladin-branding img,
    .header #block-paladin-branding--2 img {
      max-width: 3.125rem; }
      @media (min-width: 1025px) {
        .header #block-paladin-branding img,
        .header #block-paladin-branding--2 img {
          max-width: none; } }
  .header .header__container {
    width: 100%; }
    .header .header__container nav {
      position: absolute; }
    .header .header__container nav[aria-hidden="false"] {
      position: relative; }
    .header .header__container nav[aria-hidden="true"] {
      position: absolute; }
    @media (min-width: 1025px) {
      .header .header__container .header__container {
        position: absolute; }
      .header .header__container nav,
      .header .header__container nav[aria-hidden="true"] {
        position: initial; } }
    @media (min-width: 1025px) {
      .header .header__container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: 0;
        padding-top: 0;
        position: relative; } }
    .menu-open .header .header__container {
      background: #4a5978;
      position: initial;
      padding-top: 6rem; }
  .header .header__utilities {
    z-index: 500;
    font-weight: 600;
    font-size: 1.125rem;
    display: none;
    margin: 0; }
    @media (min-width: 1025px) {
      .header .header__utilities {
        display: flex;
        justify-content: flex-end;
        order: 1;
        font-size: 1rem;
        font-weight: 400; } }
    .menu-open .header .header__utilities {
      display: block;
      padding: 1rem; }
    .header .header__utilities a.header__utilities__link,
    .header .header__utilities > div {
      color: #fff;
      display: none; }
      @media (min-width: 1025px) {
        .header .header__utilities a.header__utilities__link,
        .header .header__utilities > div {
          color: #3c5f96;
          display: inline-block; } }
      .menu-open .header .header__utilities a.header__utilities__link, .menu-open
      .header .header__utilities > div {
        display: block;
        margin: 0 0 1.2rem; }
    .header .header__utilities .svg-inline--fa {
      color: #fff;
      margin-right: .25rem; }
      @media (min-width: 1025px) {
        .header .header__utilities .svg-inline--fa {
          color: #3c5f96;
          display: inline-block; } }
    .header .header__utilities span {
      display: none; }
      @media (min-width: 1025px) {
        .header .header__utilities span {
          display: initial;
          margin: 0 .5rem; } }

/* ============================================================
  Styles for the main menu.
  There will be instances of IDs targetting " --2" versions of
  blocks. These are for the styles on the login error page.
  ============================================================ */
header nav {
  width: 100%;
  opacity: 0;
  padding: 0;
  transform: scaleY(0);
  transition: 0.3s opacity;
  z-index: -1; }
  @media (min-width: 1025px) {
    header nav {
      padding: 0;
      z-index: 5;
      display: block;
      opacity: 1;
      order: 2;
      transform: scaleY(1); } }
  header nav.active {
    opacity: 1;
    padding: 1rem;
    z-index: 100;
    transform: scaleY(1); }
  header nav a {
    border-bottom: 0;
    font-weight: 500;
    font-size: 1.125rem;
    position: relative;
    text-decoration: none; }
    .menu-open header nav a {
      color: #fff;
      display: flex;
      justify-content: space-between; }
      .menu-open header nav a:hover {
        color: #bacae4; }
    @media (min-width: 1025px) {
      header nav a {
        color: #404040; } }
    @media (min-width: 1280px) {
      header nav a {
        font-size: 1.125rem; } }
  @media (min-width: 1025px) {
    header nav .menu-item--expanded {
      position: relative; } }
  header nav .menu-level-0 {
    display: inline-block;
    width: 100%; }
    @media (min-width: 1025px) {
      header nav .menu-level-0 {
        border: 0;
        width: auto;
        display: flex;
        justify-content: flex-end;
        top: auto; } }
    header nav .menu-level-0 > li {
      position: relative; }
      header nav .menu-level-0 > li .expanded {
        display: grid;
        grid-template-columns: 75% 25%; }
        @media (min-width: 768px) {
          header nav .menu-level-0 > li .expanded {
            grid-template-columns: 100%; } }
        header nav .menu-level-0 > li .expanded .menu-icon {
          justify-content: flex-end; }
          @media (min-width: 768px) {
            header nav .menu-level-0 > li .expanded .menu-icon {
              display: none; } }
      header nav .menu-level-0 > li.active {
        text-decoration: underline; }
        header nav .menu-level-0 > li.active .expanded .menu-icon {
          z-index: -1; }
        header nav .menu-level-0 > li.active .expanded > a {
          border-bottom: 0.0625rem solid #eee;
          padding-bottom: 1rem; }
          header nav .menu-level-0 > li.active .expanded > a svg.fa-caret-down {
            display: none; }
          header nav .menu-level-0 > li.active .expanded > a svg.fa-caret-up {
            display: inline-block;
            z-index: -1; }
    header nav .menu-level-0 .expanded svg {
      display: inline-block; }
      header nav .menu-level-0 .expanded svg.fa-caret-up {
        display: none; }
      @media (min-width: 1025px) {
        header nav .menu-level-0 .expanded svg {
          display: none; } }
  header nav .menu-level-1 {
    background: #4a5978;
    height: 0;
    margin: 0 0 0 2rem;
    padding: 0.5rem 0;
    position: absolute;
    z-index: 10; }
    @media (min-width: 1025px) {
      header nav .menu-level-1 {
        display: none; } }
    header nav .menu-level-1.active {
      background: #4a5978;
      height: inherit;
      position: relative; }
    header nav .menu-level-1 li {
      display: block;
      font-size: 1rem;
      padding: 0.5rem 0;
      position: relative; }
    header nav .menu-level-1 a {
      display: block;
      position: relative;
      z-index: 1; }
      header nav .menu-level-1 a.is-active {
        color: #bacae4; }
  .logged-in header nav .contextual-region {
    position: inherit; }

.mobile-menu-trigger {
  background: #fff;
  border: 0;
  border-radius: 0;
  color: #4a5978;
  font-weight: 600;
  margin: 0;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 500;
  width: 4.5rem;
  height: 5rem; }
  .mobile-menu-trigger:hover {
    border: 0; }
  @media (min-width: 1025px) {
    .mobile-menu-trigger {
      display: none; } }
  .mobile-menu-trigger .open {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .mobile-menu-trigger .close {
    display: none; }
  .mobile-menu-trigger .burger,
  .mobile-menu-trigger .close-x {
    font-size: 2.5rem;
    display: block;
    width: inherit; }
  .mobile-menu-trigger .txt {
    font-size: 0.9rem;
    margin: 0; }
  .mobile-menu-trigger.active .open {
    display: none; }
  .mobile-menu-trigger.active .close {
    display: flex;
    flex-direction: column;
    align-items: center; }

body.menu-open {
  position: fixed !important; }

/* ============================================================
  Styles for Search Page
  ============================================================ */
.search-input {
  position: relative; }
  .search-input input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    margin: 0;
    border-radius: .25rem; }
  .search-input svg.svg-inline--fa {
    position: absolute;
    top: 0;
    display: block;
    font-size: .5rem;
    color: #4a5978;
    right: 0;
    padding: 0 .7rem 0 0;
    width: 2rem;
    line-height: 1rem;
    height: 2.6rem; }

.search-page-type {
  margin-top: 1rem; }
  .search-page-type__wrapper {
    display: flex;
    flex-wrap: wrap; }
    .search-page-type__wrapper .radio-type {
      display: flex;
      margin-bottom: 0.5rem; }
      .search-page-type__wrapper .radio-type input {
        margin: 0 .4rem 0 0;
        height: 100%; }
      .search-page-type__wrapper .radio-type label {
        line-height: 2rem;
        margin: 0 1rem 0 0;
        font-size: 1rem;
        font-weight: normal; }

.search-type-info {
  margin-top: 2rem; }
  .search-type-info .filter-buttons .btn {
    font-size: 1rem;
    font-weight: 500;
    margin: 0.4rem 1rem 0 0;
    padding: 0.2rem 1rem; }

.search-filters .Collapsible__trigger {
  margin: 1rem 0 0.75rem; }
  .search-filters .Collapsible__trigger .title {
    margin: 0;
    border: 0;
    color: #3c5f96;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0;
    position: relative;
    cursor: pointer; }
  .search-filters .Collapsible__trigger.is-open .fa-sort-down {
    display: none; }
  .search-filters .Collapsible__trigger.is-closed .fa-sort-up {
    display: none; }

.search-filters .Collapsible__contentOuter {
  border-bottom: 2px solid rgba(151, 151, 151, 0.25); }

.search-filters .facets .sui-facet {
  border: none;
  padding: 0; }
  .search-filters .facets .sui-facet .sui-facet-search__text-input {
    width: 100%;
    border-radius: .25rem; }

.search-filters .search-filters__content {
  padding: 0;
  margin: 1.4rem 0 0; }
  .search-filters .search-filters__content .sui-facet__title {
    text-transform: capitalize;
    position: relative;
    border-radius: 8px 8px 0 0;
    color: #000;
    font-size: 1rem;
    font-family: "Red Hat Text", sans-serif;
    margin: 0 0 .2rem 0; }

.search-filters .sui-multi-checkbox-facet__label {
  margin-bottom: 0.3em;
  font-weight: 500;
  line-height: 1.2;
  color: #4a5978;
  text-transform: uppercase; }

.search-filters .sui-multi-checkbox-facet__option-label {
  display: flex;
  align-items: center;
  margin: 0.55em auto;
  line-height: 1.1;
  font-weight: 300;
  cursor: pointer;
  padding: 0; }

.search-filters .sui-multi-checkbox-facet__option-input-wrapper {
  flex: 1 1 auto;
  margin-right: 0.5em; }
  .search-filters .sui-multi-checkbox-facet__option-input-wrapper input[type="checkbox"] {
    width: inherit;
    margin: 0 .6rem 0 0;
    padding: 0; }
  .search-filters .sui-multi-checkbox-facet__option-input-wrapper .sui-multi-checkbox-facet__input-text {
    font-size: 1rem;
    font-weight: normal; }

.search-filters .sui-multi-checkbox-facet__option-count {
  flex: 0 0 auto;
  font-size: 0.9em;
  opacity: 0.6; }

.search-filters .sui-facet-view-more {
  background: #4a5978;
  border: 0.163rem solid #4a5978;
  color: #fff;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.75rem 2rem; }
  .search-filters .sui-facet-view-more:hover {
    background: #fff;
    border: 0.163rem solid #4a5978;
    color: #4a5978; }

.search-results {
  display: flex;
  flex-wrap: wrap; }
  .search-results .tags {
    display: flex;
    flex-wrap: wrap; }
    .search-results .tags span.tag {
      background: #eee;
      padding: 0.2rem 1rem;
      border-radius: 1rem;
      margin-right: .6rem;
      margin-bottom: 1rem; }
      .search-results .tags span.tag svg {
        margin-right: 0.2rem; }
  .search-results .events {
    flex-basis: 33%; }
    .search-results .events .search-event__title, .search-results .events .search-event__date, .search-results .events .search-event__time, .search-results .events .search-event__location, .search-results .events .search-event__department {
      margin: 0 1rem 1rem;
      font-size: 1.125rem; }
      .search-results .events .search-event__title h4, .search-results .events .search-event__date h4, .search-results .events .search-event__time h4, .search-results .events .search-event__location h4, .search-results .events .search-event__department h4 {
        margin: 0;
        font-size: 1.125rem; }
      .search-results .events .search-event__title .tag, .search-results .events .search-event__date .tag, .search-results .events .search-event__time .tag, .search-results .events .search-event__location .tag, .search-results .events .search-event__department .tag {
        background-color: #fff; }
  .search-results .news {
    flex-basis: 100%; }
    .search-results .news .search-news {
      display: flex;
      flex-direction: row; }
      .search-results .news .search-news__image {
        width: 25%;
        height: 10rem; }
        .search-results .news .search-news__image img {
          height: 100%; }
      .search-results .news .search-news__body {
        padding: 1rem;
        width: 75%; }
        .search-results .news .search-news__body .tags {
          margin: 1rem 0 0; }

.search-results__item {
  margin-top: 2rem;
  flex-basis: 100%; }
  .search-results__item h4 {
    margin: 0 0 1rem; }
  .search-results__item p {
    font-size: 1rem;
    color: #282828; }

.rc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  margin: 1.5em auto;
  width: 100%; }
  .rc-pagination-prev, .rc-pagination-next {
    display: none; }
  .rc-pagination-item {
    border-radius: 4px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 0.5rem;
    text-align: center;
    list-style: none; }
    .rc-pagination-item:hover, .rc-pagination-item-active {
      background: #3c5f96; }
      .rc-pagination-item:hover > a, .rc-pagination-item-active > a {
        color: white; }
    .rc-pagination-item a {
      border: 0;
      text-decoration: none;
      font-weight: 600;
      display: block;
      width: 100%;
      height: 100%; }

.sui-search-box {
  display: flex; }
  .sui-search-box__wrapper {
    flex-grow: 1;
    margin-right: 1rem; }
  .sui-search-box__submit {
    background-color: transparent;
    border: 0.163rem solid #ccc; }
    .sui-search-box__submit:hover {
      color: #bacae4;
      background-color: transparent;
      border: 0.163rem solid #ccc; }
  .sui-search-box__text-input {
    width: 100%; }
  .sui-search-box__autocomplete-container {
    width: 100%;
    margin-top: 1rem;
    position: absolute;
    border: 0.163rem solid #979797;
    border-radius: .5rem;
    background-color: #fff; }
    .sui-search-box__autocomplete-container ul {
      padding: .4rem 0; }
      .sui-search-box__autocomplete-container ul li {
        list-style: none;
        margin: 0.5rem 0;
        padding: 0.5rem 0.2rem 0.5rem 1.5rem;
        cursor: pointer; }
        .sui-search-box__autocomplete-container ul li[aria-selected="true"] {
          background-color: whitesmoke; }
        .sui-search-box__autocomplete-container ul li span {
          font-weight: 500;
          color: #404040;
          font-size: 1.125rem;
          font-style: normal; }

/* ============================================================
  Styles for homepage.

  These are styles that are specific to the homepage.
  Some of these override default styles elsewhere.
  ============================================================ */
.node-type-home-page .header {
  margin: 0 auto; }

.node-type-home-page .hero--wrapper {
  margin: 0; }

.node-type-home-page .hero--banner {
  text-align: left; }
  @media (min-width: 888px) {
    .node-type-home-page .hero--banner {
      justify-content: center;
      text-align: center; } }
  .node-type-home-page .hero--banner span {
    font-size: 1.5rem;
    padding: .75rem 0; }
    @media (min-width: 888px) {
      .node-type-home-page .hero--banner span {
        padding: .75rem 3rem; } }

.node-type-home-page .layout-container {
  max-width: initial;
  padding: 0; }

@media (min-width: 1025px) {
  .node-type-home-page .menu-featured {
    margin: 3.1875rem auto; }
  .node-type-home-page .news--featured--wrapper {
    margin-bottom: 1.3rem; }
  .node-type-home-page .section-news .section-padded {
    margin-top: 6rem; }
  .node-type-home-page .section-padded.contact {
    margin-top: 3.2rem; } }

.node-type-home-page .featured-menu-wrapper {
  margin: 0 auto;
  padding: 2.75rem 4.5rem 3rem; }
  .node-type-home-page .featured-menu-wrapper h2 {
    margin: 0 0 1.5rem; }
  .node-type-home-page .featured-menu-wrapper .featured-menu-container {
    flex-direction: column; }
    @media (min-width: 768px) {
      .node-type-home-page .featured-menu-wrapper .featured-menu-container {
        flex-direction: row; } }
  .node-type-home-page .featured-menu-wrapper .button {
    margin: 1rem 0; }
    @media (min-width: 768px) {
      .node-type-home-page .featured-menu-wrapper .button {
        margin: 0; } }

.section-news {
  color: initial; }

.homepage-contacts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; }
  @media (min-width: 768px) {
    .homepage-contacts {
      flex-direction: row; } }
  .homepage-contacts p {
    flex: 100%; }
    @media (min-width: 768px) {
      .homepage-contacts p {
        flex: 50%; } }
    @media (min-width: 1025px) {
      .homepage-contacts p {
        flex: 25%; } }

.contact .align-right {
  font-size: 1.25rem; }
  .contact .align-right a {
    text-decoration: none !important; }

.department-select {
  position: relative; }
  .department-select .select-default {
    background: #fff url("/themes/custom/paladin/images/icons/caret-down.svg") right/36px 28px no-repeat;
    color: #404040;
    cursor: pointer;
    font-family: "Red Hat Text", sans-serif;
    font-size: 20px;
    font-style: italic;
    margin: 0 0 1.5rem;
    padding: .75rem .75rem .5rem;
    position: relative;
    width: 100%; }
    @media (min-width: 768px) {
      .department-select .select-default {
        margin: 0 1rem 0 0; } }
  .department-select .homepage-select {
    background-color: #fff;
    border: 1px solid #eee;
    display: none;
    position: absolute;
    top: 2.8rem;
    width: 100%;
    z-index: 1; }
    @media (min-width: 768px) {
      .department-select .homepage-select {
        top: 3.2rem;
        width: 82.8%; } }
    .department-select .homepage-select .department-value {
      color: #3c5f96;
      cursor: pointer;
      font-size: 18px;
      font-weight: 500;
      margin: 1rem; }

/* ============================================================
  Styles for Department Listing View Page
  ============================================================ */
.path-departments-government .layout-content .button-grid-wrapper {
  background: #eee;
  margin: 2rem 0;
  padding: 2rem; }
  .path-departments-government .layout-content .button-grid-wrapper h3 {
    margin: 0 0 2rem; }
  .path-departments-government .layout-content .button-grid-wrapper .button-grid {
    flex-flow: column wrap; }
    @media (min-width: 768px) {
      .path-departments-government .layout-content .button-grid-wrapper .button-grid {
        flex-flow: row wrap;
        justify-content: space-between; } }
    .path-departments-government .layout-content .button-grid-wrapper .button-grid-item {
      margin: 1 0;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center; }
      @media (min-width: 768px) {
        .path-departments-government .layout-content .button-grid-wrapper .button-grid-item {
          flex-basis: calc(50% - 2rem);
          margin: 1rem; } }
      @media (min-width: 1025px) {
        .path-departments-government .layout-content .button-grid-wrapper .button-grid-item {
          flex-basis: calc(33.3% - 2rem); } }

.departments--directory header {
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  @media (min-width: 1510px) {
    .departments--directory header {
      flex-direction: row; } }

.departments--directory .views-exposed-form {
  display: flex;
  flex: 1;
  flex-direction: column; }
  @media (min-width: 768px) {
    .departments--directory .views-exposed-form {
      flex-direction: row; } }
  @media (min-width: 1510px) {
    .departments--directory .views-exposed-form {
      justify-content: flex-end; } }
  .departments--directory .views-exposed-form .js-form-item {
    display: flex;
    align-content: center;
    align-items: center;
    position: relative; }
    .departments--directory .views-exposed-form .js-form-item label {
      margin: 1rem 1rem 1rem 0;
      white-space: nowrap; }
      @media (min-width: 768px) {
        .departments--directory .views-exposed-form .js-form-item label {
          margin: 0 1rem; } }
    .departments--directory .views-exposed-form .js-form-item input {
      margin: 0; }
  .departments--directory .views-exposed-form .js-form-item-search {
    flex-direction: column;
    align-items: flex-start; }
    @media (min-width: 768px) {
      .departments--directory .views-exposed-form .js-form-item-search {
        flex-direction: row;
        align-items: center; } }
    .departments--directory .views-exposed-form .js-form-item-search input {
      background: transparent; }
    .departments--directory .views-exposed-form .js-form-item-search svg {
      color: #3c5f96;
      font-size: 1.125rem;
      position: absolute;
      right: 1rem;
      z-index: -1;
      margin-top: 4.4rem; }
      @media (min-width: 768px) {
        .departments--directory .views-exposed-form .js-form-item-search svg {
          margin-top: 0; } }
  .departments--directory .views-exposed-form .form-item-sort-bef-combine {
    margin-top: 1rem; }
    @media (min-width: 768px) {
      .departments--directory .views-exposed-form .form-item-sort-bef-combine {
        margin-top: 0; } }
    .departments--directory .views-exposed-form .form-item-sort-bef-combine .bef-links ul {
      margin: 0;
      padding: 0; }
      .departments--directory .views-exposed-form .form-item-sort-bef-combine .bef-links ul li {
        list-style-type: none !important;
        margin: 0;
        padding: 0; }
        .departments--directory .views-exposed-form .form-item-sort-bef-combine .bef-links ul li a {
          border: 0.163rem solid #3c5f96;
          display: flex;
          align-items: center;
          align-content: center;
          padding-right: 1rem; }
          .departments--directory .views-exposed-form .form-item-sort-bef-combine .bef-links ul li a.bef-link--selected {
            display: none; }
        .departments--directory .views-exposed-form .form-item-sort-bef-combine .bef-links ul li span {
          background: #3c5f96;
          color: #fff;
          font-size: 1.125rem;
          margin-right: 1rem;
          padding: .5rem; }

.departments--directory h3 {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  background: #eee;
  width: fit-content;
  width: -moz-max-content; }
  .departments--directory h3:before {
    border-top: 2px solid #eee;
    content: "";
    margin: 0 auto;
    /* this centers the line to the full width specified */
    position: absolute;
    /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 75vw;
    z-index: -1;
    margin-left: -2rem; }
  .departments--directory h3 span {
    width: fit-content;
    width: -moz-max-content;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    background: #eee; }

.departments--directory .departments--directory__row ul {
  display: flex;
  flex-wrap: wrap; }
  .departments--directory .departments--directory__row ul .departments--directory-item {
    display: block;
    margin: 0.5rem 0.5rem !important; }
    @media (min-width: 768px) {
      .departments--directory .departments--directory__row ul .departments--directory-item {
        flex-basis: 48%;
        margin: 0.5rem 0 0.5rem 1.5rem !important; } }
    .departments--directory .departments--directory__row ul .departments--directory-item .views-field-title .field-content h4 {
      margin: 0; }
      .departments--directory .departments--directory__row ul .departments--directory-item .views-field-title .field-content h4:hover {
        text-decoration: underline; }

/* ============================================================
  Styles for Department Landing Pages
  ============================================================ */
.node-type-department:not(.path-departments-government) .layout-container {
  max-width: initial;
  padding: 0; }

.node-type-department:not(.path-departments-government) #block-paladin-page-title {
  max-width: 1220px;
  margin: 0 auto; }

.path-departments-government-libraries #block-paladin-page-title {
  display: none; }

.path-departments-government-libraries .block--library--title {
  display: flex;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 1025px) {
    .path-departments-government-libraries .block--library--title {
      flex-direction: row;
      justify-content: space-between; } }
  .path-departments-government-libraries .block--library--title h1 {
    margin: 1rem 0; }
    @media (min-width: 1025px) {
      .path-departments-government-libraries .block--library--title h1 {
        margin: 0; } }
  .path-departments-government-libraries .block--library--title p {
    display: flex;
    flex-direction: column;
    margin: 0; }
    @media (min-width: 1025px) {
      .path-departments-government-libraries .block--library--title p {
        flex-direction: row; }
        .path-departments-government-libraries .block--library--title p a {
          font-size: 1.125rem;
          margin: 1rem 0;
          text-align: center; } }
    @media (min-width: 1025px) and (min-width: 1025px) {
      .path-departments-government-libraries .block--library--title p a {
        margin: 0 1rem; }
        .path-departments-government-libraries .block--library--title p a:last-child {
          margin-right: 0; } }

@media (min-width: 1025px) {
  .path-departments-government-libraries .block--library--new-titles > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .path-departments-government-libraries .block--library--new-titles > div div:nth-child(1) {
      order: 1; }
    .path-departments-government-libraries .block--library--new-titles > div div:nth-child(2) {
      flex: 100%;
      order: 3; }
    .path-departments-government-libraries .block--library--new-titles > div div:nth-child(3) {
      order: 2; } }

.path-departments-government-libraries .block--library--new-titles .card--grid-container {
  display: grid;
  grid-gap: 2rem; }
  @media (min-width: 768px) {
    .path-departments-government-libraries .block--library--new-titles .card--grid-container {
      grid-template-columns: auto; } }
  @media (min-width: 1025px) {
    .path-departments-government-libraries .block--library--new-titles .card--grid-container {
      grid-template-columns: repeat(2, 1fr); } }
  .path-departments-government-libraries .block--library--new-titles .card--grid-container .paragraph--type--card-item {
    flex-basis: initial !important;
    margin: 0 !important; }
  .path-departments-government-libraries .block--library--new-titles .card--grid-container .card,
  .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card {
    background: #3c5f96;
    flex-direction: row;
    margin: 0; }
    .path-departments-government-libraries .block--library--new-titles .card--grid-container .card:hover,
    .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card:hover {
      background: #4a5978; }
      .path-departments-government-libraries .block--library--new-titles .card--grid-container .card:hover .card--content .title,
      .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card:hover .card--content .title {
        text-decoration: underline; }
    .path-departments-government-libraries .block--library--new-titles .card--grid-container .card .card--image,
    .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card .card--image {
      max-width: 12.5rem; }
      .path-departments-government-libraries .block--library--new-titles .card--grid-container .card .card--image img,
      .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card .card--image img {
        object-fit: cover;
        height: 100%; }
    .path-departments-government-libraries .block--library--new-titles .card--grid-container .card .card--content .title,
    .path-departments-government-libraries .block--library--new-titles .card--grid-container .card .card--content .body,
    .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card .card--content .title,
    .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card .card--content .body {
      color: #fff;
      font-size: 1.25rem; }
    .path-departments-government-libraries .block--library--new-titles .card--grid-container .card .card--content .body,
    .path-departments-government-libraries .block--library--new-titles .card--grid-container a.card .card--content .body {
      font-weight: 400; }

.elected-officials {
  display: block;
  color: black;
  background-color: #eee;
  padding: 5px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 1em; }
  .elected-officials .elected-officials-text {
    padding-left: 8px; }
  .elected-officials .icon-2x-circle {
    text-align: center;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #eee;
    border-radius: 50px;
    background-color: white; }
  .elected-officials .svg-inline--fa.fa-badge-sheriff {
    color: #c49502; }
  .elected-officials .svg-inline--fa.fa-file-user {
    color: #3c5f96; }

/* ============================================================
  Styles for Events (detail and search pages)
  ============================================================ */
.event__image {
  margin-bottom: 2rem;
  display: block;
  width: 100%; }
  .event__image.related-events {
    margin-bottom: 0; }

.event__description .event--description-items__description {
  margin-right: 2rem; }

.event__description .event--description-items__department, .event__description .event--description-items__category, .event__description .event--description-items__audience {
  display: flex;
  align-items: baseline;
  flex-direction: column; }
  @media (min-width: 768px) {
    .event__description .event--description-items__department, .event__description .event--description-items__category, .event__description .event--description-items__audience {
      flex-direction: row; } }
  .event__description .event--description-items__department h4, .event__description .event--description-items__category h4, .event__description .event--description-items__audience h4 {
    margin: 1rem 0.5rem; }
  .event__description .event--description-items__department .taxonomy-icon-wrapper, .event__description .event--description-items__category .taxonomy-icon-wrapper, .event__description .event--description-items__audience .taxonomy-icon-wrapper {
    padding: 0.2rem 1rem;
    border-radius: 1rem;
    background: #eee; }

.event__details {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  grid-template-columns: 100%;
  padding: 1rem .5rem 2rem;
  background: #eee;
  font-size: 1.125rem;
  height: fit-content;
  height: -moz-max-content; }
  .event__details .event--detail-items {
    display: flex;
    margin: 0.5rem;
    font-size: 1rem; }
    .event__details .event--detail-items svg:not(.icon) {
      color: #4a5978;
      margin-right: .5rem; }
    .event__details .event--detail-items h3 {
      margin: 0;
      font-size: 1.5rem; }
  .event__details .event--department-wrapper {
    display: grid; }
    .event__details .event--department-wrapper .taxonomy-icon-wrapper {
      margin-bottom: 1rem; }
  .event__details .button {
    width: 100%;
    text-align: center;
    font-weight: 100;
    height: fit-content;
    height: -moz-max-content; }

.event__location {
  width: 100%; }
  .event__location article h2 {
    display: none; }

.event__sidebar {
  min-width: 5% !important;
  max-width: auto; }
  @media (min-width: 768px) {
    .event__sidebar {
      max-width: 25%; } }
  .event__sidebar .event--card {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 2px solid #eee; }

.events--card-row {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .events--card-row {
      display: grid;
      justify-content: space-between;
      grid-template-columns: repeat(3, 29%);
      margin-bottom: 2rem; } }
  .events--card-row .events--card {
    margin: 1rem 0;
    grid-row: 4; }
    @media (min-width: 768px) {
      .events--card-row .events--card .card {
        margin: 0; } }
    .events--card-row .events--card .views-field-date__value,
    .events--card-row .events--card .views-field-date__value-1,
    .events--card-row .events--card .views-field-event-location,
    .events--card-row .events--card .views-field-department {
      margin: 0 1rem 1rem;
      font-size: 1.125rem; }
      .events--card-row .events--card .views-field-date__value .card,
      .events--card-row .events--card .views-field-date__value-1 .card,
      .events--card-row .events--card .views-field-event-location .card,
      .events--card-row .events--card .views-field-department .card {
        margin: 0; }
      .events--card-row .events--card .views-field-date__value .field-content svg,
      .events--card-row .events--card .views-field-date__value-1 .field-content svg,
      .events--card-row .events--card .views-field-event-location .field-content svg,
      .events--card-row .events--card .views-field-department .field-content svg {
        margin-right: 0.5rem;
        color: #4a5978; }
    .events--card-row .events--card .views-field-title-3 {
      margin: 1rem; }
      .events--card-row .events--card .views-field-title-3 .field-content {
        font-size: 1.25rem; }
    .events--card-row .events--card .views-field-field-department,
    .events--card-row .events--card .views-field-department {
      margin-bottom: 2rem;
      width: fit-content;
      margin: 0 1rem 1rem;
      font-size: 1.125rem; }
      .events--card-row .events--card .views-field-field-department .card,
      .events--card-row .events--card .views-field-department .card {
        margin: 0; }
      .events--card-row .events--card .views-field-field-department .field-content .taxonomy-icon-wrapper,
      .events--card-row .events--card .views-field-department .field-content .taxonomy-icon-wrapper {
        font-size: 1.125rem;
        padding: 0.2rem 0.75rem;
        border-radius: 1rem;
        background: #fff;
        margin-bottom: 1rem; }
      .events--card-row .events--card .views-field-field-department .field-content svg,
      .events--card-row .events--card .views-field-department .field-content svg {
        margin-right: 0.5rem; }

.pager__item--previous,
.pager__item--next {
  display: none; }

.events--search-title {
  font-size: 1.25rem;
  color: #4a5978; }

.card .event__image {
  margin-bottom: 0; }

.card .event__details .taxonomy-icon-wrapper {
  padding: 0.2rem 1rem;
  border-radius: 1rem;
  background: #fff; }

.related-events-row {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .related-events-row {
      flex-direction: row;
      max-width: 66.33%; } }
  .related-events-row .related-events-column {
    width: 100% !important; }
    @media (min-width: 768px) {
      .related-events-row .related-events-column {
        width: 49% !important; } }
    .related-events-row .related-events-column.col-1 {
      margin-bottom: 4rem; }
      @media (min-width: 768px) {
        .related-events-row .related-events-column.col-1 {
          margin-right: 10rem;
          margin-bottom: 0; } }
    .related-events-row .related-events-column .card {
      margin: 0; }

.events__registration #block-paladin-page-title {
  display: none; }

.registration--wrapper {
  display: flex;
  flex-direction: column; }
  .registration--wrapper .registrant-form .registration-availability {
    visibility: hidden; }
  .registration--wrapper .registrant-form .form-item-field-first-name-0-value .description,
  .registration--wrapper .registrant-form .form-item-field-last-name-0-value .description,
  .registration--wrapper .registrant-form .form-item-field-phone-0-value .description,
  .registration--wrapper .registrant-form .form-item-email-0-value .description {
    visibility: hidden; }
  .registration--wrapper #edit-actions {
    color: #3c5f96; }
  @media (min-width: 666px) {
    .registration--wrapper {
      flex-direction: row; } }
  .registration--wrapper .registration-details {
    height: fit-content;
    height: -moz-max-content; }
    @media (min-width: 768px) {
      .registration--wrapper .registration-details {
        margin-left: 1rem !important;
        margin-top: 8rem !important; } }
  .registration--wrapper #edit-actions {
    width: 100%; }
    .registration--wrapper #edit-actions .button {
      width: 100%; }
    .registration--wrapper #edit-actions #edit-submit {
      margin-right: 2rem; }
    @media (min-width: 768px) {
      .registration--wrapper #edit-actions {
        width: auto;
        display: flex;
        justify-content: flex-end; }
        .registration--wrapper #edit-actions .button {
          width: auto; } }
  .registration--wrapper .registration-back-link {
    display: none; }
  .registration--wrapper .js-form-type-checkbox {
    margin-top: 1rem;
    display: flex;
    align-items: center; }
    .registration--wrapper .js-form-type-checkbox input {
      color: #3c5f96;
      width: auto;
      margin-right: 0.5rem; }

.registrant-confirmation .registrant-confirmation-full h2 svg {
  color: #279360;
  margin-right: 0.5rem; }

.registrant-confirmation .registrant-confirmation-waitlisted h2 svg {
  color: #4a5978;
  margin-right: 0.5rem; }

.registrant-confirmation .registrant-message svg {
  color: #d56827;
  margin-right: 0.5rem; }

.registrant-confirmation .registrant-confirmation-full .content,
.registrant-confirmation .registrant-confirmation-waitlisted .content {
  margin: 2rem 5rem 2rem 0rem; }

.instances--wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 75%; }
  .instances--wrapper a {
    margin: 1rem 0;
    max-width: 50%;
    min-width: 50%; }

.events-calendar div .fc .fc-header-toolbar {
  flex-direction: column; }
  @media (min-width: 768px) {
    .events-calendar div .fc .fc-header-toolbar {
      flex-direction: row; } }
  .events-calendar div .fc .fc-header-toolbar .fc-left {
    width: 100%; }
    @media (min-width: 768px) {
      .events-calendar div .fc .fc-header-toolbar .fc-left {
        width: auto; } }
    .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group {
      position: absolute; }
      .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group .fc-prev-button {
        margin: 0 16.5rem 0 -0.5rem; }
        @media (min-width: 768px) {
          .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group .fc-prev-button {
            margin: 0 16.5rem 0 25rem; } }
        @media (min-width: 1920px) {
          .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group .fc-prev-button {
            margin: 0 16.5rem 0 27rem; } }
      .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group .fc-button {
        background: none;
        border: none; }
        @media (min-width: 768px) {
          .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group .fc-button {
            margin-top: -1rem; } }
        .events-calendar div .fc .fc-header-toolbar .fc-left .fc-button-group .fc-button .fc-icon {
          color: #3c5f96; }
    .events-calendar div .fc .fc-header-toolbar .fc-left .fc-today-button {
      display: none; }
      @media (min-width: 768px) {
        .events-calendar div .fc .fc-header-toolbar .fc-left .fc-today-button {
          display: initial; } }

.events-calendar div .fc .fc-view-container .fc-dayGridMonth-view .fc-head {
  background: #eee; }
  .events-calendar div .fc .fc-view-container .fc-dayGridMonth-view .fc-head .fc-head-container .fc-row table thead tr .fc-day-header {
    background: none;
    color: #404040; }

.events-calendar div .fc .fc-view-container .fc-dayGridMonth-view .fc-body tr .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tr .fc-event-container {
  background: #fff;
  border-color: #ddd;
  max-width: 80%; }
  .events-calendar div .fc .fc-view-container .fc-dayGridMonth-view .fc-body tr .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tr .fc-event-container .fc-day-grid-event {
    background: #eee !important;
    color: #282828; }
    .events-calendar div .fc .fc-view-container .fc-dayGridMonth-view .fc-body tr .fc-widget-content .fc-day-grid-container .fc-day-grid .fc-row .fc-content-skeleton table tr .fc-event-container .fc-day-grid-event .fc-content span a {
      color: #282828; }

.fc-dayGridMonth-button,
.fc-listMonth-button {
  display: none; }

.events--grid-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .events--grid-container {
      justify-content: flex-end; } }
  .events--grid-container .button {
    margin: .25rem;
    padding: 0.25rem 2rem; }

#cal-button {
  cursor: pointer; }

.events--results {
  margin: 1rem 0;
  font-family: 1.125rem; }
  @media (min-width: 768px) {
    .events--results {
      float: left; } }

@media (min-width: 1025px) {
  #views-exposed-form-events-events-listing {
    background: #eee;
    display: grid;
    grid-gap: 2.5rem;
    grid-template-areas: 'search search search search search search' 'department department category category audience audience' 'location location before after submit submit';
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto; }
    #views-exposed-form-events-events-listing div {
      width: 100%; }
  .js-form-item select,
  .js-form-item .datepicker input {
    font-style: italic;
    color: #404040;
    font-size: 1.125rem;
    border: 0.163rem solid #979797; }
  .js-form-item-combine {
    grid-area: search; }
  .form-item-field-department-target-id {
    grid-area: department; }
  .form-item-field-event-type-target-id {
    grid-area: category; }
  .form-item-field-event-audience-target-id {
    grid-area: audience; }
  .js-form-item-location {
    grid-area: location; }
  .form-item-date__value input,
  .form-item-date__value-1 input {
    padding: .65rem; }
  .form-item-date__value {
    grid-area: before; }
  .form-item-date__value-1 {
    grid-area: after; }
  [id^="edit-actions"] {
    grid-area: submit; }
    [id^="edit-actions"] input {
      border-radius: 0;
      font-size: 1.25rem;
      width: 100% !important; }
  .js input.form-autocomplete {
    background-position: 96% center; } }

#views-exposed-form-events-events-listing div,
#views-exposed-form-events-events-listing div input {
  width: 100%; }

.featured-events-wrapper header {
  margin: 1rem 0; }
  @media (min-width: 768px) {
    .featured-events-wrapper header {
      display: flex;
      justify-content: space-between;
      align-content: center;
      align-items: center; } }
  .featured-events-wrapper header h2 {
    margin: 0; }
  .featured-events-wrapper header a {
    font-size: 1.25rem; }

.featured-events-wrapper .featured-category__item {
  flex: 1; }

/* ============================================================
  Styles for Location (detail and search pages)
  ============================================================ */
@media (min-width: 1025px) {
  .node-type-location .row .col.percent-33 {
    margin-left: 3rem; } }

.node-type-location .paragraph--type--phone-number-with-extension {
  font-size: 1.125rem; }

@media (min-width: 1025px) {
  .location__features__wrapper {
    column-count: 2;
    column-gap: 1rem; } }

.location__address__wrapper {
  background: #eee;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 1rem 0; }
  @media (min-width: 1025px) {
    .location__address__wrapper {
      flex-direction: row; } }
  .location__address__wrapper .leaflet-container:focus {
    outline: 0.125rem solid #4a5978; }

.location__address__text, .location__address__map {
  flex: 1; }

.location__address__text {
  margin: 2rem; }
  .location__address__text h3 {
    margin: 0 0 1.5rem; }
  .location__address__text svg {
    margin: 0.3rem 1.5rem 0 0; }

.location__address__address {
  display: flex;
  font-size: 1.125rem;
  line-height: 1.5; }

.leaflet-container .fa-layers,
.leaflet-container .fa-fw {
  width: 100% !important;
  height: auto; }

.leaflet-container .leaflet-marker-icon svg {
  font-size: initial;
  width: 100% !important;
  height: auto; }

.leaflet-container .leaflet-popup-content {
  font-size: 0.8rem; }
  .leaflet-container .leaflet-popup-content p {
    font-size: 100%; }

.leaflet-container .leaflet-control-attribution {
  background-color: #fff; }
  .leaflet-container .leaflet-control-attribution a {
    color: #000;
    text-decoration: underline; }

.location-section__text {
  font-size: 1.75rem;
  font-weight: 500; }

.location-section__link {
  font-size: 1.5rem; }

.location-section__map .leaflet-container {
  margin: 1rem 2.5rem 1rem 0; }
  .location-section__map .leaflet-container:focus {
    outline: 0.125rem solid #4a5978; }

.contact-info {
  background: #eee;
  height: 100%;
  padding: 2rem; }
  .contact-info h3 {
    margin-top: 0; }

.location-list__wrapper .views-exposed-form details summary {
  border-bottom: 0.1875rem solid #eee;
  color: #3c5f96;
  display: flex;
  font-size: 1.313rem;
  font-weight: 500;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0; }
  .location-list__wrapper .views-exposed-form details summary::-webkit-details-marker {
    order: 2;
    transform: rotate(90deg); }

.location-list__wrapper .views-exposed-form details[open] summary::-webkit-details-marker {
  order: 2;
  transform: rotate(-180deg); }

.location-list__wrapper .views-exposed-form .bef-links {
  background: #eee;
  padding: 1rem;
  margin: 0 0 2rem 0; }
  .location-list__wrapper .views-exposed-form .bef-links ul {
    margin: 0;
    padding: 0; }
    .location-list__wrapper .views-exposed-form .bef-links ul li {
      display: inline-block;
      font-size: 1rem;
      list-style-type: none;
      margin: 0 !important;
      padding: 0 !important; }
      .location-list__wrapper .views-exposed-form .bef-links ul li a {
        background: #fff;
        border-radius: 0.25rem;
        color: #404040;
        display: inline-block;
        font-size: 1rem;
        font-weight: 400;
        margin: 0.5rem 1rem;
        padding: 0.25rem 1rem; }
        .location-list__wrapper .views-exposed-form .bef-links ul li a.bef-link--selected {
          background: #3c5f96;
          color: #fff; }

.location-list__wrapper .leaflet-container,
.location-list__wrapper .no-results {
  margin: 2rem 0; }

.location-list__wrapper .location-list__grid__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media (min-width: 1025px) {
    .location-list__wrapper .location-list__grid__wrapper {
      flex-direction: row; } }
  .location-list__wrapper .location-list__grid__wrapper header {
    flex: 100%; }

.location-list__wrapper .location-list__grid__item {
  flex: 1;
  margin: 1rem 0; }
  @media (min-width: 1025px) {
    .location-list__wrapper .location-list__grid__item {
      display: flex;
      flex: auto;
      margin: 1rem 2rem;
      width: calc(50% - 2rem); }
      .location-list__wrapper .location-list__grid__item:nth-child(odd) {
        margin-left: 0; }
      .location-list__wrapper .location-list__grid__item:nth-child(even) {
        margin-right: 0; } }
  .location-list__wrapper .location-list__grid__item__image {
    display: none; }
    @media (min-width: 1025px) {
      .location-list__wrapper .location-list__grid__item__image {
        display: block;
        margin: 0 1rem 0 0;
        width: 6.25rem; } }
  @media (min-width: 1025px) {
    .location-list__wrapper .location-list__grid__item__address {
      flex: 1; } }

.location-list__wrapper .map-legend h3,
.location-list__wrapper .map-legend div {
  margin: 0;
  display: inline-block; }

.location-list__wrapper .map-legend__key {
  font-size: 1.125rem; }

.location-list__wrapper .map-legend__icon {
  font-size: 2rem; }

.location-list__wrapper .map-legend__text {
  margin: 0 .5rem; }

.location-list .location-block .location-block-header-wrapper {
  font-size: 1.25rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .location-list .location-block .location-block-header-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: row; } }

.location-list .location-block .location-map-block div .address {
  display: none; }

.location-list .location-aside {
  margin: 1rem 0 !important;
  width: auto; }
  @media (min-width: 768px) {
    .location-list .location-aside {
      margin: 2rem 0 0 3rem !important; } }
  .location-list .location-aside .paragraph--type--contact-information-place {
    margin-left: 2rem !important; }
    .location-list .location-aside .paragraph--type--contact-information-place h2 {
      margin-top: 1rem;
      margin-bottom: 1rem; }

/* ============================================================
  Styles for Maproom Listings View Page
  ============================================================ */
div[id^='edit-field-map-type-target-id'] .form-radios {
  display: flex;
  column-gap: 1rem;
  flex-wrap: wrap; }
  div[id^='edit-field-map-type-target-id'] .form-radios .form-item-field-map-type-target-id input:checked + label {
    background: #4a5978;
    border: 0.163rem solid #4a5978;
    color: #fff; }
    div[id^='edit-field-map-type-target-id'] .form-radios .form-item-field-map-type-target-id input:checked + label:hover {
      background: #fff;
      border: 0.163rem solid #4a5978;
      color: #4a5978; }
  div[id^='edit-field-map-type-target-id'] .form-radios .form-item-field-map-type-target-id input {
    display: none; }
  div[id^='edit-field-map-type-target-id'] .form-radios .form-item-field-map-type-target-id label {
    background: #fff;
    border: 0.163rem solid #4a5978;
    color: #4a5978; }
    div[id^='edit-field-map-type-target-id'] .form-radios .form-item-field-map-type-target-id label:hover {
      background: #4a5978;
      border: 0.163rem solid #4a5978;
      color: #fff; }
  div[id^='edit-field-map-type-target-id'] .form-radios .form-item-field-map-type-target-id .button {
    cursor: pointer; }

@media (min-width: 768px) {
  .maproom--card-row {
    column-gap: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem; }
    .maproom--card-row:first-child {
      margin-left: 0; }
    .maproom--card-row:last-child {
      margin-right: 0; }
  .maproom--card {
    margin: 0; }
    .maproom--card .maproom--card-content {
      margin: 1rem 1rem 2rem 1rem; }
      .maproom--card .maproom--card-content h3 {
        font-size: 1.25rem;
        margin: 0.5rem 0rem; } }

/* ============================================================
  Styles for News (detail and search pages)
  ============================================================ */
.node-type-article article .article--category-taxonomy,
.node-type-article article .article--type-taxonomy {
  display: flex;
  margin-bottom: 1rem; }
  .node-type-article article .article--category-taxonomy strong,
  .node-type-article article .article--type-taxonomy strong {
    margin-right: .5rem; }
  .node-type-article article .article--category-taxonomy .taxonomy-icon-wrapper,
  .node-type-article article .article--type-taxonomy .taxonomy-icon-wrapper {
    background: #eee;
    border-radius: 1rem;
    padding: .2rem 1rem; }

.news--teaser {
  margin: 0; }
  @media (min-width: 768px) {
    .news--teaser .card--content {
      display: grid;
      grid-template-columns: 12.5rem 1fr;
      grid-template-areas: 'image text';
      height: 100%; } }
  .news--teaser .card--image {
    display: none; }
    @media (min-width: 768px) {
      .news--teaser .card--image {
        display: block;
        grid-area: image;
        min-height: 11rem; }
        .news--teaser .card--image img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover; } }
  .news--teaser .card--body {
    grid-area: text;
    margin: 0; }
    .news--teaser .card--body:hover .title {
      color: #164046; }
    .news--teaser .card--body .title,
    .news--teaser .card--body .text {
      margin: 1rem;
      padding: 0; }
    .news--teaser .card--body .title {
      color: #3c5f96;
      font-size: 1.25rem; }
    .news--teaser .card--body .text {
      color: #404040;
      display: flex;
      flex-direction: column;
      font-weight: 400;
      justify-content: space-between; }
      .news--teaser .card--body .text time {
        font-size: 1.125rem;
        margin: 0 0 1rem; }
      .news--teaser .card--body .text .taxonomy-icon-wrapper {
        font-size: 1rem;
        margin: 0; }

.news--wrapper {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1;
  grid-auto-rows: auto; }
  .news--wrapper .news-view-header-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    @media (min-width: 1025px) {
      .news--wrapper .news-view-header-wrapper {
        flex-direction: row;
        align-items: center;
        grid-column: 1 / span 2; } }
    .news--wrapper .news-view-header-wrapper .news-view-header {
      margin: 0;
      color: #fff; }
    .news--wrapper .news-view-header-wrapper a.news-view-header {
      font-size: 1.25rem; }

@media (min-width: 1025px) {
  .news--featured--wrapper {
    grid-template-columns: calc(50% - 1rem) calc(50% - 1rem); } }

@media (min-width: 1025px) {
  .news--related--wrapper {
    max-width: 42rem; } }

.news--related--wrapper .article--category-taxonomy strong,
.news--related--wrapper .article--type--taxonomy strong {
  display: none; }

@media (min-width: 1025px) {
  .news--page--wrapper {
    grid-template-columns: calc(50% - 1rem) calc(50% - 1rem); } }

@media (min-width: 1025px) {
  .news--page--wrapper .accordion-container {
    grid-column: 1 / span 2; } }

.news--page--wrapper .accordion-container .accordion-item #views-exposed-form-news-page-1 {
  background: #eee;
  display: flex;
  flex-direction: column;
  padding: 2rem; }
  @media (min-width: 1025px) {
    .news--page--wrapper .accordion-container .accordion-item #views-exposed-form-news-page-1 {
      flex-direction: row; } }
  .news--page--wrapper .accordion-container .accordion-item #views-exposed-form-news-page-1 .js-form-item {
    margin-right: 1rem; }
  .news--page--wrapper .accordion-container .accordion-item #views-exposed-form-news-page-1 .form-submit {
    border-radius: 0;
    cursor: pointer;
    margin-top: 2rem;
    padding: .75rem 3rem; }

.paragraph--type--view .views-element-container .section-news {
  background: none; }
  .paragraph--type--view .views-element-container .section-news .section-padded {
    margin: 0;
    padding: 0; }
    .paragraph--type--view .views-element-container .section-news .section-padded .news--wrapper {
      display: flex;
      flex-direction: column; }
      .paragraph--type--view .views-element-container .section-news .section-padded .news--wrapper .news-view-header-wrapper h2,
      .paragraph--type--view .views-element-container .section-news .section-padded .news--wrapper .news-view-header-wrapper a {
        color: #404040; }
      .paragraph--type--view .views-element-container .section-news .section-padded .news--wrapper .news-row {
        max-width: 75%; }

/*# sourceMappingURL=organisms.css.map */
