
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  display: none;
}
.lds-ellipsis div {
  position: absolute;
  top: 33.33333px;
  width: 8.33333px;
  height: 8.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  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(24px, 0);
  }
}












.xyz-error {
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.error__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
  display: flex;
  margin-bottom: -2px;
  align-items: center;
}

.error__icon path {
  fill: #fff;
}
.error__icon > i{
    color: #fff;
    font-size: 19px;
}

.error__title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
    margin-top: -4px;
}

.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
  display: flex;
}

.error__close path {
  fill: #fff;
}

.xyz-hidden {
    opacity: 0; /* Oculta el div al desvanecerse */
    pointer-events: none; /* Desactiva los eventos en el div oculto */
}






@media screen and (max-height: 790px){
    .xyz-error{
        padding: 10px;
        bottom: 10px;
    }
    .error__title {
        font-weight: 500;
        font-size: 13px;
        color: #fff;
        margin-top: -2px;
    }
}