.pushpress-message-container { 
	padding:20px;
	border-radius:3px;
	margin:20px 0;
}
.pushpress-message-container.error { 
  background:red;
 	color:white;
}
.pushpress-message-container.success { 
 	background:green;
 	color:white;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  z-index:100000;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border-top: 2px solid #07d;
  border-right: 2px solid transparent;
  animation: spinner .6s linear infinite;
}