/**
 * Breakpoint mixin. Example use:
 * @include bp($breakpoint-tablet) {
 *    // content;
 * };
 *
 * @author Kim-Christian Meyer <kim.meyer@palasthotel.de>
 */
/**
 * Hide elements on certain breakpoint.
 *
 * The idea is to have classes which can be attached in sitebuilding or in templates,
 * without the need to write additional css.
 *
 * Of course, this also provides a mixin, so it can be invoked at will.
 *
 * Future improvements: Instead of display none, maybe hide it visually.
 *
 * @author Arne Seemann <arne.seemann@palasthotel.de>
 */
/**
 * Breakpoint mixin. Example use:
 * @include bp($breakpoint-tablet) {
 *    // content;
 * };
 *
 * @author Kim-Christian Meyer <kim.meyer@palasthotel.de>
 */
@media all and (min-width: 0) and (max-width: 760px) {
  .hide-on-mobile {
    display: none;
  }
}

@media all and (min-width: 760px) {
  .only-on-mobile {
    display: none;
  }
}

/**
 * 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>
 */
:root {
  --event-inner-width: 1100px;
}

:root {
  --font-size-article-lead-mobile: 1.125rem;
  --font-size-article-lead-desktop: 1.375rem;
}

/**************
 * DIN Web *
 **************/
@font-face {
  font-family: 'dinweb';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/DINWebPro.eot");
  src: url("../fonts/DINWebPro.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWebPro.woff") format("woff"), url("../fonts/DINCompPro.ttf") format("truetype");
}

@font-face {
  font-family: 'dinweb';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/DINWebPro-Bold.eot");
  src: url("../fonts/DINWebPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWebPro-Bold.woff") format("woff"), url("../fonts/DINCompPro-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'dinweb';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/DINWebPro-Medium.eot");
  src: url("../fonts/DINWebPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWebPro-Medium.woff") format("woff"), url("../fonts/DINCompPro-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'dinweb';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/DINWebPro-Ita.eot");
  src: url("../fonts/DINWebPro-Ita.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWebPro-Ita.woff") format("woff"), url("../fonts/DINCompPro-Ita.ttf") format("truetype");
}

@font-face {
  font-family: 'dinweb';
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/DINWebPro-BoldIta.eot");
  src: url("../fonts/DINWebPro-BoldIta.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWebPro-BoldIta.woff") format("woff"), url("../fonts/DINCompPro-BoldIta.ttf") format("truetype");
}

@font-face {
  font-family: 'dinweb';
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/DINWebPro-MediumIta.eot");
  src: url("../fonts/DINWebPro-MediumIta.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWebPro-MediumIta.woff") format("woff"), url("../fonts/DINCompPro-MediumIta.ttf") format("truetype");
}

:root {
  --boell-green: #91c800;
  --boell-green-darkened: #79a934;
}

.layout-container {
  margin: 0;
}

.clearfix {
  clear: both;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-size: 1.0625rem;
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #444;
  background: #e0e0e0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.1875rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2, h3 {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.875rem;
}

h4 {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 22px;
}

a {
  color: #444;
}

a[target="_blank"]::after {
  content: '';
  display: inline-block;
  -webkit-margin-start: 5px;
     -moz-margin-start: 5px;
          margin-inline-start: 5px;
  -webkit-margin-end: 3px;
     -moz-margin-end: 3px;
          margin-inline-end: 3px;
  height: 0.8rem;
  width: 0.8rem;
  background: transparent url("../images/arrow-up-right-from-square-regular.svg") top left no-repeat;
  opacity: 0.8;
}

/* Do not display icon if link itself is an icon or other svg-image */
a[target="_blank"]:has(> svg)::after {
  display: none;
}

p {
  margin-top: 0;
  margin-bottom: 22px;
}

address {
  font-style: normal;
}

input,
button {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
}

input[type="submit"],
.views-exposed-form input[type="submit"],
.button {
  -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;
}

button,
input[type="button"],
input[type="reset"],
input[type="search"],
input[type="submit"],
input[type="text"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

.button-transparent {
  -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;
  border: 2px solid #e0e0e0;
  background: white;
  color: #333;
  -webkit-transition: color .15s ease-in-out, background .15s ease-in-out;
  transition: color .15s ease-in-out, background .15s ease-in-out;
}

.button-transparent svg {
  float: right;
  margin-top: .375rem;
  -webkit-margin-start: 1rem;
     -moz-margin-start: 1rem;
          margin-inline-start: 1rem;
}

.button-transparent svg path {
  fill: #7c7c7c;
}

.button-transparent:hover {
  cursor: pointer;
  color: white;
  background: #91c800;
}

.button-transparent:hover svg path {
  fill: white;
  -webkit-transition: fill .15s ease-in-out;
  transition: fill .15s ease-in-out;
}

.hide-language-switcher .header--languages {
  display: none;
}

.page-title {
  text-align: center;
}

/* hide the no-results info if there are results */
div.views-element-container:not(.no-results) div.no-results-info {
  display: none;
}

div.views-element-container.no-results {
  /* if no results: hide second month picker. */
  /* if no results, show no results message */
}

div.views-element-container.no-results > div.contextual-region > div.monthpicker {
  display: none;
}

div.views-element-container.no-results div.no-results-info {
  display: block;
  margin: 40px 20px;
  font-size: 20px;
  font-weight: 700;
}

@media all and (min-width: 760px) {
  div.views-element-container.no-results div.no-results-info {
    max-width: 540px;
    -webkit-margin-start: auto;
       -moz-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: auto;
       -moz-margin-end: auto;
            margin-inline-end: auto;
  }
}

#frontpage-search #edit-wrap {
  font-size: 0;
  line-height: 0;
  width: 100%;
  -webkit-margin-start: auto;
     -moz-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
     -moz-margin-end: auto;
          margin-inline-end: auto;
  text-align: center;
}

