.sportsSearch {
	background: #ffc000;
	color: #FFF;
	position: fixed;
	width: 100%;
	top: 41px;
	left: 0;
	min-height: 38px;
	display: flex;
	align-items: center;
	padding: 10px;
	z-index: 10;
	form {
		width: 95%;
	}
	input {
		padding: 8px;
		width: 76vw;
		border: solid 1px #000;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		display: inline-block;
		&:last-child {
			width: 40px;
			float: right;
			background: red;
			color: #FFF;
			font-weight: bold;
			font-size: 14px;
			padding: 6px;
			margin: 0;
		}
	}
}
.search-overlay {
	width: 100%;
	background: #000;
	height: 100%;
	opacity: 0.7;
	position: absolute;
	z-index: 5;
	display: block;
}
.sports-search-results {
	background: #ffc000;
	position: fixed;
	left: 0;
	top: 99px;
	width: 99vw;
	padding: 2px;
	z-index: 10;
	color: #FFF;

	.result {
		background: linear-gradient(to bottom, #e1e1df 0%, #fffffd 100%) !important;
		margin-bottom: 0 !important;
		border-bottom: none !important;
		padding: 10px !important;
	}
	.search-category-res {
		background: linear-gradient(to bottom, #e1e1df 0%, #fffffd 100%);
		display: block;
		padding: 15px 10px;
		font-size: 16px;
		color: #444444;
		text-decoration: none;
		position: relative;
		font-family: 'Roboto Condensed', sans-serif;
		text-transform: uppercase;
	}
	.content {
		padding-bottom: 2px !important;
	}
}
.no-search-results {
	font-weight: bold;
	text-align: center;
	font-size: 16px;
	padding: 19px;
	background: #FFF;
	position: fixed;
	top: 99px;
	z-index: 20;
	width: 92vw;
}