:root {
    --bs-danger-bg-subtle: rgba(220, 53, 69, 0.1);
    --bs-success-bg-subtle: rgba(25, 135, 84, 0.1);
    --bs-warning-bg-subtle: rgba(255, 193, 7, 0.1);
    --bs-info-bg-subtle: rgba(13, 202, 240, 0.1);
    --bs-primary-bg-subtle: rgba(13, 110, 253, 0.1);
    --bs-secondary-bg-subtle: rgba(108, 117, 125, 0.1);
}

html, body {
    height: 100%;
}

.xaf-firefox {
    /* Duplo scroll no firefox*/
    overflow-y: hidden;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    /*
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
    */

    background-image: url('../images/Logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 110px;
    height: 28px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.dxbl-grid .dxbl-grid-table .dxbl-grid-empty-cell {
    width: 0 !important;
}

.text-white, .white:hover, .btn-active-dark:focus, btn-active-dark:hover, .dxbl-btn-dark {
    color: white !important;
}

.label {
    font-weight: normal;
}

.buttonSmall {
    width: 24px;
    height: 24px;
}

.rounded-100 {
    border-radius: 100% !important;
}

.overflow-x-auto {
    overflow-x: auto;
}

    .overflow-x-auto::-webkit-scrollbar-horizontal {
        height: 5px;
    }

.td-fit {
    width: 1px;
    white-space: nowrap;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-2, .line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.object-fit-cover {
    object-fit: cover;
}

.containerInvoice{
    max-height: 400px;
    overflow-y: auto;
}