body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 14px;
	background: #f1f1f1;
}

ul, ol, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

a {
	cursor: pointer;
	text-decoration: none;
}


nav.header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}
	nav.header .logo img {
		height: 40px;
	}

	nav.header .search-icon {
		width: 35px;
		height: 35px;
		margin-left: 10px;
		cursor: pointer;
	}


nav.context {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #fff;
	height: 50px;
}
	nav.context img {
		width: 80px;
		height: 80px;
		background: #fff;
		border-radius: 50%;
		box-shadow: 0 0px 5px rgba(0,0,0,0.19), 0 0px 0px rgba(0,0,0,0.23);
	}

	nav.context h3 {
		font-size: 24px;
		padding: 0 15px;
	}
	nav.context select {
		font-size: 18px;
	}

	nav.context ul {
		display: flex;
	}
		nav.context li {
			text-align: center;
			padding: 0 5px;
		}
		nav.context a {
			color: #fff;
			padding: 10px 5px;
		}


body.search-closed {
}
	body.search-closed #home-search-query input {
		display: none;
	}
	body.search-closed nav.header .search-icon {
		display: inline;
	}

body.search-open {
}
	body.search-open #home-search-query input {
		display: inline;
	}
	body.search-open nav.header .search-icon {
		display: none;
	}


#home-search-query {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	padding-right: 20px;
}
	#home-search-query input {
		font-size: 24px;
		font-weight: bold;
		border: .0625rem solid hsla(0,0%,85%,.5);
		margin: 5px 0 0 0;
		padding: 5px 10px;
		width: 400px;
	}

	#home-search-results {
		position: absolute;
		z-index: 100;
		width: 400px;
		background: #fff;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	}
		#home-search-results li {
			background: no-repeat 10px center;
			background-size: 40px 40px;
			font-size: 18px;
			border-top: 1px solid #ccc;
			padding: 10px;
		}
			#home-search-results a {
				display: flex;
				align-items: center;
				width: 100%;
			}
			#home-search-results span {
				padding: 5px 0 5px 50px;
				flex-grow: 1;
			}
			#home-search-results em {
				font-style: normal;
				font-size: 70%;
			}
			#home-search-results li.selected {
				background-color: rgb(255, 255, 204, .4);
			}
			#home-search-results li:last-child {
				border-bottom: 1px solid #ccc;
			}

#home-search-history {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	margin: 10px 0;
	overflow: hidden;
}
	#home-search-history li:nth-of-type(n+7) {
		display: none;
	}
	#home-search-history a {
		padding: 0 10px;
	}
	#home-search-history img {
		width: 30px;
		height: 30px;
	}


#game-odds {
	max-width: 1000px;
	margin: 0 auto;
}


