@-moz-keyframes progress-anim {
    0% {
        margin-left: 0;
        width: 0;
    }
    50% {
        margin-left: 0;
        width: 100%;
    }
    100% {
        margin-left: 100%;
        width: 0%;
    }
}

@-webkit-keyframes progress-anim {
    0% {
        margin-left: 0;
        width: 0;
    }
    50% {
        margin-left: 0;
        width: 100%;
    }
    100% {
        margin-left: 100%;
        width: 0%;
    }
}

@-ms-keyframes progress-anim {
    0% {
        margin-left: 0;
        width: 0;
    }
    50% {
        margin-left: 0;
        width: 100%;
    }
    100% {
        margin-left: 100%;
        width: 0%;
    }
}

@-o-keyframes progress-anim {
    0% {
        margin-left: 0;
        width: 0;
    }
    50% {
        margin-left: 0;
        width: 100%;
    }
    100% {
        margin-left: 100%;
        width: 0%;
    }
}

@keyframes progress-anim {
    0% {
        margin-left: 0;
        width: 0;
    }
    50% {
        margin-left: 0;
        width: 100%;
    }
    100% {
        margin-left: 100%;
        width: 0%;
    }
}

@-moz-keyframes progress-container-anim {
    0% {
        height: 0;
        /*display: none;*/
    }
    100% {
        height: 30px;
        /*display: block;*/
    }
}

@-webkit-keyframes progress-container-anim {
    0% {
        height: 0;
        /*display: none;*/
    }
    100% {
        height: 30px;
        /*display: block;*/
    }
}

@-ms-keyframes progress-container-anim {
    0% {
        height: 0;
        /*display: none;*/
    }
    100% {
        height: 30px;
        /*display: block;*/
    }
}

@-o-keyframes progress-container-anim {
    0% {
        height: 0;
        /*display: none;*/
    }
    100% {
        height: 30px;
        /*display: block;*/
    }
}

@keyframes progress-container-anim {
    0% {
        height: 0;
        /*display: none;*/
    }
    100% {
        height: 30px;
        /*display: block;*/
    }
}

@-moz-keyframes progress-container-anim-out {
    0% {
        height: 30px;
        display: block;
    }
    99.9% {
        display: none;
    }
    100% {
        height: 0;
    }
}

@-webkit-keyframes progress-container-anim-out {
   0% {
        height: 30px;
        display: block;
    }
    99.9% {
        display: none;
    }
    100% {
        height: 0;
    }
}

@-ms-keyframes progress-container-anim-out {
    0% {
        height: 30px;
        display: block;
    }
    99.9% {
        display: none;
    }
    100% {
        height: 0;
    }
}

@-o-keyframes progress-container-anim-out {
    0% {
        height: 30px;
        display: block;
    }
    99.9% {
        display: none;
    }
    100% {
        height: 0;
    }
}

@keyframes progress-container-anim-out {
    0% {
        height: 30px;
        display: block;
    }
    99.9% {
        display: none;
    }
    100% {
        height: 0;
    }
}