.pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse::after,
.pulse::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(237, 216, 255, 0.50);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}

.pulse::after {
  animation: pulse 2s ease-out infinite;
}

.pulse::before {
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.tick-div {
  width: 59%;
  border-bottom: 10px solid #fffbfb;
  border-left: 10px solid white;
  height: 40%;
  box-sizing: border-box;
  border-radius: 10px;
  transform: translateY(-4px) rotate(319deg);
}

.blur-background {
  width: 100%;
  height: 100vh;
  background-color: #00000047;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.fa-regular.fa-xmark {
  position: absolute;
  top: 14px;
  right: 13px;
  color: #adadad;
  cursor: pointer;
}

.success-popup {
  width: 442px;
  height: 250px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.fa-regular.fa-circle-check {
  font-size: 50px;
  color: #a53dff;
}

.success-message {
  font-size: 23px;
  color: #081D36;
  font-weight: 500;
  margin: 0px;
  margin-top: 15px;
}

.success-sub-text {
  margin: 0;
  font-size: 13px;
  color: #7C7C7C;
  margin-top: 6px;
}
