﻿.submit-progress {
    position: fixed;
/*    top: 20%;
    left: 50%;
    height: 4em;
    padding-top: 1em;
    width: 23em;
    margin-left: -11.5em;
    padding-left: 2.1em;*/
    top: 10%;
    left: 50%;
    width: 23em;
    background-color: transparent;
    color: white;
    /*    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 2em;
    box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -webkit-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -moz-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);*/
}
.submit-progress-bg {
/*    background-color: lightgray;
    opacity: .5;*/
}
.submit-progress i {
    /*margin-right: 0.5em;*/
}

.loader {
    position: absolute;
    top: 50%;
/*    left: 40%;
    margin-left: 10%;*/
    transform: translate3d(-50%, -50%, 0);
}

.dot {
    width: 10px;
    height: 10px;
    background: #3ac;
    border-radius: 100%;
    display: inline-block;
    animation: slide 1s infinite;
}

    .dot:nth-child(1) {
        animation-delay: 0.1s;
        background: #0f43d5;
    }

    .dot:nth-child(2) {
        animation-delay: 0.2s;
        background: #5b83bf;
    }

    .dot:nth-child(3) {
        animation-delay: 0.3s;
        background: #d8d9db;
    }

    .dot:nth-child(4) {
        animation-delay: 0.4s;
        background: #bd65c9;
    }

    .dot:nth-child(5) {
        animation-delay: 0.5s;
        background: #920b9b;
    }

@-moz-keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

@-o-keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slide {
    0% {
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}



