// processing payment screen
.pmnt_process_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background-color: var(--_gray-100);
  .process_loader_content {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
    justify-content: center;
    align-items: center;
    .processing_loader {
      position: relative;
      width: 64px;
      height: 64px;
      margin-bottom: 24px;

      &::before,
      &::after {
        content: "";
        position: absolute;
        border-radius: 50%;
      }

      // Background stroke
      &::before {
        width: 100%;
        height: 100%;
        border: 6px solid #e0e0e0;
      }

      // Animated stroke
      &::after {
        width: 100%;
        height: 100%;
        border: 6px solid transparent;
        border-top-color: #243dc6;
        animation: processing_loader_spin 1s linear infinite;
      }
      p {
        margin-top: 8px;
      }
    }

    h3 {
      margin-block: 10px;
    }

    @keyframes processing_loader_spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
  }
}
