/*
 * Theme URI: 	http://www.lizapulman.com/
 * Description:	Bespoke theme for Liza Pulman
 * Author:	Ben Louis-Smith - Embado
 * Author URI:	https://www.embado.com/
 * Text Domain: lizapulman
 * Version:	1.0
 */

/* http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 */

.test, html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ==========================================================================
   BASE STYLING
   ========================================================================== */
/**
 * HTML & Body
 */
 
html, body {
	width: 100%;
	height: 100%;
	background: #fff;
}


/**
 * Image & Div sizing
 */
 
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/**
 * Structure
 */
section {
	width: 100%;
	padding: 60px 0;
}
.spacer {
	height: 60px;
}
section.hero {
	padding: 0;
}
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	overflow: hidden;
}
.row {
	clear: both;
}


@media (min-width: 1280px) {
	.container {
		width: 1200px;
		padding: 0;
	}
}


.col-4, .col-5, .col-6, .col-7, .col-12 {
	float: left;
}
.col-4 {
	width: 33.33333333333333%;
}
.col-5 {
	width: 41.66666666666667%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.33333333333333%;
}
.col-12 {
	width: 100%;
}


/**
 * Global
 */
.left {
	float: left;
}
.right {
	float: right;
}
.clear {
	clear: both;
}
.alignC {
	display: -webkit-flex;
	-webkit-align-items: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.alignCL {
	display: -webkit-flex;
	-webkit-align-items: center;
	display: flex;
	align-items: center;
}

.btn {
	text-decoration: none;
	border: 2px solid #6e9793;
	background: rgba(110,151,147,0);
	padding: 14px 30px;
	color: rgba(0,0,0,1);
	display: inline-block;
	transition: all 1s;
}
.btn:hover {
	text-decoration: none;
	background: rgba(110,151,147,1);
	color: rgba(255,255,255,1);
}
.btn_xl {
	padding: 28px 60px;
	font-size: 2em;
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
/**
 * Set base font to 100% of the browser default
 * Assumed to be the default 16px
 */

body {
	font-family: 'Fira Sans', sans-serif;
	font-size: 100%;
	color: #666;
	font-weight: 400;
}
/* ========================================================================== */
p {
	font-size: 1em;
	line-height: 1.35em;
	padding-bottom: 1.5em;
}
a {
	color: #e42463;
	text-decoration: none;
}
strong {
	font-weight: 700;
}
/* ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Federo', sans-serif;
	font-size: 1em;
	line-height: 1.25em;
	font-weight: 300;
}
h1 a, h2 a, h2 .btn, h3 a, h4 a, h5 a, h6 a {
	font-size: 1em;
}
h1 {
	font-size: 2.81em;
	color: #e42463;
	padding-bottom: 0.35em;
}
h2 {
	font-size: 1.87em;
	color: #e42463;
	padding-bottom: 0.35em;
}
h3 {
	font-size: 1.2em;
	color: #000;
	padding: 1em 0 0.35em;
}


@media (min-width: 640px) {
	h1 {
		font-size: 3.75em;
	}
	h2 {
		font-size: 2.5em;
	}
	h3 {
		font-size: 1.6em;
	}
}
/* ========================================================================== */
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}


/* ==========================================================================
   HEADER
   ========================================================================== */
.masthead {
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	padding: 0 20px;
	z-index: 200;
	background: rgba(0,0,0,0.25);
	border-bottom: 1px solid;
	border-color: rgba(218,218,218,0);
	transition: all 1s;
}
.masthead.on {
	background: rgba(255,255,255,1);
	border-color: rgba(218,218,218,1);
}
/* ========================================================================== */
.sf_logo {
	position: relative;
	float: left;
	width: 160px;
	padding: 32px 0 0;
	margin-top: 11px;
	margin-right: 20px;
}
.masthead .sf_logo .reversed,
.masthead .sf_logo .standard {
	position: absolute;
	transition: all 1s;
	top: 20px;
}
.masthead .sf_logo .standard {
	top: -200px;
}
.masthead.on .sf_logo .standard {
	top: 20px;
}
.masthead.on .sf_logo .reversed {
	top: -200px;
}


/* 
	LEVEL ONE
*/
ul.dropdown {
	display: none;
	position: relative;
	float: left;
	margin-top: 10px;
}
ul.dropdown li {
	float: left;
	zoom: 1;
}
ul.dropdown li a {
	padding: 20px;
}
ul.dropdown > li > a {
	display: block;
	color: #fff;
}
ul.dropdown > li > a:hover,
ul.dropdown > li > a:active {
	color: #fff;
}
ul.dropdown li.hover,
ul.dropdown li:hover {
	position: relative;
}


.masthead.on ul.dropdown > li > a,
.masthead.on ul.dropdown > li > a:hover,
.masthead.on ul.dropdown > li > a:active {
	color: #000;
}


.menu-item-has-children > a {
	position: relative;
	padding-right: 14px !important;
	margin-right: 20px;
}
.menu-item-has-children > a::after {
	font-family: FontAwesome;
	color: #fff;
	content: '\f107';
	position: absolute;
	top: 20px;
	right: 0;
}
.masthead.on .menu-item-has-children > a::after {
	color: #000;
}


/* 
	LEVEL TWO
*/
ul.dropdown ul {
	border: 1px solid #ccc;
	background: #fff;
	width: 440px;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
}
ul.dropdown ul li {
	width: 100%;
	border-bottom: 1px solid #ccc;
	float: none;
}
ul.dropdown ul li:last-child {
	border-bottom: 0 none;
}
									  
/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a {
	width: 100%;
	display: inline-block;
}

.sub-menu li a {
	background-color: #fff;
	color: #e42463;
}
.sub-menu .subby a {
	font-size: 0.875em;
	font-weight: 400;
	color: #000;
}
.sub-menu li a:hover {
	background-color: #e42463;
	color: #fff;
}

/* 
	LEVEL THREE
*/
ul.dropdown ul ul {
	left: 100%;
	top: 0;
}
ul.dropdown li:hover > ul {
	visibility: visible;
}



.primary_menu-cont {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -110%;
	width: 100%;
	min-width: 360px
	padding: 20px;
	background: #e42463;
	border-right: 1px solid;
	border-color: rgba(218,218,218,1);
	-webkit-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.35);
	box-shadow: -3px 0px 5px 0px rgba(0,0,0,0.35);
	transition: all 1s;
	z-index: 200;
	overflow-y: scroll;
}
.primary_menu-cont a {
	color: #fff;
}
.primary_menu-cont.on {
	right: 0;
}
.primary_menu-cont.on a {
	color: #fff;
}
.close_nav {
	display: block;
}
.close_nav a {
	color: #000 !important;
	padding-left: 16px;
	background: url('img/global/close.png') no-repeat;
	background-position: 0 2px;
}
.primary_menu li {
	margin: 40px;
}
.sm_menu {
	display: block;
}
.sm_menu li {
	display: none;
}
.sm_menu li.open_nav {
	float: left;
	display: block;
	margin-top: -3px;
	cursor: pointer;
}
.masthead .open_nav .reversed,
.masthead .open_nav .standard {
	position: absolute;
	transition: all 1s;
	top: 20px;
	right: 20px;
}
.masthead .open_nav .standard {
	top: -200px;
}
.masthead.on .open_nav .standard {
	top: 20px;
}
.masthead.on .open_nav .reversed {
	top: -200px;
}
.dropdown li.close_nav {
	display: block;
}


