#pano {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	z-index: 1 !important;
	overflow: hidden !important;
	background: #111 !important;
}

.pf-slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.pf-slider__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.pf-slider__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.pf-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.85;
}

.pf-slider__arrow:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.65);
}

.pf-slider__arrow--prev {
	left: 16px;
}

.pf-slider__arrow--next {
	right: 16px;
}

.pf-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pf-slider__dot {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
}

.pf-slider__dot.is-active {
	background: #fff;
}
