@charset "UTF-8";
/**
 * Breakpoint mixin. Example use:
 * @include bp($breakpoint-tablet) {
 *    // content;
 * };
 *
 * @author Kim-Christian Meyer <kim.meyer@palasthotel.de>
 */
/**
 * Hide an element in the most unobstrusive way,
 * while keeping it accessible and SEO-friendly
 * 
 * Originally investigated by Jonathan Snook:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 * Now part of the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/fea7f22aef9146a1effc469c3371fbc2a75e0049/src/css/main.css#L119
 * 
 * @author Arne Seemann <arne.seemann@palasthotel.de>
 */
.views-row {
  overflow: auto;
  margin-top: 22px;
}

.views-row:first-of-type {
  margin-top: 0;
  border-top: none;
}

@media all and (min-width: 760px) {
  .views-row {
    margin-top: 44px;
    margin-bottom: 44px;
  }
}

.views-row .date {
  color: #91c800;
  margin: 55px auto 0;
  text-align: center;
  /*
    &.multiple {
      background-image: url("../images/event-multiple-days.svg");
      background-repeat: no-repeat;
      -webkit-background-size: cover;
      background-size: cover;
      width: 92px;
      height: 90px;
    }
*/
}

@media all and (min-width: 540px) {
  .views-row .date {
    width: auto;
    margin: 33px auto 0;
    float: left;
  }
}

.views-row .date .day {
  font-size: 4.375rem;
  line-height: .7;
  text-align: center;
}

.views-row .date .weekday {
  font-size: 0.9375rem;
  text-align: center;
}

@media all and (min-width: 760px) {
  .views-row .date {
    clear: both;
    float: left;
    margin-top: 55px;
  }
  .views-row .date .day {
    font-size: 5.625rem;
  }
}

