@font-face {
  font-family: "BentonSans-Regular";
  src: url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Regular/BentonSans-Regular.eot");
  src: url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Regular/BentonSans-Regular.eot") format("embedded-opentype"), url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Regular/BentonSans-Regular.woff") format("woff"), url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Regular/BentonSans-Regular.ttf") format("truetype"), url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Regular/BentonSans-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BentonSans-Regular";
  src: url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Bold/BentonSans-Bold.eot");
  src: url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Bold/BentonSans-Bold.eot") format("embedded-opentype"), url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Bold/BentonSans-Bold.woff") format("woff"), url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Bold/BentonSans-Bold.ttf") format("truetype"), url("../../../../nrw/nrw_base_theme/public/fonts//BentonSans/BentonSans-Bold/BentonSans-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  -webkit-animation: pswp-clockwise 600ms linear infinite;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@-webkit-keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin: 15px 0 0 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.pswp__button--zoom:hover,
.pswp__button--close:hover,
.pswp__button--arrow--prev:hover,
.pswp__button--arrow--next:hover {
  box-shadow: none;
  outline: 1px dotted currentColor;
  outline-color: white;
  outline-offset: -3px;
  outline-width: 2px;
  outline-style: solid;
}

@supports (-ms-ime-align: auto) {
  .pswp__button--zoom:hover,
  .pswp__button--close:hover,
  .pswp__button--arrow--prev:hover,
  .pswp__button--arrow--next:hover {
    outline: 3px dotted currentColor;
  }
}

.pswp__button--zoom:focus, .pswp__button--zoom:active,
.pswp__button--close:focus,
.pswp__button--close:active,
.pswp__button--arrow--prev:focus,
.pswp__button--arrow--prev:active,
.pswp__button--arrow--next:focus,
.pswp__button--arrow--next:active {
  box-shadow: none;
  outline: 1px dotted currentColor;
  outline-color: white;
  outline-offset: -3px;
  outline-width: 2px;
  outline-style: dashed;
}

@supports (-ms-ime-align: auto) {
  .pswp__button--zoom:focus, .pswp__button--zoom:active,
  .pswp__button--close:focus,
  .pswp__button--close:active,
  .pswp__button--arrow--prev:focus,
  .pswp__button--arrow--prev:active,
  .pswp__button--arrow--next:focus,
  .pswp__button--arrow--next:active {
    outline: 3px dotted currentColor;
  }
}

.sitemap {
  padding: 1.25rem 0;
}

.sitemap .sitemap-message,
.sitemap .sitemap-item > div {
  padding: 0;
}

@media (min-width: 480px) {
  .sitemap .sitemap-message,
  .sitemap .sitemap-item > div {
    padding: 0 20px;
  }
}

.sitemap .sitemap-message {
  margin-bottom: 1.25rem;
}

.sitemap-plugin--frontpage a {
  display: inline-block;
  margin-right: 10px;
}

.sitemap-plugin--menu .sitemap-box-menu {
  padding: 0;
}

