/* This is where we put CSS styles that would write over the base design */ 


/* -- Client-Specific Page Elements  -- */ 

.client-company img {
    max-width: 320px;
}

.client-title img {
    max-width: 360px; 
    margin-left: 4px;
}

#user-form {
    max-width: 400px; 
}

/* Logo and Heading size override */
.flex-child.client-title img.img-fluid,
.flex-child.client-company img.img-fluid{
    width: 18%;
}
.flex-child.client-title img.img-fluid,
.flex-child.client-company img.img-fluid,
.content-wrapper.fancy.centerer img.img-fluid,
#spin-now{
        animation: pulse 1s ease-in-out infinite
}

/* Spin animation */

.wheel-wrapper .spin-ani {
	animation: rot 3s ease-in-out infinite;
}
@keyframes rot {
	0% { transform: rotate(0deg) }
	20% { transform: rotate(0deg) }
	100% { transform: rotate(720deg) }
}