#Cont-Cargando{
  display: none
}

.Cargando{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 79%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.loader {
  font-size: 30px;
  display: flex;
  gap: 10px;
}
.loader span {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  justify-content: center;
  font-family: sans-serif;
  font-weight: bold;
  color: #aa41fe;
  background-color: #dbd5f3;
  border-radius: 8px;
  min-width: 40px;
  animation: peek 1s both infinite;
  animation-delay: var(--d);
}

@keyframes peek {
  25% {
    transform: rotateX(30deg) rotate(-13deg);
  }
  50% {
    transform: translateY(-22px) rotate(3deg) scale(1.1);
    color: #6a45ed;
  }
}
