﻿.Throbber {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Center the spinner and text */
.Throbber .spinnerWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: absolute;
    width: 100%;
}
/* Spinner Animation */
.spinner {
    position: relative;
    width: 100px;
    height: 100px;
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #123A76;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Rotation animation */
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
