.select-wrapper {
    position: relative;
}

.select-wrapper > button {
    position: relative;
    display: block;
    padding: 5px;
    border: 1px solid #d3d3d3;
    background: #e6e6e6 url("custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
    font-weight: normal;
    color: #555;
    outline: 0;
    width: 100%;
    border-radius: 4px;
    text-align: left;
    font-size: 1.1em;
    margin: 0.2em 0;
    white-space: nowrap;
    padding-right: 20px;
}

.select-wrapper > button .ui-icon {
    position: absolute;
    top: 0.5em;
    right: 0.15em;
    opacity: 0.5;
}

.select-menu {
    display: block;
    position: absolute;
    top: 110%;
    z-index: 100000;

    border: 1px solid #d3d3d3;
    padding: 0.5em;
    border-radius: 0.25em;
    background: #eee;
    width: auto;
    color: #333;
    min-width: 200px;
    max-width: 500px;
}
.select-menu-left {
    margin-left: -114px;
}

.select-menu .filter {
    border: 1px solid #aaa;
    background: #ccc url("custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
    padding: 0.5em;
    border-radius: 0.25em;
}

.select-menu .filter input {
    box-sizing: border-box;
    display: inline-block;
    width: 145px;
    margin-right: 3px;
}

.select-menu .filter a {
    display: inline-block;
    margin-top: -2px;
}

    .select-menu .filter .select-all-button, .select-menu .filter .unselect-all-button {
        display: inline-block;
        margin-top: 0.5em;
        background: transparent;
        border: none;
        cursor: pointer;
        color: #333;
        outline: none;
        margin-left: 16px;
    }

.select-menu .filter .select-all-button:hover, .select-menu .filter .unselect-all-button:hover  {
    font-weight: bold;
}


.select-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #d3d3d3;
    margin-top: 0.5em;
    background: #ffffff;
    padding-top: 0.25em;
}

.select-menu .option-row {
    box-sizing: border-box;
    border: 1px solid transparent;
    margin: 0 0.25em;
    line-height: 30px;
    cursor: pointer;
    padding-left: 0.5em;
    text-align: left;
}

.select-menu .option-row label {
    margin-left: 0.5em;
}

.select-menu .option-row:hover {
    border: 1px solid #d3d3d3;
    background: #e6e6e6 url("custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
    border-radius: 0.25em;
    cursor: pointer;
}

.select-menu .option-row.selected-row {
    color: #00A34E;
}

.select-menu .search > a > i {
    font-size: 20px;
    color: black;
    position: absolute;
    margin-top: -14px;
}

.select-menu .selectAll > i {
    font-size: 17px;
    margin-top: 9px;
    display: inline-block;
    position: absolute;
}

.select-menu .selectAllPopUp{
    display: none;
    position: absolute;
	background: #fff;
	border: 1px solid #aaaaaa;
    border-radius: 0.5em;
    padding: 10px;
    width: 200px;
    margin-top: -0px;
    margin-left:5px;
}

.select-menu .selectAllPopUp:after, .select-menu .selectAllPopUp:before {
	right: 100%;
	top: 25%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.select-menu .selectAllPopUp:after {
    border-color: rgba(136, 183, 213, 0);
	border-right-color: #fff;
	border-width: 6px;
	margin-top: -6px;
}

.select-menu .selectAllPopUp:before {
    border-color: rgba(170, 170, 170, 0);
	border-right-color: #aaaaaa;
	border-width: 7px;
	margin-top: -7px;
}

.select-menu .unselectAll>i {
    font-size: 17px;
    margin-top: 9px;
    display: inline-block;
    position: absolute;
}