#frontpage-search #edit-wrap .form-item, #frontpage-search #edit-wrap .form-actions {
  width: 80%;
  display: block;
  margin-bottom: 22px;
  -webkit-margin-start: auto;
     -moz-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
     -moz-margin-end: auto;
          margin-inline-end: 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 {
  -webkit-margin-start: 0;
     -moz-margin-start: 0;
          margin-inline-start: 0;
}

@media screen and (min-width: 768px) {
  .views-exposed-form .form-item-keys {
    -webkit-margin-start: auto;
       -moz-margin-start: auto;
            margin-inline-start: 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;
  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;
  -webkit-margin-end: auto;
     -moz-margin-end: auto;
          margin-inline-end: 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%;
  -webkit-margin-start: auto;
     -moz-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
     -moz-margin-end: auto;
          margin-inline-end: 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 {
    -webkit-margin-start: 0;
       -moz-margin-start: 0;
            margin-inline-start: 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 {
    -webkit-padding-start: .55rem;
       -moz-padding-start: .55rem;
            padding-inline-start: .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: start;
  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;
  }
}

.openid-connect-login-form {
  margin-block: 7rem 2rem;
}

.local-tasks {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

.local-tasks > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.local-tasks li {
  display: inline;
}

.local-tasks li a {
  text-decoration: none;
  border: 1px solid #ccc;
  border-bottom: 0;
  background-color: #ddd;
  color: #333;
  padding: 0.33em 1em;
}

.local-tasks li a:hover {
  background-color: #91c800;
  color: #ffffff;
}

.header--wrapper {
  padding: 20px 0;
}

@media all and (min-width: 0) and (max-width: 760px) {
  .header--wrapper {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 760px) {
  .header--wrapper {
    padding-top: 30px;
  }
}

.header--content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 1220px) {
  .header--content {
    padding: 0;
  }
}

.header--logo {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-flex-basis: 80%;
      -ms-flex-preferred-size: 80%;
          flex-basis: 80%;
}

.header--logo img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1124px) {
  .header--logo {
    -webkit-margin-start: -62px;
       -moz-margin-start: -62px;
            margin-inline-start: -62px;
  }
}

.header--languages {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
}

.header--languages .links {
  list-style: none;
  padding: 0;
}

.header--languages li.is-active, .header--languages li.hamburger[aria-expanded='true'] {
  display: none;
}

.header--languages .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.dropbutton-wrapper {
  position: relative;
}

.footer--container {
  background: #91c800;
  color: #333;
  font-size: 13px;
}

.boe-footer-wrapper {
  padding: 10px;
  overflow: auto;
}

.boe-footer-copyright {
  color: #333;
  font-size: 13px;
  float: right;
}

nav#block-boellcalendar-footer, nav#block-footeren {
  float: left;
  line-height: 16px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 400;
}

nav#block-boellcalendar-footer ul, nav#block-footeren ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav#block-boellcalendar-footer ul li, nav#block-footeren ul li {
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
     -moz-margin-start: 0;
          margin-inline-start: 0;
}

nav#block-boellcalendar-footer a, nav#block-footeren a {
  text-decoration: none;
}

nav#block-boellcalendar-footer a:hover, nav#block-footeren a:hover {
  color: white;
}

nav#block-boellcalendar-footer a.active, nav#block-footeren a.active {
  text-decoration: underline;
}

@media screen and (min-width: 760px) {
  .boe-footer-wrapper {
    padding: 36px 10px 33px 10px;
    max-width: 980px;
    margin: 0 auto;
  }
  .boe-footer-wrapper {
    max-width: 980px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .boe-footer-top-wrapper,
.boe-footer-wrapper {
    width: 980px;
    margin: 0 auto;
  }
}

.page--wrapper {
  width: 100%;
  min-height: 980px;
  padding-top: 0;
  margin: 0;
  text-align: start;
  display: block;
  background: white;
}

@media screen and (min-width: 1220px) {
  .page--wrapper {
    margin-inline: auto;
    padding: 0;
    width: 1220px;
  }
}

.page--content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
  display: block;
}

@media screen and (min-width: 1220px) {
  .page--content {
    padding: 0;
  }
}

.page-node-type-event .page--content {
  max-width: var(--event-inner-width);
}

.content--container {
  padding-bottom: 44px;
}

#page-inner {
  background-color: white;
}

.pager__navigation {
  width: 100%;
  text-align: center;
}

.pager__navigation a {
  text-decoration: none;
}

.pager__navigation ul {
  list-style-type: none;
}

.pager__navigation li {
  display: inline;
}

