/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

* { box-sizing: border-box }
img { max-width: 100%; }

:root {
	--font-family: "Inter", sans-serif;
	--brand-font-family: "Inter", sans-serif;
	--site-max-width: 1000px;
	--content-side-padding: 16px;
	
	--accent-color: rgb(52, 199, 89);
	--accent-color-link: rgb(31, 166, 65);
	--primary-color: #000000;
	--secondary-color: #555555;
	--background-color: #ffffff;
	--background-tint-color: rgb(240, 249, 246);
	--background-secondary-color: rgb(230, 249, 243);
	--background-tertiary-color: rgb(177, 221, 207);
	
	--button-background-color: rgba(220,222,228, 0.95);
	--button-hover-background: linear-gradient(rgb(0 0 0/30%) 0 0);
	
	--hover-hilight-background-color: rgba(0,0,0, 0.15);
	
	--divider-color: rgba(0,0,0, 0.12);
	--border-color: rgba(0,0,0, 0.15);
	--icon-border-color: #cccccc;
	--input-border-color: rgba(0,0,0, 0.25);
}

.dark {
	--accent-color: rgb(48, 209, 88);
	--accent-color-link: rgb(48, 209, 88);
	--primary-color: #ffffff;
	--secondary-color: #bbbbbb;
	--background-color: rgb(0, 0, 0);
	--background-tint-color: rgb(1, 16, 4);
	--background-secondary-color: rgb(2, 30, 8);
	--background-tertiary-color: rgb(3, 48, 12);
	
	--button-background-color: rgba(30,32,38, 0.95);
	--button-hover-background: linear-gradient(rgb(0 0 0/30%) 0 0);
	
	--hover-hilight-background-color: rgba(255,255,255, 0.1);
	
	--divider-color: rgba(255,255,255, 0.14);
	--border-color: rgba(255,255,255, 0.15);
	--icon-border-color: #333333;
	--input-border-color: rgba(255,255,255, 0.25);
}

/* Breakpoints: mobile first; tablet; large */
@media (min-width: 768px) {
	
}
@media (min-width: 1024px) {
	
}

html {
	background-color: var(--background-color);
	font-family: var(--font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	font-optical-sizing: auto;
}

body {
	margin: 0;
	padding: 0;
	color: var(--primary-color);
	background-color: var(--background-color);
}


/* Skip to content
-------------------------------------------------- */
.skip-to-content-link {
	position: absolute;
	z-index: 50;
	left: 50%;
	font-size: 16px;
	font-weight: 600;
	color: white;
	background: var(--accent-color);
	padding: 12px 20px;
	position: absolute;
	transform: translateY(-100%);
	transition: transform 0.2s;
}
.skip-to-content-link:focus {
	transform: translateY(0%);
}

/* Typography: Fonts
-------------------------------------------------- */
.brand-font {
	font-family: var(-brand-font);
	font-optical-sizing: auto;
	font-style: normal;
}




/* Typography: Headings
-------------------------------------------------- */
h1, .heading-h1 {
	font-family: var(--brand-font-family);
	font-size: 1.8823529412rem;
	font-weight: 700;
	line-height: 1.2;
	text-wrap: balance;
	margin-top: 0;
	margin-bottom: 0;
}
h2, .heading-h2 {
	font-size: 1.4117647059rem;
	font-weight: 700;
	line-height: 1.17;
	letter-spacing: .009em;
	margin-top: 1.6em;
	margin-bottom: 0;
}
h3, .heading-h3 {
	font-size: 1.2352941176rem;
	font-weight: 600;
	line-height: 1.19;
	margin-top: 1.6em;
	margin-bottom: 0.5em;
}
h4, .heading-h4 {
	font-size: 1.10rem;
	line-height: 1.24;
	margin-top: 1.5em;
	margin-bottom: 0.75em;
}
h5, .heading-h5 {
	font-size: 1.0rem;
	margin-top: 0;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}

.inline-with-heading {
	display: block;
	font-size: 0.5em;
	font-weight: 500;
	margin-top: 0.2em;
	padding-left: 1px;
	color: var(--secondary-color);
}

@media (min-width: 768px) {
	h1, .heading-h1 {
		font-size: 2.5rem;
		line-height: 1.25;
	}
	h2, .heading-h2 {
		font-size: 1.75rem;
		line-height: 1.125;
	}
	h3, .heading-h3 {
		font-size: 1.2rem;
		line-height: 1.14;
	}
	h4, .heading-h4 {
		
	}
	h5, .heading-h5 {
		
	}
}

@media (max-width: 767px) {
	h1 span {
		display: block;
		font-size: 0.5em;
		line-height: 1.3;
		margin-bottom: 0.2em;
	}
}



/* Typography: Standardize paragraph sizing across typical elements
-------------------------------------------------- */
p,
ul,
ol {
	font-size: 1rem;
	margin-block-start: 0.8em;
	margin-block-end: 1.0em;
}

.sub-heading {
	font-size: 1.0rem;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 3px;
	margin-bottom: 1em;
}

.lead {
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.24;
	letter-spacing: .007em;
	margin-top: 1em;
	margin-bottom: 1.5em;
}

.small-print {
	display: block;
	font-size: 12px;
	line-height: 16px;
}

@media (min-width: 50em) {
	.lead {
		font-size: 1.41rem;
		line-height: 1.33;
	}
}

/* Typography: Links
-------------------------------------------------- */
a,
.link {
	color: var(--accent-color-link);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a.text-color {
	color: var(--primary-color);
}

a.plain-link {
	text-decoration: none;
	color: inherit;
}
a.plain-link:hover {
	text-decoration: underline;
}

a.chevron-link {
	position: relative;
}
a.chevron-link:after {
	display: inline-block;
	margin-left: 0.25ch;
	content: '›';
	font-size: 1.15em;
	color: inherit;
}
a.inline-block-link {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	color: var(--accent-color-link);
	background-color: var(--background-tint-color);
	white-space: nowrap;
	margin: 4px 0;
	padding: 8px 16px;
	border-radius: 5px;
}
a.inline-block-link:hover {
	background-color: var(--hover-hilight-background-color);
}

/* Images: Base
-------------------------------------------------- */
figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 1rem 0 3rem 0;
}
figure img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
	height: auto;
	border-radius: 15px;
}
figure.with-background {
	background-color: var(--background-tint-color);
	padding: 25px 22px;
	border-radius: 18px;
}
figure.with-background img {
	width: 100%;
	max-width: 380px;
}
figcaption {
	font-size: 14px;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	color: var(--secondary-color);
	margin-top: 10px;
}
.image {
	max-width: 100%;
}

