.sellingpoints-combo {
    position: relative;
    max-width: 500px;
}

.sellingpoints-point-name {
    width: 100%;
    box-sizing: border-box;
}

.sellingpoints-point-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    background: white;

    border: 1px solid #ccc;

    max-height: 300px;
    overflow-y: auto;

    z-index: 10000;
}

.sellingpoints-point-result {
    display: block;

    width: 100%;

    padding: 8px 10px;

    border: 0;
    border-bottom: 1px solid #eee;

    background: white;

    text-align: left;

    cursor: pointer;
    color: black;
}

.sellingpoints-point-result:hover {
    background: #f2f2f2;
    color: black;
}

.sellingpoints-point-none {
    padding: 8px 10px;
}


.sellingpoints-point-combo {
    position: relative;
    display: inline-block;
    width: 300px;
    margin-left: 5px;
}

.sellingpoints-point-search {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    padding: 0 12px;
    border: 1px solid #ccd2dc;
    background: white;
    font: inherit;
}

.sellingpoints-point-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1000;

    background: white;
    border: 1px solid #ccd2dc;
    max-height: 300px;
    overflow-y: auto;
}

.sellingpoints-point-result {
    display: block;
    width: 100%;
    border: 0;
    background: white;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
}

.sellingpoints-point-result:hover {
    background: #f2f4f7;
}