.js-blockui2-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: #000;
    visibility: visible;
    cursor: wait;
    opacity: 0.4;
    filter: alpha(opacity=40);
    z-index: 9999999;
}

.blockui2-box {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #F9F9F9;
    padding: 30px;
    z-index: 10000000;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 90%;
    max-width: 90%;
    visibility: visible;
    cursor: wait;
    pointer-events: none;
    color: #000;
    opacity: 1;
}

.blockui2-spinner-wrapper {

    display: inline-block;

    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.blockui2-spinner.circle {
    animation-name: block2-spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    border: 2px solid #aeaeae;
    border-left-color: #0b5aa1;

    border-radius: 50%;
    width: 3.5vw;
    height: 3.5vw;
}

.blockui2-spinner.circle.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #0B5AA1;
    transition: border 500ms ease-out;
}

@keyframes block2-spin {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -moz-transform: rotate(0deg);


    }
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
    }
}

.blockui2-icon {
    display: none;
    text-align: center;

    font-size: 200%;

    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-animation: none;
    animation: none;
    animation-duration: 800ms;
    transition: border 500ms ease-out;
}

.blockui2-icon.checkmark {
    color: #0B5AA1;
}

.blockui2-icon.cross {
    color: red;
}

/* Green Style */

.blockui2-spinner.circle-green {
    animation-name: block2-spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;

    border: 2px solid #aeaeae;
    border-left-color: #199c00;

    border-radius: 50%;
    width: 3.5vw;
    height: 3.5vw;
}

.blockui2-spinner.circle-green.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #199c00;
    transition: border 500ms ease-out;
}

.blockui2-icon.checkmark-green {
    color: #199c00;
}
