﻿.hidden {
    display: none;    
}

#myDiv {
    display: none;    
}

#loader {
    position: fixed;
    left: 50%;
    top: 500px;
    z-index: 9999;
    opacity: 1;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#oldloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 1;
    background: url('../images/pageload.gif') 50% 50% no-repeat;
}  

.nfheader {
    background-color:royalblue;
}


.nffooter {
    background-color: royalblue;
}

.nftitle {
    color: white;   
}


.navbar-dark .navbar-nav .nav-link {
    color: white;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}
.select.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}
.textarea.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;

}
.e-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}
.nf-title {
    color:#000000;
}
.nf-info {
    /*white-space: nowrap;*/
    text-overflow: ellipsis;
    overflow: hidden;
    /*display: inherit;*/
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.nf-table
{
    color:black;
    background-color:orange;
}

.NfErrorContainer{
    background-color: aliceblue;
    border: 1px solid darkblue;
    padding: 10px;
}
.NfStackTrace{
    display:none;
    margin-top: 10px;
}
.NfError{
    cursor:default;
    user-select:none;
}