/*
	This file will contain stylings that applies globally to the following detail pages: events, listings, offers
*/
.shared-detail .date {
	text-transform: uppercase;
	margin: 20px 0 0;
}
.shared-detail .time, .shared-detail h3 {
	display: inline-block;
}
.shared-detail .description {
	padding: 20px 0;
}
.shared-detail .purchase .details {
	display: inline-block;
	max-width: calc(100% - 250px);
	margin-left: 30px;
	vertical-align: top;
}

/*** detail slick gallery ***/
.shared-detail .mediaGallery {
	position: relative;	
	overflow: hidden;
}
.shared-detail .mediaGallery h1 {
	position: absolute;
	left: 0;
	bottom: 15px;
	width: 100%;
	text-align: center;
	color: #fff;
}
.shared-detail .mediaGallery .placeHolder {
	width: 1280px;
	height: 512px;
}

.shared-detail .mediaGallery .slider {
	margin-bottom: 10px;
	max-height: 600px;
}
.shared-detail .mediaGallery .slick-slide {
	position: relative;
	z-index: 1;
}

.shared-detail .mediaGallery .slick-slide:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0px;
    min-width: 100%;
    min-height: 250px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#73000000',GradientType=0 );
}

.shared-detail .mediaGallery .slick-slide a {
	display: inline-block;
	width: 100%;
}

.shared-detail .mediaGallery .slick-slide img { 
	width: 100%; 
}
.shared-detail .mediaGallery .slick-slide iframe { 
	position: absolute; 
	top: 0; 
}

/*** Mobile ***/
@media only screen and (max-width: 641px) {
	.shared-detail .purchase .details {
		display: block;
		max-width: 100%;
		margin: 10px 0 0;
	}
	.shared-detail .mediaGallery h1 {
		position: static;
		padding: 0 0.9375rem;
		text-align: left;
		margin: 30px 0 0;
	}
} 	
