﻿
.loader {
    border: 16px solid rgba(255, 255, 255, 0.47);
    border-radius: 50%;
    border-top: 16px solid #0069D9;
    border-bottom: 16px solid #0069D9;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.loader-mini {
    border: 10px solid rgba(255, 255, 255, 0.47);
    border-radius: 50%;
    border-top: 10px solid #0069D9;
    border-bottom: 10px solid #0069D9;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

</style >

<style type="text/css" >
.HidePreLoader {
    visibility: hidden;
}

.ShowPreLoader {
    visibility: hidden;
}

.dialog-background {
    background: none repeat scroll 0 0 rgba(9, 93, 174, 0.83);
    height: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.dialog-loading-wrapper {
    background: none repeat scroll 0 0 rgba(0, 0, 0,0);
    border: 0 none;
    height: 100px;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: fixed;
    top: 50%;
    width: 100px;
    z-index: 9999999;
}

.dialog-loading-icon {
    background-color: #FFFFFF !important;
    border-radius: 13px;
    display: block;
    height: 100px;
    line-height: 100px;
    margin: 0;
    padding: 1px;
    text-align: center;
    width: 100px;
}
