﻿.loadarea {
    top: 0%;
    left: 0%;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.64);
    z-index: 1051;
}

.loader {
    top: 20%;
    left: 45%;
    margin: 0 auto;
    border-top: 10px solid #053259; /* Blue */
    border-bottom: 10px solid #f2b705;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    animation: spin 2s linear infinite;
    z-index: 1;
    position: fixed;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
