.dropdown-checkbox-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 1.5rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.dropdouwn-checkbox-container {
    position: relative;
    height: 2rem;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.dropdown-checkbox-text {
    margin-left: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    z-index: 1;
    box-sizing: border-box;
    border-left : 4px solid white;
}

.checked {
    border-left: 4px solid rgb(86, 128, 86);
    font-weight: bold;
}

.dropdown-menu-checkbox {
    width: 300px;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}