.qr-status {
  display: none;
  padding: 2rem;
  border-radius: 100%;
  background-color: #10dba8;
  font-size: 3rem;

  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
}

.qr-status svg{
  display: flex;
  justify-content: center;
  align-items: center;

  font-size:1.2em;
}

.qr-status.visible {
  animation: visible .8s ease forwards;
  display: block;
}

.qr.paid .image {
  animation: paid 1s ease forwards;
}

@keyframes paid {
  from {
    filter: blur(0);
    opacity: 1;
  }
  to {
    filter: blur(5px);
    opacity: 0.5;
  }
}

@keyframes visible {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: block;
    opacity: 1;
  }
}