﻿.ax-cargando-proceso {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #6e6e6ea3;
    z-index: 99;
}
.ax-cargando-proceso div {
    background: #fff;
    width: 23%;
    box-shadow: 0px 0px 30px 5px #ebebeb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
}
.ax-cargando-proceso div p {
    margin-top: 60px;
    margin-bottom: 0;
}

#spinner-loader-syspotec-2025 {
    width: 14.4px;
    height: 14.4px;
    margin-top: 30px;
    animation: spinner-o824ag 1s infinite linear;
}

#spinner-loader-syspotec-2025 div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f17b20;
    border-radius: 50%;
    animation: spinner-vse6n7 1.25s infinite ease;
}

#spinner-loader-syspotec-2025 div:nth-child(1) {
    --rotation: 90;
}
#spinner-loader-syspotec-2025 div:nth-child(2) {
    --rotation: 180;
}
#spinner-loader-syspotec-2025 div:nth-child(3) {
    --rotation: 270;
}
#spinner-loader-syspotec-2025 div:nth-child(4) {
    --rotation: 360;
}
@keyframes spinner-vse6n7 {
    0%, 100% {
        transform: rotate(calc(var(--rotation) * 1deg)) translateY(0);
    }
    50% {
        transform: rotate(calc(var(--rotation) * 1deg)) translateY(300%);
    }
}
@keyframes spinner-o824ag {
    to {
        transform: rotate(360deg);
    }
}