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

#slides {
	position: relative;
	width: 100vw;
	height: 100vh !important;
}

#slides .slides-container {
	display: none;
}

#slides .scrollable {
	*zoom: 1;
	position: relative;
	top: 0;
	left: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100vh !important;
}

#slides .scrollable:after {
	content: "";
	display: table;
	clear: both;
}

.slides-navigation {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 3;
	top: 0px;
	left: 0px;
}

.slides-navigation a {
	position: absolute;
	display: block;
	width: 40px;
	height: 40px;
}

.slides-navigation a.prev {
	left: 0px;
	top: calc(50% - 50px);
	background: #3c3c3c url(../images/design/angel-left.svg) no-repeat center center;
	background-size: auto 20px;
}

.slides-navigation a.next {
	right: 0px;
	top: calc(50% - 50px);
	background: #3c3c3c url(../images/design/angel-right.svg) no-repeat center center;
	background-size: auto 20px;
}

.slides-navigation a.prev:hover, .slides-navigation a.next:hover {
	opacity: 0.8;
}

.slides-pagination {
	position: absolute;
	top: 20px;
	right: 20px;
	text-align: left;
	width: auto;
	z-index: 3000;
}

.slides-pagination a {
	width: 12px;
	height: 12px;
	border: 2px solid #3c3c3c;
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	overflow: hidden;
	text-indent: -100%;
}

.slides-pagination a.current {
	background: #3c3c3c;
}


/* ---------------- RESPONSIVE // SLIDER START ---------------- */

@media (max-width: 700px) {
	
	.slides-navigation,
	.slides-pagination {
		/* display: none; */
	}
	
}
</pre></body></html>