form {
	display: flex;
	align-items: center;
}

form .reset-button {
	align-items: center;
	display: flex;
	margin-right: 30px;
}
form .reset-button i {
	color: var(--navy);
	cursor: pointer;
	font-size: 28px;
  transition: .25s ease-in-out;
}
form .reset-button i:hover {
	color: var(--green);
}

select {
	/* A reset of styles, including removing the default dropdown arrow */
	appearance: none;
	background-color: transparent;
	border: none;
	cursor: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	outline: none;
	padding: 10px 40px 10px 15px;
	position: relative;
	width: max-content;
	z-index: 1;
}
/* Remove dropdown arrow in IE10 & IE11 */
/* @link https://www.filamentgroup.com/lab/select-css.html */
select::-ms-expand {
	display: none;
}
.select {
	align-items: center;
	background-color: #ffffff;
	border-radius: 4px;
	border: 1px solid #cccccc;
	cursor: pointer;
	display: grid;
	grid-template-areas: "select";
	line-height: 1.2;
	margin: 0 20px 0 0;
	padding: 0;
	position: relative;
	width: max-content;
}
@media(max-width: 992px) {
	.select {
		margin: 0;
		width: 100%;
	}
}

.select * {
	transition: .25s ease-in-out;
}

.select select {
  display: none; /*hide original SELECT element: */
}

/* style the items (options), including the selected item: */
.select-selected {
	cursor: pointer;
	padding: 10px 40px 10px 15px;
  position: relative;
	width: max-content;
  z-index: 1;
}
/* Style the arrow inside the select element: */
/* .select-selected:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
	border-bottom: 2px solid #999999;
	border-right: 2px solid #999999;
	height: 13px;
	width: 13px;
	margin: -10px;
	transition: .25s ease-in-out;
	transform: translate(-50%, 0) rotate(45deg);
} */

/* Style items (options): */
.select-items {
	background-color: #ffffff;
	border-radius: 4px;
	border: 1px solid #cccccc;	
  left: -1px;
	margin-top: 4px;
	min-width: max-content;
	opacity: 1;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
	visibility: visible;
	width: 100%;
  z-index: 99;
}

.select-items div {
	padding: 10px 40px 10px 15px;
  cursor: pointer;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
	transform: translateY(-50%) rotate(180deg);
}


/* .select select,
.select:after {
	grid-area: select;
	color: #ffffff;
} */
.select option{
	color: #999999;
}

/* Hide the items when the select box is closed: */
.select-hide {
	visibility: hidden;
	opacity: 0;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Custom arrow */
.select-selected:after {
	transition: .15s ease-in-out;
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 20px;
	color: #999999;
	position: absolute;
	right: 10px;
	z-index: 0;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
}


/* Interim solution until :focus-within has better support */
select:focus + .focus {
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border: 2px solid #cccccc;
	border-radius: inherit;
}
