/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/


@font-face{
    font-family:"Franklin Gothic";
    src:url("../fonts/ITCFranklinGothicStd-Book.otf");
}

body, html {
}
body {
  font-family: 'Franklin Gothic';
  letter-spacing: 1px;
  background: #d8b127;
}
.top-panel {
  position: relative;
}
body.halt {
  overflow: hidden;
}

/* general */
.overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,.3);
}
.square:after {
  content:'';
  float:left;
  padding-bottom: 100%;	
}
.rectangle:after {
  content:'';
  float:left;
  padding-bottom: 50%;	
}
.chubby-rectangle:after {
  content:'';
  float:left;
  padding-bottom: 75%;	
}
.tall-rectangle:after {
  content:'';
  float:left;
  padding-bottom: 150%;	
}
.circle {
	position: relative;
	border-radius: 50%;
	width: 100%;
	height: auto;
	padding-top: 100%;
	background: white;	
	display: block;
}
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-wrapper iframe, .video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video {
	max-width: 100%;
}
.p-absolute {
  position: absolute;
}
.p-relative {
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
.bw {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.flip {
  -webkit-transform: rotateY( 180deg ) rotateX( 180deg );
  -moz-transform: rotateY( 180deg ) rotateX( 180deg );
  -o-transform: rotateY( 180deg ) rotateX( 180deg );
  transform: rotateY( 180deg ) rotateX( 180deg );
}
.lh-less {
  line-height: .5;
}

/* animations */
.fadeimg {
  visibility: hidden;
}
.fadeIn {
  -webkit-animation: animat_show 0.8s;
  animation: animat_show 0.8s;
  visibility: visible !important;
}
@-webkit-keyframes animat_show{
  0%{opacity:0}
  100%{opacity:1}
}


/* text/fonts */
.text-black {
	color: #000;
}
.text-peach {
  color:#f3d6b3;
}
.text-nav {
  color: #ffc499;
}
.text-navy {
  color:#354b9f;
}
.h1, h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Franklin Gothic';
}
.font-serif {
  font-family: 'Roboto Mono', monospace;
	font-style: normal;
	font-weight: 400;
}
.font-sansserif {
	font-family: sans-serif;
	font-style: normal;
	font-weight: 400;
}
.display-1 {
  font-size: 15rem;
  letter-spacing: -5px;
}
.display-2 {
  font-size: 8rem;
  font-weight: 600;
}
.display-5 {
  font-size: 5.5rem;
}
.display-6 {
  font-size: 4rem;
}

.outline {
  color:transparent;
}
.outline-blue {
  -webkit-text-stroke: 2px #364c9f;
}
.outline-blue-thin {
  -webkit-text-stroke: 1px #364c9f;
}
.outline-peach {
  -webkit-text-stroke: 3px #f3d6b3;
}
.outline-peach-thin {
  -webkit-text-stroke: 1px #f3d6b3;
}
.outline-black {
  -webkit-text-stroke: 3px #000000;
}
.outline-black-thin {
  -webkit-text-stroke: 1px #000000;
}
.outline-pale {
  -webkit-text-stroke: 2px #ffc499;
}
.outline-pale-thin {
  -webkit-text-stroke: 1px #ffc499;
}
.ls-2 {
  letter-spacing: 2px;
}
.ls-10 {
  letter-spacing: 10px;
}
.text-orange {
  color: #ff5301;
}
.text-yellow {
  color: #d8b127;
}


/* links */
a { 
  transition: .3s ease all;
  color: #364c9f;
}
a:hover {
  text-decoration: none;
  color: #f54c4b;
}


/* buttons */
button:focus, .btn.focus, .btn:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.btn {
  font-family: 'Franklin Gothic';
  padding: .75rem 2.5rem;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.btn-primary {
  background: #d8b127;
  border:1px solid #d8b127;
  color: #ff5301;
}
.btn-primary:hover {
  background: #ff5301;
  border:1px solid #d8b127;
  color: #d8b127;
}
.btn-default {
  background: #ff5301;  
  border-color: #ff5301;
  color: #d8b127;
}
.btn-default:hover {
  background: #d8b127;	
  border-color: #ff5301;
  color: #ff5301;
}
.btn-secondary {
  background: #f0e40e;
  border-color: #f0e40e;
  color: #6391bb;
}
.btn-secondary:hover {
  background: #6391bb;
  border-color: #f0e40e;
  color: #f0e40e;
}


/* backgrounds */
.bg-black {
	background-color: #000;
}
.bg-orange {
  background-color: #ff5301;
}
.bg-yellow {
  background-color: #d8b127;
}


/* borders */ 
.bl-dark {
	border-left: 1px solid #000;
}
.br-dark {
	border-right: 1px solid #000;
}
.bt-dark {
	border-top: 1px solid #000;
}
.bb-dark {
	border-bottom: 1px solid #000;
}
.bl-light {
	border-left: 1px solid #ddd;
}
.br-light {
	border-right: 1px solid #ddd;
}
.bt-light {
	border-top: 1px solid #ddd;
}
.bb-light {
	border-bottom: 1px solid #ddd;
}


/* forms */
.form-control {
	border-radius: 0;
	border:0;
	padding: 2rem;
  max-width: 300px;
  border: 1px solid #354b9f;
  font-family:"Neue Helvetica W01_59 Comp";
  font-size: 1.4rem;
}


/* header */
.navbar-toggler {
  border: 0;
}
header.navbar {
  position: fixed;
  right: 0;
  z-index: 2;
  background-color: #d8b127;
}
.nav {
  background: #ff5301;
  color: #ffffff;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: 1;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transition: .4s ease all;
}
.nav.open {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.nav .nav-link {
  font-size: 4rem;
}
.nav .nav-link:hover {
  color:#ffa081;
}
button.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link.tour {
  letter-spacing: 3.7vw;
}
.nav-link.store {
  letter-spacing: 2.5vw;
}
.nav-link.contact {
  letter-spacing: 1.2vw;
}
.nav-link.follow {
  letter-spacing: 1.7vw;
}


#nav-icon {
  width: 32px;
  height: 22px;
  position: relative;
  margin: 4px;
  background: transparent;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  float: right;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ff5301;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 0px;
  background: #ff5301;
}
#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 0px;
  background: #ff5301;
}
#nav-icon.contact-close {
  position: absolute;
  top:10px;
  right: 20px;
}
#nav-icon.contact-close.open span:nth-child(1), #nav-icon.contact-close.open span:nth-child(3) {
  background: #354b9f;
}