.pager__go-back {
  display: inline-block;
  background-image: url(../images/small-arrow-left.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1em;
  -webkit-margin-end: 2em;
     -moz-margin-end: 2em;
          margin-inline-end: 2em;
  margin-bottom: -0.1em;
  width: 1em;
  height: 1em;
  cursor: pointer;
}

.pager__go-first {
  display: inline-block;
  background-image: url(../images/small-arrow-left-end.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1em;
  -webkit-margin-end: .75em;
     -moz-margin-end: .75em;
          margin-inline-end: .75em;
  margin-bottom: -0.1em;
  width: 1em;
  height: 1em;
  cursor: pointer;
}

.pager__go-forward {
  display: inline-block;
  background-image: url(../images/small-arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1em;
  -webkit-margin-start: 2em;
     -moz-margin-start: 2em;
          margin-inline-start: 2em;
  margin-bottom: -0.1em;
  width: 1em;
  height: 1em;
  cursor: pointer;
}

.pager__go-last {
  display: inline-block;
  background-image: url(../images/small-arrow-right-end.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1em;
  -webkit-margin-start: .75em;
     -moz-margin-start: .75em;
          margin-inline-start: .75em;
  margin-bottom: -0.1em;
  width: 1em;
  height: 1em;
  cursor: pointer;
}

.views-view-grid .views-col {
  -webkit-padding-start: 5px;
     -moz-padding-start: 5px;
          padding-inline-start: 5px;
  -webkit-padding-end: 5px;
     -moz-padding-end: 5px;
          padding-inline-end: 5px;
  font-size: 90%;
}

.share-buttons {
  list-style: none;
  margin: 0 0 33px;
  padding: 0;
  /*
  .event--footer & {
    margin-top: $baseline * 2;
  }
  */
}

@media all and (min-width: 760px) {
  .share-buttons {
    max-width: 1100px;
    margin-top: 50px;
  }
}

.share-button {
  display: inline-block;
  margin: 0 0 0 4px;
}

.share-button:first-child {
  -webkit-margin-start: 0;
     -moz-margin-start: 0;
          margin-inline-start: 0;
}

.share-button__link {
  border-radius: 20px;
  color: white;
  display: block;
  height: 40px;
  text-align: center;
  text-decoration: none;
}

.share-button__link:hover {
  color: white;
  opacity: 0.8;
}

.share-button--twitter .share-button__link {
  background-color: #55acee;
}

.share-button--facebook .share-button__link {
  background-color: #3b5998;
}

.share-button--email .share-button__link, .share-button--print .share-button__link {
  background-color: #7c7c7c;
}

.share-button--whatsapp .share-button__link {
  background-color: #4dc247;
}

.share-button__icon {
  width: 40px;
  display: inline-block;
}

.share-button__icon > svg {
  height: 40px;
}

.share-button__text {
  display: none;
}

@media all and (min-width: 760px) {
  .share-button--whatsapp {
    display: none;
  }
}

.share-button__share-them-text {
  font-size: 0.812rem;
  margin-bottom: 0.8125rem;
}

.language-link {
  text-decoration: underline;
}

.language-link:hover {
  text-decoration: underline;
}

.language-link.active-language {
  text-decoration: none;
}

.language-link--current-lang,
.language-link--untranslated {
  text-decoration: none;
}

.language-link--current-lang:hover,
.language-link--untranslated:hover {
  text-decoration: none;
}

.dropbutton-action > .language-link--current-lang {
  cursor: pointer;
}

.language-link--untranslated {
  color: #999;
}

.monthpicker {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
  width: 100%;
}

.monthpicker__button {
  background: none;
  border: none;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
  text-decoration: none;
  margin-bottom: 0.125rem;
}

.monthpicker__button:hover {
  border-bottom: 1px solid #666;
  cursor: pointer;
}

.monthpicker__button-title {
  display: none;
}

@media screen and (min-width: 760px) {
  .monthpicker__button-title {
    display: inline;
  }
}

.monthpicker__button--prev:before,
.monthpicker__button--next:after {
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 9px;
  margin-top: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 12px;
}

.monthpicker__button--prev:before {
  background-image: url(../images/small-arrow-left.svg);
  float: left;
  -webkit-margin-end: 6px;
     -moz-margin-end: 6px;
          margin-inline-end: 6px;
}

a.monthpicker__button--prev:before {
  margin-top: 10px;
}

a.monthpicker__button--next:after {
  margin-top: 10px;
}

.monthpicker__button--next:after {
  background-image: url(../images/small-arrow-right.svg);
  float: right;
  -webkit-margin-start: 6px;
     -moz-margin-start: 6px;
          margin-inline-start: 6px;
}

#edit-monthpicker-current, .edit-monthpicker-current {
  color: #7c7c7c;
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0 1.5rem;
  text-align: center;
}

@media screen and (min-width: 760px) {
  #edit-monthpicker-current, .edit-monthpicker-current {
    font-size: 1.25rem;
    font-weight: 700;
  }
}

/**
 * @file
 * Styles for system messages.
 */
.messages {
  background: no-repeat 10px 17px;
  /* LTR */
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  /* LTR */
  border-radius: 2px;
  margin-bottom: 30px;
  padding-block: 15px;
  padding-inline: 35px 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: start;
}

[dir="rtl"] .messages {
  border-width: 1px 0 1px 1px;
  background-position: right 10px top 17px;
}

.messages + .messages {
  margin-top: 1.538em;
}

.messages__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.messages__item + .messages__item {
  margin-top: 0.769em;
}

/* See .color-success in Seven's colors.css */
.messages--status {
  color: #325e1c;
  background-color: #f3faef;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  /* LTR */
  background-image: url(../../../../misc/icons/73b355/check.svg);
  box-shadow: -8px 0 0 #77b259;
  /* LTR */
}

[dir="rtl"] .messages--status {
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  box-shadow: 8px 0 0 #77b259;
}

/* See .color-warning in Seven's colors.css */
.messages--warning {
  background-color: #fdf8ed;
  background-image: url(../../../../misc/icons/e29700/warning.svg);
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  /* LTR */
  color: #734c00;
  box-shadow: -8px 0 0 #e09600;
  /* LTR */
}

[dir="rtl"] .messages--warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  box-shadow: 8px 0 0 #e09600;
}

/* See .color-error in Seven's colors.css */
.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  background-image: url(../../../../misc/icons/e32700/error.svg);
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  /* LTR */
  box-shadow: -8px 0 0 #e62600;
  /* LTR */
}