.inline-icon {
	width: 1.5em;
	height: 1.5em;
	margin-right: 3px;
	vertical-align: middle;
}

/* Images: Brands
-------------------------------------------------- */
.brand-icon {
	border-radius: 12%;
	aspect-ratio: 1 / 1;
}
.brand-icon-lg { width: 150px; height: 150px; }
.brand-logo {
	border-radius: 6px;
}

/* Images: Tipsters
-------------------------------------------------- */
.tipster-icon {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}

/* Images: Colour theme
-------------------------------------------------- */
.show-on-dark-theme {
	display: none;
}
.dark .show-on-dark-theme {
	display: inline-block;
}
.dark .show-on-light-theme {
	display: none;
}

/* Breadcrumbs
   -------------------------------------------------------------------------------- */
.breadcrumbs {
	margin-block-start: -1.8rem;
	margin-block-end: 0.3rem;
	padding: 0;
}

.breadcrumbs ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 0.75em;
	color: var(--secondary-color);
}

.breadcrumbs li + li:before {
	content: "›";
	font-size: 1.25em;
	padding: 0 0.5em;
	color: var(--secondary-color);
}

.breadcrumbs a {
	color: var(--primary-color);
	font-weight: normal
}



















/* Layout
-------------------------------------------------- */
.container {
	max-width: var(--site-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
}

.character-width-container {
	max-width: 38rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	
}

/* Layout: Grid columns
-------------------------------------------------- */
.grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
	.with-aside {
		gap: 8%;
		grid-template-columns: minmax(0, 1fr) 260px;
	}
}




















/* Navbar
-------------------------------------------------- */
.navbar {
	position: sticky;
	z-index: 30;
	top: 0;
	left: 0;
	width: 100%;
	margin-bottom: 40px;
	background-color: rgba(243,249,251, 0.7);
	border-bottom: 0px solid var(--divider-color);
	backdrop-filter: saturate(180%) blur(20px);
}
.dark .navbar {
	background-color: rgba(23,29,31, 0.7);
}

.navbar-container {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: var(--site-max-width);
	height: 50px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
}

.navbar .spacer {
	flex-grow: 1;
}

