/*  MIXINS  */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: normal;
  src: local('Bebas Neue'), url('../fonts/bebasneue_regular-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Bebas Neue Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Bebas Neue Bold'), url('../fonts/bebasneue_bold-webfont.woff') format('woff');
}
@font-face {
  font-family: 'Bebas Neue Light';
  font-style: normal;
  font-weight: normal;
  src: local('Bebas Neue Light'), url('../fonts/bebasneue_light-webfont.woff') format('woff');
}

$black : #000;
$white : #fff;
$lt-gray: #c1c1c1;
$gray: #aaa;
$dk-gray: #555;
$red : #e40f0f;
// $gold: #ceb374;
$gold: #efbf3f;
$blue: #1c81cf;
$purple: #320f96;

html, body {
  background: #000;
  color: #fff;
  line-height: 2rem;
}

p, ul, ol, dl {
  line-height: 1.65rem;
}
h1 { font-size: 6.854rem; }
h2 { font-size: 4.236rem; }
h3 { font-size: 2.618rem; }
h4 { font-size: 1.618rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.618rem; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Bebas Neue';
  line-height: 1em;

  &.light { font-family:  'Bebas Neue Light';}
  &.bold { font-family:  'Bebas Neue Bold';}
}

.bold { font-weight: bold; }
.italic { font-style: italic; }
.text-red { color: $red; }
.text-black { color: $black; }
.text-white { color: $white; }
.text-gray { color: $gray; }
.text-gold { color: $gold; }
.text-ltgray { color: $lt-gray; }
.text-dkgray { color: $dk-gray; }
.text-large { font-size: 1.2em; }
.text-xl { font-size: 1.5em; }
.text-2x { font-size: 2em; }
.text-small { font-size: .75em; }
.uppercase { text-transform: uppercase; }
.border-bottom { border-bottom: 1px solid $dk-gray; }
.bg-white { background-color: $white; }
.bg-black { background-color: $black; }
.bg-red { background-color: $red; }
.bg-gold { background-color: $gold; }

.block {
  display: block;
  width: 100%;
}

.button {
  font-weight: bold;
  font-size: .75rem;
  text-transform: uppercase;
  background: $blue;

  &:hover {
    background: darken($blue, 10%);
  }

  &.disabled {
    background-color: $dk-gray;
  }
}


body.modal-active {
  height: 100%;
  overflow: hidden;
}

.wrap {
  position: relative;
}
.row {
  max-width: 62.5rem;
}
.prize-money {
  display: inline-block;
  font-family: 'Bebas Neue Light';
  margin: 1px;
  font-size: 2rem;
  line-height: 1.3em;
}

.matte {
  background-image: url('../img/matte.jpg');
  background-position: 0 center;
  background-attachment: fixed;
  background-size: 300% 100%;
}

.matte-texture {
  background-image: url('../img/matte-bg.png');
  background-position: center top;
}

