/* Fix for datatable */
.datatable-filters .filter {
    display: none;
}

/* Custom Dropdown */
.default-dropdown {
    display: none;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    min-width: 150px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.custom-dropdown .options-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #dadada;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    display: none;
    background-color: #fff;
    z-index: 1;
}

.custom-dropdown .selected-value {
    padding-right: 30px;
    line-height: 1em;
    padding-bottom: 8px;
    background-color: transparent;
    border-bottom: solid 1px #fff;
    position: relative;
    color: #fff;
}

.custom-dropdown .selected-value::after {
    content: '';
    position: absolute;
    /* top: 50%; */
    top: -4px;
    right: 0px;
    /* transform: translateY(-50%); */
    background-image: url('/wp-content/uploads/2023/02/down-chevron.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 24px;
    height: 24px;
}

/* .custom-dropdown .selected-value.expanded::after {
    transform: translateY(-50%) rotate(180deg);
} */

.custom-dropdown .custom-option {
    padding: 0 0.3em;
    background-color: #fff;
    font-weight: 400;
}

.custom-dropdown .selected {
    background-color: #f1f1f1;
}
