
    .loading-screen-wrapper {
      z-index: 100000;
      position: fixed;
      top: 0;
      background-color: #f1f5fd;
        opacity: 0.6;
      width: 100%;
      height: 100vh;
      display: block;
    }
  .loading-screen-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .blobs {
    /* filter: url('./assets/images/loader-img.gif'); */
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 70px;
    transform-style: preserve-3d;
  }
  .blob-center {
      transform-style: preserve-3d;
      top: 50%;
      left: 50%;
      width: 30px;
      height: 30px;
    }
  .blob {
    position: absolute;
  }
  .blob img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .blob p{
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .blob img {
    animation: rotation 3s infinite linear;
  }
  
  @keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
    }
  }
  