﻿/*Start: Loader Css*/
.loader {
    position: relative;
    width: 5.5em;
    height: 3.5em;
    margin: 0px;
    padding: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 102, 102,0.8);
    z-index: 30001;
}
.loader-text {
    color: #d0daff !important;
    font-weight: 700;
}
.loader > div {
    position: fixed;
    top: 54%;
    color: black;
    font-size: larger;
    text-align: center;
    display: block;
}

    .loader:before, .loader:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 0.5em;
        height: 0.5em;
        border-radius: 0.25em;
        transform: translate(-50%, -50%);
    }

    .loader:before {
        animation: before 2s infinite;
    }

    .loader:after {
        animation: after 2s infinite;
    }

@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(0, 255, 0, 0.75), -1em 0.5em rgba(0, 128, 0, 0.75); /* Light Green and Dark Green */
    }

    35% {
        width: 3.5em;
        box-shadow: 0 -0.5em rgba(0, 255, 0, 0.75), 0 0.5em rgba(0, 128, 0, 0.75);
    }

    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(0, 255, 0, 0.75), 1em 0.5em rgba(0, 128, 0, 0.75);
    }

    100% {
        box-shadow: 1em -0.5em rgba(0, 255, 0, 0.75), -1em 0.5em rgba(0, 128, 0, 0.75);
    }
}

@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(0, 204, 0, 0.75), -0.5em -1em rgba(34, 139, 34, 0.75); /* Medium Green and Forest Green */
    }

    35% {
        height: 3.5em;
        box-shadow: 0.5em 0 rgba(0, 204, 0, 0.75), -0.5em 0 rgba(34, 139, 34, 0.75);
    }

    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(0, 204, 0, 0.75), -0.5em 1em rgba(34, 139, 34, 0.75);
    }

    100% {
        box-shadow: 0.5em 1em rgba(0, 204, 0, 0.75), -0.5em -1em rgba(34, 139, 34, 0.75);
    }
}
.fontsize15 p{
    font-size:15px;
}
/**
 * Attempt to center the whole thing!
 */
/*End: Loader Css*/
