<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.photo-effect {
	position: relative;
	width: 100%;
	/* height: 500px; */
}

.slider-slide {
	position: absolute;
	width: 100%;
	/* height: 500px; */
	background-repeat: no-repeat;
	background-size: cover;
}

.dot-container {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 10;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

/* Next &amp; previous buttons */
.plusSlide {
	z-index: 10;
	cursor: pointer;
	position: absolute;
	top: 45%;
	width: auto;
	padding: 30px 0;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 25px;
	transition: 0.6s ease;
	border-radius: 5px;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 10px;
	padding-right: 15px;
}

.prev {
	left: 10px;
	padding-left: 15px;
}

/* On hover, add a black background color with a little bit see-through */
.plusSlide:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.arrow {
	border: solid #fff;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 9px;
}

.right-arrow {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.left-arrow  {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
}</pre></body></html>