/*
Theme Name: TAO
Author: Phill Mamula
Author URI: https://www.ticketfly.com
Description: Theme for the 2016 TAO Website
Version: 1.0
Text Domain: gold-parent_s
Domain Path: /languages/
*/

/* =Fonts
-------------------------------------------------------------- */
@import url(//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,700,800);


/* =Basic structure
-------------------------------------------------------------- */
/* Body, links, basics */

html {
    background: #F5F5F5;
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea {
    color: #111111;
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 26px;
    margin: 0 auto;
    text-rendering: optimizelegibility;
	-webkit-font-smoothing: antialiased;
    width: 100%;
}
body { margin-bottom: 450px;}
p {
    margin: 0 0 1em;
}
h1, h2, h3, h4 {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: normal;
    letter-spacing: 0.04em;
    text-transform: none;
}
h2 { font-size: 32px; line-height: 42px; margin: 0 0 5px;}
h2 { font-size: 26px; line-height: 34px; margin: 0 0 5px;}
h3 { font-size: 18px; line-height: 24px; margin: 0 0 5px;}
.red { color: #CC2529; }
strong, b { font-weight: 700;}
abbr, acronym {
    border-bottom: medium none;
    cursor: pointer;
}
a {
	outline: none;
	color: #111111;
  	transition: all 0.25s ease-in-out;
  	-webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
  	-o-transition: all 0.25s ease-in-out;
}
a:hover {
	color: #CC2529;
  	transition: all 0.25s ease-in-out;
  	-webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
  	-o-transition: all 0.25s ease-in-out;
}
hr {
    background-color: #ddd;
    border: 0 none;
    height: 1px;
    margin: 3% auto;
}
::selection {
    color: #FFFFFF;
    background: #CC2529; /* WebKit/Blink Browsers */
}
::-moz-selection {
    color: #FFFFFF;
    background: #CC2529; /* Gecko Browsers */
}


/* =Page Structure
-------------------------------------------------------------- */
#primary {
    overflow: hidden;
    position: relative;
    z-index: 999;
}
#wrapper {
    background: #FFFFFF;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.12);
}
#footer {
    background: #000000;
    color: #FFFFFF;
    bottom: 0;
    overflow: hidden;
    padding: 40% 0 0;
    min-height: 800px;
    position: fixed;
    width: 100%;
    z-index: -999;
}
#content.site-content {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 2%;
    width: 100%;
    overflow: hidden;
}
.container {
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}
.page-content, .entry-content, .entry-summary {
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}
footer.entry-footer { display: none; }




/* =Animations
-------------------------------------------------------------- */
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}
.fade-in.one {
  -webkit-animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.fade-in.two {
  -webkit-animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  animation-delay: 0.65s;
}
.fade-in.three {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.bounce {
    color: #FFFFFF;
    font-size: 32px;
    margin: 0 auto 0 -10px;
    position: absolute;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
 40% {-webkit-transform: translateY(-20px);}
 60% {-webkit-transform: translateY(-10px);}
}
@-moz-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
 40% {-moz-transform: translateY(-20px);}
 60% {-moz-transform: translateY(-10px);}
}
@-o-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
 40% {-o-transform: translateY(-20px);}
 60% {-o-transform: translateY(-10px);}
}
@keyframes bounce {
 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
 40% {transform: translateY(-20px);}
 60% {transform: translateY(-10px);}
}



/* =Owl Carousel
-------------------------------------------------------------- */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% { opacity: 1;}
  100% { opacity: 0;}
}
@keyframes fadeOut {
  0% { opacity: 1;}
  100% { opacity: 0; }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
    margin: 0 auto;
    max-width: 1300px;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
    overflow: hidden;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-controls {
    clear: both;
    left: 0;
    top: 0;
    width: 100%;
}
.owl-prev {
    font-size: 0;
    left: -30px;
    margin: 0 auto !important;
    top: 135px;
    position: absolute;
    opacity: 0.15;
}
.owl-next {
    font-size: 0;
    right: -30px;
    margin: 0 auto !important;
    top: 135px;
    position: absolute;
    opacity: 0.15;
}
.owl-prev:hover, .owl-next:hover { opacity: 1; }
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    color: #FFF;
  display: inline-block;
  float: left;
  margin: 5px;
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-controls .owl-nav .owl-next:before {
    color: #222;
    font-size: 42px;
    content: "\f105";
    font-family: FontAwesome;
    left: 0;
    top: 0;
 }
.owl-carousel .owl-controls .owl-nav .owl-prev {
    position:relative;
}    
.owl-carousel .owl-controls .owl-nav .owl-prev:before {
    color: #222;
    font-size: 42px;
    content: "\f104";
    font-family: FontAwesome;
    left: 0;
    top: 0;
 }

#event-cards.nightclub .owl-carousel .owl-controls .owl-nav .owl-prev::before, 
#event-cards.nightclub .owl-carousel .owl-controls .owl-nav .owl-next::before { color: #FFF; }
#event-cards.beach .owl-carousel .owl-controls .owl-nav .owl-prev::before, 
#event-cards.beach .owl-carousel .owl-controls .owl-nav .owl-next::before { color: #333; }

.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  text-align: center;
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}


/* =Header
-------------------------------------------------------------- */
header.site-header {
    overflow: hidden;
    padding: 15px 15px 0;
    position: absolute;
    width: 100%;
    z-index: 9999;
}
body.home .site-socials .social-icons:nth-of-type(2) {
    display: block !important;
}
body.home .site-socials .social-icons:first-child {
    display: none !important;
}
header.site-header .site-socials {
    position: absolute;
}

