.notification {

  position: fixed;
  left: 0;
  top: 0;  
  background: linear-gradient(270deg, #eb3489, #eb3434);
  border-radius: 8px;
  opacity: 0.7;
  max-width: 400px;
  margin: 45px;
  margin-top: 0px;
  z-index:999;
  padding: 25px;
  -webkit-transition: margin-top 0.3s;
  transition: margin-top 0.3s;

}

.notificationSucces {

  position: fixed;
  left: 0;
  top: 0;  
  background: rgb(9,188,199);
  background: linear-gradient(90deg, rgba(9,188,199,1) 0%, rgba(1,250,138,1) 100%);
  border-radius: 8px;
  opacity: 0.7;
  max-width: 400px;
  margin: 45px;
  margin-top: 0px;
  z-index:999;
  padding: 25px;
  -webkit-transition: margin-top 0.3s;
  transition: margin-top 0.3s;

}

.notification h2 {

  color: #fff;
  font-size: 22px;
  font-weight: 200;
  margin: 0;
  margin-bottom: 4px;

}

.notificationSucces h2 {

  color: #fff;
  font-size: 22px;
  font-weight: 200;
  margin: 0;
  margin-bottom: 4px;

}

.notification i { 
  top: 0;
  right: 0;
}

.notificationSucces i { 
  top: 0;
  right: 0;
}

.notification h3 {

  color: #fff;
  font-size: 18px;
  font-weight: 200;
  margin: 0;

}

.notificationSucces h3 {

  color: #fff;
  font-size: 18px;
  font-weight: 200;
  margin: 0;

}

.loadingSpan {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0.5, 0.5, 0.5) infinite;
  border-color: #000 #000 #000 transparent;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
