﻿/*~~~~~~~~~~~~~~~~~~~action loader ~~~~~~~~~~~*/
#loading-div-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #2f2f2fcf;
    width: 100%;
    height: 100%;
    z-index: 9999999;
}

#loading-div {
    display: flex;
    flex-direction: column; /* vertical layout */
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 260px;
    padding: 10px;
    background-color: #fff;
    text-align: center;
    color: #202020;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* perfectly center */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10000000;
}

.processimg {
    height: 24px;
    width: 24px;
}

.textspan {
    font-size: 14px;
    font-weight: 500;
}