.kobler-filter-select {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    flex: 1;
}
.kobler-filter-select--block {
    display: block;
    width: 100%;
}
.kobler-filter-select__native {
    display: none;
}
.form-control-search{
    height: 40px;
    border: 1.5px solid var(--bs-black);
    border-radius: 6px;
    padding-left: 35px;   
    font-size: 14px;  
}
.form-control-search::placeholder{
    font-size: 14px;
    color: var(--bs-black);
}
.form-select-filter {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid var(--bs-black);
    border-radius: 6px;
    background-color: transparent;
    background-image: none;
    color: #0b2238;
    font-size: 14px;
    user-select: none;
}
.form-select-filter:focus {
    outline: none;
    box-shadow: none;
    border-color: inherit;
}
.kobler-filter-select--block .form-select-filter {
    display: flex;
    width: 100%;
}
.kobler-filter-select__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.kobler-filter-select--block .kobler-filter-select__label {
    flex: 1 1 auto;
    text-align: left;
}
.kobler-filter-select__indicator {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}
.kobler-filter-select__indicator > * {
    grid-area: 1 / 1;
}
.kobler-filter-select__clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--blue);
}
.kobler-filter-select__clear::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--bs-white);
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") no-repeat center / contain;
}
.kobler-filter-select__clear:hover {
    background-color: var(--red);
}
.kobler-filter-select.has-value .kobler-filter-select__clear {
    display: flex;
}
.kobler-filter-select__arrow {
    width: 16px;
    height: 12px;
    background-color: var(--bs-black);
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2378829D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2378829D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat center / contain;
    transition: transform .2s ease;
}
.kobler-filter-select.is-open .kobler-filter-select__arrow {
    transform: rotate(180deg);
}
.kobler-filter-select.has-value .kobler-filter-select__arrow {
    display: none;
}
.kobler-filter-select.has-value .form-select-filter {
    border-width: 2px;
    border-color: var(--blue);
}
.kobler-filter-select__panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    min-width: 200px;
    width: max-content;
    max-width: 280px;
    margin-top: 4px;
    background-color: var(--bs-body-bg, #fff);
    border-radius: 8px;
    box-shadow: var(--bs-box-shadow, 0 8px 24px rgba(0, 0, 0, .12));
    overflow: hidden;
}
.kobler-filter-select.is-open .kobler-filter-select__panel {
    display: block;
}
.kobler-filter-select--block .kobler-filter-select__panel {
    min-width: 0;
    width: 100%;
    max-width: none;
    margin-top: 6px;
}
.kobler-filter-select__options {
    max-height: 250px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.kobler-filter-select__options::-webkit-scrollbar {
    width: 4px;
}
.kobler-filter-select__options::-webkit-scrollbar-track {
    background: transparent;
}
.kobler-filter-select__options::-webkit-scrollbar-thumb {
    background: var(--bs-gray-500);
    border-radius: 999px;
}
.kobler-filter-select__option {
    position: relative;
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--bs-gray-800);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kobler-filter-select__option.is-active,
.kobler-filter-select__option.is-selected {
    background-color: var(--bs-black);
    color: var(--bs-white);
}
.kobler-filter-select__option.is-selected {
    padding-right: 32px;
}
.kobler-filter-select__option.is-selected::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: .75rem;
    height: .75rem;
    transform: translateY(-50%);
    background-color: var(--bs-white);
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3e%3cpath d='M4.89557 6.49823L2.79487 4.26513C2.26967 3.70683 1.38251 3.70683 0.857309 4.26513C0.375593 4.77721 0.375593 5.57574 0.857309 6.08781L4.74989 10.2257C5.14476 10.6455 5.81176 10.6455 6.20663 10.2257L13.1427 2.85252C13.6244 2.34044 13.6244 1.54191 13.1427 1.02984C12.6175 0.471537 11.7303 0.471536 11.2051 1.02984L6.06096 6.49823C5.74506 6.83403 5.21146 6.83403 4.89557 6.49823Z'/%3e%3c/svg%3e") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3e%3cpath d='M4.89557 6.49823L2.79487 4.26513C2.26967 3.70683 1.38251 3.70683 0.857309 4.26513C0.375593 4.77721 0.375593 5.57574 0.857309 6.08781L4.74989 10.2257C5.14476 10.6455 5.81176 10.6455 6.20663 10.2257L13.1427 2.85252C13.6244 2.34044 13.6244 1.54191 13.1427 1.02984C12.6175 0.471537 11.7303 0.471536 11.2051 1.02984L6.06096 6.49823C5.74506 6.83403 5.21146 6.83403 4.89557 6.49823Z'/%3e%3c/svg%3e") no-repeat center / contain;
}
@media (max-width: 991px) {
    .kobler-filter-select__option {
        font-size: 15px;
    }
    .form-control-search,
    .form-control-search::placeholder{
        font-size: 1rem;
    }
}
