/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container
{
	margin : 0 auto;
	position : relative;
	overflow-x : hidden;
	overflow-y : hidden;
	list-style : none;
	padding : 0;
	/* Fix of Webkit flickering */
	z-index : 1;
}
.swiper-container-no-flexbox .swiper-slide
{
	float : left;
}
.swiper-container-vertical > .swiper-wrapper
{
	-webkit-box-orient : vertical;
	-webkit-box-direction : normal;
	-webkit-flex-direction : column;
	    -ms-flex-direction : column;
	        flex-direction : column;
}
.swiper-wrapper
{
	position : relative;
	width : 100%;
	height : 100%;
	z-index : 1;
	display : -webkit-box;
	display : -webkit-flex;
	display : -ms-flexbox;
	display :         flex;
	-webkit-transition-property : -webkit-transform;
	        transition-property : -webkit-transform;
	     -o-transition-property :         transform;
	        transition-property :         transform;
	        transition-property :         transform, -webkit-transform;
	-webkit-box-sizing : content-box;
	        box-sizing : content-box;
}
.swiper-container-android .swiper-slide ,
.swiper-wrapper
{
	-webkit-transform : translate3d(0px, 0, 0);
	        transform : translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper
{
	-webkit-flex-wrap : wrap;
	    -ms-flex-wrap : wrap;
	        flex-wrap : wrap;
}
.swiper-container-free-mode > .swiper-wrapper
{
	-webkit-transition-timing-function : ease-out;
	     -o-transition-timing-function : ease-out;
	        transition-timing-function : ease-out;
	margin : 0 auto;
}
.swiper-slide
{
	-webkit-flex-shrink : 0;
	-ms-flex-negative : 0;
	        flex-shrink : 0;
	width : 100%;
	height : 100%;
	position : relative;
	-webkit-transition-property : -webkit-transform;
	        transition-property : -webkit-transform;
	     -o-transition-property :         transform;
	        transition-property :         transform;
	        transition-property :         transform, -webkit-transform;
}
.swiper-slide-invisible-blank
{
	visibility : hidden;
}
/* Auto Height */
.swiper-container-autoheight ,
.swiper-container-autoheight .swiper-slide
{
	height : auto;
}
.swiper-container-autoheight .swiper-wrapper
{
	-webkit-box-align : start;
	-webkit-align-items : flex-start;
	-ms-flex-align : start;
	        align-items : flex-start;
	-webkit-transition-property : height, -webkit-transform;
	        transition-property : height, -webkit-transform;
	     -o-transition-property : transform, height;
	        transition-property : transform, height;
	        transition-property : transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d
{
	-webkit-perspective : 1200px;
	        perspective : 1200px;
}
.swiper-container-3d .swiper-wrapper ,
.swiper-container-3d .swiper-slide ,
.swiper-container-3d .swiper-slide-shadow-left ,
.swiper-container-3d .swiper-slide-shadow-right ,
.swiper-container-3d .swiper-slide-shadow-top ,
.swiper-container-3d .swiper-slide-shadow-bottom ,
.swiper-container-3d .swiper-cube-shadow
{
	-webkit-transform-style : preserve-3d;
	        transform-style : preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left ,
.swiper-container-3d .swiper-slide-shadow-right ,
.swiper-container-3d .swiper-slide-shadow-top ,
.swiper-container-3d .swiper-slide-shadow-bottom
{
	position : absolute;
	left : 0;
	top : 0;
	width : 100%;
	height : 100%;
	pointer-events : none;
	z-index : 10;
}
.swiper-container-3d .swiper-slide-shadow-left
{
	background-image : -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image : -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :      -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :         linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right
{
	background-image : -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image : -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :      -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :         linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top
{
	background-image : -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image : -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :      -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :         linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom
{
	background-image : -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	background-image : -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :      -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	background-image :         linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal ,
.swiper-container-wp8-horizontal > .swiper-wrapper
{
	-ms-touch-action : pan-y;
	    touch-action : pan-y;
}
.swiper-container-wp8-vertical ,
.swiper-container-wp8-vertical > .swiper-wrapper
{
	-ms-touch-action : pan-x;
	    touch-action : pan-x;
}
.swiper-pagination
{
	padding-top : 41px;
	text-align : center;
	-webkit-transition : 300ms opacity;
	     -o-transition : 300ms opacity;
	        transition : 300ms opacity;
	-webkit-transform : translate3d(0, 0, 0);
	        transform : translate3d(0, 0, 0);
	z-index : 10;
}
.swiper-pagination.swiper-pagination-hidden
{
	opacity : 0;
}
/* Common Styles */
.swiper-pagination-fraction ,
.swiper-pagination-custom ,
.swiper-container-horizontal > .swiper-pagination-bullets
{
	bottom : 10px;
	left : 0;
	width : 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic
{
	overflow : hidden;
	font-size : 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet
{
	-webkit-transform : scale(0.33);
	    -ms-transform : scale(0.33);
	        transform : scale(0.33);
	position : relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active
{
	-webkit-transform : scale(1);
	    -ms-transform : scale(1);
	        transform : scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main
{
	-webkit-transform : scale(1);
	    -ms-transform : scale(1);
	        transform : scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev
{
	-webkit-transform : scale(0.66);
	    -ms-transform : scale(0.66);
	        transform : scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev
{
	-webkit-transform : scale(0.33);
	    -ms-transform : scale(0.33);
	        transform : scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next
{
	-webkit-transform : scale(0.66);
	    -ms-transform : scale(0.66);
	        transform : scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next
{
	-webkit-transform : scale(0.33);
	    -ms-transform : scale(0.33);
	        transform : scale(0.33);
}
.swiper-pagination-bullet
{
	width : 13px;
	height : 13px;
	display : inline-block;
	border-radius : 100%;
	background : #ffffff;
	border : 2px solid #00bef1;
}
button.swiper-pagination-bullet
{
	border : none;
	margin : 0;
	padding : 0;
	-webkit-box-shadow : none;
	        box-shadow : none;
	-webkit-appearance : none;
	   -moz-appearance : none;
	        appearance : none;
}
.swiper-pagination-clickable .swiper-pagination-bullet
{
	margin-left : 11px;
	cursor : pointer;
	outline : none;
}
.swiper-pagination-bullet-active
{
	background-color : #00bef1;
}
.swiper-slide
{
	opacity : 0.5;
}
.swiper-slide.swiper-slide-active
{
	opacity : 1;
}