header.site-header .site-socials {
    float: left;
    text-align: left;
    padding: 5px;
    width: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
header.site-header .site-socials .social-icons:nth-of-type(2) { display: none; }
header.site-header .site-socials a .fa {
    color: #FFFFFF;
    font-size: 16px;
    opacity: 1;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    padding: 5px 15px 0px 0;
}
header.site-header .site-socials a:hover .fa {
    color: #CC2529;
    opacity: 1;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

/* Toggle / Hamburger */
/* Animation / Overlay */
.top-animate {
  background: #DD1E2D !important;
  top: 17px !important;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mid-animate {
  opacity: 0;
}

.bottom-animate {
  background: #DD1E2D !important;
  top: 11px !important;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.top-menu {
  top: 5px;
  width: 32px;
  height: 3px;
  background-color: #111111;
}
.mid-menu {
  top: 13px;
  width: 32px;
  height: 3px;
  background-color: #111111;
}
.bottom-menu {
  top: 21px;
  width: 32px;
  height: 3px;
  background-color: #111111;
}

.overlay-menu {
    position: absolute;
    z-index: 9999;
}
.menui {
  background: #FFFFFF;
  transition: 0.6s ease;
  transition-timing-function: cubic-bezier(.75, 0, .29, 1.01);
  position: relative;
}
.hamburger {
    margin: 2px auto 0 6px;
    text-align: center;
}
.icon-nav {
    background: #000 none repeat scroll 0 0;
    float: right;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px;
    position: fixed;
    right: 0;
    width: 60px;
    z-index: 99999;
}
.mobilenav {
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    font-family: inherit;
    height: 100%;
    left: 0;
    padding: 10% 2%;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
}
.mobilenav li {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15em;
    list-style-type: none;
    padding: 8px 0;
    text-align: center;
    text-transform: uppercase;
}
.mobilenav li a{
    display: block;
    text-decoration: none;
    color: #fff;
}
.mobilenav li a:hover{
    color: #CC2529;
}
.mobilenav img{ margin: 0 auto; width: 100%; height: auto; max-width: 250px; margin: 0 auto 30px; }

.overlay-menu .social-icons a {
    color: #666;
    font-size: 20px;
    margin: 30px 12px 1%;
    display: inline-block;
}
.overlay-menu .social-icons a:hover {
    color: #CC2529;
}

/* Navigation */
header.site-header .menu-main-navigation-container {
    padding: 0;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
header.site-header .menu-main-navigation-container li {
    margin: 0 10px;
    display: inline-block;
}
header.site-header .menu-main-navigation-container li a {
    color: #FFFFFF;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px;
    text-decoration: none;
    text-transform: uppercase;
}
header.site-header .menu-main-navigation-container li a:hover { color: #CC2529; }




/* =Home
-------------------------------------------------------------- */
/* Fullscreen Video Hero */
body.page-template-page-home .iframe-wrapper iframe {
    height: 70.25vw;
    left: 50%;
    min-height: 130vh;
    min-width: 243.77vh;
    width: 146vw;
}

/* Makes a fixed background wrapper
which the user cannot interact with */
.iframe-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
}

/* Make the iframe keep an aspect ratio, and
position it in the middle of its parent wrapper*/
.iframe-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#video-background {
    height: auto;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
.hero_image video {
    height: auto !important;
    width: 110% !important;
}
.hero_image {
    background-size: cover !important;
    color: #ffffff;
    overflow: hidden;
    padding: 11% 5%;
    position: relative;
}
.hero_image .container {
    padding: 15% 0 20%;
    position: relative;
    text-align: center;
    z-index: 999;
}
.hero-logo {
    margin: 0 auto;
    text-align: center;
}
.hero-logo img{
    width: 100%;
    height: auto;
    max-width: 580px;
}
.hero_image h1.page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.hero_image p {
    font-size: 16px;
    line-height: 28px;
    margin: 2% 0 1%;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}
#hero.hero_image .container { padding: 0; overflow: visible;}
#hero.hero_image { height: 100%; max-height: 750px; min-height: 480px; }
.hero_image a.cta {
    border: 1px solid #111111;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    display: table;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 50px auto;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: none;
    width: auto;
}
.hero_image a.cta:hover { border-color: #CC2529; background-color: #CC2529; color: #FFFFFF; }
.hero_image .cta-buttons {
    display: block;
    margin: 5% 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.hero_image a.cta {
    border-color: #ffffff;
    color: #fff;
    display: inline-block;
    margin: 0 2%;
}

/* Feature Sections (50/50) */
.home-featured {
    width: 100%;
    display: block;
    overflow: hidden;
}
.home-featured .featured_image {
    background-position: center center !important;
    background-size: cover !important;
    display:table-cell;
    vertical-align:middle;    
}
.home-featured:nth-child(2n) .featured_image { float: right; }
.home-featured .featured_image, .home-featured .featured_text {
    float: right;
    padding: 6%;
    width: 50%;
}
.home-featured .featured_image {
    background: #000 none repeat scroll 0 0;
    float: left;
    min-height: 600px;
}
.home-featured .featured_text {
    vertical-align: middle;    
}
.home-featured .featured_text img.icon {
    margin-bottom: 2%;
    max-width: 50px;
    width: 100%;
}
.home-featured h2.headline {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
    max-width: 80%;
    text-transform: uppercase;
}
.home-featured .description {
    display: block;
    margin: 25px 0;
    max-width: 600px;
}
.home-featured .cta-buttons {
    display: block;
    float: left;
    margin: 2% auto 0;
    overflow: hidden;
}
.home-featured a.cta, #venue-spotlight a.cta, #venue-spotlight-2 a.cta, .package-features-desc a.cta{
    float: left;
    font-weight: 700;
    margin: 0 15px 0 0;
    padding: 6px;
    text-decoration: none;
    text-transform: uppercase;
}
.package-features-desc a.cta, .home-featured a.cta:first-child, #venue-spotlight a.cta:first-child, #venue-spotlight-2 a.cta:first-child {
    border: 1px solid;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 8px 23px;
}
.home-featured a.cta:first-child:hover{
  color: #FFFFFF !important;
  background: var(--bg-hover) !important;
}
.home-featured a.cta:hover{
  color: var(--text-hover) !important;
}



/* =Blog
-------------------------------------------------------------- */
body.blog #wrapper{ 
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
 }
article.type-post {
    border-bottom: 1px solid #ededed;
    display: block;
    padding: 40px 3%;
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 1300px;
}
article.type-post:first-child { margin-top: 100px;}
article.type-post:last-child { border-bottom: none; }
article.type-post .entry-content {
    margin: 3% auto;
    text-align: left;
}
article.type-post .entry-title, article.type-post .entry-title a {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.15em;
    margin: 0 auto;
    max-width: 800px;
    text-decoration: none;
}
article.type-post .entry-meta {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 16px;
    margin: 1% auto;
    text-transform: uppercase;
}
article.type-post .excerpt-thumb {
    background-position: center center;
    background-size: cover;
    height: 450px;
    margin: 3% auto;
    max-width: 960px;
    overflow: hidden;
    width: 100%;
}
article.type-post p {
    display: block;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}
article.type-post .readmore {
    border: 1px solid #111111;
    border-radius: 30px;
    color: #111;
    display: table;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 4% auto 0;
    padding: 10px 35px;
    text-decoration: none;
    text-transform: uppercase;
}
article.type-post .readmore:hover {
    background: #CC2529;
    border: 1px solid #CC2529;
    color: #FFFFFF;
}
#wrapper #primary .navigation.paging-navigation {
    background: #EFEFEF;
    margin: 0 auto;
}
.nav-previous a, .nav-next a {
    border-right: 1px solid #dddddd;
    color: #999999;
    display: block;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 15px 3%;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}
.nav-next a { border-right: none; }
.nav-previous a:hover, .nav-next a:hover { background: #CC2529; color: #FFFFFF; }
.nav-links i.fa {
    font-size: 16px;
    padding: 0 10px;
}

/* Single Blog Post */
article.hentry { margin: 0 auto; }
#wrapper article.type-post iframe, #wrapper article.type-post img, #wrapper article.type-post embed {
    margin: 4% auto;
    text-align: center;
    width: 100%;
}
article.type-post .entry-content h3 {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 28px;
    margin: 20px auto 0;
    text-transform: uppercase;
}
#wrapper figure.wp-caption {
    display: block;
    margin: 2% auto;
    border: medium none;
    max-width: 100%;
}
.wp-caption .wp-caption-text {
    background: #efefef none repeat scroll 0 0;
    font-size: 12px;
    font-weight: normal;
    line-height: 20px;
    margin: 0 auto;
    padding: 2% 5%;
}
#wrapper figure.wp-caption img {
    display: block;
    margin: 0 auto !important;
    max-width: 100%;
}


/* =Menus (Food & Drink)
-------------------------------------------------------------- */
#primary.menus {
    background: rgb(242,238,218); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(242,238,218,1) 0%, rgba(239,236,218,1) 50%, rgba(247,242,234,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(242,238,218,1) 0%,rgba(239,236,218,1) 50%,rgba(247,242,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(242,238,218,1) 0%,rgba(239,236,218,1) 50%,rgba(247,242,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2eeda', endColorstr='#f7f2ea',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.menu-spotlight .container {
    padding: 1% 0;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    max-width: 1300px;
}
#primary.menus p {
    margin: 0 auto 5px;
}
.menu-listing .menu-item {
    float: left;
    font-size: 14px;
    line-height: 30px;
    padding: 3% 6%;
    text-align: left;
    width: 50%;
}
.menu-listing .menu-item .container { text-align: center; }
h1.menu-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 28px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}
h2.menu-title {
    display: block;
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 28px;
    margin: 0 auto 2%;
    text-transform: uppercase;
}
.menu-item img {
    margin: 5px auto;
    max-height: 65px;
}
.menu-desc {
    margin-bottom: 30px;
    overflow: hidden;
}


/* =404
-------------------------------------------------------------- */
body.error404 #primary {
    background: #000 none repeat scroll 0 0;
    color: #fff;
    display: block;
    padding: 15% 0;
    position: relative;
    text-align: center;
}

/* =Event Listing (Playboy)
-------------------------------------------------------------- */
body.page-template-page-playboy header.site-header .menu-main-navigation-container { text-shadow: none; }
body.page-template-page-playboy header.site-header .menu-main-navigation-container li a { color: #5A3113; }

#more-events.event-listing.beach.playboy {
    padding: 35px 0;
    background: #FFFFFF;
    text-align: center;
}
#more-events.event-listing.beach.playboy .list-view { text-align: left; }
#more-events.event-listing.beach.playboy iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    padding: 10px;
    background: #f1ede6;
    margin: -5px auto 15px;
}
#more-events.event-listing.beach.playboy {
    padding: 3% 0 0;
    background: none;
    max-width: 1000px;
    margin: 0 auto;
}
body.page-template-page-playboy #more-events .tfly-org-id-6217 .venue { display: none; }


/* =Event Listing (List View)
-------------------------------------------------------------- */
/* Whats Happening Headline */
#event-cards .headline, #more-events .headline {
    color: #111111;
    display: block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 24px;
    margin: 1% auto 4%;
    text-align: left;
    text-transform: uppercase;
}
#event-cards .headline i,#more-events .headline i {
    color: #CC2529;
    font-size: 20px;
    margin-left: 5px;
}
#event-cards.featured-events.beach .headline { color: #87BFC7; }
#more-events.beach h2.headline { color: #87BFC7;}
#more-events.nightclub h2.headline { color: #5F5776;}

#more-events.nightclub .list-view-item .ticket-link.external-link a,
#more-events.nightclub .list-view-item .more-info a { border-color: #DDD; color: #DDD; }
#more-events.nightclub .list-view-item .ticket-link.external-link a:hover,
#more-events.nightclub .list-view-item .more-info a:hover { border-color: #CC2529; background: #CC2529; color: #FFF; }
#event-cards.featured-events .headline {
    color: #222222;
    font-size: 18px;
    margin: 0 auto 2%;
    text-align: center;
}

/* Special beauty & Essex Open Bar Package */
#wrapper .event-detail .ticket-link.external-link.beauty--essex-open-bar-package a{color:#fff;}
#wrapper .event-detail .ticket-link.external-link.beauty--essex-open-bar-package a,
#more-events.nightclub .list-view-item .ticket-link.beauty--essex-open-bar-package a{
  background-color: #4f205a;
}


/* No Events Style */
#wrapper .list-view .event-status-message {
    font-size: 14px;
    font-style: italic;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 auto;
    opacity: 0.4;
    padding: 5% 0 15%;
    text-align: center;
    width: 65%;
}

/* Full Width CTA */
#event-cards .cta, #more-events .cta, #primary.calendar-view .cta{
    color: #CCCCCC;
    display: block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 2% auto 0;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}
#event-cards .cta:hover, #more-events .cta:hover, #primary.calendar-view .cta:hover {
    border-color: #CC2529;
    background: #CC2529;
    color: #FFFFFF;
}
#primary.calendar-view .cta { background: #EEEEEE; margin: 0 auto;}
#event-cards.featured-events .cta, #more-events.event-listing .cta { background: #EEEEEE;}
#event-cards.featured-events .cta:hover, #more-events.event-listing .cta:hover { background: #CC2529; color: #FFF;}

/* Condensed List View */
#more-events {
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 3% 0;
}
#more-events.event-listing { padding: 3% 0 0; }
#more-events .container { max-width: 1300px;}
#wrapper #more-events .list-view img {
    margin: 0 3% 0 10%;
    max-width: 250px;
}
#more-events .list-view-item .dates {
    float: left;
    left: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    position: absolute;
    text-transform: uppercase;
    top: 35px;
    width: 7%;
}
#more-events .topline-info {
    font-size: 12px;
}
#more-events h1.headliners a {
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
#wrapper #more-events h1.headliners a:hover { color: #CC2529; }
#more-events h2.supports.description a {
    display: block;
    float: left;
    font-size: 16px;
    line-height: 20px;
    margin: 0 auto 5px;
    text-transform: uppercase;
}
#more-events .list-view-item .times {
    clear: left;
    color: #444;
    display: block;
    font-size: 13px;
    line-height: 20px;
    margin: 0 auto;
    text-transform: uppercase;
}
#more-events .list-view-item .price-range { display: none; }

#more-events .list-view-item .age-restriction {
    clear: left;
    color: #999;
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    text-transform: none;
}
#more-events .list-view-item .venue {
    clear: left;
    font-size: 12px;
    font-weight: 700;
    left: 15px;
    margin: 0 auto;
    padding: 10px 0 10px 30px;
    position: absolute;
    text-indent: -999em;
    text-transform: uppercase;
    top: 0;
    width: 35px;
}


/* Venue Icons */
#more-events .tfly-org-id-6171 .venue {
    background: url("images/record-icon.png") no-repeat scroll top left / 30px auto;
}
#more-events .tfly-org-id-6217 .venue {
    background: url("images/beach-icon.png") no-repeat scroll top left / 28px auto;
}
#more-events .list-view-item:nth-last-child(2), 
#more-events.beach .list-view-item:nth-last-child(2) { border-bottom: none; }