.navbar-links {
	display: none;
}
.navbar-link {
	display: flex;
	align-items: center;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.navbar-logo {
	width: 132px;
	height: auto;
}
.dark .navbar-logo {
	filter: none;
}

@media (min-width: 768px) {
	.navbar-logo {
		width: 192px;
	}
	.navbar-links {
		display: flex;
	}
	.navbar-links .navbar-link {
		height: 34px;
		padding: 0 10px;
		border-radius: 5px;
	}
	.navbar-links .navbar-link:hover {
		background-color: var(--hover-hilight-background-color);
	}
}

.navbar-buttons {
	display: flex;
	align-items: center;
}

.navbar-button {
	display: inline-flex;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 5px 12px;
	color: var(--primary-color);
	border: none;
	background: transparent;
}

.navbar-button:hover {
	background-color: var(--hover-hilight-background-color);
	border-radius: 3px;
}

.navbar-button .icon {
	width: 24px;
	height: 24px;
}

.dark .navbar-button img {
	filter: invert(1)
}







































/* Components: Buttons
-------------------------------------------------- */
.button {
	appearance: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.2px;
	text-decoration: none;
	white-space: nowrap;
	border: none;
	border-radius: 4px;
	color: var(--accent-color-link);
	background-color: var(--button-background-color);
	height: 2.5em;
	padding: 0 2em;
}

.button.xs { font-size: 11px; font-weight: 600; height: 2.0em; padding: 0 1em; }
.button.sm { font-size: 13px; font-weight: 600; height: 2.5em; padding: 0 1.25em; }

.button.plain {
	color: var(--accent-color-link);
	background-color: transparent;
}
.button.prominent {
	font-weight: 600;
	color: var(--background-color);
	background-color: var(--accent-color);
}
.button.white-background {
	color: var(--accent-color);
	font-weight: 600;
}

.button:hover {
	background-image: var(--button-hover-background);
}
.button:active {
	opacity: 0.7;
}

.button.stretch {
	width: 100%;
}

/* Components: Segmented buttons
-------------------------------------------------- */
.segmented-control {
	display: flex;
	align-items: center;
	gap: 2px;
	max-width: 460px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--background-secondary-color);
	border-radius: 200px;
	padding: 4px;
}
.segmented-control .item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	padding: 0.5em 0em;
	color: var(--primary-color);
	border-radius: 200px;
}
.segmented-control .item:hover {
	background-color: var(--background-tertiary-color);
}
.segmented-control .item.active {
	color: var(--background-color);
	background-color: var(--accent-color);
}

/* Components: Tabbed buttons
-------------------------------------------------- */
.tabbed-control {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-top: 15px;
	margin-bottom: 0;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	padding-left: 5px;
	padding-right: 5px;
	border-bottom: 2px solid var(--divider-color);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.tabbed-control + .tabbed-control {
	margin-top: 1px; /* Stacked */
}
@media screen and (min-width: 768px) {
	.tabbed-control.centered-on-lg {
		justify-content: center;
	}
}
.tabbed-control .item {
	display: flex;
	flex: 0;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	padding: 0.75em 0.8em;
	color: var(--secondary-color);
	border-bottom: 3px solid transparent;
}
.tabbed-control .item:hover {
	color: var(--primary-color);
	border-bottom-color: var(--background-tertiary-color);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.tabbed-control .item.active {
	color: var(--primary-color);
	border-bottom-color: var(--accent-color);
}





















/* Components: Cards
-------------------------------------------------- */
.card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	width: 100%;
	padding: 18px 20px;
	background-color: var(--background-tint-color);
	border: 1px solid var(--border-color);
	border-radius: 6px;
}
a.card:hover {
	background-color: var(--background-secondary-color);
}
a.card:active {
	opacity: 0.7;
}
.card .icon {
	width: 52px;
	height: 52px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px 4px rgba(0,0,0,.24);
}
.card .label {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--accent-color-link);
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.card .sub-label {
	flex-grow: 1;
	display: block;
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	margin-top: 3px;
}
.card .actions {
	margin-top: 2em;
}

/* Components: Tiles
-------------------------------------------------- */
.tile {
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 15px 20px;
	border-top-right-radius: 10px;
}
.tile-heading {
	display: block;
	font-size: 23px;
	line-height: 28px;
	font-weight: 700;
	margin: 0 0 10px 0;
}
.tile-text {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	margin: 0;
	opacity: 0.82;
}
.tile-cta {
	display: block;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
}
.tile:hover {
	filter: brightness(0.8);
}
.tile:active {
	transform: scale(0.975);
}

/* Components: Panels
-------------------------------------------------- */
.panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	text-decoration: none;
	padding: 15px 20px;
	border-radius: 15px;
	background-color: var(--background-secondary-color);
}
.panel.centered {
	align-items: center;
	text-align: center;
}
.panel.subtle {
	background-color: var(--background-tint-color);
	border: 1px solid var(--border-color);
}
.panel-icon {
	width: 100px;
	height: 100px;
}
.panel-heading {
	display: flex;
	align-items: start;
	font-size: 20px;
	margin: 0 0 10px 0;
}
.panel-sub-heading {
	font-size: 1em;
	margin: 0 0 8px 0;
}
.panel-heading .inline-icon {
	margin-top: 2px;
	margin-right: 10px;
}
.panel-text {
	display: block;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	margin: 0;
	opacity: 0.82;
}

