
#actionLoadingContainer_v1 {
    color: #fff; 
    text-align:center; 
    display: none;
    z-index: 1000000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(150, 150, 150, 0.4);
}
#actionLoadingWrapper_v1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#actionLoadingSpinner_v1 {
    height: 48px;
    width: 48px;
    margin: 8px;
    border: 2px solid transparent;
    border-top-color: #f07e1e;
    border-radius: 50%;
    animation: spin_v1 2s linear infinite;
}
#actionLoadingSpinner_v1:before, #actionLoadingSpinner_v1:after {
    content: "";
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
}
#actionLoadingSpinner_v1:before {
    border-top-color: #1e4b8c;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    animation: spin_v1 3s linear infinite;
}
#actionLoadingSpinner_v1:after {
    border-top-color: #FFFFFF;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    animation: spin_v1 4s linear infinite;
}
#actionLoadingContainer_v1 #actionLoadingWrapper_v1 .actionLoading_inner{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-direction: column;
}
#actionLoadingWrapper_v1 .actionLoading_inner .actionLoadingText{
    margin: 8px; 
    color: #000000;
}
@keyframes spin_v1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}