@charset "utf-8";
/* =Custom Select Menu */

.custom-select-menu {
  display: inline-block;
  outline: none;
  position: relative;
  color:#847066;
  font-size:11px;
  font-weight:400;
  bottom:1px;
}

.custom-select-menu label {
	margin:0 10px;
  color: #847066;
  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: 100px;
  white-space:nowrap;
	font-style:normal;
	border:1px solid #fff;
	text-align:left;
	background:#f4f0ea;
}
.rows > .left .right .custom-select-menu label {
	width: 10px;
}

.custom-select-menu label.selection-made {
  color: #847066;
}

.custom-select-menu label:after {
  content: '';
  display:block;
  position: absolute;
  right: 3px;
  top: 7px;
  background:url(/public/i/select_arrow.png) center center no-repeat;
  width:22px;
  height:18px;
  border-left:1px solid #fff;
}

.custom-select-menu ul {
  left: 11px;
  list-style: none;
  margin: 0;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 33px;
  width: 155px;
  z-index: 1000;
  font-style:normal;
  text-align:left;
}

.mini .custom-select-menu ul {
	width: 64px;
}

.custom-select-menu li {
  background-color: #fff;
  cursor: pointer;
  padding: 7px 10px;
  white-space:nowrap;
}

.custom-select-menu li:hover {
  background:#3F2F27;
  color:#fff;
}