html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.3em;
  }
}

@media only screen and (min-width: 1024px) {
  body {
    font-size: 1.4em;
  }
}

@media only screen and (min-width: 1300px) {
  body {
    font-size: 1.5em;
  }
}

@media only screen and (min-width: 1600px) {
  body {
    font-size: 1.6em;
  }
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
}

img.logo-image {
  max-height: 120px;
}

h1, h2, h3, h4, .site-header nav a, strong, b, nav li.active, .name, button {
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1, h2, h3, h4, th, strong, b {
  font-weight: normal;
  font-size: 1em;
}

h1, h2, h3, h4, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style: none;
  margin: 0;
}

.name {
  white-space: nowrap;
}

.hyphens {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.site-header {
  margin: 0 0 2em;
  line-height: 1;
}

.site-header nav {
  padding: 0 0 0 0;
}

.site-header nav h1 {
  margin: 0;
  font-weight: normal;
}

.site-header nav ul {
  margin: 1.2rem 0 0;
  padding: 0 0 0 40px;
}

.site-header nav ul li {
  color: yellow;
}

.site-header nav ul li a {
  color: white;
}

.site-header nav ul li.about {
  margin-left: 0;
}

.site-header nav ul li.shows {
  margin-left: 15px;
}

.site-header nav ul li.artists {
  margin-left: 30px;
}

.site-header nav ul li.works {
  margin-left: 45px;
}

.site-header nav ul li.images {
  margin-left: 60px;
}

.images-index {
  background: #eab2af;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 0;
}

.images-index .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8999;
}

.images-index a {
  color: white;
}

.images-index ul.images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
}

.images-index ul.images li {
  padding: 0;
  margin: 0;
  height: 200px;
  width: 200px;
  position: relative;
  overflow: hidden;
}

.images-index ul.images li figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.images-index ul.images li figure.video a {
  position: relative;
}

.images-index ul.images li figure.video a:after {
  content: "Video";
  text-transform: uppercase;
  letter-spacing: .04em;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}

.images-index ul.images li figure a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.images-index ul.images li figure a img {
  width: 50%;
  height: auto;
}

.images-index ul.images li.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.images-index ul.images li.logo img {
  border-color: blue;
}

.images-index ul.images li:first-child {
  margin-left: 208px;
}

@media only screen and (max-width: 767px) {
  .images-index ul.images {
    display: block;
  }
  .images-index ul.images li {
    display: block;
    width: 100%;
    height: auto;
  }
  .images-index ul.images li figure {
    width: 100%;
    height: auto;
  }
  .images-index ul.images li figure a {
    height: auto;
  }
  .images-index ul.images li figure a img {
    width: 100% !important;
    height: auto;
  }
  .images-index ul.images li:first-child {
    margin-left: 0;
  }
  .images-index ul.images li:last-child {
    margin-bottom: 0;
  }
  .images-index ul.images li.logo {
    margin: 3em 0;
  }
}

.image-wrapper {
  display: block;
  position: relative;
}

.image-wrapper button {
  position: absolute;
  z-index: 9;
  font-size: 1em;
  color: yellow;
  background: transparent;
  border-radius: none;
  border: none;
  outline: none;
  padding: 0;
  line-height: 1;
}

.image-wrapper button:active, .image-wrapper button:focus {
  outline: none;
  -moz-outline-style: none;
}

.image-wrapper .playpause {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 400ms ease-out;
  transition: opacity 400ms ease-out;
}

.image-wrapper .soundmute {
  top: 0;
  right: 0;
  margin: 1.2rem 32px 0 0;
  padding: 0 8px;
}