/* Beach / Orange Overwrite */
#wrapper .tfly-calendar .one-event.tfly-org-id-6217 .ticket-link a,
#wrapper .event-detail.tfly-org-id-6217 .ticket-link a,
#wrapper .list-view-item.tfly-org-id-6217 .ticket-link a { background: #EA7900; border: 1px solid #EA7900;}
#wrapper .tfly-calendar .one-event.tfly-org-id-6217 .ticket-link a:hover,
#wrapper .event-detail.tfly-org-id-6217 .ticket-link a:hover,
#wrapper .list-view-item.tfly-org-id-6217 .ticket-link a:hover { background: #111; border-color: #111; }

#wrapper .tfly-calendar .one-event.tfly-org-id-6217 h2.venue.location,
#wrapper .event-detail.tfly-org-id-6217 .dates,
#wrapper .event-detail.tfly-org-id-6217 .times,
#wrapper #event-cards .list-view-item.tfly-org-id-6217 .dates,
#more-events h1.headliners a:hover,
#wrapper #event-cards .list-view-item.tfly-org-id-6217 h1 a:hover,
#wrapper .list-view-item.tfly-org-id-6217 .topline-info { color: #EA7900; }


/* TF Event List View */
#wrapper .list-view-item {
    border: 0;
    border-bottom: 1px solid #efefef;
    margin: 0 auto 25px;
    overflow: hidden;
    padding: 0 15px 25px;
}
#wrapper .list-view img {
    float: left;
    margin: 0 40px 0 0;
    max-width: 25%;
    width: 100%;
}
.list-view-item .event-status-message {
    background: #111 none repeat scroll 0 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin: 0 auto 10px;
    padding: 2px 10px;
    text-transform: uppercase;
}
.list-view-item .topline-info {
    color: #cc2529;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 20px;
    text-transform: uppercase;
}
.list-view-item h1 a {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.03em;
    line-height: 33px;
    text-decoration: none;
}
.list-view-item h2 a {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.03em;
    line-height: 26px;
    text-decoration: none;
}
.list-view-item .dates, .list-view-item .times {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 24px;
    margin: 0 15px;
}
.list-view-item .age-restriction {
    color: #999;
    font-size: 13px;
    font-style: italic;
    font-weight: normal;
    letter-spacing: 0;
}
.list-view-item .venue {
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-top: 20px;
    text-transform: uppercase;
}

/* Buy Buttons */
#wrapper .ticket-link.external-link a::before {
    content: "";
}
#more-events .list-view-item .more-info  { 
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  width: 100%;
  max-width: 190px;
}

#wrapper .event-detail .ticket-link.external-link a,
#more-events .list-view-item .ticket-link.external-link a,
#more-events .list-view-item .more-info a { 
  display: block;
  background: transparent;
  border: 1px solid #111;
  border-radius: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #111;
  margin: 5px 0 0;
  padding: 11px;
  width: 100%;
}
#wrapper .event-detail .ticket-link.external-link a:hover,
#more-events .list-view-item .ticket-link.external-link a:hover,
#more-events .list-view-item .more-info a:hover {
  background: #111;
  color: #FFF;
}
.list-view .ticket-price {
    float: right;
    max-width: 190px;
    text-align: center;
    width: 100%;
}
.list-view .ticket-link a, .list-view .sold-out, .list-view .cancelled, .list-view .postponed, .list-view .free, .list-view .tickets-at-the-door, .list-view .future-sale a, .list-view .on-sale-soon, .list-view .custom {
    text-decoration: none;
    width: 100% !important;
}
#wrapper .custom a, #wrapper .ticket-link a, #wrapper .tfly-calendar .ticket-link a, #wrapper .sold-out, #wrapper .cancelled, #wrapper .postponed, #wrapper .rescheduled, #wrapper .free, #wrapper .tickets-at-the-door, #wrapper .future-sale a, #wrapper .on-sale-soon, #wrapper .custom {
    border: 0 none;
    border-radius: 0;
    display: block;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 0 0 5px;
    padding: 11px;
    text-decoration: none;
    text-transform: uppercase;
}

/* Buy Buttons - Colors */
#wrapper a.tickets, #wrapper .tfly-calendar .ticket-link a {
    background: #cc2529 none repeat scroll 0 0;
    border: 1px solid #cc2529;
    color: #ffffff;
    font-weight: 700;
}
#wrapper a.tickets:hover, #wrapper .tfly-calendar .ticket-link a:hover {
    background: #111 none repeat scroll 0 0;
    border: 1px solid #111;
    color: #FFFFFF;
}
#wrapper .free {
    background: #FFF;
    border: 1px solid #EDEDED;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

#wrapper .cancelled, #wrapper .postponed, #wrapper .rescheduled,
#wrapper .sold-out, #wrapper .tickets-at-the-door {
    background: #EDEDED none repeat scroll 0 0;
    color: #CCC;    
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    max-width: 280px;
    opacity: 1;
    width: 100%;
}
#wrapper .future-sale a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #111111;
    border: 1px solid #111111;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    padding: 10px 0;
}
#wrapper .future-sale a:hover{
    color: #FFFFFF;
    border-color: #111111;
    background: #111111 none repeat scroll 0 0;
}
#wrapper .custom a {
    background: #111111 none repeat scroll 0 0;
    border: 1px solid #111111;
    color: #FFFFFF;
}
#wrapper .custom a:hover {
    background: #111111 none repeat scroll 0 0;
    border: 1px solid #111111;
    color: #FFFFFF;
}
#wrapper .future-sale {
    max-width: 280px;
}
#wrapper .price-range {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    margin: 10px auto 0;
    text-transform: uppercase;
}


/* =Event Listing (Card View)
-------------------------------------------------------------- */
body.page-template-page-events #primary { border-top: 64px solid #000;}

#event-cards {
    padding: 3% 0;
    position: relative;
    overflow: hidden;
}
#event-cards .container {
    padding: 0;
    max-width: 1300px;
    text-align: center;
}

.prev, .next {
    cursor: pointer;
    float: left;
    font-size: 30px;
    left: 5px;
    opacity: 0.3;
    padding: 2%;
    position: absolute;
    top: 40%;
    vertical-align: top;
    width: 20px;
}
.next {
    float: right;
    left: auto;
    right: 5px;
}
.prev:hover, .next:hover { opacity: 1; }


/* Event Card Venue Icons */
#wrapper #event-cards .list-view-item.tfly-org-id-6171 .location {
    background: rgba(0, 0, 0, 0) url("images/record-icon.png") no-repeat scroll top left / 33px auto;
}
#wrapper #event-cards .list-view-item.tfly-org-id-6217 .location {
    background: rgba(0, 0, 0, 0) url("images/beach-icon.png") no-repeat scroll top left / 30px auto;
}
/* Event Cards - Hidden Things */
#event-cards .topline-info, #event-cards .supports.description,  #event-cards .times, #event-cards .location, #event-cards .ticket-price, #event-cards .age-restriction, #event-cards .ticket-price { display: none; }

/* Event Cards - Home */
#event-cards.featured-events.home {
    background: #000000; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #000000 0%, #141414 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #000000 0%,#141414 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #000000 0%,#141414 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#141414',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 35px 0 0;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.12);
}
#event-cards.featured-events.home a.cta {
    margin: 2% auto 0;
    width: 100%;
    border: none;
    padding: 15px 0;
    border-top: 1px solid #222;
    color: #444444;
    background: #151515;
}
#event-cards.featured-events.home a.cta:hover {
    color: #FFFFFF;
    background: #CC2529;
}
#wrapper #event-cards .list-view-item {
    border: 1px solid #ededed;
    display: inline-block;
    margin: 0 auto;
    min-height: 450px;
    max-height: 450px;
    max-width: 450px;
    padding: 0;
    width: 100%;
}
#wrapper #event-cards .list-view-item img {
    max-width: 100%;
    width: 100%;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
#wrapper #event-cards .list-view-item img:hover {
    opacity: 0.75;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
#wrapper #event-cards .list-view-details {
    background: #ffffff none repeat scroll 0 0;
    bottom: 0;
    color: #111;
    height: auto;
    left: 0;
    max-width: 100%;
    min-height: auto;
    padding: 5px 4% 15px;
    position: absolute;
    text-align: left;
    width: 100%;
}
#wrapper #event-cards .list-view-item .topline-info {
    color: #cc2529;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 18px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
#wrapper #event-cards .list-view-item h1 a {
    color: #000;
    float: left;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 14px;
    margin: 0 0 10px;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}
#wrapper #event-cards .list-view-item h1.headliners.summary a:first-child {
    padding: 35px 0 0;
}
#wrapper #event-cards .list-view-item h1 a:hover { color: #CC2529;}
#wrapper #event-cards .list-view-item h2 a {
    display: block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.03em;
    line-height: 22px;
    text-decoration: none;
}
#wrapper #event-cards .list-view-item .dates {
    clear: both;
    color: #CC2529;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    letter-spacing: 0.05em;
    line-height: 16px;
    padding: 15px 0 0;
    position: absolute;
    text-transform: uppercase;
    top: 0;
}
#wrapper #event-cards .list-view-item .times { font-weight: normal; font-size: 12px;}
#wrapper #event-cards .price-range { display: none; }
#wrapper #event-cards .future-sale {
    width: 110px;
}
#wrapper #event-cards .future-sale a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #999;
    font-size: 10px;
    line-height: 16px;
    padding: 15px;
    text-align: right;
}
#wrapper #event-cards .future-sale a:hover {
    color: #FFF;
}
#wrapper #event-cards .list-view-item .event-status-message {
    background: #f5e31b none repeat scroll 0 0;
    border: medium none;
    display: block;
    float: left;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    line-height: 14px;
    margin: -34px 0 0;
    padding: 10px 4%;
    position: absolute;
    text-transform: uppercase;
    top: 0;
}
#wrapper #event-cards .postponed, #wrapper #event-cards .rescheduled, #wrapper #event-cards .tickets-at-the-door, #wrapper #event-cards .free {
    display: none;
    background: #F5F5F5 none repeat scroll 0 0;
    border-top: 1px solid #EDEDED;
    border-radius: 0;
    color: #999999;
    font-size: 13px;
    margin: 0;
    padding: 13px 0;
}
#wrapper #event-cards .free { border-radius: 0; border: 0; color: #111; border-top: 1px solid #EDEDED; }
#wrapper #event-cards .location {
    display: block !important;
    font-size: 4px;
    height: 35px;
    left: 10px;
    margin-top: -355px;
    position: absolute;
    text-indent: -888em;
    top: 0;
    width: 35px;
}

