/**
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2016 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
html {
	height: 100%;
}
body {
	height: 100%;
}
div #wsc_video_container {
	display: none;
}
body > #wsc_video_container {
	display: block;
}
#wsc_video_container {
	position: relative;
	height: 100%;
	overflow: hidden;
	z-index: 9000;
}
#wsc_video_container .video-container {
	position: relative;
	bottom: 0%;
	left: 0%;
	height: 100%;
	width: 100%;
	overflow: hidden;
	background: transparent center center no-repeat;
	background-size: cover;
}
#wsc_video_container .wsc_mask {
	z-index: 2;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.23);
	content: '';
	z-index: 2;
}
#wsc_video_container video {
	position: absolute;
	z-index: 1;
	top: 0;
	width: auto;
	min-width: 100%;
	min-height: 100%;
}
#wsc_video_container .wsc_content {
	font-size: 18px;
	color: #fff;
	position: absolute;
	top: 50%;
	margin-top: -100px;
	left: 5%;
	right: 5%;
	text-align: center;
	z-index: 3;
	line-height: normal;
}
#wsc_video_container .wsc_content p {
	text-align: center;
}
#wsc_video_container .wsc_content a {
	color: inherit;
	text-decoration: underline;
}
#wsc_video_container .wsc_content a:hover,
#wsc_video_container .wsc_content a:focus {
	color: inherit;
	text-decoration: none;
}
#wsc_video_container .wsc_content.h_left,
#wsc_video_container .wsc_content.h_left p {
	text-align: left;
}
#wsc_video_container .wsc_content.h_right,
#wsc_video_container .wsc_content.h_right p {
	text-align: right;
}
#wsc_video_container .wsc_content.v_top {
	top: 5%;
	margin-top: 0;
}
#wsc_video_container .wsc_content.v_bottom {
	top: auto;
	bottom: 5%;
	margin-top: 0;
}
#wsc_video_container .wsc_content.v_bottom.h_center {
	margin-bottom: 60px;
}
#wsc_video_container .wsc_scroll_button {
	height: 40px;
	width: 40px;
	background: none;
	position: absolute;
	bottom: 5%;
	left: 50%;
	margin-left: -20px;
	z-index: 3;
	cursor: pointer;
	transition: 150ms;
	-webkit-animation: pointDown 0.6s 0.6s ease-in infinite alternate forwards;
	animation: pointDown 0.6s 0.6s ease-in infinite alternate forwards;
}

#wsc_video_container .wsc_scroll_button:hover {
	-webkit-transform: translate3d(0,-10px,0);
	transform: translate3d(0,-10px,0);
}

@-webkit-keyframes pointDown {
	from {
		-webkit-transform: translate3d(0,-10px,0);
		transform: translate3d(0,-10px,0);
	}
	to {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

@keyframes pointDown {
	from {
		-webkit-transform: translate3d(0,-10px,0);
		transform: translate3d(0,-10px,0);
	}
	to {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}
.button--view path {
	fill: #fff;
}