.brand_container {
	display:flex;
}

.caronte_brand_carousel {
	display:flex;
	justify-content:center;
	align-items:center;
	height; 100%;
}

.caronte_brands_slideshow {
    display: none;
}

/* Fading animation */
.caronte_brands_fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes caronte_brands_fade {
    from {opacity: .4}
    to {opacity: 1}
}