/* =Photo Galleries
-------------------------------------------------------------- */
.gallery-thumb-wrap {
    display: inline-block;
    padding: 1%;
    vertical-align: top;
    width: 33%;
}
.gallery-thumb {
    background: #000;
    height: 225px;
    margin: 0 auto 15px;
    overflow: hidden;
}
.gallery-thumb img {
    min-height: 225px !important;
}
h4.gallery-title a {
    color: #CC2529;
    display: block;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.06em;
    line-height: 24px;
    margin: 5px 0;
    text-decoration: none;
    text-transform: uppercase;
}
h4.gallery-title a:hover { color: #111111; }

/* Single Gallery */
.single-format-gallery .entry-content {
    max-width: 1200px;
    padding: 120px 1%;
    text-align: center;
    width: 100%;
}
#wrapper .gallery a img {
    border: medium none;
    height: auto;
    max-width: 100%;
}
#wrapper .gallery-columns-5 .gallery-item {
    margin: 0 0 -5px;
    max-width: 20%;
    padding: 0.5%;
}
.entry-title {
    color: #CC2529;
    font-size: 38px;
    line-height: 52px;
    margin: 0 auto 15px;
    text-transform: uppercase;
}
.single-format-gallery .entry-content .gallery {
    margin: 30px auto 50px;
}
.single-format-gallery a.cta {
    border: 1px solid #111;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 2% 0;
    padding: 7px 24px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: auto;
    text-shadow: none;
}
.single-format-gallery a.cta:hover { border-color: #CC2529; background-color: #CC2529; color: #FFFFFF; }
.gallery { margin: 0 auto;}
.gallery-icon img {
    opacity: 1;
    margin: 0 auto;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.gallery-icon img:hover {
    opacity: 0.8;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
.gallery-caption {
    display: none;
}

/* Fancybox Overwrites */
#fancybox-close {
    background: rgba(0, 0, 0, 0) url("images/close.png") no-repeat scroll 0 0 / 100% auto !important;
    height: 25px !important;
    right: -30px !important;
    top: -30px !important;
    width: 25px !important;
}
#fancybox-title-over { display: none !important; }
#fancybox-wrap { padding: 30px !important; }
#fancybox-right { right: -50px !important;}
#fancybox-left { left: -50px !important;}
#fancybox-left-ico {
    background: rgba(0, 0, 0, 0) url("images/prev.png") no-repeat scroll top left / auto 100% !important; 
}
#fancybox-right-ico {
    background: rgba(0, 0, 0, 0) url("images/next.png") no-repeat scroll top right / auto 100% !important; 
}




/* =Venues
-------------------------------------------------------------- */
#fullwidth.header-img {
    max-height: 65vh;
    height: 65vh;
    padding: 0;
}
#fullwidth.header-img .page-title {
    color: #FFFFFF;
    padding: 28vh 0;
}
#venue-spotlight .container, #venue-spotlight-2 .container { padding: 10% 10% 15%;}
#venue-spotlight h2, #venue-spotlight-2 h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin: 5px 0 20px;
    text-transform: uppercase;
    width: 75%;
}
#venue-spotlight a.cta, #venue-spotlight-2  a.cta { margin-top: 25px;}

#venue-spotlight a.cta:first-child:hover, #venue-spotlight-2 a.cta:first-child:hover {  border-color: #CC2529; background: #CC2529; color: #FFFFFF; }

