﻿body {
}

#semiTransparenDiv {
    width: 100%;
    /*-Lets Center the Spinner-*/
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*Centering my shade */
    margin-bottom: 0px; /*40px*/
    margin-top: 0px; /*60px*/
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    display: block; /**none*/
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#semiTransparenDiv::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 50px;
    height: 50px;
    border-style: solid;
    border: 5px solid black;
    border-top-color: #61c8f8;
    /*border-top-color: rgb(43, 62, 136);
	border-top-color: #6CC4EE;
	*/
    border-width: 7px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    /* Lets make it go round */
    animation: spin .8s linear infinite;
}