/************************************
          MINIMALECT 0.9
  A minimalistic select replacement

 jQuery 1.7+ required.
 Developed by @groenroos
 http://www.groenroos.fi

 Github: http://git.io/Xedg9w

 Licensed under the MIT license.

************************************/
.minict_wrapper {
	font-family: "Segoe UI", Segoe, "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	color: #333;
	background: #fff;
	position: relative;
	height: 33px;
	border: 1px solid #e5e5e5;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.minict_wrapper * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.minict_wrapper.disabled {
	background: #f5f5f5;
	text-shadow: 0 1px 0 #fff;
}
.minict_wrapper.disabled span {
	color: #bbb !important;
}
.minict_wrapper:after {
	content: "\25BC";
	display: block;
	position: absolute;
	height: 31px;
	width: 33px;
	top: 0;
	right: 0;
	font-size: 10px;
	line-height: 30px;
	text-align: center;
	color: #555;
}
.minict_wrapper.active:after {
	content: "\25B2";
}
.minict_wrapper.disabled:after {
	color: #bbb;
}
.minict_wrapper span {
	display: block;
	border: 0;
	outline: none;
	background: none;
	font-family: "Segoe UI", Segoe, "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 14px;
	height: 30px;
	line-height: 23px;
	padding: 4px 30px 0 6px;
	cursor: default;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.minict_wrapper span:empty:before {
	content: attr(data-placeholder);
	color: #ccc;
	line-height: 23px;
}
.minict_wrapper ul {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0 -1px;
	position: absolute;
	width: 100%;
	width: -webkit-calc(100% + 2px);
	width: -moz-calc(100% + 2px);
	width: calc(100% + 2px);
	border: 1px solid #e5e5e5;
	border-top: 1px solid #f9f9f9;
	top: 33px;
	left: 0;
	max-height: 350px;
	overflow-y: auto;
	z-index: 999999;
}
.minict_wrapper ul li {
	list-style: none;
	padding: 0 10px;
	cursor: pointer;
	background: #fff;
	height: 35px;
	line-height: 32px;
}
.minict_wrapper ul li:hover {
	background: #fcfcfc;
	color: #111;
}
.minict_wrapper ul li.minict_group {
	color: #444;
	background: #f6f6f6;
	font-weight: bold;
	cursor: default;
}
.minict_wrapper ul li.minict_empty {
	display: none;
	background: #fff !important;
	color: #bbb;
	text-align: center;
	font-size: 14px;
	height: 55px;
	line-height: 50px;
}
.minict_wrapper ul li.disabled {
	cursor: default;
	background: #fff !important;
	color: #bbb;
}
.minict_wrapper ul li.selected {
	color: #b71c22;
	background: #f8f9f9;
}
.minict_wrapper ul li.highlighted {
	color: #fff;
	background: #819a9a;
}
.minict_wrapper ul li.hidden {
	display: none;
}
.minict_wrapper .minict_reset {
	color: #A9A9A9;
	bottom: 0;
	display: none;
	font-size: 18px;
	line-height: 30px;
	position: absolute;
	right: 35px;
	text-align: center;
	top: 0;
	text-decoration: none;
	width: 20px;
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.minict_wrapper .minict_reset:hover {
	color: #e0e0e0;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.minict_wrapper .minict_reset:active {
	color: #636363;
}
.minict_wrapper.disabled .minict_reset {
	display: none;
}

