/* @extra  */

.skeleton.slick-slide {
  padding: 20px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
}

.skeletonTop {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeletonName {
  width: 60%;
  height: 20px;
  animation: pulse 1.5s infinite;
  border-radius: 10px;
}

.skeletonOrg {
  width: 40%;
  height: 15px;
  animation: pulse 1.5s infinite;
  border-radius: 10px;
}

.skeletonBottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skeletonDes {
  width: 90%;
  height: 50px;
  animation: pulse 1.5s infinite;
  border-radius: 10px;
}

.skeletonExtra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  border-radius: 10px;
}

.skeletonButton {
  width: 30%;
  height: 30px;
  animation: pulse 1.5s infinite;
  border-radius: 10px;
}

.skeletonDate {
  width: 40%;
  height: 15px;
  animation: pulse 1.5s infinite;
  border-radius: 10px;
}

@keyframes pulse {
  0% {
    background-color: #f3f4f6;
  }
  50% {
    background-color: #e5e7eb;
  }
  100% {
    background-color: #f3f4f6;
  }
}

.pageHidden {
  display: none;
}
