* {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
}

body {
	background: transparent;
	overflow: hidden;
}

.video-container {
	background: #000;
	cursor: pointer;
	position: relative;
	z-index: 9999;
}

.video-container .meta {
	opacity: 0;
}

.not-mobile .video-container:hover .meta, .mobile .video-container .meta {
	opacity: 1;
}

.video-container .logo {
	opacity: 0.5;
	position: absolute;
	z-index: 999;
	bottom: 20px;
	right: 20px;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
}

.not-mobile .video-container:hover .logo {
	opacity: 1;
}

.mute-button {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 999;
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../../../static/images/volume.png);
}

.mobile .mute-button {
	display: none;
}

.not-mobile .mute-button {
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
} 

.not-mobile .video-container:hover .mute-button {
	opacity: 1;
}

.video-container .invisible-button {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
}

.mute-button.off {
	background-position: 40px 0px;
}

.mute-button.on {
	background-position: 0px 0px;
}

.embed-simple {
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
}

.embed-simple #post {
	margin: 0 auto;
}

.embed-simple .meta {
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	width: 100%;
	position: absolute;
	z-index: 999;
	bottom: 0px;
	color: #fff;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
	padding-top: 100px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

.mobile .embed-simple .meta {
	-webkit-transition: none;
}

.author, .description, .meta, .logo {
	cursor: pointer;
}

.meta .padding {
	padding: 20px 120px 20px 20px;
}

.meta .avatar, .author .avatar {
	width: 40px;
	height: 40px;
	display: inline-block;
}

.meta h2, .author h2 {
	position: relative;
	top: -15px;
	padding: 0 0 0 8px;
	display: inline-block;
	font-size: 16px;
}

.meta h2 span.timestamp, .author h2 span.timestamp {
	padding: 0 5px 0 5px;
	font-size: 16px;
	font-weight: normal;
	color: #B1B0AD;
}

.meta p {
	margin: 6px 0 0 0;
	font-size: 22px;
	font-weight: 300;
}

.meta p.location {
	margin-top: 9px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	color: #B1B0AD;
	padding-left: 20px;
	height: 18px;
	background: url(../../../static/images/embed/location_grey.png) no-repeat;
	padding-top: 1px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.embed-postcard .author {
	background: #fff;
	color: #333332;
	border: 1px solid #D7D6D1;
	border-bottom: none;
	padding: 10px;
	height: 40px;
	border-radius: 5px 5px 0 0;
}

.embed-postcard .meta {
	background: #fff;
	border: 1px solid #D7D6D1;
	color: #333332;
	border-bottom-width: 2px;
	border-top: none;
	border-radius: 5px;
	padding: 30px 10px 20px 10px;
	position: relative;
	top: -10px;
}

.embed-postcard .meta p {
	font-weight: 400;
	margin: 0;
}

.embed-postcard .meta p.description {
	padding-right: 20px;
	line-height: 24px;
}

.embed-postcard .meta p.location {
	margin-top: 2px;
	font-weight: 500;
}

.embed-postcard .video-container {
	background: #fff;
	border-left: 1px solid #D7D6D1;
	border-right: 1px solid #D7D6D1;
	padding: 0px 10px;
	
}

.embed-postcard .video-container .backdrop {
	background: #000;
}

.embed-postcard .mute-button {
	top: 10px;
}

.embed-postcard .author .logo {
	float: right;
	padding-right: 2px;
}

/* Small embeds */
@media all and (max-width: 322px) {
	.video-container .logo {
		width: 60px;
		height: 26px;
	}

	.meta h2, .author h2 {
		top: -9px;
		font-size: 12px;
	}

	.meta p {
		font-weight: 400;
		font-size: 16px;
	}

	.meta h2 span.timestamp, .author h2 span.timestamp { 
		font-size: 12px;
	}

	.meta .avatar, .author .avatar {
		width: 25px;
		height: 25px;
		display: inline-block;
	}

	.meta .padding {
		padding: 20px 90px 15px 20px;
	}

	.meta p.location {
		margin-top: 6px;
		font-size: 10px;
		background: url(../../../static/images/embed/location_grey.png) no-repeat 2px 3px;
		background-size: 10px 14px;
		padding-top: 4px;
	}

	.embed-postcard .author {
		background: #fff;
		border-bottom: none;
		padding: 10px;
		height: 25px;
	}

	.embed-postcard .meta {
		padding: 20px 10px 5px 10px;
	}

	.embed-postcard .meta p.location {
		margin-top: 1px;
		font-weight: 500;
	}

	.embed-postcard .meta p.description {
		font-size: 14px;
		padding-right: 0px;
		line-height: 18px;
		padding-bottom: 5px;
	}

	.embed-postcard .author .logo {
		width: 60px;
		height: 26px;
		position: relative;
		top: -2px;
	}

	.meta h2, .author h2 {
		padding: 0 0 0 5px;
	}
}

/* High resolution displays */
@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {

}