table.items tr td {
    padding: 4px;
    vertical-align: middle;
}
table {
    overflow-x: auto;
    border-bottom: #eee solid 1px;
}
.table.items input, 
.table.items input:not(.input-transparent):not([type=search]), 
.table.items select, 
.table.items .bootstrap-select .btn-default {
    max-width: 400px;
    min-width: 100px;
    left : 0;
    border-radius: 0;
    border: #ebf5ff solid 1px !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
}
.table.items .item td {
    background-color: #fff;
}
.table.items textarea {
    min-width: 300px;
    height: 35px;
    border-radius: 0;
    padding: 10px;
    border: #ebf5ff solid 1px !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
}
.table.items tbody>tr>td {
    padding: 0px;
}
.table.items thead>tr>th {
    padding: 10px 6px;
    background-color: #eee !important;
    text-align: left;
}
.loader-container {
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    z-index: 9999;
    background-color: rgba(0,0,0,0.3);
}
.op-loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    top: 40%;
    position: relative;
  }

/* Modal */
.mu_loader_container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.mu_loader {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #c7d0dd;
    border-color: #c7d0dd transparent #c7d0dd transparent;
    animation: spin 1.2s linear infinite;
}

.op-modal {
    background: rgba(20, 28, 46, 0.68);
    display: flex;
    overflow: scroll !important;
}

.op-modal .modal-header {
    background: #fff;
    color: rgb(51 65 85);
    font-weight: 500;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.op-modal .modal-header:before, .op-modal .modal-header:after {
    content : "";
    display: none;
}

.op-modal .modal-header .close,
.mu_head .close {
    text-align: center;
    margin-left: auto;
    cursor: pointer;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.03);
    color: #f8f8f8;
    background: rgb(11, 6, 7);
    padding: 0;
    margin: 0;
    font-size: 13px;
    opacity: 0.41;
}

.op-modal .modal-header .close:hover,
.mu_head .close:hover {
    opacity: 0.7;
}

.op-modal .modal-header h5 {
    margin: 0;
    font-size: 16px;
    padding: 14px 5px;
    word-spacing: 2px;
    font-weight: 600;
}

.op-modal .modal-foot {
    background: #fff;
    border-top: #eee solid 1px;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    gap: 15px;
    justify-content: end;
}

.op-modal .modal-content {
    overflow: hidden;
}
.op-modal .modal-dialog.modal-xl {
    max-width: 65%;
}.op-modal .modal-dialog.modal-full {
    max-width: 95%;
}.op-modal .modal-dialog.modal-full, .op-modal .modal-dialog.modal-full .modal-content {
    height: 95%;
}

.op-modal .modal-foot button {
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 15px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.03);
}

.op-modal .modal-foot button:not(.btn) {
    background: #2463eb;
    color: #fff;
    border: #2463eb solid 1px;
}

.op-modal .modal-body {
    background: #fff;
    position: relative;
    display: flex;
    overflow: auto;
}

.op-modal .modal-body form {
    width: 100%;
}

.op-modal .modal-body input:not([type="checkbox"]) {
    height: 40px;
    background-color: #fff;
    box-shadow: 1px 0px 2px #0000;
}

.op-modal .modal-dialog {
    max-width: 700px;
}
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }