.expand-list {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow: hidden;
	min-width: 600px;
	height: 400px;
}

.expand-list .expand-item {
	position: relative;
	overflow: hidden;
	min-width: 70px;
	margin: 10px;
	background: var(--bannerBackground);
	background-size: auto 120%;
	background-position: center;
	cursor: pointer;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.expand-list .expand-item.active {
	flex-grow: 10000;
	transform: scale(1);
	margin: 0px;
	border-radius: 40px;
	background-size: auto 100%;
}

.expand-list .expand-item.active .expand-shadow {
	box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.expand-list .expand-item.active .expand-label {
	bottom: 20px;
	left: 20px;
}

.expand-list .expand-item.active .expand-label .expand-info>div {
	left: 0px;
	opacity: 1;
}

.expand-list .expand-item:not(.active) {
	flex-grow: 1;
	border-radius: 30px;
}

.expand-list .expand-item:not(.active) .expand-shadow {
	bottom: -40px;
	box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.expand-list .expand-item:not(.active) .expand-label {
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.expand-list .expand-item:not(.active) .expand-label .expand-info{
	display: none;
}

.expand-list .expand-item:not(.active) .expand-label .expand-info>div {
	left: 20px;
	opacity: 0;
}

.expand-list .expand-item .expand-shadow {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 120px;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.expand-list .expand-item .expand-label {
	display: flex;
	position: absolute;
	right: 0px;
	height: 40px;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.expand-list .expand-item .expand-label .expand-icon {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	max-width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: white;
}

.expand-list .expand-item .expand-label .expand-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 10px;
	color: white;
	white-space: pre;
}

.expand-list .expand-item .expand-label .expand-info>div {
	position: relative;
	transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.expand-list .expand-item .expand-label .expand-info > a {
	transition-delay: 0.1s;
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 1px 1px #000;
}

.expand-item .banner-cta{
	display: none;
}

.expand-item.active .banner-cta{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	text-indent: -999px;
}

@media(max-width: 991px){
	.expand-list {
		overflow-x: auto;
		flex-wrap: nowrap;
		min-width: auto;
	}
	.expand-list .expand-item {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.expand-list .expand-item .banner-cta{
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: transparent;
		text-indent: -999px;
	}
}
