/* Styleselect select menu styling */

.styleselect_wrapper {
    position: relative;
    margin-bottom: 5px;
}

.styleselect_wrapper button {
    display: block;
    background: #EFEFEF;
    border: 0;
    width: 100%;
    height: 36px;
    text-align: left;
    color: black;
    border-radius: 0;
    font-size: 14px;
    padding: 7px 48px 7px 10px;
    background-image:url('../../img/icons/search_select.png');
    background-position:right;
    background-repeat:no-repeat;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family:'LJH-regular';
}

.styleselect_wrapper button:focus{
    background-image:url('../../img/icons/search_select_focus.png');
    background-position:right;
    background-repeat:no-repeat;
}

.styleselect_wrapper .styleselect_menu {
    position: absolute;
    border-left: 1px solid #EFEFEF;
    border-right: 1px solid #EFEFEF;
    z-index: 160;
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
    -moz-box-sizing: border-box;    /* Firefox 1 - 28 */
    box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
    display: none;
    max-height: 190px;
    overflow-y: auto;
}

.styleselect_wrapper .styleselect_menu ul {
    list-style-type:none;
    padding-left:0px;
    margin-bottom: 0;
}

.styleselect_wrapper .styleselect_menu ul li {
    /*padding: 10px;*/
    padding: 4px 10px;
    border-bottom: 1px solid #efefef;
    background: white;
    font-family:'LJH-regular';
    font-size: 13px;
}

.styleselect_wrapper .styleselect_menu ul li:hover {
    background: #fafafa;
    cursor: pointer;
}

.styleselect_wrapper .styleselect_menu ul li input[type="checkbox"] {
    margin-top: 0;
    margin-right: 5px;
    vertical-align: middle;
}
