﻿.modalPopUp {
    position: fixed;
    top: 0;
    left: 0;
    background-color: White;
    z-index: 99;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    min-height: 100%;
    width: 100%;
    z-index: 999999;
    display: block !important;
}

.loading2 {
    display: none;
    position: fixed;
    z-index: 9999999;
}

.loader {
    position: absolute;
    border: 10px solid #d1cccc;
    border-radius: 50% !important;
    border-top: 10px solid #69BE27;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 59%;
    z-index: 999;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@media only screen and (max-width: 600px) {
    .loader {
        position: absolute;
        border: 8px solid #d1cccc;
        border-radius: 50% !important;
        border-top: 8px solid #69BE27;
        width: 60px;
        height: 60px;
        left: 40%;
        top: 50%;
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
