.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000e0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    display:none;
}
.popup-container {
    width: 900px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px -10px;
    position: absolute;
    margin: auto;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.popup-header {
    padding: 20px;
    border-bottom: solid 1px #0000001f;
}
.popup-body {
    padding: 20px;
    max-height: 500px;
    overflow: auto;
}
.popup-header i {
    position: absolute;
    right: -16px;
    top: -16px;
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
}
.booking-box h6 {font-size: 20px;color: var(--primary);margin-bottom: 15px;}
.booking-box p {
    display: flex;
    margin: 10px 0px;
    background-color: #00000005;
    padding: 5px 10px;
    border-radius: 5px;
}
.booking-box p b {
    min-width: 140px;
}
.booking-box p  span {
    width: 80%;
    text-align: right;
    overflow: hidden;
    text-overflow:ellipsis;
}
.booking-box {
    box-shadow: 0px 0px 13px -10px;
    padding: 14px;
    margin: 13px 0px;
}
.booking-box p i {
    color: var(--primary);
    margin-right: 2px;
}
.popup-header h4 {
    margin: 0px;
    display: flex;
    width: 100%;
}
.popup-header h4 span {
    width: 68%;
    display: flex;
}
.popup-header h4 p {
    font-size: 12px;
    width: 50%;
    text-align: right;
    margin-bottom: 0px;
}
.popup-header h4 p label {
    font-size: 14px;
    margin-left: 5px;
}
p.order-date {
    margin-bottom: 0px;
    width: fit-content;
    font-size: 18px;
}
tr.not-found td {
    background-color: #f2edf3;
    padding: 18px 30px;
    text-align: center;
    font-size: 19px;
}
tr.not-found i {
    color: var(--primary);
}
.card-body.tabs{
    display: none;
}
.dt-layout-cell.dt-layout-start label {
    padding-left: 10px;
}
button.dt-paging-button.current, button.dt-paging-button:hover {
    background: var(--primary) !important;
    border-color: #fff !important;
    \: #fff !important;
    border-radius: 10px !important;
}
.dt-search input {
    border-color: var(--primary) !important;
    outline: none !important;
}
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

@media (max-width:900px){
    .popup-container {
        max-width: 90% !important;
    }
    .popup-header h4 {
        display: block;
    }
    .popup-header h4 span {
        column-gap: 20px;
        margin-top: 7px;
    }
    .booking-box p span {
        width: 100% !important;
        overflow: hidden;
        text-overflow:ellipsis;
    }
    .booking-box p {
        font-size: 14px;
    }
}