.events-galleries { background: #111; overflow: hidden; padding: 15px;}
.events-galleries .gallery-item { margin-bottom: -10px; padding: 5px;}


/* =Restaurant
-------------------------------------------------------------- */
#venue-spotlight.restaurant, #venue-spotlight-2.restaurant {
    color: #230000;
    background: rgb(242,238,218); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(242,238,218,1) 0%, rgba(239,236,218,1) 50%, rgba(247,242,234,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(242,238,218,1) 0%,rgba(239,236,218,1) 50%,rgba(247,242,234,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(242,238,218,1) 0%,rgba(239,236,218,1) 50%,rgba(247,242,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2eeda', endColorstr='#f7f2ea',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.events-galleries.restaurant {
    background: #230404; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #230404 0%, #5b0505 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #230404 0%,#5b0505 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #230404 0%,#5b0505 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#230404', endColorstr='#5b0505',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.redbar.restaurant {
    background: #f7c054; /* Old browsers */
    background: -moz-linear-gradient(-45deg,  #f7c054 0%, #f6ba42 55%, #eab04d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #f7c054 0%,#f6ba42 55%,#eab04d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #f7c054 0%,#f6ba42 55%,#eab04d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7c054', endColorstr='#eab04d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#venue-spotlight.restaurant h2, #venue-spotlight-2.restaurant h2 { color: #bf8219;}
#venue-spotlight.restaurant .spotlight-text strong {
    color: #5b0505;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
}
#venue-spotlight.restaurant a.cta:first-child:hover, #venue-spotlight-2.restaurant a.cta:first-child:hover { color: #FFF; background: #230000; border-color: #230000;}
#venue-spotlight.restaurant a.cta:hover, #venue-spotlight-2.restaurant a.cta:hover { color: #230000;}

.private-events-spotlight.restaurant { background: #120e08; }
.private-events-spotlight.restaurant p { color: #817c74;}
.private-events-spotlight.restaurant a { color: #bf8219;}

/* =Beach
-------------------------------------------------------------- */
#event-cards img {
    float: none;
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
}
#event-cards.beach {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    padding: 3% 0 0;
    text-align:center;
}
#wrapper #event-cards.beach .dates { color: #EA7900; }
#venue-spotlight.beach h2, #venue-spotlight-2.beach h2 { color: #EA7900;}
#venue-spotlight.beach a.cta:hover, #venue-spotlight.beach a:hover,#venue-spotlight-2.beach a.cta:hover, #venue-spotlight-2.beach a:hover { color: #EA7900;}
#venue-spotlight.beach a.cta:first-child:hover, #venue-spotlight-2.beach a.cta:first-child:hover { background: #EA7900; color: #FFFFFF; border-color: #EA7900; }
.events-galleries.beach { background: #dff3f8;}
#more-events.beach .list-view-item {
    border-bottom: 1px solid #EDEDED;
}
#more-events.beach .list-view-item a.tickets {
    background: #EA7900 none repeat scroll 0 0;
    border: 1px solid #EA7900;
}
#more-events.beach .list-view-item .vip-packages a.tickets { color: #EA7900 !important; background: none; }
#more-events.beach .list-view-item a.tickets:hover { background: #000; border-color: #000; color: #FFFFFF !important; }
#more-events.beach .topline-info { color: #EA7900; }
#more-events.beach .list-view-item .times, #more-events.beach .list-view-item .age-restriction { color: #125d79; }
#more-events.beach .list-view-item .free, #more-events.beach .list-view-item .sold-out { background: none; border-color: #125d79; color: #125d79; opacity: 0.25;}
#more-events.beach .cancelled, #more-events.beach .postponed, #more-events.beach .rescheduled {
    background: #8fcddd none repeat scroll 0 0;
    border: 1px solid #8fcddd;
    color: #c6eef1;
}
#more-events.beach .cta {
    background: #a7d5dc none repeat scroll 0 0;
    border-top: 1px solid #a7d5dc;
    color: #335468;
}
#more-events.beach .cta:hover { background: #EA7900; border: 1px solid #EA7900; color: #FFFFFF;}
#wrapper #more-events.beach h1.headliners a:hover { color: #EA7900; }
.redbar.beach {
    background: rgb(247,145,44); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(247,145,44,1) 1%, rgba(234,121,0,1) 50%, rgba(232,108,0,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(247,145,44,1) 1%,rgba(234,121,0,1) 50%,rgba(232,108,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(247,145,44,1) 1%,rgba(234,121,0,1) 50%,rgba(232,108,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7912c', endColorstr='#e86c00',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}


/* =Nightclub
-------------------------------------------------------------- */
#event-cards.nightclub {
    background: #000 none repeat scroll 0 0;
    padding: 3% 0 0;
}
#wrapper #event-cards.nightclub .prev,
#wrapper #event-cards.nightclub .next { color: #FFF; }
#wrapper #event-cards.nightclub .list-view-item { border: 1px solid #000; }
#wrapper #event-cards.nightclub .list-view-details { 
    border-top: 1px solid #111;
    background: rgb(20,20,20); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(20,20,20,1) 0%, rgba(12,12,12,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(20,20,20,1) 0%,rgba(12,12,12,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(20,20,20,1) 0%,rgba(12,12,12,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#141414', endColorstr='#0c0c0c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
 }
#wrapper #event-cards.nightclub .list-view-item h1 a { color: #FFF; }
#wrapper #event-cards.nightclub .list-view-item h1 a:hover { color: #CC2529; }
#venue-spotlight.nightclub, #venue-spotlight-2.nightclub, #venue-reservation.nightclub {
    background: #000000;
    color: #FFF;
}
#venue-spotlight.nightclub a.cta, #venue-spotlight-2.nightclub a.cta {
    border-color: #CC2529;
    color: #CC2529;
}
#venue-spotlight.nightclub a.cta:hover, #venue-spotlight-2.nightclub a.cta:hover { color: #FFF; }
#venue-spotlight.nightclub h2, #venue-spotlight-2.nightclub h2 { color: #CC2529;}
.events-galleries.nightclub { background: #0F0A1C; }
#more-events.nightclub { 
    background: #020113;
    background: -moz-linear-gradient(top, #020113 0%, #0c1117 44%, #160c22 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #020113), color-stop(44%, #0c1117), color-stop(100%, #160c22));
    background: -webkit-linear-gradient(top, #020113 0%, #0c1117 44%, #160c22 100%);
    background: -o-linear-gradient(top, #020113 0%, #0c1117 44%, #160c22 100%);
    background: -ms-linear-gradient(top, #020113 0%, #0c1117 44%, #160c22 100%);
    background: linear-gradient(to bottom, #020113 0%, #0c1117 44%, #160c22 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020113', endColorstr='#160c22', GradientType=0 );
}
#more-events.nightclub .container { color: #FFF; }
#more-events.nightclub .list-view-item { border-color: #292436;}
#more-events.nightclub .dates { top: 0;}
#more-events.nightclub h1.headliners a { color: #FFFFFF; }
#more-events.nightclub h2.supports a { color: #DDDDDD; }
#more-events.nightclub h1.headliners a:hover , #more-events.nightclub h2.supports a:hover { color: #CC2529; }
#more-events.nightclub .age-restriction { color: #474157; }
#more-events.nightclub .venue { display: none; }
#more-events.nightclub .cancelled, #more-events.nightclub .postponed, #more-events.nightclub .rescheduled { opacity: 0.4; background: #2e293b; border-color: #2e293b; color: #706c9b; }
#more-events.nightclub .future-sale a { color: #5f5776; background: none; border: 1px solid #5f5776; }
#event-cards.nightclub .cta, #more-events.nightclub .cta {
    background: #231a2f none repeat scroll 0 0;
    border-top: 1px solid #231a2f;
    color: #b0a0c5;
}
#event-cards.nightclub .cta:hover, #more-events.nightclub .cta:hover {
    background: #CC2529 none repeat scroll 0 0;
    border-top: 1px solid #CC2529;
    color: #FFFFFF;
}


/* =Events (Dark Overwrite)
-------------------------------------------------------------- */
body.page-template-page-events #event-cards.featured-events .headline { color: #ffffff;}
body.page-template-page-events #event-cards.nightclub .cta{
    background: #111111 none repeat scroll 0 0;
    border-top: 1px solid #222222;
    color: #666666;
    font-size: 15px;
}
body.page-template-page-events #event-cards.nightclub .cta:hover {
    background: #CC2529 none repeat scroll 0 0;
    border-top: 1px solid #CC2529;
    color: #FFFFFF;
}
body.page-template-page-events #more-events.nightclub {
    background: #0b0a0f;
    background: -moz-linear-gradient(top,  #0b0a0f 0%, #000000 69%);
    background: -webkit-linear-gradient(top,  #0b0a0f 0%,#000000 69%);
    background: linear-gradient(to bottom,  #0b0a0f 0%,#000000 69%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b0a0f', endColorstr='#000000',GradientType=0 );
}
body.page-template-page-events #more-events.nightclub .list-view-item { border-color: #191820;}



/* =Calendar (Dark Overwrite)
-------------------------------------------------------------- */
body.page-template-page-calendar #primary.calendar-view .cta{
    background: #000000 none repeat scroll 0 0;
    border-bottom: 1px solid #222222;
    color: #666666;
}
body.page-template-page-calendar #primary.calendar-view .cta:hover {
    background: #CC2529 none repeat scroll 0 0;
    border-bottom: 1px solid #CC2529;
    color: #FFFFFF;
}
body.page-template-page-calendar #primary.calendar-view {
    background: #0b0a0f;
    background: -moz-linear-gradient(top,  #0b0a0f 0%, #000000 69%);
    background: -webkit-linear-gradient(top,  #0b0a0f 0%,#000000 69%);
    background: linear-gradient(to bottom,  #0b0a0f 0%,#000000 69%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b0a0f', endColorstr='#000000',GradientType=0 );
}

/* =Full Width
-------------------------------------------------------------- */
#fullwidth.fullwidth-page { background: #000; padding: 0 3%; }

#primary.event-listing #event-cards.featured-events { padding: 3% 0 0;}
#primary.event-listing .additional-info { border-top: 1px solid #EDEDED; padding: 2% 0; }
#primary.event-listing .container { max-width: 1300px; }



/* =Calendar
-------------------------------------------------------------- */
body.page-template-page-calendar #fullwidth { display: none;}
body.page-template-page-calendar #primary { border-top: 64px solid #000000;}
#wrapper .tfly-calendar .calendar-sync, #wrapper .tfly-calendar .calendar-list-flip{ display: none; }
#wrapper .tfly-calendar {
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 1%;
    width: 100%;
}
#wrapper .tfly-calendar table {
  margin-bottom: 0px;
  border: 0;
  border-collapse: separate;
  border-spacing: 3px 10px;
  padding: 0 0 20px;
}
#wrapper .tfly-calendar .one-event {
  overflow-wrap: break-word;
}
#wrapper .tfly-calendar td {padding: 0px;text-align: center;}
#wrapper .tfly-calendar tr td.data {border: 0;}
#wrapper .tfly-calendar td.data.vevent {
    border: 1px solid #222222;
    height: 100px;
}
#wrapper .tfly-calendar tr {border:0;}
#wrapper .tfly-calendar table tr .month {
    color: #CC2529;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 26px;
    margin: 15px auto 0;
    text-transform: uppercase;
}
#wrapper .tfly-calendar h5.date {
    background: #222222 none repeat scroll 0 0;
    color: #ffffff;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    padding: 7px;
    text-transform: uppercase;
}
#wrapper .tfly-calendar .calendar-image {
    margin-bottom: 5px;
}
#wrapper .tfly-calendar h2.topline-info, #wrapper .tfly-calendar h3.topline-info {
    border-color: #DDDDDD;
    color: #999999;
    font-size: 12px;
    margin: 0 auto 3px;
    padding: 2px 0;
    width: 90%;
    word-wrap: break-word;
}
.tfly-calendar h1.headliners a {
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 18px;
    margin: 5px auto;
    overflow-wrap: break-word;
    text-decoration: none;
    text-transform: uppercase;
    width: 90%;
}
.tfly-calendar h2.supports a {
    color: #ffffff;
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 14px;
    margin: 0 auto;
    text-decoration: none;
    word-wrap: break-word;
    text-transform: uppercase;
}
#wrapper .tfly-calendar h2.venue.location {
    color: #CC2529;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 14px;
    margin: 5px auto 10px;
    text-transform: uppercase;
}
#wrapper .tfly-calendar .ticket-link a {
    font-size: 12px;
    margin: 15px auto 0;
    padding: 8px 0;
    width: 80%;
    display: none;
}
#wrapper .tfly-calendar .description {
    display: block;
    margin: 0 auto;
    width: 85%;
}
#wrapper .tfly-calendar .cancelled, 
#wrapper .tfly-calendar .sold-out, 
#wrapper .tfly-calendar .postponed, 
#wrapper .tfly-calendar .rescheduled,
#wrapper .tfly-calendar .free, 
#wrapper .tfly-calendar .tickets-at-the-door, 
#wrapper .tfly-calendar .future-sale a, 
#wrapper .tfly-calendar .on-sale-soon, 
#wrapper .tfly-calendar .custom, 
#wrapper .tfly-calendar .off-sale {
    margin: 10px auto 0;
    width: 100%;
    max-width: 80%;
    font-size: 12px;
    line-height: 14px;
    padding: 10px;
    text-align: center;
}
.tfly-calendar .data .ticket-link a, .tfly-calendar .data .sold-out, .tfly-calendar .data .cancelled, .tfly-calendar .data .postponed, .tfly-calendar .data .free, .tfly-calendar .data .tickets-at-the-door, .tfly-calendar .data .future-sale a, .tfly-calendar .data .on-sale-soon, .tfly-calendar .data h1, .tfly-calendar .data h2, .tfly-calendar .data h3 {
    font-size: 11px;
    line-height: 14px;
}
#wrapper .tfly-calendar .sold-out {
    color: #cc2529;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 1;
}


/* =No Header
-------------------------------------------------------------- */
.page-template-page-agegate header, .page-template-page-noheader header, body.blog header.site-header, body.single-post header.site-header, body.page-id-173 header.site-header {
    background: #000 none repeat scroll 0 0;
    height: 62px;
    padding: 10px;
}

/* =Event Details
-------------------------------------------------------------- */
#wrapper .event-detail {
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}
#wrapper .event-detail .event-info {
    float: left;
    margin: 2% 0;
    max-width: 50%;
    padding: 65px 25px 0;
    width: 100%;
}
#wrapper .event-detail.tfly-org-id-6171 .event-info {
    background: rgba(0, 0, 0, 0) url("images/record-icon.png") no-repeat scroll 25px 15px / 40px auto;
}
#wrapper .event-detail.tfly-org-id-6217 .event-info {
    background: rgba(0, 0, 0, 0) url("images/beach-icon.png") no-repeat scroll 25px 15px / 40px auto;
}
#wrapper .event-detail img {
    float: left;
    margin: 2% 5%;
    max-width: 40%;
    width: 90%;
}
.event-detail h1, .event-detail h2, .event-detail h3 { fontƒ-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;}
.event-detail h1 { font-size: 28px; line-height: 32px; }
.event-detail h2 { font-size: 22px; line-height: 26px; }
.event-detail h3 { font-size: 16px; line-height: 20px; }

.event-detail .topline-info {
    font-size: 13px;
    font-weight: normal;
    line-height: 16px;
    margin: 0 0 2px;
    text-transform: uppercase;
}
.event-detail .dates, .event-detail .times {
    color: #cc2529;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin: 0 auto 5px;
}
.event-detail .dates {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 24px;
    margin-top: 20px;
}
#wrapper .event-detail .price-range {
    font-size: 15px;
    font-weight: normal;
    text-align: left;
    margin-bottom: 25px;
}
#wrapper .event-detail .venue.location {
    display: none;
    font-size: 13px;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
}
#wrapper .event-detail .free { width: 200px; }
#wrapper .event-detail .tickets {
    display: block;
    margin: 0 0 10px;
    max-width: 240px;
    width: 100%;
}
.event-detail .ticket-price {
    clear: both;
    display: inline-block;
    float: left;
    margin: 0;
    text-align: center;
    width: 100%;
}
#wrapper .event-info h2.age-restriction, 
#wrapper .event-info .additional-event-info {
    float: left;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 22px;
    margin: 5px 0 15px;
    max-width: 80%;
    overflow: hidden;
    text-transform: none;
}
#wrapper .event-info h2.age-restriction {
    color: #666666;
    float: left;
    font-style: italic;
    width: 100%;
}
#wrapper .event-info .additional-event-info a {
    border: 1px solid #111;
    clear: both;
    color: #111;
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
    max-width: 240px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}
#wrapper .event-info .additional-event-info a:hover { background: #CC2529; border: 1px solid #CC2529; color: #FFF;}

