<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Dogs Carousel */

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

.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;
}

/* item */

.swiper-carousel-data .entry-title {
	font-size: 1.2em;
}

.swiper-carousel-data .event-item-date {
	font-size: 0.875em;
	line-height: 1;
}

.swiper-carousel-data .event-item-time {
	font-size: 0.875em;
	line-height: 1.2;
}

.swiper-carousel-data .copy {
	padding-top: 10px;
	border-top: 1px solid rgba( 0, 0, 0, 0.05 );
}

.swiper-carousel-data .invert .copy {
	border-top: 1px solid rgba( 255, 255, 255, 0.1 );
}

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

.swiper-carousel-data .google-add-wrap {
	margin-bottom: 0.9em;
	line-height: 0;
}

.swiper-carousel-data .event-address {
	font-size: 0.775em;
	margin-bottom: 0.9em;
}

.swiper-carousel-data .event-address:before {
	font-family: "FontAwesome";
	content: "\f041";
	margin-right: 5px;
	margin-left: 1px;
}

.swiper-carousel-data .event-featured-image {
	margin-bottom: 20px;
}

.swiper-carousel-data .expired-event-button, 
.swiper-carousel-data .expired-event-button:hover {
	background-color: rgba( 0, 0, 0, 0.2 );
	cursor: default;
	opacity: 1;
}</pre></body></html>