.dropdown-custom {
    position: relative;
    max-width:250px;
    font-family: Arial, sans-serif;
    overflow: visible;
    height: 50px;
}

.dropdown-custom:has(.disabled-selector)
{
    /* This is a simple way to make the dropdown look disabled */
    opacity:0.3;
}

.select-box {
    border-radius: .375rem;
    cursor: pointer;
    /*width: 200px;*/
    width:auto;
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #fff;
}

.select-box:after
{
    border: none!important;
    content: "\e92e";
    font-family: Feather;
    height: auto;
    float:right;
    width: auto;
}

.options-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x:visible;
    width:200px;
    background-color:white;
    padding: 8px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 8px;
    margin-top: 8px;
    position:absolute;
    z-index: 999;
}

.option-group-selector
{
    border: none;
    background-color: white;
    display:block;
    width:100%;
    clear:both;
    text-decoration: underline;
    text-align:left;
    padding-left:0;
    font-size: .8rem;
}

.option-group-name
{
    float:left;
    margin-bottom:0px;
    font-size:.8rem;
}

.option.hide{
    display:none;
}

.option-group
{
    padding-top:12px;
}

.option-group-items
{
    clear:both;

}
div.option-group:has(.option.show) {
    display:block;
}
div.option-group {
    display:none;
}

.search-box {
    display:none;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.search-box:focus{
    outline: none;

}

.option {
    display: flex;
    align-items: center;
    margin: 5px 0;

}
.label{
    min-width:60px;
    display: inline-block;
    line-height: 1.2rem;
    padding-top: 3px;
    padding-bottom: 3px;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.checkbox {
    margin-right: 5px;
}

input[type="checkbox"]
{
    display: none;
}
input[type="checkbox"] +label::before
{
    content: " ";
    height: 1.2rem;
    width: .1rem;


    margin-right: 8px;
    display: block;
    float: left;
}

input.multi-select[type="checkbox"] +label::before
{
    content: " ";
    height: 1.2rem;
    width: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    margin-right: 8px;
    display: block;
    float: left;
    line-height: 1.2rem;
    text-align: center;
}

input.multi-select[type="checkbox"]:checked + label::before {
    content: "\2713";
}

.selected {
    margin-top: 10px;
    font-size: 14px;
}

.selected-options {
    display: inline-block;
    background-color:white;
    float: left;
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}