.skeleton-loader.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .skeleton-column {
    flex: 1;
    margin: 5px;
    position: relative;
    overflow: hidden;
  }

  /* Style the individual rows */
  .skeleton-row {
    width: 100%;
    height: 150px;
    background-color: #e8e3e3d8;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }

  .skeleton-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      200deg,
      transparent,
      #f0f0f0b6,
      transparent
    );
    animation: loading 2s linear infinite;
  }

  @keyframes loading {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }

  .display-none-loader-mobile {
    display: block !important;
  }
  @media only screen and (max-width: 780px) {
    .display-none-loader-mobile {
      display: none !important;
    }
  }

  .pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .shadow-0 {
    box-shadow: 0px 0px 0px !important;
  }
  .pace-inactive {
    display: none;
  }

  .pace .pace-progress {
    background: #b7793e;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px;
  }