.views-row .eventlist-white-wrapper {
  margin-top: 22px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.views-row .eventlist-white-wrapper.last-event {
  border: none;
}

@media screen and (min-width: 540px) {
  .views-row .eventlist-white-wrapper {
    float: right;
    width: calc(100% - 100px);
  }
}

@media all and (min-width: 760px) {
  .views-row .eventlist-white-wrapper {
    margin-top: 44px;
    width: calc(100% - 140px);
    float: right;
    padding-bottom: 40px;
  }
  .views-row .eventlist-white-wrapper .event--title {
    padding-right: 66px;
  }
  .views-row .eventlist-white-wrapper .event--title:after {
    margin-right: -66px;
    content: '';
    display: block;
    float: right;
    background-image: url(../images/arrow-right.svg);
    background-repeat: no-repeat;
    width: 42px;
    height: 36px;
  }
}

.views-row .event--subtitle {
  margin-bottom: 0;
}

.views-row.no-date {
  border-top: none;
}

.views-row.no-date .eventlist-white-wrapper {
  border-top: 1px solid #7c7c7c;
  padding-top: 44px;
  margin-top: 0;
}

.views-row:first-of-type .eventlist-white-wrapper {
  border-top: none;
}

.event--title--wrapper {
  line-height: 2.6875rem;
}

.event--title--wrapper a {
  text-decoration: none;
}

.event--title--wrapper .event--title {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin: .75rem 0 .1rem;
}

@media screen and (min-width: 768px) {
  .event--title--wrapper .event--title {
    font-size: 2.25rem;
  }
}

.field--teaser-text {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.field--teaser-text p {
  margin: 0;
}

.field--coop-partner h5 {
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 15px 0;
}

.field--coop-partner h5 + .coop-partner {
  margin-top: 0;
}

.coop-partner {
  display: inline-block;
  margin: 0 3.5rem 2rem 0;
  vertical-align: top;
}

.coop-partner:last-child {
  margin-right: 0;
}

.coop-partner img {
  max-height: 100px;
}

.coop-partner figcaption {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.coop-partner a {
  text-decoration: none;
}

.field--series > div {
  display: inline-block;
}

.field--city > div {
  display: inline-block;
}

.event--subtitle {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: normal;
  margin-bottom: 1rem;
}

.event--subtitle:empty {
  display: none;
}

@media all and (min-width: 768px) {
  .event--subtitle {
    font-size: 1.375rem;
  }
}

.event--meta {
  line-height: 1.3;
}

.event--meta .field--event_type {
  color: #91c800;
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 22px;
}

.event--meta .field--date {
  font-weight: 700;
  margin-top: 0;
}

.event--body img {
  max-width: 100%;
}

.event--header,
.event--footer,
.event--content {
  max-width: 1100px;
  margin: 0 auto;
}

.event-series-overlay {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  display: block;
  background: #91c800;
  opacity: 0.95;
  padding: 0 10px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media all and (min-width: 760px) {
  .event-series-overlay {
    padding: 0 43px;
  }
}

@media all and (min-width: 1220px) {
  .event-series-overlay {
    margin: 0 -120px;
    padding: 0 120px;
  }
}

.event-series-overlay .event-series-overlay--stickywrapper {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: white;
  text-decoration: none;
}

.event-series-overlay .event-series-overlay--stickywrapper .event-series-overlay--eventseries {
  font-size: 20px;
  padding: 10px 0;
  font-weight: 700;
}

.event-series-overlay .event-series-overlay--stickywrapper .event-series-overlay--arrow {
  margin: auto 0;
  background-image: url(../images/double-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 30px;
  height: 35px;
}

@media all and (min-width: 1220px) {
  .event-series-overlay .event-series-overlay--stickywrapper .event-series-overlay--arrow {
    width: 34px;
    height: 30px;
    background-image: url(../images/arrow-right.svg);
  }
}

.facets-layout-container {
  position: relative;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .facets-layout-container {
    width: 870px;
  }
}

.facets-layout-container #wrap-facets {
  width: 100%;
}

.facets-layout-container .block-facet-container {
  margin-left: 30px;
}

.facets-layout-container .block-facet--checkbox.open ~ #facet-active-list {
  padding: .75rem .5rem .2rem .5rem;
}

.facets-layout-container .block-facet--checkbox.open ~ #facet-active-list:not(empty) {
  border-top: none;
}

.facets-layout-container .block-facet--checkbox.open ~ #facet-active-list.empty {
  background-color: transparent;
  border: none;
}

.facets-layout-container #facet-filter-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  border-bottom: 0;
}

.facets-layout-container #facet-filter-list button {
  position: relative;
  white-space: nowrap;
  border: none;
  border-bottom: 6px solid transparent;
  padding: 8px 2px 0px 2px;
  margin-left: 30px;
  font-size: 15px;
  -webkit-flex-basis: calc(100% - 20px);
      -ms-flex-preferred-size: calc(100% - 20px);
          flex-basis: calc(100% - 20px);
  height: 44px;
  background-color: #fff;
}

.facets-layout-container #facet-filter-list button:focus:not(:focus-visible) {
  outline: none;
}

.facets-layout-container #facet-filter-list button:first-child {
  margin-left: 0;
}

.facets-layout-container #facet-filter-list button:disabled {
  height: 47px;
}

.facets-layout-container #facet-filter-list button:after {
  content: "▾";
  display: inline-block;
  margin: 0 0 0 4px;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform-origin: 50% 55%;
      -ms-transform-origin: 50% 55%;
          transform-origin: 50% 55%;
}

.facets-layout-container #facet-filter-list button[disabled=disabled]:hover {
  border-bottom: none;
  cursor: auto;
}

.facets-layout-container #facet-filter-list button[disabled=disabled]:after {
  display: none;
  margin: 0;
  padding: 0;
}

@media all and (min-width: 768px) {
  .facets-layout-container #facet-filter-list button {
    -webkit-flex-basis: calc(33% - 40px);
        -ms-flex-preferred-size: calc(33% - 40px);
            flex-basis: calc(33% - 40px);
  }
}