.nl-menu {
	position: relative;
}
.nl-menu::after {
	content: 'Newsletter';
	position: absolute;
	bottom: -16px;
	left: -20px;
	font-size: 14px;
	color: #fff;
	transition: all 1s;
}
.masthead.on .nl-menu::after {
	color: #6e9793;
}
.masthead.on .pm_menu .nl-menu::after {
	color: #fff;
}
footer .nl-menu::after {
	bottom: -20px;
	left: -20px;
	font-size: 16px;
	color: #e42463;
}
footer .container {
	overflow: visible;
}

@media (min-width: 360px) {
	.sf_logo {
		width: 190px;
		margin-top: 8px;
		margin-right: 20px;
	}
}
@media (min-width: 440px) {
	.masthead {
		padding: 0 40px;
	}
	.sf_logo {
		margin-top: 4px;
		margin-right: 30px;
	}
}
@media (min-width: 540px) {
	.sf_logo {
		margin-right: 60px;
		margin-top: 0;
	}
	.primary_menu-cont {
		right: -75%;
		width: 75%;
	}
}
@media (min-width: 768px) {
	.primary_menu-cont {
		width: 40%;
	}
	.sm_menu li {
		display: inline-block;
	}
}
@media (min-width: 1690px) {
	.primary_menu-cont {
		display: none;
	}
	ul.dropdown {
		display: block;
	}
	.sm_menu li.open_nav,
	.dropdown li.close_nav {
		display: none;
	}
}


.sm_menu {
	float: right;
	font-size: 1.25em;
	padding-top: 28px;
}
.sm_menu li {
	margin: 0 20px 0 0;
}
.masthead .sm_menu a {
	color: #fff;
	transition: all 1s;
}
.masthead.on .sm_menu a {
	color: #6e9793;
}
.pm_menu {
	display: block;
	font-size: 1.25em;
	padding: 14px 0 14px 40px;
}
.pm_menu li {
	display: inline-block;
	margin: 0 10px 10px 0;
}
.pm_menu li:last-child {
	margin: 0 0 10px 0;
}
.pm_menu a {
	color: #fff;
}



@media (min-width: 768px) {
	.pm_menu {
		display: none;
	}
}



