.filter {
	position: relative;
}

.filterLink {
	background-color:var(--color-accent);
	background-image: url('/wp-content/themes/westcott/static/images/down-arrow.svg');
    background-repeat: no-repeat;
    background-position: center right 15px;
    background-size: 15px;
	padding: 12px 34px;
    padding-right: 50px;	
	border: 1px solid var(--color-accent);
	color:#fff;
	display: inline-block;
	position: relative;
	z-index: 999;
	text-decoration: none;
	font-size: 15px;
	text-transform: uppercase;
	transition: 0.2s background ease, 0.2s color ease;
}

.filterLink--inactive {
	/*background:red;*/
}

.filterLink--active {
	background-image: url('/wp-content/themes/westcott/static/images/up-arrow.svg');
    background-repeat: no-repeat;
    background-position: center right 15px;
    background-size: 15px;
}

.filterDropdown {
	height: auto;
	width: 200px;
	background: #767c7f;
	color:#fff;
	position: absolute;
	top: 65px;
	right: 0;
	z-index: 999;
	transition: 0.2s opacity ease, 0.2s transform ease, 0.2s visibility ease;
}

.filterDropdown:before {
    content: "";
    display: block;
    height: 16px;
    width: 100%;
    background: url(/wp-content/themes/westcott/static/images/dropdown-arrow.svg);
    background-position: bottom right 15px;
    background-repeat: no-repeat;
    position: absolute;
    top: -15px;
    left: 0;
}


.filterDropdown--hidden {
	opacity: 0;
	visibility: hidden;
	transform:translateY(50px);
}

.filterDropdown--visible {
	opacity:1;
	visibility: visible;
	transform:translateY(0px);
}

.filterDropdown ul {
	list-style: none;
	margin:0;
	padding:0;
}

.filterDropdown ul li {
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #84898c;
    color: #fff;
    font-size: 15px;
    text-align: center;
    padding: 11px;
    text-decoration: none;	
}

.filterDropdown ul li a {
	/*display: block;*/
    color: #fff;
    font-size: 15px;
    border: 0;
    text-align: center;
    text-decoration: none;
}