/* Dogs Carousel */

.swiper-slide-fnc { 
	/*display: table;*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.swiper-carousel-data .carousel-title-large {
	font-size: 1.6em;
	margin-bottom: 18px;
}

.swiper-carousel-data .carousel-title-medium {
	font-size: 1.4em;
	margin-bottom: 15px;
}

.swiper-carousel-data .carousel-title-small {
	font-size: 1.2em;
	margin-bottom: 10px;
}

.swiper-carousel-data .subtitle {
	margin-bottom: 0;
}

.fnc-button-next, 
.fnc-button-prev {
	color: rgba( 255, 255, 255, 1 );
	background: rgba( 0, 0, 0, 0.8 );
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 30px;
	top: 50%;
	margin-top: -20px;
	cursor: pointer;
	text-align: center;
	-webkit-transition: 0.2s ease-in-out all; 
	-moz-transition: 0.2s ease-in-out all; 
	-o-transition: 0.2s ease-in-out all; 
	transition: 0.2s ease-in-out all;
}

.fnc-button-prev:hover, 
.fnc-button-next:hover {
	opacity: .75 !important;
}

.fnc-button-prev {
	left: 50px;
	opacity: 0;
	z-index: 667;
}
.fnc-button-next {
	right: 50px;
	opacity: 0;
	z-index: 668;
}

.swiper-container:hover .fnc-button-prev {
	left: 0;
	opacity: 1;
}

.swiper-container:hover .fnc-button-next {
	right: 0;
	opacity: 1;
}