/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
	position: relative;
	height: 100vh;
}
.hero .slide {
	height: 100vh;
}
.hero .tint {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: url('img/global/hero-tint.png');
	background-size: cover;
	background: position: bottom left;
	z-index: 10;
}
.hero .review {
	position: absolute;
	bottom: 60px;
	right: 5%;
	left: 5%;
	max-width: 90%;
	width: 90%;
	color: #fff;
	text-align: right;
	z-index: 20;
}
.hero h2 {
	font-size: 1.5em;
	text-transform: uppercase;
	color: #fff;
}
.hero h3 {
	display: inline-block;
	font-family: 'Fira Sans', sans-serif;
	font-size: 1.09em;
	font-weight: 700;
	padding: 5px;
	background: #e42463;
	color: #fff;
}
.hero a {
	color: #fff;
}



@media (min-width: 576px) {
	.hero h2 {
		font-size: 2em;
	}
	.hero h3 {
		font-size: 1.21em;
	}
}
@media (min-width: 768px) {
	.hero h2 {
		font-size: 2.25em;
	}
	.hero h3 {
		font-size: 1.35em;
	}
}
@media (min-width: 1024px) {
	.hero .review {
		right: 10%;
		left: auto;
		max-width: 900px;
		width: 90%;
	}
	.hero h2 {
		font-size: 2.75em;
	}
	.hero h3 {
		font-size: 1.5em;
	}
}
/* ========================================================================== */
.owl-controls {
	position: relative;
}
.owl-controls .owl-nav {
	display: none;
}
.owl-controls .owl-dots {
	position: absolute;
	top: -40px;
	left: 50%;
	margin-left: -48px;
}
.owl-controls .owl-dot {
	display: inline-block;
}
.owl-controls .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #fff;
	display: block;
	transition: all .2s ease;
	border-radius: 30px;
}
.owl-controls .owl-dot.active span {
	background: #e42463;
}



/* ==========================================================================
   HERO INTERNAL
   ========================================================================== */
.hero.internal {
	position: relative;
	height: 50vh;
	min-height: 440px;
}
.hero.internal .slide {
	height: 50vh;
	min-height: 440px;
	max-height: 700px;
}
.hero.internal .tint {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: url('img/global/hero-tint.png');
	background-size: cover;
	background: position: bottom left;
	z-index: 10;
}



/* ==========================================================================
   COPY & MEDIA 50/50
   ========================================================================== */
.copy_media {
	background: #f7f7f7;
}
.copy_media .copy,
.copy_media .media {
	float: left;
	width: 100%;
}
.copy_media .media {
	width: calc(100% + 80px);
	margin-left: -40px;
}
.copy_media .copy {
	padding: 0;
}
.copy_media article {
	border: 0 none;
	padding: 20px 0;
}
.copy_media article p {
	font-size: 1.2em;
	font-weight: 400;
}
.copy_media .photo {
	padding-bottom: 30px;
	text-align: center;
}



@media (min-width: 576px) {
	.copy_media article {
		padding: 20px;
	}
	.copy_media article p {
		font-size: 1.5em;
		font-weight: 300;
	}
}
@media (min-width: 768px) {
	.copy_media article {
		padding: 60px;
	}
	.copy_media .media {
		width: 100%;
		margin-left: 0;
	}
}
@media (min-width: 1024px) {
	.copy_media .copy,
	.copy_media .media {
		float: left;
		width: 50%;
	}
	.copy_media .copy {
		padding: 60px 60px 40px 0;
	}
	.copy_media article {
		border: 4px solid #dadada;
		padding: 60px;
	}
}



/* ==========================================================================
   1& 2 COLUMN
   ========================================================================== */
.copy_media.two_column,
.copy_media.one_column {
	padding: 0;
}
.copy_media.two_column .copy,
.copy_media.one_column .copy {
	padding: 0 0 40px 0;
}
.page-id-1599 .copy_media.one_column .copy {
	text-align: center;
	padding: 0;
}
.copy_media.two_column .copy:last-child {
	padding: 0 0 40px 0;
}
.copy_media.two_column article,
.copy_media.one_column article {
	border: 0 none;
	padding: 0;
}
.copy_media.two_column article p,
.copy_media.one_column article p {
	font-size: 1em;
	font-weight: 400;
}
.copy_media.one_column article {
	max-width: 840px;
	margin: 0 auto;
}

.page-id-826 .one_column {
	text-align: center;
}



@media (min-width: 576px) {
	.copy_media.two_column article,
	.copy_media.one_column article {
		padding: 0;
	}
	.copy_media.two_column article p,
	.copy_media.one_column article p {
		font-size: 1.2em;
		font-weight: 400;
	}
}
@media (min-width: 1024px) {
	.copy_media.two_column .copy {
		padding: 0 30px 40px 0;
	}
	.copy_media.two_column .copy:last-child {
		padding: 0 0 40px 30px;
	}
	.copy_media.one_column .copy {
		float: none;
		width: 100%;
	}
	.copy_media.one_column .copy, {
		padding: 0 0 40px 0;
	}
	.page-id-1599 .copy_media.one_column .copy {
		text-align: center;
		padding: 0;
	}
}



