﻿.slider {
	overflow: hidden;
	position: relative;
	min-height: 80dvh;
}

.slider .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

cycle-slideshow img {
	width: 100%;
	height: 100%;
}

.controls {
	position: absolute;
	left: 10px;
	right: auto;
	bottom: 0px;
	top: 0;
	margin: auto;
	z-index: 999;
	width: 30px;
	height: 30px;
	font-weight: bold;
	font-size: 18px;
	border: solid 1px var(--yellow);
	border-radius: 50%;
	align-content: center;
	background-color: var(--yellow);
	text-align: center;
	font-size: 13px;
	line-height: 10px;
	font-weight: bolder;
}

#next.controls {
	left: auto;
	right: 10px;
	bottom: 0px;
	top: 0;
	margin: auto;
}


@media all and (max-width: 750px) {
	.controls {
		left: 37%;
		right: auto;
		bottom: 40px;
		top: auto;
		font-size: 15px;
		width: 35px;
		height: 35px;
	}

	#next.controls {
		left: auto;
		right: 37%;
		bottom: 40px;
		top: auto;
	}
}
