﻿.loader-bkg {
    position: fixed;
    z-index: 9;
    border: 8px solid #2F5BF5;
    border-radius: 50%;
    border-top: 8px solid #B8C4ED;
    width: 100px;
    height: 100px;
    animation: spinner 4s linear infinite;
    margin-right:310px;
    margin-bottom:100px;
}

.loader-bkg-container {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -55px;
    margin-top: -110px;
    background-color: rgba(180, 180, 180, 0.3);
    z-index:9;
    width: 100%;
    height: 105%;
    backdrop-filter: blur(0.1rem);
}

.loader-popup {
    position: fixed;
    z-index: 2023;
    border: 8px solid #2F5BF5;
    border-radius: 50%;
    border-top: 8px solid #B8C4ED;
    width: 100px;
    height: 100px;
    animation: spinner 4s linear infinite;
}

.loader-popup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(180, 180, 180, 0.3);
    z-index: 99;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
}

.loader-status {
    position: fixed;
    z-index: 2023;
    border: 8px solid #009b51;
    border-radius: 50%;
    border-top: 8px solid #B8C4ED;
    width: 40px;
    height: 40px;
    animation: spinner 1s linear infinite;
}


.loader-status-container {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: transparent;
    z-index: 99;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
}
.loader-status-msg {
    color: #009b51;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 50px;
    padding-top: 3px;
}

    @keyframes spinner {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
