.skeleton {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: 100%;
  animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    background-color: #ffffff;
  }
  50% {
    background-color: #f7fbfc;
  }
  100% {
    background-color: #ffffff;
  }
}