@media all and (min-width: 827px) {
  .facets-layout-container #facet-filter-list button {
    -webkit-flex-basis: inherit;
        -ms-flex-preferred-size: inherit;
            flex-basis: inherit;
  }
}

.facets-layout-container #facet-filter-list button:hover {
  cursor: pointer;
  border-bottom: 6px solid #91c800;
}

.facets-layout-container #facet-filter-list button.active {
  font-weight: 700;
  border-bottom: 6px solid #91c800;
}

.facets-layout-container #facet-filter-list button.active:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  position: relative;
}

.facets-layout-container #facet-filter-list button[data-target="block-webseitenzuordnungdestermins"] {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  display: none;
}

.facets-layout-container .block-facet--checkbox {
  margin: 0;
  padding: 0;
}

.facets-layout-container .block-facet--checkbox h2 {
  display: none;
}

.facets-layout-container .block-facet--checkbox .facets-widget-checkbox {
  padding-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 0;
  margin-top: 0;
}

.facets-layout-container .block-facet--checkbox .facets-widget-checkbox ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}

@media all and (min-width: 760px) {
  .facets-layout-container--flexwrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

#facet-active-list {
  margin-bottom: 3rem;
  margin-top: 15px;
  padding-top: 1rem;
}

#facet-active-list .remove-filters {
  position: absolute;
  width: 25px;
  left: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  padding-top: 1px;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  color: #5b7a01;
}

@media all and (min-width: 768px) {
  #facet-active-list .remove-filters {
    padding-top: 5px;
  }
}

#facet-active-list:before {
  content: 'Filter';
  color: #a9a9a9;
  font-size: 15px;
  padding-left: 25px;
  padding-right: 10px;
}

#facet-active-list.empty {
  display: none;
}

.facet-item {
  display: inline-block;
  font-size: 15px;
  list-style: none;
  margin-bottom: 10px;
  margin-right: 10px;
}

.facet-item input[type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.facet-item input[type=checkbox] + label {
  cursor: pointer;
  border-radius: 4px;
  padding: 8px 8px 6px 8px;
  background-color: #e0e0e0;
}

.facet-item input[type=checkbox] + label:hover {
  background-color: #b6d284;
}

.facet-item input[type=checkbox]:checked + label {
  background-color: #b6d284;
  color: #000;
  padding: 8px 4px 6px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.facet-item input[type=checkbox]:checked + label:after {
  padding: 0 6px;
  display: inline-block;
  content: "\00D7";
  color: #fff;
  font-size: 1.3rem;
}

.facet-item.site-filter {
  position: relative;
  margin-top: 8px;
  min-width: 24%;
}

.event-views .js-search-results-month {
  border-bottom: 1px solid #91c800;
  border-top: 1px solid #91c800;
  background: white;
}

.event-views .search-results-month {
  background: white;
  color: #91c800;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.0;
  margin-top: 0;
  padding: 1rem 0;
  width: 100%;
  padding-left: 138px;
  text-align: left;
}

@media all and (min-width: 0) and (max-width: 540px) {
  .event-views .search-results-month {
    padding-left: 0px;
    text-align: center;
  }
}

@media all and (min-width: 540px) and (max-width: 760px) {
  .event-views .search-results-month {
    font-size: 2.25rem;
    padding-top: 24px;
    padding-left: 96px;
  }
}

.event-views .search-results-month__sticky-wrapper {
  margin-top: 32px;
}

#frontpage-search #edit-wrap {
  font-size: 0;
  line-height: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#frontpage-search #edit-wrap .form-item, #frontpage-search #edit-wrap .form-actions {
  width: 80%;
  display: block;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
}

#frontpage-search select {
  background-color: #f1f1f1;
  border: 2px solid #e0e0e0;
  font-size: 1.25rem;
  line-height: 1.3;
  padding: .5rem;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="6" viewBox="0 0 9 6"><path fill="none" fill-rule="evenodd" stroke="#666" stroke-linecap="round" stroke-linejoin="round" d="M8.518.527l-4.03 4.03L.46.532"/></svg>');
  background-position: center right 1rem;
  background-repeat: no-repeat;
  color: #7c7c7c;
  font-family: inherit;
  background-color: transparent;
}

