@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 13;
}

.spinner-wrapper.white-bg {
    background-color: #ffffffbf;
}

.loading-msg {
    position: absolute;
    top: calc(50% + 40px);
    z-index: 10000;
    width: 100%;
    text-align: center;
}

.spinner-wrapper .spinner {
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    animation: rotate 1s linear infinite;
    background: #0084D5;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    position: relative;
    z-index: 9999;
}

.spinner::before {
    border-radius: 50%;
    background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.9) 100%) 0% 0%, linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%) 100% 0%, linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%) 100% 100%, linear-gradient(360deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%) 0% 100%;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.spinner::after {
    background: #FFFFFF;
    border-radius: 50%;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
}

.spinner::before,
.spinner::after {
    content: "";
    position: absolute;
}

.spinner-wrapper .spinner-logo {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 12px);
    z-index: 10000;
}