﻿/* HTML: <div class="loader"></div> */
#loadering-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(228, 216, 221, 1) 0%, rgba(148, 187, 233, 1) 100%);
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    z-index: 9999; /* Asegúrate de que esté en la parte superior */
}
/* HTML: <div class="loader"></div> */
.loadering {
    width: 120px;
    height: 20px;
    border-radius: 20px;
    background: repeating-linear-gradient(135deg,#1B9BA4 0 10px,#2C6A89 0 20px) 0/0% no-repeat, repeating-linear-gradient(135deg,#ddd 0 10px,#eee 0 20px) 0/100%;
    animation: l3 2s infinite;
}

@keyframes l3 {
    100% {
        background-size: 100%
    }
}