.b-core-ui-select {
    position: relative;
    font-size: 18px;
    height:44px;
    line-height: 44px;
    color: #000000;
    cursor: pointer;
    background:#fff;
    -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;
    padding: 10px;
    font-size: 12px;
    line-height: 18px;
}

.b-core-ui-select__value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 25px;
    padding-left: 10px;
}

.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);
}

.b-core-ui-select:HOVER {
   /* color: #333333;
    background-color: #e6e6e6;
    background-position: 0 -15px;
    transition: background-position 0.1s linear; */
}

.b-core-ui-select.focus {
	/*
    background-color: #e6e6e6;
    background-image: none;
    border-color: #ccc;
    outline: 0;
    */
}

.b-core-ui-select.open {
   
}

.b-core-ui-select.disabled,
.b-core-ui-select.disabled:ACTIVE{
	/*
    opacity: .5;
    color: #333333;
    background-color: #e6e6e6;
    background-position: 0 -15px;
    transition: background-position 0.1s linear;
    */
}

.b-core-ui-select__button {
    position: absolute;
    right: 9px;
    top: 8px;
    display: block;
    width: 0;
    height: 0;  
    content: "";
}

.b-core-ui-select__dropdown {
    display: none;
    position: absolute;
    top: 0;
    margin-top: -1px;
    padding: 0;
  }

.b-core-ui-select__dropdown.hide {
    display: none;
}

.b-core-ui-select__dropdown.show {
    display: block;
}

.b-core-ui-select__dropdown__wrap {
    max-height: 200px;
    overflow: auto;
	outline: none;
}


.j-scroll-pane .b-core-ui-select__dropdown__item {
   
}

.b-core-ui-select__dropdown__list {
	
	list-style:none;
    overflow: hidden;
    margin: 0!important;
}
.b-core-ui-select__dropdown__list li { list-style:none; background:none  !important; margin: 0;}

.b-core-ui-select__dropdown__item {
	color:#5E5E5E;
	font-size:17px;
    list-style-type: none;
    cursor: pointer;
    padding: 0 0 9px 10px;
}


.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: #ccc;
    background: none;
}

.b-core-ui-select__dropdown__item.selected,
.b-core-ui-select__dropdown__item.selected:HOVER {
}

.b-core-ui-select__dropdown__item:HOVER {
   
}