.searchbox-container {
    position: relative;
}

.selectionBox {
    background-color: #fff;
    font-size: 1.5em;
    color: #777;
    border: 1px solid rgba(0,0,0,0.2);
    max-height: 9em;
    overflow-y: auto;
}

.selectionBox.bottomDrawer {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    border-bottom-left-radius: 0.3em;
    border-bottom-right-radius: 0.3em;
    border-top: 0px;
}

.selectionBox.topDrawer {
    border-top-left-radius: 0.3em;
    border-top-right-radius: 0.3em;
    border-bottom: 0px;
}

.selectionBox div {
    padding: 0.3em;
    color: #888;
    cursor: pointer;
}

/*.selectionBox div:hover {
    background-color: #ddd;
}*/

.selectionBox div.selected {
    background-color: #aaa;
    color: #555;
    cursor: default;
}