#texto_carga {
    color: white;
    font-size: 15px;
    text-align: center;
    position: absolute;
	font-weight:bold;
    top: 56%;
    left: 0;
    right: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
}

#contenedor_carga {
    background-color: #000000;
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
}



#loading {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

#carga {
    border: 7px solid #282828;
    border-top-color: #ffffff;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: girar 1.5s linear infinite;
    -o-animation: girar 1.5s linear infinite;
    animation: girar 1.5s linear infinite;
    z-index: 1; /* Asegura que el círculo esté encima de la imagen */
}

#logo {
    width: 70px; /* Mismo tamaño que el círculo */
    height: 70px; /* Mismo tamaño que el círculo */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 0; /* Coloca la imagen detrás del círculo */
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes saltar {
    0%, 20%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.punto1, .punto2, .punto3 {
    display: inline-block;
    animation: saltar 1s infinite;
}

.punto2 {
    animation-delay: 0.1s;
}

.punto3 {
    animation-delay: 0.2s;
}