/* ==========================================================================
   MUSIC
   ========================================================================== */
.copy_media.music .music_entry {
	padding-bottom: 60px;
}
.copy_media.music .music_entry:last-child {
	padding-bottom: 0;
}
.copy_media.music .copy {
	padding: 0 0 40px 0;
}
.copy_media.music .copy img {
	padding-bottom: 20px;
}
.copy_media.music .copy ul {
	margin-top: -16px;
}
.copy_media.music .copy li {
	float: none;
	width: 100%;
}
.copy_media.music .copy .btn {
	margin: 5px;
}
.paypal_logo {
	float: left;
	margin-right: 20px;
}
.paypal_button {
	float: left;
}


.download_highlight {
	background: #e42463;
	padding: 20px 20px 0;
	color: #fff;
}
.download_highlight h3 {
	padding: 0 0 5px 0 !important;
	margin: 0 !important;
	color: #fff !important;
}
.download_highlight form {
	color: #666;
}
.download_highlight .btn {
	border: 2px solid #fff;
	background: rgba(255,255,255,0);
	color: rgba(255,255,255,1);
}
.download_highlight .btn:hover {
	border: 2px solid #fff;
	background: rgba(255,255,255,1);
	color: rgba(0,0,0,1);
}


.download_btn {
	cursor: pointer;
	margin-top: 20px;
}
.download_popup {
	display: none;
}


@media (min-width: 400px) {
	.copy_media.music .copy li {
		float: left;
		width: 50%;
	}
}
@media (min-width: 600px) {
	.copy_media.music .copy li {
		width: 33.333333%;
	}
}
@media (min-width: 1024px) {
	.copy_media.music .copy {
		padding: 0 60px 40px 0;
	}
	.copy_media.music .copy li {
		width: 50%;
	}
}
@media (min-width: 1220px) {
	.copy_media.music .copy li {
		width: 33.333333%;
	}
}
/* ========================================================================== */
.copy_media .media.player {
	width: 100%;
	margin-left: 0;
}
.playlist table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 1px solid #000;
	margin-bottom: 30px;
}
.playlist thead {
	display: none;
}
.playlist td {
	padding: 16px 8px;
	font-size: 1em;
	vertical-align: middle;
	text-align: left;
	border-bottom: 1px solid #000;
}
.playlist .trackno {
	width: 16px;
}
.playlist .preview {
	width: 24px;
}
.playlist .title {
	font-size: 1.25em;
	color: #000;
}
.playlist .duration {
	text-align: right;
}



.playlist .prev_container {
	padding: 0;
	border-bottom: 0 none;
}
.playlist .prevtable {
	width: 100%;
	border-top: 0 none;
	margin-bottom: 0;
}
.playlist .predur {
	background: #464646;
	color: #fff;
	padding: 12px 8px;
	border-bottom: 0 none;
	width: 30%;
}
.playlist .preview {
	background: #464646;
	padding: 0;
	border-bottom: 0 none;
	width: 70%;
}
.playlist .preview audio {
	margin: 0;
}


@media (min-width: 1024px) {
	.copy_media.music .music_entry .copy,
	.copy_media.music .music_entry .media {
		width: 50%;
	}
	.copy_media.music .music_entry:nth-child(odd) .copy,
	.copy_media.music .music_entry:nth-child(odd) .media {
		float: left;
	}
	.copy_media.music .music_entry:nth-child(odd) .copy {
		padding: 0 0 40px 60px;
	}
	.copy_media.music .music_entry:nth-child(even) .copy,
	.copy_media.music .music_entry:nth-child(even) .media {
		float: right;
	}
	.copy_media.music .music_entry:nth-child(even) .copy {
		padding: 0 60px 40px 0;
		text-align: right;
	}
}



/* ==========================================================================
   MODALS
   ========================================================================== */
.modal_content {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -150%;
	width: calc(100% + 20px);
	background: #ebebeb;
	padding: 0;
	overflow: scroll;
	z-index: 500;
	transition: all 1s;
}
.modal_content.open {
	left: 0;
}
.mod_img {
	position: relative;
	top: auto;
	right: auto;
	width: 100%;
	overflow: hidden;
	transition: all 1s;
}
.mod_img.open {
	right: auto;
}
.mod_img .modal_close {
	position: fixed;
	top: 20px;
	right: -200px;
	cursor: pointer;
	transition: all 1s;
}
.mod_img.open .modal_close {
	right: 20px;
}
.modal_content .copy {
	padding: 30px;
	width: 100%;
}
.modal_btn,
.modal_close {
	cursor: pointer;
}



