.valores-page-loader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 128, 237, 0.88);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.valores-page-loader.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.valores-page-loader-mark {
    position: relative;
    width: 56px;
    height: 56px;
}

.valores-page-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: #cb951a;
    animation: valores-loader-spin 0.75s linear infinite;
}

.valores-page-loader-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #cb951a;
    box-shadow: 0 0 0 4px rgba(203, 149, 26, 0.18);
}

@keyframes valores-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .valores-page-loader-ring {
        animation: none;
        border-top-color: #cb951a;
        border-right-color: #cb951a;
    }
}
