.payment-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(./top-left-pattern.png);
  height: 200px;
  width: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}
.circle-cross {
    position: relative;
    width: 80px;
    height: 80px;
    border: 4px solid red;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: circle-pop 0.3s ease-out forwards;
  }

  .circle-cross::before,
  .circle-cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 4px;
    background: red;
    transform-origin: center;
    opacity: 0;
    border-radius: 4px;
  }

  .circle-cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
    animation: line-draw 0.3s ease-out 0.25s forwards;
  }

  .circle-cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: line-draw 0.3s ease-out 0.4s forwards;
  }

  /* Animations */
  @keyframes circle-pop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }

  @keyframes line-draw {
    0% { width: 0; opacity: 0; }
    100% { width: 70%; opacity: 1; }
  }
/* Circle container */
  .circle-check {
    position: relative;
    width: 80px;
    height: 80px;
    border: 4px solid #4ade80; /* green border */
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: circle-pop 0.3s ease-out forwards;
  }

  /* Checkmark */
  .circle-check::before,
  .circle-check::after {
    content: '';
    position: absolute;
    background: #4ade80;
    opacity: 0;
  }

  /* Short part of check */
  .circle-check::before {
    width: 0;
    height: 4px;
    top: 40%;
    left: 21%;
    transform: rotate(45deg);
    transform-origin: left center;
    animation: check-draw 0.25s ease-out 0.3s forwards;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  /* Long part of check */
  .circle-check::after {
    width: 0;
    height: 4px;
    top: 67%;
    left: 50%;
    transform: rotate(-45deg);
    transform-origin: left center;
    animation: check-draw-long 0.25s ease-out 0.55s forwards;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  /* Animations */
  @keyframes circle-pop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }

  @keyframes check-draw {
    0% { width: 0; opacity: 0; }
    100% { width: 30px; opacity: 1; }
  }
  @keyframes check-draw-long {
    0% { width: 0; opacity: 0; }
    100% { width: 60px; opacity: 1; }
  }