.image-wrapper .soundmute:before {
  content: "";
  border-bottom: 2px solid yellow;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.image-wrapper.playing .playpause {
  opacity: 0;
}

.image-wrapper.playing .soundmute {
  display: block;
}

.image-wrapper.playing.sound .soundmute:before {
  display: none;
}

.shows-index,
.single-show {
  background: #222;
  color: white;
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shows-index button, .shows-index header, .shows-index nav,
.single-show button,
.single-show header,
.single-show nav {
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.3), 0 0 8px rgba(0, 0, 0, 0.3);
}

.shows-index a,
.single-show a {
  color: white;
}

.shows-index article,
.single-show article {
  margin: 0 0 2em;
}

.shows-index article header,
.single-show article header {
  width: 100%;
  text-align: center;
  padding: 0 8px;
  margin: 0 0 1em;
  color: yellow;
}

.shows-index article header h2,
.single-show article header h2 {
  font-style: italic;
}

.shows-index article header ul,
.single-show article header ul {
  margin: 0;
  padding: 0;
}

.shows-index article header ul li,
.single-show article header ul li {
  margin: 0 0 1em;
}

.shows-index article header a.read-more,
.single-show article header a.read-more {
  color: yellow;
}

.shows-index figure.fullscreen,
.shows-index figure.fullwidth,
.single-show figure.fullscreen,
.single-show figure.fullwidth {
  margin: 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .shows-index figure.fullscreen .image-wrapper,
  .shows-index figure.fullwidth .image-wrapper,
  .single-show figure.fullscreen .image-wrapper,
  .single-show figure.fullwidth .image-wrapper {
    position: relative;
  }
  .shows-index figure.fullscreen .image-wrapper iframe,
  .shows-index figure.fullwidth .image-wrapper iframe,
  .single-show figure.fullscreen .image-wrapper iframe,
  .single-show figure.fullwidth .image-wrapper iframe {
    min-width: 100% !important;
    width: 100% !important;
  }
}

@media only screen and (min-width: 768px) {
  .shows-index .site-header,
  .single-show .site-header {
    position: fixed;
    -webkit-transform: translateZ(0);
    top: 0;
    left: 0;
    z-index: 8999;
  }
  .shows-index h1.logo,
  .single-show h1.logo {
    position: fixed;
    -webkit-transform: translateZ(0);
    top: 66%;
    left: 55%;
    z-index: 99;
  }
  .shows-index article,
  .single-show article {
    margin: 0;
  }
  .shows-index article header,
  .single-show article header {
    position: absolute;
    bottom: 8%;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 99;
  }
  .shows-index article header.multiple,
  .single-show article header.multiple {
    bottom: 0;
    height: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .shows-index article header.multiple ul,
  .single-show article header.multiple ul {
    max-width: 90%;
  }
  .shows-index article header .single,
  .single-show article header .single {
    margin-top: 1em;
  }
  .shows-index article header a:hover,
  .single-show article header a:hover {
    color: yellow;
  }
  .shows-index article footer,
  .single-show article footer {
    margin-bottom: 10rem;
  }
  .shows-index figure.fullscreen,
  .single-show figure.fullscreen {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .shows-index figure.fullscreen .image-wrapper,
  .single-show figure.fullscreen .image-wrapper {
    position: absolute;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
  }
  .shows-index figure.fullscreen .image-wrapper img,
  .shows-index figure.fullscreen .image-wrapper iframe,
  .single-show figure.fullscreen .image-wrapper img,
  .single-show figure.fullscreen .image-wrapper iframe {
    position: absolute;
  }
  .shows-index figure.fullscreen .image-wrapper img,
  .single-show figure.fullscreen .image-wrapper img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 20%;
    min-height: 20%;
    width: auto;
    height: auto;
    display: block;
    max-width: none;
    max-height: none;
  }
  .shows-index figure.fullscreen .image-wrapper iframe,
  .single-show figure.fullscreen .image-wrapper iframe {
    width: 100vw;
    min-height: 100vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .shows-index figure.fullscreen .image-wrapper .soundmute,
  .single-show figure.fullscreen .image-wrapper .soundmute {
    top: 40%;
    right: 40%;
  }
  .shows-index figure.fullwidth .image-wrapper iframe,
  .single-show figure.fullwidth .image-wrapper iframe {
    width: 100vw;
  }
}

@media only screen and (max-width: 767px) {
  .shows-index h1.logo,
  .single-show h1.logo {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    margin: 3em 0 !important;
  }
  .shows-index h1.logo a,
  .single-show h1.logo a {
    display: block;
    width: 100%;
  }
  .shows-index h1.logo a img,
  .single-show h1.logo a img {
    margin: 0 auto !important;
  }
}

.single-show article header {
  position: relative;
}

.single-show article ul.images {
  padding: 0;
  display: block;
}

.single-show article ul.images li {
  display: block;
}

.single-show article footer {
  color: yellow;
  padding: 0 8px;
  margin: 1em 0 3em;
  text-align: center;
}

.single-show article footer .text,
.single-show article footer .text p {
  text-align: left;
}

.single-show article footer .text {
  margin: 1em 0 0;
}

.single-show article footer .text p {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .single-show article header {
    position: fixed;
  }
  .single-show article footer .text,
  .single-show article footer .text p {
    text-align: left;
  }
  .single-show article footer .text {
    margin: 2em 3em 10em;
  }
  .single-show article footer .text p {
    margin: 0;
  }
}

.shows-index article {
  display: block;
  position: relative;
}

.artists-index,
.single-artist {
  background: gray;
}

.artists-index .site-header nav ul li,
.single-artist .site-header nav ul li {
  color: black;
}

.artists-index .site-header nav ul li a,
.single-artist .site-header nav ul li a {
  color: blue;
}

.artists-index ul#artists {
  display: block;
  -webkit-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  padding: 0 0 0 250px;
  margin: 0 0 100px;
}

.artists-index ul#artists li {
  display: inline-block;
  width: 100%;
  height: 6rem;
  margin: 0 0 0;
}

.artists-index ul#artists li a span {
  display: block;
}

