.genericLoadingPopup .loader {
    margin-bottom: 0;
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    border: 0.5rem solid #f3f3f3;
    border-top: 0.5rem solid rgb(110, 112, 117);
    width: 3.75rem;
    height: 3.75rem;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.genericLoadingPopup {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,.8);
}
.genericLoadingPopup > .flex-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}
.genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
    position: relative;
    width: 50vw;
    background-color: #FFF;
    margin: auto;
    border: 1px solid black;
    text-align: center;
    padding: 25px;
    max-height: 80vh;
    overflow-y: auto;
}

.genericLoadingPopup a.closeMeDown {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
@media(max-width: 767px) {
    .genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
        width: 90vw;
    }
}
@media(min-width: 768px) and (max-width: 1199px) {
    .genericLoadingPopup > .flex-inner > .genericLoadingPopupContent {
        width: 80vw;
    }
}

div.nwShowErrorWarningMsgHere {
    border-color: #b1b0b0;
    background-color: #b1b0b0;

    margin-top: 30px;
    border-width: 1px;
    border-radius: 5px;
    color: white;
    line-height: 1;
    padding: 16px;
    padding-bottom: 16px;
    padding-bottom: 15px;
    width: max-content;
    width: fit-content;
    width: 100%;
    text-align: center;

    margin-bottom: 20px;
}