.add_filter_point {
    display: none;
    float: right;
    color: #81A9C0;
    margin: 0;
    cursor: pointer;
    background-color: #E4E4E4;
    border-radius: 3px;
    padding: 0 5px 0 5px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.add_filter_point:hover {
    background-color: #D7D7D7;
}

.selected_filter_points div {
    background-color: #C0C0C0;
    padding: 5px 22px 5px 5px;
    margin: 5px 0 5px 0;
    border-radius: 4px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    position: relative;
    float: left;
    width: 100%;
}

.popup_delete {
    background: url("../images/task-del.png") no-repeat -21px 0;
    width: 20px;
    height: 18px;
    float: left;
    position: absolute;
    top: 3px;
    right: 4px;
}

.popup_delete:hover {
    background: url("../images/task-del.png") no-repeat 0 0;
    cursor: pointer;
}

.finded_points {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 9999;
    border-radius: 4px;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

.finded_points div {
    font-size: 13px;
    padding: 3px;
    margin: 5px;
    border-radius: 4px;
}

.finded_points div:hover {
    background: #81a9c0;
    cursor: pointer;
}

.show_selectbox {
    margin: 10px 5px 10px 22px;
}