#loadingMask{
    position: absolute;
    top:0px;
    left:0px;
    display: flex;
    width:100%;
    height:100%;
    z-index: 999;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
}

#loadingWindow{
width:80px;
height:80px;
margin-left: auto;
margin-right: auto;
}

.flexCenter{
    justify-content: center;
}

.flexRow{
    display:flex;
    flex-direction: row;
}

.flexRowReverse{
    display:flex;
    flex-direction: row-reverse;
}

.flexColumn{
    display:flex;
    flex-direction: column;
}

.flexColumnReverse{
    display:flex;
    flex-direction: column-reverse;
}

.centerDiv{
    justify-content: center;
}

.marginLeft40{
    margin-left: 40px;
}
.marginRight40{
    margin-right:40px;
}

.marginTop10{
    margin-top:10px;
}

.marginTop20{
    margin-top:20px;
}
.marginTop5{
    margin-top:5px;
}

.ActionBtn{
    width: 80px;
    background-color: var(--greyHover);
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    margin-right: 10px;
}

.invalidIcon{
    fill:red;
}