.filter-dropdown {
	height: 40px;
	width: 300px;
	overflow: hidden;
	position: relative;
	z-index: 200;
	padding-top: 40px;
	font-size: 20px;
	margin: 0 auto;
}

.filter-dropdown-inline {
	display: inline-block;
	vertical-align: top;
	width: 200px;
}

.filter-dropdown.open {
	overflow: visible;
}

.filter-dropdown__item {
	height: 40px;
	width: 100%;
	text-align: center;
	line-height: 40px;
	background-color: #E9E8EA;
	position: relative;
	z-index: 10;
	cursor: pointer;
}

.filter-dropdown__item:nth-child(2) {
	z-index: 9;
}

.filter-dropdown__item:first-child {
	display: none;
}

.filter-dropdown__item.active {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
}



.filter-dropdown__item.active:after {
	content : '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 13px 0 13px;
	border-color: #0eb5f7 transparent transparent transparent;
	transform: translate(8px, 1px);
}