#wrapper .event-detail .share-text { display: none;}
#wrapper #toolbox {
    margin: 15px 0;
    overflow: hidden;
    padding: 5px 0;
    width: 100%;
}
.event-detail .calendar-sync {
    border-left: 1px solid #ddd;
    display: inline-block;
    float: left;
    padding: 5px 20px;
    margin: 25px auto 0;
    width: 20%;
}


/* Related Events */
.event-detail .related-events {
    background: #f5f5f5 none repeat scroll 0 0;
    border: 1px solid #ededed;
    clear: left;
    display: block;
    margin: 0 auto !important;
    overflow: hidden;
    padding: 1% 0;
    position: relative;
    text-align: left;
}
.related-events-title {
    display: none;
}
#wrapper .event-detail .related-events-item .item-details {
    clear: left;
    display: block;
    float: left;
    font-size: 11px;
    line-height: 14px;
    margin: 10px 0;
    vertical-align: text-top;
    width: 86%;
}
#wrapper .event-detail .related-events-item {
    display: block;
    float: left;
    margin: 0;
    min-height: 185px;
    padding: 1% 2%;
    width: 25%;
}
.event-detail .related-events-item img {
    display: none !important;
}
.related-events .item-details a {
    text-decoration: none;
}
.event-detail .related-events-item .item-details .headliners {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.event-detail .related-events-item .item-details .supports {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.event-detail .related-events-item .item-details .venue-name {
    float: left;
    margin: 10px 0 5px;
    width: 100%;
}
.related-events .start-time, .related-events .start-date {
    color: #cc2529;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    position: relative;
    text-transform: uppercase;
}


/* Artist Bios */
.ui-front { z-index: 99999 !important;}

#wrapper .artist-boxes {
    background: #F8F8F8 none repeat scroll 0 0;
    border-top: 1px solid #EEE;
    clear: both;
    display: block;
    margin: 0;
    padding: 15px 5%;
}
#wrapper .event-detail .artist-boxes .artist-box-headliner, .event-detail .artist-boxes .artist-box-support {
    margin: 1% auto;
    padding: 2% 0;
    width: 100%;
}
#wrapper .event-detail .artist-boxes .artist-box-headliner:first-child, .event-detail .artist-boxes .artist-box-support:first-child {
    border-top: none;
    padding: 0 0 2%;
}
#wrapper .event-detail .artist-start-time {
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 26px;
}
#wrapper .event-detail .artist-boxes .artist-box-headliner:last-child, .event-detail .artist-boxes .artist-box-support:last-child { border-bottom: 0; }
#wrapper .event-detail .artist-boxes img {
    float: right;
    margin: 0 0 10px 15px;
    max-width: 150px;
    width: 100%;
}
#wrapper .artist-headline {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}
#wrapper .artist-headline .artist-name {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 32px;
    margin: 0;
    text-transform: uppercase;
}
.event-detail .artist-boxes .artist-name, .event-detail .artist-boxes .artist-start-time {
    float: left;
    font-weight: 400;
    margin-left: 5px;
    position: relative;
    vertical-align: middle;
}

/* Inline Links */
#tfly-more-1 .tfly-more li a::before {
    font-size: 18px;
}
ul.tfly-more.inline-links {
    list-style-type: none;
    margin: 5px 0 10px;
    padding: 5px 0;
    width: 100%;
}
ul.tfly-more.inline-links li {
    display: inline-block;
    overflow: hidden;
    width: 30px;
}
ul.tfly-more li.facebook a::before, ul.tfly-more li.web a::before, ul.tfly-more li.buy-music a::before, ul.tfly-more li.myspace a::before, ul.tfly-more li.twitter a::before, ul.tfly-more.inline-links li.watch-video a::before, ul.tfly-more.inline-links li.audio-link a::before {
    padding-right: 20px !important;
    top: 0 !important;
}
ul.tfly-more a { color: #CCCCCC !important; opacity: 1 !important;}
ul.tfly-more a:hover { color: #CC2529 !important; opacity: 1 !important;}

/* Venue Info / Sponsors */
#wrapper .venue-info, #wrapper .sponsor-info {
    background: #f8f8f8 none repeat scroll 0 0;
    float: left;
    line-height: 22px;
    margin: 0 auto;
    padding: 25px 5% 25px;
    vertical-align: top;
    width: 100%;
}
#wrapper .sponsor-info { text-align: right; }
#wrapper .sponsor-info img{ font-size: 12px; border: none; max-width: 70px; text-align: right;}


/* =Full Width
-------------------------------------------------------------- */
#fullwidth {
    padding: 5% 3%;
    width: 100%;
}
.half-container {
    display: flex;
    min-height: 60vh;
    width: 100%;
    position: relative;
}
.half {
    flex: 1 1 0;
    width: 50%;
}
.redbar { 
    background: rgb(226,15,15); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(226,15,15,1) 0%, rgba(204,37,41,1) 32%, rgba(204,14,17,1) 62%, rgba(165,31,33,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(226,15,15,1) 0%,rgba(204,37,41,1) 32%,rgba(204,14,17,1) 62%,rgba(165,31,33,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(226,15,15,1) 0%,rgba(204,37,41,1) 32%,rgba(204,14,17,1) 62%,rgba(165,31,33,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e20f0f', endColorstr='#a51f21',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    width: 100%;
    height: 8px;
}
#fullwidth.header-img .container {
    color: #ffffff;
}
#fullwidth h1.page-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 46px;
    margin: 0;
    position: fixed;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}


/* =Private Events
-------------------------------------------------------------- */
.private-events-spotlight {
    background: #BD1216;
    padding: 30px 2%;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.12);
}
.private-events-spotlight .private-events-img {
    float: left;
    margin-right: 5%;
    max-width: 250px;
    padding: 30px 0;
    width: 100%;
}
.private-events-spotlight h2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin: 0 auto 1%;
    text-transform: uppercase;
}
.private-events-form ul { margin: 10px 0; display: block; }
.private-events-form li {
    list-style: disc;
    padding: 5px 0;
    list-style-position: inside;
}
.private-events-spotlight a {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin: 15px 3% 5px 0;
    text-decoration: none;
    text-transform: uppercase;
}
.private-events-spotlight a:hover { color: #FFFFFF; }
.private-events-form {
    padding: 3%;
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    overflow: hidden;
}
.private-events-form .half h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 24px;
    margin: 0 auto 2%;
    text-transform: uppercase;
}
.private-events-form hr { background: none; padding: 2% 0; }
.private-events-form .half a.downloads {
    display: block;
    font-weight: 700;
    margin: 2% 0;
    text-decoration: none;
    text-transform: uppercase;
}
.contact-map .half a.cta,
.private-events-form .cta {
    border: 1px solid #CC2529;
    border-radius: 30px;
    color: #CC2529;
    display: table;
    font-size: 13px;
    font-weight: 700;
    margin: 15px 10px 5px 0;
    padding: 8px 30px;
    text-decoration: none;
    text-transform: uppercase;
    float: left;
}
.contact-map .half a.cta:hover,
.private-events-form .cta:hover { background: #CC2529; color: #FFF; }


.private-events-form .half a.downloads::after {
    font-family: "FontAwesome";
    content: "\f105";
    padding-left: 10px;
    color: #CC2529;
}
.private-events-form a:hover { color: #CC2529; }
.private-events-form .half .container { padding: 4%;}
.private-events-spotlight .container { max-width: 1300px; }



/* TripleSeats Overwrites */
#tripleseat_embed_form { margin: 20px 0 0 !important;}
#tripleseat_embed_form input, #tripleseat_embed_form textarea {
  -webkit-appearance: none;
    border: 1px solid #eee !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    padding: 5px 10px !important;
    width: 100% !important;
    margin: 0;
}
#tripleseat_embed_form .timeselect_input, #tripleseat_embed_form .lead_event_date { padding: 5px 30px !important; }
#tripleseat_embed_form .row_contact_header h2, #tripleseat_embed_form .row_details_header h2 {
    color: #CC2529 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 16px !important;
    margin: 0 auto !important;
    text-transform: uppercase !important;
}
#tripleseat_embed_form .row_details_header > td {
    padding-bottom: 0 !important;
    padding-top: 30px !important;
}
#tripleseat_embed_form label {
    display: block !important;
    font-size: 12px !important;
    line-height: 18px !important;
    margin: 10px 0 5px !important;
    text-transform: uppercase !important;
}
#tripleseat_embed_form #lead_submit {
    background: #cc2529 !important;
    border-color: #cc2529 !important;
    color: #fff !important;
    float: left !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    padding: 8px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
#tripleseat_embed_form #lead_submit:hover {
    background: #111111 !important;
    border-color: #111111 !important;
    color: #FFFFFF !important;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
#tripleseat_embed_form #lead_form_submit a {
    display: block !important;
    float: right !important;
    font-size: 11px !important;
    line-height: 20px !important;
    margin: 10px 0 !important;
    opacity: 0.2 !important;
}
#tripleseat_embed_form #lead_form_submit a:hover { opacity: 1 !important;}