[dir="rtl"] .messages--error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  box-shadow: 8px 0 0 #e62600;
}

.messages--error p.error {
  color: #a51b00;
}

.event-series-overlay {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  display: block;
  background: #91c800;
  opacity: 0.95;
  padding: 0 10px;
  -webkit-margin-start: calc(50% - 50vw);
     -moz-margin-start: calc(50% - 50vw);
          margin-inline-start: calc(50% - 50vw);
  -webkit-margin-end: calc(50% - 50vw);
     -moz-margin-end: calc(50% - 50vw);
          margin-inline-end: 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);
  }
}

.sessions .session-list {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  list-style: none;
  -webkit-padding-start: 0;
     -moz-padding-start: 0;
          padding-inline-start: 0;
}

.sessions h4 {
  margin-bottom: 6px;
}

.sessions .description p {
  font-family: inherit;
}

.sessions li {
  border-bottom: 1px solid #D9D9D9;
}

/* Additional CSS for other components when Slide-in Menu is enabled */
body.no-scroll {
  overflow: hidden;
}

.boell-slide-in-menu .site-header {
  border-bottom: 1px solid #444;
  margin-bottom: 44px;
}

.boell-slide-in-menu .js-search-results-month {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.boell-slide-in-menu .js-search-results-month .search-results-month {
  text-align: start;
}

#block-slideinmenuhamburger.contextual-region .contextual {
  display: none;
}

/*Hamburger styling*/
.block-boell-slide-in-menu__button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #444;
}

.block-boell-slide-in-menu__button :focus:not(:focus-visible) {
  outline: none;
}

.block-boell-slide-in-menu__button svg {
  width: 25px;
}

.block-boell-slide-in-menu__button.status-indicator:before {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  width: 10px;
  left: -15px;
  top: 13px;
  border-radius: 50%;
  margin: 10px;
  vertical-align: middle;
  background: #91c800;
  box-shadow: 0 0 0 0 #91c800;
  -webkit-animation: pulse-red 2s infinite;
          animation: pulse-red 2s infinite;
}

@-webkit-keyframes pulse-red {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 200, 0, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    box-shadow: 0 0 0 10px rgba(45, 200, 0, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 200, 0, 0);
  }
}

@keyframes pulse-red {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 200, 0, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    box-shadow: 0 0 0 10px rgba(45, 200, 0, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 200, 0, 0);
  }
}

.slide-in-menu__controls {
  position: relative;
  top: 3px;
  cursor: pointer;
}

.slide-in-menu__controls .filter-all {
  position: relative;
  top: -5px;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  -webkit-margin-end: 10px;
     -moz-margin-end: 10px;
          margin-inline-end: 10px;
}

.search-results-month__sticky-wrapper {
  position: relative;
}

.block-slide-in-menu-block-hamburger {
  position: absolute;
  margin: 0 !important;
  z-index: 10;
}

html[dir="ltr"] .block-slide-in-menu-block-hamburger {
  right: 0;
}

html[dir="rtl"] .block-slide-in-menu-block-hamburger {
  left: 0;
}

@media all and (min-width: 768px) {
  .block-slide-in-menu-block-hamburger {
    top: -10px;
  }
}

/* slide in and positioning styling */
/* STATE = NOT ACTIVE */
.region-slide-in-menu .boell-slideinmenu--header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 35px;
  height: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.region-slide-in-menu .boell-slideinmenu--header .boell-slide-in-menu--header-blockwrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.region-slide-in-menu .boell-slideinmenu--header .boell-slide-in-menu--header-blockwrap > * {
  -webkit-margin-end: 25px;
     -moz-margin-end: 25px;
          margin-inline-end: 25px;
}

.region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__open {
  top: 17px;
}

.region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__open .site-header-search__open-icon {
  top: -10px;
}

.region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__open .site-header-search__open-icon:after {
  font-size: 40px;
}

