.no-break {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loader-wheel {
    animation: spin 0.6s infinite linear;
    border: 5px solid #0866C6;
    border-left: 5px solid #fff0;
    /* border-right: 5px solid #0866C6; */
    border-radius: 100%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
    z-index: 999999;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    /* width: 100px; */
    /* Need a specific value to work */
}

tr.custom_loading {
    background-image: linear-gradient(to right, transparent 50%, rgba(0, 0, 0, .05) 50%);
    background-size: 200% 100%;
    animation: custom_loading 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

tr.custom_loading td {
    opacity: .45;
    pointer-events: none;
}

tr.tbl_row_error td {
    background-color: #dc354610;
}

div.custom_loading2 {
    background-image: linear-gradient(to right, transparent 50%, rgba(0, 0, 0, .05) 50%);
    background-size: 200% 100%;
    animation: custom_loading2 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

div.custom_loading2 {
    opacity: .45;
    pointer-events: none;
}

@keyframes custom_loading2 {
    0% {
        background-position: 0;
    }
    50% {
        background-position: -30%;
    }
    80% {
        background-position: -100%;
    }
    100% {
        background-position: -200%;
    }
}

@keyframes custom_loading {
    0% {
        background-position: 0;
    }
    50% {
        background-position: -30%;
    }
    80% {
        background-position: -100%;
    }
    100% {
        background-position: -200%;
    }
}

.error-color {
    background-color:#ffdacf !important;
}

.error-bg {
    background-color:#ffdacf !important;
}
