.pagination {
    justify-content: end;
}

.dataTables_empty {
    text-align: center;
}

.el-select {
    width: 100%;
}

.el-date-editor.el-input,
.el-date-editor.el-input__inner {
    width: 100%;
}

.el-date-editor .el-input__wrapper, .el-date-editor .el-input__wrapper.is-forcus {
    box-shadow: none!important;
    padding: 0!important;
}

.el-select .el-input__wrapper {
    padding-top: 0.25rem!important;
    padding-bottom: 0.25rem!important;
}
table tbody td {
    vertical-align: middle;
}

.table td:first-child, .table th:first-child, .table tr:first-child {
    padding-left: 5px;
}

.table td:last-child, .table th:last-child, .table tr:last-child {
    padding-right: 5px;
}

table.dataTable>tbody>tr.child ul.dtr-details {
    display: block!important;
}
table.dataTable>tbody>tr.child ul.dtr-details>li {
    display: grid!important;
    grid-template-columns: 1fr 2fr!important;
}
table.dataTable>tbody>tr.child ul.dtr-details>li .dtr-title {
    display: flex!important;
    align-items: center!important;
}
table.dataTable>thead .sorting_desc:after,
table.dataTable>thead .sorting_asc:after {
    background: none;
}
table.dataTable thead > tr > th.sorting:after {
    content: ""!important;
}
table.dataTable thead > tr > th.sorting_asc:after {
    content: "▲"!important;
    opacity: .6!important;
}
table.dataTable thead > tr > th.sorting_desc:after {
    content: "▼"!important;
}


@media (min-width: 768px){
    .d-md-table-footer-group {
        display: table-footer-group!important;
    }
    table.dataTable.nowrap th, table.dataTable.nowrap td {
        white-space: normal!important;
    }
}

.orderSteps {
    display: flex;
    flex-direction: row;
    padding: 0 0.5rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 1rem;
}
.orderSteps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    flex-grow: 1;
    font-size: 75%;
    padding: 0 0.5rem 1rem;
    position: relative;
    font-weight: 600;
}
.orderSteps .step::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--bs-success);
    background: var(--bs-success);
    position: absolute;
    bottom: -9px;
    left: calc(50% - 8px);
    box-shadow: inset 0 0 1px 3px #FFF;
}

.orderSteps .step.current::before {
    box-shadow: inset 0 0 1px 3px var(--bs-success);
    border-color: var(--bs-success);
    background-color: #FFF;
}
.orderSteps .step.current ~ .step {
    color: #a1a5b7;
}
.orderSteps .step.current ~ .step::before {
    background-color: #ddd;
    border-color: #ccc;
}

.orderSteps .step.canceled {
    font-family: "Font Awesome 5 Free";
}

.orderSteps .step.canceled:before {
    content: "\f057";
    font-size: 16px;
    border: none;
    bottom: -5px;
    background: none;
    box-shadow: none;
}

.white-space-normal {
    white-space: normal;
}
