﻿.multiple-selector {
    display: flex;
    justify-content:space-between;
}

.selectable-ul {
    height: 200px;
    overflow-y: auto;
    list-style-type: none;
    width: 170px;
    padding: 0;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
}

    .selectable-ul li {
        cursor: pointer;
        padding: 2px 10px;
        font-size: 14px;
    }

        .selectable-ul li:hover {
            color:#fff;
            background-color: #000
        }

.multiple-selector-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px
}

    .multiple-selector-buttons button {
        margin: 5px;
        border: none;
        padding:0.5rem;
        border-radius:50%;
    }

        .multiple-selector-buttons button:hover {
            color: #fff;
            background-color: #000
        }

.multiple-selector label{
    font-size:0.875rem;
}

.multiple-selector i {
    font-size: 1.25rem;
}
