﻿.blockOverlay {
    background-color: #666;
    filter: alpha(opacity=50) !important;
    opacity: .50;
    z-index: 999998 !important;
}

.blockPage {
    z-index: 999999 !important;
    position: fixed;
    padding: 10px;
    margin: -38px 0 0 -45px;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    text-align: center;
    cursor: wait;
    background: url(ajax-loader.gif) center 30px no-repeat #fff;
    border-radius: 5px;
    color: #666;
    box-shadow: 0 0 25px rgba(0,0,0,.75);
    font-weight: bold;
    font-size: 15px;
    border: 1px solid #ccc;
}

.loader {
    border: 10px solid #AFAFC1;
    border-radius: 50%;
    border-top: 10px solid #002A55;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}