.box {
    position: fixed;
    top: 0;
    left: 0;
    background: #515151;
    z-index: 99;
    z-index: 99;
    opacity: 0.95;
    filter: alpha(opacity=90);
    min-height: 100%;
    width: 100%;
    text-align: center;
}

.modalBackground {
    background-color: #515151;
    filter: alpha(opacity=80);
    opacity: 0.95;
}

.loader {
    margin: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 2em;
    border: 1.7px solid #7f7f7f;
    border-radius: 50%;
    border-bottom: 1.7px solid #ee7700;
    width: 10px;
    height: 10px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.img {
    margin: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65px;
    height: 65px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}  