:root {
  --base-bg-color: #171718;
  --base-bg-color-dark: #080808;
  --base-bg-color-light: #171718; /* rgba(38,38,41,0.8); */
  --base-dark-color: #000;
  --base-text-color: #ffffff;
  --base-text-color-light: rgba(255,255,255,0.7);
  --base-border-color: #ffffff40;
  --base-primary-color: #FE5000;
  --bs-gutter-x: 20px !important;
}

/*$body-color: #3E3E3F; // dark grey*/
/*
Here you will find all variables we used in SCSS files

ATTENTION! Dont use $value or $property!

*/
/**************
*
* FONTS
*
**************/
/**************
*
* RANDOM RAINBOW COLOR SET
*
**************/
/**************
*
* COLOR PRESET
*
**************/
/**************
*
* TEXT COLOR PRESET
*
**************/
/**************
*
* LINK COLOR PRESET
*
**************/
/**************
*
* MEDIA QUERY BREAKPOINTS
*
**************/
/**************
*
* HEADER & FOOTER
*
**************/
/**************
*
* PADDING
*
**************/
/**************
*
* IMG SIZES
*
**************/
/**************
*
* WIDTH OF CONTENT ELEMENTS
*
**************/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
*
*
*
* Use this file to create extend/inheritance
*
*
*
*/
/*
*
* MARGINS & PADDINGS
*
*/
/*
*
* LIMITED CONTENT WIDTH
*
*/
/*
*
*
* FONT PRESET
*
*/
@font-face {
  font-family: "pangram";
  src: url("../fonts/pangram/pangram-regular.woff") format("woff");
  src: url("../fonts/pangram/pangram-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pangram-light";
  src: url("../fonts/pangram/pangram-light.woff") format("woff");
  src: url("../fonts/pangram/pangram-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "pangram-medium";
  src: url("../fonts/pangram/pangram-medium.woff") format("woff");
  src: url("../fonts/pangram/pangram-medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "pangram-medium-italic";
  src: url("../fonts/pangram/pangram-mediumitalic.woff") format("woff");
  src: url("../fonts/pangram/pangram-mediumitalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "pangram-bold";
  src: url("../fonts/pangram/pangram-bold.woff") format("woff");
  src: url("../fonts/pangram/pangram-bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "pangram-black";
  src: url("../fonts/pangram/pangram-black.woff") format("woff");
  src: url("../fonts/pangram/pangram-black.woff2") format("woff2");
  font-weight: bolder;
  font-style: normal;
}
.text-muted {
  color: var(--base-text-color-light) !important;
}

.display-1 {
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 42px;
}

.display-2 {
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 36px;
}

.display-3 {
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
}

.display-4 {
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .display-4 {
    font-size: 22px;
    line-height: 28px;
  }
}

.container-outer {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .container-outer {
    max-width: 1400px;
  }
}

.container-inner {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .container-inner {
    max-width: 680px;
  }
}
@media screen and (min-width: 1024px) {
  .container-inner {
    max-width: 900px;
  }
}
@media screen and (min-width: 768px) {
  .container-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-calendar .calendar-overview {
  margin-top: 130px;
  overflow-x: hidden;
}
.page-calendar .calendar-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
}
.page-calendar .calendar-header-container h1 {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .page-calendar .calendar-header-container h1 {
    font-size: 28px;
  }
}
.page-calendar .calendar-header-container #calendar-select-date {
  display: none;
}
.page-calendar .calendar-header-container #calendar-select-category {
  display: none;
  position: absolute;
  right: 15px;
  color: #FE5000;
  background: var(--base-bg-color);
  border: solid 1px var(--base-border-color);
  padding: 20px;
  z-index: 9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.page-calendar .calendar-header-container #calendar-select-category select#select-category {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-calendar .calendar-header-container #calendar-select-category select#select-category option {
  color: var(--base-text-color);
  background: var(--base-bg-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease-in-out;
}
.page-calendar .calendar-header-container #calendar-select-category select#select-category option:hover {
  color: var(--base-primary-color);
}
.page-calendar .calendar-header-container #calendar-select-category select#select-category option:checked {
  background: var(--base-primary-color);
  color: var(--base-bg-color);
}

.cb-event-search-results {
  max-width: 100%;
  margin: 0 auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cb-event-search-results {
    max-width: 680px;
  }
}
@media screen and (min-width: 1024px) {
  .cb-event-search-results {
    max-width: 900px;
  }
}
.cb-event-search-results .event .date-day-wrapper {
  font-size: 35px;
  font-family: "pangram";
  margin-bottom: 20px;
  line-height: 1.3;
  display: flex;
  gap: 10px;
}
.cb-event-search-results .event-col {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .cb-event-search-results .event-col {
    margin-bottom: 60px;
  }
}
.cb-event-search-results .event-col::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--base-primary-color);
  bottom: -1px;
  left: 0;
  transition: all 0.6s ease-in-out;
}
.cb-event-search-results .event-col:hover::before {
  width: 100%;
}
.cb-event-search-results .event-col .picture-container {
  display: flex;
  align-items: center;
  margin-right: 20px;
  position: relative;
}
.cb-event-search-results .event-col .picture-container .cb-flex-editor-button {
  left: inherit;
  right: 0;
  top: -18px;
}
.cb-event-search-results .event-col .picture-container .event-bg {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  border-radius: 100%;
  object-fit: cover;
  border: solid 2px var(--base-border-color);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .cb-event-search-results .event-col .picture-container .event-bg {
    width: 150px;
    height: 150px;
  }
}
.cb-event-search-results .event-col .event-info-container {
  position: relative;
  width: 100%;
}
.cb-event-search-results .event-col .event-info-container .event-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cb-event-search-results .event-col .event-info-container .event-info {
    flex-direction: row;
  }
}
.cb-event-search-results .event-col .event-info-container .event_editor_button {
  position: absolute;
  left: 0;
  top: -35px;
  line-height: 20px;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .open_editor {
  background-color: #2f74a9;
  background-image: url(../images/icons/icon_chevron-right-white.svg);
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  cursor: pointer;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper {
  background-color: #3e74c0;
  height: 34px;
  border-radius: 30px;
  position: absolute;
  display: flex;
  top: 0px;
  left: 0px;
  align-items: center;
  gap: 3px;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper.hidden {
  display: none;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: transparent;
  outline: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
  cursor: pointer;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button:hover {
  background-color: #3261a3;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button.open-button {
  background-image: url(../images/icons/icon_chevron-right-white.svg);
  background-size: 10px;
  background-position: center;
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button.stage-button {
  background-image: url(../images/icons/icon_pencil-square_white.svg);
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button.mail-button {
  background-image: url(../images/icons/icon_at_white.svg);
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button.event-editor-button {
  background-image: url(../images/icons/icon_tools_white.svg);
}
.cb-event-search-results .event-col .event-info-container .event_editor_button .event_editor_wrapper button.fix-button {
  background-image: url(../images/icons/icon_arrow-counterclockwise_white.svg);
}
@media screen and (min-width: 768px) {
  .cb-event-search-results .event-col .event-info-container .event-info .event-info-details {
    max-width: 80%;
  }
}
.cb-event-search-results .event-col .event-info-container .event-info .event-info-details .event-info-header {
  display: flex;
  font-size: 15px;
  font-family: "pangram", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .cb-event-search-results .event-col .event-info-container .event-info .event-info-details .event-info-header {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.cb-event-search-results .event-col .event-info-container .event-info .event-info-details a {
  color: var(--base-text-color);
}
.cb-event-search-results .event-col .event-info-container .event-info .event-info-details a h2.event-title {
  font-size: 22px;
  font-family: "pangram", Helvetica, Arial, sans-serif;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cb-event-search-results .event-col .event-info-container .event-info .event-info-details a h2.event-title {
    font-size: 35px;
  }
}
.cb-event-search-results .event-col .event-info-container .event-info .event-buttons {
  margin-top: 10px;
}
.cb-event-search-results .month-headline-date.text-center {
  font-size: 24px;
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
}

.datepick-popup {
  background: var(--base-bg-color);
  border: 0;
  border-radius: 0px;
  margin-top: 10px;
  padding: 20px;
  min-width: 280px;
  z-index: 99;
  position: absolute;
  max-width: 250px;
  border: solid 1px var(--base-border-color);
}
.datepick-popup a {
  color: #fff;
  border: 0;
}
.datepick-popup a:hover {
  color: #FE5000;
}
.datepick-popup .datepick-nav {
  display: flex;
  justify-content: space-between;
}
.datepick-popup .datepick-nav a.datepick-cmd.datepick-cmd-prev, .datepick-popup .datepick-nav a.datepick-cmd.datepick-cmd-next {
  text-indent: -999px;
}
.datepick-popup .datepick-nav a.datepick-cmd.datepick-cmd-prev {
  background: url(../images/icons/icon_chevron-right-white.svg) no-repeat center center;
  transform: rotate(180deg);
  background-size: 10px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  color: transparent;
}
.datepick-popup .datepick-nav a.datepick-cmd.datepick-cmd-next {
  background: url(../images/icons/icon_chevron-right-white.svg) no-repeat center center;
  background-size: 10px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  color: transparent;
}
.datepick-popup .datepick-month a {
  transition: all 0.5s ease-in-out;
}
.datepick-popup .datepick-month a:hover {
  color: var(--base-primary-color) !important;
  border-bottom: solid 1px var(--base-primary-color) !important;
}
.datepick-popup .datepick-month .datepick-today {
  color: var(--base-primary-color);
  border-bottom: solid 1px var(--base-primary-color);
}
.datepick-popup .datepick-month table th span {
  color: #FE5000;
  font-size: 1rem;
}
.datepick-popup .datepick-month .datepick-selected-date {
  background-color: var(--base-primary-color);
  border-radius: 0%;
}
.datepick-popup .datepick-month .datepick-selected-date a.selected-date {
  color: var(--base-bg-color) !important;
  font-weight: bold;
  border-radius: 0%;
  background-color: var(--base-primary-color);
}
.datepick-popup .datepick-month .datepick-selected-date a.selected-date:hover {
  color: var(--base-bg-color) !important;
  background-color: var(--base-primary-color) !important;
}
.datepick-popup .datepick-month-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.datepick-popup .datepick-month-header select.datepick-month-year {
  border: solid 0px var(--base-border-color);
  background-color: transparent;
  color: var(--base-text-color);
  width: 100%;
  font-size: 16px;
  padding: 2px 5px;
  margin-top: 10px;
}
.datepick-popup .datepick-month-header select.datepick-month-year:focus-visible {
  outline: none;
}

div#calendar-timeline {
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  div#calendar-timeline {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  div#calendar-timeline {
    margin-top: 60px;
  }
}
div#calendar-timeline li {
  background: var(--base-bg-color);
}
div#calendar-timeline.is-sticky {
  position: fixed;
  z-index: 100;
  padding: 0 15px;
  background-color: var(--base-bg-color) !important;
  -webkit-box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.7);
  /* & .calendar-timeline__body{
    background-color: var(--base-bg-color);
  } */
}
@media screen and (min-width: 768px) {
  div#calendar-timeline.is-sticky {
    top: 0px !important;
  }
}
@media screen and (min-width: 1024px) {
  div#calendar-timeline.is-sticky {
    top: 20px !important;
  }
}
div#calendar-timeline .timeline {
  width: 100%;
  width: calc(100% - 50px) !important;
}
@media screen and (min-width: 768px) {
  div#calendar-timeline .timeline {
    width: calc(100% - 150px) !important;
  }
}
div#calendar-timeline .days {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  font-size: 0;
  padding-left: 0;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  div#calendar-timeline .days {
    display: block !important;
    visibility: visible !important;
  }
}
div#calendar-timeline .calendar-timeline__headline {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}
div#calendar-timeline .calendar-timeline__body {
  overflow: hidden;
  border: 0px solid var(--base-border-color);
  margin-bottom: 0px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  div#calendar-timeline .calendar-timeline__body {
    max-width: 1230px;
  }
}
div#calendar-timeline .timeline-button,
div#calendar-timeline .timeline,
div#calendar-timeline .timeline-day,
div#calendar-timeline .timeline-month-label {
  display: inline-block;
  vertical-align: top;
}
div#calendar-timeline .timeline {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
  background-color: var(--base-bg-color);
}
div#calendar-timeline button.timeline-button.fwd {
  right: 0px;
  -webkit-transform: rotate(270deg);
  transform: rotate(0deg);
  background-color: transparent;
}
div#calendar-timeline button.timeline-button.bwd {
  -webkit-transform: rotate(90deg);
  transform: rotate(180deg);
  background-color: transparent;
}
div#calendar-timeline .timeline-button {
  position: absolute;
  visibility: visible;
  display: inline-block;
  background-color: var(--base-bg-color);
  background: url(../images/icons/icon_chevron-right.svg) no-repeat scroll 10px 27px/auto 20px;
  height: 60px;
  width: 25px;
  cursor: pointer;
  background-color: #fff;
  background-position: center;
}
@media screen and (min-width: 768px) {
  div#calendar-timeline .timeline-button {
    width: 75px;
  }
}
div#calendar-timeline .timeline-day,
div#calendar-timeline .timeline-month-label {
  width: 55px;
  height: 60px;
  border-right: 1px solid var(--base-primary-color);
  text-align: center;
  font-size: 18px;
  line-height: 18px;
}
@media screen and (min-width: 768px) {
  div#calendar-timeline .timeline-day,
  div#calendar-timeline .timeline-month-label {
    width: 85px;
  }
}
div#calendar-timeline .timeline-month-label .month {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#calendar-timeline .timeline-day {
  padding: 10px 0;
  background-color: var(--base-bg-color) !important;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  div#calendar-timeline .timeline-day {
    transition: all 0.25s ease-in-out;
  }
}
div#calendar-timeline .timeline-day .day, div#calendar-timeline .timeline-day .date {
  text-transform: uppercase;
  background-color: inherit;
  font-size: 15px;
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  margin-bottom: 4px;
}
div#calendar-timeline .timeline-day.date-selected {
  border: solid 1px var(--base-primary-color) !important;
}
div#calendar-timeline .timeline-day:hover {
  background-color: #FE5000;
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day:hover .day {
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day:hover .date {
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day.today {
  background: #FE5000 !important;
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day.today .day {
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day.today .date {
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day.weekend {
  color: var(--base-primary-color) !important;
}
div#calendar-timeline .timeline-day:hover,
div#calendar-timeline .timeline-day:active,
div#calendar-timeline .timeline-day:focus,
div#calendar-timeline .timeline-day.selected,
div#calendar-timeline .timeline-day:target,
div#calendar-timeline .timeline-day.touched {
  background-color: #FE5000 !important;
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day:hover .day,
div#calendar-timeline .timeline-day:active .day,
div#calendar-timeline .timeline-day:focus .day,
div#calendar-timeline .timeline-day.selected .day,
div#calendar-timeline .timeline-day:target .day,
div#calendar-timeline .timeline-day.touched .day {
  color: var(--base-bg-color);
}
div#calendar-timeline .timeline-day:hover .date,
div#calendar-timeline .timeline-day:active .date,
div#calendar-timeline .timeline-day:focus .date,
div#calendar-timeline .timeline-day.selected .date,
div#calendar-timeline .timeline-day:target .date,
div#calendar-timeline .timeline-day.touched .date {
  color: var(--base-bg-color);
}
@media (hover: none) and (pointer: coarse) {
  div#calendar-timeline .timeline-day:active,
  div#calendar-timeline .timeline-day.selected,
  div#calendar-timeline .timeline-day.touched {
    background-color: #FE5000;
    color: var(--base-bg-color);
  }
  div#calendar-timeline .timeline-day:active .day,
  div#calendar-timeline .timeline-day.selected .day,
  div#calendar-timeline .timeline-day.touched .day {
    color: var(--base-bg-color);
  }
  div#calendar-timeline .timeline-day:active .date,
  div#calendar-timeline .timeline-day.selected .date,
  div#calendar-timeline .timeline-day.touched .date {
    color: var(--base-bg-color);
  }
}