.region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__form {
  position: relative;
  top: 6px;
  width: 100%;
}

@media all and (min-width: 768px) {
  .region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__form {
    top: -4px;
    width: calc(100% - 40px);
  }
}

.region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__close {
  width: 35px;
  top: 15px;
}

@media all and (min-width: 768px) {
  .region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__close {
    top: 4px;
  }
}

.region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__close .site-header-search__close-inner, .region-slide-in-menu .boell-slideinmenu--header .views-exposed-form.site-header-search .site-header-search__close .site-header-search__close-inner::after {
  width: 35px;
}

.region-slide-in-menu .boell-slideinmenu--header .slide-in-menu__controls {
  top: 15px;
}

.region-slide-in-menu .boell-slideinmenu--header .slide-in-menu__controls .block-boell-slide-in-menu__button .hamburger-box .hamburger-inner {
  width: 25px;
  height: 1px;
  background-color: #666;
}

.region-slide-in-menu .boell-slideinmenu--header .slide-in-menu__controls .block-boell-slide-in-menu__button .hamburger-box .hamburger-inner:before, .region-slide-in-menu .boell-slideinmenu--header .slide-in-menu__controls .block-boell-slide-in-menu__button .hamburger-box .hamburger-inner:after {
  background-color: inherit;
  height: inherit;
  width: inherit;
}

.region-slide-in-menu .boell-slideinmenu--header .filter-title {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.875rem;
  width: 100%;
  text-align: center;
}

.region-slide-in-menu .boell-slideinmenu {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  position: fixed;
  top: 0;
  z-index: -1;
  background: white;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

html[dir="ltr"] .region-slide-in-menu .boell-slideinmenu {
  right: -100%;
}

html[dir="rtl"] .region-slide-in-menu .boell-slideinmenu {
  left: -100%;
}

.region-slide-in-menu .boell-slideinmenu *, .region-slide-in-menu .boell-slideinmenu a {
  color: #444;
}

@media all and (min-width: 1024px) {
  .region-slide-in-menu .boell-slideinmenu {
    width: 30%;
    min-width: 500px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  html[dir="ltr"] .region-slide-in-menu .boell-slideinmenu {
    right: -100%;
  }
  html[dir="rtl"] .region-slide-in-menu .boell-slideinmenu {
    left: -100%;
  }
}

.region-slide-in-menu .slide-in-menu__site-header-search {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}

.region-slide-in-menu .slide-in-menu__site-header-search:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.region-slide-in-menu .slide-in-menu__site-header-search .site-header-search__open {
  position: static;
}

.region-slide-in-menu .slide-in-menu__site-header-search a {
  text-decoration: none;
}

.region-slide-in-menu .slide-in-menu__site-header-search .site-header-search__open-icon {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin: 0;
  margin-top: -2px;
}

.region-slide-in-menu .slide-in-menu__site-header-search .site-header-search__open-icon:after {
  font-size: 40px;
}

.region-slide-in-menu .region-slide-in-menu-body {
  overflow: auto;
}

.region-slide-in-menu .boell-slideinmenu--body {
  /* menu styling*/
}

.region-slide-in-menu .boell-slideinmenu--body .views-exposed-form #views-exposed-form-calendar-frontpage-slide-in-filter-page-1, .region-slide-in-menu .boell-slideinmenu--body .views-exposed-form .edit-keys {
  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;
  padding: 25px 35px;
  border-top: 1px solid #666;
}

.region-slide-in-menu .boell-slideinmenu--body .views-exposed-form #views-exposed-form-calendar-frontpage-slide-in-filter-page-1 .js-form-type-textfield, .region-slide-in-menu .boell-slideinmenu--body .views-exposed-form .edit-keys .js-form-type-textfield {
  margin: 0;
  margin-bottom: 10px;
}

.region-slide-in-menu .boell-slideinmenu--body .views-exposed-form #views-exposed-form-calendar-frontpage-slide-in-filter-page-1 .js-form-type-textfield .form-text, .region-slide-in-menu .boell-slideinmenu--body .views-exposed-form .edit-keys .js-form-type-textfield .form-text {
  border: 1px solid #666;
  text-align: center;
  line-height: 1;
  width: 100%;
}

.region-slide-in-menu .boell-slideinmenu--body .views-exposed-form #views-exposed-form-calendar-frontpage-slide-in-filter-page-1 .js-form-type-textfield .form-text:focus:not(:focus-visible), .region-slide-in-menu .boell-slideinmenu--body .views-exposed-form .edit-keys .js-form-type-textfield .form-text:focus:not(:focus-visible) {
  outline: none;
}

.region-slide-in-menu .boell-slideinmenu--body .views-exposed-form #views-exposed-form-calendar-frontpage-slide-in-filter-page-1 .form-actions.js-form-wrapper, .region-slide-in-menu .boell-slideinmenu--body .views-exposed-form .edit-keys .form-actions.js-form-wrapper {
  width: 100%;
  border: 1px solid #666;
}

