/* CSS Document */
/*==============================SPINNER================================*/
.overlay { /*div que cubre todo.*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Color semitransparente */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Asegura que esté sobre otros elementos */
}

.lds-ellipsis {
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #B9DCFF;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 12px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 36px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 55px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
.ldsb-ellipsis {
    position: relative;
    width: 64px;
    height: 64px;
    top: -69%;
}
.ldsb-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2E4150;;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.ldsb-ellipsis div:nth-child(1) {
  left: 6px;
  animation: ldsb-ellipsis1 0.6s infinite;
}
.ldsb-ellipsis div:nth-child(2) {
  left: 12px;
  animation: ldsb-ellipsis2 0.6s infinite;
}
.ldsb-ellipsis div:nth-child(3) {
  left: 36px;
  animation: ldsb-ellipsis2 0.6s infinite;
}
.ldsb-ellipsis div:nth-child(4) {
  left: 55px;
  animation: ldsb-ellipsis3 0.6s infinite;
}
@keyframes ldsb-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ldsb-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes ldsb-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