@media (min-width: 1024px) {
	.modal_content .copy {
		padding: 60px 60px 60px 30px;
		width: 50%;
	}
	.mod_img {
		position: fixed;
		top: 0;
		right: -150%;
		width: 50%;
	}
	.mod_img .modal_close {
		position: absolute;
	}
	.mod_img.open {
		right: 0;
	}
}



/* ==========================================================================
   SHOWS
   ========================================================================== */
.shows {
	position: relative;
	background-image: linear-gradient(90deg, rgba(176,176,176,1) 0%, rgba(235,235,235,1) 54%) !important;
	min-height: 720px;
}
.tourdates-intro {
	text-align: center;
	padding-bottom: 20px
}
.tourdates-intro p {
	font-size: 1.2em;
	line-height: 1.35em;
	padding-bottom: 5px
}
.shows .venues {
	position: relative;
	width: 100%;
	padding: 0 40px;
	z-index: 5;
}
.shows header {
	color: #000;
	text-align: center;
}
.shows .listing {
	float: none;
	width: 100%;
	max-width: 980px;
	padding: 40px;
	background: rgba(235,235,235,0.5);
	margin: 0 auto;
}
.shows .date,
.shows .show {
	float: none;
	text-align: center;
}
.shows .tickets {
	display: none;
	float: right;
	padding: 20px 0 0 0;
}
.sml_ticket {
	display: inline-block;
	margin: 10px 0 30px;
}
.shows .date {
	width: 100%;
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1em;
	color: #000;
	padding: 20px 0 10px;
}
.shows .date::after {
	content: '';
	display: block;
	width: 100%;
	border-bottom: 1px solid #000;
	margin: 7px auto 0;
}
.shows .date span {
	display: block;
	font-size: 0.5em;
	font-weight: 400;
	color: #000;
}
.shows .show {
	font-size: 1.5em;
	font-weight: 400;
	line-height: 1em;
	color: #000;
	padding: 0 0 18px;
}
.shows .show span::before {
	content: '';
	display: block;
	width: 100%;
	border-top: 1px solid #000;
	margin: 7px auto;
}
.shows .show span {
	display: block;
	font-size: 0.75em;
	font-weight: 700;
	color: #e42463;
}
.shows .tickets .updates {
	border: 2px solid #000;
	background: #000;
	padding: 14px 30px;
	color: #fff;
	display: block;
	font-weight: 700;
}
.shows .date,
.shows .show,
.shows .tickets {
	width: 100%
}

#shows-listing-intro .cpy-right {
	padding: 30px 30px 10px;
	background: #fff;
	border: 4px solid #e42463
}



@media (min-width: 840px) {
	.shows .date,
	.shows .show {
		float: left;
		text-align: left;
	}
	.shows .date {
		width: 300px;
		padding: 20px 0;
		border-right: 2px solid #000;
	}
	.shows .date::after,
	.shows .show span::before {
		display: none;
	}
	.shows .show {
		width: 540px;
		padding: 22px 40px 18px;
	}
	.shows .tickets {
		display: block;
		clear: none;
		padding: 20px 0 0 0;
		border-bottom: 0 none;
		margin-bottom: 0;
	}
	.sml_ticket {
		display: none;
	}
}
@media (min-width: 920px) {
	.shows .venues {
		padding: 0 40px;
	}
}
@media (min-width: 1370px) {
	.shows {
		background-image: url(img/placeholder/shows.jpg) !important;
		background-attachment: fixed;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: left center;
	}
	.shows .listing {
		float: right;
		width: 920px;
	}
}



/* ==========================================================================
   MEDIA / GALLERY
   ========================================================================== */
.gallery-left,
.gallery-right {
	float: left;
	width: calc(50% - 5px);
}
.gallery-left {
	margin-right: 10px;
}
.copy_media.gallery .container {
	overflow-x: hidden;
	padding: 0;
}
#media_gallery {
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
	margin-left: 0;
}
#media_gallery .ug-thumb-wrapper {
	background: #f7f7f7 !important;
}
audio {
	width: 100%;
	margin-bottom: 10px;
}
.ug-gallery-wrapper .ug-textpanel {
	bottom: 0 !important
}
.ug-tile .ug-textpanel {
	opacity: 1 !important
}
.ug-videoplayer .ug-videoplayer-wrapper {
	position: absolute;
	width: 100%;
	height: calc(100% - 30px);
	bottom: 0
}


@media (min-width: 1280px) {
	.copy_media.gallery .container {
		padding: 0 40px;
	}
	#media_gallery {
		width: calc(100% + 80px) !important;
		min-width: calc(100% + 80px) !important;
		max-width: calc(100% + 80px) !important;
		margin-left: -40px;
	}
}



/* ==========================================================================
   MEDIA DOWNLOADS
   ========================================================================== */
