/* طراحی شده توسط سید علیرضا زمردیان */ 
.e-card {
  margin: 100px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgb(223 0 88 / 29%);
  position: relative;
  width: 240px;
  height: 330px;
  border-radius: 27px;
  overflow: hidden;
  /*تنظیمات باکس اصلی*/
}

.wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: linear-gradient(744deg,#df0058,#900039 60%,#df0058);
  /*تنظیمات افکت موج*/
}
.profile-image {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  /*تنظیمات تصویر*/
}

.infotop {
  text-align: center;
  font-size: 21px;
  position: absolute;
  top: 4em;
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 300;
  /*تنظیمات عنوان اول*/
}

.name {
  font-size: 16px;
  font-weight: 100;
  position: relative;
  top: 1em;
  text-transform: lowercase;
  /*تنظیمات عنوان دوم*/
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 210px;
}

.playing .wave {
  border-radius: 40%;
  animation: wave 3000ms infinite linear;
}

.wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.wave:nth-child(2) {
  animation-duration: 50s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.wave:nth-child(3) {
  animation-duration: 45s;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}