*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
html {
  scroll-behavior: smooth;
  height: 100vh;
  scroll-padding: 8rem;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.2;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: highwayGothic;
  src: url(HWYGCOND.TTF);
}
html {
  scroll-behavior: smooth;
  height: 100svh;
  font-size: 36px;
}
@media (min-device-width: 800px) {
  html {
    font-size: 18px;
  }
  .fringe-partner {
      min-width: 300px;
  }
}

body {
  font-family: "Segoe UI";
  color: #212121;
  background-color: #fdfdfd;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

main {
  text-align: center;
}

footer {
  margin-top: auto;
  min-height: 5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffc300;
  font-size: 1rem;
  font-style: italic;
}

.copy-wrapper {
  max-width: 80ch;
  margin: auto;
  text-align: left;
  padding: 2.5em;
  padding-top: 0em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: highwayGothic;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  margin-top: 1rem;
}

h2 {
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-blue {
  background-color: #008DD4;
  color: #fdfdfd;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

p, q {
  text-wrap: pretty;
  font-family: "Segoe UI";
}

.button-green {
  text-align: center;
  font-family: highwayGothic;
  text-transform: uppercase;
  margin-top: 2rem;
}
.button-green a, .button-green button {
  padding: 1rem 2rem;
  font-size: 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background-color: #01479c;
  color: #fdfdfd;
}

.success-message {
  justify-content: center;
  background-color: green;
  color: #fdfdfd;
  border-radius: 0.5em;
  width: 100%;
  display: none;
  height: 3rem;
  margin-top: 2rem;
  align-items: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-wrapper {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  margin-top: 8rem;
  border-radius: 0.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 5rem;
  padding: 0rem 1rem;
  background-color: #01479c;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
  color: #fdfdfd;
  font-family: "highwayGothic";
  font-size: 2rem;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header a {
  text-decoration: none;
  color: inherit;
}
header a:hover, header li.selected a {
  background-color: #013285;
}
header nav {
  /*transition-delay: 0.1s;
  transform: translateY(-100%);
  transition-duration: 200ms;
  transition-timing-function: ease-out;*/
  display: none;
  font-size: 1.5rem;
}
header nav ul {
  list-style-type: none;
}
header .header-logo {
  display: flex;
  align-items: center;
}
header .hamburger-button {
  display: none;
}
header .hamburger-button:checked header {
  display: fixed;
}
header .hamburger-button:checked ~ .hamburger-icon, header .hamburger-button:checked ~ .header-logo {
  height: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
header .hamburger-button:checked ~ nav {
  /*transform: translateY(0px);
  transition-duration: 200ms;
  transition-timing-function: ease-out;*/
  display: inline;
  width: 100%;
  flex-basis: 100%;
  transform: scaleY(1);
}
header .hamburger-button:checked ~ nav li {
  width: 100%;
}
header .hamburger-button:checked ~ nav a {
  display: inline-block;
  width: 100%;
}
header .hamburger-button:checked ~ * .hamburger-icon-stroke {
  left: 0.25rem;
  top: 1rem;
}
header .hamburger-button:checked ~ * .stroke-1 {
  width: 0.25rem;
  left: 1rem;
}
header .hamburger-button:checked ~ * .stroke-2 {
  width: 1.75rem;
  scale: 100%;
}
header .hamburger-button:checked ~ * .stroke-3 {
  width: 0.25rem;
  left: 1rem;
}
header .hamburger-button:checked ~ * .stroke-4 {
  width: 1.75rem;
  scale: 100%;
}
header .hamburger-button:checked ~ * .stroke-5 {
  width: 0.25rem;
  left: 1rem;
}
header .hamburger-icon {
  width: 2.75rem;
  height: 2.75rem;
  /*border: 0.25rem solid;
  border-radius: 5px;
  border-color: variables.$color-white;*/
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
}
header .hamburger-icon-stroke {
  display: block;
  width: 1.75rem;
  height: 0.25rem;
  border-radius: 18px;
  background-color: white;
  position: absolute;
  left: 0.25rem;
  transition-timing-function: ease-out;
  transition-duration: 200ms;
}
header .stroke-1 {
  top: 0.375rem;
}
header .stroke-2 {
  top: 1rem;
  transform: rotate(45deg);
  width: 0.25rem;
  left: 1rem;
  scale: 70%;
}
header .stroke-4 {
  top: 1rem;
  transform: rotate(-45deg);
  width: 0.25rem;
  left: 1rem;
  scale: 70%;
}
header .stroke-3 {
  top: 1rem;
}
header .stroke-5 {
  top: 1.625rem;
}
@media (width > 1300px) {
  header nav {
    display: flex;
    align-items: center;
  }
  header .hamburger-icon {
    display: none;
  }
  header ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  header ul a {
    padding: 1.5rem 2rem;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: auto;
  gap: 1rem;
  padding-top: 1rem;
}

.form-fields {
  flex-grow: 1;
}

.form-submit {
  flex-grow: 1;
  align-self: flex-end;
  margin: auto;
  align-items: end;
  padding: 0;
  margin-bottom: 0;
  min-width: 20ch;
}

input[type=text], input[type=email], textarea {
  width: 100%;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
}

label, input[type=submit] {
  font-family: highwayGothic;
  font-size: 1.5rem;
  text-transform: uppercase;
}

input[type=submit] {
  padding: 0.5rem 1rem;
  width: 100%;
  background-color: #ffc300;
  color: #212121;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
}

.social-media-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
}
.social-media-icons a {
  width: 5em;
  height: 5em;
  display: flex;
  align-items: center;
}

@media only screen and (min-device-width: 800px) {
  .social-media-icons {
    flex-direction: row;
  }
  
}
table {
  border-collapse: collapse;
  line-height: 1.2;
}

td {
  padding: 0.125rem 0.25rem;
}

.td-left {
  text-align: left;
}

.td-right {
  text-align: right;
}

.performance-table-header {
  text-align: center;
  font-family: highwayGothic;
  line-height: 1.2;
  font-size: 2em;
  margin-bottom: 0;
  margin-top: 0;
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 70ch;
  max-width: 95%;
  margin-inline: auto;
  padding-bottom: 2rem;
}

.accordion-panel {
  overflow: hidden;
  background-color: #fdfdfd;
  color: #212121;
  border-radius: 0.25rem;
  transition: max-height 0.4s ease-out;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
}

.accordion-title {
  background-color: #fdfdfd;
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 1rem 0.5rem;
}
.accordion-title button {
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 100%;
  /*height: 3rem;*/
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 1.5rem;
}
.accordion-title button h2, .accordion-title button p {
  padding: 0;
  margin: 0;
  align-self: center;
  font-size: 1.25rem;
  font-family: highwayGothic;
  text-transform: uppercase;
  font-weight: inherit;
}
.accordion-title button h2 {
  text-align: left;
}

.accordion-container {
  height: auto;
  max-height: 0;
  min-height: 0;
  transition: max-height 0.4s ease-out;
}

.accordion-container[aria-expanded=true] {
  height: auto;
  max-height: 300px;
  min-height: 100%;
}

.accordion-content {
  padding: 1rem;
}

/*
.accordion-wrapper {
    width: 70ch;
    max-width: 95%;
    margin-inline: auto;
}

.accordion-panel {
    background-color: lightgray;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    box-shadow: 0px 3px 9px 3px darkgrey;
}

.accordion-title {
    padding: 1rem;
    background-color: green;
    color: white;
    border-radius: 0.25rem;
    transition: 0.4s;
    cursor: pointer;
}

.accordion-title:hover {
    background-color: darkgreen;
}

.accordion-container {
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    margin-top: -2rem;
    transition: max-height 0.4s ease-out;
}

.accordion-button {

    text-align: center;
    text-decoration: none;
    padding: 1rem;
}

.accordion-button a {
    text-decoration: none;
    background-color: green;
    margin: 1rem;
    color: white;
    border: none;
    font-weight: bold;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 0.25rem;
    width: 100%;
    height: 100%;
}

.accordion-sublist {
    list-style-type: none;
    font-size: smaller;
}
*/
.accordion-footnotes {
  text-align: right;
  font-size: smaller;
}

/*
.active {
    background-color: darkgreen;
}

.active:after {

}*/
.accordion-trigger {
  font-weight: bold;
  color: #fdfdfd;
}

.accordion-green .accordion-title {
  background-color: green;
}
.accordion-green .accordion-title button {
  color: #fdfdfd;
}

.accordion-red .accordion-title {
  background-color: red;
}
.accordion-red .accordion-title button {
  color: #fdfdfd;
}

.accordion-button {
  text-align: center;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.accordion-button-object {
  margin: auto;
  background-color: #ffc300;
  color: #212121;
  font-family: "highwayGothic";
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-size: 2rem;
  border-radius: 0.5rem;
  border: none;
  margin-top: 3rem;
  text-decoration: none;
}

.discounted-price {
  background-color: green;
  color: #fdfdfd;
  border-radius: 0.25rem;
  padding: 0 0.125rem;
  font-weight: bold;
}

.hero-section {
  background-image: linear-gradient(#013285, #008DD4);
  width: 100%;
  min-height: 50%;
  color: #fdfdfd;
  padding-bottom: 1rem;
}
.hero-section h1 {
  padding-top: 6rem;
  font-size: 5rem;
  margin-bottom: 0;
}

@media only screen and (min-device-width: 800px) {
  .hero-image {
    max-width: 500px;
    z-index: 0;
  }
}
.hero-image {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  padding-top: 2rem;
}

.byline {
  font-style: italic;
  font-size: 1rem;
  z-index: 100;
  position: relative;
  padding-top: 0.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  z-index: 100;
}

.hero-negative-space {
  flex: 0 0 33%;
}

.subheading {
  margin-bottom: 3rem;
}

.hero-text {
  flex: 0 0 33%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.hero-schedule {
  flex: 0 0 33%;
  margin: auto;
  z-index: 100;
}

.hero-button {
  margin-bottom: 3rem;
}
.hero-button a {
  background-color: #ffc300;
  font-family: highwayGothic;
  text-decoration: none;
  color: #212121;
  text-transform: uppercase;
  border-radius: 0.5rem;
  padding: 0.75em 2em;
  font-size: 2em;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
}

.byline {
  top: 1rem;
  font-size: 100%;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.performance-table-data {
  margin: auto;
}

.cast-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-around;
  max-width: 161ch;
  margin: auto;
}

.castmember {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 40ch;
}

.cast-details {
  order: 2;
}
.cast-details h3 {
  font-size: 2rem;
}

.cast-role {
  font-size: 1.5rem;
  font-style: italic;
}

.cast-bio {
  text-align: left;
  margin-top: 0.5rem;
}

.cast-headshot {
  order: 1;
  border-radius: 50%;
  aspect-ratio: 1/1;
  min-height: 40ch;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
}

.program-directors-notes blockquote {
  font-style: italic;
}

.program-directors-notes-attr {
  text-align: right;
}

.fringe-partner-wrapper {
  margin: 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3rem;
}

.fringe-partner {
  display: flex;
  min-width: 600px;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: white;
  color: #212121;
  padding-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
}

.fringe-partner-data {
  order: 2;
  text-align: center;
}

.fringe-partner-data p {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.fringe-partner-photo {
  order: 1;
  width: 100%;
  height: auto;
}

.fringe-partner-button {
  order: 3;
  margin: auto;
  padding-top: 1rem;
  text-align: center;
}

.fringe-partner-button a {
  padding: 0.5rem 3rem;
  background-color: #ffc300;
  border-radius: 5px;
  border: 0;
  font-family: highwayGothic;
  text-transform: uppercase;
  text-decoration: none;
  color: #212121;
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.075), 0 2px 2px hsla(0, 0%, 0%, 0.075), 0 4px 4px hsla(0, 0%, 0%, 0.075), 0 8px 8px hsla(0, 0%, 0%, 0.075), 0 16px 16px hsla(0, 0%, 0%, 0.075);
}



/*@use '_contact';
@use '_media';
@use '_tickets';*//*# sourceMappingURL=styles.css.map */