/* Components: Call to action panel
-------------------------------------------------- */
.call-to-action-panel {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 50px 0 0 0;
	padding: 30px 16px 22px 16px;
	color: white;
	background-color: var(--accent-color);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 10px;
}
.call-to-action-panel .icon {
	display: block;
	width: 80px;
	height: 80px;
	margin-top: -45px;
	margin-bottom: 15px;
	box-shadow: 0 14px 38px 20px rgba(0,0,0, 0.34);
}
.dark .call-to-action-panel .icon {
	box-shadow: 0 0 38px 20px rgba(0,0,0, 0.52);
}
.call-to-action-panel .title {
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0;
}
.call-to-action-panel .sub-title {
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0;
}
.call-to-action-panel .button {
	margin-top: 15px;
	margin-bottom: 15px;
}
.call-to-action-panel .small-print {
	
}

/* Components: Tags/Categories
-------------------------------------------------- */
.tags {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: start;
	align-items: start;
	gap: 4px;
}
.tags.divided {
	justify-content: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--divider-color);
}
.tag {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 500;
	margin: 0;
	padding: 1px 5px;
	border-radius: 5px;
	color: var(--secondary-color);
	background-color: var(--background-secondary-color);
	border: 1px solid var(--icon-border-color);
	vertical-align: text-bottom;
}
.tag.negative {
	color: rgb(56, 5, 5);
	background-color: rgb(255, 238, 238)
}
.dark .tag.negative {
	color: rgb(228, 187, 187);
	background-color: rgb(46, 5, 5)
}
.tag.positive {
	color: rgb(5, 56, 5);
	background-color: rgb(238, 255, 238)
}
.dark .tag.positive {
	color: rgb(187, 228, 187);
	background-color: rgb(5, 46, 5)
}
.tag.gold {
	color: rgb(0, 0, 0);
	background-color: gold;
}

.tag .icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