@media (min-width: 768px) {
  .sitemap-plugin--menu .sitemap-box-menu {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

.sitemap-plugin--menu .sitemap-box-menu li {
  font-size: 1rem;
  color: #233755;
  list-style-type: none;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}

.sitemap-plugin--menu .sitemap-box-menu li:last-child {
  margin-bottom: 5px;
}

.sitemap-plugin--menu .sitemap-box-menu li.first {
  margin-bottom: 10px;
}

.sitemap-plugin--menu .sitemap-box-menu li.first > a {
  font-family: "BentonSans-Regular", "Open Sans", arial, sans-serif;
  font-size: 16px;
  margin: 0;
}

.sitemap-plugin--menu .sitemap-box-menu li.first > a:before {
  content: "";
  margin: 0;
}

.sitemap-plugin--menu .sitemap-box-menu > span {
  font-weight: bold;
}

.sitemap-plugin--menu .sitemap-box-menu > span:before {
  display: none;
}

.sitemap-plugin--menu .sitemap-box-menu a,
.sitemap-plugin--menu .sitemap-box-menu span {
  color: #3C506E;
  display: inline-block;
  vertical-align: baseline;
}

.sitemap-plugin--menu .sitemap-box-menu a::before, .sitemap-plugin--menu .sitemap-box-menu a::after,
.sitemap-plugin--menu .sitemap-box-menu span::before,
.sitemap-plugin--menu .sitemap-box-menu span::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.sitemap-plugin--menu .sitemap-box-menu a::before,
.sitemap-plugin--menu .sitemap-box-menu span::before {
  margin-right: 0.25em;
  vertical-align: baseline;
  content: "\f061";
}

.sitemap-plugin--menu .sitemap-box-menu a:before,
.sitemap-plugin--menu .sitemap-box-menu span:before {
  font-size: 0.75rem;
  top: -2px;
  position: relative;
  margin-right: 0.5em;
}

.maintenance-page {
  padding: 20px;
}

.maintenance-page .main-container {
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .maintenance-page .main-container {
    margin-top: 4vw;
  }
}

.maintenance-page .logo {
  max-width: 16em;
  float: right;
}

.maintenance-page .page-title {
  margin-top: 0;
  clear: right;
}

@media (min-width: 768px) {
  .maintenance-page .page-title {
    clear: none;
  }
}

.maintenance-page .main {
  width: 100%;
  padding-bottom: 4vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 768px) {
  .maintenance-page .main {
    flex-direction: row;
    justify-content: center;
    padding-top: 40px;
  }
}

.maintenance-page .main .content {
  max-width: 28em;
  font-size: large;
}

.maintenance-page .main .maintainance-icon {
  position: relative;
  height: 6em;
  width: 6em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .maintenance-page .main .maintainance-icon {
    margin-right: 40px;
    margin-bottom: 0;
  }
}

@-webkit-keyframes pendulum {
  0% {
    transform: rotateZ(0deg);
  }
  20% {
    transform: rotateZ(183deg);
  }
  33% {
    transform: rotateZ(111deg);
  }
  43% {
    transform: rotateZ(147deg);
  }
  53% {
    transform: rotateZ(123deg);
  }
  63% {
    transform: rotateZ(138deg);
  }
  73% {
    transform: rotateZ(132.5deg);
  }
  83% {
    transform: rotateZ(135.75deg);
  }
  100% {
    transform: rotateZ(135deg);
  }
}

@keyframes pendulum {
  0% {
    transform: rotateZ(0deg);
  }
  20% {
    transform: rotateZ(183deg);
  }
  33% {
    transform: rotateZ(111deg);
  }
  43% {
    transform: rotateZ(147deg);
  }
  53% {
    transform: rotateZ(123deg);
  }
  63% {
    transform: rotateZ(138deg);
  }
  73% {
    transform: rotateZ(132.5deg);
  }
  83% {
    transform: rotateZ(135.75deg);
  }
  100% {
    transform: rotateZ(135deg);
  }
}

.maintenance-page .main .maintainance-icon .maintainance-icon--svg {
  color: #d9dada;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

@media (min-width: 768px) {
  .maintenance-page .main .maintainance-icon .maintainance-icon--svg {
    -webkit-animation: pendulum 4s ease-in-out forwards;
    animation: pendulum 4s ease-in-out forwards;
    -webkit-animation-delay: 6.66s;
    animation-delay: 6.66s;
    transform-origin: 0.7em 5.28em;
  }
}

.media--preview {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}

.media--preview__text-block {
  padding-top: 20px;
  padding-bottom: 20px;
}

.media--preview__type-text {
  position: absolute;
  right: 20px;
  top: 20px;
  left: auto;
  bottom: auto;
  z-index: 1;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: bold;
  color: #E9E9E9;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.1875rem 0.625rem;
}

.media--preview__info {
  position: absolute;
  bottom: 0;
  color: #233755;
  padding: 5px 5px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
}

.media--preview__dummy {
  position: relative;
  background-color: #c0c0c0;
}

.media--preview__dummy::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f144";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 50px;
  line-height: 50px;
  color: #c0c0c0;
}

.media--preview h2 {
  margin: 0.3125rem 0 0;
  font-weight: bold;
}

.media--preview img {
  width: 100%;
}

.media--preview .image__date:after {
  content: " ";
}

.media--preview a {
  font-weight: normal;
}

.media--preview p > a {
  text-decoration: underline;
}

.media--preview div[class*="description"] {
  font-size: 0.875rem;
  margin-top: 0.625rem;
}

.media--preview .image__date,
.media--preview .audio__date,
.media--preview .gallery__date,
.media--preview .video__date {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: bold;
}

.preview-wide__info,
.media--preview__info {
  bottom: 0.9375rem;
  left: 20px;
}

@media (max-width: 991px) {
  .preview-wide__info,
  .media--preview__info {
    bottom: 0.9375rem;
  }
}

.preview-wide__ico,
.media--preview__ico {
  background: #c0c0c0;
  color: #3C506E;
  padding: 10px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.preview-wide__linktext,
.media--preview__linktext {
  background: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  float: left;
  display: inline-block;
  height: 40px;
}

@media (max-width: 991px) {
  .preview-wide__linktext,
  .media--preview__linktext {
    width: auto;
  }
}

.media--search {
  margin: 0 0 20px 0;
  min-height: 200px;
}

.media--search__type-text {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: bold;
  color: white;
  background: #233755;
  padding: 0.1875rem 0.625rem;
}

.media--search__info,
.media--search__caption,
.media--search__copyright {
  font-size: 0.875rem;
  font-weight: bold;
}

.media--search__info {
  position: static;
  color: #233755;
  padding-top: 0.625rem;
  text-align: left;
}

.media--search__date {
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
}

.media--search__dummy {
  position: relative;
  background-color: #c0c0c0;
}

.media--search__dummy::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  content: "\f144";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 50px;
  line-height: 50px;
  color: #233755;
}

.media--search__dummy::after {
  content: '';
  display: block;
  padding-top: 50%;
}

.media--search__tags {
  margin-top: 0.3125rem;
}

.media--search__tags .field--name-field-tags .field--item a {
  color: #233755;
}

.media--search__tags::before,
.media--search__tags a {
  color: #233755;
}

.media--search__tags a:hover {
  text-decoration: underline;
}

.media--search__tags a:visited {
  text-decoration: none;
}

.media--search__tags a:after {
  content: ',';
  display: inline-block;
  padding-right: 0.3125rem;
}

.media--search__tags a:last-child:after {
  content: '';
}

.block-views-blockblog-author-blog-author {
  margin: -1.25rem;
}

.block-views-blockblog-author-blog-author .form-group {
  margin: 0;
}

.block-views-blockblog-author-blog-author p {
  padding: 0 20px;
}

.region-sidebar-second .block-views-blockblog-author-blog-author > .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.region-sidebar-second .block-views-blockblog-author-blog-author .view-blog-author {
  margin-left: -20px;
  margin-right: -20px;
}

.view-events__sidebar-left {
  border-right: 1px solid #d9dada;
  background: #3C506E;
  color: white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.view-events__sidebar-left .form-item {
  margin-bottom: 20px;
  display: block;
}

.view-events__sidebar-left label {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.3125rem;
}

.view-events__sidebar-left .form-control {
  width: 100%;
  box-shadow: none;
}

.view-events__sidebar-left .form-control:focus {
  box-shadow: none;
  outline: 1px dotted currentColor;
  outline-color: #E9E9E9;
  outline-offset: -3px;
  outline-width: 2px;
  outline-style: dashed;
}

@supports (-ms-ime-align: auto) {
  .view-events__sidebar-left .form-control:focus {
    outline: 3px dotted currentColor;
  }
}

.view-events__sidebar-left .input-icon {
  position: relative;
  font-weight: normal;
}

.view-events__sidebar-left .input-icon > .fas {
  position: absolute;
  color: #233755;
  right: 10px;
  top: 10px;
  font-size: 1rem;
}

.view-events__sidebar-left .form-actions {
  float: right;
}

.view-events__sidebar-left .form-submit {
  display: inline-block;
  vertical-align: baseline;
  margin: 0;
  border: 1px solid #008732;
  background: #008732;
}

.view-events__sidebar-left .form-submit::before, .view-events__sidebar-left .form-submit::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.view-events__sidebar-left .form-submit::after {
  margin-left: 0.625rem;
  vertical-align: baseline;
  content: "\f002";
}

.view-events__sidebar-left .form-submit:hover {
  border-color: white;
}

.view-events__sidebar-left .form-submit:focus {
  box-shadow: none;
  outline: 1px dotted currentColor;
  outline-color: #E9E9E9;
  outline-offset: -3px;
  outline-width: 2px;
  outline-style: dashed;
}

@supports (-ms-ime-align: auto) {
  .view-events__sidebar-left .form-submit:focus {
    outline: 3px dotted currentColor;
  }
}

.view-events .view-footer {
  padding: 20px 0;
}

.view-events .teaser-link {
  padding: 20px;
}

.view-events .views-row:last-child {
  margin-bottom: 0.625rem;
}

.view-calendar__header {
  font-size: 1.25rem;
  color: #E9E9E9;
  display: flex;
  padding: 1.25rem;
  background: #EAEFF6;
  margin: 0 -20px;
}

@media (max-width: 767px) {
  .view-calendar__header {
    word-break: break-all;
  }
}

.view-calendar__header i {
  color: white;
  background-color: #E9E9E9;
  min-width: 2.8125rem;
  width: 2.8125rem;
  height: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 1.25rem;
}

.view-calendar__header i .fas {
  border: 0;
}

.view-calendar__header h2 {
  margin: 0;
  line-height: 1;
}

.view-calendar__header .sub-title {
  font-weight: bold;
  display: block;
}

.view-press-dates .view-footer {
  padding: 20px 0;
}

.view-press-dates .press__teaser {
  margin-bottom: 0.9375rem;
}

.view-search-media {
  margin-top: 20px;
  margin-right: -20px;
  margin-left: -20px;
}

.view-search-media img {
  width: 100%;
}

.view-search-media .view-content:before, .view-search-media .view-content:after {
  display: table;
  content: " ";
}

.view-search-media .view-content:after {
  clear: both;
}

@media (min-width: 992px) {
  .view-search-media .view-content {
    display: flex;
    flex-wrap: wrap;
  }
}

.view-search-media .views-row {
  padding-bottom: 80px;
}

.view-search-media .views-row .media--search {
  position: relative;
}

.view-search-media .pager-nav {
  margin-left: 20px;
  margin-right: 20px;
}

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