﻿.loader {
    border: 16px solid #9ec8ba94; /* Light grey */
    border-top: 16px solid #04724d; /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    position: absolute;
    z-index: 100;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.body-loader {
    background: #ffffffb3;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 10000;
    top: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-device-width: 480px) {
    /*styles for mobile browsers smaller than 480px;(iPhone)*/

    .loader {
        width: 80px;
        height: 80px;
    }
}
