/*=====================================================================
  Selectric
======================================================================*/

.selectricWrapper {
  position: relative;
  margin: 0 0 0px;
  max-width: 100%;
  cursor: pointer;
}
.selectricWrapper.uix-big {
  position: relative;
  margin: 0 0 0px;
  width: 100%;
  min-width: 325px;
  max-width: 100%;
  cursor: pointer;
}
.selectricWrapper.uix-find {
  position: relative;
  margin: 0 0 0px;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectricOpen {
  z-index: 9999;
}

.selectricOpen .selectricItems {
  display: block;
}

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectricHideSelect select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectricInput {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  _font: 0/0 a;
  background: none !important;
}

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}


.selectricOpen .selectric {
  border-color: #CCC;
  background: #F0F0F0;
  z-index: 9999;
}

.selectricOpen .selectricItems {
  display: block;
}

.selectric {
  	width: 100%;
	max-width: 100% !important;
		background: #eee; 
		border: 1px solid #e5e5e5;
	font-weight: 500;
	color: #999 !important;
	font-size: 14px !important;
	padding: 4px;
	box-sizing: border-box;
	border-radius: 3px;
	transition: 300ms;
}
.selectric:hover {
		border: 1px solid #e5e5e5;
		background: #fafafa; 
 		color: #888;
		box-shadow:  0 0px 0px 1px rgba(0,0,0,0.1); 
}

.selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 0px 0 0;
	padding: 6px;
	font-size: 14px;
	line-height: 18px;
	color: #999 !important;
	min-height: 18px;
  text-align: left;
}

.gray-input .selectric {
  	width: 100%;
	max-width: 100% !important;
	background: #eee !important;
	border: 1px solid #c1c8c5;
	font-weight: 500;
	color: # !important;
	font-size: 14px !important;
	font-family: 'Raleway', verdana, sans serif;	
	padding: 6px;
}

.gray-input .selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 30px 0 0;
	padding: 6px;
	font-size: 14px;
	line-height: 18px;
	color: #a9b1ae;
	min-height: 18px;
}

.selectric .sel-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  font: 0/0 a;
}


/* Items box */

.selectricItems {
  display: none;
  position: absolute;
  overflow: auto;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 9998;
}

.selectricItems ul,
.selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 20px;
  line-height: 20px;
  font-size: 14px;
}

.selectricItems li {
  padding: 5px;
  cursor: pointer;
  display: block;
  color: #666;
  border-top: 1px solid #eee;
  background: #eee;
  text-align: left;
}

.selectricItems li.selected {
  background: #eee;
  color: #444;
  border-top-color: #E0E0E0;
}

.selectricItems li:hover {
  background: #F0F0F0;
  color: #444;
}

.selectricItems li.disabled {
  background: #F5F5F5;
  color: #BBB;
  border-top-color: #FAFAFA;
  cursor: default;
}


.selectricItems li.selected:before {
    content: "\2714";
    margin-right: 10px;
    color: #e8b8b4;
}

.selectricItems li.group {
  background: #F5F5F5;
  color: #111;
  font-weight: 900;
  border-top-color: #E0E0E0;
}
.selectricItems li.italic {
	color: #999;
	font-style: italic;
}