.root {
    color:rgba(0, 0, 0, 0.87);
    background: #e0e0e0;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; */
    margin: 3px;
    margin-left: 2px;
    margin-right: 2px;
    position: relative;
}

.rootSpacing {
    margin-left: 6px;
    margin-right: 6px;
}

.rootMinimal {
    color:rgba(0, 0, 0, 0.87);
    background: #e0e0e0;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; */
    margin: 3px;
    margin-left: 2px;
    margin-right: 2px;
    position: relative;
}

.clickable:hover {
    background: rgb(197, 197, 197);
    cursor: pointer;
}

.text {
    display:flex;
    align-items: center;
    user-select: none;
    padding-left: 14px;
    padding-right: 12px;
    font-size: 16px;
}

.textChecked {
    padding-left: 14px;
}

.textSmall {
    display: flex;
    align-items: center;
    user-select: none;
    padding-left: 5px;
    padding-right: 2px;
    font-size: 14px;
}

.deleteIcon {
    margin-right: 5px;
    fill: rgb(0,0,0,.5);
    cursor: pointer;
    /* padding: 5px; */
    position: relative;
    top: -1px;
}

.checkedIcon {
    margin-left: 3px;
    fill: rgb(255,255,255,1);
    cursor: pointer;
    position: absolute;
    top: 0px;
    left: -12px;
}

.checkedIconCircle {
    background-color: rgb(0,150,0,1);
    border-radius: 50%;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.deleteIcon:hover {
    fill: rgb(0,0,0,0.85);
}

.dragChipRoot {
    display:inline-block;
    background: transparent;
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    background: #e0e0e0;
    border-radius: 5px;
    /* transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; */
}

.highlightedNormal {
    background: #e0e0e0;
    /* box-shadow: 1px 1px 4px #666; */
}

.highlightedGood {
    background: #efe;
    /* box-shadow: 1px 1px 4px #666; */
}

.highlightedDrop {
    background: #74C2E1;
    border-color: #74C2E1;
}

.highlightedWarning {
    background: #fee;
    /* box-shadow: 1px 1px 4px #666; */
}