.wide-slider {
	position: relative;
	margin-top: 25px;
}

.top-pane .wide-slider-module:first-child {
	margin-top: -22px;
}

.top-pane .wide-slider-module .panelwrapper,
.bottom-pane .wide-slider-module .panelwrapper {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.wide-slider {
	position: relative;
	max-width: 100%;
	max-width: 100vw;
	min-width: 0;
	min-height: 100px;
	overflow: hidden;
}

.wide-slider > * {
	z-index: 1;
}

.wide-slider .modulelinks {
	background-color: #333333;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	color: #fff;
	padding: 4px 8px;
}

.wide-slider .modulelinks a {
	color: #fff;
}

.wide-slider .modulelinks a:hover {
	color: #fff;
}

.wide-slider__item {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	height: 500px;
}

.wide-slider__item,
.wide-slider__item a,
.wide-slider__item h1,
.wide-slider__item h2,
.wide-slider__item h3,
.wide-slider__item h4,
.wide-slider__item h5,
.wide-slider__item h6,
.wide-slider__item .moduletitle {
	color: #fff;
	display: inline;
}

/* .wide-slider__item::before {
	background: rgba(0,0,0,0.4);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
} */

/* .wide-slider__item > * {
	display: flex;
	z-index: 2;
	position: relative;
} */

.wide-slider__item a:hover {
	color: #fff;
}

.wide-slider__item-edit {
	background-color: #333333;
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	padding: 4px 8px;
	z-index: 5;
}

.wide-slider__content {
	padding: 2% 6%;
	display: grid;
	height: 100%;
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "left right";
	gap: 50px;
}

.wide-slider__content > .left {
	grid-area: left;
}

.wide-slider__content > .right {
	grid-area: right;
}

.wide-slider__content > .center {
	grid-area: 1 / 3;
	margin-right: 60px;
}

.wide-slider__content-innerwrap {
	display: flex;
	align-self: center;
	height: fit-content;
}

.wide-slider__content-sup-innerwrap {
	padding: 20px;
	background-color: rgba(0,0,0,0.4);
}

.wide-slider__content-sup-innerwrap img {
	display: inline-block;
}

.wide-slider__content-sup-innerwrap > h3 {
	font-size: xx-large;
}

.wide-slider__controls {
	text-align: center;
}

.wide-slider__control {
	z-index: 3;
}

.wide-slider__control--prev {
	left: 30px;
}

.wide-slider__control--next {
	right: 30px;
}

.wide-slider__control:hover {
	/* background-color: @brand-primary; */
	transition: background-color 150ms ease;
}

@media (max-width: 767px) {
	.wide-slider__controls {
		font-size: 0;
	}
	.wide-slider__control--next {
		margin-left: 0;
	}
	.wide-slider__control--next::before {
		content: "Next";
		padding-right: 15px;
	}
	.wide-slider__control--prev::after {
		content: "Previous";
		padding-left: 15px;
	}
}
@media (min-width: 768px) {
	.wide-slider {
		position: relative;
	}
	.wide-slider__controls {
		position: static;
	}
	.wide-slider__control {
		border: none;
		border-radius: 50%;
		padding: 15px 20px;
		background-color: rgba(0,0,0,0.4);
		color: white;
		position: absolute;
		top: 50%;
		transform: translate(0, -25%);
	}
}