  /**
 * Font mixins
 */
/**
 * Global mixins
 */
/**
 * Buttons mixins
 */
/**
 * Link mixins
 */
/**
 * Single posts mixins
 */
/**
 * Block elements mixins
 */
/**
 * Contact form mixins
 */
/**
 * Gallery slider
 * Used in photo gallery block
 * Used on single post
 * Used on single event
 */
/**
 * Slider elements
 */
.c-toggle-control__label {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-toggle-control__label img {
  width: auto;
  max-height: 1.875rem;
  margin-right: 0.75rem;
}
.c-toggle-control__toggle {
  position: relative;
  width: 3.125rem;
  height: 1.875rem;
  align-items: center;
  border-radius: 1.875rem;
  margin-left: 0.75rem;
  background: #acb8bf;
  transition: background-color 0.2s ease-in-out;
}
.c-toggle-control__toggle::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 100%;
  background: #fff;
  content: "";
  transition: left 0.2s ease-in-out;
}
.c-toggle-control__input {
  display: none;
}
.c-toggle-control__input:checked + label .c-toggle-control__toggle {
  background: #3970de;
}
.c-toggle-control__input:checked + label .c-toggle-control__toggle::after {
  left: 22px;
}

.c-page-header {
  position: relative;
  padding: 1.75rem 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
@media screen and (min-width: 1141px) {
  .c-page-header {
    cursor: default;
  }
}
.c-page-header__container, .c-page-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-page-header__link {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
  margin-right: 3rem;
}
.c-page-header__link:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
}
.c-page-header__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 576px) {
  .c-page-header__title {
    font-size: 1rem;
    line-height: 1;
  }
}
.c-page-header__arrow {
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 1141px) {
  .c-page-header__arrow {
    display: none;
  }
}
.c-page-header__nav {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-height: 0;
  padding: 0 1.25rem;
  background-color: #000;
  transition: max-height 0.2s ease-in-out;
}
@media screen and (min-width: 769px) {
  .c-page-header__nav {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav {
    position: static;
    overflow: visible;
    width: auto;
    height: auto;
    max-height: unset;
    padding: 0;
    background-color: transparent;
    transition: unset;
  }
}
.c-page-header__nav ul {
  flex-direction: column;
  align-items: unset;
  padding: 0.75rem 0;
  margin: 0;
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}
.c-page-header__nav ul li {
  display: block;
  list-style: none;
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav ul li {
    padding: 0 0.75rem;
  }
}
.c-page-header__nav ul li:last-child {
  padding-right: 0;
}
.c-page-header__nav ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (min-width: 1141px) {
  .c-page-header__nav ul li a {
    width: auto;
    padding: 0;
    color: #000;
    font-size: 1rem;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    transition: -webkit-text-decoration-color 0.2s ease-in-out;
    transition: text-decoration-color 0.2s ease-in-out;
    transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
    text-underline-offset: 0.5rem;
  }
  .c-page-header__nav ul li a:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #000;
            text-decoration-color: #000;
  }
}
.c-page-header__nav ul li a.current-item {
  text-decoration: underline;
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
  text-underline-offset: 0.5rem;
}
@media (max-width: 1140px) {
  .c-page-header__nav ul li a.current-item {
    position: relative;
  }
  .c-page-header__nav ul li a.current-item::before {
    position: absolute;
    top: 50%;
    left: -2.5rem;
    width: 0.75rem;
    height: 1px;
    background-color: #000;
    content: "";
  }
}
@media (max-width: 768px) {
  .c-page-header__nav ul li a.current-item::before {
    left: -1.25rem;
  }
}
@media (max-width: 1140px) {
  .c-page-header__nav ul li a.current-item {
    text-decoration: none;
  }
  .c-page-header__nav ul li a.current-item::before {
    background-color: #fff;
  }
}
.c-page-header--opened .c-page-header__arrow {
  transform: rotate(270deg);
}

body.theme-midnight-blue .c-page-header {
  border-bottom: 1px solid #0e3959;
}
body.theme-midnight-blue .c-page-header__link {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
body.theme-midnight-blue .c-page-header__link:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #84c2f1;
          text-decoration-color: #84c2f1;
}
body.theme-midnight-blue .c-page-header__title {
  color: #84c2f1;
}
body.theme-midnight-blue .c-page-header__arrow {
  filter: brightness(0) saturate(100%) invert(71%) sepia(36%) saturate(568%) hue-rotate(175deg) brightness(96%) contrast(96%);
}
body.theme-midnight-blue .c-page-header__nav {
  background-color: #00243f;
}
@media screen and (min-width: 1141px) {
  body.theme-midnight-blue .c-page-header__nav {
    background-color: transparent;
  }
}
body.theme-midnight-blue .c-page-header__nav ul li a {
  color: #84c2f1;
  text-decoration: none;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: -webkit-text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out;
  transition: text-decoration-color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
}
body.theme-midnight-blue .c-page-header__nav ul li a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #84c2f1;
          text-decoration-color: #84c2f1;
}
@media (max-width: 1140px) {
  body.theme-midnight-blue .c-page-header__nav ul li a.current-item::before {
    background-color: #84c2f1;
  }
}

