@keyframes sympleBeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.075);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.925);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes loadingHolderAnimattion {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.toast {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  display: flex;
  justify-content: center;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  z-index: 99;
}

.toast .msg {
  background: #a4d2eb;
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  padding: 8px 60px;
  font-size: 16px;
  font-weight:500;
  text-align: center;
}

.flex-box {
  display: flex;
  justify-content: space-between;
}

.one-line-limit {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: fit-content;
}

.multiple-line-limit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: fit-content;
}

.skeleton {
  aspect-ratio: 16 / 9;
  margin-bottom: 10px;
  background: linear-gradient(-45deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
  background-size: 400% 100%;
  transition: all ease .3s;
  animation: loadingHolderAnimattion 1.4s ease infinite;
}

.skeleton-title {
  aspect-ratio: 3;
}

.cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cover .fill-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(15px);
  transform: scale(1.2);
}

.cover .real-cover {
  position: relative;
  z-index: 10;
}

.hide {
  visibility: hidden;
}