.gloss {
  background-color: #a8790a;
  background-image: url('../img/gloss.jpg');
  background-position: 0 center;
  background-attachment: fixed;
  background-size: 300% 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@media screen and (max-width: 640px) {
  thead.gloss {
    background-image: none;
  }
}

.gloss-text {
  color: transparent;
  background-color: $gold;
  background-image: url('../img/gloss-text.jpg');
  background-position: 0 center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.small-padding { padding: .3rem; }
.medium-padding { padding: .5rem; }
.large-padding { padding: 1rem; }

.spacer {
  display: block;
  clear: both;
  height: 1rem;
}
.spacer-large {
  display: block;
  clear: both;
  height: 2rem;
}
.seperator {
  height: .2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.title {
  font-family: 'Bebas Neue Bold';
}
.page-title {
  font-size: 4rem;
  line-height: 1em;

  span {
    font-size: .75em;
    line-height: .6em;
    display: block;
    color: $red;
  }
}
.sub-title {
  font-size: 3rem;
}
.section-title {
  font-size: 3rem;
  color: $red;
  text-shadow: 0 0 5px #000;
  line-height: 1em;
}

@media screen and (min-width: 40em) {
  .page-title { font-size: 5rem; }
}
@media screen and (min-width: 64em) {
  .page-title { font-size: 6rem; }
}





.small-12 {
  margin-bottom: 1rem;
}

.content {
    background: $black;
    color: $white;
}

.close-all {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 299;
	background: rgba(0,0,0,0.8);
}

.header-banner {
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    height: 200px;
    position: relative;
    margin-bottom: 2rem;

    .page-title {
      position: absolute;
      bottom: 0;

      span { font-size: 0.8em; line-height: 1em; }
    }
}

.site-header {
  background-color: #111;
  // background-image: url('../img/header-bg.png');
  // background-position: center top;
  position: fixed;
  width: 100%;
  z-index: 2000;

  .brand {
    display: inline-block;
    position: relative;
  }

  .brand img {
    width: 60px;
    height: auto;
  }

  .row { position: relative; }
  // .social-media {
  //   position: absolute;
  //   bottom: 1rem;
  //   right: 1rem;
  // }
}

.header-dates {
  padding: 1.5rem 0;
  line-height: 1.25rem;

  span {
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: .75rem;
  }

  .city-state {
    color: $gold;
    text-transform: uppercase;
    margin-bottom: 0;
  }
}

.annual-celebration {
  display: block;
  position: absolute;
  top: 5px;
  right: 15px;
  width: 225px;
}
.menu-toggle {
  display: block;
  position: absolute;
  z-index: 2500;
  padding: 2px;
  // top: 10px;
  right: 10px;
  font-size: 1.8rem;
  width: 1.8em;
  background: $black;
  color: $white;
  transition: .2s all;
  text-align: center;

  i {
    display: block;
    position: relative;
    padding: 10px;
  }

  &:hover {
    background: $red;
    color: $white;
  }
}

@media screen and (min-width: 64em) {
  .header-banner {
    height: 300px;
  }
  .site-header {
    position: relative;
    box-shadow: none;

    .brand {
      img {
        width: 150px;
      }
    }
  }
  .menu-toggle {
    display: none;
  }
}



.site-nav {
  position: fixed;
  top: 97px;
  left: -100%;
  z-index: 2100;
  width: 100%;
  transition: .2s all;

  &.active { left: 0; }

  .row { position: relative; }

  .nav {
    list-style-type: none;
    margin: 0;
    padding: 0 1rem;
    color: $white;
    display: flex;
    flex-direction: column;

    li {
      display: block;

      a, a:visited {
        font-family: 'Bebas Neue';
        color: $white;
        // font-weight: 900;
        text-transform: uppercase;
        font-size: 1.5rem;
        line-height: 1em;
        padding: .1em .5em;
        // background: $black;
        display: inline-block;
        margin-bottom: 2px;
        transition: .2s all;
        white-space: nowrap;

        &:hover {
          background: #333;
        }

        &.active {
          background: $red;
          color: $black;

          &:hover {
            background: darken($red, 10%);
          }
        }
      }
      &.has-dropdown {
        position: relative;
      }
      &.has-dropdown:hover > a {
        background: $black;
        color: $white;
        &:hover {
          background: #333;
        }
      }

      &.has-dropdown:hover {
        .sub-nav { display: block; }
      }
    }
    .city-select-container {
      display: table;
    }
    .city-select {
      display: table-row;
      list-style-type: none;
      margin: 0;
      padding: 0;
      width: 100%;
      background: rgba(0,0,0,0.5);
      color: $white;
      margin-bottom: 1rem;

      li {
        display: table-cell;

        a {
          color: $white;
          background: none;
        }
        a:active, a:hover, a.active {
          background: $white;
          color: $red;
        }
      }
    }

    .social-media-container {
      .social-media {
        padding: 0;
        margin: 0;
        li {
          display: inline-block;
          a {
            font-size: 1rem;
            line-height: 1rem;
          }
        }
      }
    }

    .sub-nav {
      list-style-type: none;
      margin: 0;
      margin-left: 1em;
      padding: 0;
      display: none;

      // li {
      //   a, a:visited {
      //     padding-left: 2rem;
      //   }
      // }
    }

    .sub-sub-nav {
      margin: 0;
      padding: 0;
      font-weight: bold;
      text-align: left;
      padding-left: 0;

      .sub-sub-nav-title {
        span {
          background: $black;
          color: $white;
          font-size: 1rem;
          line-height: 1em;
          // padding: .5rem 1rem;
          text-transform: uppercase;
          margin-bottom: 2px;
        }
      }
    }

  }
}

@media screen and (max-width: 64em) {
  .site-nav.gloss {
    background: none;
    box-shadow: none;
  }
}
@media screen and (min-width: 64em) {
  .site-nav {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto;
    text-align: center;
    transition: none;

    .nav {
      margin: 0 auto;
      padding: 0;
      background: none;
      position: relative;
      flex-direction: row;

      li {
        flex-grow: 1;
        a, a:visited {
          font-size: 1rem;
          line-height: 2em;
          margin-bottom: 0;
          background: none;

          &:hover {
            background: rgba(0,0,0,0.5);
          }
        }

        &.has-dropdown:hover > a {
          &:hover {
            background: $black;
          }
        }

        .sub-nav {
          position: absolute;
          background: $black;
          width: 100%;
          min-width: 200px;
          box-sizing: border-box;
          margin-left: 0;
          li {
            display: block;

            a {
              display: block;
              text-align: left;
              padding: .5rem 1rem;
              &:hover {
                background: #222;
              }
            }
          }
        }
      }

      &.nav-2 {
        position: absolute;
        top: -2rem;
        right: 1rem;
        width: auto;
        li {
          a {
            color: $gold;
            &:hover {
              background: none;
              color: darken($gold, 10%);
            }
          }
        }
      }

      // .social-media-container {
      //   position: absolute;
      //   top: -55px;
      //   right: 15px;
      // }
      .city-select-container {
        position: absolute;
        top: -60px;
        right: 15px;
      }
      .city-select {
        display: block;
        margin-bottom: 0;
        margin-right: 2px;

        a { font-size: 1.5rem; }
      }

      .sub-sub-nav {
        background: none;
        border-bottom: 1px solid #aaa;
        &:last-child {
          border-bottom: none;
        }
        .sub-sub-nav-title {
          span {
            display: block;
            padding: .5rem 1rem;
            background: #222;
          }
        }
      }
    }
  }
}



.site-body {
  // background-color: #1a1a1a;
  color: $white;
  padding-top: 50px;
  overflow-x: hidden;
  position: relative;
  min-height: 75vh;
}

.modal-active .site-body, .modal-active .site-footer {
  -webkit-filter: blur(5px); /* Safari */
  filter: blur(5px);
}

@media screen and (min-width: 64em) {
  .site-body {
    padding-top: 0;
  }
}

.event-details {
  list-style-type: none;
  padding: 0;
  margin: 0;

  li {
    display: block;
    position: relative;
  }
  .event-city {
    margin-top: 1rem;
    font-family: 'Bebas Neue';
    font-size: 3rem;
    line-height: 1em;
    font-weight: bold;
  }
  .event-date {
    font-weight: 900;
    line-height: 1.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid $white;
  }
  .event-venue {
    font-size: 1.2rem;
    line-height: 1em;
    margin-bottom: 1rem;
  }
  .event-cta {
  }
  // a {
  //   display: block;
  //   background: $red;
  //   color: $white;
  //   text-transform: uppercase;
  //   text-align: center;
  //   margin-bottom: 2px;
  //   font-weight: bold;
  //   padding: 5px;
  // }
}

.video-title {
  font-size: 1.75rem;
  font-family: 'Bebas Neue Bold';
  line-height: 1em;
  display: block;
  padding: .5rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-size: cover;
}

.video-container iframe, .video-container object, .video-container embed, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.site-footer {
  background: $black;
  color: $white;
  padding: 2rem 0;
  position: relative;

  .contact-info {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: $white;
    font-size: .8rem;
    line-height: 1.5em;
    text-align: center;

    a {
      color: $white;
    }
  }
  h5 {
    font-family: 'Montserrat';
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
  }

  .mailing-list-button {
    display: block;
    font-size: 1.25em;
    background: $red;
  }
}

@media screen and (min-width: 64em) {
  .site-footer {
    display: table;
    width: 100%;
    .column { display: table; }
    .contact-info {
      display: table-row;
      width: 100%;
      li { display: table-cell; }
    }
  }
}



.faculty-photo {}
.faculty-name {
  display: block;
  font-family: 'Bebas Neue';
  padding: .5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  line-height: .8em;
}



.soty-winner {
  display: block;
  position: relative;
  margin-bottom: 2rem;

  .soty-photo {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center center;
  }

  ul {
    list-style-type: none;
    margin: 0;
    padding: 1rem;
    width: 100%;
    text-align: center;

    li {
      display: block;
    }

    .soty-year {
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1em;
      margin-bottom: 10px;
    }
    .soty-studio {
      font-family: 'Bebas Neue Bold';
      text-transform: uppercase;
      font-size: 1.5rem;
      line-height: 1.2em;
    }
  }
}

.border-overlay {
  position: relative;
  &:after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 25px solid $black;
    border-image: url('../img/border.png') 30 30 stretch;
  }
}

.border {
  border: 25px solid $black;
  border-image: url('../img/border.png') 30 30 stretch;
}


.bd-year {
  margin-bottom: 2rem;
  text-align: center;
  vertical-align: top;
  .bd-year-title {
    font-family: 'Bebas Neue Bold';
    color: $gold;
  }
  .bd-winner {
    width: 50%;
    max-width: 300px;
    display: inline-block;
    padding: 5px;
    vertical-align: top;
  }
  ul {
    list-style-type: none;
    margin: 0;
    text-align: center;
  }

  li { padding: 5px; }
  .bd-photo {
    padding: 17px 12px;
    max-width: 200px;
    margin: 0 auto;
  }
  .bd-studio {
    padding: 0;
    line-height: 1em;
  }
  .bd-title {
    font-weight: bold;
    line-height: 1em;
    text-transform: uppercase;
    border-bottom: 1px dotted $white;

    span {
      color: $red;
    }
  }

  .bd-name {
    font-family: 'Bebas Neue';
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: bold;
  }

  .bd-video a {
    font-size: .75rem;
    line-height: 1em;
  }
}

@media screen and (min-width: 64em) {
  .soty-winner {
    ul {
      .soty-studio {
        font-size: 2rem;
        line-height: 1em;
      }
    }
  }
}

.selector {
  list-style-type: none;
  margin: 0;

  li {
    display: inline-block;

    a {
      display: block;
      margin-right: 10px;
      margin-bottom: 10px;
      color: $white;
      font-size: 1.25rem;
      font-weight: bold;
      background: $black;
      padding: 1rem;
      text-transform: uppercase;

      &:hover {
        color: $red;
      }
    }
  }
}

.award-selector {
  li {
    display: block;
    margin-bottom: 10px;
  }
}

.hof-selector {
  li {
    a {
      font-size: 1rem;
      padding: .5rem;
      margin-bottom: 1rem;
    }
  }
}

.hof-button {
  display: block;

  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  color: $gold;
  margin: 1rem 0;
  font-family: 'Bebas Neue Bold';
  padding: 2rem 1rem !important;
  transition: .2s all;

  span {
    display: block;
    font-size: .5em;
    font-family: 'Montserrat';
  }

  &:hover {
    border-color: $red;
    color: $red;
    background: $black;
  }
}
.table-body {
  width: auto;
  overflow-x: auto;
}
table {
  background: #1a1a1a;
  color: $white;
  table-layout: fixed;

  h1,h2,h3,h4,h5,h6 { margin: 0;}

  thead {
    background: #1a1a1a;
    th { text-align: inherit; line-height: 1.2em; }
  }

  tbody {
    background: #1a1a1a;

    tr:nth-child(even) {
      background: #222;
    }
  }

  thead, tbody, tfoot {
    border: 1px solid #ceb374;
  }

  &.first-column-bold {
    td:first-child {
      font-weight: bold;
    }
  }
}

.full-width { width: 100%; }
.auto-width { width: auto; }
.signature {
  width: 100%;
  height: 0;
  padding-bottom: 150px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 200px auto;
  background-position: left center;
  margin-bottom: 2rem;

  .signature-name {
    display: block;
    position: absolute;
    bottom: 0;
    width: 90%;
    line-height: 1em;
    height: 3.2em;
    font-weight: bold;
    border-top: 1px solid $white;

    span {
      font-weight: normal;
      font-style: italic;
    }
  }
}

@media screen and (min-width: 40em) {
  .signature {
    padding-bottom: 20%;
    background-size: contain;
  }
}

.city-details {
  list-style-type: none;
  margin: 0;

  .fa {
    width: 1rem;
    margin-right: .5rem;

    &.blank {
      text-indent: 900px;
      overflow: hidden;
    }
  }
  .venue-name {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
  }
  .venue-notes {
    font-style: italic;
  }

  .venue-web {
  }
  .venue-booking {
    .button { font-size: 1.2rem; }
  }
}

.city-toolbar {
  margin-top: 1rem;
  margin-bottom: 1rem;

  .button {
    font-size: 1.2rem;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
  }
}


.contact-info {
  line-height: 1em;
  i { font-size: 2em; }
}



.home-banner-container {

}

.home-banner {
  background-image: url('../img/home-banner-md.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 1rem 0;
}

@media screen and (min-width: 64em) {
  .home-banner {
    background-image: url('../img/home-banner-lg.png');
    background-repeat: repeat-x;
    background-size: auto;
  }
}
// @media screen and (min-width: 64em) {
//   background-image: url('../img/home-banner-lg.png');
//   background-repeat: repeat-x;
// }
.home-banner-spacer {
  width: 100%;
  height: 0;
  padding-bottom: 30%;
}

.news-section-title {
  font-size: 4rem;
  line-height: 1em;
  color: $red;
}

.news-date {
  margin: 0;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-image {
  margin-top: 1rem;
}
.news-title {
  font-size: 2rem;
  margin: 0;
  border-bottom: 2px solid $red;
}

.news-item { margin-bottom: 1.5rem; }
.news-item:last-child { margin-bottom: 0; }

form {
  .column { position: relative; }
  label {
    color: $white;
    text-transform: uppercase;
    &.error {
      color: $red;
      font-weight: bold;
    }
  }
  .required-label {
    font-size: 1.5rem;
    line-height: 0;
    display: inline-block;
    margin-right: 5px;
  }
  p.error {
    color: $red;
    font-size: .8em;
    margin: 0;
    line-height: 1em;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    right: 0;
  }
  input, textarea, select {
    &.error { box-shadow: 0 0 10px $red; }
  }

  &.disabled {
    pointer-events: none;
    opacity: 0.5;
  }
}

.form-submit-success {
  border: 2px solid $red;
  padding: 3rem 2rem;
}

.group-interest {
  background-image: url('../img/group-interest-bg.png');
  background-position: center center;
  background-repeat: repeat;
  border: 3px solid $gold;
  text-align: center;
  text-shadow: 0 0 15px $black;
  font-weight: bold;

  h2 {
    display: block;
    font-size: 2.5rem;
    padding-top: .25rem;
    font-family: 'Bebas Neue Bold';
  }
  p {
    line-height: 1.15em;
    border-top: 3px solid $gold;
    border-bottom: 3px solid $gold;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
  }

  a {
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    width: 100%;
  }
}

.group-interest-form {
  input[type="checkbox"] {
    display: inline-block;
    padding-left: 0;
    margin-left: 1rem;
    margin-bottom: 0;
    margin-top: 10px;
  }
}





.tentative-schedule {
}

.tentative-schedule-day {
  margin-bottom: 2.5rem;

  .date,.day,.time,.description {
    display: block;
  }

  .date {
    font-family: 'Bebas Neue';
    text-transform: uppercase;
    font-size: 3rem;
    color: $red;
  }
  .day {
    border-bottom: 2px solid $red;
    font-size: .8rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
  }
}

.tentative-schedule-time {
  margin-bottom: 1rem;
  line-height: 1.5em;
  .time {
    font-weight: bold;
    margin: 0;
    color: $dk-gray;
  }
  .description {
  }
}

.main-buttons, .sub-buttons, .closing-show-button {
  .column {
    display: table;
    height: 40px;
    margin-bottom: 10px;
  }
  .button {
    margin: 0;
    display: table-cell;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);

    border: 1px solid;

    &:hover {
      background: rgba(0,0,0,0.5);
      color: darken($red, 10%);
      border-color: darken($red, 10%);
    }

    &.active {
      background: $red;
      color: $black;
    }
  }
}
// Event Buttons
.main-buttons {
  .button {
    color: $red;
    border-color: $red;
    position: relative;
  }
}

.sub-buttons {
  .button {
    color: $gold;
    border-color: $gold;
  }
}

.closing-show-button {
  .button {
    font-size: 1.25em;
    color: $gold;
    border: 2px solid $gold;
    padding: 2rem 1rem;
  }
}

@media screen and (min-width: 640px) {
  .main-buttons {
    .column { height: 75px; }
    .button { font-size: 1.1em; padding: 10px 20px; }
  }

  .sub-buttons {
    .button { }
  }

  .closing-show-button {
    .button { }
  }
}

@media screen and (min-width: 1024px) {
  .main-buttons {
    .column { height: 60px; }
    .button { font-size: 1.1em; padding: 10px 20px; }
  }
}

.schedule-container {
  margin-top: 2rem;
  overflow-x: auto;
}

.workshop-schedule {
  min-width: 900px;
}

.room-1 {
  background: rgba(0,0,0,0.3);
}

.room-1.break, .room-2.break, .room-3.break {
  background: #ED1C24;
  color: #000;
}

.schedule {
  font-size: 14px;
  line-height: 1.5em;
}
.routine-dancer {}
.routine-name { font-weight: bold; }

span.routine-name, span.routine-name, span.routine-studio, span.routine-age, span.routine-category {
  display: block;
}

.jump-to-day, .room-select {
  font-size: 1em;
  text-transform: uppercase;
  line-height: 1em;
  margin-bottom: 1rem;

  span {
    display: inline-block;
    padding: 0.25rem;
  }

  .buttons {
    display: inline-block;
  }

  .button {
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
  }

  .button.active {
    background-color: red;
  }
}

.room-select {
  position: sticky;
  top: 75px;
}





.video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 62.5rem;
  transform: translate(-50%, -50%);
  z-index: 2100;

  .video-container {
    position: relative;
    clear: both;
  }
}

.mailing-list-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 62.5rem;
  transform: translate(-50%, -50%);
  z-index: 2100;

  .mailing-list-container {
    max-width: 640px;
    margin: 0 auto;
    background: #000;
    padding: 1rem;
  }
}

.mailing-list-message {
	text-align: center;

	.error { color: $red; }
	.success { font-weight: bold; }
	.loading { display: block; }
}




.input-error {
  display: block;
  margin-top: -1rem;
  font-size: .75rem;
  color: $red;
}







// loader
.loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #ED1C24;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

.winners-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  line-height: 1rem;
  font-weight: bold;

  a {
    display: block;
    color: #fff;
    transition: 0.25s;
    background: #222;
    padding: .5rem 1rem;

    &:hover {
      color: $red;
    }
  }

  i {
    margin: .25em;
    vertical-align: middle;
    display: inline-block;
  }

  li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 1px;
    margin-bottom: 1px;

    &:hover {
      ul {
        display: block;
      }
    }
  }

  ul {
    border-top: 1px solid #111;
    list-style-type: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    // display: none;
    font-size: 1rem;
    background-color: #222;
    box-shadow: 0 5px 10px #000;

    li {
      display: block;
      width: 100%;
    }

    a {
      background-color: #333;
    }
  }
}

