.loader-white-background {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
}

.loader {
    position: fixed;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    border: 18px solid white;
    border-top: 18px solid deepskyblue;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    z-index: 9999;
    animation: spinloader 1s linear infinite;
}

.loader img{
    position: fixed;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    animation: spinlogo 1s linear infinite;
}

@keyframes spinloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinlogo {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}