.page-calendar .headline-container {
  padding: 40px 0;
}
.page-calendar .headline-container p.location {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.page-calendar .title-top {
  font-family: "pangram-medium", Helvetica, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--base-text-color);
  font-weight: bold;
  letter-spacing: 3px;
  opacity: 0.5;
}
.page-calendar .title-main {
  margin-bottom: 15px;
}
.page-calendar .history-back-button {
  margin-bottom: 20px;
  color: var(--base-primary-color) !important;
  transition: all 0.5s ease-in-out;
  font-size: 18px;
  font-family: "pangram-medium", Helvetica, Arial, sans-serif;
}
.page-calendar .history-back-button:hover {
  color: var(--base-text-color) !important;
}
.page-calendar .event__header .event__date.date {
  font-size: 20px;
  line-height: 1.3;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-calendar .event__header .event__date.date {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: 0.1px;
  }
}
@media screen and (min-width: 1200px) {
  .page-calendar .event__header .event__date.date {
    font-size: 30px;
    line-height: 1.3;
  }
}
.page-calendar .page-event-detail-section .event-date {
  padding: 0px 0px;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  top: 0px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  /* border-bottom: solid 1px var(--base-border-color); */
}
.page-calendar .page-event-detail-section .event-date::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: -15px;
  right: 60px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #8FE0CA transparent;
  transform: rotate(0deg);
}
.page-calendar .page-event-detail-section .col-lg-4, .page-calendar .page-event-detail-section .col-lg-8 {
  padding: 0px 20px;
}
@media screen and (min-width: 768px) {
  .page-calendar .page-event-detail-section .col-lg-4, .page-calendar .page-event-detail-section .col-lg-8 {
    padding: 0px 20px;
  }
}
.page-calendar h2.info-title-events {
  margin-bottom: 40px;
}
.page-calendar #calendar_video_mockup {
  margin-bottom: 50px;
  margin-left: -20px;
  width: calc(100% + 40px);
}
@media screen and (min-width: 768px) {
  .page-calendar #calendar_video_mockup {
    margin-left: unset;
    width: 100%;
  }
}
.page-calendar #calendar_video_mockup video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.page-calendar #calendar_video_mockup .carousel-control-prev,
.page-calendar #calendar_video_mockup .carousel-control-next {
  height: 40%;
  top: 50%;
  transform: translate(0, -50%);
}
.page-calendar p.event-description__text {
  padding-bottom: 40px;
  font-family: "pangram-light", Helvetica, Arial, sans-serif;
}
.page-calendar .date__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-calendar .date__container {
    display: block;
    flex-direction: row;
  }
}
.page-calendar .date__container span.day {
  font-size: 100px;
  line-height: 1em;
  letter-spacing: 1px;
  margin-left: -3px;
}
.page-calendar .date__container span.month {
  display: block;
  text-decoration: none;
  font-weight: 300;
  line-height: 1em;
  font-size: 30px;
  text-transform: uppercase;
  margin-left: -1px;
}
.page-calendar .ticket-container {
  padding: 20px 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-calendar .ticket-container {
    padding: 20px 0;
  }
}
.page-calendar .adress-container {
  color: #363636;
  display: flex;
  flex-direction: column;
  font-size: 16px;
}
.page-calendar .adress-container a:hover {
  color: var(--base-text-color);
}
.page-calendar .event-adress {
  color: var(--base-text-color);
  font-size: 18px;
  font-family: "pangram-bold", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.page-calendar .sponsors-container {
  padding: 0 15px;
}
.page-calendar button#history-back-button svg {
  margin-right: 20px;
}
.page-calendar button#history-back-button:hover {
  color: var(--base-primary-color);
}
.page-calendar .event .event-col {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px var(--base-border-color);
}
.page-calendar .event .event-col .event-title a {
  color: var(--base-text-color);
  font-size: 22px;
  line-height: 30px;
  font-weight: bold;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-calendar .event .event-col .event-title a {
    font-size: 22px;
    line-height: 28px;
  }
}
.page-calendar .event .event-col .event-title a:hover {
  color: var(--base-primary-color);
  transition: all 0.5s ease-in-out;
}
.page-calendar .event .event-col .event-title a:hover span.event-location-time {
  transition: all 0.5s ease-in-out;
  color: var(--base-text-color);
  border-bottom: 1px var(--base-text-color) solid;
}
.page-calendar .event .event-col .event-title span.event-location-time {
  color: var(--base-primary-color);
  border-bottom: 1px var(--base-primary-color) solid;
  width: 100%;
}
.page-calendar .event .event-col .event-title .headline {
  font-size: 16px;
  line-height: 26px;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .page-calendar .event .event-col .event-title .headline {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.1px;
  }
}
@media screen and (min-width: 1200px) {
  .page-calendar .event .event-col .event-title .headline {
    line-height: 1.3;
  }
}
.page-calendar .event-ensemble-header {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0 !important;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.sponsors-container div {
  padding: 0;
  /*    margin-right: 14px;*/
  margin-bottom: 15px;
}

.sponsors-container img {
  max-width: 130px;
  border: 1px solid #ccc;
  padding: 24px 22px;
}

ul.event-audios {
  margin: 20px 0 !important;
}

p.audio-name {
  padding-bottom: 10px;
  padding-top: 10px;
}

.further-events-content {
  padding-bottom: 0px;
  border-bottom: solid 1px var(--base-border-color);
  margin-bottom: 10px;
}
.further-events-content .date {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.further-events-content .date .icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.further-events-content .date .icon svg {
  max-width: 24px;
}
.further-events-content time {
  border-bottom: solid 1px transparent;
  color: var(--base-text-color);
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}
.further-events-content time:hover {
  color: var(--base-primary-color) !important;
  border-bottom: solid 1px var(--base-primary-color) !important;
}
.further-events-content .location {
  transition: all 0.5s ease-in-out;
}

a.further-event__date {
  color: var(--base-primary-color);
  border-bottom: none !important;
  font-family: "pangram", Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: space-between;
}

.further-events {
  margin-top: 30px;
}

.page-kalender .event-ensemble li {
  font-size: 16px;
  color: #333 !important;
  line-height: 1.9em;
  letter-spacing: 1px;
}

.page-kalender .event__ticket a {
  padding: 10px 30px;
  background: black;
  color: #FE5000;
  border: solid 2px #363636;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.page-kalender .event__ticket a:hover {
  background: #FE5000;
  border: solid 2px #363636;
  color: #363636;
}

.page-kalender .event__ticket {
  padding: 35px 0px;
  color: #ea5368;
  display: block;
  margin: 0 auto;
  text-align: center;
  margin: auto;
}

.page-kalender p.event__opus-info-short {
  font-size: 16px;
  line-height: 30px;
}

.ticket-container .dreieck {
  border-bottom: 22px solid #DC1B23 !important;
  display: none;
}

.page-kalender .ensemble-container {
  margin-top: 0px;
  width: 90%;
}
.page-kalender .ensemble-container .further-events__header {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-kalender .ensemble-container .further-events__header {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .page-kalender .ensemble-container .further-events__header {
    line-height: 1.5;
  }
}

/*=============Konzertkalender-Lokation================*/
.location-section .card-body {
  padding: 0px 30px 39px;
  background: #3c93ca;
}

.location-section .card-body h4, .location-section .card-body p {
  color: #fff;
}

.location-section h4.card-title {
  font-size: 17px !important;
  font-weight: 500 !important;
  margin-top: 28px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.location-section .card {
  border: 1px solid #ccc;
  padding: 0 !important;
}

/*.page-event-detail*/
.page-calendar .owl-nav {
  position: absolute;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  left: 50%;
  height: 25px;
  width: calc(100% + 2px) !important;
  transform: translate(-50%, -50%);
  /* mix-blend-mode: difference; */
  display: flex;
  pointer-events: none;
}
.page-calendar .owl-nav button.owl-prev, .page-calendar .owl-nav button.owl-next {
  background-color: var(--base-bg-color);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  width: 30px;
  height: 45px;
  padding: 5px;
  display: flex;
  transition: all 0.3s ease-in-out;
  pointer-events: all;
  /* &:focus, &:focus-visible{
      outline: 2px solid $plabo-orange; 
      outline-offset: 2px;
  } */
}
@media screen and (min-width: 768px) {
  .page-calendar .owl-nav button.owl-prev, .page-calendar .owl-nav button.owl-next {
    display: block;
    background-color: var(--base-bg-color);
    padding: 10px;
    background-size: 12px;
    width: 40px;
    height: 50px;
  }
}
.page-calendar .owl-nav button.owl-prev span, .page-calendar .owl-nav button.owl-next span {
  display: none;
}
.page-calendar .owl-nav button.owl-prev {
  background-image: url(../images/icons/icon_arrow-left-white.svg);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.page-calendar .owl-nav button.owl-prev:hover {
  margin-left: -5px;
}
.page-calendar .owl-nav button.owl-next {
  background-image: url(../images/icons/icon_arrow-right-white.svg);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.page-calendar .owl-nav button.owl-next:hover {
  margin-right: -5px;
}
.page-calendar .media-container__image {
  position: relative;
  max-width: 100vw;
}
.page-calendar .media-container__image .media-container__copyright {
  position: absolute;
  color: var(--base-text-color-light);
  right: 0px;
  bottom: 0px;
  padding: 4px;
  background-color: var(--base-bg-color-light);
  letter-spacing: 0.5px;
  font-size: 12px;
  line-height: 1;
  hyphens: auto;
  z-index: 9;
}
.page-calendar .media-container-type-event {
  margin: 0 auto;
  margin-bottom: 40px;
  overflow: hidden;
}
.page-calendar .media-container-type-event .media-container__title {
  text-align: center;
  margin: 10px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
  max-width: 80vw;
}
.page-calendar .media-container-type-event .media-container__subtitle {
  text-align: center;
}
.page-calendar .media-container-type-event .owl-media-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-calendar .media-container-type-event .owl-media-container {
    padding: 0 50px;
  }
}
.page-calendar .media-container-type-event .owl-media-container-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.page-calendar .media-container-type-event .owl-media-container-item img {
  max-height: 280px;
  height: 280px;
  width: 100vw;
  overflow: hidden;
  margin: 0 auto;
  object-fit: cover;
  border: 0px yellow solid;
}
@media screen and (min-width: 768px) {
  .page-calendar .media-container-type-event .owl-media-container-item img {
    width: 100%;
    max-height: 430px;
    height: 430px;
    /*                    max-height: 330px;*/
    /*                    height: 330px;*/
    object-fit: cover;
  }
}
@media screen and (min-width: 1400px) {
  .page-calendar .media-container-type-event .owl-media-container-item img {
    max-height: 660px;
    height: 660px;
    object-fit: cover;
  }
}
.page-calendar .media-container-type-calendar-further-events {
  overflow: hidden;
}
.page-calendar .media-container-type-calendar-further-events .dynamic-media-container {
  margin-bottom: 40px;
}
.page-calendar .media-container-type-calendar-further-events .img-placeholder {
  width: 100%;
  border: solid 1px var(--base-primary-color);
}
.page-calendar .media-container-type-calendar-further-events .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
.page-calendar .media-container-type-calendar-further-events .owl-nav span {
  display: none;
}
.page-calendar .media-container-type-calendar-further-events .owl-nav button {
  transform: translate(0, -50%);
}
.page-calendar .media-container-type-calendar-further-events .order-option-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-calendar .media-container-type-calendar-further-events .owl-media-container__text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-weight: 700;
  line-height: 1.2rem;
}
.page-calendar .media-container-type-calendar-further-events .owl-media-container__text .media-container__subtitle {
  font-size: 18px;
  color: var(--base-primary-color);
  border-bottom: 1px transparent solid;
  transition: all 0.2s ease-in-out;
}
.page-calendar .media-container-type-calendar-further-events .stream-media-layer {
  position: relative;
}
.page-calendar .media-container-type-calendar-further-events .stream-media-layer div.video-js {
  width: 100%;
  max-height: 330px !important;
  min-height: initial;
}
@media screen and (min-width: 1200px) {
  .page-calendar .media-container-type-calendar-further-events .stream-media-layer div.video-js {
    max-height: 470px !important;
  }
}
.page-calendar .media-container-type-calendar-further-events .stream-media-layer div.video-js .vjs-tech {
  height: initial;
  aspect-ratio: 16/9;
}
.page-calendar .media-container-type-calendar-further-events .stream-media-layer .stream-media-layer-video-container {
  width: 100%;
}

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