@keyframes zIndexSwap {
  0% {
    opacity: 0;
    z-index: 1;
  }
  49.9% {
    opacity: 0;
    z-index: 1;
  }
  50% {
    opacity: 1;
    z-index: 100;
  }
  100% {
    opacity: 1;
    z-index: 100;
  }
}
@keyframes zIndexSwapBack {
  0% {
    opacity: 1;
    z-index: 100;
  }
  49.9% {
    opacity: 1;
    z-index: 100;
  }
  50% {
    opacity: 0;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
#event-calendar-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 500ms ease-in-out;
  top: 0;
  width: 100vw;
  z-index: 100;
}

#event-calendar-price {
  background-color: white;
  display: none;
  left: 50%;
  opacity: 0;
  overflow: auto;
  padding: 30px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease-in-out;
  z-index: 10001;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (orientation: landscape) {
  #event-calendar-price {
    height: calc(100dvh - 20px);
    max-height: 1000px;
    max-width: 1000px;
    width: calc(100dvh - 20px);
  }
}
@media (orientation: portrait) {
  #event-calendar-price {
    height: calc(100dvh - 20px);
    max-height: 1000px;
    max-width: 1000px;
    width: calc(100dvw - 20px);
  }
}
#event-calendar-price #event-calendar-price-close {
  cursor: pointer;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
}
#event-calendar-price #event-calendar-price-close svg path {
  fill: #C7017F;
}
#event-calendar-price #event-calendar-price-description {
  margin-top: 15px;
}
#event-calendar-price #event-calendar-price-wrong {
  align-content: center;
  height: 100%;
}
#event-calendar-price #event-calendar-price-wrong div {
  text-align: center;
}
#event-calendar-price .event-calendar-price-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#event-calendar-price .event-calendar-price-actions .btn {
  font-size: 18px;
  font-weight: bold;
  padding: 13px 30px 10px 30px;
}
#event-calendar-price .event-calender-price-date h2 {
  padding: 0 !important;
}

.event-calendar-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 576px) {
  .event-calendar-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .event-calendar-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1400px) {
  .event-calendar-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}
.event-calendar-wrapper .event-calendar-item-wrapper {
  cursor: pointer;
  position: relative;
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item {
  container-type: inline-size;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  overflow: visible;
  transform: translateZ(0) rotateY(0);
  transform-origin: left center;
  transition: all 500ms ease-in-out;
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item::before {
  background-color: white;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item:hover {
  transform: perspective(1200px) rotateY(-22deg);
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item.active::before {
  animation: zIndexSwap 500ms ease-in-out;
  opacity: 1;
  z-index: 100;
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item:not(.active)::before {
  animation: zIndexSwapBack 500ms ease-in-out;
  opacity: 0;
  z-index: 1;
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item img {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 10;
}
.event-calendar-wrapper .event-calendar-item-wrapper .event-calendar-item .event-calendar-number {
  color: white;
  position: absolute;
  z-index: 11;
}

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