/* Components: Feature cards with images
-------------------------------------------------- */
.feature-cards {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) );
	gap: 16px;
}
.feature-card {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	width: 100%;
	padding: 0;
	background-color: var(--background-secondary-color);
	border-radius: 10px;
}
@media screen and (min-width: 768px) {
	
}
.feature-card:hover {
	background-color: var(--hover-hilight-background-color);
}
.feature-card:active {
	transform: scale(0.98);
}
.feature-card .image {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.feature-card .body {
	padding: 18px 20px;
}
.feature-card .label {
	display: block;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0;
}
.feature-card .secondary-label {
	flex-grow: 1;
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-top: 1em;
}





















/* Collections
-------------------------------------------------- */
.collection {
	display: grid;
}

@media screen and (min-width: 768px) {
	.collection.columns {
		column-gap: 26px;
		grid-template-columns: 1fr 1fr;
	}
}

/* Collection: Basic horizontal scroll without snapping etc.
-------------------------------------------------- */
.horizontal-content {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: -16px;
	margin-right: -16px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 0px;
	padding-bottom: 0px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.horizontal-content::-webkit-scrollbar {
	display: none;
}

@media screen and (min-width: 768px) {
	.horizontal-content {
		justify-content: center;
	}
}

/* Collection: Horizontal Track
-------------------------------------------------- */
.horizontal-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: -16px;
	margin-right: -16px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 0;
	padding-bottom: 0;
	scroll-snap-type: x mandatory;
	scroll-padding: 16px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.horizontal-track::-webkit-scrollbar {
	display: none;
}

.horizontal-track-item {
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	width: 48.5%;
	width: calc(50% - 8px);
	max-width: 300px;
	scroll-snap-align: start;
}

/* Sizing. By default we have 2 items in view on small screens, 4 on large. */
.horizontal-track .horizontal-track-item { width: 72%; }

@media screen and (max-width: 767px) {
	.horizontal-track[data-in-view="2.5"] .horizontal-track-item {
		width: 41%;
	}
}

@media screen and (min-width: 768px) {
	.horizontal-track {
		gap: 15px;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		scroll-padding: 0;
	}
	
	/* Sizing. By default, we expect up to 5 items so flex automatically. Use specific sizing where needed. */
	.horizontal-track .horizontal-track-item {
		flex: 1 0 auto;
		width: calc(20% - 12px);
	}
}













































/* Lists
-------------------------------------------------- */
.list {
	display: grid;
	column-gap: 26px;
	list-style: none;
	margin-top: 0;
	margin-bottom: 1rem;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	padding: 0;
}
.list.columns {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.list.columns .column-heading {
	grid-column: 1 / -1;
	text-indent: 15px;
}
.stacked-list {
	margin-top: 1.5em;
	margin-bottom: 2.0em;
}
.stacked-list li {
	margin-top: 0.5em;
}

/* List items: default .list-item supports optional icon, label, optional secondary label, and optional chevron.
-------------------------------------------------- */
.list-item {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	border-top: 1px solid var(--divider-color);
}
.list-item:first-child {
	border-top: none;
}
.list.columns .list-item:first-child {
	border-top: 1px solid var(--divider-color);
}

a.list-item:active {
	background-color: var(--hover-hilight-background-color);
}
@media (hover: hover) {
	a.list-item:hover {
		background-color: var(--hover-hilight-background-color);
	}
}

@media screen and (min-width: 768px) {
	.list {
		margin-left: 0;
		margin-right: 0;
	}

	.list-item {
		padding-left: 2px;
		padding-right: 2px;
	}
}

.list-item .icon {
	flex: 0;
	width: 42px;
	height: 42px;
	margin-right: var(--content-side-padding);
	border: 1px solid var(--icon-border-color);
}

.list-item .logo {
	flex: 0;
	width: 92px;
	height: 45px;
	margin-right: var(--content-side-padding);
	border: 1px solid var(--icon-border-color);
}

.list-item .silk {
	flex: 0;
	width: 42px;
	height: 31px;
	margin-right: var(--content-side-padding);
}

.list-item .time-label {
	font-size: 0.75em;
	font-weight: 600;
	color: var(--secondary-color);
	width: 5ch;
	margin-right: 10px;
}

.list-item .body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.list-item .disclosure {
	flex: 0;
	width: 22px;
	margin-left: 35px;
	opacity: 0.4;
}

.dark .list-item .disclosure {
	filter: invert(1);
	opacity: 0.48;
}

.list-item .label {
	line-height: 1.35;
	margin: 0;
}

.list-item .sub-label {
	display: block;
	font-size: 0.813em;
	line-height: 1.25;
	color: var(--secondary-color);
	margin-top: 2px;
}

.list-item .odds-label {
	font-size: 0.875em;
	font-weight: 600;
}

.list-item .small-print {
	font-size: 9px;
	line-height: 1;
	color: var(--secondary-color);
}

@media screen and (min-width: 768px) {
	.list.small-on-lg .list-item {
		padding-top: 6px;
		padding-bottom: 6px;
		padding-left: 2px;
		padding-right: 2px;
	}
	.list.small-on-lg .list-item .icon {
		width: 36px;
		height: 36px;
	}
	.list.small-on-lg .list-item .label {
		font-size: 15px;
	}
}

/* List where lists are contained in a list where the selection name heads the list!
-------------------------------------------------- */
.list-by-selection .title {
	display: block;
	margin-bottom: 5px;
	font-size: 1.1em;
	font-weight: 500;
}
.list-by-selection .list {
	margin-top: 0.5rem;
	margin-bottom: 30px;
}

/* List where it's a list of inline tipsters
-------------------------------------------------- */
.inline-tips-list {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 8px;
	padding-top: 10px;
	padding-left: 70px;
	margin-bottom: 10px;
	border-top: 1px dashed var(--border-color);
}
.inline-tips-list-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 6px;
	white-space: nowrap;
	font-size: 13px;
	text-decoration: none;
	background-color: var(--background-secondary-color);
	padding: 3px 8px;
	border-radius: 4px;
}
.inline-tips-list-item:hover {
	background-color: var(--background-tertiary-color);
}
.inline-tips-list .icon {
	width: 24px;
	height: 24px;
}
.inline-tips-list .label {
	font-weight: 500;
	color: var(--primary-color);
}
.inline-tips-list .sub-label {
	font-size: 11px;
	font-weight: 400;
	color: var(--secondary-color);
}
.inline-tips-list .tag {
	font-size: 11px;
}

/* Lists: home draw away columns
-------------------------------------------------- */
.home-draw-away-columns {
	display: grid;
	grid-template-columns: auto 20px auto;
}
.draw-column { text-align: center; justify-content: center; }
.away-column { text-align: right; justify-content: end; }

.home-draw-away-tips {
	display: grid;
}
@media screen and (min-width: 768px) {
	.home-draw-away-tips {
		grid-template-columns: 1fr 1fr;
	}
}
.home-draw-away-tips .inline-tips-list {
	padding-left: 0;
}
.home-draw-away-tips .away .inline-tips-list {
	align-items: end;
}
.home-draw-away-tips .away .inline-tips-list-item {
	flex-direction: row-reverse;
}




/* Percentage bar
-------------------------------------------------- */
.percentage-bar {
	position: relative;
	display: block;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background-color: var(--background-tertiary-color);
	overflow: hidden;
}
.percentage-bar .value {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 6px;
	background-color: var(--accent-color);
}
.percentage-bar + .list .list-item:first-child {
	border-top: none;
}




















/* Matrix view
-------------------------------------------------- */
.races-matrix {
	font-size: 14px;
	background-color: var(--background-tint-color);
	margin-top: 10px;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
@media screen and (min-width: 768px) {
	.races-matrix {
		margin-left: 0;
		margin-right: 0;
		border: 1px solid var(--border-color);
		border-radius: 6px;
	}
}
.races-matrix .row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.races-matrix .key {
	display: block;
	flex: 0 0 120px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: inherit;
	text-decoration: none;
	padding: 8px 0;
}
.races-matrix .key:hover {
	color: var(--accent-color-link);
}
.races-matrix .item {
	flex: 0 0 60px;
	color: var(--accent-color-link);
	text-align: center;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px dashed var(--border-color);
}
.races-matrix .row:last-child .item {
	border-bottom: none;
}
.races-matrix .item.off {
	color: var(--primary-color);
}
.races-matrix .item.abandoned {
	color: var(--secondary-color);
}
.races-matrix a.item:hover {
	background-color: var(--hover-hilight-background-color);
}


















/* Tipster profile header
-------------------------------------------------- */
.tipster-profile-header {
	display: flex;
	margin: 15px 0;
}
.tipster-profile-header .icon {
	flex: 0 0 auto;
	width: 92px;
	height: 92px;
	margin-right: 12px;
}
.tipster-profile-header .body {
	flex: 1;
}
.tipster-profile-header .label {
	display: block;
	font-size: 19px;
	font-weight: 500;
}
.tipster-profile-header .sub-label {
	display: flex;
	align-items: center;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 5px;
}
.tipster-profile-header .portal-icon {
	width: 40px;
	height: 40px;
	margin-right: 8px;
	border-radius: 6px;
}








































/* Articles
-------------------------------------------------- */
.by-line {
	display: flex;
	align-items: center;
	gap: 0.25em;
	font-size: 11px;
	font-weight: 600;
	padding: 0 0 1.0em 0;
}

.by-line .date {
	color: var(--secondary-color);
}

.by-line .date:before {
	content: "\2013";
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

picture {
	width: 100%;
}
.picture-image {
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 5px;
}

/* Add a .text-link class for when we're outside of an .article */
.article a,
.text-link {
	font-weight: bold;
}

.article p:first-of-type::first-line {
	font-weight: bold;
	color: var(--primary-color);
}
.article p:first-of-type::first-letter {
	font-family: serif;
	-webkit-initial-letter: 3.5 3;
	initial-letter: 3.5 3;
	font-weight: bold;
	line-height: 1;
	margin-right: 0.5rem;
}

/* Some stuff that's related to articles but doesn't necessarily need to be a child of .article */
.quote,
.call-out {
	display: block;
	background-color: var(--background-secondary-color);
	margin: 2em 0;
	padding: 15px 25px 15px 25px;
	border-left: 3px solid var(--accent-color);
	border-radius: 8px;
}
.quote .caption {
	display: block;
	font-size: 0.75em;
	margin-top: 0.5em;
	margin-bottom: 4px;
}
.alert {
	display: block;
	background-color: var(--background-tint-color);
	margin: 2em 0;
	padding: 15px 25px;
	border-left: 3px solid var(--accent-color);
	border-radius: 8px;
}

.alert.error {
	border-left-color: rgb(255, 110, 110);
	color: rgb(69, 2, 2);
	background-color: rgb(255, 238, 238);
}
.dark .alert.error {
	border-left-color: red;
	background-color: rgb(50, 4, 4);
	color: rgb(255, 238, 238);
}

/* Also read - related articles - link block */
.also-read {
	display: block;
	background-color: var(--background-tint-color);
	margin: 1em 0 2em 0;
	padding: 15px 25px 15px 25px;
	border: 1px solid var(--accent-color);
	border-radius: 8px;
}
.also-read strong {
	display: inline-block;
	margin-right: 0.5ch;
}
.also-read a {
	font-weight: bold;
}
.also-read span {
	display: block;
	font-size: 0.9em;
	line-height: 1.3;
	color: var(--secondary-color);
	margin: 2px 0 0 0;
}

.article-footer {
	font-size: 13px;
	font-weight: 500;
	margin-top: 50px;
	margin-bottom: 30px;
	padding-top: 15px;
	border-top: 1px solid var(--divider-color);
}

































/* Side nav
-------------------------------------------------- */
.sidenav {
	position: fixed;
	z-index: 9;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	height: calc(100vh - 50px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background-color: var(--background-tint-color);
	padding-top: 0px;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	opacity: 1;
	transform: translateX(100%);
	transition: transform .34s;
	transition-timing-function: cubic-bezier(.32, .08, .24, 1);
}

@media (min-width: 768px) {
	.sidenav {
		left: 65%;
		width: 35%;
		padding-left: 40px;
		padding-right: 40px;
	}
}

.sidenav-is-open .sidenav {
	overflow: auto;
	opacity: 1;
	transform: translateX(0%);
	transition: transform 0.28s;
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.sidenav-menu {
	margin: 1em 0;
}
.sidenav-menu .menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.8em 4px;
	font-weight: 500;
	text-decoration: none;
	color: var(--primary-color);
}
.sidenav-menu .menu-item:hover {
	background-color: var(--hover-hilight-background-color);
	border-radius: 6px;
}
.sidenav-menu .menu-item.active {
	color: var(--accent-color-link);
}














/* Tables
-------------------------------------------------- */
.table-container {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.table {
	width: 100%;
	border-collapse: collapse;
}
.table th {
	text-align: left;
	white-space: nowrap;
}
.table th, .table td {
	padding: 4px 0;
	border-bottom: 1px solid var(--divider-color);
}



































/* Forms: inputs
-------------------------------------------------- */
.input-field {
	margin-block-end: 1rem;
	text-align: left;
}
.input-field label {
	display: block;
	font-size: 0.913em;
	font-weight: 600;
	margin: 0 0 6px 0;
}
.input {
	appearance: none;
	display: block;
	font-size: 17px;
	width: 100%;
	height: 2.75em;
	color: var(--primary-color);
	border: none;
	border-radius: 10px;
	background-color: var(--background-secondary-color);
	margin: 0;
	padding: 0 1.5ch;
}

/* Forms: radio/checkboxes
-------------------------------------------------- */
.input-field .radio-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 1em;
	margin: 0 0 1em 0;
	padding: 8px 12px;
	border-radius: 4px;
}
.radio-label:hover {
	background-color: var(--hover-hilight-background-color);
}
.radio-label > input {
	width: 1.0;
	height: 1.0;
}

/* Forms: hint/help text
-------------------------------------------------- */
.input-hint {
	display: block;
	font-size: 0.875em;
	line-height: 1.3;
	color: var(--secondary-color);
}

/* Forms: textarea
-------------------------------------------------- */
textarea.input {
	height: auto;
	padding-top: 1em;
	padding-bottom: 1em;
}














/* Natural accordians!
-------------------------------------------------- */
details {
	border-radius: 5px;
	margin-bottom: 5px;
}

details .content {
	padding: 0 var(--content-side-padding) 1px var(--content-side-padding);
}

details summary {
	display: flex;
	font-size: 1.0;
	line-height: 1.3;
	font-weight: 600;
	padding: 0.75em var(--content-side-padding);
	background-color: var(--background-secondary-color);
	border-radius: 5px;
	cursor: pointer;
}

details p {
	font-size: 15px;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

@media (hover: hover) {
	details summary:hover {
		background-color: var(--hover-hilight-background-color);
	}
}














/* Footer
-------------------------------------------------- */
#site-footer {
	font-size: 13px;
	text-align: center;
	color: var(--secondary-color);
	margin-top: 100px;
	padding: 15px 0 0 0;
	border-top: 1px solid var(--divider-color);
}

#site-footer .footer-copyright {
	display: inline-block;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	#site-footer .footer-copyright {
		margin-right: 0;
	}
}
@media (min-width: 768px) {
	#site-footer .footer-copyright {
		margin-right: 10px;
	}
}

#site-footer .logo-row {
	background-color: white;
	text-align: center;
	margin-top: 15px;
	padding: 10px 0;
}

#site-footer .footer-logo {
	width: auto;
	height: 21px;
	margin: 5px;
	vertical-align: middle;
}

