﻿/*
    see modal-update-progress.js for instructions
*/

.modal-dialog .modal-update-progress {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(230, 230, 230, 0.7);
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    display: none;
}

    .modal-dialog .modal-update-progress.show-update-progress {
        display: flex;
    }

    .modal-dialog .modal-update-progress:before {
        content: url(../images/progress_circle_green.gif);
    }
