/* *************************** */
/* Eric Meyer�s Reset CSS 2.0  */
/* *************************** */

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;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.4;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}



* {
	font-family: Open Sans, Arial !important;
}

h1 {

}

body {
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size: cover;
}

.footer {
	z-index: 2;
}

ul, ol {
    list-style-position: inside;
    padding-left: 10px;
}

strong {
	font-weight: bold;
}

a {
	color: #1e96ff;
}

p {
	margin-bottom: 20px;
	line-height: 1.5em;
}

img {
	max-width: 100%;
}


/* ===============
	Structure
   ============ */
body {
	background-color: #f3f3f3;
}
   
.page {
	
}

.header {
	background: white;
	display: flex;
	padding: 20px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #dddddd;
}

.content {
	background: white;
	max-width: 1200px;
	margin: 20px auto;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
	  "main"
	  "action"
	  "body";
	
}

@media only screen and (min-width : 0px) and (max-width : 1200px) { 
	.content {
		margin: 0px auto;
		grid-template-areas:
		  "action"
		  "main"
		  "body";
	}
}



/* ===============
	Header
   ============ */
.header > * {
	
}

.header-logo {
	height: 30px;
	display: block;
}


.header-organizer {
	display: flex;
	align-items: center;
}

.header-organizer a {
	display: flex;
	align-items: center;
}

.header-organizer > * {
	
}

.header-organizer-logo {
	height: 30px;
}






/* ===============
	Content
   ============ */
.content-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-area: main;
}

.content-main-portrait {
	grid-template-columns: 1fr 2fr;
}

