/**
 * Venue widget styles
 */
 .venue-widget-container {
	position: relative;
	/*width: calc(100% - 20px);*/
	border-radius: 5px;
	overflow: hidden;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0px;
    height:300px;
}
.venue-widget-container .venue-header {
	position: absolute;
	width: 100%;
	height: 40px;
	line-height: 40px;
	z-index: 1;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	font-family: 'Raleway', arial;
}
.venue-widget-container .venue-header .button.venue-left,
.venue-widget-container .venue-header .button.venue-right {
	position: absolute;
	width: 20%;
	padding-left: 5px;
	padding-right: 5px;
	cursor: pointer;
}
.venue-widget-container .venue-header .button.venue-right {
	text-align: right;
	right: 0px;
	top: 0px;
}
.venue-widget-container .venue-header .venue-title {
	position: relative;
	width: 60%;
	margin: 0 auto;
	text-align: center;
    font-size: 12px;
    text-transform: uppercase;
}
.venue-widget-container .venues .venue {
	width: 100%;
	height: 315px;
	background: #ccc;
	display: none;
}
.venue-widget-container .venues .venue.active {
	display: block;
}
.venue-widget-container .venues .venue a {
	width: 100%;
	height: 100%;
	color: #fff !important;
}
.venue-widget-container .venues .venue a:hover {
	text-decoration: none;
}
.venue-widget-container .venues .venue .venue-image .gradient {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	background: #ccc;
	left: 0px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+38,0+63,0.65+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,0) 63%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 38%,rgba(0,0,0,0) 63%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 38%,rgba(0,0,0,0) 63%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.venue-widget-container .venues {
	height:100%;
}
.venue-widget-container .venues .venue .venue-footer {
	position: absolute;
	width: 100%;
	bottom: 0px;
	text-align: center;
	padding-bottom:1em;
	font-size: .9em;
    color: #ffffff;
    padding-bottom: .5em;
    line-height: 1.4em;
	font-family: 'Raleway', arial;
    text-shadow: black 1px 1px;
}
.venue-widget-container .venues .venue .venue-footer .venue-name { 
	font-weight:700;
}

/* flex image: https://jsfiddle.net/Yandy_Viera/rtv393z7/2/  */
.venue-widget-container .venues .venue {
	fixed; 
	width: 100%; 
	height: 100%; 
	top: 0; 
	left: 0; 
	background-color: rgba(0,0,0,0.6);
}
.venue-widget-container .venues .venue .venue-image {
	width: 100%; 
	height: 100%; 
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.venue-widget-container .venues .venue .venue-image img {
	max-height: 500px; 
	max-width: 525px; 
	box-sizing: border-box;
}

@media screen and (max-width: 909px) {
	.venue-widget-container {
		height:300px
	}
	.venue-widget-container .venues .venue .venue-image img {
		max-height: 500px; 
		max-width: 767px;
	}
	
}
@media screen and (max-width: 767px) {
	.venue-widget-container {
		margin-bottom: 1.2em;
	}
	.venue-widget-container .venues .venue .venue-footer {
		font-size: 1.1em;
	}
	
}