.region-slide-in-menu .boell-slideinmenu--body .views-exposed-form #views-exposed-form-calendar-frontpage-slide-in-filter-page-1 .form-actions.js-form-wrapper .button.form-submit, .region-slide-in-menu .boell-slideinmenu--body .views-exposed-form .edit-keys .form-actions.js-form-wrapper .button.form-submit {
  background: #666;
  border-color: #666;
  border-radius: 0;
  font-size: 19px;
  line-height: 1.75;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu {
  width: 100%;
  z-index: 99999;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu .menu {
  margin: 0;
  list-style: none;
  padding: 0;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu.menu--main ul {
  font-weight: 800;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu .menu-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 70px;
  border-top: 1px solid #91c800;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu .menu-item:hover {
  background: #91c800;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu .menu-item:hover a {
  color: white !important;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu .menu-item:last-child {
  border-bottom: 1px solid #91c800;
}

.region-slide-in-menu .boell-slideinmenu--body .block-menu .menu-item a {
  height: 100%;
  line-height: 1.2;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
  margin: 0 35px;
  width: 100%;
  display: block;
}

@media all and (min-width: 1024px) {
  .region-slide-in-menu .boell-slideinmenu--body .block-menu .menu-item a {
    line-height: 70px;
  }
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox {
  padding: 0;
  margin: 0;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox:last-child {
  border-bottom: 1px solid #666;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox h2 {
  margin: 0;
  font-weight: 200;
  padding: 25px 35px;
  background: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #666;
  cursor: pointer;
  border-top: 1px solid #666;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0;
  position: relative;
  top: 0;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-block;
  float: right;
  width: 20px;
  height: 20px;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  background-color: #666;
  -webkit-mask: url(../images/chevron-down-light.svg) no-repeat 50% 50%;
          mask: url(../images/chevron-down-light.svg) no-repeat 50% 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-title {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.875rem;
  width: 100%;
  margin: 0;
  padding: 15px 35px;
  font-size: 20px;
  font-weight: 200;
  background: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #666;
  cursor: pointer;
  border-top: 1px solid #666;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-title.checked:after {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  -webkit-margin-start: 10px;
     -moz-margin-start: 10px;
          margin-inline-start: 10px;
  background-color: #91c800;
  -webkit-mask-image: url(../images/check-circle-light.svg);
          mask-image: url(../images/check-circle-light.svg);
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .item-list__checkbox {
  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;
  margin: 0 35px;
  padding: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item.facet-item--expanded > label {
  margin-bottom: 5px;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item input[type=checkbox] + label {
  width: 100%;
  cursor: pointer;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item input[type=checkbox] + label:before {
  padding: 0;
  display: inline-block;
  content: "";
  color: #000;
  font-size: 50px;
  width: 15px;
  height: 15px;
  border: 1px solid;
  line-height: 0.55;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item input[type=checkbox]:checked + label:after {
  display: none;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item ul {
  -webkit-padding-start: 15px;
     -moz-padding-start: 15px;
          padding-inline-start: 15px;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox .facets-widget-checkbox .facet-item .facet-item__value {
  -webkit-margin-start: 5px;
     -moz-margin-start: 5px;
          margin-inline-start: 5px;
  font-size: 15px;
  position: relative;
  top: -2px;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show h2 {
  background: #666;
  color: white;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox:after {
  background-color: white;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: 25px 35px;
  margin: 0;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-title {
  background: #666;
  color: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-title:after {
  background-color: white;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-item {
  position: relative;
  opacity: 1;
  z-index: 1;
  margin-bottom: 5px;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-item.checked:before, .region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-item.checked:after {
  content: "";
  display: inline-block;
  background: #666;
  width: 21px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: -2px;
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-item.checked:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .facet-item.checked:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.region-slide-in-menu .boell-slideinmenu--body .block-facet--checkbox.show .facets-widget-checkbox .item-list__checkbox {
  padding: 0;
  margin: 25px 35px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.region-slide-in-menu .boell-slideinmenu--body .facet-empty, .region-slide-in-menu .boell-slideinmenu--body .form-item-field-date-start, .region-slide-in-menu .boell-slideinmenu--body .form-item-field-date-end {
  display: none;
}

.region-slide-in-menu .boell-slideinmenu--footer {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.region-slide-in-menu .boell-slideinmenu--footer * {
  font-family: "dinweb", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  list-style: none;
  line-height: 1;
}

.region-slide-in-menu .boell-slideinmenu--footer .block {
  width: 100%;
  margin-top: 20px;
  -webkit-margin-start: 35px;
     -moz-margin-start: 35px;
          margin-inline-start: 35px;
}

.region-slide-in-menu .boell-slideinmenu--footer .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.region-slide-in-menu .boell-slideinmenu--footer .menu .menu-item {
  -webkit-margin-end: 35px;
     -moz-margin-end: 35px;
          margin-inline-end: 35px;
  margin-top: 20px;
}

.region-slide-in-menu .boell-slideinmenu--footer .menu .menu-item:first-child {
  margin-top: 0;
}

.region-slide-in-menu .boell-slideinmenu--footer .menu--social-links .menu {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.region-slide-in-menu .boell-slideinmenu--footer .menu--social-links .menu-item {
  position: relative;
  top: 2px;
  margin: 0;
}

.region-slide-in-menu .boell-slideinmenu--footer .block-menu.navigation:after {
  content: "";
  display: block;
  width: calc(100% - 35px);
  border-bottom: 1px solid #444;
  margin-top: 25px;
  margin-bottom: 5px;
}

.region-slide-in-menu .boell-slideinmenu--footer .block-menu.navigation:last-child:after {
  border: none;
}

.region-slide-in-menu .block-boell-slide-in-menu__button.hamburger {
  padding: 0;
}

.region-slide-in-menu .block-boell-slide-in-menu__button.hamburger .hamburger-inner, .region-slide-in-menu .block-boell-slide-in-menu__button.hamburger .hamburger-inner:before, .region-slide-in-menu .block-boell-slide-in-menu__button.hamburger .hamburger-inner::after {
  background-color: #91c800;
  width: 40px;
}

.region-slide-in-menu #block-accessiblelanguage {
  display: initial;
}

.region-slide-in-menu .block-dropdown-language, .region-slide-in-menu #block-dropdownlanguage {
  position: initial;
  padding-top: 0;
  width: 100%;
}

.region-slide-in-menu .block-dropdown-language ul, .region-slide-in-menu #block-dropdownlanguage ul {
  font-size: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.region-slide-in-menu .block-dropdown-language ul > li:first-child:before, .region-slide-in-menu #block-dropdownlanguage ul > li:first-child:before {
  content: "";
  background-image: url(../images/globe.svg);
  width: 17px;
  height: 17px;
  display: inline-block;
  -webkit-margin-end: 5px;
     -moz-margin-end: 5px;
          margin-inline-end: 5px;
  background-size: cover;
  position: relative;
  top: 2px;
}

.region-slide-in-menu .block-dropdown-language li, .region-slide-in-menu #block-dropdownlanguage li {
  background: transparent;
}

.region-slide-in-menu .block-dropdown-language .language-link, .region-slide-in-menu #block-dropdownlanguage .language-link {
  font-size: inherit;
  font-weight: 500;
  display: inline-block;
}

.region-slide-in-menu .block-dropdown-language .dropbutton-wrapper, .region-slide-in-menu .block-dropdown-language .dropbutton-widget, .region-slide-in-menu #block-dropdownlanguage .dropbutton-wrapper, .region-slide-in-menu #block-dropdownlanguage .dropbutton-widget {
  display: inline-block;
}

.region-slide-in-menu #block-slideinmenuallefilterloschen {
  width: 100%;
  cursor: pointer;
}

.region-slide-in-menu #block-slideinmenuallefilterloschen .block-delete-all-filter {
  background: #e0e0e0;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* STATE = ACTIVE */
.slide-in-menu-active .region-slide-in-menu .menu--slide-in-menu {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 9999;
  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;
}

html[dir="ltr"] .slide-in-menu-active .region-slide-in-menu .menu--slide-in-menu {
  right: 0;
}

html[dir="rtl"] .slide-in-menu-active .region-slide-in-menu .menu--slide-in-menu {
  left: 0;
}

.slide-in-menu-active .region-slide-in-menu .after-slide-in-menu {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.search-results-month__sticky-wrapper .js-search-results-month .date-picker--wrapper {
  cursor: pointer;
  padding: 1rem 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-margin-start: 10px;
     -moz-margin-start: 10px;
          margin-inline-start: 10px;
}

@media all and (min-width: 768px) {
  .search-results-month__sticky-wrapper .js-search-results-month .date-picker--wrapper {
    -webkit-margin-start: 138px;
       -moz-margin-start: 138px;
            margin-inline-start: 138px;
  }
}

.search-results-month__sticky-wrapper .js-search-results-month .date-picker--wrapper .date-picker-label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.search-results-month__sticky-wrapper .js-search-results-month .date-picker--wrapper .date-picker-label:after {
  content: "";
  display: block;
  width: 20px;
  height: auto;
  -webkit-margin-start: 10px;
     -moz-margin-start: 10px;
          margin-inline-start: 10px;
  background-color: #91c800;
  -webkit-mask-image: url(../images/calendar-alt-light.svg);
          mask-image: url(../images/calendar-alt-light.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.search-results-month__sticky-wrapper .js-search-results-month .date-picker {
  position: absolute;
  cursor: pointer;
  left: 0;
  opacity: 0;
  max-width: 50vw;
  width: 135px;
  /* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
}

@media all and (min-width: 768px) {
  .search-results-month__sticky-wrapper .js-search-results-month .date-picker {
    left: 125px;
  }
}

.search-results-month__sticky-wrapper .js-search-results-month .date-picker::-webkit-calendar-picker-indicator {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: -24px;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: black;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Hamburger Type: Squeeze
 */
.hamburger--squeeze .hamburger-inner, .hamburger[aria-expanded='true'] .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before, .hamburger[aria-expanded='true'] .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after, .hamburger[aria-expanded='true'] .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner, .hamburger[aria-expanded='true'] .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before, .hamburger[aria-expanded='true'] .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after, .hamburger[aria-expanded='true'] .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger:focus:not(:focus-visible) {
  outline: none;
}

.hamburger-box {
  -webkit-margin-end: 14px;
     -moz-margin-end: 14px;
          margin-inline-end: 14px;
}

.hamburger-title {
  font-size: 22px;
  display: none;
}

.no-js .hamburger-title {
  display: inline;
}

.no-js .hamburger-title:after {
  content: ":";
}

.hamburger-title.hamburger-title--visible {
  display: inline;
}

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

.hamburger-close {
  display: none;
  vertical-align: top;
}

#block-boellcalendar-content fieldset,
.theme-boellcalendar fieldset {
  border: none;
  margin: 16px 0;
  padding: 0;
}

#block-boellcalendar-content legend,
.theme-boellcalendar legend {
  -webkit-padding-start: 0;
     -moz-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 0;
     -moz-padding-end: 0;
          padding-inline-end: 0;
}

#block-boellcalendar-content .fieldset-legend,
.theme-boellcalendar .fieldset-legend {
  display: block;
  font-weight: 700;
}

#block-boellcalendar-content label,
.theme-boellcalendar label {
  color: #666;
  display: block;
  font-size: 1.125rem;
}

#block-boellcalendar-content .civi-form,
.theme-boellcalendar .civi-form {
  margin-top: 48px;
}

#block-boellcalendar-content .civi-form > legend > .fieldset-legend,
.theme-boellcalendar .civi-form > legend > .fieldset-legend {
  font-size: 26px;
}

#block-boellcalendar-content select,
.theme-boellcalendar 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;
  -webkit-padding-end: 2em;
     -moz-padding-end: 2em;
          padding-inline-end: 2em;
}

#block-boellcalendar-content .form-item,
.theme-boellcalendar .form-item {
  margin-bottom: 24px;
}

#block-boellcalendar-content .form-item.js-form-type-radio, #block-boellcalendar-content .form-item.js-form-type-checkbox,
.theme-boellcalendar .form-item.js-form-type-radio,
.theme-boellcalendar .form-item.js-form-type-checkbox {
  margin-top: 8px;
  margin-bottom: 8px;
}

#block-boellcalendar-content input,
.theme-boellcalendar input {
  background-color: #f1f1f1;
  border: 2px solid #e0e0e0;
  font-size: 1.25rem;
  line-height: 1.3;
  padding: .5rem;
  border-radius: 0;
  width: 100%;
}

@media screen and (min-width: 520px) {
  #block-boellcalendar-content input,
.theme-boellcalendar input {
    width: auto;
  }
}

#block-boellcalendar-content input[type=submit],
.theme-boellcalendar 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;
  cursor: pointer;
}

#block-boellcalendar-content input[type="checkbox"],
.theme-boellcalendar input[type="checkbox"] {
  margin-top: 0.3em;
}

#block-boellcalendar-content input[type="checkbox"],
#block-boellcalendar-content input[type="radio"],
.theme-boellcalendar input[type="checkbox"],
.theme-boellcalendar input[type="radio"] {
  height: auto;
  -webkit-margin-end: 0.5em;
     -moz-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}

#block-boellcalendar-content .js-form-type-checkbox,
#block-boellcalendar-content .js-form-type-radio,
.theme-boellcalendar .js-form-type-checkbox,
.theme-boellcalendar .js-form-type-radio {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px auto;
      grid-template-columns: 30px auto;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  gap: 0 0;
  grid-auto-flow: row;
  grid-template-areas: "input label" "description description";
}

#block-boellcalendar-content .js-form-type-checkbox > input,
#block-boellcalendar-content .js-form-type-radio > input,
.theme-boellcalendar .js-form-type-checkbox > input,
.theme-boellcalendar .js-form-type-radio > input {
  grid-area: input;
}

#block-boellcalendar-content .js-form-type-checkbox > label,
#block-boellcalendar-content .js-form-type-radio > label,
.theme-boellcalendar .js-form-type-checkbox > label,
.theme-boellcalendar .js-form-type-radio > label {
  grid-area: label;
}

#block-boellcalendar-content .js-form-type-checkbox > .description,
#block-boellcalendar-content .js-form-type-radio > .description,
.theme-boellcalendar .js-form-type-checkbox > .description,
.theme-boellcalendar .js-form-type-radio > .description {
  grid-area: description;
  -webkit-margin-start: 30px;
     -moz-margin-start: 30px;
          margin-inline-start: 30px;
  font-style: italic;
}

#block-boellcalendar-content .js-form-type-checkbox > .description p:last-child,
#block-boellcalendar-content .js-form-type-radio > .description p:last-child,
.theme-boellcalendar .js-form-type-checkbox > .description p:last-child,
.theme-boellcalendar .js-form-type-radio > .description p:last-child {
  margin-bottom: 0;
}

#block-boellcalendar-content .description,
.theme-boellcalendar .description {
  font-size: 18px;
  margin-top: 2px;
}

#block-boellcalendar-content .form-required:after,
.theme-boellcalendar .form-required:after {
  content: '';
  vertical-align: super;
  display: inline-block;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(/core/misc/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  width: 8px;
  height: 8px;
  margin: 0 0.3em;
}

#block-boellcalendar-content #edit-submit,
.theme-boellcalendar #edit-submit {
  margin-top: 20px;
}

.civiremote-event-registration-update-form .dialog-toggle {
  -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: #D9D9D9;
  color: #444;
  -webkit-margin-start: 30px;
     -moz-margin-start: 30px;
          margin-inline-start: 30px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}
/*# sourceMappingURL=all.css.map */