#app .calendar-wrapper {
  --calendar-wrapper-background-color:#bcbcbc;
  --calendar-wrapper-font-size:1.2rem;
  --calendar-wrapper-padding:1rem;
  --calendar-wrapper-padding-top:var(--calendar-wrapper-padding);
  --calendar-wrapper-padding-right:var(--calendar-wrapper-padding);
  --calendar-wrapper-padding-bottom:var(--calendar-wrapper-padding);
  --calendar-wrapper-padding-left:var(--calendar-wrapper-padding);
  --calendar-wrapper-margin:0rem;
  --calendar-wrapper-margin-top:var(--calendar-wrapper-margin);
  --calendar-wrapper-margin-right:var(--calendar-wrapper-margin);
  --calendar-wrapper-margin-bottom:var(--calendar-wrapper-margin);
  --calendar-wrapper-margin-left:var(--calendar-wrapper-margin);
  background-color: var(--calendar-wrapper-background-color);
  font-size: 1.2em;
  padding-top: var(--calendar-wrapper-padding-top);
  padding-right: var(--calendar-wrapper-padding-right);
  padding-bottom: var(--calendar-wrapper-padding-bottom);
  padding-left: var(--calendar-wrapper-padding-left);
  margin-top: var(--calendar-wrapper-margin-top);
  margin-right: var(--calendar-wrapper-margin-right);
  margin-bottom: var(--calendar-wrapper-margin-bottom);
  margin-left: var(--calendar-wrapper-margin-left);
}
#app .calendar-wrapper > * {
  margin-bottom: 1rem;
}
#app .calendar-wrapper .calendar-grid {
  --grid-container-font-size: 2.6vmin;
  --grid-container-columns-repeat: 7;
  --grid-container-first-box-start: 1;
  --grid-container-gap: 0em;
  --grid-container-background-color: transparent;
  --grid-box-position: static;
  --grid-box-background-color: transparent;
  --grid-box-padding: 0em;
  --grid-box-ratio-a: 1;
  --grid-box-body-position: relative;
  --grid-box-body-padding: 0em;
  --grid-box-body-background-color: transparent;
  --grid-box-body-item-align: center;
  --grid-box-body-content-justify: center;
  --box-footer-display: none;
  --box-footer-position: absolute;
  --box-footer-left: 0;
  --box-footer-top: 100%;
  --transition-duration: 0.25s;
  margin-left: auto;
  margin-right: auto;
}
#app .calendar-wrapper .calendar-grid .grid-box.reserved time {
  background: var(--brand-yellow-mittel);
  color: var(--color-white);
}
#app .calendar-wrapper .calendar-grid .grid-box .box-body {
  font-size: 0.55em;
  text-shadow: 0.1px 0.1px 0.4px black;
  letter-spacing: 1px;
}
#app .calendar-wrapper .calendar-grid .grid-box .box-body time {
  width: 100%;
  text-align: center;
  -webkit-transition: all var(--transition-duration) ease;
  transition: all var(--transition-duration) ease;
}
#app .calendar-wrapper .calendar-grid .grid-box .box-body time + span {
  width: 100%;
  text-align: center;
  text-shadow: none;
  -webkit-transition: all var(--transition-duration) ease;
  transition: all var(--transition-duration) ease;
}
#app .calendar-wrapper .calendar-grid .grid-box:hover {
  --grid-box-body-background-color: #aaa;
  --box-footer-display: block;
}
#app .calendar-wrapper .calControls.monate {
  --grid-container-columns-repeat: 12;
  --grid-container-gap: 2em;
  --grid-box-ratio-a: 3;
  --grid-box-body-content-justify:flex-start;
  margin-left: auto;
  margin-right: auto;
}
#app .calendar-wrapper .calControls.monate .grid-box {
  border-bottom: 4px solid #535353;
  font-size: 1rem;
}
#app .calendar-wrapper .calControls.monate .grid-box .box-body {
  text-shadow: initial;
}
#app .calendar-wrapper .calControls.monate .grid-box.MonthIsNow {
  color: var(--brand-yellow-mittel);
  border-bottom: 4px solid var(--brand-yellow-mittel);
}
#app .calendar-wrapper .calControls.monate .grid-box.MonthIsNow .box-body {
  text-shadow: 0px 0px 0.4px var(--brand-yellow-mittel);
}
#app .calendar-wrapper .calControls.monate .grid-box.pastMonth {
  opacity: 0.5;
  cursor: no-drop !important;
}
#app .calendar-wrapper .calControls .switchYear {
  --switchyear-size: 1.1em;
}
#app .calendar-wrapper .calControls .switchYear > * {
  font-size: var(--switchyear-size);
  width: var(--switchyear-size);
  height: var(--switchyear-size);
}
#app .cal-style-1 {
  --struggle-wrapper-width: calc(1455px - 2rem);
}
#app .cal-style-1 .uk-navbar-container:not(.uk-navbar-transparent) {
  background: transparent;
}
#app .cal-style-1 .calendar-wrapper {
  background: #bcbcbc;
  font-size: 1.2em;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid {
  --struggle-width: var(--struggle-wrapper-width);
  --selection-height: 50%;
  --border-width: 0px;
  margin-left: auto;
  margin-right: auto;
  width: calc(var(--struggle-width) - 16rem);
  max-width: 100%;
  font-size: 1.2em;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-] {
  --dateSelect-color: var(--color-white);
  --dateSelect-background-color: var(--brand-yellow-mittel);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-] .box-body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(var(--selection-height) - var(--border-width) * 2);
  border: var(--border-width) solid var(--brand-yellow-dunkel);
  border-left: none;
  border-right: none;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-] .box-body time {
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.4rem 0rem;
  z-index: 1;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-] .box-body time + span {
  margin-top: 1rem;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-begin .box-body {
  background-color: transparent;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-begin .box-body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--selection-height) - var(--border-width) * 2);
  border: var(--border-width) solid var(--brand-yellow-dunkel);
  border-right: none;
  border-top-left-radius: var(--theme-border-radius);
  border-bottom-left-radius: var(--theme-border-radius);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-end .box-body {
  background-color: transparent;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-end .box-body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(var(--selection-height) - var(--border-width) * 2);
  border: var(--border-width) solid var(--brand-yellow-dunkel);
  border-left: none;
  border-top-right-radius: var(--theme-border-radius);
  border-bottom-right-radius: var(--theme-border-radius);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-range .box-body {
  background-color: transparent;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-range .box-body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(var(--selection-height) - var(--border-width) * 2);
  border: var(--border-width) solid var(--brand-yellow-dunkel);
  border-left: none;
  border-right: none;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-begin .box-body time, #app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-end .box-body time, #app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-range .box-body time {
  color: var(--dateSelect-color);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-begin .box-body:before, #app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-end .box-body:before, #app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-].dateSelect-range .box-body:before {
  background: var(--dateSelect-background-color);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-][class*=dateSelect-reserved] {
  --dateSelect-color:#fff;
  --dateSelect-background-color:#ee0000;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-][class*=dateSelect-reserved] .box-body time {
  color: var(--dateSelect-color);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-][class*=dateSelect-reserved] .box-body:before {
  background: var(--dateSelect-background-color);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-][class*=dateSelect-reserved][class*=-reserved_before], #app .cal-style-1 .calendar-wrapper .calendar-grid [class*=dateSelect-][class*=dateSelect-reserved][class*=-reserved_after] {
  --dateSelect-background-color:#ee0000;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid .unavailable {
  --grid-box-background-color:#eee;
  color: #ababab;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid .now {
  font-weight: bold;
  position: relative;
}
#app .cal-style-1 .calendar-wrapper .calendar-grid .now:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 190, 0, 0.1803921569);
}
#app .cal-style-1 .calendar-wrapper .calendar-grid .datePing-red .box-body {
  -webkit-animation-name: datePingRed;
          animation-name: datePingRed;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}
