﻿.alertPopup {
    position: fixed;
    min-width: 400px;
    min-height: 100px;
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    text-align: center;
    z-index: 99999;
}

.alertMessage {
    min-height: 70px;
    text-align: center;
    padding: 10px;
}

.alertButton {
    bottom: 10px;
    width: 50px;
}

.progressPopup {
    position: absolute;
    min-width: 400px;
    min-height: 100px;
    background-color: white;
    border: 2px solid black;
    border-radius: 5px;
    text-align: center;
    z-index: 99999;
}

.progressMessage {
    text-align: center;
    padding: 10px;
}

.progressOuter {
    width: 100%;
    background-color: grey;
    border: 1px solid black;
}

.progressBar {
    width: 0%;
    height: 30px;
    background-color: #4CAF50;
    line-height: 30px;
}

.progressPercent {
    width: 100%;
    position: relative;
    top: -30px;
    color: white;
    text-align: center;
    height: 30px;
    vertical-align: middle;
    margin-top: 3px;
}