.post-password-form {
	max-width: 1200px;
	background: #e42463;
	color: #fff;
	padding: 60px 40px;
	margin: 120px auto 60px;
}
.post-password-form input {
	border: 0 none;
	border: 1px solid #000;
	padding: 12px;
	color: #000;
}
.post-password-form input[type=submit] {
	border: 0 none;
	background: #6e9793;
	color: #fff;
	padding: 14px 30px;
	display: inline-block;
	transition: all 1s;
}
.post-password-form input[type=submit]:hover {
	background: #fff;
	color: #e42463;
}


.media_promoters .container {
	width: 100%;
	padding: 0 20px;
}
.media_promoters {
	padding: 0;
}
.page-id-1599 .copy_media.one_column article p {
	font-size: 1.75em;
	line-height: 1.35em;
}
.media_promoters .btn {
	margin-bottom: 10px;
}
.media_promoters .downloads {
	padding: 20px 0;
	text-align: center;
}
.media_promoters .mandp_item {
	float: none;
	width: 100%;
	margin-bottom: 30px;
}


@media (min-width: 768px) {
	.media_promoters .mandp_item {
		float: left;
		width: calc(50% - 30px);
	}
	.media_promoters .mandp_item:nth-child(odd) {
		margin-right: 60px;
		clear: both;
	}
}
@media (min-width: 1200px) {
	.media_promoters .mandp_item {
		float: left;
		width: calc(33.333333% - 30px);
	}
	.media_promoters .mandp_item:nth-child(odd) {
		margin-right: 0;
		clear: none;
	}
	.media_promoters .mandp_item:nth-child(3n+2) {
		margin-right: 45px;
		margin-left: 45px;
	}
	.media_promoters .mandp_item:nth-child(3n+1) {
		clear: both;
	}
}


.page-id-284 hr {
	margin: 0;
	padding: 0;
}
.page-id-284 .copy_media.two_column .copy,
.page-id-284 .copy_media.one_column .copy {
	padding-bottom: 20px !important;
}
.page-id-284 .copy_media.one_column article {
	max-width: 100%;
}
.page-id-284 .copy_media.one_column article p {
	padding: 0;
}


.mp_downloads {
	position: fixed;
	right: 0;
	bottom: -400px;
	left: 0;
	background: #e42463;
	color: #fff;
	text-align: center;
	padding: 10px;
	transition: all 1s;
	z-index: 100;
}
.mp_downloads.on {
	bottom: 0;
}
.mp_downloads p {
	padding: 0;
}
.mp_downloads .btn {
	color: #fff;
	border: 2px solid #fff;
	margin-left: 10px;
}
#media-ss,
#mediaalt-ss {
	max-height: 50vh
}



/* ==========================================================================
   NEWS
   ========================================================================== */
.grid {
	width: calc(100% + 60px);
	margin-left: -30px;
}
.grid-sizer,
.grid-item {
	float: none;
	width: 100%;
}
.news_feed .news_item {
	padding: 30px 0;
}
.news_feed .news_item img {
	max-height: 202px;
}
.news_feed .excerpt {
	position: relative;
	background: rgba(255,255,255,0.9);
	padding: 0;
	margin: 0;
	z-index: 1;
}
.news_feed .excerpt.nopic {
	background: #e42463;
	padding: 40px;
	margin: 0;
}
.news_feed .excerpt.nopic a {
	color: #fff;
}
.news_feed .excerpt h2 {
	font-size: 1.75em;
	padding-top: 0;
}
.news_feed .excerpt .date {
	display: block;
	font-size: 0.75em;
	font-weight: 300;
	margin-bottom: 20px;
}
.news_feed .excerpt p {
	color: #000;
}
.news_feed .excerpt.nopic h2,
.news_feed .excerpt.nopic p,
.news_feed .excerpt.nopic .date {
	color: #fff;
}
.news_feed .excerpt .more {
	padding: 0;
}
.copy_media.two_column.single_news {
	padding: 60px 0;
}



@media (min-width: 360px) {
	.news_feed .news_item {
		padding: 30px;
	}
}
@media (min-width: 480px) {
	.news_feed .excerpt h2 {
		font-size: 2.5em;
		padding-top: 20px;
	}
}
@media (min-width: 640px) {
	.grid-sizer,
	.grid-item {
		float: left;
		width: 50%;
	}
	.grid-item:nth-child(odd) {
		clear: both;
	}
	.news_feed .excerpt h2 {
		font-size: 2em;
	}
}
@media (min-width: 1024px) {
	.grid-sizer,
	.grid-item {
		width: 33.33333333333333%;
	}
	.grid-item:nth-child(odd) {
		clear: none;
	}
	.grid-item:nth-child(3n + 4) {
		clear: both;
	}
}
@media (min-width: 1200px) {
	.news_feed .excerpt h2 {
		font-size: 1.5em;
	}
}



/* ==========================================================================
   FORMS
   ========================================================================== */
