.doz-spinner-back{
    left:0;
    top: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    display: block;
    z-index: 999999;
}

.doz-spinner-sub-back{
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 100%;
    height: 100%;
}
.doz-spinners {
    border-radius: 15px;
    background-color: rgba(12, 12, 0, 0.25);
    width: 100px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
}
.doz-spinners .row {
    height: 50px;
    padding: 10px 0;
}
.doz-spinner, .doz-spinner:before, .doz-spinner:after {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 8px;
    height: 40px;
    background-color: #00B8FF;
}

.doz-spinner {
    display: inline-block;
    position: relative;
}
.doz-spinner:before, .doz-spinner:after {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
}
.doz-spinner:before {
    left: -12px;
}
.doz-spinner:after {
    left: 12px;
}
@-webkit-keyframes glow {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #00B8FF;
    }
    100% {
        background-color: transparent;
    }
}
@-moz-keyframes glow {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #00B8FF;
    }
    100% {
        background-color: transparent;
    }
}
@keyframes glow {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #00B8FF;
    }
    100% {
        background-color: transparent;
    }
}
.doz-spinner-blink {
    -webkit-animation: glow 0.6s 0.1s infinite;
    animation: glow 0.6s 0.1s infinite;
}
.doz-spinner-blink:before {
    -webkit-animation: glow 0.6s 0s infinite;
    animation: glow 0.6s 0s infinite;
}
.doz-spinner-blink:after {
    -webkit-animation: glow 0.6s 0.2s infinite;
    animation: glow 0.6s 0.2s infinite;
}