.root {
    border: 1px solid #ccc;
    border-color: #d9d9d9 #ccc #b3b3b3;
    height: 27px;
    border-radius: 4px;
    overflow:hidden;
    position: relative;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 100%;
}

.container {
    position:relative;
}

.options {
    margin-top: 5px;
    overflow: auto;
    position: absolute;
    top: 26px;
    border: 1px solid #ccc;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 100%;
    background: #fff;
    z-index: 10;
    max-height: 200px;
}

.option {
    padding: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
}

.selectedOption {
    padding: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    cursor: pointer;
    background: #eee;
}

.option:hover {
    background: #eee;
}

.input {
    outline:none;
    border: none;
    margin-left: 5px;
    width: 5px;
    position: relative;
    top: 0px;
    background: transparent;
    color:transparent;
    margin-bottom: 10px;
}

.placeholder {
    position: absolute;
    color: #ccc;
    top: 7px;
    left: 10px;
    height: 31px;
    z-index: -1;
}

.singleItem {
    position: relative;
    top: 0px;
    left: 8px;
    user-select: none;
    font-size: 16px;
}

.icon {
    position: absolute;
    right: 10px;
    top: 3px;
}

.selectedItems {
    
}

.validationContainer {
    margin-top: 0px;
    margin-bottom: 5px;
    height: 20px;
    color: red;
    font-size: 14px;
    display: none
}

.chip {
    height: 21px;
}