.yikes-mailchimp-container {
	padding: 0;
}
.EMAIL-label,
.FULLNAME-label,
.MMERGE2-label {
	display: none;
}
.yikes-easy-mc-form .yikes-easy-mc-submit-button {
	display: inline-block !important;
	width: auto !important;
	margin: .5em auto 0;
}
.yikes-easy-mc-error-message {
	color: #000 !important;
	background: #fff !important;
	border: 2px solid #e42463 !important;
	margin-bottom: 10px !important;
}
.yikes-easy-mc-error-message a {
	color: #e42463 !important;
}


.competition p {
	padding-bottom: 5px;
	color: #000;
}
.competition .wpcf7-list-item {
	color: #666;
	margin: 0 1em 0 0;
}
.competition label {
	display: none;
}
.competition .fullname,
.competition .email,
.competition .optin {
	display: block;
	margin: 1em 0 0 0;
}
.competition .optin .wpcf7-list-item-label {
	color: #e42463;
}
.competition input[type="email"],
.competition input[type="text"] {
	width: 100%;
	padding: .5278em;
	background-color: #f1f1f1;
	border: 2px solid rgba(51,51,51,.1);
	display: block;
	-moz-box-sizing: border-box;
}
.comp-sub {
	padding-top: 30px;
}
.comp-sub input[type="submit"] {
	border: 2px solid #6e9793;
	background: rgba(110,151,147,0);
	padding: 14px 30px;
	color: rgba(0,0,0,1);
	display: inline-block;
	transition: all 1s;
	border-radius: 0;
}
.comp-sub input[type="submit"]:hover {
	background: rgba(110,151,147,1);
	color: rgba(255,255,255,1);
}
.wpcf7 form .wpcf7-response-output {
	margin: 2em 0 1em;
	padding: 1em;
	border: 0 none;
	background: #ff0000;
	color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: #e42463;
}
.competition .wpcf7-not-valid-tip {
	display: block;
	margin-top: 5px;
}


/* ==========================================================================
   CONTENT HIGHLIGHTER
   ========================================================================== */