.c-page-title {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 577px) {
  .c-page-title {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 1141px) {
  .c-page-title {
    display: flex;
    align-items: center;
  }
}
.c-page-title__title {
  margin: 0 0 0.75rem 0;
  text-align: center;
  font-size: 4.375rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.91;
}
@media (max-width: 576px) {
  .c-page-title__title {
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (min-width: 1141px) {
  .c-page-title__title {
    font-size: 10rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.87;
    width: 57.9%;
    margin: 0 0 3rem 0;
    text-align: left;
  }
}
@media screen and (min-width: 1141px) and (max-width: 1140px) {
  .c-page-title__title {
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 1141px) and (max-width: 576px) {
  .c-page-title__title {
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 1401px) {
  .c-page-title__title {
    padding: 0 0 0 8%;
  }
}
.c-page-title__image {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 1141px) {
  .c-page-title__image {
    width: 42.1%;
  }
}
.c-page-title__image img {
  width: 8rem;
  height: auto;
}
@media screen and (min-width: 577px) {
  .c-page-title__image img {
    width: 27.5rem;
  }
}

body.theme-midnight-blue .c-page-title__title {
  color: #84c2f1;
}

.item-listing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.item-listing__header__title {
  font-size: 10rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.87;
  margin: 0;
}
@media (max-width: 1140px) {
  .item-listing__header__title {
    font-size: 7.5rem;
  }
}
@media (max-width: 576px) {
  .item-listing__header__title {
    font-size: 3.125rem;
  }
}
.item-listing__search__text {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-radius: 1rem;
  background: #f2f2f2;
}
.item-listing__search__text::before {
  position: relative;
  max-width: 1.625rem;
  height: 1.625rem;
  flex: 1 1 100%;
  margin-right: 1.5rem;
  background: #000;
  content: "";
  -webkit-mask-image: url("/wp-content/themes/saint-paul-college/img/icon-search.svg");
          mask-image: url("/wp-content/themes/saint-paul-college/img/icon-search.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 1.625rem auto;
          mask-size: 1.625rem auto;
}
.item-listing__search__text .c-input-group {
  padding-left: 0;
}
.item-listing__search__text .c-input-group__input {
  position: relative;
}
.item-listing__search__text .c-input-group__input::-webkit-search-cancel-button {
  position: relative;
  right: 20px;
  width: 1.75rem;
  height: 1.75rem;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/wp-content/themes/saint-paul-college/img/icon-close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.item-listing__search__text .c-input-group__label {
  left: 0;
}
@media (max-width: 768px) {
  .item-listing__search__text {
    padding: 0 1rem;
    border-radius: 0.5rem;
  }
  .item-listing__search__text::before {
    max-width: 1rem;
    height: 1rem;
    margin-right: 1rem;
    -webkit-mask-size: 1rem auto;
            mask-size: 1rem auto;
  }
}
.item-listing__search__button {
  max-width: 1.5rem;
  height: 1.75rem;
  flex: 1 1 100%;
  padding: 0;
  border: 0;
  background: none;
  background: #000;
  box-shadow: none;
  cursor: pointer;
  -webkit-mask-image: url("/wp-content/themes/saint-paul-college/img/icon-arrow-right.svg");
          mask-image: url("/wp-content/themes/saint-paul-college/img/icon-arrow-right.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 1.5rem auto;
          mask-size: 1.5rem auto;
  text-indent: -1000rem;
}
@media (max-width: 768px) {
  .item-listing__search__button {
    max-width: 1rem;
    height: 1rem;
    -webkit-mask-size: 1rem auto;
            mask-size: 1rem auto;
  }
}
.item-listing__filters-open {
  display: none;
  padding: 1.25rem 0;
  border-top: 1px solid #d3d9dd;
  border-bottom: 1px solid #d3d9dd;
  margin: 1.25rem 0;
}
.item-listing__filters-open .c-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.item-listing__filters-open .c-button img {
  margin-right: 0.75rem;
}
@media (max-width: 992px) {
  .item-listing__filters-open {
    display: block;
  }
}
.item-listing__filters-close {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.item-listing__filters-close::before, .item-listing__filters-close::after {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  width: 1.5rem;
  height: 2px;
  background-color: #000;
  content: "";
  transform: rotate(-45deg);
  transition: transform 0.2s ease-in-out;
}
.item-listing__filters-close::after {
  transform: rotate(45deg);
}
.item-listing__filters {
  padding: 2rem 0;
  border-top: 1px solid #d3d9dd;
  border-bottom: 1px solid #d3d9dd;
  margin: 2.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  font-weight: 400;
}
.item-listing__filters__header, .item-listing__filters__footer {
  display: none;
}
@media (max-width: 576px) {
  .item-listing__filters {
    font-size: 0.875rem;
  }
}
.item-listing__filters__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item-listing__filters__dropdown {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.item-listing__filters__dropdown::after {
  display: inline-block;
  width: 0.625rem;
  height: 1rem;
  margin-left: 0.75rem;
  background: #000;
  content: "";
  -webkit-mask-image: url("/wp-content/themes/saint-paul-college/img/icon-chevron.svg");
          mask-image: url("/wp-content/themes/saint-paul-college/img/icon-chevron.svg");
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 0.625rem auto;
          mask-size: 0.625rem auto;
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}
@media screen and (min-width: 993px) {
  .item-listing__filters__dropdown::after {
    width: 1rem;
  }
}
.item-listing__filters__dropdown:hover {
  opacity: 0.5;
}
.item-listing__filters__dropdown.js-open {
  overflow: hidden;
}
.item-listing__filters__dropdown.js-open::after {
  transform: rotate(-90deg);
}
.item-listing__filters__dropdown--active {
  color: #3970de;
}
.item-listing__filters__dropdown--active::after {
  background: #3970de;
}
.item-listing__filters .c-toggle-control {
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .item-listing__filters {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    margin: 0;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .item-listing__filters.js-open {
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
    transform: translateY(0);
  }
  .item-listing__filters .container {
    padding: 0;
    margin: 0;
  }
  .item-listing__filters__header, .item-listing__filters__footer {
    display: block;
  }
  .item-listing__filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .item-listing__filters__header__title {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.125;
    margin: 0;
    font-size: 1.375rem;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  .item-listing__filters__header__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 992px) {
  .item-listing__filters__footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #000;
    margin-top: auto;
  }
  .item-listing__filters__footer .c-button {
    width: 100%;
  }
  .item-listing__filters__header, .item-listing__filters__footer, .item-listing__filters__dropdown, .item-listing__filters__dropdown + .item-listing__accordion, .item-listing__filters__type .c-toggle-control {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .item-listing__filters__wrapper {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .item-listing__filters__dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d3d9dd;
    margin: 0;
  }
  .item-listing__filters__dropdown + .item-listing__accordion.js-open {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin: 0 !important;
  }
  .item-listing__filters__dropdown::after {
    position: relative;
    right: 0.25rem;
  }
  .item-listing__filters__type {
    padding-top: 0.875rem;
  }
  .item-listing__filters__type .c-toggle-control {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    margin: 0;
  }
  .item-listing__filters__type .c-toggle-control .c-toggle-control__label img {
    margin-right: 1.5rem;
  }
  .item-listing__filters__type .c-toggle-control .c-toggle-control__toggle {
    margin-left: auto;
  }
}
.item-listing__accordion {
  max-height: 0;
  opacity: 0;
  transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out, max-height 0.2s ease-in-out, opacity 0.2s ease-in-out, border 0.2s ease-in-out, visibility 0.4s ease-in-out;
  visibility: hidden;
}
.item-listing__accordion__wrapper {
  display: grid;
  align-items: center;
  grid-gap: 0 1.25rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 993px) {
  .item-listing__accordion__wrapper {
    grid-template-columns: repeat(2, minmax(18rem, 23rem));
  }
}
.item-listing__accordion__wrapper label {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 993px) {
  .item-listing__accordion__wrapper label {
    padding-right: 2rem;
    padding-left: 1.25rem;
  }
}
.item-listing__accordion__wrapper label input {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin: 0 0.5rem 0 -1.25rem;
}
@media screen and (max-width: 992px) {
  .item-listing__accordion__wrapper label input {
    order: 3;
    margin: 0 0 0 auto;
  }
}
.item-listing__accordion__wrapper .tax-tooltip {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 2rem;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 993px) {
  .item-listing__accordion__wrapper .tax-tooltip {
    margin-right: 0;
  }
}
.item-listing__accordion__wrapper .tax-tooltip__image {
  position: relative;
  top: 0.125rem;
  width: 1.5rem;
  height: 1.5rem;
}
.item-listing__accordion__wrapper .tax-tooltip__content {
  --tooltip-after-position: 7.5rem;
  position: absolute;
  z-index: 5;
  top: auto;
  left: 0;
  display: block;
  width: 15.75rem;
  height: auto;
  padding: 0.625rem;
  border-radius: 0.5rem;
  margin: 0.75rem 0 0 0;
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
  opacity: 0;
  text-align: center;
  transition: opacity 0.2s ease-in-out, visibility 0.4s ease-in-out;
  visibility: hidden;
}
@media screen and (min-width: 993px) {
  .item-listing__accordion__wrapper .tax-tooltip__content {
    left: -7.125rem;
  }
}
.item-listing__accordion__wrapper .tax-tooltip__content::after {
  position: absolute;
  top: -0.375rem;
  left: var(--tooltip-after-position);
  width: 0.75rem;
  height: 0.75rem;
  background-color: #000;
  content: "";
  transform: rotate(45deg);
}
@media screen and (min-width: 993px) {
  .item-listing__accordion__wrapper .tax-tooltip:hover .tax-tooltip__content {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    visibility: visible;
  }
}
.item-listing__accordion__wrapper .tax-tooltip--visible .tax-tooltip__content {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  visibility: visible;
}
.item-listing__accordion.js-open {
  max-height: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d3d9dd;
  margin-bottom: 2.5rem;
  opacity: 1;
  visibility: visible;
}
.item-listing__listing {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  gap: 1.25rem;
}

.programs-listing__item {
  display: flex;
  overflow: hidden;
  flex: 1 1 auto;
  flex-direction: column;
  padding-bottom: 0;
  border-radius: 1rem;
  background: #cce9ff;
  text-decoration: none;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.programs-listing__item__header {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.16;
  min-height: 4.125rem;
  padding: 0.875rem 1rem;
  margin: 0;
}
@media (max-width: 576px) {
  .programs-listing__item__header {
    font-size: 1rem;
  }
}
@media screen and (min-width: 577px) {
  .programs-listing__item__header {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    min-height: 6rem;
    padding: 1.25rem 2rem;
  }
}
@media screen and (min-width: 577px) and (max-width: 576px) {
  .programs-listing__item__header {
    font-size: 1.125rem;
  }
}
.programs-listing__item__footer {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  margin-top: auto;
  background: #a4d8fc;
  transition: background 0.2s ease-in-out;
}
@media (max-width: 576px) {
  .programs-listing__item__footer {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 577px) {
  .programs-listing__item__footer {
    min-height: 3.5rem;
    padding: 1rem 2rem;
  }
}
.programs-listing__item__footer .degrees-list {
  margin: 0 auto 0 0;
}
.programs-listing__item__types {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.programs-listing__item__types__type {
  display: block;
  margin-left: 1rem;
  list-style: none;
}
.programs-listing__item__types img {
  display: block;
  transition: filter 0.2s ease-in-out;
}
.programs-listing__item:hover {
  background: #3970de;
  color: #fff;
}
.programs-listing__item:hover .programs-listing__item__footer {
  background: #245bc9;
}
.programs-listing__item:hover .programs-listing__item__footer .programs-listing__item__types img {
  filter: invert(1);
}

#filter-results {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, max-height 0.2s ease-in-out;
}
#filter-results.has-active-filters {
  max-height: 100%;
  opacity: 1;
}

.selected-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 0.5rem;
}
.selected-filters__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.selected-filters__item {
  background: #f2f2f2 !important;
  color: #000;
}
.selected-filters__item .search-close-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  filter: none;
}
.selected-filters__item--hidden {
  display: none;
}
.selected-filters__item:hover {
  background: #d3d9dd !important;
}
.selected-filters__item:hover .search-close-icon {
  filter: none;
}
.selected-filters__reset {
  margin-left: auto;
}

.programs-listing {
  display: grid;
  padding-bottom: 2.5rem;
  grid-gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 769px) {
  .programs-listing {
    grid-template-columns: repeat(2, calc((100% - 1.25rem) / 2));
  }
}
@media screen and (min-width: 1141px) {
  .programs-listing {
    grid-template-columns: repeat(3, calc((100% - 2.5rem) / 3));
  }
}

/*# sourceMappingURL=archive-programs.css.map*/