.lime-rb {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.lime-rb__viewport,
.lime-rb__slides {
	width: 100%;
	position: relative;
}

.lime-rb__slides {
	display: grid;
}

.lime-rb__slide {
	grid-area: 1 / 1;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 600ms ease,
		visibility 0s linear 600ms;
}

.lime-rb__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition:
		opacity 600ms ease,
		visibility 0s linear 0s;
	z-index: 1;
}

.lime-rb__link,
.lime-rb__picture,
.lime-rb__image {
	display: block;
	width: 100%;
}

.lime-rb__image {
	height: auto;
	margin: 0;
	border: 0;
}

.lime-rb__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.30);
	color: #fff;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background 180ms ease, transform 180ms ease;
}

.lime-rb__arrow:hover,
.lime-rb__arrow:focus-visible {
	background: rgba(0, 0, 0, 0.48);
}

.lime-rb__arrow:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.lime-rb__arrow--prev {
	left: 18px;
}

.lime-rb__arrow--next {
	right: 18px;
}

.lime-rb__arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lime-rb-empty {
	padding: 24px;
	border: 1px dashed #bbb;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 767px) {
	.lime-rb__arrow {
		width: 38px;
		height: 38px;
	}

	.lime-rb__arrow--prev {
		left: 10px;
	}

	.lime-rb__arrow--next {
		right: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lime-rb__slide {
		transition: none;
	}
}