/* TABLE */
.skeleton-row {
    display: table-row;
  }
  
  .skeleton-cell {
    display: table-cell;
    height: 30px;
    background-color: #e0e0e0;
    animation: pulse 1.5s infinite ease-in-out;
    margin: 5px;
  }
  
  .skeleton-cell:first-child {
    width: 30%;
  }
  
  .skeleton-cell:nth-child(2) {
    width: 25%;
  }
  
  .skeleton-cell:nth-child(3) {
    width: 40%;
  }
  
  @keyframes pulse {
    0% {
      background-color: #e0e0e0;
    }
    50% {
      background-color: #cfcfcf;
    }
    100% {
      background-color: #e0e0e0;
    }
  }
/* TABLE */
