#customerLogosBank{
	display: none;
}
.customerLogoDiv{
	padding: 20px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
    pointer-events: none;
}
.customerLogoDiv img{
	width: auto;
	max-height: 80px;
	max-width: 80%;
}
.customerLogoDiv.swapLogo{
	-moz-animation: swapLogoAnim .4s 1 linear;
    -o-animation: swapLogoAnim .4s 1 linear;    
    -webkit-animation: swapLogoAnim .4s 1 linear;
}
@keyframes swapLogoAnim {
    0% { opacity: 1; }
    48% { opacity: 0; }
    52% { opacity: 0; }
    100% { opacity: 1; }
}