.content-img {
	background: #EFEDE3;
	background: -webkit-radial-gradient(top left, #EFEDE3, #F3F3F3);
	background: -moz-radial-gradient(top left, #EFEDE3, #F3F3F3);
	background: radial-gradient(to top right, #EFEDE3, #F3F3F3);
}

.content-info {
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	align-content: start;
}

.content-info > * {
	background: inherit;
}

.content-img img {
	width: 100%;
	display: block;
	object-fit: cover;
	//object-position: top left;
	max-height: 600px;
	cursor: pointer;
}

.fullscreen-image {
	position: static;
	top: 0;
	left: 0;
	width: 100%;
}

.fullscreen-image img {
	display: block;
	object-position: top left;
	max-height: none;
}

.content-title {
	border-bottom: 1px solid #dddddd;
	padding-bottom: 10px;
}

h1 {
	font-size: 1.5em;
	font-weight: bold;
}

.virtual-container {
	
}

.virtual-container img {
	height: 50px;
	margin-top: 10px;
}


@media only screen and (min-width : 0px) and (max-width : 1200px) { 
	
	.content-main {
		grid-template-columns: 1fr;
	}
	.content-img img {
		max-height: 100%;
    	background-color: white;
    	padding: 20px;
	
	}
}





/* ===============
	Action Bar
   ============ */
.action-bar {
	padding: 10px;
	text-align: right;
	position: sticky;
	top: 0;
	background: inherit;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	grid-area: action;
}

.action-bar > * {
	margin: 10px;
}

.action-bar-button {
	text-decoration: none;
	padding: 5px 20px;
	display: inline-block;
	border-radius: 2px;
	border: 1px solid white;
}

.buybutton {
	background-color: #ee1d4d;
	border-color: #ee1d4d;
	color: white;
}

.stopbutton {
	background-color: white;
	border-color: white;
	color: #222222;
	cursor: pointer;
}

.sharebutton, .videobutton, .listenbutton {
	background: white;
	border-color: #aaaaaa;
	color: #555555;
	border-radius: 2px;
	cursor: pointer;
}

.sharebutton:hover, .videobutton:hover, .listenbutton:hover {
	border-color: #555555;
	color: #555555;
	background: #f3f3f3;
}

.soldoutbutton {
	background-color: black;
	border-color: black;
	color: white;
}

.onsale-container {
	background: #1e96ff;
	color: white;
	padding: 5px 10px;
}

.event-over-message {
	background-color: orange;
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
}

.action-container {
	border-bottom: 1px solid #dddddd;
	border-top: 1px solid #dddddd;
}

.tixel-message {
	text-align: right;
	padding: 0 20px 20px 0;
	margin-top: -15px;
	color: #808080;
}

@media only screen and (min-width : 0px) and (max-width : 1200px) { 
	.action-bar {
		flex-wrap: wrap;
	}

	.action-container {
		border-top: 0px solid #dddddd;
		border-bottom: 1px solid #dddddd;
	}
	
	.action-bar > * {
		margin: 5px;
	}
}



/* ===============
	Content Body
   ============ */
.content-body {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr;
	padding: 50px;
	gap: 20px;
	grid-area: body;
}

.content-body > * {
	background: inherit;
}


.body-left {
	
}

.body-right {
	
}

.agelimit {
	
}

.body-organizer-logo {
	height: 50px;
	margin-bottom: 50px;
}

.body-links {
	margin: 20px 0px;
	padding: 20px 0px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap 20px;
	
}

@media only screen and (min-width : 0px) and (max-width : 1200px) { 
	.content-body {
		grid-template-columns: 1fr;
		padding: 20px;
		gap: 20px;
	}
	
	.body-left {
		padding-top: 50px;
		border-top: 1px solid #dddddd;
		border-bottom: 1px solid #dddddd;
	}
}


/* =================
	Alternate Events
   ================= */
.alternatedropdown {
	padding: 5px 5px;
}

.alternatedropdown option {
	
}



























/* ***** */
/* Video */
/* ***** */
.videocontainer2 {
	display: none;
	background: black;
	text-align: center;
	padding: 50px;
}

.video {
	
}

.video iframe {
	max-width: 100%;
	max-height: 100%;
} 

@media only screen and (min-width : 0px) and (max-width : 800px) { 
	.videocontainer2 {
		padding: 10px;
	}
}



/* ***** */
/* Audio */
/* ***** */
.listencontainer {
	display: none;
	background: black;
	text-align: center;
	padding: 50px;
}


/* ***** */
/* Share */
/* ***** */
#sharingcontainer {
	display: none;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba( 0, 0, 0, .9 );
	width: 100%;
	height: 100vh;
	z-index: 3;
}

.sharingcontainer {
	display: grid;
	justify-content: center;
	align-items: center;
	grid-template-columns: 1fr;
	height: 100vh;
}

.sharecontent2 {
	background: white;
	display: inline-block;
	padding: 50px;
	border-radius: 10px;
	box-shadow: 3px 3px 5px black;
}

.sharetext {
	font-weight: bold;
	margin-bottom: 20px;
}

.sharingclose {
	cursor: pointer;
	background: black;
	color: white;
	padding: 5px;
	margin-top: 20px;
}




/* ****** */
/* Footer */
/* ****** */
.footer {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 10px;
	text-align: center;
	border-top: 1px solid #cccccc;
	background-color: white;
	box-sizing: border-box;
	
}

.footerwrap {
	
}

.footer a {
	color: inherit;
}

.footericons {
	margin-right: 10px;
	display: inline-block;
}

.footericon {
	height: 20px;
	vertical-align: bottom; 
}

.copyright {
	white-space: nowrap;
	line-height: 10px;
	display: inline-block;
}

.powered {
	white-space: nowrap;
	display: inline-block;
	margin-left: 10px;
}

.footerlogo {
	height: 22px;
	vertical-align: bottom;
}

.upcomingshowsheader {
	background-color: #222222;
	color: white;
	padding: 5px;
	font-weight: bold;
}

.organizerdetails {
	text-align: center;
	padding-top: 20px;
}

.organizer-name {
	font-weight: bold;
	font-size: 1em;
}

.no-banner-name {
	font-size: 2em;
	margin-top: 20px;
}

.venuedetails {
	
}


@media only screen and (min-width : 0px) and (max-width : 1200px) { 
	.footer {
		position: relative;
	}
}