.artists-index ul#artists li a .name {
  white-space: normal;
}

.artists-index ul#artists li.logo {
  padding: 0;
  height: 12rem;
}

.artists-index ul#artists li.logo img {
  margin: 1.2rem auto 0;
}

@media only screen and (max-width: 1440px) {
  .artists-index ul#artists {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

@media only screen and (max-width: 1200px) {
  .artists-index ul#artists {
    padding: 0 0 0 100px;
  }
}

@media only screen and (max-width: 1000px) {
  .artists-index ul#artists {
    -webkit-column-count: 2;
            column-count: 2;
    padding: 0 0 0 140px;
  }
}

@media only screen and (max-width: 767px) {
  .artists-index ul#artists {
    -webkit-column-count: 1;
            column-count: 1;
    padding: 0;
    text-align: center;
  }
}

@media only screen and (min-width: 1024px) {
  .artists-index ul#artists li a:hover {
    color: blue;
  }
}

.works-index .site-header nav ul li,
.works-index .site-header nav ul li a,
.single-work .site-header nav ul li,
.single-work .site-header nav ul li a {
  color: black;
}

@media only screen and (min-width: 1024px) {
  .works-index .site-header nav ul li.active,
  .works-index .site-header nav ul li a:hover,
  .single-work .site-header nav ul li.active,
  .single-work .site-header nav ul li a:hover {
    position: relative;
  }
  .works-index .site-header nav ul li.active:before,
  .works-index .site-header nav ul li a:hover:before,
  .single-work .site-header nav ul li.active:before,
  .single-work .site-header nav ul li a:hover:before {
    content: "\2022";
    display: inline-block;
    position: absolute;
    top: 0;
    left: -20px;
  }
}

ul#works {
  -webkit-column-count: 4;
          column-count: 4;
  padding: 0 100px;
  overflow: visible;
}

ul#works li {
  overflow: visible;
  margin: 0 0 2.4em;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}

ul#works li header {
  padding-right: 20px;
  margin: 0 0 1.2rem;
}

ul#works li header h1, ul#works li header h2, ul#works li header p {
  margin: 0;
}

ul#works li figure {
  width: 200px;
  margin: 0 auto;
}

ul#works li figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

ul#works li.logo img {
  margin: 5em 0;
}

