@charset "UTF-8";
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fade-up {
  from {
    -webkit-transform: translateY(1em);
    -moz-transform: translateY(1em);
    -ms-transform: translateY(1em);
    -o-transform: translateY(1em);
    transform: translateY(1em);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 1;
  }
}
.wpstager-calendar {
  border: 1px solid;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.wpstager-calendar:not(.wpstager-calendar-async) {
  -webkit-animation: fade-up 0.25s ease;
  -moz-animation: fade-up 0.25s ease;
  animation: fade-up 0.25s ease;
}
.wpstager-calendar.hidden {
  opacity: 0;
  pointer-events: none;
}
.wpstager-calendar.view-list .wpstager-day {
  border-bottom: 1px solid;
  border-right: none;
}
.wpstager-calendar.view-list .wpstager-day:last-child {
  border: none;
}
.wpstager-calendar.view-list .wpstager-day--placeholder {
  display: none;
}

.wpstager-calendar-nav {
  border-bottom: 1px solid;
}

.wpstager-calendar-nav__previous-button::before {
  content: "← ";
  display: inline;
}

.wpstager-calendar-nav__next-button::after {
  content: " →";
  display: inline;
}

.wpstager-month + .wpstager-month {
  border-top: 1px solid;
}

.wpstager-week + .wpstager-week {
  border-top: 1px solid;
}

.wpstager-day {
  padding: 1rem;
  border-bottom: 1px solid;
}
.wpstager-day:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  .wpstager-day {
    border-right: 1px solid;
    border-bottom: none;
  }
  .wpstager-day:last-child:nth-child(7) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .wpstager-day--placeholder {
    display: none;
  }
}

.wpstager-event-list {
  width: 100%;
}
.wpstager-event-list:is(.wpstager-calendar__scope-wrapper > *) {
  padding: 1em;
}
.wpstager-event-list:is(.wpstager-calendar__scope-wrapper > *) .wpstager-event:first-child {
  padding-top: 0;
}

.wpstager-event {
  padding-top: 1rem;
}
.wpstager-event::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0.2;
  margin-bottom: 1rem;
}
.wpstager-event:first-child {
  padding-top: 0;
}
.wpstager-event:first-child::before {
  display: none;
}

.wpstager-year__label {
  font-size: 2em;
  padding: 1rem;
  border-bottom: 1px solid;
  /*text-align:center;*/
}

.wpstager-month__label {
  font-size: 1.5em;
  padding: 1rem;
  border-bottom: 1px solid;
  /*text-align:center;*/
}

.wpstager-week__label {
  font-weight: bold;
  padding: 1rem;
  border-bottom: 1px solid;
  /*text-align:center;*/
}

.wpstager-day__label {
  font-weight: bold;
  padding-bottom: 1rem;
}

.wpstager-calendar-async__loading-label {
  padding: 1rem;
  line-height: 1em;
  display: inline-block;
}
.wpstager-calendar-async__loading-label::before {
  content: "";
  display: inline-block;
  vertical-align: -11%;
  margin-right: 0.35em;
  width: 1em;
  height: 1em;
  inset: 0;
  border: 0.125em solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 0.5s linear infinite;
  -moz-animation: spin 0.5s linear infinite;
  animation: spin 0.5s linear infinite;
}

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