.winners-title {
  margin-bottom: 1rem;
}

.footer-social {
  .footer-social-link {
    display: inline-block;
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    line-height: 2rem;
    padding: 1rem;
    color: $gold;

    &:hover {
      color: darken($gold, 10%);
    }
  }
}


.award-cards {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  .column {
    padding: 2px;
    margin: 0;
  }
  .gloss {
    height: 5px;
    width: calc(100% - 4px);
  }
  .award-card {
    border: 1px solid $gold;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    height: 60px;
    width: calc(100% - 4px);
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: lighter;
    font-family: 'Oswald';
    @media screen and (min-width: 640px) {
      height: 120px;
      font-size: 1.25rem;
      line-height: 1.25rem;
    }

    @media screen and (min-width: 1024px) {
      height: 100px;
      font-size: 1.35rem;
      line-height: 1.5rem;
    }

    small {
      display: inline-block;
      margin-top: .5em;
      font-family: 'Lato';
      font-weight: bold;
      font-size: .45em;
      line-height: 1em;
      letter-spacing: 1px;
    }
  }
}

@keyframes glossScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.bg {
  background-color: #222;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
  }

  .bg-layer-1 {
    background-image: url('../img/new/gloss.jpg');
    background-size: auto 50%;
    background-position: center top;
    animation: 10s linear glossScroll infinite;
  }
  .bg-layer-2 {
    background-image: url('../img/new/tda-bg.png');
    background-position: center top;
  }
  .bg-layer-3 {
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  }
}

