/* MODAL */
#modal_modal .chili-video .modal-close {
	top: 15px;
	right: 15px;
}
div#s7viewer {
	background-color: white;
	padding: 50px 30px 30px;
	text-align: center;
}
div#s7viewer a.btns{ margin-top:30px; }



/* PUSH VIDEO */
.push_video {
	position: relative;
}

.push_video-block {
	display: block;
	width: 100%;
	height: 100%;
}

.push_video-block:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 41%, rgba(0,0,0,0.71) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 41%,rgba(0,0,0,0.71) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 41%,rgba(0,0,0,0.71) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b5000000',GradientType=0 );
}

.push_video-block .video_preview {
	width: 100%;
}

.push_video-block .video_title {
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 0 15px 22px 15px;
	color: white;
	font-size: 28px;
	font-weight: 300;
	font-family: "Roboto Condensed",arial,helvetica,sans-serif;
	z-index: 1;
}

.push_video-block .video_play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	z-index: 1;
}



/* ANIMATION */
.push_video-anim {
	overflow: hidden;
}

.push_video-anim .video_preview {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.push_video-anim .video_play img {
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	-o-transition: 0.2s;
	-ms-transition: 0.2s;
	transition: 0.2s;
}

.push_video-anim:hover .video_preview {
	-moz-transform: scale(1.03);
	-webkit-transform: scale(1.03);
	-o-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.push_video-anim:hover .video_play img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}