/* =Contact
-------------------------------------------------------------- */
.contact-about {
    padding: 3%;
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ 
}
.contact-about .container, .hours-spotlight .footer-hours { max-width: 1300px; margin: 0 auto; }
.hours-spotlight {
    overflow: hidden;
    padding: 3% 3% 2%;
}
.contact-map { 
    background: #111111;
   color: #9E9E9E;
}
.contact-map .half:first-child {
    margin: 0;
    padding: 0;
    width: 50%;
}
.contact-map iframe {
    margin-bottom: -8px;
    min-height: 200px;
    height: 450px;
    width: 100%;
}
.half.address .container {
    padding: 5%;
}
.contact-map h2.address a {
    color: #EEE;
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 32px;
    text-decoration: none;
    text-transform: uppercase;
    width: 85%;
}
.contact-map h2.address a:hover { color: #CC2529; }
.contact-map .half a.cta { float: none; }
.contact-map .half a {
    color: #CC2529;
    display: block;
    margin: -5px 0 10px;
}
.contact-map .half a:hover { color: #FFF; }
.contact-map .address h3 {
    color: #EEE;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    margin: 20px 0 0;
    text-transform: uppercase;
}
.contact-about {
    padding: 3% 3% 0 3%;
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    overflow: hidden;
}
.contact-about .half .container { padding: 4%;}
.contact-about .half h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 24px;
    margin: 0 auto 2%;
    text-transform: uppercase;
}
.contact-about hr { background: none; padding: 2% 0; }


/* Contact Form 7 Overwrites */
div.wpcf7 { margin: 1% auto 2%; width: auto;}
.wpcf7-form textarea, .wpcf7 input {
  -webkit-appearance: none;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ededed;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.02em;
    margin: 0 auto 1%;
    max-height: 150px;
    padding: 8px 16px !important;
    width: 100%;
}
.wpcf7-submit {
    background: none repeat scroll 0 0 #111111 !important;
    cursor: pointer;
    border: medium none;
    color: #FFFFFF;
    font-family: 'Open Sans', Helvetica, arial;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    border: 0;
    padding: 10px 20px !important;
    text-transform: uppercase;
    width: 100% !important;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}
.wpcf7-submit:hover {
    background: #CC2529 !important;
    color: #FFFFFF;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}
select.wpcf7-select {
    margin: 5px 0 20px;
}
.wpcf7-form-control.wpcf7-file {
    background: #f5f5f5 none repeat scroll 0 0;
    border: medium none;
    margin-bottom: 15px;
    padding: 7px;
}

/* =Careers
-------------------------------------------------------------- */
body.page-id-173 #primary .container {
    max-width: 700px;
    padding: 120px 2%;
}
body.page-id-173 h3 {
    color: #cc2500;
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    text-align: center;
}

/* =Packages
-------------------------------------------------------------- */
.red-spotlight {
    background: rgb(226,15,15); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(226,15,15,1) 0%, rgba(204,37,41,1) 32%, rgba(204,14,17,1) 62%, rgba(165,31,33,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(226,15,15,1) 0%,rgba(204,37,41,1) 32%,rgba(204,14,17,1) 62%,rgba(165,31,33,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(226,15,15,1) 0%,rgba(204,37,41,1) 32%,rgba(204,14,17,1) 62%,rgba(165,31,33,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e20f0f', endColorstr='#a51f21',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 3%;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.12);
}
.red-spotlight .container { max-width: 1300px; margin: 0 auto; }
.red-spotlight .icon-img {
    float: left;
    margin: 0 3% 0 0;
    max-width: 140px;
    width: 100%;
}
.red-spotlight h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.package-list-item:nth-child(2n) { flex-direction: row-reverse; }

.package-list-item .half.package-image { background: #000; padding: 0; min-height: 300px; }
.package-list-item .half.package-image a { display: block; height: 100%; width: 100%;}

.package-list-item .half.package-desc h2.package-title a {
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 30px;
    margin-bottom: 5%;
    text-decoration: none;
    text-transform: uppercase;
}
.package-list-item .half.package-desc {
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ 
}
.package-desc .container {
    padding: 8%;
}
.package-list-item .half.package-desc .cta {
    border: 1px solid #CC2529;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #CC2529;
    display: table;
    font-size: 13px;
    font-weight: 700;
    margin: 8% 0 0;
    padding: 8px 30px;
    text-decoration: none;
    text-transform: uppercase;
}
.package-list-item .half.package-desc .cta:hover { background: #CC2529; color: #FFF; }
.gray-spotlight {
    padding: 3%;
    background: rgb(247,247,247); /* Old browsers */
    background: -moz-linear-gradient(-45deg,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 47%, rgba(244,244,244,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 47%,rgba(244,244,244,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f4f4f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    border-top: 1px solid #EDEDED;
    overflow: hidden;
}
.gray-spotlight .container { max-width: 1300px; margin: 0 auto; }
.package-features-desc h3 {
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.package-features-desc .container { padding: 8%; }



/* =Footer
-------------------------------------------------------------- */
#footer .footer-content {
    margin: 0 auto;
    overflow: hidden;
    padding: 2%;
    width: 100%;
    max-width: 1300px;
}
#footer .footer-content #footer-widgets {
    padding: 2% 0;
    width: 100%;
    display: block;
}
#footer .footer-hours {
    border-bottom: 1px solid #222;
    margin: 0 auto 2%;
    overflow: hidden;
    padding: 0 0 2%;
}
#footer .footer-content .hours-item, #primary .hours-spotlight .hours-item {
    display: inline-block;
    float: left;
    padding: 52px 3% 2% 0;
    text-align: left;
    width: 25%;
}
#footer .hours-item .textwidget, #primary .hours-spotlight .textwidget {
    color: #999999;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 24px;
    font-weight: normal;
}
#footer .footer-hours li:first-child, #primary .hours-spotlight li:first-child {
    background: rgba(0, 0, 0, 0) url("images/restaurant-icon.png") no-repeat scroll top left / 40px auto;
}
#footer .footer-hours li:nth-child(2), #primary .hours-spotlight li:nth-child(2) {
    background: rgba(0, 0, 0, 0) url("images/lounge-icon.png") no-repeat scroll top left / 38px auto;
}
#footer .footer-hours li:nth-child(3n), #primary .hours-spotlight li:nth-child(3n) {
    background: rgba(0, 0, 0, 0) url("images/record-icon.png") no-repeat scroll top left / 40px auto;
}
#footer .footer-hours li:last-child, #primary .hours-spotlight li:last-child {
    background: rgba(0, 0, 0, 0) url("images/beach-icon-red.png") no-repeat scroll top left / 40px auto;
}
#footer .footer-content .hours-item h3, #primary .hours-spotlight .hours-item h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 26px;
    margin: 2px auto 10px;
    text-transform: uppercase;
}
#footer .footer-navigation-1, #footer .footer-navigation-2 {
    display: block;
    overflow: hidden;
    padding: 10px 0;
}
#footer .footer-navigation-1 li {
    display: inline-block;
    float: left;
    padding: 0 2%;
}
#footer .footer-navigation-1 li a, 
#footer .footer-navigation-2 li a {
    color: #EEEEEE;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}
#footer .footer-navigation-1 li,
#footer .footer-navigation-2 li {
    display: inline-block;
    float: left;
    padding: 0 4% 0 0;
}
#footer .footer-navigation-2 li a {
    color: #DDDDDD;
    font-weight: normal;
  }
#footer .footer-navigation-1 li a:hover, 
#footer .footer-navigation-2 li a:hover{ color: #CC2529; }

/* Copyright / Ticketfly Powered Logo */
#footer .copyright {
    border-top: 1px solid #181818;
    color: #999;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px 2% 10px;
    text-align: center;
    width: 100%;
}
#footer .copyright-info {
    float: left;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: 60%;
}
#footer .copyright-info a { color: #666666; }
#footer .copyright-info a:hover { color: #999999; }
#footer .copyright .social-icons {
    float: left;
    text-align: left;
    width: 20%;
}
#footer .copyright .social-icons a .fa {
    color: #FFFFFF;
    font-size: 16px;
    opacity: 1;
    padding: 5px 15px 0px 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}
#footer .copyright .social-icons  a:hover .fa {
    color: #CC2529;
    opacity: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}
#footer .copyright .tfly-powered {
    float: left;
    text-align: right;
    width: 20%;
}
.icon-ticketfly_powered_logo::before {
    color: #3d3f4a !important;
    font-size: 22px !important;
}
div.tfly-powered a { text-decoration: none;}



/* =Mobile Dev
-------------------------------------------------------------- */
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/* Small Screens ----------- */
@media only screen and (max-device-width: 1024px),  only screen and (max-device-width: 1024px), only screen and (max-width: 980px) {
    #content.site-content { display: block; }
}

/* iPads (portrait) ----------- */
@media only screen and (max-device-width: 640px),  only screen and (max-device-width: 775px), only screen and (max-width: 768px) {
    /* Structure */
    #wrapper { padding: 0; margin-bottom: 650px; }
    .hero-logo { margin: 60px auto 20px;}

    /* Mobile Navigation */
    header .site-socials, header .menu-main-navigation-container { display: none; }
    .mobilenav { padding: 60px 2%; }

    /* Home */
    .iframe-wrapper { display: none; }
    .hero_image .container { padding: 100px 0 0; }
    .home-featured .featured_image { width: 30%; max-width: 30%; }
    .home-featured .featured_text { width: 70%; max-width: 70%; }
    .home-featured a.cta:first-child, #venue-spotlight a.cta:first-child, #venue-spotlight-2 a.cta:first-child { display: table; float: none; margin-bottom: 10px; }

    /* List View */
    #more-events .list-view-item .more-info { display: none; float: left; max-width: 100%;  position: relative; top: 0; width: 100%;}
    #more-events.event-listing { border-top: 1px solid #DDD; padding: 25px 0 0; }
    #wrapper .list-view-item { padding: 0 2% 40px; }
    #wrapper .list-view-item .ticket-price { margin: 15px auto 0; }
    #more-events .list-view-item .venue { background-size: 25px auto; background-position: center left; }
    #wrapper #more-events .list-view img { max-width: 180px; margin: 0 10px 0 90px; }

    /* Pages */
    #fullwidth { min-height: 400px; }
    #fullwidth h1.page-title { font-size: 36px; line-height: 40px; width: 100%; }
    #more-events.nightclub.event-listing { border-top: none; }
    .contact-about .half .container { padding: 4% 2%;}
    article.type-post .excerpt-thumb { height: 350px; }
    .menu-listing .menu-item { width: 100%; }

    #venue-spotlight a.cta, #venue-spotlight-2 a.cta,
    #venue-spotlight a.cta:first-child, #venue-spotlight-2 a.cta:first-child { display: block; float: none; text-align: center; margin: 0 auto 10px; max-width: 85%; }
    .home-featured a.cta, #venue-spotlight a.cta, #venue-spotlight-2 a.cta {
        border: 1px solid;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        border-radius: 30px;
        padding: 8px 23px;
    }
    #venue-spotlight a.cta:hover, #venue-spotlight-2 a.cta:hover {
        background: #CC2529; border-color: #CC2529; color: #ffffff;
    }
    #venue-spotlight.beach a.cta:hover, #venue-spotlight-2.beach a.cta:hover {
        background: #EA7900; border-color: #EA7900; color: #ffffff;
    }
    #venue-spotlight.restaurant a.cta:hover, #venue-spotlight-2.restaurant a.cta:hover {
        background: #230000; border-color: #230000; color: #ffffff;
    }
    .private-events-spotlight.restaurant a {
        border: 1px solid #bf8219;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        color: #bf8219;
        display: block;
        margin: 0 auto 10px;
        padding: 8px;
        text-align: center;
        width: 100%;
        max-width: 85%;
    }
    .private-events-spotlight.restaurant a:hover { color: #FFFFFF; border-color: #FFFFFF; }

    /* No Header Compensation */
    #event-cards.nightclub, #event-cards.beach, #primary .private-events-spotlight, #primary .hours-spotlight { padding-top: 65px; }

    /* Event Details */
    #masthead  { display: none; }
    #wrapper .event-detail { margin: 0 auto; }
    #wrapper .event-detail img { margin: 0; max-width: 100%; width: 100%;}
    #wrapper .event-detail .event-info { margin: 2% 0; max-width: 100%; padding: 55px 3% 0; width: 100%;}
    #wrapper .event-info h2.age-restriction, #wrapper .event-info .additional-event-info { max-width: 100%; }
    #wrapper .event-info .additional-event-info a, #wrapper .event-detail .tickets { max-width: 100%;}
    #wrapper .event-detail .event-info { background-position: 3% 5px !important;}
    #wrapper .artist-boxes { padding: 15px 3%; font-size: 13px; line-height: 22px; }
    #wrapper .venue-info, #wrapper .sponsor-info { padding: 5px 3% 25px; }

    /* Footer */
    #footer { padding: 10 0px 0 0; min-height: 650px; }
    #footer .hours-item .textwidget, #primary .hours-spotlight .textwidget { font-size: 13px; line-height: 20px; }
    #footer .footer-content .hours-item, #primary .hours-spotlight .hours-item { float: left; min-height: 170px; vertical-align: top; width: 50%;}
    #footer .footer-content .hours-item, #primary .hours-spotlight .hours-item { margin: 20px 0 0; padding: 52px 3% 2% 0;}
    #footer .copyright { border: none; }
    #footer .copyright .social-icons, 
    #footer .copyright-info, 
    #footer .copyright .tfly-powered { display: block; float: none; text-align: center; padding: 1% 0; width: 100%; margin: 0 auto; }
}

