.ms-wrap {
    width: auto;
    display: inline-block;
    font-size: 14px;
    color: #222;
    position: relative;
}

.ms-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 5px;
    border: 1px solid #597183;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    user-select: none;
}

.ms-trigger:focus {
    border-color: blue;
    border-style: outset double;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
}

.ms-disabled .ms-trigger {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.ms-label {
    font-size: 13px;
}

.ms-arrow {
    transform: scale(2, 1.25);
    font-size: 10px;
    font-weight: bold;
}

.ms-dropdown {
    display: none;
    position: absolute;
    min-width: 100%;
    width: max-content;
    background: #fff;
    border: 1px solid #597183;
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}

.ms-dropdown.open {
    display: block;
}

.ms-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 7px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}

.ms-item:hover {
    background: #f5f5f5;
}

.ms-item.tous {
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.ms-box {
    width: 15px;
    height: 15px;
    border: 1px solid black;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-box.checked {
    background: #0075FF;
    border-color: #0075FF;
}