@charset "UTF-8";

.zp_specific_slideshow
{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	pointer-events: none;
}
/**
.zp_specific_slideshow::after {
	
	background: url(../../img/background-dotted.png);
	opacity: 1;
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: block;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
}
**/

.zp_specific_slideshow .slider
{
	margin: auto;
	text-align: center;
}

.zp_specific_slideshow
{
	min-height: 100vh;
}

.zp_specific_slideshow .slider,
.zp_specific_slideshow .slider .slick-list,
.zp_specific_slideshow .slider .slick-track {
	position: absolute;
	left: 0px !important;
	right: 0px !important;
	bottom: 0px !important;
	top: 0px !important;
	width: auto !important;
}

.zp_specific_slideshow .zp_specific_slideshow_element{
	position: absolute !important;
	top: 0px !important;
	left: 0px !important;
	right: 0px !important;
	bottom: 0px !important;

	
}

.zp-nojs .zp_specific_slideshow .zp_specific_slideshow_element {
	display: none;
}

.zp-nojs .zp_specific_slideshow .zp_specific_slideshow_element:first-child {
	display: block;
}

 .zp_specific_slideshow .zp_specific_slideshow_element .image
{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	
}

.zp_specific_slideshow .zp_specific_slideshow_element.slick-current .image  {

}

.zp_specific_slideshow .video {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);	
}

.zp_specific_slideshow .down {
	display: none;
	position: absolute;
	left: 50%;
	bottom: 100px;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	overflow: hidden;
}

.zp_specific_slideshow .down::after {
	position: absolute;
	text-align: center;
	display: block;
	font-family: 'Flaticon';
	top: 50%;
	left: 0px;
	right: 0px;
	font-size: 3em;
	content: '\f100';
	color: #ffffff;
	z-index: 100;
}

.zp_specific_slideshow.is-video .slider {
	display: none;
}


@media screen and (max-width: 768px) {
	.zp_specific_slideshow {
		height: 100vh !important;
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		width: 100% !important;
		margin-left: 0px !important;
		margin-right: 0px !important;
		display: block !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	
	.zp_specific_slideshow::after {
		left: -30px !important;
		right: -30px !important;
	}
	
	.zp_specific_slideshow .down {
		display: block;
	}
	
	.zp_specific_slideshow .down::after {
		animation: zp-startslideshow-scrolldown 1s linear infinite;
	}
	
	html body .zp_specific_slideshow .slider {
		left: -10px !important;
		right: -10px !important;
	}
}

@keyframes zp-startslideshow-scrolldown{
	0%{
		transform:translateY(-300%);
	}
	100%{
		transform:translateY(300%);
	}
}








