/** Styles for Marktplatz.TheaterLueneburg:Component.Molecule.Schedule */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.Schedule {
  margin-bottom: var(--spaces);
  padding: var(--spaces);
}
.Schedule .spinner {
    width: var(--spaces);
    height: var(--spaces);
    margin: var(--spaces);
    animation: spin 2s infinite linear;
  }
.Schedule .Schedule-rowsContainer {
    margin-top: var(--spaces);
  }
.Schedule .Schedule-row {
    display: none;
    grid-template-columns: 1fr;
    gap: calc(var(--spaces) * 0.7);
    align-items: center;
    margin-bottom: var(--spaces);
    padding: var(--spaces);
  }
.Schedule .Schedule-row.is--visible {
      display: grid;
    }
@media screen and (min-width: 1024px) {
.Schedule .Schedule-row {
      grid-template-columns: 1fr auto 1fr;
  }
    }
.Schedule .no-performances {
    display: flex;
    flex-direction: column;
    gap: var(--spaces);
    align-items: center;
    justify-content: center;
    padding: var(--spaces);
  }
.Schedule--production .Schedule-rowsContainer {
    margin-top: 0;
  }
.ScheduleContainer + .ScheduleContainer {
  margin-top: -2.125rem;
}
