@charset "utf-8";
/* =Custom Select Menu */

.custom-select-menu {
  display: inline-block;
  outline: none;
  position: relative;
  color:#999;
  font-size:11px;
  font-weight:400;
  bottom:-1px;
}

.custom-select-menu label {
  color: #999;
  font-size: 11px;
  display: inline-block;
  padding: 9px 44px 9px 10px;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;  
  user-select: none;
  width: 40px;
  white-space:nowrap;
	font-style:normal;
	border:1px solid #dedede;
	text-align:left;
}

.sort_line .custom-select-menu label {
  width: 120px;
  background:#fff;
}

.custom-select-menu label.selection-made {
  color: #000;
}

.custom-select-menu label:after {
  content: '';
  display:block;
  position: absolute;
  right: 3px;
  top: 10px;
  background:url(/images/select_arrow.png) center center no-repeat;
  width:29px;
  height:15px;
  border-left:1px solid #dedede;
}

.custom-select-menu ul {
  left: 0;
  list-style: none;
  margin: 0;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 41px;
  width: 90px;
  z-index: 1000;
  font-style:normal;
  text-align:left;
}

.custom-select-menu ul {
  width: 170px;
}

.custom-select-menu li {
  background-color: #fff;
  cursor: pointer;
  padding: 7px 10px;
  white-space:nowrap;
}

.custom-select-menu li:hover {
  background-color:#c95458;
  color:#fff;
}