.entValid {
    border-color: #ff5e5e !important;
}

.spinner-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner-container .dimBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    filter: alpha(opacity=50);
}
.spinner {
    animation: spin 2s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px dotted #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: spin 2s linear infinite;
}
.highlight {
    background-color: yellow;
}
.readonly-color {
    background-color: var(--bs-tertiary-bg) !important;
}