#ssr-alert {
    position: fixed;
    bottom: -50px;
    opacity: 0;
    right: 15px;
    transition-property: opacity !important;
    transition-property: bottom !important;
	transition-duration: 250ms !important;
	transition-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1) !important;
	-webkit-transition-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1) !important;
}
#ssr-alert.show {
    bottom: 15px;
    opacity: 1;
    transition-property: opacity !important;
    transition-property: bottom !important;
    transition-duration: 200ms !important;
	transition-timing-function: cubic-bezier(0.4, 0.0, 1, 1) !important;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0.0, 1, 1) !important;
}
#ssr-alert.failure {
    background: #EB0D77;
}
#ssr-alert.success {
    background: #32d296;
}