/* footer */
footer.footer {
  text-align: center;
}

/* bandsintown */
.bit-widget {
  font-size: 2rem!important;
  text-transform: uppercase;
}
.bit-widget.bit-layout-desktop .bit-event, .bit-widget.bit-layout-desktop .bit-upcoming-events, bit-past-events {
  border:0!important;
}

.bit-rsvp-container, .bit-venue, .bit-track-button-container, .bit-nav-bar-container {
  display: none;
}
.bit-widget .bit-event .bit-offers-text {
  font-size: 1.2rem!important;
  font-weight: 300;
}
.bit-widget.bit-layout-desktop .bit-event {
  justify-content: center;
}
.bit-widget .bit-offers {
  background:transparent!important;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 8px;
  border: 0!important;
}
.bit-widget .bit-event .bit-event-buttons {
  margin: 0!important;
}
.bit-widget.bit-layout-desktop .bit-event .bit-details:first-child {
  flex-grow: 0!important;
}
.bit-widget.bit-layout-desktop .bit-location{
  min-width: 450px;
  text-align: justify!important;
  padding: 0 4rem;
  margin-top: 24px!important;
}
.bit-widget.bit-layout-ipad .bit-location {
  min-width: 350px;
  text-align: justify!important;
  padding: 0 2rem;
  margin-top: 0px!important;
}

.bit-widget.bit-layout-desktop .bit-location:after, .bit-widget.bit-layout-ipad .bit-location:after {
  content: "";
  display: inline-flex;
  width: 100%;
}
.bit-widget .bit-event .bit-date, .bit-widget.bit-layout-desktop .bit-location {
  font-weight: 500!important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-details {
  flex-direction: row!important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-button {
  line-height: inherit;
}



/* contact */
.contact-page, .follow-page {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  transition: .5s ease all;
  transform:translateX(-100%);
  -webkit-transform:translateX(-100%);

}
.contact-page.open, .follow-page.open {
  transform:translateX(0);
  -webkit-transform:translateX(0);
}


#tour {
  background: #d8b127;
}

#background-video {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin-top: 95px;
} 