.studio-award {
  text-transform: uppercase;
  background-color: #222;
  padding: 0.5rem;
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 0.75rem;
  line-height: 1rem;
}

.header-city {
  display: block;
  padding: 0.5rem;
  background: #222;
  margin: 0.5rem 0 1.5rem;
  color: inherit !important;

  .city-state {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .date-venue {
    margin: 0;
  }

  .dates, .venue {
    display: block;
    font-weight: bold;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  &:hover, &:active {
    background: #000;
  }
}

.home-main {
  text-align: center;
  background-size: cover;
  background-position: center top;
  margin: 0 auto;

  .row {
    padding: 5rem 0 3rem;
    background-size: cover;
    background-position: center top;
  }
}

.coda-logo-container {
  max-width: 300px;
  margin: 0 auto;
  box-sizing: border-box;
  color: inherit;
}

.by-btf {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 12px;
  margin-top: 5px;
  a {
    color: inherit;
    transition: .25s ease;
    text-decoration: none;
  }
}

.covid {
  background-color: #000;
  padding: 1rem 0;
  color: #fff;
}

.covid-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  color: #fff;
  z-index: 2600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;


  .covid-modal {
    background-color: #000;
    border: 2px solid red;
    padding: 1rem;
    z-index: 2601;
    max-width: 600px;
  }
}

@keyframes home2022-bg {
  from { background-position-y: 0px; }
  to { background-position-y: 1125px; }
}
@keyframes home2022-glow {
  0% { background-position-y: 0%; opacity: 1; }
  20%, 40%, 60%, 80% { opacity: 1; } 
  10%, 30%, 50%, 70%, 90% { opacity: 0.2; } 
  100% { background-position-y: 1125px; opacity: 1; }
}

.home-2022 {
  width: 100%;
  height: calc(100vh - 150px);
  background-color: #000;
  position: relative;
  margin-bottom: 2rem;
  background-image: url('../img/gloss.jpg');
  background-size: 1500x 1125px;
  background-position-x: center;
  background-repeat: repeat;
  animation-name: home2022-bg;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 5000ms;
  overflow: hidden;

  > div {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: 1500x 1125px;
    background-position-x: center;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  .layer-1 {
    background-image: url('../content/images/home/home-2022/background.png');
  }

  .layer-6, .layer-7, .layer-8 {
    animation-name: home2022-glow;
  }

  .layer-6 {
    background-image: url('../content/images/home/home-2022/6.png');
    animation-duration: 11000ms;
  }
  .layer-7 {
    background-image: url('../content/images/home/home-2022/7.png');
    animation-duration: 21000ms;
  }
  .layer-8 {
    background-image: url('../content/images/home/home-2022/8.png');
    animation-duration: 22000ms;
  }

  .glow {
    background-image: url('../content/images/home/home-2022/glow.png');
    animation-duration: 0ms;
    mix-blend-mode: soft-light;
  }

  .layer-main {
    position: absolute;
    left: 50%;
    width: auto;
    height: auto;
    transform: translateX(-50%);

    img {
      height: calc(100vh - 200px);
      width: auto;
      max-width: 300%;
    }
  }

  @media (orientation: portrait) {
    .layer-1, .glow {
      background-size: auto 100%;
    }

    .layer-main {
      left: -20vw;
      top: 50%;
      transform: translateY(-50%);
      img {
        width: 140vw;
        height: auto;
      }
    }
  }
}

.button.button-red {
  background-color: $red;
  color: white;
  transition: 0.5s ease;

  &:hover {
    background-color: darken($red, 10%);
  }
}

.button.button-gold {
  background-color: $gold;
  color: black;
  transition: 0.5s ease;

  &:hover {
    background-color: darken($gold, 10%);
  }
}

.button.button-black {
  background-color: #222;
  color: #fff;
  transition: 0.5s ease;

  &:hover {
    background-color: darken(#222, 10%);
  }
}

.button.button-white {
  background-color: #fff;
  color: #222;
  transition: 0.5s ease;

  &:hover {
    background-color: darken(#fff, 30%);
  }
}

/* Closing Show homepage ticket banner */
.closing-show-home-banner {
  position: relative;
  max-width: 100%;
  margin: 3rem auto 0;
  overflow: hidden;
}
.closing-show-home-banner picture,
.closing-show-home-banner__image {
  display: block;
  width: 100%;
}
.closing-show-home-banner__buttons {
  position: absolute;
  left: 17.5%;
  right: 17.5%;
  top: 63%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.8%;
  transform: translateY(-50%);
}
.closing-show-home-banner__button-wrap {
  flex: 0 0 49.5%;
  display: flex;
}
.closing-show-ticket-button,
.closing-show-ticket-button:hover,
.closing-show-ticket-button:focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-height: 90px;
  width: 100%;
  padding: 0.65rem 1rem;
  background: #f0de88;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.05;
  cursor: default;
  box-sizing: border-box;
}
.closing-show-ticket-button--live,
.closing-show-ticket-button--live:hover,
.closing-show-ticket-button--live:focus {
  cursor: pointer;
}
.closing-show-ticket-button span {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.closing-show-ticket-button small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.closing-show-ticket-button strong {
  display: block;
  margin-top: 0.2rem;
  color: #e6001b;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.closing-show-ticket-button--live strong {
  color: #e6001b;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .closing-show-home-banner {
    margin-top: 2rem;
  }
  .closing-show-home-banner__buttons {
    left: 20.5%;
    right: 20.5%;
    top: 52.5%;
    display: block;
    transform: none;
  }
  .closing-show-home-banner__button-wrap {
    width: 100%;
    display: block;
  }
  .closing-show-home-banner__button-wrap + .closing-show-home-banner__button-wrap {
    margin-top: 6.8%;
  }
  .closing-show-ticket-button,
  .closing-show-ticket-button:hover,
  .closing-show-ticket-button:focus {
    height: 88px;
    min-height: 88px;
    padding: 0.75rem 0.9rem;
  }
  .closing-show-ticket-button span {
    font-size: 1.45rem;
  }
  .closing-show-ticket-button small {
    font-size: 0.8rem;
  }
  .closing-show-ticket-button strong {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .closing-show-ticket-button,
  .closing-show-ticket-button:hover,
  .closing-show-ticket-button:focus {
    height: 64px;
    min-height: 64px;
    padding: 0.45rem 0.6rem;
  }
  .closing-show-ticket-button span {
    font-size: 1rem;
  }
  .closing-show-ticket-button small {
    font-size: 0.58rem;
  }
  .closing-show-ticket-button strong {
    font-size: 0.65rem;
  }
}
.closing-show-home-banner--top {
  margin: 2rem auto;
}
