﻿
/*.spinner {
    position: fixed;
    width: 100px;
    height: 100px;
    background: #ec5840;
    border-radius: 100%;
    opacity: 0.7;
    top: 40%;
    left: 50%;
    z-index: 10000;
    background-size: 100%;
}*/
#loaderWrapper {
    position: fixed;
    z-index: 99999999999;
    left: 0;
    top: 0;
    height: 100%;
    margin: auto;
    right: 0;
    background: #00000085;

}
.spinner {
    position: fixed;
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    top: 40%;
    left: 50%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 