.newLinksForXML {
    display: flex;
    gap: 12px;
}

.back-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 991;
    display: grid;
    align-items: center;
    justify-content: center;
    background: hwb(0deg 0% 100% / 70%);
}

.loader_ {
    width: 70px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #2DA44A;
    --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {to{transform: rotate(1turn)}}