@charset "UTF-8";
h1, h2, h3 {
  font-weight: normal;
}

h1 {
  font-size: 43.2pt;
}

h2 {
  font-size: 28.8pt;
}

h3 {
  font-size: 21.6pt;
}

menu.main-nav li {
  font-family: Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
  font-size: 16pt;
}

p {
  line-height: 1.4em;
}

small {
  font-size: 16.2pt;
}

html {
  background: #234;
  color: #fff;
  font-family: "FreeSerif", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", "Droid Serif", serif;
  font-size: 18pt;
}

body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: #adf;
}

a:visited {
  color: #abc;
}

a:hover {
  color: #def;
}

main {
  width: 75%;
  max-width: 65ch;
  margin: auto;
  padding: 1em 2em;
}
main li {
  line-height: 1.333em;
  margin-bottom: 0.5em;
}
main .showtime-list li {
  margin-bottom: 0;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.full-bleed img {
  width: 100vw;
  height: auto;
}

.movie-showtime-summary {
  font-size: 75%;
}
.movie-showtime-summary:before {
  content: " » ";
}

.movie-rating {
  font-size: 85%;
  font-style: italic;
}

h2.evans-slide .movie-rating {
  font-size: 66%;
}

#evans-logo-header {
  max-height: 1em;
  color: #fff;
}

menu.main-nav, ul.main-nav {
  margin-left: 0;
  padding-left: 0;
  text-align: right;
}
menu.main-nav li, ul.main-nav li {
  display: inline;
  list-style: none;
  margin-right: 0.25em;
  padding: 0.25em;
}
menu.main-nav li:hover, ul.main-nav li:hover {
  background: #456;
  border-radius: 6px;
}
menu.main-nav li:hover a, ul.main-nav li:hover a {
  color: #fff;
}
menu.main-nav li.nav-current-page, ul.main-nav li.nav-current-page {
  background: #456;
  border-radius: 6px;
}

p.upcoming-movie-excerpt {
  margin-left: 2em;
}

.article-date {
  font-size: 0.95rem;
  font-style: italic;
}

footer {
  margin: auto;
  text-align: center;
  margin-bottom: 0;
}
footer ul li {
  display: inline;
}
footer ul li + li::before {
  content: " | ";
}

.hide-me {
  color: #234;
  font-size: 1px;
}

aside {
  background: rgb(47.6, 71.4, 95.2);
  padding: 1em;
  border: 1px solid #7799bb;
  border-radius: 8px;
  font-size: 90%;
}
aside .icon {
  display: block;
  float: left;
  padding-right: 1.5em;
  font-size: 2em;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: rgb(17, 25.5, 34);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  max-height: 1.5rem;
  padding: 0.25em;
  margin: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

h1.logo {
  font-size: 1rem;
  margin-left: 1em;
}
h1.logo a {
  text-decoration: none;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0;
  overflow: hidden;
}
.menu > li a {
  text-decoration: none;
  padding: 0.5em;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 800px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: rgb(17, 25.5, 34);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}
.social-media-list-large span {
  margin-right: 0.5em;
  width: 2em;
  height: 2em;
}

.social-media-list span {
  margin-right: 1em;
  width: 1em;
  height: 1em;
}

.facebook-icon {
  display: inline-block;
  --svg: url( "/images/svg/facebook-icon.svg" );
  background-color: #0866FF;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.instagram-icon {
  display: inline-block;
  --svg: url( "/images/svg/instagram-icon.svg" );
  background-color: hotpink;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.bluesky-icon {
  display: inline-block;
  --svg: url( "/images/svg/bluesky-icon.svg" );
  background-color: #1185FE;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.bringAFriend-icon {
  display: inline-block;
  --svg: url( "/images/svg/bring-a-friend-icon.svg" );
  background-color: #def;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.give-a-gift {
  display: inline-block;
  --svg: url( "/images/svg/gift-icon.svg" );
  background-color: #def;
  height: 1em;
  width: 1em;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.eleventy-plugin-youtube-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.eleventy-plugin-youtube-embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.eleventy-plugin-embed-openstreetmap {
  aspect-ratio: 4/3;
}

@media screen and (max-width: 992px) {
  ul.showtime-list li {
    display: block;
  }
  ul.showtime-list li + li::before {
    content: none;
  }
  footer {
    width: 95%;
    max-width: 95%;
    text-align: left;
  }
  footer ul li {
    display: block;
  }
  footer ul li + li::before {
    content: none;
  }
  footer .social-media-list {
    text-align: center;
  }
  main {
    width: 95%;
    max-width: 95%;
  }
  blockquote.upcoming-movie-excerpt {
    margin-left: 0;
  }
  .movie-showtime-summary {
    font-size: 1em;
  }
  .movie-rating {
    font-size: 1em;
  }
}
@media screen and (max-width: 800px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 1.75em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.25em;
  }
  main {
    max-width: 95%;
  }
  small {
    font-size: 1em;
  }
}

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