@charset "utf-8";
/* 

Shooter Jennings | Site Layout

Author | Blackstar Digital

Author URL | blackstar.digital

Author Contact | randy@blackstar.digital

Last Updated | JULY 2021

*/
/* SCROLLBAR */ ::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000;
  box-shadow: none;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #3f0693;
  border-radius: 8px;
  width: 8px;
}
/* SELECTION */ ::selection {
  background: #3f0693;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #3f0693;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #3f0693;
  color: #fff;
  text-shadow: none;
}
/* Loader */
.progress {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 5px;
  z-index: 999999999;
  background: #000;
  display: grid;
  align-content: center;
  align-items: center;
  text-align: center;
  justify-items: center;
}
.bar {
  background-color: #3f0693;
  width: 0%;
  height: 5px;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.percent {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
}
.progress-icon {
  width: 24px;
  height: 24px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loadingIcon 5s infinite linear;
  animation: loadingIcon 5s infinite linear;
}
@-webkit-keyframes loadingIcon {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingIcon {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
.progress-text {
  display: block;
  margin-bottom: 32px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loadingText 5s infinite linear;
  animation: loadingText 5s infinite linear;
}
.progress-text span.h5 {
  color: #3f0693 !important;
  font-size: 0.7rem;
  letter-spacing: 10px;
  text-indent: 10px;
  margin: 0 auto;
}
@-webkit-keyframes loadingText {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadingText {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.loader, .loader:after {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.loader {
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 2px solid #000;
  border-right: 2px solid #3f0693;
  border-bottom: 2px solid #000;
  border-left: 2px solid #3f0693;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.5s infinite linear;
  animation: load8 0.5s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Misc */ 
::marker {
  color: #3f0693;
}
/* Grids */
.grid {
  display: grid;
}
.singlecol {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .m2col {
    grid-template-columns: 1fr 1fr;
  }
  .m3col {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .m4col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .m5col {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .m6col {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .l2col {
    grid-template-columns: 1fr 1fr;
  }
  .l3col {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .l4col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .l5col {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .l6col {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
/* GAPS */
.gap5 {
  gap: 5px;
}
.gap10 {
  gap: 10px;
}
.gap15 {
  gap: 15px;
}
.gap25 {
  gap: 25px;
}
.gap45 {
  gap: 45px;
}
.gap65 {
  gap: 65px;
}
.gap90 {
  gap: 90px;
}
.gap125 {
  gap: 125px;
}
@media screen and (min-width: 900px) {
  .grid-left {
    text-align: right;
  }
  .grid-right {
    text-align: left;
  }
}
/* MAX WIDTHS */
.w50p {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.w100p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.w320 {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.w640 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.w800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.w920 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.w1080 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.w1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.w1280 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.w1366 {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
}
.w1600 {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.h100vh {
  height: 100vh;
}
.w100vh {
  width: 100vh;
}
.h100perc {
  height: 100%;
}
.w100perc {
  width: 100%;
}
/*************************/
/*************************/
/* DEFAULT UI */
/*************************/
/*************************/
#ui {
  padding: 0;
  min-width: 240px;
  position: relative;
  margin: 0 auto;
}
/* DEFAULT Z-INDEX */
#h {
  z-index: 999999;
}
#ui {
  z-index: 1;
  padding-top: 92px;
}
#c {
  z-index: 1;
}
body {
  z-index: 0;
}
/*************************/
/*************************/
/* HEADER */
/*************************/
/*************************/
#h {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  text-align: center;
  align-items: center;
  align-content: center;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  padding: 14px;
  grid-template-columns: 140px 64px;
  justify-content: space-between;
  margin: 0 auto;
  height: 92px;
}
#h-icon {
  width: 64px;
  height: 64px;
}
#h-icon.active {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10;
}
#h-icon a {
  display: block;
  width: 64px;
  height: 64px;
  padding: 15px;
  color: #fff;
}
#h-icon a ion-icon {
  width: 34px;
  height: 34px;
}
#h-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  padding: 90px 5%;
  text-align: center;
  align-content: center;
  min-height: 420px;
  z-index: 3;
  overflow-y: auto;
}
#h-nav.active {
  display: grid;
}
#h-nav a {
  font-family: 'Huben-Regular';
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff;
  line-height: 54px;
  border-bottom: 3px solid transparent;
}
#h-nav a:hover {
  border-bottom: 3px solid #5C12C9;
}
@media screen and (min-width:1024px) {
  #h {
    padding: 14px 32px;
    grid-template-columns: 180px auto;
  }
  #h-icon {
    display: none !important;
  }
  #h-nav {
    position: relative;
    background: transparent;
    width: auto;
    top: auto;
    left: auto;
    height: 46px;
    padding: 0;
    text-align: right;
    align-content: center;
    display: flex;
    flex-direction: row;
    min-height: unset;
    overflow-y: visible;
  }
  #h-nav a {
    display: block;
    height: 46px;
    padding: 0 12px;
    font-size: 1.25rem;
  }
}
/*************************/
/*************************/
/*************************/
/* Content */
/*************************/
/*************************/
/*************************/
#c {
  text-align: left;
  position: relative;
  width: 100%;
  padding: 0 5% 140px 5%;
  max-width: 1600px;
  margin: 0 auto;
}
/*

@media screen and (min-width:420px) {

#c {padding: 70px 7% 140px 7%;}}

@media screen and (min-width:728px) {

#c {padding: 70px 15% 140px 15%;}}

@media screen and (min-width:1024px) {

#c {padding: 140px 15% 120px 15%;}}

*/
#c-header {
  padding: 90px 0 0 0;
}
#c-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  max-height: 1280px;
  z-index: -1;
}
@media screen and (min-width:1024px) {
  #c-image {
    position: fixed;
    top: 0;
    left: auto;
    right: 64px;
    width: 50%;
    z-index: -1;
  }
}
/*************************/
/*************************/
/*************************/
/* Footer */
/*************************/
/*************************/
/*************************/
#f {
  padding: 32px 5%;
  text-align: center;
}
#f-endorsements-header {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 16px;
  display: block;
}
#f-endorsements {
  margin: 0 auto 46px auto;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  gap: 16px;
}
#f-social {
  display: grid;
  grid-template-columns: 54px 54px 54px;
  max-width: 162px;
  margin: 0 auto 24px auto;
}
#f-social a {
  display: block;
  padding: 10px;
  color: #5C12C9;
  width: 54px;
  height: 54px;
}
#f-social a ion-icon {
  font-size: 34px;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
}
#f-credits {
  font-size: 0.675rem;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #666;
  font-family: sans-serif;
}
#f-credits a {
  color: #666;
}
/*************************/
/*************************/
/*************************/
/* Home */
/*************************/
/*************************/
/*************************/
#promo {
  padding: 140px 5% 64px 5%;
  text-align: center;
}
#promo h2 {
  border-bottom: none;
}
#promo-grid {
  display: grid;
  gap: 24px;
}

