.spinner {
	background-color:#000;
    position: absolute;
    text-align:center;
    top:0;left:0;
    color:#FFF;
    z-index:10000;
    overflow:hidden;
    width: 100%;
    height: 100%;
    opacity: .4;
    filter: alpha(opacity = 40);
}
.wait-spinner {
	background-color:#FFF;
    position: absolute;
    text-align:center;
    color:#000;
    z-index:10000;
    overflow:hidden;
    width: 100%;
    height: 100%;
    opacity: .2;
    filter: alpha(opacity = 20);
}
.wait-spinner i{
	margin-top:-17px;
	margin-left:-17px;
	position:relative;
	top:50%;
}
.spinner i {
	margin-top:-17px;
	margin-left:-17px;
	position:relative;
	top:50%;
}

.lds-ellipsis {
    /* change color here */
    color: #FFFFFF
}
.lds-ellipsis,
.lds-ellipsis div {
    box-sizing: border-box;
}
.lds-ellipsis {
    position: relative;
    width: 80px;
    height: 80px;
    margin-top:-40px;
    margin-left:-40px;
    top:50%;
    left:50%;
}
.lds-ellipsis div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}
