/*** Colors ***/
	:root {
    	--black: #000;
    	--blackRGB: 0, 0, 0;
		--gray: #E0E0E0;
		--red: #EF473E;
    	--white: #FFF;
	}
	a {
		outline: none !important;
	}
	h1 {
	 	margin-top: .25em;
	}
	h3 {
		white-space: nowrap;
	}
	hr {
		border: 1px solid var(--gray);
		margin: 24px 0;
	}
	.btn {
    	border-radius: 22px;
		display: inline-block;
		font-weight: 700;
		line-height: 16px;
    	padding: 12px 18px;
		text-align: center;
    	text-decoration: none;
		transition: all 0.2s ease-in-out 0s;
	}
	.btn-solid {
		background: var(--black);
		border: none;
		color: var(--white) !important;
	}
	.btn-solid:hover, .btn-solid:focus {
		background: var(--red);
	}
	.btn-outline {
		border: 1.5px solid var(--black);
		color: var(--black);
	}
	.btn-outline:hover, .btn-outline:focus {
		background: var(--black);
		color: var(--white) !important;
	}
	.page__title {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
	}
	.page__title img {
		margin: 6px 12px 6px 0;
		object-fit: contain;
		width: 100px;
	}
	.jump__links {
		display: flex;
    	flex-wrap: wrap;
    	list-style: none;
    	margin: 0;
    	padding: 0;
	}
	.jump__links li {
		border: .5px solid var(--white);
		flex: 1 0 25%;
	}
	.jump__links li a {
		background: var(--black);
		color: var(--white);
		display: inline-block;
		font-weight: 700;
		padding: 12px 24px;
		text-align: center;
		text-decoration: none;
		width: 100%
	}
	.jump__links li a:hover, .jump__links li a:focus {
		background: var(--red);
	}
	.main-content-placeholder {
		margin-top: 0;
	}
	.section__links {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		list-style: none;
		margin: 12px -6px;
		padding: 0;
	}
	.section__links li {
		margin: 6px;
	}
	.sport__links {
		align-items: center;
		border-bottom: 1px solid var(--gray);
		border-top: 1px solid var(--gray);
		display: flex;
		margin-bottom: 24px;
	}
	.sport__links h3 {
		margin-right: 30px;
	}
	.sport__links ul {
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.sport__links ul li {
		border: .5px solid var(--white);
		flex: 1 0 25%;
		min-width: 150px;
	}
	.sport__links ul li a {
		align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		padding: 24px;
		position: relative;
		text-decoration: none;
		transition: all 0.2s ease-in-out 0s;
		width: 100%;
	}
	.sport__links ul li a:hover, .sport__links ul li a:focus {
		background: var(--red);
		color: var(--white) !important;
	}
	.sport__links ul li a:before {
	 	font-family: 'sidearm_sports_font';
		font-size: 60px;
		height: 60px;
		left: 50%;
		position: absolute;
		top: 24px;
		transform: translateX(-50%);
		width: 60px;
	}
	.sport__links ul li a.football:before {
		content: '\e406';
	}
	.sport__links ul li a.basketball:before {
		content: '\e402';
	}
	.sport__links ul li a.baseball:before {
		content: 'e401';
	}
	.sport__name {
		font-size: 18px;
		font-weight: 700;
		line-height: 18px;
		margin-top: 60px;
		text-align: center;
	}
	.sport__header {
	    align-items: center;
    	border-bottom: 1px solid var(--gray);
    	border-top: 1px solid var(--gray);
		display: flex;
    	justify-content: space-between;
	}
	.sport__header .section__links {
	  	justify-content: flex-end;
	}
	.status__definitions {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		list-style: none;
		margin: 0 -12px;
		padding: 0;
		width: calc(100% + 24px);
	}
	.status__definitions li {
		align-items: center;
		background: var(--black);
		color: var(--white);
		display: flex;
		flex: 1 0 calc(33.333% - 24px);
		flex-direction: column;
		justify-content: center;
		margin: 12px;
		min-width: 312px;
		padding: 24px 24px 12px;
		text-align: center;
	}
	.status__title {
    	border-bottom: 3px solid var(--gray);
		font-size: 24px;
    	font-weight: 700;
   		line-height: 24px;
   		padding: 0 12px 6px;
	}
	.status em {
		font-size: 14px;
    	display: inline-block;
    	margin-top: 6px;
	}
	.status__chance {
		margin-top: 0;
	}
@media(max-width: 1023px) {
	.jump__links li {
		flex: auto;
	}
	.sport__links {
		flex-direction: column;
	}
	.sport__links h3 {
		margin-right: 0;
	}
	.status__definitions li {
		flex: 1 0 calc(50% - 24px);
	}
}

@media(max-width: 767px) {
	.page__title {
		justify-content: center;
		text-align: center;
	}
	.page__title img {
		margin: 6px 12px;
		width: 70px;
	}
}
@media(max-width: 650px) {
	.sport__links ul li {
    	flex: 1 0 50%;
	}
}