@-webkit-keyframes datePingRed {
  from {
    background-color: red;
  }
  to {
    background-color: transparent;
  }
}
@keyframes datePingRed {
  from {
    background-color: red;
  }
  to {
    background-color: transparent;
  }
}
#app .cal-style-1 .calendar-wrapper .calControls.monate {
  --grid-container-gap: 0.8em;
  width: calc(var(--struggle-width) + 0rem);
  max-width: 100%;
  font-size: 1.6em;
}
#app .cal-style-1 .calendar-wrapper .calControls.monate .grid-box {
  border-bottom: 4px solid #111111;
  cursor: pointer;
}
#app .cal-style-1 .calendar-wrapper .calControls.monate .grid-box.is-currentMonth {
  color: var(--brand-yellow-mittel);
  border-bottom: 4px solid var(--brand-yellow-mittel);
}
#app .cal-style-1 .calendar-wrapper .calControls.monate .grid-box.is-currentMonth .box-body {
  text-shadow: 0px 0px 0.4px var(--brand-yellow-mittel);
}
#app .cal-style-1 .calendar-wrapper .calControls.calPaging {
  width: calc(var(--struggle-wrapper-width) + 0rem);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#app .cal-style-1 .calendar-wrapper .calControls.calPaging > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#app .cal-style-1 .grid-container.timeline {
  --grid-container-columns-repeat: 5;
  --grid-container-gap: 0em;
  --legendColor-width: 3rem;
  margin-top: 5vmin;
  margin-bottom: 5vmin;
}
#app .cal-style-1 .grid-container.timeline > * {
  --timeline-outline-width: 6px;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: var(--timeline-outline-width) solid var(--brand-yellow-mittel);
  margin-top: var(--timeline-outline-width);
  margin-bottom: var(--timeline-outline-width);
}
#app .cal-style-1 .grid-container.timeline > *:first-child {
  grid-column: 2;
}
#app .cal-style-1 .grid-container.timeline > * .timelineColor {
  width: var(--legendColor-width);
  height: var(--legendColor-width);
  background: var(--brand-yellow-mittel);
  display: block;
}
#app .cal-style-1 .grid-container.timeline > * .timelineText {
  font-size: 1rem;
}
#app .cal-style-1 .grid-container.timeline > * .timelineText[class*=dateselection-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
#app .cal-style-1 .grid-container.timeline > * .timelineText[class*=dateselection-]:before {
  content: "";
  display: contents;
}
#app .cal-style-1 .grid-container.timeline > * .timelineText[class*=dateselection-].dateselection-in:empty:before {
  content: "Anreisedatum";
}
#app .cal-style-1 .grid-container.timeline > * .timelineText[class*=dateselection-].dateselection-in:before {
  content: "Von: ";
}
#app .cal-style-1 .grid-container.timeline > * .timelineText[class*=dateselection-].dateselection-out:empty:before {
  content: "Abreisedatum";
}
#app .cal-style-1 .grid-container.timeline > * .timelineText[class*=dateselection-].dateselection-out:before {
  content: "Bis: ";
}
#app .cal-style-1 .grid-container.timeline > * .timelineText input {
  --outline-width: 2px;
  padding: 0rem;
  font-size: 0.9em;
  line-height: 1;
  font-family: "soleto";
  text-shadow: 0.1px 0.1px 0.4px black;
  letter-spacing: 1px;
  border: none;
  margin-bottom: calc(var(--outline-width) * -1);
  width: 100%;
  background: transparent;
}
#app .cal-style-1 .grid-container.timeline > * .timelineText input:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--brand-yellow-mittel);
  height: var(--outline-width);
}
#app .cal-style-1 .grid-container.legend {
  --grid-container-columns-repeat: 5;
  --legendColor-width: 2rem;
  --grid-container-template-columns: repeat(auto-fill, 10rem);
  font-size: 0.7em;
  --legendColor:var(--brand-yellow-mittel);
  --legendText:var(--brand-black);
  --grid-container-background-color:transparent;
  --grid-box-background-color: transparent;
}
#app .cal-style-1 .grid-container.legend > * {
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#app .cal-style-1 .grid-container.legend > *:first-child {
  grid-column: 1;
}
#app .cal-style-1 .grid-container.legend > * > * {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app .cal-style-1 .grid-container.legend > * .legendColor {
  width: var(--legendColor-width);
  height: var(--legendColor-width);
  background-color: var(--legendColor);
  display: block;
}
#app .cal-style-1 .grid-container.legend > * .legendText {
  font-size: 0.9em;
  color: var(--legendText);
}
#app .cal-style-test .calendar-wrapper {
  background: #fafafa;
  font-size: 1.2em;
  padding-bottom: 0rem;
  margin-bottom: 1rem;
  border: 1px solid #ffd500;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.102) inset;
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.102) inset;
  border-radius: 5px;
}

@media (max-width: 1280px) {
  #app .KalCon .grid-box:first-child {
    grid-column: var(--grid-container-first-box-start);
  }
}/*# sourceMappingURL=cb_event_calendar.css.map */