.custom-multiselect {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-multiselect .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    min-height: 40px;
}

.custom-multiselect .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    width: 100%;
}

.custom-multiselect .dropdown-menu li {
    list-style: none;
    margin: 0;
}

.custom-multiselect .dropdown-menu label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 30px;
}

.custom-multiselect .dropdown-menu label:hover {
    background-color: #f5f5f5;
}

.custom-multiselect .dropdown-menu input[type="checkbox"] {
    margin-right: 10px;
    min-width: 16px;
}

div.mage-error {
    color: #e02b27;
    font-size: 1.2rem;
    margin-top: 7px;
    display: block !important;
}