.b-core-ui-select {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.b-core-ui-select__select {
    position: static;
    font-size: 12px;
}
.b-core-ui-select__value {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.b-core-ui-select__select_state_hide {
    height: 1px !important;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 1px !important;
    text-indent: -9999px;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
    filter: alpha(opacity = 0);
}
.checkout-billing .b-core-ui-select__select_state_hide { position: relative !important;  }
#shipping_method_list .b-core-ui-select__select_state_hide { position: absolute !important; }
.b-core-ui-select:HOVER {
    background-color: #efefef;
}
.b-core-ui-select.focus { 	
} 

.b-core-ui-select.disabled,
.b-core-ui-select.disabled:ACTIVE{
    opacity: .5;
    color: #333333;
    background-position: 0 -15px;
    transition: background-position 0.1s linear;
}
.b-core-ui-select__button {
    position: absolute;
    right: 9px;
    top: 10px;
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid #ddd;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: "";
}
.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: 0;
    color: #333;
    margin-top: -1px;
    border: 1px solid #ccc;
    background-color:#fff;
    max-height:200px;
    overflow-x:hidden;
    overflow-y:auto;
}

/** START Edit Address Modal Popup **/
#dialog-container .b-core-ui-select__dropdown {
	max-height:163px;
}
/** END Edit Address Modal Popup **/

.b-core-ui-select__dropdown.hide {
    display: none;
}
.b-core-ui-select__dropdown.show {
    display: block;
    width:100px;
}

.b-core-ui-select__dropdown__wrap {
    overflow: auto;
	outline: none;
}
.j-scroll-pane .b-core-ui-select__dropdown__item {
    margin-right: 10px;
}
.b-core-ui-select__dropdown__list {
    overflow: hidden;
    margin: 0!important;
    padding:0;
}
.b-core-ui-select__dropdown__item {
    padding: 5px 10px;
    min-height: 18px;
    list-style-type: none;
    cursor: pointer;
}
.b-core-ui-select__dropdown__label {
    padding: 10px;
    min-height: 18px;
    font-style: italic;
    list-style-type: none;
    border-bottom: 1px solid #ccc;
}
.b-core-ui-select__dropdown__item.disabled,
.b-core-ui-select__dropdown__item.disabled:HOVER {
    color: #D1D3D3;
    background: none;
}
.b-core-ui-select__dropdown__item.fis-soldout-textcolor,
.b-core-ui-select__dropdown__item.fis-soldout-textcolor:HOVER {
	color: #D1D3D3;
    background: none;
}
.b-core-ui-select__dropdown__item.selected,
.b-core-ui-select__dropdown__item.selected:HOVER {
    background: #eee;
    color: #555;
}
.b-core-ui-select__dropdown__item:HOVER {
    background: #efefef;
}