.pisell-lowcode__eft-pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin: 0 0 24px 0;
  flex-shrink: 0;
  position: relative;
}
.pisell-lowcode__eft-pay-title {
  color: var(--gray-900, #101828);
  
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}
.pisell-lowcode__eft-pay-img {
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pisell-lowcode__eft-pay-load {
  animation: spin 1s linear infinite;
} 
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