.home-section {padding: 0 0 75px 0;}
#video {
  text-align: center;
  position: relative;
  height: 420px;
  display: grid;
  align-content: center;
  padding: 1.5rem;
}

#video-cover {
  display: block;
  position: relative;
  height: 420px;
  width: 100%;
  max-width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#video-cover-text {
  display: grid;
  align-content: center;
  justify-content: center;
  height: 420px;
  width: 100%;
  background-color: rgba(92, 18, 201, 0.45);
  box-shadow: inset 0 0 64px rgba(0,0,0,0.95);
  border-radius: 12px;
}
#video-cover-text:hover {
  background-color: rgba(92, 18, 201, 0.1);
}

#video-cover-text .h1,
#video-cover-text .h4 {
  margin-bottom: 0;
  border-bottom: none;
}

#video-cover-text small {
  color: #ccc;
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.8rem;
  font-weight: 100;
}

#video-overlay-grid {
  padding: 32px 5%;
  width: 100vw;
  height: 100vh;
  text-align: center;
  display: grid;
  gap: 20px;
  overflow-y: auto;
}

#video-overlay-grid .h4 {
  border-bottom: none;
  margin-bottom: 0;
}

#video-overlay-grid iframe {
  width: 100% !important;
  height: 420px !important;
}

@media screen and (min-width:800px) {
  #video,
  #video-cover,
  #video-cover-text {
    height: 460px;
  }
}

@media screen and (min-width:1024px) {
  #video,
  #video-cover,
  #video-cover-text {
    height: 560px;
  }
  #video-overlay-grid {
    display: flex;
    padding: 32px 10%;
    align-content: center;
    align-items: center;
    justify-content: center;
  }
  #video-overlay-grid div:nth-child(1) {
    flex: 1;
  }
}

#tour h2 {margin-bottom: 0;}
#merch h3 {display: none;}
#merch .buttons {text-align: center;}

