
.process{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 9999;
}

.bocLosd{
    width: 100px;
    height: 100px;
    background-color: #000;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.tiktok-loader {
  width: 70px;
  height: 50px;
  margin-top: 17px;
  position: fixed;
  z-index: 999;
}

.tiktok-loader::before,
.tiktok-loader::after {
  position: absolute;
  content: "";
  top: 6px;
  background-color: #E71787;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  animation: tiktok-loader-anim 1s linear infinite;
}

.tiktok-loader::after {
  background-color: #00EBEF;
  animation-delay: 0.5s;
}

@keyframes tiktok-loader-anim {

  0%,
  100% {
    top: 6px;
    left: 0px;
    width: 20px;
    height: 20px;
    z-index: 0;
  }

  25% {
    top: 0;
    height: 40px;
    width: 40px;
    z-index: 1;
    left: 20px;
  }

  50% {
    top: 6px;
    width: 20px;
    height: 20px;
    left: 48px;
  }

  75% {
    top: 8px;
    width: 20px;
    height: 20px;
    left: 26px;
  }
}