.test-success-feedback{ 
    color:   green;
    padding: 12px;
    animation: appear 1s;
}

@wekbit-keyframes appear{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes appear{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

#testform img{
  display: block;
}

.test-error-feedback{ 
    color:   red;
    padding: 12px;
    animation: appear 1s;
}
.test-success-feedback p:last-child,
.test-error-feedback p:last-child{
  margin-bottom: 0;
}