.wa-notificacao-item {
  position: fixed;
  left: calc( 100% );
  overflow: hidden;  
  height: 80px;
  width: 300px;
  /* background-color: #81b03f; */
  /* background-image: linear-gradient(#59a800, #81b03f, #59a800); */
  background-color: #E49B0F;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: left 1s;
	font-family: 'trebuchet ms';
	font-size: 20px;
	font-weight: bold;
	color: white;
}

.wa-notificacao-item span {
  padding: 10px;
}

.wa-notificacao-show { 
  left: calc( 100% - 320px ); 
}

.wa-notificacao-hidden { 
  left: calc( 100% ); 
}