/* seated tour dates */

/*
#seated-55fdf2c0 {

}
#seated-55fdf2c0 .seated-event-row, #seated-55fdf2c0 .seated-events-table {
  border: 0;
  max-width: 900px;
  margin: auto;
}
.seated-event-description-cells {
  display: flex;
  align-items: center;
}
.seated-event-venue-cell {
  flex-grow: 1;
}
.seated-event-date-cell {
  padding-right: 2rem;
  min-width: 250px;
  text-align: left;
}
.seated-event-venue-location {
  text-align: justify!important;
  width: 90%!important;
  height: 40px;
  margin: auto;
}
.seated-event-venue-location:after {
  content: "";
  display: inline-flex;
  width: 100%;
  height: 0;
}
.seated-event-venue-cell, .seated-event-date-cell {
  font-weight: 500!important;
  font-family: Neue Helvetica W01_59 Comp;
  text-transform: uppercase;
  
  font-size: 2rem!important;
}
.seated-event-venue-name{
  display: none;
}
.seated-events-table .seated-event-link1, .seated-events-table .seated-event-link1:visited, .seated-events-table .seated-event-link2, .seated-events-table .seated-event-link2:visited, .seated-events-table .seated-event-link1:hover, .seated-events-table .seated-event-link2:hover {
  background: none;
  border: none;
  font-weight: 300;
  letter-spacing: 4px;
  color: #ffc499;
  font-size: 1.4rem;
  margin: 0
}
.seated-events-table .seated-event-link1, .seated-events-table .seated-event-link1:visited, .seated-events-table .seated-event-link2, .seated-events-table .seated-event-link2:visited {
  
}
.seated-events-table .seated-event-link1:hover, .seated-events-table .seated-event-link2:hover {
  
}
#seated-55fdf2c0 .seated-event-link1-sold-out {
  -webkit-transform: rotateY( 180deg ) rotateX( 180deg );
  -moz-transform: rotateY( 180deg ) rotateX( 180deg );
  -o-transform: rotateY( 180deg ) rotateX( 180deg );
  transform: rotateY( 180deg ) rotateX( 180deg );
  background-color: #ffc499;
  color: #364c9f;
  border-radius: 0;
  padding-left: .4rem;
}

*/

#seated-55fdf2c0 .seated-event-link, #seated-55fdf2c0 .seated-event-link:visited, #seated-55fdf2c0 .seated-event-link1, #seated-55fdf2c0 .seated-event-link1:visited, #seated-55fdf2c0 .seated-event-link2, #seated-55fdf2c0 .seated-event-link2:visited, #seated-55fdf2c0 .seated-event-link3, #seated-55fdf2c0 .seated-event-link3:visited {
  font-family: 'Franklin Gothic';
  padding: .75rem 2.5rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  background: #ff5301;  
  border-color: #ff5301;
  color: #d8b127;
}
.seated-follow-box {
  display: none;
}

@media (max-width: 650px) {
  .bit-widget.bit-layout-ipad .bit-event .bit-details, .bit-widget.bit-layout-ipad .bit-event {
    flex-direction: column!important;
  }
  .bit-widget.bit-layout-ipad .bit-location {
    width: 100%;
  }
  .bit-widget.bit-layout-ipad .bit-location {
    min-width: 100%;
    text-align: justify!important;
    padding: 0;
    margin-top: 20px!important;
  }
  .bit-widget.bit-layout-ipad .bit-event .bit-button {
    width: initial!important;
  }

  .seated-event-venue-location {
    height: 46px;
  }
  .seated-event-date-cell {
    min-width: initial;
    padding-right: 0;
  }
  .seated-event-venue-cell, .seated-event-date-cell {
    font-size: 1.5rem;
  }
  .seated-event-row {
    padding: 14px 0!important
  }
  #seated-55fdf2c0 .seated-event-row, #seated-55fdf2c0 .seated-events-table {
    border-bottom: .25px solid #5170e6;
  }
  .seated-event-description-cells {
    flex-direction: column;
  }
  .seated-event-venue-cell {
    width: 80%;
  }
  .display-1 {
    font-size: 10rem;
  }
}