@charset "UTF-8";

.progress-backdrop {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .65);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

.progress-backdrop.is-transparent {
    background-color: rgba(0, 0, 0, 0);
}

.progress-modal {
    width: 40%;
    height: auto;
    background-color: #fff;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-backdrop.is-transparent .progress-modal {
    border: 0 none;
    box-shadow: 1px 2px 3px rgba(180,180,180,0.8);
}
