/* SELECTIZE */
.selectize-input {
    /*height:30px;*/
    min-height:32px;
    min-width:100px;
    /*background-color: inherit;*/
    background-color: white;
    font-color: black;
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 6px 6px;

}
.selectize-input.focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}
.selectize-input.full {
    /*background-color: inherit;*/
    font-color: black;
}

.selectize-dropdown {
    z-index: 9999;
}

.selectize-control.multi .selectize-input.has-items {
    padding: 3px 3px 3px;
}

.selectize-control.multi  .selectize-input {
    height: auto !important;
}
.selectize-control  .selectize-input {
    height: auto !important;
}

/* DROPDOWN (filtre principal réduit) */
.dropdown-content {
    opacity: 0;
    pointer-events: none;
    touch-action: none;
    transition: .2s ease;
    transform: translateY(20px);
}

.dropdown-on-hover:hover .dropdown-content,
.dropdown-on-hover:focus .dropdown-content,
.dropdown-on-hover:active .dropdown-content,
.dropdown-on-click.open .dropdown-content {
    opacity: 1;
    touch-action: auto;
    pointer-events: auto;
    transition: .2s ease;
    transform: translateY(0px);
}

.selectize-control.plugin-remove_button .remove-single {
    /*color:red;*/
    top:6px;
    right:20px;
}