@media only screen and (max-width: 1600px) {
  ul#works {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

@media only screen and (max-width: 1200px) {
  ul#works {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

@media only screen and (max-width: 1023px) {
  ul#works {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 767px) {
  ul#works {
    -webkit-column-count: 1;
            column-count: 1;
    padding: 0;
  }
  ul#works li:last-child {
    margin-bottom: 0;
  }
  ul#works li figure {
    width: 100%;
  }
  ul#works li figure img {
    width: 100% !important;
  }
  ul#works li header {
    padding-left: 8px;
  }
}

figure.table {
  display: table;
  margin: 0 auto;
}

figure.table .table-row {
  display: table-row;
}

figure.table .table-row .table-cell {
  display: table-cell;
}

figure.table .table-row figcaption.table-cell {
  max-width: 20px;
  padding-top: 12px;
}

.single-image {
  background: #222;
  color: white;
}

.single-image a {
  color: white;
}

.single-image .logo {
  margin-top: 64px;
}

.single-image figure iframe {
  width: 100vw;
  max-height: 100vh;
  background: black;
}

.single-image figure figcaption {
  padding-top: 1em !important;
}

.single-image figure figcaption h2, .single-image figure figcaption h3, .single-image figure figcaption h4 {
  padding: 0 8px;
}

.single-image figure figcaption ul#works {
  margin-top: 1em;
  padding-left: 0;
}

@media only screen and (min-width: 768px) {
  .single-image .site-header {
    position: fixed;
    -webkit-transform: translateZ(0);
    top: 8px;
    left: 8px;
    z-index: 8999;
  }
}

.single-artist h1 {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto 1em;
}

.single-artist .text {
  margin: 0 0 1em;
  padding: 0 8px;
}

.single-artist ul#works {
  margin: 2em auto 3em;
}

.single-work figcaption.first {
  padding: 0 0 1em !important;
}

.single-work figcaption.last {
  padding: 0 !important;
}

@media only screen and (max-width: 767px) {
  .single-work figcaption,
  .single-work figcaption.first,
  .single-work figcaption.last {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

.stations {
  background: #E1AB73;
}

.stations .site-header .active {
  color: black;
}

.stations article {
  padding: 0 40px;
}

.stations article #newsletter-signup {
  margin-bottom: 2.1em;
}

.stations article #newsletter-signup form {
  padding: 0;
}

.stations article #newsletter-signup form input {
  border-radius: 0;
  font-size: 1em;
  padding: 5px 8px 6px;
  line-height: 1;
  outline: none;
}

.stations article #newsletter-signup form input.email {
  width: 15em;
  max-width: 100%;
  background: transparent;
  color: black;
  line-height: 1;
  border: 2px solid #462b0f;
  border-right-color: white;
  border-bottom-color: white;
  margin: 0 0 .7em;
}

.stations article #newsletter-signup form input.email.mce_inline_error {
  background: tomato;
}

.stations article #newsletter-signup form input.button {
  border: 2px solid white;
  border-right-color: #462b0f;
  border-bottom-color: #462b0f;
  background: transparent;
  color: white;
  text-transform: uppercase;
  letter-spacing: .04em;
  outline: none;
}

.stations article #newsletter-signup form div.response,
.stations article #newsletter-signup form div.mce_inline_error {
  background: transparent;
  padding: 0;
  margin: 0 0 .7em;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.4;
}

.stations article #newsletter-signup form div.mce_inline_error,
.stations article #newsletter-signup form #mce-error-response {
  color: tomato;
}

.stations article p {
  margin: 0 auto .7em;
  color: black;
  line-height: 1.4;
}

.stations article img {
  display: block;
  margin: 0 auto 1.4em;
  width: 100%;
  height: auto;
  max-width: 600px;
}

.stations article .logo {
  display: table;
  margin: 3em auto;
}

.stations article .logo a {
  display: table-cell;
}

@media only screen and (min-width: 768px) {
  .stations {
    position: relative;
  }
  .stations article {
    position: absolute;
    top: 0;
    right: 0;
    width: 66.67%;
    padding: 0 40px 1.2rem 0;
  }
}

@media only screen and (min-width: 1200px) {
  .stations article {
    width: 50%;
  }
}
/*# sourceMappingURL=style.css.af4e7a3a6ad9.map */