@font-face {
  font-family: Director;
  src: url('../fonts/Director-Bold.woff2') format("woff2"), url('../fonts/Director-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --oh-wonder-off-white: #f2f2f2;
}

.section {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(#2c2c2cbf, #000000bf 50%, #000), url('../images/bg.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: auto;
  min-height: 100vh;
  padding: 64px 16px;
  display: flex;
}

.text-block {
  color: var(--oh-wonder-off-white);
  text-align: center;
  margin-top: 24px;
  font-family: Director, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.image {
  width: 100%;
  max-width: 960px;
}

.tour-wrapper {
  border-bottom: 1px solid var(--oh-wonder-off-white);
  flex-flow: column;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 8px;
  display: flex;
  position: relative;
}

.tour-row {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 6px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.tour-row:hover {
  background-color: #363636e0;
}

.tour-row.sold-out-strikethrough {
  -webkit-text-stroke-width: 0px;
  cursor: not-allowed;
  text-decoration: none;
}

.div-block {
  justify-content: space-between;
  display: flex;
}

.tour-row-date {
  color: var(--oh-wonder-off-white);
  width: 8ch;
  margin-left: 0;
  margin-right: 0;
  font-family: Director, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  position: relative;
}

.tour-row-location {
  color: var(--oh-wonder-off-white);
  width: 24ch;
  margin-left: 40px;
  margin-right: 0;
  font-family: Director, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.tour-row-location.sold-out {
  text-decoration: line-through;
}

.tour-row-venue {
  color: var(--oh-wonder-off-white);
  width: 36ch;
  margin-left: 64px;
  margin-right: auto;
  font-family: Director, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.tour-row-venue.sold-out {
  text-decoration: line-through;
}

.button {
  background-color: var(--oh-wonder-off-white);
  color: #000;
  margin-left: 12px;
  margin-right: 12px;
  font-family: Director, Arial, sans-serif;
  line-height: 1.1;
  transition: all .2s;
}

.button:hover {
  border: 1px solid var(--oh-wonder-off-white);
  color: var(--oh-wonder-off-white);
  background-color: #000;
}

.button.sold-out {
  text-decoration: line-through;
}

.vip-button {
  background-color: var(--oh-wonder-off-white);
  color: #000;
  font-family: Director, Arial, sans-serif;
  line-height: 1.1;
  transition: all .2s;
}

.vip-button:hover {
  border: 1px solid var(--oh-wonder-off-white);
  color: var(--oh-wonder-off-white);
  background-color: #000;
}

.enter-site-button {
  background-color: var(--oh-wonder-off-white);
  color: #000;
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Director, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  transition: all .2s;
  position: relative;
}

.enter-site-button:hover {
  border: 1px solid var(--oh-wonder-off-white);
  color: var(--oh-wonder-off-white);
  background-color: #000;
}

.email-embed {
  width: 100%;
  max-width: 600px;
}

.socials {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-link {
  transition: all .2s;
}

.social-link:hover {
  transform: scale(1.2);
}

.section-copy {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(#2c2c2cbf, #000000bf 50%, #000), url('../images/bg.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  min-height: 100vh;
  padding: 64px 16px;
  display: flex;
}

.text-block-2 {
  color: var(--oh-wonder-off-white);
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: Director, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}

.sold-out-label {
  color: #f2f2f2;
  background-color: red;
  padding: 4px 16px;
  font-family: Director, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  transform: rotate(-14deg);
}

@media screen and (max-width: 991px) {
  .section {
    background-image: linear-gradient(#2c2c2ce0, #000000e0 50%, #000), url('../images/bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .image {
    width: 96%;
  }

  .tour-row-date, .tour-row-location, .tour-row-venue {
    font-size: 12px;
  }

  .button, .button-2 {
    font-size: 12px;
    line-height: 1.1;
  }

  .vip-button {
    line-height: 1.1;
  }

  .section-copy {
    background-image: linear-gradient(#2c2c2ce0, #000000e0 50%, #000), url('../images/bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .text-block-2 {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    background-image: linear-gradient(#2c2c2ce0, #000000e0 50%, #000), url('../images/bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding-left: 12px;
    padding-right: 12px;
  }

  .tour-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .tour-row {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    padding-left: 0;
    padding-right: 0;
  }

  .tour-row-date {
    width: 8ch;
    font-size: 10px;
  }

  .tour-row-location {
    width: 20ch;
    margin-left: 14px;
    font-size: 10px;
  }

  .tour-row-venue {
    width: 28ch;
    margin-left: 16px;
    font-size: 10px;
  }

  .button {
    font-size: 10px;
  }

  .vip-button {
    font-size: 10px;
    line-height: 1.1;
  }

  .section-copy {
    background-image: linear-gradient(#2c2c2ce0, #000000e0 50%, #000), url('../images/bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding-left: 12px;
    padding-right: 12px;
  }

  .text-block-2 {
    font-size: 10px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    background-image: linear-gradient(#2c2c2ce0, #000000e0 50%, #000), url('../images/bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .tour-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .tour-row {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .tour-row-date {
    width: auto;
    font-size: 14px;
    font-weight: 700;
  }

  .tour-row-location {
    width: auto;
    margin-left: 0;
  }

  .tour-row-venue {
    text-align: right;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }

  .button {
    text-align: center;
    width: 100%;
    margin-top: 6px;
    margin-left: 0;
    margin-right: 0;
  }

  .button-2, .vip-button {
    text-align: center;
    width: 100%;
  }

  .section-copy {
    background-image: linear-gradient(#2c2c2ce0, #000000e0 50%, #000), url('../images/bg.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .text-block-2 {
    text-align: center;
    border: 1px solid #fff;
    width: 100%;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    padding: 9px;
  }
}


@font-face {
  font-family: 'Director';
  src: url('../fonts/Director-Bold.woff2') format('woff2'), url('../fonts/Director-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}