.top-pane .banner-module:first-child {
	margin-top: -22px;
}

.top-pane .banner-module .panelwrapper,
.bottom-pane .banner-module .panelwrapper {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.banner {
	position: relative;
	max-width: 100%;
	max-width: 100vw;
	min-width: 0;
	min-height: 200px;
	overflow: hidden;
}

.banner > * {
	z-index: 1;
}

    .banner .modulelinks {
        background-color: #333333;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        color: #fff;
        padding: 4px 8px;
    }

.banner .modulelinks a {
	color: #fff;
}

.banner .modulelinks a:hover {
	color: #fff;
}

.banner__item {
	background-size: cover;
	background-position: center center;
	max-width: 100%;
	min-width: 0;
	min-height: 0;
}


.banner__item,
.banner__item a,
.banner__item h1,
.banner__item h2,
.banner__item h3,
.banner__item h4,
.banner__item h5,
.banner__item h6,
.banner__item .moduletitle {
	color: #fff;
}

.banner__item::before {
	background: rgba(0,0,0,0);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.banner__item > * {
	z-index: 2;
	position: relative;
}

.banner__item a:hover {
	color: #fff;
}

.banner__item-edit {
    background-color: #333333;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    padding: 4px 8px;
    z-index: 3;
}

.banner__content {
    padding: 40px 40px;
    max-width: 100%;
    min-height: 200px;
    font-size: 26px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    margin-right: auto;
    margin-left: auto;
}

.banner__content p {
    line-height: 1.1;
}

.banner__controls {
	position: relative;
	text-align: center;
}

.banner__control {
	background-color: #333333;
	border: 0 none;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	width: 50%;
	padding: 20px 30px;
	text-align: center;
	transition: background-color 150ms ease;
	z-index: 2;
}

.banner__control:hover {
	background-color: @brand-primary;
	transition: background-color 150ms ease;
}

.banner__control--next {
	margin-left: 10px;
}


@media (max-width: 767px) {
	.banner__controls {
		font-size: 0;
	}
	.banner__control--next {
		margin-left: 0;
	}
	.banner__control--next::before {
		content: "Next";
		padding-right: 15px;
	}
	.banner__control--prev::after {
		content: "Previous";
		padding-left: 15px;
	}

    .banner__content {
        padding: 20px 20px;
    }
}
@media (min-width: 768px) {
	.banner {
		position: relative;
		margin: 0;
	}
	.banner__content {
		width: 750px;
	}
	.banner__controls {
		position: static;
	}
	.banner__control {
		display: block;
		height: 140px;
		left: 0;
		padding: 23px;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		width: auto;
	}
	.banner__control--next {
		left: auto;
		right: 0;
		margin: 0;
	}
}
@media (min-width: 992px) {
	.banner__content {
		width: 970px;
		padding-top: 40px;
		padding-bottom: 40px;    
        height: 200px;
	}
}
@media (min-width: 1200px) {
	.banner__content {
		width: 1170px;
	}
}