.merch-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
}
.merch-grid h4 {
  border-bottom: none;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: center;
}
.product:hover {
  opacity: 0.6;
}
.product.apparel img {
  background: rgba(92, 18, 201, 0.025);
}
@media screen and (min-width: 900px) {
  #promo {
    text-align: center;
  }

  #promo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }
  .merch-grid.apparel {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#disco .buttons {
  text-align: center;
}
#disco h2 {
  border-bottom: none;
  color: #999;
  margin-bottom: 0;
  font-size: 2.25rem;
}
.disco-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
  grid-template-columns: 1fr 1fr;
}
.disco-grid h3, .disco-grid h4 {
  border-bottom: none;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: center;
}
.year {
  display: block;
  text-align: center;
  color: #aaa;
}
.artist {
  color: #5C12C9;
}
.album:hover {
  opacity: 0.6;
}
#discography-cats {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #discography-cats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .disco-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.playlist {margin-bottom: 32px;}

/*************************/
/* Contact */
/*************************/
#contact-link {
  font-size: 0.8rem;
}
/*************************/
/*************************/
/*************************/
/* Seated */
/*************************/
/*************************/
/*************************/
.seated-events-table {
  border-top: none !important;
}
.seated-events-table div:last-child {
  visibility: hidden;
}
.seated-event-row div:last-child, .seated-event-description-cells div:last-child {
  visibility: visible !important;
}
.seated-event-venue-name, .seated-event-venue-location, .seated-event-description-cells, .seated-event-details-cell, .seated-event-date-cell, .seated-follow-text {
  font-weight: normal !important;
  font-size: 0.9rem;
}
.seated-event-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}
.seated-event-date-cell {
  font-size: 0.9rem;
  color: #bbb;
}
.seated-event-description-cells {
  width: 100% !important;
}
.seated-event-details-cell {
  color: #bbb;
}
.seated-event-venue-cell {
  display: grid !important;
}
.seated-event-venue-name {
  width: 100% !important;
}
.seated-event-venue-location {
  font-size: 0.9rem;
  width: 100% !important;
  color: #ccc;
}
.seated-follow-box {
  padding-bottom: 0;
}
.seated-follow-text {
  font-size: 0.75rem;
}
.seated-follow-link, .seated-follow-link:visited {
  display: inline-block;
  margin-top: 10px;
  color: #fff !important;
  border: 2px solid #5C12C9 !important;
  background: transparent !important;
  border-radius: 3px;
  font-size: 12px;
  overflow: hidden;
  padding: 12px 3px;
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase !important;
}
.seated-follow-link:hover {
  border: 2px solid rgba(255, 255, 255, 1) !important;
  background: #5C12C9 !important;
  color: #000 !important;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.seated-event-link-cell2, .seated-event-link-cell1 {
  width: 100%;
}
.seated-event-link2, .seated-event-link2:visited {
  color: #fff !important;
  border: 2px solid #fff !important;
  background: transparent !important;
  border-radius: 3px;
  display: block;
  font-size: 12px;
  margin: 4px 0 4px 9px;
  overflow: hidden;
  padding: 6px 3px;
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  min-width: 120px;
  text-transform: uppercase !important;
}
.seated-event-link1, .seated-event-link1:visited {
  color: #5C12C9 !important;
  border: 2px solid #fff !important;
  background: #fff !important;
}
@media screen and (min-width: 900px) {
  .seated-event-row div:last-child {
    visibility: visible;
    display: flex !important;
    gap: 5px !important;
    flex-direction: row;
    justify-content: flex-end;
  }
  .seated-event-venue-location, .seated-event-details-cell {
    justify-content: flex-start !important;
  }
}
/*************************/
/*************************/
/*************************/
/* Scroll Up */
/*************************/
/*************************/
/*************************/
.scrollUp {
  opacity: 0;
  -moz-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scrollUp.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.scrollUpFooter {
  opacity: 0;
  -moz-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -moz-transform: translate3d(0px, 100px, 0px);
  -webkit-transform: translate3d(0px, 100px, 0px);
  -o-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  transform: translate3d(0px, 100px, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.scrollUpFooter.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.tm-widget {
  display: block;
  max-width: 550px;
  margin: 0 auto;
}

/* WAYLON */

#waylon-grid {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  gap: 24px;
}

@media screen and (min-width: 1024px) {

  #waylon-grid {
    gap: 12px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}