#game-odds section {
	display: flex;
	flex-direction: column;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.5px;
	background: #fff;
	margin: 20px 0;
	border-radius: 3px;
	overflow-x: hidden;
}

	#game-odds section h2 {
		margin: 0;
		padding: 15px 20px 10px 20px;
		letter-spacing: -1px;
		border-bottom: 1px solid #ddd;
	}
	#game-odds section a {
		color: #232f80;
	}
	#game-odds section header {
		display: flex;
		flex-direction: row;
	}

	#game-odds section > div {
		padding: 15px 5px;
	}
		#game-odds section.urls > div {
			padding: 15px 25px;
		}

	#game-odds .ruwt-teams {
		width: 220px;
		height: 110px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
		#game-odds .ruwt-teams > div {
			display: flex;
			flex-direction: row;
			align-items: center;
			margin: 5px 0;
		}
		#game-odds .ruwt-teams img {
			width: 49px;
			height: 25px;
			padding: 0 12px 0 12px;
		}
		#game-odds .ruwt-teams .ruwt-team {
			flex-grow: 1;
		}
		#game-odds .ruwt-teams .ruwt-score {
			width: 30px;
			padding-right: 10px;
			color: #1192ce;
			text-align: center;
		}
		#game-odds .ruwt-teams .ruwt-time-left {
			color: #aaa;
			font-size: 80%;
			padding: 0 15px;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}


	#game-odds .ruwt-providers {
		display: flex;
		flex-direction: row;
	}

	#game-odds .ruwt-provider {
		display: flex;
		flex-direction: column;
		width: 170px;
		padding: 5px 0;
		justify-content: center;
		align-items: center;
	}
		#game-odds section.ruwt-bet-type-over-under .ruwt-provider {
			flex-direction: row;
			justify-content: center;
		}

		#game-odds .ruwt-provider span {
			display: flex;
			flex-direction: row;
		}

		#game-odds section .ruwt-provider a {
			display: flex;
			justify-content: center;
			align-items: center;
			border: 1px solid #ddd;
			width: 130px;
			padding: 4px 0;
			margin: 5px 0;
			transition: background-color 1.5s ease-out, transform .1s ease-out;
		}
			#game-odds section.ruwt-bet-type-over-under .ruwt-provider a {
				flex-direction: column;
				width: 60px;
				height: 80px;
				margin: 0 3px;
			}

		#game-odds .ruwt-provider em {
			font-style: normal;
			font-size: 80%;
			padding-left: 5px;
		}
			#game-odds section.ruwt-bet-type-over-under .ruwt-provider em {
				padding-left: 0;
			}

	#game-odds .ruwt-provider-mobile {
		display: none;
		flex-direction: column;
		justify-content: center;
		height: 40px;
		font-size: 14px;
		font-weight: normal;
	}
		#game-odds section .ruwt-provider .ruwt-provider-mobile a {
			border: none;
		}
	#game-odds .ruwt-teams-mobile {
		display: none;
		flex-direction: column;
	}
		#game-odds .ruwt-teams-mobile img {
			width: 25px;
			height: 25px;
			margin: 6px 6px 6px 12px;
		}




@media screen and (max-width:900px) {

#ruwt-hosted-odds {
	width: 100%;
}
	#ruwt-hosted-odds-header nav {
		font-size: 14px;
	}
	#ruwt-hosted-odds-header select {
		font-size: 16px;
		margin-right: 10px;
	}

#ruwt-data-stage {
	background: none;
	box-shadow: none;
	padding: 0 10px;
}
	#ruwt-data-stage header {
		display: none;
	}


#ruwt-hosted-odds section {
	margin: 20px 0;
	background: #fff;
	flex-direction: column;
	box-shadow: 0 0.5px 0 0 #ffffff inset, 0 1px 2px 0 #b3b3b3;
	border-radius: 5px;
}

#ruwt-hosted-odds .ruwt-teams {
	width: 100%;
	border-bottom: 1px solid #ddd;
}

#ruwt-hosted-odds .ruwt-provider {
	padding: 0 5px;
}
	#ruwt-hosted-odds .ruwt-provider.ruwt-consensus {
		border: none;
	}
	#ruwt-hosted-odds section .ruwt-provider a {
		width: 100%;
		font-size: 14px;
	}

	body.ruwt-bet-type-over-under #ruwt-hosted-odds .ruwt-provider {
		flex-direction: column;
		justify-content: normal;
	}
		body.ruwt-bet-type-over-under #ruwt-hosted-odds section .ruwt-provider a {
			font-size: 80%;
			width: 40px;
			height: 71px;
			margin: 0 2px 5px 2px;
		}


#ruwt-hosted-odds .ruwt-provider-mobile {
	display: flex;
}

#ruwt-hosted-odds .ruwt-teams-mobile {
	display: flex;
}

}


@media screen and (max-width:640px) {

	nav.header {
		flex-direction: column;
		justify-content: center;
		height: 100px;
	}
		nav.header #home-search-query {
			flex-direction: column-reverse;
		}
		body.search-closed #home-search-query {
			flex-direction: row;
		}
		body.search-open #home-search-history {
			display: none;
		}

	#home-search-history li:nth-of-type(n+5) {
		display: none;
	}

}


@media screen and (max-width:480px) {
	#home-search-history li:nth-of-type(n+4) {
		display: none;
	}
}


@media screen and (max-width:320px) {
	#home-search-history li:nth-of-type(n+3) {
		display: none;
	}
}