.new_music {
	background-color: transparent;
	background-image: linear-gradient(180deg,#ebebeb 30%,#ebebeb 0);
}
.new_music .container {
	display: block;
	-webkit-align-items: inherit;
	display: block;
	align-items: inherit;
}
.new_music .copy,
.new_music .media {
	float: none;
	width: 100%;
}
.new_music .copy {
	padding: 20px 0;
}
.new_music article h3 {
	font-family: 'Fira Sans', sans-serif;
	font-size: 1em;
	font-weight: 300;
	margin-bottom: 40px;
}



@media (min-width: 480px) {
	.new_music {
		background-color: transparent;
		background-image: linear-gradient(180deg,#f8c8de 40%,#ebebeb 0);
	}
	.new_music .copy {
		padding: 0 40px 0 60px;
	}
	.new_music article h3 {
		font-size: 1.5em;
	}
}
@media (min-width: 768px) {
	.new_music {
		background-color: transparent;
		background-image: linear-gradient(90deg,#f8c8de 30%,#ebebeb 0);
	}
	.new_music .copy,
	.new_music .media {
		float: left;
		width: 50%;
	}
}



/* ==========================================================================
   NEW MUSIC
   ========================================================================== */
.music_releases  {
	padding: 80px 20px 40px !important;
}
.mpdownloads .music_releases  {
	padding: 0 20px 40px !important;
}
.music_releases .lprelease {
	float: none;
	width: 100%;
	padding: 20px;
	border: 1px solid #999;
	margin-bottom: 30px;
}
.music_releases .lprelease:nth-child(odd) {
	margin-right: 0;
	
}
.music_releases .lprelease:nth-child(even) {
	margin-left: 0;
	
}
.mpdownloads .music_releases .lprelease:nth-child(even) {
	margin-right: 0;
	
}
.mpdownloads .music_releases .lprelease:nth-child(odd) {
	margin-left: 0;
	
}
.music_releases .artwork,
.music_releases .playlisting {
	float: none;
	width: 100%;
	padding-left: 0;
}
.music_releases .artwork img {
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
}
.music_releases .playlisting h2 {
	font-size: 1.5em;
}
.music_releases .playlisting p {
	padding: 0;
}
.music_releases .playlisting table {
	width: 100%;
}
.music_releases .trackno {
	width: 10%;
	height: 42px;
	vertical-align: middle;
	border-right: 1px solid #000
}
.music_releases .tracktitle {
	position: relative;
	width: 90%;
	height: 42px;
	vertical-align: middle;
	padding: 0 60px 0 20px;
}
.music_releases .tracktitle .preview {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
}
.music_releases .tracktitle .preview audio {
	margin: 0;
}
.music_releases .playlisting li {
	display: inline-block;
	margin: 20px 20px 0 0;
}
.music_releases .playlisting li:last-child {
	margin-right: 0;
}



.track_notes {
	padding-top: 140px !important;
	padding-bottom: 20px !important;
}
.track_notes header a {
	float: none;
	margin: 0 0 10px;
}



@media (min-width: 580px) {
	.music_releases .artwork,
	.music_releases .playlisting {
		float: left;
	}
	.music_releases .artwork {
		width: 30%;
	}
	.music_releases .artwork img {
		margin-bottom: 0;
	}
	.music_releases .playlisting {
		width: 70%;
		padding-left: 20px;
	}
	.track_notes header a {
		float: right;
		margin: 5px 0 20px 20px;
	}
}
@media (min-width: 1080px) {
	.music_releases .lprelease {
		float: left;
		width: calc(50% - 15px);
	}
	.music_releases .lprelease:nth-child(odd) {
		margin-right: 15px;

	}
	.music_releases .lprelease:nth-child(even) {
		margin-left: 15px;

	}
	.mpdownloads .music_releases .lprelease:nth-child(even) {
		margin-right: 15px;
		margin-left: 0;

	}
	.mpdownloads .music_releases .lprelease:nth-child(odd) {
		margin-left: 15px;
		margin-right: 0;

	}
}



/* ==========================================================================
   AUDIO PLAYER
   ========================================================================== */
.mejs__time-rail,
.mejs__time,
.mejs__volume-button,
.mejs__horizontal-volume-slider {
	display: none;
}



/* ==========================================================================
   PAYPAL
   ========================================================================== */
.purchase {
	width: 100%
}
.purchase .head {
	padding: 30px 30px 10px;
	background: #fff;
	color: #000;
	font-weight: bold;
	border: 2px solid #6e9793;
	border-bottom: 0
}
.purchase .head p {
	padding: 0;
}
.purchase .options {
	padding: 10px 30px 0;
	background: #fff;
	border: 2px solid #6e9793;
	border-top: 0;
	border-bottom: 0
}
.purchase-button {
	padding: 10px 30px 10px;
	background: #fff;
	border: 2px solid #6e9793;
	border-top: 0;
}



/* ==========================================================================
   FOOTER
   ========================================================================== */
footer .social_media {
	padding: 60px 0;
	text-align: center;
}
footer .social_media img {
	float: none;
	display: block;
	margin: 0 auto;
}
footer .social_media ul {
	float: none;
	margin-top: 20px;
}
footer .social_media li {
	display: inline-block;
	margin: 0 20px 0 0;
	font-size: 1.5em;
}
footer .social_media li:last-child {
	margin-right: 0;
}
footer .social_media .nlimg {
	float: left;
	width: 28px;
	height: 32px;
	padding-top: 4px;
}



footer .sign_off {
	padding: 20px 0;
	background: #6e9793;
	color: #fff;
	text-align: center;
}
footer .sign_off .container {
	padding: 0 20px;
}
footer .sign_off p {
	font-size: 0.75em;
	display: block;
	padding: 0;
}
footer .sign_off p:last-child {
	margin-left: 0;
	padding-top: 10px;
}
footer .sign_off a {
	color: #fff;
	text-decoration: underline;
}



@media (min-width: 480px) {
	footer .social_media li {
		margin: 0 40px 0 0;
		font-size: 2em;
	}
}
@media (min-width: 560px) {
	footer .sign_off p {
		display: inline-block;
	}
	footer .sign_off p:last-child {
		margin-left: 100px;
		padding-top: 0;
	}
}
@media (min-width: 768px) {
	footer .social_media {
		text-align: left;
	}
	footer .social_media img {
		float: left;
	}
	footer .social_media ul {
		float: right;
		margin-top: 0;
	}
	footer .social_media li {
		display: inline-block;
		margin: 0 0 0 40px;
		font-size: 2em;
	}
}



/* ==========================================================================
   WP popup with cookies plugin
   ========================================================================== */
.wmpci-popup-open,
.wmpci-popup-open body {
	overflow: visible !important;
}
.wmpci-popup-open #wmpci-popup-wrp {
	display: none !important;
}
.wmpci-popup-open .page-id-749 #wmpci-popup-wrp,
.wmpci-popup-open .page-id-57 #wmpci-popup-wrp {
	display: block !important;
}
.wpmci-popup-cnt-inr-wrp {
	font-size: 16px;
	padding: 40px;
}



.wmpci-popup-wrp.splash {
	background: rgba(0,0,0,0.85);
}
.wmpci-popup-body p {
	margin: 0;
}
.wpmci-popup-cnt-inr-wrp .yikes-mailchimp-container {
	color: #000;
}
.wpmci-popup-cnt-inr-wrp .yikes-mailchimp-container .btn {
	border: 2px solid #fff;
	background: rgba(255,255,255,0);
	color: rgba(255,255,255,1);
}
.wpmci-popup-cnt-inr-wrp .yikes-mailchimp-container .btn:hover {
	background: rgba(255,255,255,1);
	color: rgba(0,0,0,1);
}