/* ============== */
/* CUSTOM DATALIST SEARCH */
/* ============== */
.app-datalist-search-input:focus {
    outline: none !important;
    box-shadow: none;
    border-color: #bdbdbd;
    border-bottom: 0;
}
.app-datalist-search-content {
    position: relative;
}
.app-datalist-search-data {
    position: absolute;
    background-color: white;
    border-radius: 0 0 5px 5px;
    border: solid 1px #bdbdbd;
    border-top: none;
    font-family: sans-serif;
    width: 100%;
    max-height: 20rem;
    overflow-y: auto;
    overflow-x: auto;
    z-index: 10;
}
.app-datalist-search-data::-webkit-scrollbar-track {
    background-color: white;
}
.app-datalist-search-data::-webkit-scrollbar {
    width: 0px;
    height: 12px;
    background: var(--clientPrimaryColor);
}
.app-datalist-search-data::-webkit-scrollbar-thumb {
    background: var(--clientPrimaryColor);
    border-radius: 15px;
}
.app-datalist-search-data option {
    background-color: white;
    padding: 6px 2px;
    color: rgb(0, 0, 0);
    margin-bottom: 1px;
    font-size: 1rem;
    padding-left: 10px;
    cursor: pointer;
}
.app-datalist-search-data option:hover,
.active {
    background-color: rgb(232, 232, 232);
}
/* ============== */
/* CUSTOM DATALIST CHECKBOX */
/* ============== */
.app-datalist-content{
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 16px;
    z-index: 10;
}
.app-datalist-content ul{
    background-color: white;
    list-style: none;
    border-top: none;
    padding: 0;
    transition: all .2s linear;
    margin: 0;
    min-height: 0px;
    max-height: 0px;
    overflow-y: auto;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}
.app-datalist-content ul::-webkit-scrollbar {
    width: 5px;
    position: absolute;
}
.app-datalist-content ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 9px;
}
.app-datalist-content ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 9px;
}
.app-datalist-content ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.app-datalist-content ul li{
    color: #4f4f4f;
    padding: 5px 16px;
    font-size: 1rem;
    height: 38px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
.app-datalist-content ul li:hover{
    background-color: #f3f3f3;
}
/* ============== */
/* CUSTOM SELECT */
/* ============== */
.app-filtered-select{
    width: 100%;
    position: absolute;
    z-index: 99;
}
.app-filtered-select-list{
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
    height: 0px;
    max-height: 0px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    background-color: white;
    border-radius: 5px;
    transition: all .18s linear;
}
.app-filtered-select-item{
    padding: 1px 0 1px 0;
    user-select: none;
}
.app-filtered-select-button{
    width: 100%;
    background-color: transparent;
    padding: 9px 12px 9px 12px;
    border: none;
    text-align: start;
    border-radius: 7px;
    transition: all .15s linear;
    white-space: nowrap;
}
.app-filtered-select-button:hover{
    font-weight: 500;
    background-color: #f3f3f3;
}
