/*
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
*/

.select3 {
    position: relative;
    width: 300px;
    height: 33px;
    float: left;
    outline: none;
    margin-left: 11px;
    margin-right: 11px;
    min-width: 200px;
    background: white;
    padding: 3px 6px 0 0px;
    margin-top: 7px;
}

.select3 .value {
	display: block;
	position: relative;
	font-family: helvetica, arial, sans-serif;
	font-size: 12px;
	color: #1f202a;
	padding: 8px 10px;
	bo rder-bottom: 1px solid #d1d2dd;
	cursor: pointer;
	overflow-x: hidden;
	white-space: nowrap
}
.select3 .value {
    text-align: center;
    font-weight: bold;
}

.select3 .value::before {
	position: absolute;
	top: 50%;
	right: 0;
	margin: -2px 0;
	width: 0px;
	height: 0px;
	content: "";
	border-width: 4px;
	border-style: solid;
	border-color: #d1d2dd transparent transparent
}

.sel ect:focus .value {
	border-bottom: 1px solid #e3af43
}

.select3 .list {
	position: absolute;
	top: -215px;
	width: 100%;
	height: 0;
	background: #fff;
	opacity: 0;
	outline: none;
	-webkit-box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	-webkit-transition: o pacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: opacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
	z-index: 9999
}

.select3 .list.open {
	height: 215px;
	opacity: 1.0
}

.select3 .list .filter {
	display: none;
	padding: 8px 10px
}

.select3 .list .filter input {
	width: 100%;
	font-family: h elvetica, arial, sans-serif;
	font-size: 12px;
	color: #1f202a;
	border: none;
	border-bottom: 1px solid #eaeaea;
	outline: none;
	margin: 0;
	padding: 0 0 5px
}

.select3 .list ul {
	display: block;
	margin: 0;
	padding: 0
}

.select3 .list ul li {
	display: block;
	list-style: none;
	font-family: helvetica, arial, sans- serif;
	font-size: 12px;
	color: #1f202a;
	padding: 8px 10px;
	cursor: pointer
}

.select3 .list ul li:hover,
.select3 .list ul li.hovered {
	color: #fff;
	background: #e3af43
}

.select3.large .filter {
	display: block
}

.select3.large .list ul {
	max-height: 200px;
	overflow-y: scroll
}

