.dropmenu {
	position: relative;
	display: inline-block;
}

.dropmenu .dropmenu-input {
    cursor: pointer;
    width: 100%;
}

.dropmenu .dropmenu-drop-pane {
    position: absolute;
    min-width: 100%;
    box-sizing: border-box !important;
    background-color: white;
    z-index: 10;
    display: none;
}

.dropmenu .dropmenu-option-pane {
    width: 100%;
    box-sizing: border-box !important;
    border: 1px solid black;
}

.dropmenu .dropmenu-option {
    cursor: pointer;
    white-space: nowrap;
}

.dropmenu .dropmenu-option:hover {
    background-color: lightgrey;
}