<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slides {
	position: relative;
}

#isMobile .navigation {
	display: none !important;
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.navigation a {
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 3000;
	overflow: hidden;
}

.slides:hover .navigation .flex-prev {
	left: 0;
	cursor: url('../../arrow/arrow-left.svg'), w-resize;
	cursor: -webkit-image-set(
	url('../../arrow/arrow-left.svg') 1x,
	url('../../arrow/arrow-left.svg') 2x
	), auto;
}

.slides:hover .navigation .flex-next {
	right: 0;
	cursor: url('../../arrow/arrow-right.svg'), e-resize;
	cursor: -webkit-image-set(
	url('../../arrow/arrow-right.svg') 1x,
	url('../../arrow/arrow-right.svg') 2x
	), auto;
}

section,
.slideshow {
	padding: 0 0 2em 0;
	display: inline-block;
	width: 100%;
}


@media screen and (max-width:640px) {
	section,
	.slideshow {
  	padding: 0 0 2em 0;
  	width: 100%;
  	grid-column-start: 1;
  	grid-column-end: 7;
	}
}


@media screen and (max-width:540px) {
	section,
	.slideshow {
  	padding: 0 0 2em 0;
  	width: 100%;
  	grid-column-start: 1;
  	grid-column-end: 7;
	}
}</pre></body></html>