@media (min-width: 768px) {
	#site-footer .footer-logo {
		height: 30px;
		margin: 5px 15px;
	}
}

#site-footer .inline-links {
	display: block;
	margin: 0 0 0 0;
	padding: 0;
	list-style: none;
	font-size: 1em;
}
#site-footer .inline-links li {
	display: inline-block;
}
#site-footer .inline-links a {
	display: block;
	text-decoration: none;
	color: var(--primary-color);
	padding: 3px 12px;
	border-radius: 3px;
}
#site-footer .inline-links a:hover {
	background-color: var(--hover-hilight-background-color);
}






















/* Colours
-------------------------------------------------- */
.primary-text { color: var(--primary-color) }
.secondary-text { color: var(--secondary-color) }

.review-star-text { color: rgb(255, 158, 0); }
.dark .review-star-text { color: gold; }

.background-accent { background-color: var(--accent-color) }
.background-color { background-color: var(--background-color) }
.background-tint-color { background-color: var(--background-tint-color) }
.background-secondary-color { background-color: var(--background-secondary-color) }

.white-background { background-color: white }








/* Gradient backgrounds
-------------------------------------------------- */
.gradient-teal {
	color: white;
	background-image: linear-gradient(rgba(15, 124, 158, 1) 23.11%, rgba(22, 89, 110, 1) 74.37%);
}
.gradient-blue-red {
	color: white;
	background-color: #170d24;
	background-image:
	radial-gradient(ellipse at 10% 90%, #3c2d83 0%, transparent 55%), radial-gradient(ellipse at 90% 90%, #c33c65 0%, transparent 55%), radial-gradient(ellipse at 90% 10%, #4a74dc 0%, transparent 55%), radial-gradient(ellipse at 10% 10%, #35244f 0%, transparent 55%);
}

.gradient-blue-yellow {
	color: white;
	background-color: #170d24;
	background-image:
	radial-gradient(ellipse at 10% 90%, #bfcb43 0%, transparent 75%), radial-gradient(ellipse at 90% 90%, #38ae86 0%, transparent 75%), radial-gradient(ellipse at 90% 10%, #1d9dc4 0%, transparent 75%), radial-gradient(ellipse at 10% 10%, #425a96 0%, transparent 75%);
}

.gradient-purple-blue {
	color: white;
	background-color: #170d24;
	background-image:
	radial-gradient(ellipse at 10% 90%, #6039f1 0%, transparent 55%), radial-gradient(ellipse at 90% 90%, #d677f4 0%, transparent 55%), radial-gradient(ellipse at 90% 10%, #2b1fc2 0%, transparent 55%), radial-gradient(ellipse at 10% 10%, #c2028c 0%, transparent 55%);
}

.gradient-purple-neon {
	color: white;
	background-color: #170d24;
	background-image:
	radial-gradient(ellipse at 10% 90%, #8f1fe5 0%, transparent 75%), radial-gradient(ellipse at 90% 90%, #2720bb 0%, transparent 75%), radial-gradient(ellipse at 90% 10%, #191c23 0%, transparent 75%), radial-gradient(ellipse at 10% 10%, #08c9f4 0%, transparent 75%);
}










.admin-controls {
	position: fixed;
	z-index: 10;
	bottom: 25px;
	right: 25px;
}


















/* Alignment
-------------------------------------------------- */
.centered { text-align: center }
.right-align { text-align: right; }
@media (min-width: 768px) {
	.centered-on-lg { text-align: center }
}


/* Spacing
-------------------------------------------------- */
hr,
.divider {
	margin: 60px 0;
	border: none;
	height: 1px;
	background-color: var(--divider-color);
}
.margin-top-none { margin-top: 0; }
.margin-top-xs { margin-top: 10px; }
.margin-top-sm { margin-top: 25px; }
.margin-top-md { margin-top: 50px; }
.margin-top-lg { margin-top: 100px; }
.margin-bottom-none { margin-bottom: 0; }
.margin-bottom-xs { margin-bottom: 10px; }
.margin-bottom-sm { margin-bottom: 25px; }
.margin-bottom-md { margin-bottom: 50px; }
.margin-bottom-lg { margin-bottom: 100px; }
.margin-bottom-xl { margin-bottom: 200px; }

.padding-top-xs { padding-top: 10px; }
.padding-top-sm { padding-top: 25px; }
.padding-top-md { padding-top: 50px; }
.padding-top-lg { padding-top: 100px; }




/* Display helpers
-------------------------------------------------- */
.block { display: block }
.hidden { display: none; }
@media (max-width: 767px) {
	.hidden-on-sm { display: none !important; }
}
@media (min-width: 768px) {
	.hidden-on-md { display: none !important; }
}
@media (min-width: 1024px) {
	.hidden-on-lg { display: none !important; }
}
