.ff-scrolling-images {
	display: block;
}
.ff-scrolling-images .s1 {
	min-width: 170px;
	padding-right: 10px;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-align: center;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.ff-scrolling-images .s2 {
	width: 100%;
	overflow: hidden;
	-webkit-box-flex: 1;
	position: relative;
}

.ff-scrolling-images .s2:before,
.ff-scrolling-images .s2:after{
	content: '';
	height: 100%;
	width: 20px;
	display: inline-block;
	position: absolute;
	z-index: 4;
	top: 0;
}

.ff-scrolling-images .s2:before{
	left: 0;
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); 
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
}

.ff-scrolling-images .s2:after {
	right: 0;
	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); 
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
}
.ff-scrolling-images .heading {
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 12px;
}
.ff-scrolling-images .item {
	height: 100px;
	margin: 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ff-scrolling-images .carousel-container {
	margin-bottom: 0;
	max-height: 100px;
}

/* Mobile */
@media only screen and (max-width: 767px) {
	.ff-scrolling-images {
		display: block;
	}
	.ff-scrolling-images .s1 {
		justify-content: center;
		padding-right: 0;
		margin-bottom: 20px;
	}
}