<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slider {
	max-width: 100%;
	max-height: 600px;
	border-radius: 5px;
}

.slider img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.slider__thumbnails {
	position: relative;
	display: flex;
	width: 100%;
	height: 80px;
	margin-top: 10px;
	overflow: hidden;
}

.slider__thumbnails-item {
	max-width: 80px;
	max-height: 80px;
	margin: 0 10px 10px 0;
	opacity: .7;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition: 0.15s opacity ease-in-out;
}

.slider__thumbnails-item.active {
	opacity: 1;
}

.slider__thumbnails-item:hover {
	opacity: 1;
}

.slider__thumbnails-item&gt;img {
	display: inline-block;
	width: 100px;
	height: 100px;
	object-fit: cover;
}</pre></body></html>