.carousel {
	position: relative;
	margin-bottom: 1.5rem;
}

.carousel__container {
	display: flex;
	flex-direction: column;
	height: inherit;
	position: relative;
}
	.carousel__container.carousel__container--reverse {
		display: flex;
		flex-direction: column-reverse;
	}

.carousel__spotlight, .carousel__reel {
	overflow: hidden;
}

.carousel__spotlight {
	position: relative;
	height: inherit;
}

.carousel__reel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 30%;
}

.carousel__scroller {
	position: relative;
	overflow: hidden;
	height: inherit;
	/*flex: 1 0 100%;*/
}

.carousel__slide {
	position: relative;
	/*display: flex !important;*/
}
	.carousel__slide > * {
		height: 100%
	}

.carousel .carousel__navigation {
}

.carousel .carousel__arrows-container { }
.carousel .carousel__dots-container { }
	.carousel .carousel__dots-container.carousel__dots-container--bottom { }
	.carousel .carousel__dots-container.carousel__dots-container--bottom-overlay {
		position: absolute;
		bottom: 0;
		width: 100%;
	}
	.carousel .carousel__dots-container.carousel__dots-container--top { }
	.carousel .carousel__dots-container.carousel__dots-container--top-overlay {
		position: absolute;
		top: 0;
		width: 100%;
	}


.carousel__arrow-prev, .carousel__arrow-next {
	position: absolute;
	top: 50%;
	height: 100%;
	padding: 0;
	font-size: 0;
	display: block;
	color: transparent;
	background: transparent;
	border: none;
	transform: translate(0, -50%);
	z-index: 9001;
}

.carousel__arrow-prev {
	left: -40px;
	width: 40px;
}

@media screen and (max-width: 576px) {
	.carousel__arrow-prev {
		left: -20px;
		width: 20px;
	}
}

.carousel__arrow-next {
	right: -40px;
	width: 40px;
}

@media screen and (max-width: 576px) {
	.carousel__arrow-next {
		right: -20px;
		width: 20px;
	}
}


.carousel__arrow-prev:before, .carousel__arrow-next:after {
	position: relative;
	content: "";
	display: inline-block;
	/* By using an em scale, the arrows will size with the font */
	width: 1em;
	height: 1em;
	border-left: 0.2em solid #002744;
	border-top: 0.2em solid #002744;
	font-size: 15px;
	z-index: 1;
}

@media screen and (max-width: 576px) {
	.carousel__arrow-prev:before, .carousel__arrow-next:after {
		font-size: 10px;
	}
}

.carousel__arrow-prev:before {
	transform: translate(25%, 0) rotate(-45deg);
}

.carousel__arrow-next:after {
	transform: translate(-25%, 0) rotate(135deg);
}


.carousel__dots,
.carousel__indicator-dots,
.hero-banner.hero-banner--carousel .carousel-indicators { /*Legacy line - to be removed*/
	width: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
}

	.carousel__dots li,
	.carousel__indicator-dots li,
	.hero-banner.hero-banner--carousel .carousel-indicators li { /*Legacy line - to be removed*/
		line-height: 0;
		flex: 0 1 auto;
	}

		.carousel__dots li:before,
		.carousel__indicator-dots li:before,
		.hero-banner.hero-banner--carousel .carousel-indicators li:before { /*Legacy line - to be removed*/
			content: none;
		}

		.carousel__dots li button,
		.carousel__indicator-dots li button,
		.hero-banner.hero-banner--carousel .carousel-indicators li { /*Legacy line - to be removed*/
			font-size: 0;
			line-height: 0;
			color: transparent;
			background: transparent;
			border: none;
			padding: 0;
		}

			.carousel__dots li button:before,
			.carousel__indicator-dots li button:before,
			.hero-banner.hero-banner--carousel .carousel-indicators li:before { /*Legacy line - to be removed*/
				content: "";
				width: 1em;
				height: 1em;
				border-radius: 50%;
				margin: 10px 5px;
				background-color: #ccc;
				opacity: 1;
				transition: opacity .6s ease;
				font-size: 15px;
				display: block;
			}

			.carousel__dots li.slick-active button:before,
			.carousel__indicator-dots li.slick-active button:before,
			.hero-banner.hero-banner--carousel .carousel-indicators li.active:before { /*Legacy line - to be removed*/
				background-color: #002744;
			}




/***** Variant Styles *****/
.hero-banner.carousel .carousel__dots,
.hero-banner.carousel .carousel__indicator-dots,
.hero-banner.hero-banner--carousel .carousel-indicators { /*Legacy line - to be removed*/
	position: absolute;
	bottom: 0;
	margin: 0;
}

	.hero-banner.carousel .carousel__dots li button:before,
	.hero-banner.carousel .carousel__indicator-dots li button:before,
	.hero-banner.hero-banner--carousel .carousel-indicators li:before {
		background-color: #fff;
	}

	.hero-banner.carousel .carousel__dots li.slick-active button:before,
	.hero-banner.carousel .carousel__indicator-dots li.slick-active button:before,
	.hero-banner.hero-banner--carousel .carousel-indicators li.active:before { /*Legacy line - to be removed*/
		background-color: #9a258f;
	}

.hero-banner.carousel .carousel__arrow-prev {
	left: 0;
}

.hero-banner.carousel .carousel__arrow-next {
	right: 0;
}




/***** Plugin Override *****/
.slick-list, .slick-track {
    display: flex !important;
    height: 100%;
}
.slick-slide {
    height: auto !important;
}

.carousel-inner, .carousel-item { /*Legacy rule - to be removed*/
	height: 100%;
}

.hero-banner.hero-banner--carousel .carousel-indicators { /*Legacy rule - to be removed*/
	margin-bottom: 30px;
}

	.hero-banner.hero-banner--carousel .carousel-indicators li { /*Legacy rule - to be removed*/
		opacity: 1;
		width: 20px;
	}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}




/***** Misc Override *****/
.carousel .card-container {
	padding-bottom: 0;
}

.carousel .media .media__item {
	object-fit: cover;
}
