nav:first-child {
    background-color: #117a8b !important;
    color: white;
    border: none;
}

.custom-autocomplete-select i {
    position: absolute;
    right: 4%;
    top: 11px;
    color: #777;
}

.custom-autocomplete-select.show .custom-autocomplete-select-list {
    opacity: unset;
    visibility: visible;
}

.custom-autocomplete-select.show .custom-autocomplete-select-backdrop {
    display: block;
}

.custom-autocomplete-select-list {
    position: absolute;
    z-index: 500;
    width: 100%;
    max-height: 330px;
    left: 0;
    top: calc(100%);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    background-color: white;
    box-shadow: inset 0 0 0.5px 1px hsl(0deg 0% 100% / 8%),
        0 0.9px 1.5px rgb(0 0 0 / 3%), 0 3.1px 5.5px rgb(0 0 0 / 8%),
        0 14px 25px rgb(0 0 0 / 12%);
    border-radius: 0.25em;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0s 0.3s,
        -webkit-transform 0.3s var(cubic-bezier(0.55, 0.055, 0.675, 0.19));
    transition: opacity 0.3s, visibility 0s 0.3s,
        transform 0.3s var(cubic-bezier(0.55, 0.055, 0.675, 0.19));
    transition: opacity 0.3s, visibility 0s 0.3s,
        transform 0.3s var(cubic-bezier(0.55, 0.055, 0.675, 0.19)),
        -webkit-transform 0.3s var(cubic-bezier(0.55, 0.055, 0.675, 0.19));
    overflow: hidden;
}

.custom-autocomplete-select-backdrop {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    background: transparent;
    z-index: 499;
    display: none;
}

.custom-autocomplete-select-ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    max-height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.custom-autocomplete-select-ul li {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    font-size: 15px;
    color: #777;
    font-family: unset;
}

.custom-autocomplete-select-ul li:hover {
    background: rgba(238, 238, 238, 0.623);
    cursor: pointer;
}

.custom-autocomplete-select-ul li.active {
    background: rgb(214 237 250 / 62%);
    font-weight: bold;
    color: #115a84;
}

.custom-autocomplete-select input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black;
    opacity: 1;
}

.cas-hidden-input {
    height: 0;
    border: none;
    font-size: 0;
    position: absolute;
}

/* Track */
.dw-scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.dw-scrollbar::-webkit-scrollbar-thumb {
    background: transparent;
}

.dw-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.dw-scrollbar::-webkit-scrollbar-thumb {
    background: #adadad;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.w-48 {
    width: 48%;
}

@media only screen and (max-width: 768px) {
    .table thead th:not(:first-child) {
        min-width: 100px;
    }
}