#frontpage-search input, #frontpage-search select {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: .5rem .5rem .2rem .5rem;
  border-radius: 4px;
  border: 1px solid #999;
  font-size: 1.25rem;
  line-height: 1.3;
  min-height: 46px;
  vertical-align: middle;
}

#frontpage-search input:focus:not(:focus-visible), #frontpage-search select:focus:not(:focus-visible) {
  outline: none;
}

#frontpage-search input:focus-visible, #frontpage-search select:focus-visible {
  border: 1px solid #91c700;
}

#frontpage-search #edit-timerange {
  height: 46px !important;
}

#frontpage-search #edit-keywords {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

#frontpage-search #edit-submit {
  width: 100%;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-top: 0;
  border-right: 1px solid #999;
}

#frontpage-search #edit-submit[disabled="disabled"] {
  cursor: default;
  font-weight: 100;
  background-color: #7c7c7c;
}

@media screen and (min-width: 480px) {
  #frontpage-search #edit-wrap #edit-submit {
    width: 30%;
  }
}

@media screen and (min-width: 720px) {
  #frontpage-search #edit-wrap {
    max-width: 870px;
  }
  #frontpage-search #edit-wrap .form-item, #frontpage-search #edit-wrap .form-actions {
    display: inline-block;
    width: 25%;
  }
  #frontpage-search input, #frontpage-search select {
    border-right: 1px solid transparent;
    border-radius: 0;
  }
  #frontpage-search #edit-wrap #edit-submit {
    width: 100%;
  }
}

.js #frontpage-search input.form-autocomplete {
  background-position: center right .8rem;
  max-width: none;
  background-color: #fff;
}

/**
    Advanced Search Form
 */
@media screen and (min-width: 1024px) {
  .views-exposed-form {
    text-align: center;
  }
}

.views-exposed-form .form-item {
  display: block;
  margin-bottom: 1rem;
}

.views-exposed-form .form-item-keys {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .views-exposed-form .form-item-keys {
    margin-left: auto;
    border-radius: 8px 0 0 8px;
  }
}

.views-exposed-form .form-actions {
  display: inline-block;
}

.views-exposed-form input {
  background-color: #f1f1f1;
  border: 2px solid #e0e0e0;
  font-size: 1.25rem;
  line-height: 1.3;
  padding: .5rem;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
}

.views-exposed-form input[type="submit"] {
  -webkit-appearance: none;
  display: inline-block;
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  min-height: 2.875rem;
  line-height: 2.575rem;
  padding: 0.25rem 1.5rem 0;
  text-decoration: none;
  font-size: 18px;
  background: #91c800;
  border: 0 solid #79a934;
  color: white;
  line-height: inherit;
  min-height: auto;
  font-weight: 100;
  -webkit-transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}

.views-exposed-form input[type="submit"]:hover {
  cursor: pointer;
}

.views-exposed-form input[type="submit"]:disabled {
  cursor: default;
  color: #444;
  font-weight: 100;
  background-color: #e0e0e0;
}

@media screen and (min-width: 1024px) {
  .views-exposed-form input {
    border: 2px solid #e0e0e0;
    border-right: none;
    box-sizing: border-box;
    width: auto;
  }
  .views-exposed-form input.form-submit {
    border: 1px solid #999;
    padding-top: 3px;
    width: 100%;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .views-exposed-form input.form-submit {
    border-radius: 0 8px 8px 0;
  }
}

#edit-actions {
  width: 10rem;
  margin-right: auto;
}

#edit-ph-cityfilter {
  background-color: #f1f1f1;
  border: 2px solid #e0e0e0;
  font-size: 1.25rem;
  line-height: 1.3;
  padding: .5rem;
  border-radius: 0;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="6" viewBox="0 0 9 6"><path fill="none" fill-rule="evenodd" stroke="#666" stroke-linecap="round" stroke-linejoin="round" d="M8.518.527l-4.03 4.03L.46.532"/></svg>');
  background-position: center right 1rem;
  background-repeat: no-repeat;
  color: #7c7c7c;
  font-family: inherit;
  border: 2px solid #e0e0e0;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #edit-ph-cityfilter {
    border: 2px solid transparent;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
    min-width: 140px;
    max-width: 200px;
  }
}

.views-exposed-form {
  margin-bottom: 0;
}

div[class*='block-facet--'] {
  padding: 10px 20px;
  margin-bottom: 20px;
}

#views-exposed-form-advanced-search-content-page-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#views-exposed-form-advanced-search-content-page-1 * {
  height: 46px !important;
}

@media all and (min-width: 768px) {
  #views-exposed-form-advanced-search-content-page-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 870px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#views-exposed-form-advanced-search-content-page-1 .form-item {
  border: none;
  width: 25%;
}

#views-exposed-form-advanced-search-content-page-1 .form-item input {
  border: 1px solid #999;
  outline: none;
  padding: .5rem;
  font-size: 18px;
  width: 100%;
}

@media all and (min-width: 768px) {
  #views-exposed-form-advanced-search-content-page-1 .form-item input {
    font-size: 1.35rem;
  }
}

#views-exposed-form-advanced-search-content-page-1 .form-item .form-autocomplete {
  background-position: center right .8rem;
  max-width: none;
}

#views-exposed-form-advanced-search-content-page-1 #edit-actions {
  width: 25%;
  margin: 0 auto 1rem auto;
}

@media screen and (min-width: 768px) {
  #views-exposed-form-advanced-search-content-page-1 .form-item-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 980px;
  }
  #views-exposed-form-advanced-search-content-page-1 .form-item-wrapper > div {
    margin-left: 0;
  }
  #views-exposed-form-advanced-search-content-page-1 .form-item {
    border: 1px solid #999;
    border-right: none;
    width: 25%;
  }
  #views-exposed-form-advanced-search-content-page-1 .form-item input {
    max-width: 168px;
    border: none;
    padding: .5rem;
  }
  #views-exposed-form-advanced-search-content-page-1 label {
    padding-left: .55rem;
    color: #999;
    font-size: 12px;
    display: none;
  }
  #views-exposed-form-advanced-search-content-page-1 #edit-actions {
    width: 25%;
    margin: 0 auto 0 0;
  }
}

@media all and (min-width: 1024px) {
  #views-exposed-form-advanced-search-content-page-1 .form-item input {
    max-width: initial;
  }
}

#edit-keys,
#edit-field-date-start,
#edit-field-date-end {
  width: 100%;
  text-align: left;
  border: none;
}

#edit-keys {
  width: 100%;
}

@media all and (min-width: 1024px) {
  #edit-keys {
    width: 360px;
  }
}

@media screen and (max-width: 768px) {
  #views-exposed-form-advanced-search-content-page-1 .form-item-field-date-start,
#views-exposed-form-advanced-search-content-page-1 .form-item-field-date-end {
    position: relative;
  }
  #views-exposed-form-advanced-search-content-page-1 .form-item-field-date-start label,
#views-exposed-form-advanced-search-content-page-1 .form-item-field-date-end label {
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 50px;
    color: #888888;
  }
  #views-exposed-form-advanced-search-content-page-1 .form-item-field-date-start #edit-field-date-start, #views-exposed-form-advanced-search-content-page-1 .form-item-field-date-start #edit-field-date-end,
#views-exposed-form-advanced-search-content-page-1 .form-item-field-date-end #edit-field-date-start,
#views-exposed-form-advanced-search-content-page-1 .form-item-field-date-end #edit-field-date-end {
    padding: .5rem .5rem .5rem 60px;
  }
}
/*# sourceMappingURL=calendar-overview.css.map */