/*-------------------------------------------------------------------
/- Container
/------------------------------------------------------------------*/

.controls {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: center;
	width: 100%;
	padding: 10px;
}

.controls > div {
	display: inline-flex;
	height: 60px;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-grow: 1;
	text-align: center;
	width: 100%;
}

/*-------------------------------------------------------------------
/- Search
/------------------------------------------------------------------*/

.searchBar {
	text-align: left;
}

.searchBar input {
	background: none;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	outline: none !important;
	width: auto;
	min-width: 250px;
	transition: all 0.3s;
}

.searchBar input:active,
.searchBar input:hover {
	border-bottom: 1px solid rgba(255,255,255,0.9);
}

#searchButton,
#sortDirectionButton {
	display: inline-flex;
	align-items: center;
	align-content: center;
	padding: 10px;
	margin-left: 5px;
	text-decoration: none;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.3s all;
}

#searchButton img,
#sortDirectionButton img {
	display: inline-flex;
	align-self: center;
	height: 15px;
	width: 15px;
}

/*-------------------------------------------------------------------
/- Sort Drop-Down Menu
/------------------------------------------------------------------*/

.sortDropdown {
	text-align: left;
}

.controlsSelect {
	background: none;
	outline: none;
}

.controlsSelect select {
	background: transparent;
	padding: 0; /* If you add too much padding here, the options won't show in IE */
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.3s;
}

.controlsSelect select option {
	color: #000000;
}

/*-------------------------------------------------------------------
/- Clear Filters Button
/------------------------------------------------------------------*/

#clearFiltersButton {
	padding: 10px 15px;
}

#clearFiltersButton span,
#clearFiltersButton img {
	display: inline-block;
}

#clearFiltersButton img {
	display: inline-block;
	margin-left: 10px;
	height: 20px;
	opacity: 0.8;
}

/*-------------------------------------------------------------------
/- Responsive Styling
/------------------------------------------------------------------*/

/*Extra small devices*/
@media only screen and (max-width: 400px) {
}

/*Small devices (landscape phones, 576px and up)*/
@media only screen and (min-width: 576px) {
}

/*Medium devices (tablets, 768px and up)*/
@media only screen and (min-width: 768px) {
	.controls {
		padding: 25px 10px;
	}
	.controls > div {
		width: 50%;
	}
}

/*Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
	#saveButton {
		bottom: 50px;
		right: 50px;
	}
}

/*Extra large devices (large desktops, 1200px and up)*/
@media only screen and (min-width: 1200px) {
	.controls > div {
		width: 25%;
		height: 50px;
	}
}

/*Extra large devices (extra large desktops, 1500px and up)*/
@media only screen and (min-width: 1500px) {
	.controls > div {
		width: 20%;
	}
}