/*codice per fare il popup con il thanks message del form*/
#ba-forms-notification {
    animation: none !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: max-content;
    padding: 50px;
}

#ba-forms-notification.notification-in {
	animation: none !important;
}
#ba-forms-notification.animation-out {
    animation: notification-animation-out .4s cubic-bezier(.25,.98,.26,.99) both !important;
}

@keyframes notification-animation-out {
    to {opacity: 0;}
}