
/**********************/
/* Прогресс операции  */
/**********************/

.progress-layer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow: hidden;

    /*display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;*/
}

.progress-layer-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    opacity: 0.8;
}

.progress-layer-block {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 300px;
    padding: 20px;
    background: white;
    text-align: center;
    font-size: 15px;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.progress-layer-text {
    margin-top: 10px;
}

.progress-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    vertical-align: text-bottom;
    background: url("/images/ajax-loader-small.gif") no-repeat;
}