/** Multi Select **/
.multi-selector {
    width: max-content;
    position: relative;
}

.select-field {
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.select-field,
.task,
.list {
    background-color: white;
    width: 100%;
    z-index: 10;
}

.list {
    border: 1px solid #ced4da;
    display: none;
    max-height: 200px;
    overflow-y: scroll;
    width: 100%;
    position: absolute;
}

/* List Scrollbar styles */
/* width */
.list::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.list::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.task {
    font-size: 14px;
    color: black;
    display: block;
    padding: 0.5rem;
}

.task:hover {
    background-color: #f5f5f5;
}

.select-field>input {
    font-size: 16px;
    outline: none;
    border: none;
    margin: 0.35rem 0rem 0.35rem 0.35rem;
}

.down-arrow {
    font-size: 20px;
    color: black;
    display: inline-block;
    cursor: pointer;
    transition: .2s linear;
}

.select-option {
    margin-right: 0.3rem;
}

.show {
    display: block;
}

.rotate180 {
    transform: rotate(180deg);
}