/* iPhone 6 - 4S ----------- */
@media only screen and (max-device-width: 640px),  only screen and (max-device-width: 667px), only screen and (max-width: 480px) {
    /* Structure */
    .fadeInRight, .fadeInLeft { animation: none; }
    #fullwidth h1.page-title { display: none; }

    /* Home */
    .home-featured .featured_image,
    .home-featured .featured_text { width: 100%; max-width: 100%; padding: 10% 4%;}
    .home-featured .featured_image { min-height: auto; height: 300px; display: block;}

    /* List View */
    #event-cards .headline, #more-events .headline { text-align: center; }
    #more-events .list-view { padding: 0 3%; }
    #wrapper #more-events .list-view img { width: 100%; height: auto; max-width: 100%; margin: 45px auto 3%; }
    #more-events .list-view-details { float: none; max-width: 100%; margin: 0 auto 2%; }
    #more-events .ticket-price { float: left; width: 100%; margin: 0 auto; max-width: 100%;}
    #more-events .list-view-item .dates { width: 100%; top: 0; left: 0; padding-left: 50px; margin: 5px 2% 0; }

    #more-events.beach .list-view-item .dates, #more-events.nightclub .list-view-item .dates { padding-left: 0; }
    .page-template-page-events #event-cards.featured-events .cta, .page-template-page-events #more-events.event-listing .cta { display: none; }

    /* Big Button Style */
    #wrapper .cancelled, #wrapper .postponed, #wrapper .rescheduled, #wrapper .sold-out, #wrapper .tickets-at-the-door, #wrapper .future-sale { max-width: 100%; }
    #wrapper .custom a, #wrapper .ticket-link a, #wrapper .tfly-calendar .ticket-link a, #wrapper .sold-out, #wrapper .cancelled, #wrapper .postponed, #wrapper .rescheduled, #wrapper .free, #wrapper .tickets-at-the-door, #wrapper .future-sale a, #wrapper .on-sale-soon, #wrapper .custom {
      padding: 12px 0;}
 
    /* Restaurant */
    .private-events-spotlight .private-events-img { float: none; padding: 2% 0; width: 40%;}
    .half-container { display: block; overflow: hidden;}
    .half { display: block; width: 100%; max-width: 100%; }
    .half.spotlight-img { min-height: 400px; }
    #venue-spotlight .container, #venue-spotlight-2 .container { padding: 5% 3%; }
    #venue-spotlight h2, #venue-spotlight-2 h2 { width: 80%; }

    /* Galleries */
    .events-galleries { padding: 0; }
    #wrapper .gallery-columns-5 .gallery-item:last-child{ display: none; }
    #wrapper .gallery-columns-5 .gallery-item { width: 25%; max-width: 25%; margin-bottom: -7px; padding: 0;}
    #wrapper .gallery-columns-6 .gallery-item { width: 33.3%; max-width: 33.3%; margin-bottom: -7px; padding: 0;}
    #wrapper .gallery-columns-5 .gallery-item img,
    #wrapper .gallery-columns-6 .gallery-item img{ padding: 0; }

    /* Footer */
    #footer .footer-navigation-1, #footer .footer-navigation-2 { display: none; }
    #footer .footer-content .hours-item, #primary .hours-spotlight .hours-item { margin: 20px 10px 0; padding: 52px 3% 2% 0; width: 43%;}
    #footer .hours-item .textwidget, #primary .hours-spotlight .textwidget { font-size: 13px; line-height: 20px; }

    /* Pages */
    #fullwidth { display: none; }
    .header-img .page-title { padding: 12% 0; }
    #fullwidth h1.page-title { font-size: 36px; line-height: 34px; width: 90%; position: relative; }
    .private-events-spotlight { padding: 30px 5%; }
    .contact-map .half:first-child { width: 100%; }
    article.type-post .excerpt-thumb { height: 275px; }


    /* Events Page */
    #primary.event-listing #event-cards.featured-events { padding: 15px 0;}
    #event-cards.featured-events .headline { margin: 0 auto 15px; }

    /* Calendar */
    #wrapper .tfly-calendar .calendar-list-flip { margin-bottom: 15px;}
    #wrapper .tfly-calendar .calendar-list-flip a { padding: 10px 0 8px;}
    #wrapper .tfly-calendar table { padding: 0 3%; margin: 0 0 2%;}
    #wrapper .tfly-calendar td {
        display: block;
        float: left;
        overflow: hidden;
        padding: 0;
        text-align: center;
        width: 100%;
    }
    #wrapper .tfly-calendar table tr .month {
        font-size: 24px;
        letter-spacing: 0.03em;
        line-height: 26px;
        margin: 10px 0 0;
        text-transform: uppercase;
    }
    #wrapper .tfly-calendar tr td.data { height: 0;}
    #wrapper .tfly-calendar td.data.vevent {
        border: 1px solid #EDEDED;
        height: auto;
        margin: 1% auto;
        width: 100% !important;
    }
    #wrapper .tfly-calendar .one-event {
        padding: 3%;
    }
    #wrapper .tfly-calendar h5.date {
        font-size: 13px;
        line-height: 14px;
        padding: 10px 0;
    }
    #wrapper .tfly-calendar .calendar-image { width: 100%; border: none;}
    .tfly-calendar h1.headliners a { font-size: 26px; line-height: 26px;}
    .tfly-calendar h2.supports a { font-size: 20px; line-height: 20px;}
    #wrapper .tfly-calendar h2.venue.location { font-size: 13px; }
    #wrapper .tfly-calendar .ticket-link a { font-size: 13px; max-width: 200px; padding: 8px; width: 100%; margin-bottom: 5px;}
    
    /* Footer */
}




/* ----------------------------------------------
---------------age check css =====================*/
.ac-overlay{
    box-sizing: border-box;
    height:100%;
    width:100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.9);
    z-index: 16000002;
    opacity:0;
  cursor: wait;
}
.ac-container {
    box-sizing: border-box;
    width: 360px;
    position: fixed;
    padding: 20px 20px 30px 20px;
    background: #fff;
    z-index: 16000003;
    opacity:0;
    text-align:center;
    border-radius: 4px;
    box-shadow:0px 0px 5px #000;
    font-weight:normal;
}
.ac-container h2 {
    box-sizing: border-box;
    margin:0 0 14px 0;
    font-size:26px;
    border-bottom:1px dashed #ccc;
    padding-bottom:11px;
}
.ac-container h3 {
    box-sizing: border-box;
    color:#649D09;
    margin-bottom:5px;
    margin-top:15px;
    font-size:26px;
}
.ac-container p {
    box-sizing: border-box;
    margin:0 0 20px 0;
    font-size: 14px;
    color:#959595;
    line-height: 20px;
}
.ac-container p strong {
    color:#FF1F1F;
}
.ac-container select, 
.ac-container input {
    box-sizing: border-box;
    color:#555;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    margin-right:5px;
    border:1px solid #ccc;
}
.ac-container input.day{
    box-sizing: border-box;
    width:45px;
    height:28px;
}
.ac-container input.year{
    box-sizing: border-box;
    width:70px;
    height: 28px;
}
.ac-container select {
    box-sizing: border-box;
    height:28px;
    padding-left:4px;
    width:33%;
}
.ac-container button {
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 4px 10px 4px 10px;
    font-size: 12px;
    line-height: 1.5;
    width: 84px;
    background:#8EB908;
    color:#fff; 
    text-shadow:1px 1px 0 #84A51D;
 
}
.ac-container button:hover{
    box-sizing: border-box;
    background:#82A711;
}
.ac-container .errors  {
    box-sizing: border-box;
    margin:0 0 20px 0;
    font-size: 12px;
    line-height: 18px;
    color:#FF1F1F;
}
.ac-container .errors ul,
.ac-container .errors li{
    box-sizing: border-box;
    padding:0 0 3px 0;
    margin:0 0 0 0;
    list-style:none;
}
.ac-container .errors li span {
    box-sizing: border-box;
    font-size:9px;
    background:#ebebeb; 
    border:1px solid #ccc;
    width: 14px;
    height:14px;
    border-radius:7px;
    display:inline-block;
    color:#FF1F1F;
    font-weight: bold;
    text-align: center;
    margin-right:5px;
    line-height: 13px;
    position:relative;
    top:-2px;
    text-shadow: 1px 1px 0 #fff;
}
.ac-container .fields {
    box-sizing: border-box;
    clear:both;
    margin:10px 0 10px 0;
}    

