.multiselect {
    width: 100%;
    min-width: 200px;
    position: relative;
    padding: 8px;
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
    border-radius: 2px;
}

.multiselect .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.multiselect .dropdown-menu {
    width: 100%;
    padding: 0;
    border-radius: 0;
    border-color: #dee2e6;
    max-height: 250px;
    overflow-y: scroll;
}

.multiselect .dropdown-menu label {
    display: flex;
    gap: .5rem;
    margin-bottom: 0;
    padding: .625rem;
    transition: all .3s ease-in-out;
    font-weight: 400;
}

.multiselect .dropdown-menu label:hover {
    background: rgba(15, 98, 254, .1);
    color: rgba(15, 98, 254, 1);
}

.multiselect .dropdown-menu label input[type='checkbox'] {
    border-color: #dee2e6;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.multiselect .dropdown-menu label:hover input[type='checkbox'] {
    border-color: rgba(15, 98, 254, 1);

}

.multiselect .dropdown-menu label input[type='checkbox']:checked {
    background: rgba(15, 98, 254, 1);
    border-color: rgba(15, 98, 254, 1);
}

.multiselect .dropdown-menu label input[type='checkbox']:checked:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 1px;
    display: inline-block;
    transform: rotate(45deg);
    height: 12px;
    width: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;

}

.multiselect .dropdown-menu input {
    width: 100%;
}

.multiselect .dropdown-menu label input {
    border: 1px solid #d9d9d9;
    width: var(--size);
    height: var(--size);
    --size: 20px;
}
