#progressDiv {
	position: fixed;
    top:0; right:0; bottom:0; left:0;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 2;
}

#progressLogArea ,
#progressErrorArea {
	background-color: rgba(0, 0, 0, 0.7);
	width:55%;
    display:block;
    margin-left: 5%;
    margin-top: 5%;
    border:none;
    resize: none;
    overflow:hidden;
    border-radius: 10px;
    box-shadow: 5px 5px 20px 0px rgb(25, 25, 25);
    padding-left: 10px;
}

#progressLogArea:hover ,
#progressErrorArea:hover {
	overflow:visible;
}

#progressLogArea{
    height:80%;
    margin-top: 5%;
    color:#a5b0b5;
}

#progressLogArea.withError{
    height:65%;
    margin-top: 5%;
    color:#a5b0b5;
}

#progressErrorArea{
    height:15%;
    margin-top: 1%;
    color:#aec4f9;
}

#progressBtnClose{
    position: fixed;
    right: 10%;
    bottom: 10%;
}

#progressCounterArea{
    text-align: right;
    position: fixed;
    /* top: 10%; */
    right: 10%;
    bottom: 25%;
    /* left: 0; */
    float: right;
    
    color: #298cab; /* color: #36cfff; */
    width: 20%;
    height: 20%;
    transition: opacity 0.5s linear;
}

#progressBtnClose {
    width: 100px;
    border-radius: 10px;
    /* border-color: #fdfdfd; */
    /* border: 2px solid #9ef1f1; */
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    /* float: right; */
    margin-top: 4px;
    background-color: #cfdbde;
    font-size: 1.2rem;
}