:root {
    --border: #eae5e5;
}
.lite-field.form-field.table-wrapper{
    z-index: 100 !important;
}

.table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    height: 100%;
    white-space: nowrap;
    border-radius: 7px;
    border: 1px var(--border) solid !important;
}

.table-row {
    /* display: flex;
    flex-wrap: nowrap; */
    min-height: 50px;
    height: 45px;
    animation: fade 3s linear both;
    animation-timeline: view();
    transition: .5s;
}

.header-row {
    height: 45px;
}
.table-row.grid{
    min-height: 30px !important;
    display: grid !important;
}

.table-row.grid.header-row{
    min-height: 30px !important;
}
/* .header-row .table-cell {
    transition: .6s;
    cursor: pointer;
    position: relative;
    resize: horizontal;
    overflow: auto;
} */

/* .resizable::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: #ff0;
    cursor: no-resize;
} */

.header-row .table-cell:hover {
    color: #9c9b9b;
}

.material-symbols-outlined {
    font-size: 13px;
}

.table-body {
    width: 100%;
    height: 460px;
    overflow-x: hidden;
    overflow-y: auto;
}

.table-cell {
    font-size: 13px;
    flex: 1;
    padding: 0 8px;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px var(--border) solid !important;
    border-right: 1px var(--border) solid !important;
}

.table-cell.empty-row{
    border: none !important;
    display: none !important;
}

.table-cell.flex {
    display: flex !important;
}

.table-cell:nth-child(1):not(.is-grid) {
    font-weight: 900 !important;
    min-width: 50px;
    max-width: 80px !important;
}

.table-cell.figure {
    text-align: right !important;
    font-weight: 600;
}

.table-row.table-row.total-row,
.table-cell.opening,
.table-cell.closing {
    font-weight: 800;
    background-color: #efefef !important;
    font-size: 13.5px;
}

.header-cell {
    font-weight: bold;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateX(-4%);
    }

    15% {
        opacity: .7;
        transform: translateX(-0%);
    }

    20% {
        opacity: 1;

    }
}

.table-field,
.table-field:focus {
    font-size: 13px !important;
    border: none !important;
    outline: none !important;
}

.table-row .lite-selector,
.table-row input.form-control[type="number"],
.table-row input.form-control[type="text"]:focus,
.table-row input.form-control[type="number"]:focus {
    border-color: transparent !important;
    border: none !important;
    outline: none !important;

}