.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #b82020;
    border-color: #d4d4d2 transparent #ffffff transparent;
    animation: lds-dual-ring 0.6s linear infinite;
    position: fixed;
    left: 42%;
    bottom: 0;
    right: 0;
    top: 50%;
    z-index: 1000000;
}
.spinner-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99999999999;
    color: white;
}

.spinner-message {
    display: inline-block;
    margin-top: 209px;
    font-size: 16px;
    font-weight: bold;
    margin-left: -22px;
    color: white;
}
.spinner-grow{
    position: relative;
    top: 4px;
    color: white;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
