@-webkit-viewport {
	width: device-width;
	zoom: 1.0;
}
@-moz-viewport {
	width: device-width;
	zoom: 1.0;
}
@-ms-viewport {
	width: device-width;
	zoom: 1.0;
}
@viewport {
	width: device-width;
	zoom: 1.0;
}


/* ------------------------------------------------------
   Variables for easy find and replace


	$link:					#e85505;
	$link-hover:			#ae550d;

	$second-bg-color: #F6F6F6;
	$second-font-color: #707070;
	$table-border-color: #D6D6D6;

	$body-font:				font-family: "Century Gothic W01", 'Century Gothic', sans-serif;
	$heading-font:			700


	Table of Contents for search based navigation

**** Notes

**** Box Model Reset

**** Typography
---- Headings
---- Lists
---- Breadcrumbs
---- Quotations
---- HR
---- Text level elements
---- Links


**** Design Patterns
---- Buttons
---- Expando
---- Highlight
---- Site Messages


**** Images


**** Forms
---- Form Errors
---- Submit Bar
---- Search Form
---- Search pagination
---- Captcha


**** Tables
---- Content tables
---- Responsive table
---- No Styles Table


**** Helper classes
---- Clearfix
---- Hiding classes
---- Pseudo elements
---- Floats and positioning


**** Template Layout
---- Sections
---- Header
---- Blog filters
---- Two abreast side-byside content
---- centered and lined content block
---- Advertisements
---- Alert
---- Social list
---- Expando blocks
---- Footer
---- Content
---- Stats bar
---- Site search
---- Date
---- Result list
---- Race list
---- Race table
---- Club list
---- Clubs template
---- Fields template
---- Magnific popup
---- Site search


**** Widgets
---- Catch all
---- Related Links
---- Blog
---- Simple Image Gallery
---- Children Page Gallery
---- Order Form
---- Videos
---- reCAPTCHA
---- Social Hub


**** Print styles



------------------------------------------------------ */


/* ------------------------------------------------------
**** Notes
---------------------------------------------------------
[ 01 ]
These styles as of 01/08/2019 only used inline on content on the podcast Races Edit Radio.

------------------------------------------------------ */


.old-browser {
	background: #cc1e34;
	text-align: center;
	padding: 10px 20px;
	color: #fff;
}

.old-browser a {
	color: #fff;
	text-decoration: underline;
	font-weight: bold;
}

.old-browser a:hover,
.old-browser a:focus,
.old-browser a:active {
	color: #fff;
	text-decoration: none;
}

/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */

html {
	font-size: 62.5%;
}

body {
	line-height: 1.6;
	font-size: 1.7em;
	color: #222;
	font-family: "Century Gothic W01", 'Century Gothic', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* BP 1 */
@media screen and (max-width: 1190px) {
	body {
		font-size: 1.5em;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	body {
		font-size: 1.4em;
	}
}


/* ---- Headings ---- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 2.5rem 0 1.5rem 0;
	font-weight: 700;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
	font-weight: normal;
	line-height: 1;
	color: #8a7b7b;
}

h1, .h1 {
	line-height: 1.2;
	font-size: 2.8rem;
}
h2, .h2 {
	font-size: 2.5rem;
	line-height: 1;
}
h3, .h3 {
	font-size: 2.3rem;
}
h4, .h4 {
	font-size: 2.1rem;
}
h5, .h5 {
	font-size: 1.9rem;
}
h6, .h6 {
	font-size: 1.7rem;
}

/* BP 2 */
@media screen and (max-width: 920px) {
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6 {
		margin: 2rem 0 1.2rem 0;
	}
	h1, .h1 {
		line-height: 2.6rem;
		font-size: 2.4rem;
	}

	h2, .h2 {
		font-size: 2.1rem;
	}

	h3, .h3 {
		font-size: 1.9rem;
	}

	h4, .h4 {
		font-size: 1.7rem;
	}

	h5, .h5 {
		font-size: 1.5rem;
	}

	h6, .h6 {
		font-size: 1.4rem;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6 {
		margin: 1.6rem 0 0.9rem 0;
	}
	h1, .h1 {
		line-height: 2.3rem;
		font-size: 2rem;
	}

	h2, .h2 {
		font-size: 1.8rem;
	}

	h3, .h3 {
		font-size: 1.7rem;
	}

	h4, .h4 {
		font-size: 1.5rem;
	}

	h5, .h5 {
		font-size: 1.3rem;
	}

	h6, .h6 {
		font-size: 1.2rem;
	}
}

.heading-inline {
	display: inline;
	float: left;
	padding: 0;
}

p,
ol,
ul,
dl,
address {
	margin: 0 0 1.5rem;
}

small {
	font-size: 1.28rem;
}


/* ---- Lists ---- */
ul,
ol {
	padding: 0 0 0 2rem;
}

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

ul.inline,
ol.inline {
	list-style-type: none;
	margin-left: 0;
}
ul.inline > li,
ol.inline > li {
	display: inline-block;
	padding-left: 12px;
	padding-right: 12px;
}


/* ---- Breadcrumbs ---- */
.breadcrumb {
	list-style: none;
	margin: 0 0 25px;
	padding: 0;
	font-size: 1.1rem;
	text-transform: uppercase;
}
.breadcrumb > li {
	display: inline;
}
.breadcrumb > li:before {
	content: "\00a0/\00a0";
}
.breadcrumb > li:first-child:before {
	content: none;
}


/* ---- Quotations ---- */
blockquote {
	margin: 1.5rem 0;
	padding: 5px 20px 15px;
	background: #f6f6f6;
	font-style: normal;
}


/* ---- HR ---- */
hr {
	box-sizing: content-box;
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 2em 0;
	padding: 0;
	clear: right;
}


/* ---- Text level elements ---- */
abbr[title] {
	border-bottom: 1px dotted #c6bfbf;
	cursor: help;
}

b, strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

ins {
	background-color: #f6f6f6;
	color: #473f3f;
	text-decoration: none;
}

mark {
	background-color: #f6f6f6;
	color: #473f3f;
	font-style: italic;
	font-weight: bold;
}

pre,
code,
kbd,
samp {
	font-family: Monaco, Courier New, monospace;
	color: #484040;
	background: #efefef;
	background: rgba(0, 0, 0, .07);
	padding: 0 2px;
	margin: 0 -2px;
}

pre {
	white-space: pre;
	white-space: pre-wrap;

	padding: 20px 20px;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}


/* ---- Links ---- */
a {
	color: #344f83;
}

a:hover,
a:focus {
	color: #0d2848;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
	outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
	outline: 0;
}

/* No style links */
.no-style-link {
	text-decoration: none;
	color: inherit;
}


/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */

/* ---- Buttons ---- */
.button {
	display: inline-block;
	margin-bottom: 0;
	white-space: nowrap;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	background-color: #7ac143;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid transparent;
	transition: all 120ms ease-in;
	outline: none;
	position: relative;
}

.button.icon-before:before,
.button.icon-after:after, {
	color: #438c3e;
}

.button:hover,
.button:focus {
	background-color: #344f83;
	color: #fff;
	border-color: #344f83;
}

/* Buttons with icons */
.button.icon-before:before,
.button.icon-after:after {
	font-size: 12px;
}
.button.icon-before:before {
	margin-right: 7px;
}
.button.icon-after:after {
	margin-left: 7px;
}

/* Save */
.button.icon-save.icon-before:before,
.button.icon-save.icon-after:after {
	font-size: 13px;
}

/* Buttons with only icons */
.button.button-icon.icon-before:before,
.button.button-icon.icon-after:after {
	margin: 0;
}

/* Small */
.button.button-icon.button-small {
	padding: 10px 9px 8px;
}
.button.button-icon.button-small.icon-before:before,
.button.button-icon.button-small.icon-after:after {
	font-size: 14px;
}


/* Regular (default) */
.button.button-icon,
.button.button-icon.button-regular {
	padding: 11px 11px 9px;
}
.button.button-icon.icon-before:before,
.button.button-icon.icon-after:after,
.button.button-icon.button-regular.icon-before:before,
.button.button-icon.button-regular.icon-after:after {
	font-size: 21px;
}

/* Large */
.button.button-icon.button-large {
	padding: 13px 13px 9px;
}
.button.button-icon.button-large.icon-before:before,
.button.button-icon.button-large.icon-after:after {
	font-size: 25px;
}



.button.button--xsmall {
	font-size: 1.2rem;
	padding: 2px 8px;
	border-radius: 3px;
}

/* Small */
.button.button-small,
.field-element--button.field-element--small .button {
	font-size: 1.5rem;
	padding: 5px 10px 5px;
}

/* Regular (default) */
.button,
a.button-blue,
.button-regular {
	padding: 7px 18px 7px;
	font-size: 1.9rem;
	line-height: 1.2;
}

/* Large */
.button.button-large,
.field-element--button.field-element--large .button {
	font-size: 2.4rem;
	padding: 13px 24px;
}


/* Red */
.button.button-red {
	background-color: #7ac143;
	color: #fff;
	border-color: #7ac143;
}
.button.icon-before:before,
.button.icon-after:after,
.button.button-red.icon-before:before,
.button.button-red.icon-after:after {
	color: #0d7344;
}

.button.button-red:hover,
.button.button-red:focus {
	background-color: #344f83;
	color: #fff;
	border-color: #344f83;
}

/* Blue */
.button-blue {
	display: inline-block;
	margin-bottom: 0;
	white-space: nowrap;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	font-weight: normal;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid transparent;
	transition: all 120ms ease-in;
	outline: none;
	position: relative;
	background-color: #24abe2;
	color: #fff;
	border-color: #24abe2;
}
.button-blue.icon-before:before,
.button-blue.icon-after:after {
	color: #fff;
}
.button-blue:hover,
.button-blue:focus {
	background-color: #344f83;
	color: #fff;
	border-color: #344f83;
}

/* Outline white */
.button.button-outline-white {
	background-color: transparent;
	color: #fff;
	border-color: #FFF;
}
.button.button-outline-white.icon-before:before,
.button.button-outline-white.icon-after:after {
	color: #2A333E;
}
.button.button-outline-white:hover,
.button.button-outline-white:focus {
	background-color: rgba(0,0,0,0.2);
	color: #fff;
}

/* Grey */
.button.button-grey {
	background-color: #dedede;
	color: #222;
	border-color: #dedede;
}
.button.button-grey.icon-before:before,
.button.button-grey.icon-after:after {
	color: #2A333E;
}
.button.button-grey:hover,
.button.button-grey:focus {
	background-color: #e6e6e6;
	color: #222;
	border-color: #e6e6e6;
}

/* Dark grey */
.button.button-darkgrey {
	background-color: #545454;
	color: #fff;
	border-color: #545454;
}
.button.button-darkgrey.icon-before:before,
.button.button-darkgrey.icon-after:after {
	color: #2A333E;
}
.button.button-darkgrey:hover,
.button.button-darkgrey:focus {
	background-color: #5f5f5f;
	color: #fff;
	border-color: #5f5f5f;
}

.button-block {
	display: block;
	width: 100%;
}

.button.button--moshtix {
	display: inline-block;
	text-transform: uppercase;
}

.button--moshtix svg {
	width: 19px;
	height: 12px;
	margin-right: 5px;
}

#calendar .button.button--moshtix {
	color: #fff;
}

.moshtix-cta {
	display: block;
	margin-top: 0.5em;
	margin-bottom: 0;
}

/* Hover/unhover states */
.button-hover-state {
	display: none;
}
.button:hover .button-hover-state {
	display: inline;
}
.button:hover .button-unhover-state {
	display: none;
}

/* Disabled/unavailable button style */
.button[disabled],
.button-disabled,
.button-disabled:hover,
.button-disabled:focus,
.button-disabled:active {
	background-image: none;
	opacity: 0.4;
	cursor: default;
	box-shadow: none;
}

/* Gets the buttons to line up with form inputs when you want them to */
.button.inline {
	margin-bottom: 0.75em;
}

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* Inline buttons */
.inline-buttons .button {
	margin-right: 8px;
	float: left;
}
.inline-buttons .button:last-child {
	margin-right: 0;
}

/* right */
.inline-buttons.inline-buttons-right {
	text-align: right;
}
.inline-buttons.inline-buttons-right .button {
	margin-right: 0;
	margin-left: 8px
}
.inline-buttons.inline-buttons-right .button:first-child {
	margin-left: 0;
}


/* BP 1 */
@media screen and (max-width: 1190px) {
	/* Large turn regular */
	.button.button-large,
	.field-element--button.field-element--large .button {
		padding: 7px 18px 7px;
		font-size: 1.9rem;
		line-height: 1.2;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	/* Large and regular turn small */
	.button,
	.button-regular,
	.button.button-large,
	.field-element--button.field-element--large .button {
		font-size: 1.5rem;
		padding: 5px 10px 5px;
	}
}


/* ---- Highlight ---- */
.highlight,
.highlight--right,
.highlight--left {
	margin: 0 0 1.5rem;
	padding: 30px;
	background: #f6f6f6;
}

@media screen and (min-width: 1000px) {
	.highlight--left {
		float: left;
		width: 45%;
		margin-right: 20px;
	}

	.highlight--right {
		float: right;
		width: 45%;
		margin-left: 20px;
	}
}

.highlight *:last-child,
.highlight--right *:last-child,
.highlight--left *:last-child {
	margin-bottom: 0;
}

.highlight > h2:first-child,
.highlight > h3:first-child,
.highlight > h4:first-child {
	margin-top: 0;
}


/* ---- Site Messages ---- */
ul.messages {
	list-style: none;
	margin: 16px 0 25px;
	padding: 0;
}
ul.messages li {
	margin: 0 0 15px;
	padding: 10px 20px;
	vertical-align: bottom;
	text-align: left;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.2em;
}
ul.messages .error {
	background: #E04D4D;
	border-left: 4px solid #B72323;
	color: #FFF !important;
}
ul.messages .confirm {
	color: #FFF !important;
	background: #6DBB5A;
	border-left: 4px solid #439230;
}
ul.messages a {
	color: #FFF;
}


/* ------------------------------------------------------
**** Images
------------------------------------------------------ */

img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

/* ------------------------------------------------------
**** Forms
------------------------------------------------------ */

/* Attach wrapper */
.field-element-attach-wrapper {
	position: relative;
}
.field-element-attach-wrapper .field-element .field-input .textbox {
	padding-right: 55px;
}
.field-element-attach-button {
	position: absolute;
	right: 0;
	top: 1px;
	-webkit-appearance: none;
	padding: 0;
	border: none;
	outline: none;
	background: #d6d6d6 url(../images/icon-search-grey.png) no-repeat 10px 5px;
	width: 42px;
	border-radius: 0 5px 5px 0;
	z-index: 1;
}

/* White */
.field-element-attach-button.field-element-attach-button--white {
	background-color: #f2f2f2;
}
.field-element-attach-button.field-element-attach-button--white:hover,
.field-element-attach-button.field-element-attach-button--white:focus {
	background-color: #d6d6d6;
}

/* Hover */
.field-element-attach-button:hover,
.field-element-attach-button:focus {
	background-color: #e0e0e0;
}


/* Small */
.field-element-attach-button--small {
	height: 30px;
}

/* ---- Inline label ---- */
.field-element--inline-label .field-label {
	display: inline-block;
	margin: 0 10px 0 0;
}
.field-element--inline-label .field-input {
	display: inline-block;
}

/* ---- Base styles ---- */
.field-element {
	margin-bottom: 21px;
}

.field-element:before,
.field-element:after {
	content: " ";
	display: table;
}

.field-element:after {
	clear: both;
}

.field-input .textbox,
.field-input select {
	display: block;
	width: 100%;
	outline: none;
	line-height: normal;
	padding: 11px 20px 10px;
	-webkit-appearance: none;
}
.field-input .textbox,
.field-input select,
.field-element--fileselector .fs-preview-wrapper {
	font-size: 1.5rem;
	line-height: 1.2;
	border: 1px solid #CED2DC;
	border-radius: 5px;
	background-color: #EEF0F3;
}

/* ---- Inline ---- */
.field-elements-inline:before,
.field-elements-inline:after {
	content: " ";
	display: table;
}

.field-elements-inline:after {
	clear: both;
}
.field-elements-inline .field-element {
	float: left;
	margin-right: 1%;
}
.field-elements-inline .field-element:last-child {
	margin-right: 0;
}

/* Button */
.field-elements-inline .field-element--button {
	margin-top: 29px;
}
.field-elements-inline .field-element--button.field-element--inline-no-label {
	margin-top: 0;
}

/* Add top margin to make empty space for margins */
.field-element--inline-with-label {
	margin-top: 29px;
}

/* ---- White ---- */
.field-element.field-element--white .field-input .textbox,
.field-element.field-element--white .field-input select,
.field-element--white.field-element--fileselector .fs-preview-wrapper {
	background-color: #fff;
}


/* ---- Small ---- */
.field-element--small .field-input .textbox,
.field-element--small .field-input select {
	font-size: 1.4rem;
	padding: 7px 15px 7px;
}

/* ---- Large ---- */
.field-element--large .field-input .textbox,
.field-element--large .field-input select {
	font-size: 1.8rem;
	padding: 14px 25px 13px;
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.field-element {
		margin-bottom: 13px;
	}
}

/* ---- Disabled ---- */
.field-element--disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.field-element--disabled .textbox[disabled],
.field-element--disabled select[disabled],
.field-element--disabled button[disabled] {
	cursor: not-allowed;
}

/* ---- Caps ---- */
.field-element--caps .textbox,
.field-element--caps select {
	text-transform: uppercase;
}

/* ---- Fieldset ---- */
.field-element fieldset {
	border: none;
	padding: 0;
	margin: 0;
}


/* ---- Labels and legends ---- */
.field-label,
.fieldset__legend {
	font-weight: 600;
	font-size: 1.6rem;
	margin-bottom: 10px;
	line-height: 1.2;
	font-family: "Century Gothic W01", 'Century Gothic', sans-serif;
}

/* Instead of h3s */
.label.heading {
	margin: 30px 0px 20px;
	padding: 8px 8px 8px 0px;
	border-bottom: 1px solid #E2E2E2;
}

/* Hidden labels */
.field-element--hidden-label .field-label,
.field-element--hidden-label .fieldset__legend {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}


/* ---- Required ---- */
.field-label__required {
	text-indent: -9999px;
	line-height: 0;
	display: inline-block;
}

.field-label__required:after {
	content: "*";
	text-indent: 0;
	display: block;
	line-height: inherit;
}


/* ---- Field helpers ---- */
.field-helper {
	font-weight: 400;
	font-size: 1.3rem;
	margin-bottom: 1em;
}

.field-label .field-helper {
	margin-top: 0.3em;
	margin-bottom: 0;
}


/* ---- Field errors ---- */
.field-element.field-element--error  .field-input .textbox,
.field-element.field-element--error  .field-input select {
    background-color: #f3e0e3;
}
.field-error__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.field-error__list__item {
	color: #fff;
	background: #C44556;
	padding: 10px 20px;
	margin: 11px 0;
	border-left: 6px solid #A23947;
}

/* ---- Text area ---- */
textarea {
	resize: vertical;
}

/* ---- Range ---- */
.field-element--range .field-input .textbox {
	-webkit-appearance: slider-horizontal;
	background: none;
	padding: 0;
	border-radius: 0;
	border: none;
	background: none !important;
}
input[type=range]::-moz-focus-outer {
	border: 0;
}


/* ---- Selects ---- */
.field-element .field-input select {
	-moz-appearance: none;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -257px right -104px, top -447px right -92px;
	padding-right: 55px;
}
.field-element .field-input select[multiple] {
	background-image: none;
	padding-right: 20px;
}

.field-element select::-ms-expand,
.daterangepicker select.monthselect::-ms-expand,
.daterangepicker select.yearselect::-ms-expand {
	display: none;
}

/* Multiple selects */
.field-element.field-element--select.field-element--select--multiple select {
	padding: 8px 8px;
	background-image: none;
}

.field-element.field-element--select.field-element--select--multiple option {
	padding: 6px 10px;
}

/* White */
.field-element--white .field-input select {
	background-position: top -257px right -104px, top -607px right -92px;
}

/* White + Small */
.field-element--small.field-element--white .field-input select {
	background-position: top -262px right -104px, top -607px right -92px;
}
/* White + Large */
.field-element--large.field-element--white .field-input select {
	background-position: top -253px right -104px, top -607px right -92px;
}

/* Small */
.field-element--small .field-input select {
	background-position: top -262px right -104px, top -447px right -92px;
}
.field-element--small .field-input select.textbox {
	padding-right: 50px;
}
/* Large */
.field-element--large .field-input select {
	background-position: top -253px right -104px, top -447px right -92px;
}


/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element .field-input select,
	.field-element.field-element--large .field-input select,
	.field-element.field-element--regular .field-input select {
		background-position: top -262px right -104px, top -447px right -92px;
		font-size: 1.4rem;
		padding: 7px 15px 7px;
		padding-right: 55px;
	}
}


/* ---- Checkboxes and radio buttons ---- */
.field-element.field-element--checkbox,
.field-element.field-element--radio {
	font-size: 1.6rem;
}

.field-element input[type="checkbox"],
.field-element input[type="radio"] {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.field-element input[type="checkbox"] + label,
.field-element input[type="radio"] + label {
	padding-left: 34px;
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.field-element input[type="checkbox"] + label:before,
.field-element input[type="radio"] + label:before {
	content: " ";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 13px;
	position: relative;
	top: 4px;
	background-color: #EEF0F3;
	border: 1px solid #CED2DC;
	margin-left: -34px;
	border-radius: 1px;
}

/* Check and dot */
.field-element input[type="checkbox"]:checked + label:after,
.field-element input[type="radio"]:checked + label:after {
	content: " ";
	position: absolute;
	left: 1px;
	top: 6px;
	font-size: 15px;
}


/* Without labels */
.field-element.field-element--checkbox--no-label input[type="checkbox"] + label,
.field-element.field-element--radio--no-label input[type="radio"] + label {
	padding-left: 0;
}

.field-element.field-element--checkbox--no-label input[type="checkbox"] + label:before,
.field-element.field-element--radio--no-label input[type="radio"] + label:before {
	margin-left: 0;
	margin-right: 0;
}

.field-element.field-element--checkbox--no-label input[type="checkbox"]:checked + label:after,
.field-element.field-element--radio--no-label input[type="radio"]:checked + label:after {
	left: 1px;
}

.field-element.field-element.field-element--radio--no-label input[type="radio"]:checked + label:after {
	margin-left: 4px;
}


/* -- Checkboxes -- */

/* Check (pseudo element) */
.field-element input[type="checkbox"]:checked + label:after {
	content: " ";
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -711px left 1px;
	width: 20px;
	height: 20px;
	margin: -2px 0 0 -1px;
}

.field-element--checkboxlist--columns .field-element__input-set {
	-moz-columns: 3;
	columns: 3;
}

/* -- Radio Buttons -- */

/* Radio button (pseudo element) */
.field-element input[type="radio"] + label:before {
	border-radius: 10px;
}

/* Radio dot (pseudo element) */
.field-element input[type="radio"]:checked + label:after {
	left: 6px;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: #58595B;
}

/* -- Varations -- */

/* White */
.field-element.field-element--white input[type="checkbox"] + label:before,
.field-element.field-element--white input[type="radio"] + label:before {
	background-color: #FFF;
}

/* Large */
.field-element.field-element--large input[type="checkbox"] + label:before,
.field-element.field-element--large input[type="radio"] + label:before {
	width: 24px;
	height: 24px;
	margin-right: 16px;
	top: 5px;
}

.field-element.field-element--large input[type="radio"]:checked + label:after {
	left: 7px;
	top: 12px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
}
.field-element.field-element--large input[type="checkbox"]:checked + label:after {
	background-position: top -760px left 1px;
	width: 23px;
	height: 23px;
	margin: -2px 0 0 -1px;
}

/* ---- Color picker ---- */
.field-element--colorpicker .textbox.colorpicker {
	padding: 3px 8px;
	height: 43px;
	width: 50px;
}

/* Small */
.field-element--colorpicker.field-element--small .textbox.colorpicker {
	padding: 2px 7px;
	height: 33px;
	width: 39px;
}

/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element.field-element--colorpicker .textbox.colorpicker,
	.field-element.field-element--colorpicker.field-element--large .textbox.colorpicker,
	.field-element.field-element--colorpicker.field-element-regular .textbox.colorpicker {
		padding: 2px 7px;
		height: 33px;
		width: 39px;
	}
}

/* ---- Money ---- */
.field-element--money .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: top -447px left 0;
}

.field-element--money .field-input {
	position: relative;
}
.field-element--money .field-input .money-symbol:before {
	content: "\00a4";		/* Generic currency sign */
	position: absolute;
	display: block;
	top: 9px;
	left: 0;
	color: #58595B;
	font-weight: bold;
	font-size: 19px;
	width: 41px;
	text-align: center;
}
.field-element--money .field-input .money-symbol--dollar:before {
	content: "$";    /* Dollars */
}
.field-element--money .field-input .money-symbol--pound:before {
	content: "\00a3";    /* Pounds */
}
.field-element--money .field-input .money-symbol--yen:before {
	content: "\00a5";    /* Yen */
}
.field-element--money .field-input .money-symbol--indian_rupee:before {
	content: "\20B9";   /* Indian rupee */
}

/* White */
.field-element--money.field-element--white .field-input .textbox,
.field-element--money.field-element--white.field-element--small .field-input .textbox,
.field-element--money.field-element--white.field-element--large .field-input .textbox {
	background-position: top -607px left 0;
}

/* Small */
.field-element--money.field-element--small .field-input .textbox {
	background-position: top -447px left 0;
}
.field-element--money.field-element--small .field-input .money-symbol:before {
	top: 4px;
}

/* Large */
.field-element--money.field-element--large .field-input .textbox {
	background-position: top -447px left 0;
}
.field-element--money.field-element--large .field-input .money-symbol:before {
	top: 14px;
}

/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element.field-element--money .field-input .textbox,
	.field-element.field-element--money.field-element--large .field-input .textbox,
	.field-element.field-element--money.field-element--regular .field-input .textbox {
		background-position: top -447px left 0;
	}
	.field-element.field-element--white.field-element--money .field-input .textbox,
	.field-element.field-element--white.field-element--money.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--money.field-element--regular .field-input .textbox {
		background-position: top -607px left 0;
	}
	.field-element--money .field-input .money-symbol:before,
	.field-element--money.field-element--large .field-input .money-symbol:before,
	.field-element--money.field-element--regular .field-input .money-symbol:before {
		top: 5px;
	}
}


/* ---- Time pickers ---- */

.field-element--timepicker .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -170px left 12px, top -447px left 0;
}

.ui-timepicker {
	display: block;
	position: absolute;
	height: 200px;
	overflow: auto;
}

.ui-timepicker-standard {
	background-color: #FFF;
	border: 1px solid #CED2DC;
	display: block;
	margin: 3px 0 0;
	padding: 5px;
	list-style: none outside none;
	border-radius: 4px;
}

.ui-timepicker-standard a {
	color: #24292f;
}

.ui-timepicker-standard .ui-state-hover {
	background-color: #EAECF1;
}

.ui-timepicker-standard .ui-menu-item {
	clear: left;
	float: left;
	margin: 0;
	padding: 0;
	width: 100%;
}

.ui-timepicker-standard .ui-menu-item a {
	display: block;
	padding: 5px 10px;
	line-height: 1.5;
	text-decoration: none;
	border-radius: 3px;
}

.ui-timepicker-hidden {
	display: none;
}

/* White */
.field-element--timepicker.field-element--white .field-input .textbox {
	background-position: top -170px left 12px, top -607px left 0;
}

/* White + Small */
.field-element--timepicker.field-element--white.field-element--small .field-input .textbox {
	background-position: top -175px left 12px, top -607px left 0;
}

/* White + Large */
.field-element--timepicker.field-element--white.field-element--large .field-input .textbox {
	background-position: top -166px left 12px, top -607px left 0;
}

/* Small */
.field-element--timepicker.field-element--small .field-input .textbox {
	background-position: top -175px left 12px, top -447px left 0;
}

/* Large */
.field-element--timepicker.field-element--large .field-input .textbox {
	background-position: top -166px left 12px, top -447px left 0;
}


/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element.field-element--timepicker .field-input .textbox,
	.field-element.field-element--timepicker.field-element--large .field-input .textbox,
	.field-element.field-element--timepicker.field-element--regular .field-input .textbox {
		background-position: top -175px left 12px, top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--timepicker .field-input .textbox,
	.field-element.field-element--white.field-element--timepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--timepicker.field-element--regular .field-input .textbox {
		background-position: top -175px left 12px, top -607px left 0;
	}
}

/* ---- Date pickers ---- */

/* Date picker and Date-range picker*/
.field-element--datepicker .field-input .textbox,
.field-element--daterangepicker .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top 11px left 12px, top -447px left 0;
}

/* White */
.field-element--datepicker.field-element--white .field-input .textbox,
.field-element--daterangepicker.field-element--white .field-input .textbox {
	background-position: top 11px left 12px, top -607px left 0;
}
/* White + Small */
.field-element--datepicker.field-element--white.field-element--small .field-input .textbox,
.field-element--daterangepicker.field-element--white.field-element--small .field-input .textbox {
	background-position: top 7px left 12px, top -607px left 0;
}
/* White + Large */
.field-element--datepicker.field-element--white.field-element--large .field-input .textbox,
.field-element--daterangepicker.field-element--white.field-element--large .field-input .textbox {
	background-position: top 15px left 12px, top -607px left 0;
}


/* Small */
.field-element--datepicker.field-element--small .field-input .textbox,
.field-element--daterangepicker.field-element--small .field-input .textbox {
	background-position: top 6px left 12px, top -447px left 0;
}

/* Large */
.field-element--datepicker.field-element--large .field-input .textbox,
.field-element--daterangepicker.field-element--large .field-input .textbox {
	background-position: top 15px left 12px, top -447px left 0;
}


/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element.field-element--datepicker .field-input .textbox,
	.field-element.field-element--daterangepicker .field-input .textbox,
	.field-element.field-element--datepicker.field-element--large .field-input .textbox,
	.field-element.field-element--daterangepicker.field-element--regular .field-input .textbox,
	.field-element.field-element--datepicker.field-element--large .field-input .textbox,
	.field-element.field-element--daterangepicker.field-element--regular .field-input .textbox {
		background-position: top 6px left 12px, top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--datepicker .field-input .textbox,
	.field-element.field-element--white.field-element--daterangepicker .field-input .textbox,
	.field-element.field-element--white.field-element--datepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--daterangepicker.field-element--regular .field-input .textbox,
	.field-element.field-element--white.field-element--datepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--daterangepicker.field-element--regular .field-input .textbox {
		background-position: top 7px left 12px, top -607px left 0;
	}
}


/* Date/time picker */
.field-element--datetimepicker .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -88px left 12px, top -447px left 0;
}

/* White */
.field-element--datetimepicker.field-element--white .field-input .textbox {
	background-position: top -88px left 12px, top -607px left 0;
}

/* White + Small */
.field-element--datetimepicker.field-element--small.field-element--white .field-input .textbox {
	background-position: top -93px left 12px, top -607px left 0;
}
/* White + Large */
.field-element--datetimepicker.field-element--large.field-element--white .field-input .textbox {
	background-position: top -85px left 12px, top -607px left 0;
}

/* Small */
.field-element--datetimepicker.field-element--small .field-input .textbox {
	background-position: top -93px left 12px, top -447px left 0;
}

/* Large */
.field-element--datetimepicker.field-element--large .field-input .textbox {
	background-position: top -85px left 12px, top -447px left 0;
}

/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element.field-element--datetimepicker .field-input .textbox,
	.field-element.field-element--datetimepicker.field-element--large .field-input .textbox,
	.field-element.field-element--datetimepicker.field-element--regular .field-input .textbox {
		background-position: top -93px left 12px, top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--datetimepicker .field-input .textbox,
	.field-element.field-element--white.field-element--datetimepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--datetimepicker.field-element--regular .field-input .textbox {
		background-position: top -93px left 12px, top -607px left 0;
	}
}


/* Container Appearance */
.daterangepicker {
	position: absolute;
	background: #fff;
	top: 100px;
	left: 20px;
	padding: 4px;
	margin-top: 2px;
	border-radius: 4px;
	width: 278px;
}

.daterangepicker.opensleft:before {
	position: absolute;
	top: -7px;
	right: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.opensleft:after {
	position: absolute;
	top: -6px;
	right: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.openscenter:before {
	position: absolute;
	top: -7px;
	left: 0;
	right: 0;
	width: 0;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.openscenter:after {
	position: absolute;
	top: -6px;
	left: 0;
	right: 0;
	width: 0;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.opensright:before {
	position: absolute;
	top: -7px;
	left: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.opensright:after {
	position: absolute;
	top: -6px;
	left: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.dropup{
	margin-top: -5px;
}

.daterangepicker.dropup:before{
	top: initial;
	bottom:-7px;
	border-bottom: initial;
	border-top: 7px solid #CED2DC;
}

.daterangepicker.dropup:after{
	top: initial;
	bottom:-6px;
	border-bottom: initial;
	border-top: 6px solid #fff;
}

.daterangepicker.dropdown-menu {
	max-width: none;
	z-index: 3000;
	display: none;
	border: 1px solid #CED2DC;
}

.daterangepicker.single .ranges, .daterangepicker.single .calendar {
	float: none;
}

.daterangepicker .calendar {
	display: none;
	max-width: 270px;
	margin: 4px;
}

.daterangepicker.show-calendar .calendar {
	display: block;
}

.daterangepicker .calendar.single .calendar-table {
	border: none;
}

/* Calendars */
.daterangepicker .calendar th, .daterangepicker .calendar td {
	white-space: nowrap;
	text-align: center;
	min-width: 32px;
	border: 1px solid #E8E8E8;
}

.daterangepicker .calendar-table {
	border: 1px solid #ddd;
	padding: 4px;
	border-radius: 4px;
	background: #fff;
}

.daterangepicker table {
	width: 100%;
	margin: 0;
	border: none;
}

.daterangepicker td,
.daterangepicker th {
	text-align: center;
	width: 20px;
	height: 20px;
	white-space: nowrap;
	padding: 2px;
}
.daterangepicker td,
.daterangepicker th.available {
	cursor: pointer;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
	color: #999;
	background: #fff;
	border-color: #E8E8E8;
}
.daterangepicker td.off.in-range {
	background-color: #F4FAFC;
}
.daterangepicker td.off.active {
	background-color: #AAD8EA;
	color: #FFF;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
	color: #999;
	cursor: not-allowed;
	text-decoration: line-through;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
	background: #EAECF1;
}

.daterangepicker td.in-range {
	background: #ebf4f8;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
	background-color: #358AAB;
	border-color: #358AAB;
	color: #fff;
}

.daterangepicker td.week, .daterangepicker th.week {
	font-size: 80%;
	color: #ccc;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
	font-size: 12px;
	padding: 1px;
	height: auto;
	margin: 0;
	cursor: default;
}

.daterangepicker select.yearselect,
.daterangepicker select.monthselect,
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
	margin-bottom: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 62px;
	background-color: #FFF;
	outline: none;
	border-radius: 5px;
	font-size: 1.4rem;
	line-height: 1.2;
	padding: 5px 23px 5px 8px;
	border: 1px solid #CED2DC;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -355px right -119px, top -607px right -115px;
}

.daterangepicker select.monthselect {
	margin-right: 2%;
	width: 40%;
}

.daterangepicker select.yearselect {
	width: 44%;
}

.daterangepicker th.month {
	width: auto;
}

/* Previous/Next buttons */
.daterangepicker th.prev .daterangepicker-prev-icon,
.daterangepicker th.next .daterangepicker-next-icon {
	width: 11px;
	height: 17px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	display: block;
	margin: 0 auto;
}
.daterangepicker th.prev:hover,
.daterangepicker th.next:hover {
	background: none;
	opacity: 0.8;
}
.daterangepicker th.prev .daterangepicker-prev-icon {
	background-position: top -820px left 0px;
}
.daterangepicker th.next .daterangepicker-next-icon {
	background-position: top -880px left 1px;
}

.daterangepicker th.prev,
.daterangepicker th.next,
.daterangepicker th.month,
.daterangepicker .calendar-table thead tr:first-child th {
	border: none;
	background: none;
}

.daterangepicker .calendar-table thead tr:nth-child(2) th {
	background-color: #F2F2F5;
}

/* Text Input Above Each Calendar */
.daterangepicker .input-mini {
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #555;
	display: block;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	margin: 0 0 5px 0;
	padding: 0 6px 0 28px;
	width: 100%;
}

.daterangepicker .input-mini.active {
	border: 1px solid #358AAB;
	background-color: rgb(255, 255, 238);
}

.daterangepicker .daterangepicker_input i {
	position: absolute;
	left: 8px;
	top: 7px;
	color: #596474;
}

.daterangepicker .daterangepicker_input {
	position: relative;
}

/* Time Picker */
.daterangepicker .calendar-time {
	text-align: center;
	margin: 5px auto;
	line-height: 30px;
	position: relative;
}

.daterangepicker .calendar-time select.disabled {
	color: #ccc;
	cursor: not-allowed;
}

/* Predefined Ranges */
.daterangepicker .ranges {
	font-size: 11px;
	float: none;
	margin: 4px;
	text-align: left;
}

.daterangepicker .applyBtn {
	background-color: #35ab75;
	color: #FFF;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:focus {
	background-color: #2C9867;
	color: #FFF;
}

.daterangepicker .cancelBtn {
	background-color: #D0D3DA;
	color: #24292F;
}
.daterangepicker .cancelBtn:hover,
.daterangepicker .cancelBtn:focus {
	background-color: #BCBFC5;
	color: #24292f;
}

.daterangepicker .ranges ul {
	list-style: none;
	margin: 0 auto 12px;
	padding: 0;
	width: 100%;
}

.daterangepicker .ranges li {
	font-size: 1.3rem;
	background: #EAECF1;
	border: 1px solid #f5f5f5;
	color: #24292F;
	padding: 4px 12px 3px;
	margin-bottom: 7px;
	border-radius: 5px;
	cursor: pointer;
	line-height: 1.2;
}

.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
	background: #358AAB;
	border: 1px solid #358AAB;
	color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
	.daterangepicker{
		width: auto;
	}

	.daterangepicker .ranges ul {
		width: 160px;
	}

	.daterangepicker.single .ranges ul {
		width: 100%;
	}

	.daterangepicker .calendar.left .calendar-table {
		border-right: none;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

	.daterangepicker .calendar.right .calendar-table {
		border-left: none;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.daterangepicker .calendar.left {
		clear: left;
		margin-right: 0;
	}

	.daterangepicker.single .calendar.left {
		clear: none;
	}

	.daterangepicker.single .ranges,
	.daterangepicker.single .calendar{
		float:left;
	}

	.daterangepicker .calendar.right {
		margin-left: 0;
	}

	.daterangepicker .left .daterangepicker_input {
		padding-right: 12px;
	}

	.daterangepicker .calendar.left .calendar-table {
		padding-right: 12px;
	}

	.daterangepicker .ranges,
	.daterangepicker .calendar {
		float: left;
	}

}

@media (min-width: 730px) {
	.daterangepicker .ranges {
		width: auto;
		float: left;
	}

	.daterangepicker .calendar.left {
		clear: none;
	}
}


/* ---- File upload area ---- */
.file-upload__input {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.file-upload__helptext {
	padding-top: 14px;
}
.file-upload__helptext--hidden {
	display: none;
}
.file-upload__helptext__line2 {
	display: block;
	font-size: 1.3rem;
}
.file-upload__helptext p {
	margin: 0;
}
.file-upload__helptext:before {
	content: " ";
	display: block;
	width: 27px;
	height: 32px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 0 -1317px;
	margin: 0 auto 10px;
}

.file-upload__area {
	cursor: pointer;
	text-align: center;
}
.field-input .textbox.file-upload__area--dragenter {
	border-color: #35ab75;
}

.file-upload__uploads:before,
.file-upload__uploads:after {
	content: " ";
	display: table;
}

.file-upload__uploads:after {
	clear: both;
}
.file-upload__item,
.file-upload__helptext {
	height: 110px;
	margin-top: 8px;
	margin-bottom: 8px;
}
.file-upload__item {
	background-color: #FFF;
	border: 1px solid #ced2dc;
	width: 110px;
	display: inline-block;
	margin-left: 6px;
	margin-right: 6px;
	position: relative;
	cursor: default;
	vertical-align: top;
}

.file-upload__item__remove {
	-webkit-appearance: none;
	padding: 0;
	outline: none;
	border: none;
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
}
.file-upload__item__remove:hover,
.file-upload__item__remove:focus {
	background: rgba(0, 0, 0, 0.7);
}

.file-upload__item__remove:after {
	content: " ";
	display: block;
	width: 17px;
	height: 17px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 3px -938px;
}
.file-upload__item__remove__text {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Feedback */
.file-upload__item__feedback__response {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.file-upload__item__feedback__response p {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0;
}

/* Not image response */
.file-upload__item__feedback__response .file-upload__item__feedback__name {
	font-size: 1.2rem;
	margin: 0 0 5px;
}
.file-upload__item__feedback__size {
	font-size: 1.1rem;
	margin: 0;
}
.file-upload__item__feedback__response--success--not-image {
	padding: 26px 15px 20px;
}
.file-upload__item__feedback__response--success--not-image:before {
	content: " ";
	display: block;
	width: 28px;
	height: 24px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 0px -1396px;
	margin: 0 auto 10px;
}

/* Image response */
.file-upload__item__feedback__image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}

/* Error */
.file-upload__item__feedback__response--error {
	padding: 25px 15px 20px;
}
.file-upload__item__feedback__response .file-upload__item__feedback__error__text {
	font-size: 1.2rem;
	white-space: normal;
	overflow: visible;
}
.file-upload__item__feedback__response--error:before {
	content: " ";
	display: block;
	width: 23px;
	height: 24px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 0px -1473px;
	margin: 0 auto 10px;
}

/* Hover */
.file-upload__item__feedback__hover {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	color: #FFF;
	padding: 33px 15px 20px;
	overflow: hidden;
}
.file-upload__item:hover .file-upload__item__feedback__hover {
	opacity: 1;
}
.file-upload__item__feedback__hover__size {
	font-size: 1.1rem;
}
.file-upload__item__feedback__hover__dimensions {
	font-size: 1.1rem;
}
.file-upload__item__feedback__hover .file-upload__item__feedback__hover__name {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

/* Progress circles */
.file-upload__progress-circle {
	position: relative;
	font-size: 1.3rem;
	line-height: 1.1;
	display: block;
	width: 56px;
	height: 56px;
	padding: 21px 0 0 0;
	margin: 26px auto 0;
	text-align: center;
}
.file-upload__progress-circle__amount {
	z-index: 1;
	position: relative;
}
.file-upload__progress-circle__pie {
	transform: rotate(-90deg);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.file-upload__progress-circle__pie__piece {
	transition: all 100ms ease-in-out;
}

/* Feedback */



/* ---- File selector ---- */
.field-element--fileselector .fs-select-button {
	float: left;
	margin-right: 9px;
}

.field-element--fileselector .fs-preview-wrapper {
	background-color: #EEF0F3;
	position: relative;
	overflow: hidden;
	display: block;
}

.field-element--fileselector .fs-filename {
	padding: 10px 15px;
	word-break: break-all;
	overflow: hidden;
	display: block;
}
.field-element--fileselector .fs-file-selected .fs-filename {
	padding-left: 10px;
	padding-right: 38px;
}

.field-element--fileselector .fs-preview {
	width: 39px;
	display: none;
	float: left;
}
.field-element--fileselector .fs-file-selected .fs-preview {
	display: block;
}

.field-element--fileselector .fs-remove {
	display: none;
	-webkit-appearance: none;
	outline: none;
	border: none;
	background: none;
	padding: 0;
	color: #D4D7DE;
	position: absolute;
	right: 6px;
	top: 9px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: top -1075px left 3px;
	width: 22px;
	height: 22px;
}
.field-element--fileselector .fs-remove:hover,
.field-element--fileselector .fs-remove:focus {background-position: top -1135px left 3px;}
.field-element--fileselector .fs-file-selected .fs-remove {
	display: block;
}


/* Small */
.field-element--fileselector.field-element--small .fs-preview {
	width: 30px;
}
.field-element--fileselector.field-element--small .fs-filename {
	padding-top: 8px;
	padding-bottom: 6px;
	font-size: 1.4rem;
}
.field-element--fileselector.field-element--small .fs-remove {
	top: 6px;
	background-position: top -964px left 3px;
	width: 20px;
	height: 20px;
}
.field-element--fileselector.field-element--small .fs-remove:hover,
.field-element--fileselector.field-element--small .fs-remove:focus {
	background-position: top -1023px left 3px;
}
.field-element--fileselector.field-element--small .fs-file-selected .fs-filename {
	padding-right: 31px;
}

/* Large */
.field-element--fileselector.field-element--large .fs-preview {
	width: 48px;
}
.field-element--fileselector.field-element--large .fs-filename {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 1.8rem;
}
.field-element--fileselector.field-element--large .fs-remove {
	top: 14px;
	right: 9px;
}
.field-element--fileselector.field-element--large .fs-file-selected .fs-filename {
	padding-right: 41px;
	padding-left: 20px;
}

/* Popup */
.file-selector-search-wrapper  {
	display: none;
}
.file-selector-search-wrapper.searched  {
	display: block;
}
#file-selector-preview {
	display: block;
	background: #f9f9fb;
	border: 1px solid #E0E3EA;
	margin: 0 0 20px;
	position: relative;
	padding: 20px 25px;
}
.no-results #file-selector-preview {
	display: none;
}
#file-selector-preview .preview-title {
	margin: 0 0 12px;
}
#file-selector-preview .preview-box {
	position: relative;
	height: 150px;
}
#file-selector-preview img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	margin: 0 auto;
	display: block;
}

#file-selector-upload .field-element--new-category,
#file-selector-upload.new-category .field-element--select-category {
	display: none;
}
#file-selector-upload.new-category .field-element--new-category,
#file-selector-upload .field-element--select-category {
	display: block;
}

#file-selector-result-wrap {
	max-height: 450px;
	overflow: auto;
	border-top: 1px solid #D7D7D7;
	border-bottom: 1px solid #D7D7D7;
}
#file-selector-upload .field-elements-inline,
#file-selector-search .field-elements-inline {
	display: -ms-flexbox;
	display: flex;
}
#file-selector-upload .field-elements-inline .field-element--dropdown,
#file-selector-search .field-elements-inline .field-element--dropdown {
	-ms-flex-positive: 1;
	    flex-grow: 1;
}
#file-selector-upload .field-elements-inline .field-element--text,
#file-selector-search .field-elements-inline .field-element--text {
	-ms-flex-positive: 1;
	    flex-grow: 1;
}

#file-selector-stats {
	font-size: 1.6rem;
	margin-bottom: 14px;
}
#file-selector-results .file-select-table {
	margin: 0;
	width: 100%;
	border-left: 1px solid #E0E3EA;
	border-right: 1px solid #E0E3EA;
}
#file-selector-results .file-select-table tr {
	border-bottom: 1px solid #D7D7D7;
	cursor: pointer;
}
#file-selector-results .file-select-table tr:last-child {
	border-bottom: 0;
}
#file-selector-results .file-select-table tr:nth-child(odd) {
	background-color: #f9f9fb;
}

/* Hover */
#file-selector-results .file-select-table tr:hover {
	background-color: #ECE9E9;
}

#file-selector-paginate {
	margin-top: 16px;
}
#file-selector-prev {
	float: left;
}
#file-selector-next {
	float: right;
}
#file-selector-results a {
	text-decoration: none;
	color: inherit;
	display: block;
}
#file-selector-results .file-select-table-thumbnail {
	width: 100px;
	padding: 5px 20px;
}
#file-selector-results .file-select-table-text a {
	padding: 27px 25px 27px 0;
}
#file-selector-results .table--content-standard tr:hover td {
	background-color: red;
}

/* ---- Autocomplete ---- */
.ui-autocomplete {
	list-style: none;
	background: #FFFFFF;
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid #CED2DC;
	border-radius: 4px;
	padding: 3px 0;
	margin: 0;
}
.ui-autocomplete .ui-menu-item {
	padding: 5px 11px;
	cursor: pointer;
}
.ui-autocomplete .ui-menu-item.ui-state-focus {
	padding: 5px 11px;
	background: #358AAB;
	color: #FFF;
}


/* ---- Lightweight elements ---- */
.field-element--lightweight {
	margin: 0;
}


/* ---- TinyMCE tweaks ---- */
.mce-panel {
	border-color: #CED2DC !important;
}
.mce-toolbar-grp,
.mce-flow-layout {
	background-color: #EAECF1 !important;
}
.mce-tinymce{
	border-radius: 5px !important;
	overflow: hidden !important;
}
.mce-btn {
	border: 1px solid #EAECF1 !important;
	background-color: #EAECF1 !important;
}
.mce-btn:hover,
.mce-btn:focus{
	color: #333;
	background-color: #DDE0E6 !important;
	border-color: #C6CAD2 !important;
}
.mce-btn.mce-active,
.mce-btn.mce-active:hover{
	background-color: #CED2DC !important;
	border-color: #B5B8C1 !important;
}
.mce-btn:active{
	background-color:#e0e0e0 !important;
	border-color: #ccc !important;
}
.mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus {
	background-color: #358AAB !important;
	color: #FFF !important;
}


/* ---- Responsiveness ---- */

/* Large and regular field elements turn small */
/* BP 2 */
@media screen and (max-width: 920px) {
	.field-element .field-input .textbox,
	.field-element.field-element--large .field-input .textbox,
	.field-element.field-element--regular .field-input .textbox {
		font-size: 1.4rem;
		padding: 8px 15px 7px;
	}

}


/* ---- Submit Bar ---- */
.submit-bar {
	text-align: right;
	background: #F6F6F6;
	padding: 14px;
}

.sidebar .submit-bar {
	padding: 10px;
	background: transparent;
}

.submit-bar a {
	margin-right: 20px;
}


/* ---- Search Form ---- */
input.search-query {
	margin-bottom: 0;
	padding-right: 14px;
	padding-left: 14px;
	border-radius: 0;

}

.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	border-radius: 0;
}

.form-search .input-append .search-query {
	border-radius: 14px, 0, 0, 14px;
}

.form-search .input-append .btn {
	border-radius: 0, 14px, 14px, 0;
}

.form-search .input-prepend .search-query {
	border-radius: 0, 14px, 14px, 0;
}

.form-search .input-prepend .btn {
	border-radius: 14px, 0, 0, 14px;
}

.form-search {
	/*radio*/
}
.form-search input,
.form-search textarea,
.form-search select {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide {
	display: none;
}
.form-search label,
.form-search .btn-group {
	display: inline-block;
}
.form-search .radio,
.form-search .checkbox {
	margin-bottom: 0;
	padding-left: 0;
	vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"] {
	float: left;
}
.form-search .radio input[type="radio"] margin,
.form-search .checkbox input[type="checkbox"] margin {
	right: 3px;
	left: 0;
}
.form-search .control-group {
	margin-bottom: 0.75em;
}
.form-search legend + .control-group {
	margin-top: 1.5em;
	-webkit-margin-top-collapse: separate;
}


/* ---- Search pagination ---- */
.search-paginate a {
    background-color: #f2f2f2;
    display: inline-block;
    margin-bottom: 8px;
    padding: 7px 14px 7px;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    font-size: 1.9rem;
    font-weight: normal;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 5px;
    transition: all 120ms ease-in;
    outline: none;
    position: relative;
    color: #8e8e8e;
}

.search-paginate a:hover {
    background-color: #344f83;
    border-color: #344f83;
    color: #fff;
}

.search-paginate a.on {
    background-color: #7ac143;
    color: #FFF;
}

/* BP 2 */
@media screen and (max-width: 920px) {
    .search-paginate a {
        font-size: 1.4rem;
        padding: 5px 9px 5px;
    }
}

@media screen and (max-width: 600px) {
    .search-paginate a {
        font-size: 1.3rem;
        padding: 4px 8px;
    }
}


/* ---- Captcha ---- */
.captcha {
	background-color: #f6f6f6;
	padding: 10px;
	width: 100%;
	border: 1px solid #D7D7D7;
}

.captcha .captcha-info, .captcha .info {
	float: right;
	padding-bottom: 8px;
}
.captcha .captcha-info, .captcha .info a {
	text-decoration: none;
}
.captcha .captcha-info .captcha-icon {
	width: 16px;
	height: 16px;
	margin-bottom: 16px;
}

.captcha .captcha-img {
	width: 200px;
	margin-bottom: 10px;
}

.captcha .captcha-input {
	width: 200px;
}


/* ------------------------------------------------------
**** Tables
------------------------------------------------------ */

table {
	border-collapse: collapse;
	border: 1px solid #d7d7d7;
}

th,
td {
	padding: 5px 10px;
	border: 1px solid #d7d7d7;
}

th,
thead td {
	background: #F0F0F0;
}

tr:nth-child(odd) {
	background-color: #fff;
}

tr:nth-child(even) {
	background-color: #F0F0F0;
}

/* ---- Content tables ---- */
.table--content-standard {
	width: 100%;
	margin: 2rem 0;
}
.table--content-standard caption {
	text-align: left;
	padding-bottom: 13px;
}
.table--content-standard th,
.table--content-standard thead td {
	font-weight: bold;
	background-color: #F0F0F0;
	font-size: 1.7rem;
}
.table--content-standard td {
	background-color: transparent;
}
.table--content-standard th,
.table--content-standard td {
	border: 1px solid #d7d7d7;
	padding: 12px 15px;
	text-align: left;
}

.table--content-standard tr:nth-child(odd) {
	background-color: #fff;
}

.table--content-standard tr:nth-child(even) {
	background-color: #f6f6f6;
}


/* Small */
.table--content-standard.table--content-small {
	font-size: 1.3rem;
}
.table--content-standard.table--content-small th,
.table--content-standard.table--content-small td {
	padding: 5px 10px;
}
.table--content-standard.table--content-small th,
.table--content-standard.table--content-small thead td {
	font-size: 1.4rem;
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.table--content-standard {
		font-size: 1.3rem;
		margin: 1.5rem 0;
	}
	.table--content-standard th,
	.table--content-standard td {
		padding: 5px 10px;
	}
	.table--content-standard th,
	.table--content-standard thead td {
		font-size: 1.4rem;
	}
}


/* Responsive - detail_trainer.php */
@media screen and (max-width: 600px){
	table.table--content-responsive {
		border: none;
	}
	.table--content-responsive tr {
		margin-bottom: 20px;
	}
    .table--content-responsive,
    .table--content-responsive tbody,
    .table--content-responsive tr,
    .table--content-responsive td {
        display: block;
        width: 100%;
    }
    .table--content-responsive th,
    .table--content-responsive thead {
        display: none;
    }
    .table--content-responsive td:before {
        content: attr(data-table-column);
        display: block;
        font-weight: bold;
        background-color: #f2f2f2;
        margin: 0 -10px 9px;
        padding: 8px 10px;
        border-bottom: 1px solid #d7d7d7;
    }
    .table--content-responsive td {
        padding-top: 0;
        padding-bottom: 10px;
        border-top: none;
    }
    .table--content-responsive td:first-child {
    	border-top: 1px solid #d7d7d7;
	}
}

@media screen and (max-width: 700px) {
	/* ---- Responsive tables ---- */
	.table--responsive {
		font-size: 1.4rem;
	}
	.table--responsive,
	.table--responsive tbody,
	.table--responsive tr {
		display: block;
	}
	.table--responsive thead,
	.table--responsive th {
		display: none;
	}
	.table--responsive tr {
		display: table;
		width: 100%;
	}
	.table--responsive td {
		display: table-row;
		padding: 0;
	}
	.table--responsive td[data-title]:before {
		content: attr(data-title);
		font-weight: bold;
		background-color: #F3F3F3;
		border-right: 1px solid #dedede;
	}
	.table--responsive td[data-title] {
		border-left: 1px solid #dedede;
		border-right: 1px solid #dedede;
		border-top: 1px solid #dedede;
	}
	.table--responsive tbody tr {
		margin-bottom: 20px;
		border-bottom: 1px solid #dedede;
	}
	.table--responsive td[data-title]:before,
	.table--responsive__content {
		padding: 5px 15px;
		display: table-cell;
	}
	.table--responsive tr.table--responsive__first-row {
		display: none;
	}
	.expando .table--responsive tbody tr{
		width: 100%;
	}
	.table--responsive tr:nth-child(odd) {
		background-color: #fff;
	}

	.table--responsive tr:nth-child(even) {
		background-color: #fff;
		/* background-color: #F0F0F0; */
	}

	.table--responsive tr td:nth-child(even) .table--responsive__content {
		background-color: #f0f0f0;
	}

	.table--responsive tr td:nth-child(even)[data-title]:before {
		background-color: #f0f0f0;
	}

	.table--responsive tr td:nth-child(odd)[data-title]:before {
		background-color: #fff;
	}
}

@media screen and (max-width: 400px) {
	.expando .table--responsive {
		font-size: 1.2rem;
	}

	.expando .table--responsive td[data-title]:before,
	.expando .table--responsive__content {
		padding: 5px 8px;
	}
}

/* ---- Field tables ---- */
.field-table {
	border: none;
	width: 100%;
}
.field-table th {
	background: none;
	border: none;
	padding-top: 15px;
	padding-bottom: 11px;
	font-size: 1.6rem;
}
.field-table td {
	border-right: none;
	border-left: none;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 1.5rem;
}
.field-table th,
.field-table td {
	padding-left: 15px;
	padding-right: 15px;
}
.field-table .field-table__position {
	font-size: 2.7rem;
	font-weight: bold;
}
.field-table__avatar {
	margin-right: 10px;
	width: 30px;
}

.field-table-button--arrow {
	background-image: url(../images/icon-arrow-right-black.png);
	background-position: 9px 5px;
	background-size: 17px;
	background-repeat: no-repeat;
	background-color: transparent;
	-webkit-appearance: none;
	outline: none;
	border: none;
	padding: 0;
	display: block;
	width: 35px;
	height: 40px;
	cursor: pointer;
}
.field-table-button--arrow:hover {
	opacity: 0.5;
}
.no-style-button {
	-webkit-appearance: none;
	padding: 0;
	background: none;
	border: none;
	outline: none;
}
.no-style-button:hover {
	text-decoration: underline;
}

/* Popup */
.field-table__popup__avatar {
	float: left;
	margin: 0 20px 20px 0;
}
.field-table__popup__details__text {
	overflow: hidden;
}
.field-table__popup__details__text h2 {
	margin-top: 0;
}

.field-getting-there {
	background: #eeeeee;
	padding: 18px;
}
.field-getting-there h2 {
	margin: 0 0 14px;
}
.field-getting-there__img {
	display: block;
	width: 100%;
}
.field-stage-select {
	margin: 20px 0 25px;
}

/* Small */
.field-table.field-table--small th {
	padding-top: 13px;
	padding-bottom: 8px;
	font-size: 1.5rem;
}
.field-table.field-table--small th,
.field-table.field-table--small td {
	padding-left: 8px;
	padding-right: 8px;
}
.field-table.field-table--small .field-table__avatar {
	width: 24px;
}
.field-table.field-table--small .field-table__position {
	font-size: 2rem;
}
.field-table.field-table--small .field-table__position__dnf {
	font-size: 1.3rem;
	color: #24abe2;
}
.field-table.field-table--small td {
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 1.2rem;
}
.field-table.field-table--small .field-table-button--arrow {
	background-size: 12px;
	width: 29px;
	height: 30px;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.field-table__hide-mobile {
		display: none;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.field-table__hide-mobile {
		display: table-cell;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.field-table.field-table--small .field-table__position {
		font-size: 1.5rem;
	}
	.field-table.field-table--small .field-table__position__dnf {
		font-size: 0.9rem;
	}
	.field-table.field-table--small .field-table__avatar {
		width: 14px;
		display: none;
	}
	.field-table.field-table--small th,
	.field-table.field-table--small td {
		padding-left: 4px;
		padding-right: 4px;
	}
	.field-table.field-table--small td {
		padding-top: 3px;
		padding-bottom: 3px;
		font-size: 1.1rem;
	}
	.field-table.field-table--small .field-table-button--arrow {
		background-size: 7px;
		width: 29px;
		height: 30px;
		background-position: 11px 9px;
	}
	.field-table__hide-mobile {
		display: none;
	}
	.field-table__popup__avatar {
		width: 26px;
		margin-right: 12px;
	}
}

/* ---- Responsive table ---- */
table.responsive {
	overflow: auto;
	overflow-y: hidden;
	overflow-x: auto;
	display: block;
}

/* ---- No Styles Table ---- */
.table__no-styles {
	border-collapse: separate !important;
	border: none !important;
	background: none !important;
	min-width: 0 !important;
}

.table__no-styles th,
.table__no-styles thead td,
.table__no-styles td {
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
}

/* ---- Basic Table ---- */
.table__basic {
	border-collapse: separate;
	border: none;
	background: none;
	min-width: 0;
	text-align: left;
}

.table__basic th,
.table__basic thead td,
.table__basic td {
	padding: 5px;
	border: 0;
	background: none;
}

.table__basic th:first-child,
.table__basic td:first-child {
	padding-left: 0;
}


/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */
.clear {
	height: 0;
	clear: both;
	display: block;
}

.-clearfix:before,
.-clearfix:after {
	content: " ";
	display: table;
}

.-clearfix:after {
	clear: both;
}


/* ---- Hiding classes ---- */
.-ir {
	background-color: transparent;
	border: 0;
	overflow: hidden;
}

.-ir:before {
	content: "";
	display: block;
	width: 0;
	height: 150%;
}

.-hidden {
	display: none !important;
	visibility: hidden;
}

.-vis-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.-vis-hidden.focusable:active,
.-vis-hidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.-invisible {
	visibility: hidden;
}

/* ---- Pseudo elements ---- */

/* Angle Brackets */
.-r-arrow-after:after {
	content: "\00a0\003e";
}
.-r-arrow-before:before {
	content: "\003e\00a0";
}
.-l-arrow-after:after {
	content: "\00a0\003c";
}
.-l-arrow-before:before {
	content: "\003c\00a0";
}

.-r-arrow:before {
	content: "\003e";
}
.-l-arrow:before {
	content: "\003c";
}


/* Ellipsis */
.ellipsis-2:after {
	content: "..";
}
.ellipsis-3:after {
	content: "...";
}

/* ---- Floats and positioning ---- */

.left {
	margin: 0 30px 30px 0;
	float: left;
}

.right {
	margin: 0 0 30px 30px;
	float: right;
}

.center {
	display: block;
	margin: 0 auto 30px;
}

.block {
	margin: 0 0 30px;
	display: block;
}

@media screen and (max-width: 600px) {
	.left,
	.center,
	.right {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 15px;
		width: 100%;
		display: block;
		float: none;
	}
}


/* ---- Grid ---- */
.grid:before,
.grid:after {
	content: " ";
	display: table;
}

.grid:after {
	clear: both;
}

.grid-col {
	float: left;
	margin-right: 2.1052631578947367%;
}
.grid-col:last-child,
.grid-col.grid-col-last-in-row {
	margin-right: 0;
}

/* Reverse */
.grid.grid-reverse .grid-col {
	float: right;
	margin-right: 0;
	margin-left: 1.754385964912%;
}
.grid.grid-reverse .grid-col:last-child,
.grid.grid-reverse .grid-col.grid-col-last-in-row {
	margin-left: 0;
}

/* 2 col grid */
.grid-2-cols .grid-col:nth-child(2n+2) {
	margin-right: 0;
}
/* 3 col grid */
.grid-3-cols .grid-col:nth-child(3n+3) {
	margin-right: 0;
}
/* 4 col grid */
.grid-4-cols .grid-col:nth-child(4n+4) {
	margin-right: 0;
}

/* 1 col */
.grid-col-1 {
	width: 6.403508771930%;
}
/* 2 col */
.grid-col-2 {
	width: 14.912280701754%;
}
/* 3 col */
.grid-col-3 {
	width: 23.421052631579%;
}
/* 4 col */
.grid-col-4 {
	width: 31.929824561404%;
}
/* 5 col */
.grid-col-5 {
	width: 40.438596491228%;
}
/* 6 col */
.grid-col-6 {
	width: 48.947368421053%;
}
/* 7 col */
.grid-col-7 {
	width: 57.456140350877%;
}
/* 8 col */
.grid-col-8 {
	width: 65.964912280702%;
}
/* 9 col */
.grid-col-9 {
	width: 74.473684210526%;
}
/* 10 col */
.grid-col-10 {
	width: 82.982456140351%;
}
/* 11 col */
.grid-col-11 {
	width: 91.491228070175%;
}
/* 12 col */
.grid-col-12 {
	width: 100%;
}


/* BP 0 */
@media screen and (max-width: 1310px) {
	/* 1 col */
	.grid-col-1-bp1 {
		width: 6.403508771930%;
	}
	/* 2 col */
	.grid-col-2-bp1 {
		width: 14.912280701754%;
	}
	/* 3 col */
	.grid-col-3-bp1 {
		width: 23.421052631579%;
	}
	/* 4 col */
	.grid-col-4-bp1 {
		width: 31.929824561404%;
	}
	/* 5 col */
	.grid-col-5-bp1 {
		width: 40.438596491228%;
	}
	/* 6 col */
	.grid-col-6-bp1 {
		width: 48.947368421053%;
	}
	/* 7 col */
	.grid-col-7-bp1 {
		width: 57.456140350877%;
	}
	/* 8 col */
	.grid-col-8-bp1 {
		width: 65.964912280702%;
	}
	/* 9 col */
	.grid-col-9-bp1 {
		width: 74.473684210526%;
	}
	/* 10 col */
	.grid-col-10-bp1 {
		width: 82.982456140351%;
	}
	/* 11 col */
	.grid-col-11-bp1 {
		width: 91.491228070175%;
	}
	/* 12 col */
	.grid-col-12-bp1 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	/* 1 col */
	.grid-col-1-bp0 {
		width: 6.403508771930%;
	}
	/* 2 col */
	.grid-col-2-bp0 {
		width: 14.912280701754%;
	}
	/* 3 col */
	.grid-col-3-bp0 {
		width: 23.421052631579%;
	}
	/* 4 col */
	.grid-col-4-bp0 {
		width: 31.929824561404%;
	}
	/* 5 col */
	.grid-col-5-bp0 {
		width: 40.438596491228%;
	}
	/* 6 col */
	.grid-col-6-bp0 {
		width: 48.947368421053%;
	}
	/* 7 col */
	.grid-col-7-bp0 {
		width: 57.456140350877%;
	}
	/* 8 col */
	.grid-col-8-bp0 {
		width: 65.964912280702%;
	}
	/* 9 col */
	.grid-col-9-bp0 {
		width: 74.473684210526%;
	}
	/* 10 col */
	.grid-col-10-bp0 {
		width: 82.982456140351%;
	}
	/* 11 col */
	.grid-col-11-bp0 {
		width: 91.491228070175%;
	}
	/* 12 col */
	.grid-col-12-bp0 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	/* 1 col */
	.grid-col-1-bp2 {
		width: 6.403508771930%;
	}
	/* 2 col */
	.grid-col-2-bp2 {
		width: 14.912280701754%;
	}
	/* 3 col */
	.grid-col-3-bp2 {
		width: 23.421052631579%;
	}
	/* 4 col */
	.grid-col-4-bp2 {
		width: 31.929824561404%;
	}
	/* 5 col */
	.grid-col-5-bp2 {
		width: 40.438596491228%;
	}
	/* 6 col */
	.grid-col-6-bp2 {
		width: 48.947368421053%;
	}
	/* 7 col */
	.grid-col-7-bp2 {
		width: 57.456140350877%;
	}
	/* 8 col */
	.grid-col-8-bp2 {
		width: 65.964912280702%;
	}
	/* 9 col */
	.grid-col-9-bp2 {
		width: 74.473684210526%;
	}
	/* 10 col */
	.grid-col-10-bp2 {
		width: 82.982456140351%;
	}
	/* 11 col */
	.grid-col-11-bp2 {
		width: 91.491228070175%;
	}
	/* 12 col */
	.grid-col-12-bp2 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	/* 1 col */
	.grid-col-1-bp3 {
		width: 6.403508771930%;
	}
	/* 2 col */
	.grid-col-2-bp3 {
		width: 14.912280701754%;
	}
	/* 3 col */
	.grid-col-3-bp3 {
		width: 23.421052631579%;
	}
	/* 4 col */
	.grid-col-4-bp3 {
		width: 31.929824561404%;
	}
	/* 5 col */
	.grid-col-5-bp3 {
		width: 40.438596491228%;
	}
	/* 6 col */
	.grid-col-6-bp3 {
		width: 48.947368421053%;
	}
	/* 7 col */
	.grid-col-7-bp3 {
		width: 57.456140350877%;
	}
	/* 8 col */
	.grid-col-8-bp3 {
		width: 65.964912280702%;
	}
	/* 9 col */
	.grid-col-9-bp3 {
		width: 74.473684210526%;
	}
	/* 10 col */
	.grid-col-10-bp3 {
		width: 82.982456140351%;
	}
	/* 11 col */
	.grid-col-11-bp3 {
		width: 91.491228070175%;
	}
	/* 12 col */
	.grid-col-12-bp3 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	/* 1 col */
	.grid-col-1-bp4 {
		width: 6.403508771930%;
	}
	/* 2 col */
	.grid-col-2-bp4 {
		width: 14.912280701754%;
	}
	/* 3 col */
	.grid-col-3-bp4 {
		width: 23.421052631579%;
	}
	/* 4 col */
	.grid-col-4-bp4 {
		width: 31.929824561404%;
	}
	/* 5 col */
	.grid-col-5-bp4 {
		width: 40.438596491228%;
	}
	/* 6 col */
	.grid-col-6-bp4 {
		width: 48.947368421053%;
	}
	/* 7 col */
	.grid-col-7-bp4 {
		width: 57.456140350877%;
	}
	/* 8 col */
	.grid-col-8-bp4 {
		width: 65.964912280702%;
	}
	/* 9 col */
	.grid-col-9-bp4 {
		width: 74.473684210526%;
	}
	/* 10 col */
	.grid-col-10-bp4 {
		width: 82.982456140351%;
	}
	/* 11 col */
	.grid-col-11-bp4 {
		width: 91.491228070175%;
	}
	/* 12 col */
	.grid-col-12-bp4 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 5 */
@media screen and (max-width: 500px) {
	/* 1 col */
	.grid-col-1-bp5 {
		width: 6.403508771930%;
	}
	/* 2 col */
	.grid-col-2-bp5 {
		width: 14.912280701754%;
	}
	/* 3 col */
	.grid-col-3-bp5 {
		width: 23.421052631579%;
	}
	/* 4 col */
	.grid-col-4-bp5 {
		width: 31.929824561404%;
	}
	/* 5 col */
	.grid-col-5-bp5 {
		width: 40.438596491228%;
	}
	/* 6 col */
	.grid-col-6-bp5 {
		width: 48.947368421053%;
	}
	/* 7 col */
	.grid-col-7-bp5 {
		width: 57.456140350877%;
	}
	/* 8 col */
	.grid-col-8-bp5 {
		width: 65.964912280702%;
	}
	/* 9 col */
	.grid-col-9-bp5 {
		width: 74.473684210526%;
	}
	/* 10 col */
	.grid-col-10-bp5 {
		width: 82.982456140351%;
	}
	/* 11 col */
	.grid-col-11-bp5 {
		width: 91.491228070175%;
	}
	/* 12 col */
	.grid-col-12-bp5 {
		width: 100%;
		margin-right: 0;
	}
}

/* ------------------------------------------------------
**** Animations
------------------------------------------------------ */

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */

* {
	margin: 0;
}

html,
body {
	background: #f2f2f2;
	height: 100%;
}

#wrap {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	min-height: 100%;
}


.container {
	width: 1260px;
	margin: 0 auto;
}

/* BP 0 */
@media screen and (max-width: 1310px) {
	.container {
		width: 1140px;
	}
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.container {
		width: 1040px;
	}
}

/* BP 1.5 */
@media screen and (max-width: 1070px) {
	.container {
		width: 860px;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.container {
		width: 690px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.container {
		width: 560px;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.container {
		width: 92%;
		margin: 0 4%;
	}
}

/* ---- Sections ---- */
.section > .container {
	padding: 40px 0;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.section > .container {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.section > .container {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

/* ---- Bg colours ---- */
.bg-white {
	background-color: #FFF;
}
.bg-navy {
	background-color: #0d2848;
	color: #FFF;
}
.bg-navy a {
	color: #FFF;
}
.bg-light-grey {
	background-color: #f2f2f2;
}
.bg-dark-grey {
	background-color: #222;
	color: #FFF;
}

.bg-red {
	background-color: #7ac143;
	color: #FFF;
}
.bg-blue {
	background-color: #24abe2;
	color: #FFF;
}



/* ---- Header ---- */

/* Header subnav */
.section--header-subnav {
	text-align: right;
	color: #545454;
}

.section--header-subnav a {
	color: #545454;
	text-decoration: none;
}

.section--header-subnav a:hover,
.section--header-subnav a:focus,
.section--header-subnav a:active {
	color: #545454;
	text-decoration: underline;
}

.section--header-subnav > .container {
	padding: 10px 40px;
}
.header-subnav {
	display: inline-block;
}
.social-media-list {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	padding: 0;
}
.social-media-list__item {
	list-style: none;
	display: inline-block;
	margin-left: 10px;
	transition: opacity 150ms ease-in-out;
	opacity: 1;
}

.social-media-list__item:hover {
	opacity: 0.7
}
#frankenmenu-subnav {
	display: inline-block;
	position: relative;
	margin-left: 30px;
	vertical-align: top;
}
#frankenmenu-subnav:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 2px;
	right: 0;
	width: 1px;
	background-color: #8E8E8E;
}
.affiliated-entity-links {
	display: inline-block;
	position: relative;
}
.affiliated-entity-links__item {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-left: 20px;
}
.affiliated-entity-links__item:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background-color: #8E8E8E;
}
.affiliated-entity-links__item:first-child {
	margin-left: 0;
}
.affiliated-entity-links__img {
	height: 28px;
	width: auto;
}
.header-search .field-element {
	margin-bottom: 0;
}

/* Header logo */
.section--header-logo > .container {
	padding: 0px 25px 30px;
}
.header-logo .logo {
	max-width: 400px;
	max-height: 93px;
}
.header-logo a {
	text-decoration: none;
	display: block;
}
.logo-text-wrapper {
	display: inline-block;
	vertical-align: top;
	margin: 51px 0 0 35px;
	width: 390px;
}
.logo-text {
	width: 100%;
}

/* Header nav */
.section--header-nav .container {
	padding: 0 40px;
	position: relative;
}
.header-scrolled .section--header-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
.header-scrolled #header-nav-anchor {
	height: 59px;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.section--header-nav .container {
		padding: 0 25px;
	}
	.header-logo .logo {
		width: 230px;
	}
	.logo-text-wrapper {
		margin: 26px 0 0 27px;
		width: 290px;
	}
	.section--header-subnav > .container {
		padding: 6px 15px;
	}
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.header-logo .logo {
		width: 165px;
	}
	.logo-text-wrapper {
		margin: 15px 0 0 19px;
		width: 241px;
	}
	.section--header-logo > .container {
		padding: 5px 15px 20px;
	}
	.header-search {
		margin-left: 15px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.section--header-nav .container {
		padding: 0 10px;
	}
}

/* BP 4 */
@media screen and (max-width: 767px) {
	.header-logo .logo {
		width: 135px;
		display: block;
	}
	.logo-text-wrapper {
		margin: 9px 0 0;
		width: auto;
		display: block;
		max-width: 200px;
	}
	.section--header-logo > .container {
		padding: 13px 10px 12px;
	}
	.header-search {
		margin: 3px 0 0;
		width: 60%;
		display: block;
		float: left;
	}
	.header-subnav {
		display: none;
	}
	.section--header-subnav {
		text-align: left;
		display: none;
	}
}

/* Extra BP */
@media screen and (max-width: 500px) {
	.header-logo .logo {
		margin-right: 5px;
	}
	.logo-text {
		display: block;
	}
}

/* Extra BP */
@media screen and (max-width: 400px) {
	.header-logo .logo {
		width: 100px;
	}
}


/* ---- Bar slider ---- */
.section.section--bar-slider > .container {
	padding-top: 18px;
	padding-bottom: 15px;
}
.bar-slider-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.bar-slider-list__item__title-container {
	max-width: 350px;
	float: left;
}
.bar-slider-list__item__club-title {
	margin: 0;
}
.bar-slider-list__item__title {
	margin: 0;
	font-size: 2.7rem;
}
.bar-slider-list__item__date {
	font-size: 2.0rem;
	color: #aaa;
	display: inline-block;
}
.bar-slider-list__item:before,
.bar-slider-list__item:after {
	content: " ";
	display: table;
}
.bar-slider-list__item:after {
	clear: both;
}
.bar-slider-list__item__details {
	float: right;
}
.bar-slider-list__item__details .detail-list {
	display: inline-block;
	vertical-align: top;
}
.bar-slider-link {
	vertical-align: top;
	margin: 11px 0 0 50px;
}
.bar-slider-list__item {
	padding: 0 90px;
	outline: none;
}

/* Slider */
.slick-loading .slick-list {
	background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

.bar-slider--slick .bar-slider-list__item:not(.slick-slide):nth-child(1n+2) {
	display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 40px;
	height: 47px;
	padding: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	z-index: 2;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	opacity: 0.6;
}

.slick-prev {
	left: 20px;
	background: url(../images/icon-arrow-left.png) no-repeat center center;
}
.slick-next {
	right: 20px;
	background: url(../images/icon-arrow-right.png) no-repeat center center;
}


/* Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: 10px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 3px;
	padding: 0;
	cursor: pointer;
	text-align: center;
}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 16px;
	height: 16px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: #f2f2f2;
	border-radius: 50%;
	padding: 0;
	text-indent: -9999px;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
	background-color: #fff;
}
.slick-dots li.slick-active button {
	background-color: #7ac143;
}

/* BP 0 */
@media screen and (max-width: 1310px) {
	.bar-slider-link {
		margin: 10px 0 0 30px;
	}
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.bar-slider-list__item {
		padding-left: 60px;
		padding-right: 60px;
	}
	.slick-prev,
	.slick-next {
		width: 35px;
		height: 41px;
		background-size: 18px;
	}
	.slick-prev {
		left: 12px;
	}
	.slick-next {
		right: 12px;
	}
	.bar-slider-list__item__title-container {
		max-width: none;
		margin: 0 0 10px;
		float: none;
	}
	.bar-slider-list__item__title {
		font-size: 2.3rem;
	}
	.bar-slider-link {
		margin: 10px 0 0 40px;
	}
	.bar-slider-list__item__details {
		float: left;
	}
	.section.section--bar-slider > .container {
		padding-top: 14px;
		padding-bottom: 12px;
	}

}

/* BP 2 */
@media screen and (max-width: 920px) {
	.bar-slider-link {
		margin: 10px 0 0 20px;
	}
	.bar-slider-list__item__details .detail-list {
		display: block;
	}
	.bar-slider-link {
		margin: 10px 0 0 0;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.bar-slider-list__item__title {
		font-size: 1.7rem;
	}
	.bar-slider-list__item__date {
		font-size: inherit;
	}
	.bar-slider-list__item__details {
		float: none;
	}
	.bar-slider-link {
		margin: 0;
	}
	.bar-slider-list__item__details .detail-list {
		margin: 0 0 10px;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.bar-slider-list__item__title {
		font-size: 1.5rem;
	}
	.bar-slider-list__item {
		padding-left: 40px;
		padding-right: 40px;
	}
	.slick-prev,
	.slick-next {
		width: 29px;
		height: 32px;
		background-size: 12px;
	}
	.slick-prev {
		left: 3px;
	}
	.slick-next {
		right: 3px;
	}
	.slick-dotted.slick-slider {
		margin-bottom: 10px;
	}
}

/* ---- Detail list ---- */
.detail-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.detail-list:before,
.detail-list:after {
	content: " ";
	display: table;
}
.detail-list:after {
	clear: both;
}
.detail-list__item {
	text-align: center;
	margin-right: 20px;
	max-width: 130px;
	display: inline-block;
	vertical-align: top;
}
.detail-list__item:last-child {
	margin-right: 0;
}
.detail-list__item__text {
	font-size: 1.4rem;
	margin: 0;
}
.detail-list__item__icon-wrapper {
	margin: 0 auto 12px;
}
.detail-list__item__icon {
	max-height: 29px;
}
.slick-slide .detail-list__item__icon {
	float: none;
	margin: 0 auto;
}
.slick-slide .detail-list__item__text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.detail-list__item__text {
		font-size: 1.1rem;
	}
	.detail-list__item__icon-wrapper {
		max-width: 47px;
		max-height: 29px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.detail-list__item {
		display: block;
		max-width: none;
		text-align: left;
		margin: 0 0 8px;
		position: relative;
	}
	.detail-list__item__icon-wrapper {
		float: left;
		margin: 0 15px 0 0px;
		max-width: 33px;
		position: absolute;
		left: 0;
		top: 0;
	}
	.detail-list__item:before,
	.detail-list__item:after {
		content: " ";
		display: table;
	}
	.detail-list__item:after {
		clear: both;
	}
	.detail-list__item__text {
		padding-left: 50px;
		padding-top: 3px;
	}
	.slick-slide .detail-list__item__text {
		white-space: normal;
		overflow: visible;
		text-overflow: initial;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.detail-list__item:before,
	.detail-list__item:after {
		content: " ";
		display: table;
	}
	.detail-list__item:after {
		clear: both;
	}
	.detail-list__item__icon-wrapper {
		margin: 0;
		max-width: none;
		max-height: none;
		width: 45px;
		float: left;
	}
	.detail-list__item__icon {
		max-height: 20px;
		max-width: 40px;
	}
	.slick-slide  .detail-list__item__icon {
		margin: 0;
	}
}

/* ---- Banner ---- */
.section.section--banner > .container {
	padding: 0;
}
.banner-slider {
	list-style: none;
	padding: 0;
	margin: 0;
}

.banner__item,
.banner-slider__item {
	position: relative;
}

.banner-image {
	background-image: url(../images/temp/banner-home/banner.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-top: 31.5%;
}
.banner-image--shadow:before {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/banner-shadow.png) center center no-repeat;
	background-size: cover;
}

.banner-text {
	position: absolute;
	z-index: 1;
	padding: 50px 60px;
	width: 550px;
	color: #FFF;
	bottom: 0;
	right: 0;
}
.banner-title {
	font-size: 3.7rem;
	line-height: 1;
}
.banner-text__content {
	font-size: 1.9rem;
}
.add-to-calendar-button {
	color: #FFF;
	text-decoration: none;
	font-size: 1.3rem;
	margin: 0 0 0 15px;
	display: inline-block;
}
.add-to-calendar-button:hover,
.add-to-calendar-button:focus {
	text-decoration: underline;
	color: #FFF;
}
.add-to-calendar-button img,
.slick-slide .add-to-calendar-button img {
	margin: -4px 10px 0 0;
	display: inline-block;
}

/* Skinny */
.banner--skinny .banner-title {
	font-size: 3.5rem;
}
.banner--skinny .banner-image {
	background-image: url(../images/temp/banner-club/banner.jpg);
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.banner-text {
		padding: 35px 60px 54px;
		width: 570px;
	}
	.banner-title {
		font-size: 3rem;
		margin: 0 0 0.7rem;
	}
	.banner-text__content {
		font-size: 1.7rem;
	}
	.banner--skinny .banner-title {
		font-size: 2.7rem;
	}
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.banner-text {
		padding: 25px 30px 50px;
		text-align: center;
		left: 0;
		width: auto;
	}
	.banner-buttons .add-to-calendar-button {
		display: none;
	}
	.banner-text__content {
		display: none;
	}
	.banner-image--shadow:before {
		background-image: url(../images/banner-shadow-mobile.png);
	}
	.banner-title {
		font-size: 2.6rem;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.banner-buttons .add-to-calendar-button {
		display: none;
	}
	.banner-title {
		font-size: 2.2rem;
	}
	.banner-image--has-mobile {
		padding-top: 83.5%;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {

}

/* BP 5 */
@media screen and (max-width: 500px) {

}

/* ---- Home boxes ---- */
.section.section--home-boxes > .container {
	padding-top: 24px;
	padding-bottom: 24px;
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.section.section--home-boxes > .container {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

/* ---- Feature boxes ---- */
.feature-box {
	margin: 0 0 25px;
}
.feature-box__ad {
	width: 100%;
}
.feature-box-title-bar {
	background-color: #24abe2;
	color: #FFF;
	padding: 10px 20px;
}
.feature-box-title-bar .feature-box-title {
	float: left;
	margin: 0;
}
.feature-box-image {
	width: 100%;
}
.feature-box-subtle-title {
	padding: 30px 20px 0;
}
.feature-box-subtle-title__text {
	margin: 0;
	float: left;
	margin: 0;
}
.feature-box-subtle-title__link {
	float: right;
}

.feature-box-title-bar:before,
.feature-box-title-bar:after,
.feature-box-subtle-title:before,
.feature-box-subtle-title:after {
	content: " ";
	display: table;
}
.feature-box-title-bar:after,
.feature-box-subtle-title:after {
	clear: both;
}

.feature-box-title {
	margin: 0 0 12px;
}
.feature-box__link {
	float: right;
	margin: 5px 0 0 20px;
	font-size: 1.4rem;
}
.feature-box__link a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
.feature-box__link a:hover {
	text-decoration: underline;
}
.feature-box-content {
	padding: 25px;
}

.feature-box-title-bar .social-list {
	float: right;
}
.feature-box-title-bar .social-list__item {
	display: inline-block;
	margin: 0 0 0 6px;
}
.feature-box-title-bar .social-list__item img {
	max-width: 25px;
	max-height: 23px;
}
.feature-box__map {
	width: 100%;
}
.feature-box--blog .feature-box__link {
	text-decoration: none;
	display: block;
	color: inherit;
}
.blog-hub__posts {
	margin: 0 -1.5%
}
.blog-hub__posts {
	margin-right: 0;
	margin-left: 0;
}
.blog-hub__posts .feature-box--blog{
	border: 1px solid #E6E6E6;
	width: 47%;
	margin: 0 1.5% 25px;
}
.blog-hub__posts .feature-box--blog:nth-child(2n+2) {
	margin-right: 0;
}

.blog-hub__posts .feature-box--blog .feature-box-title {
    float: none;
}
.blog-hub__posts .feature-box--blog .feature-box-subtle-title__text {
    float: none;
}
.blog-hub__posts .feature-box--blog .feature-box-subtle-title__link {
    float: none;
}
.blog-hub__posts .feature-box--blog .feature-box__link {
    float: none;
    margin: 0;
}
.blog-hub__posts .feature-box--blog .category-list {
	display: none;
}
.blog-hub__posts .feature-box--blog .category-list a {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 1.7rem;
	color: #9c9c9c;
	border-bottom: 2px solid #dfdcd5;
	display: block;
	text-decoration: none;
	padding: 0 0 5px;
}

.blog-hub__posts .feature-box--blog .feature-box-footer__link span {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 1.7rem;
	color: #9c9c9c;
}
.blog-hub__posts .feature-box--blog .feature-box-footer__link {
	margin: 0 0;
}
.blog-hub__posts .feature-box--blog .feature-box-footer__link span:hover {
	color: #545454;
}
.blog-hub__posts .feature-box--blog .feature-box-image-wrapper {
	overflow: hidden;
	background: #545454;
}
.blog-hub__posts .feature-box--blog .feature-box-image--placeholder {
	min-height: 120px;
	padding: 30%;
	background-image: url(../images/children-gallery-thumb-placeholder-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 66%;
	background-color: #fff;
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.feature-box {
		margin-bottom: 18px;
	}
	.feature-box-content {
		padding: 16px;
	}
	.feature-box-title-bar {
		padding: 8px 16px;
	}
	.feature-box-title-bar .social-list__item img {
		max-width: 18px;
		max-height: 18px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.feature-box-subtle-title {
		padding: 21px 20px 0;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.feature-box {
		margin-bottom: 15px;
	}
	.feature-box-subtle-title {
		padding: 17px 20px 0;
	}
	.blog-hub__posts .feature-box--blog{
		width: 100%;
	}
}

/* ---- Blog filters ---- */
.blog-categories {
	background-color: #fff;
	padding: 0 23px;
	margin: -25px 0 23px;
}
.blog-categories__list {
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 20px -23px 0;
}
.blog-categories__list__item {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.blog-categories__list__item a {
	display: block;
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	border-right: 1px solid #dfdcd5;
	text-decoration: none;
	color: #555555;
	text-align: center;
	padding: 9px 7px 11px;
	background-color: #fff;
}
.blog-categories__list__item:last-child a {
	border-right: none;
}
.blog-categories__list__item a:hover,
.blog-categories__list__item a:focus {
	color: #000;
	background-color: #f2f2f2;
}

/* On */
.blog-categories__list__item.blog-categories__list__item--on a {
	background: #0d2848;
	color: #FFF;
	position: relative;
}
.blog-categories__list__item.blog-categories__list__item--on a:after {
	content: " ";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color:#0d2848 transparent transparent transparent;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media all and (min-width: 500px) {
	.blog-categories__list__item a {
		font-size: 1.5rem;
		padding: 12px 15px 14px;
	}
}

@media all and (min-width: 601px) {
	.blog-categories__list__item a {
		font-size: 1.6rem;
		letter-spacing: 2px;
		padding: 16px 20px 19px;
	}
}

@media all and (min-width: 768px) {
	.blog-categories__list__item {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 25%;
			-ms-flex: 1 1 25%;
				flex: 1 1 25%;
	}

	.blog-categories__list__item a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
}

@media all and (min-width: 1280px) {
	.blog-categories__list {
		-webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	}
	.blog-categories__list__item {
		-webkit-flex: 1 1 auto;
			-ms-flex: 1 1 auto;
				flex: 1 1 auto;
	}
	.blog-categories__list__item a {
		font-size: 1.5rem;
	}
}

@media all and (min-width: 1440px) {
	.blog-categories__list__item a {
		font-size: 1.7rem;
	}
}

/* ---- Two abreast side-byside content ---- */
/* [ 01 ] */
.side-by-side > div {
	background-color: #f2f2f2;
	padding: 30px;
	margin: 0 0 1.5rem;
}
.pre-subtitle {
	text-transform: uppercase;
	font-size: 1.28rem;
	margin-bottom: 0;
}
.side-by-side .title {
	font-size: 3.6rem;
	margin-top: 0;
	line-height: normal;
}

@media screen and (min-width: 650px) {
	.side-by-side {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
			-ms-flex-direction: row;
				flex-direction: row;
	}
	.side-by-side > div {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 50%;
			-ms-flex: 1 1 50%;
				flex: 1 1 50%;
	}
	.side-by-side > div:first-child {
		margin-right: 25px;
	}
}

/* ---- centered and lined content block ---- */
/* [ 01 ] */
.lined-content-wrapper {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.lined-content-wrapper:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	left: 25%;
	border-top: 2px solid #D12227;
	border-bottom: 2px solid #D12227;
	z-index: -1;
}

@media screen and (min-width: 650px) {
	.lined-content-wrapper {
		width: 80%;
		max-width: 800px;
		margin-top: 25px;
		margin-bottom: 25px;
		padding-top: 25px;
		padding-bottom: 25px;
	}
}
/* Min BP 2 */
@media screen and (min-width: 921px) {
	.lined-content-wrapper {
		margin-top: 60px;
		margin-bottom: 60px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
}


/* ---- Advertisements ---- */

.advertisement-items,
.sidebar-advertisement,
.content-advertisement {
	margin-bottom: 25px;
}

.grid-col:last-child:not(:first-child) .content-advertisement {
	text-align: right;
}
.content-advertisement .advertisement-item img {
	max-width:364px;
}

.content-advertisement .advertisement-item img,
.sidebar-advertisement img {
	width: 100%;
}

.wide-advertisement {
	margin: 50px auto 20px;
}
.wide-advertisement img {
	display: block;
	margin: 0 auto;
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.wide-advertisement {
		margin: 20px auto 15px;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.wide-advertisement {
		margin: 10px auto;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.content-advertisement,
	.sidebar-advertisement {
		margin-bottom: 18px;
	}
}

/* ---- Promo/events ---- */

.promo-list {
    list-style-type: none;
    margin: 0 -15px;
    padding: 0;
}

.promo-item {
    margin: 0;
    padding: 8px 8px;
}

.promo-item__image {
    overflow: hidden;
    background: #000;
}

.promo-item__image img {
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.promo-item__title__date {
    display: block;
    border: 1px solid #fff;
    padding: 16px 0 24px;
    margin: -50px 26% 20px;
    text-align: center;
    position: relative;
}

.promo-item__inner {
    display: block;
    background: #545454;
    color: rgb(245,245,245);
    text-decoration: none;
    text-align: center;
    transition: all 200ms ease-in-out;
    padding-bottom: 16px;
}

.promo-list--blue .promo-item__inner {
	background: #72BEDE;
}

.promo-list--green .promo-item__inner {
	background: #99ca3c;
}

.promo-item__inner .subtitle {
    color: rgba(0,0,0.75);
    transition: all 200ms ease-in-out;
}

a.promo-item__inner:hover,
a.promo-item__inner:focus,
a.promo-item__inner:active,
.promo-list--blue a.promo-item__inner:hover,
.promo-list--blue a.promo-item__inner:focus,
.promo-list--blue a.promo-item__inner:active,
.promo-list--green a.promo-item__inner:hover,
.promo-list--green a.promo-item__inner:focus,
.promo-list--green a.promo-item__inner:active {
    color: #ffffff;
    background: #000;
}

a.promo-item__inner:hover .subtitle,
a.promo-item__inner:focus .subtitle,
a.promo-item__inner:active .subtitle,
.promo-list--blue a.promo-item__inner:hover .subtitle,
.promo-list--blue a.promo-item__inner:focus .subtitle,
.promo-list--blue a.promo-item__inner:active .subtitle,
.promo-list--green a.promo-item__inner:hover .subtitle,
.promo-list--green a.promo-item__inner:focus .subtitle,
.promo-list--green a.promo-item__inner:active .subtitle   {
    color: #a6a6a6;
    color: rgba(255,255,255,.65);
}

a.promo-item__inner:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.9;
}

.promo-item__content__top,
.promo-item__content__text,
.promo-item__content__bottom {
    padding: 0 24px;
    padding-bottom: 1px;
}

.promo-item__title__date__day {
    display: block;
    font-size: 6rem;
    line-height: 50px;
    height: 50px;
}

.promo-item__title__date__month {
    display: inline-block;
    padding-top: 8px;
    font-size: 2rem;
    letter-spacing: -0.25px;
}

.promo-item__title__date__year {
    display: inline-block;
    padding-top: 8px;
    font-size: 2rem;
    letter-spacing: -0.25px;
}

@media screen and (min-width: 600px) {
    .promo-list {
        list-style-type: none;
        margin: 0 -15px;
        padding: 0;

    }
    .promo-item {
        width: 50%;
        float: left;
    }
    .promo-item:nth-child(2n+1) {
        clear:left;
    }

}

@supports (display: grid) {
	.promo-list {
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	    grid-gap: 0rem;
	}

	@media screen and (min-width: 600px) {
		.promo-list {
		    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		}
	}

	.promo-item {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	}

	.promo-item__inner {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	    flex-flow: column nowrap;
	}

	.promo-item__content {
	    -webkit-box-flex: 1;
	    -ms-flex: 1 0 auto;
	    flex: 1 0 auto;
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	    -ms-flex-flow: column nowrap;
	    flex-flow: column nowrap;
	    -webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	    justify-content: space-between;
	}

    /* Undo some fallback CSS   */
    .promo-list:before,
    .promo-list:after {
        display: none;
    }
    .promo-item {
        width: auto;
    }
}

/* ---- Alert ---- */
.section.section--alert > .container {
	padding: 0;
}
.alert-message {
	padding: 15px 100px 15px 50px;
	position: relative;
}
.alert-message:before,
.alert-message:after {
	content: " ";
	display: table;
}
.alert-message:after {
	clear: both;
}
.alert-message--red {
	background-color: #a92025;
	color: #FFF;
}
.alert-message__text:before {
	content: " ";
	display: inline-block;
	width: 34px;
	height: 34px;
	margin: 0;
	vertical-align: middle;
	background-repeat: no-repeat;
	position: absolute;
	top: -7px;
	left: 0;
}
.alert-message--red .alert-message__text:before {
	background-image: url(../images/icon-alert.png);
}
.alert-message__text {
	padding: 0 0 0 47px;
	margin: 0;
	vertical-align: middle;
	position: relative;
}

.alert-message__close-button {
	-webkit-appearance: none;
	padding: 0;
	margin: 0;
	border: none;
	width: 40px;
	height: 40px;
	outline: none;
	background: url(../images/icon-close.png) no-repeat center center;
	position: absolute;
	top: 6px;
	right: 50px;
}
.alert-message__close-button:hover,
.alert-message__close-button:focus {
	opacity: 0.7;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.alert-message {
		padding: 10px 50px 10px 30px;
		font-size: 1.4rem;
	}
	.alert-message__close-button {
		right: 25px;
	}
	.alert-message__text:before {
		width: 28px;
		height: 28px;
		background-size: 28px;
		top: 2px;
	}
	.alert-message__text {
		padding-left: 38px;
	}
	.alert-message__text:before {
		width: 22px;
		height: 22px;
		background-size: 22px;
		top: -3px;
	}
	.alert-message__close-button {
		right: 6px;
		width: 30px;
		height: 30px;
		background-size: 18px;
		top: 2px;
	}
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.alert-message {
		padding: 10px 42px 10px 14px;
		font-size: 1.2rem;
	}
	.alert-message__text {
		padding-left: 33px;
	}
}


/* BP 3 */
@media screen and (max-width: 730px) {
	.alert-message {
		padding: 8px 35px 8px 14px;
	}
	.alert-message__text:before {
		width: 18px;
		height: 18px;
		background-size: 17px;
		top: -2px;
	}
	.alert-message__close-button {
		width: 26px;
		height: 26px;
		background-size: 14px;
	}
	.alert-message__text {
		padding-left: 27px;
	}
}


/* ---- Social list ---- */
.social-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.social-list__item a {
	display: block;
}

/* ---- Expando ---- */
.expando-open {
	color: #7ac143;
}

.expando-open:hover,
.expando-open:focus {
	color: #7ac143;
}

.expando--tables.expando--expanded {
    padding: 30px 0 0;
}

/* Min BP 2 */
@media screen and (min-width: 921px) {
	.expando--tables.expando--expanded {
		padding: 25px 45px;
	}
}

/* ---- Expando blocks ---- */
.expando-block {
	margin-bottom: 25px;
}
.expando-block__content {
	display: none;
}
.expando-block__button {
	-webkit-appearance: none;
	padding: 10px 70px 10px 20px;
	display: block;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	color: #FFF;
	font-size: 2.5rem;
	line-height: 1.2;
	background: #222222 url(../images/icon-plus.png) no-repeat;
	background-position: right 15px top 6px;
}
.expando-block__button:hover,
.expando-block__button:focus {
	background-color: #000;
}
.expando-block--active .expando-block__button {
	background-image: url(../images/icon-minus.png);
}
.expando-block__content {
	padding: 15px 0;
}


.expando-block--force-active .expando-block__content {
	display: block;
}

.expando-block--force-active .expando-block__button {
	background-image: none;
	pointer-events: none;
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.expando-block__button {
		padding: 8px 50px 8px 15px;
		font-size: 2rem;
		background-size: 24px;
		background-position: right 12px top 8px;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.expando-block__button {
		padding: 8px 40px 8px 15px;
		font-size: 1.5rem;
		background-size: 22px;
		background-position: right 9px top 6px;
	}
	.expando-block__content {
		padding: 10px 0;
	}
}

/* ---- Footer ---- */
.section--footer a {
	text-decoration: none;
}
.section--footer a:hover,
.section--footer a:focus {
	text-decoration: underline;
}
.footer-title {
	padding-bottom: 17px;
	border-bottom: 1px solid #FFF;
}
.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-list__item {
	width: 50%;
	float: left;
	font-size: 1.9rem;
}
.footer-list__item a {
	display: block;
	padding: 4px 0;
}

.footer-contact {
	margin: 19px 0 0;
}
.footer-copyright {
	margin: 50px 0 0;
	font-size: 1.5rem;
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.footer-title {
		padding-bottom: 8px;
	}
	.footer-list__item {
		font-size: 1.6rem;
	}
	.footer-contact {
		margin-top: 5px;
	}
	.footer-copyright {
		margin-top: 25px;
		font-size: 1.3rem;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.footer-list__item {
		font-size: 1.4rem;
	}
	.footer-copyright {
		margin-top: 0;
	}
}

/* ---- Content ---- */
.section--content > .container {
	padding-top: 25px;
	padding-bottom: 25px;
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.section--content > .container {
		padding-top: 18px;
		padding-bottom: 18px;
	}
}

/* Mainbar */
.mainbar {
	padding: 25px;
}
.mainbar > h1,
.mainbar > .h1 {
	margin-top: 0;
	margin-bottom: 7px;
}
/* BP 2 */
@media screen and (max-width: 920px) {
	.mainbar {
		padding: 18px;
	}
}
/* BP 3 */
@media screen and (max-width: 730px) {
	.mainbar {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Race title */
.race-title a {
	color: #FFF;
}
.race-title {
	padding: 20px 90px;
	position: relative;
	margin: 0 0 25px;
}
.race-title:before {
	color: #FFF;
	display: block;
	content: attr(data-race-number);
	font-size: 7rem;
	font-weight: 600;
	position: absolute;
	top: 4px;
	left: 10px;
	text-align: center;
	width: 70px;
}
.race-title:after {
	color: #FFF;
	display: block;
	content: attr(data-race-letter);
	font-size: 3rem;
	font-weight: 600;
	position: absolute;
	top: 34px;
	right: 20px;
	text-align: center;
	width: 40px;
	height: 40px;
	text-transform: uppercase;
	border: 2px solid #FFF;
	border-radius: 10px;
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.race-title {
		padding: 20px 50px;
	}
	.race-title:before {
		font-size: 3.9rem;
		top: 5px;
		left: 5px;
		text-align: center;
		width: 40px;
	}
	.race-title:after {
		font-size: 1.9rem;
		top: 11px;
		right: 11px;
		width: 30px;
		height: 30px;
		line-height: 1.4;
	}
}


/* ---- Stats bar ---- */
.fields-stat-bar {
	padding: 15px 20px;
	margin: 20px 0 20px;
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.fields-stat-bar {
		margin: 0 0 10px;
		padding: 10px 15px;
	}
}

/* ---- Date ---- */
.date {
	font-size: 2.2rem;
	font-weight: bold;
	margin: 5px 0 15px 0;
	padding-left: 34px;
	background: url(../images/icon-calendar-black.png) no-repeat;
	background-position: 0 2px;
}
.date__time {
	display: block;
	font-size: 1.7rem;
}

#calendar .other-month .date {
	background: #fff;
	color: #bbb;
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.date {
		font-size: 1.8rem;
		padding-left: 27px;
		background-size: 18px;
	}
}

/* ---- Result list ---- */
.result-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	counter-reset: result-list;
	cursor: default;
}
.result-list-item {
	border-bottom: 1px solid #eee;
	counter-increment: result-list;
	position: relative;
	padding: 14px 0 0;
}
.result-list-item:last-child {
	border-bottom: none;
}
.race-list .result-list-item {
	border-bottom-color: #d0d0d0;
}
.result-list-item:before,
.result-list-item:after {
	content: " ";
	display: table;
}
.result-list-item:after {
	clear: both;
}
.result-list-item__avatar {
	float: left;
}
.result-list-item__content {
	padding-left: 125px;
	padding-right: 70px;
	padding-bottom: 21px;
	position: relative;
	font-size: 1.5rem;
}
.result-list-item__content p:last-child {
	margin-bottom: 0;
}
.result-list-item__content:before {
	content: counter(result-list) ".";
	position: absolute;
	left: 98px;
	font-size: 1.9rem;
	top: 0;
}
.result-list-item__title {
	font-size: 1.9rem;
}
.result-list-item__more-info-button,
.result-list-item__expand-button {
	position: absolute;
	right: 20px;
	top: 33px;
	-webkit-appearance: none;
	outline: none;
	border: none;
	padding: 0;
	display: block;
	background-repeat: no-repeat;
	width: 35px;
	height: 40px;
	cursor: pointer;
	background-color: transparent;
}
.result-list-item__more-info-button {
	background-image: url(../images/icon-arrow-right-black.png);
	background-position: 9px 5px;
	background-size: 17px;
}
.result-list-item__expand-button {
	background-image: url(../images/icon-arrow-down-black.png);
	background-position: 0 11px;
	background-size: 35px;
}
.result-list-item--expanded .result-list-item__expand-button {
	background-image: url(../images/icon-arrow-up-black.png);
}
.result-list-item__expand-button:hover,
.result-list-item__more-info-button:hover,
.result-list-item__more-info-button:focus {
	opacity: 0.3;
}
.result-list-item__expand-content {
	clear: both;
	background: #eee;
	padding: 15px;
	display: none;
}
.result-list-item__expand-content p:last-child {
	margin-bottom: 0;
}
.result-list-item__expand-content:before,
.result-list-item__expand-content:after {
	content: " ";
	display: table;
}
.result-list-item__expand-content:after {
	clear: both;
}



/* BP 3 */
@media screen and (max-width: 730px) {
	.result-list-item__content {
		padding-left: 75px;
		padding-right: 30px;
	}
	.result-list-item__avatar {
		width: 50px;
	}
	.result-list-item__content:before {
		left: 54px;
	}
	.result-list-item__expand-button {
		right: 0;
		top: 5px;
		background-size: 23px;
		width: 23px;
		height: 30px;
	}
}

/* ---- Race list ---- */
.race-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: race-list;
	line-height: 1.25;
}
.race-list__item {
	margin-bottom: 3px;
	position: relative;
	z-index: 1;
}
.race-list__item a.race-list__item__content {
	text-decoration: none;
	background-image: url(../images/icon-arrow-right-black.png);
	background-position: right 15px top 16px;
}
.race-list__item .race-list__item__content {
	color: #000;
	display: block;
	padding: 25px 203px 25px 85px;
	background: #fff no-repeat;
}

/* Min BP 2 */
@media screen and (min-width: 921px) {
	.race-list__item:hover {
		background-color: #f9f9f9;
	}
}

.race-list__item:before {
	counter-increment: race-list;
	content: counter(race-list);
	color: #FFF;
	background-color: #545454;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	text-align: center;
	font-family: "Century Gothic W01", 'Century Gothic', sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	padding: 11px 5px;
	z-index: -1;
}
.race-list-list__title {
	font-size: 1.9rem;
	font-weight: 600;
	margin: 0;
}
.race-list__item__content > p:last-child,
.race-list__item__content > p:last-of-type {
	margin-bottom: 0;
}

.race-list-item__stage {
	position: absolute;
	top: 21px;
	right: 80px;
	z-index: -1;
}
.race-list-item__stage__button,
.race-list-item__stage__text {
	background: #222;
	padding: 6px 12px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.2rem;
	border-radius: 3px;
}
.race-list-item__stage__text {
	margin: 0;
}
.race-list-item__stage__button {
	-webkit-appearance: none;
	border: none;
	outline: none;
}
.race-list-item__stage__button:hover {
	background-color: #000;
}
/* Dates */
.race-list.race-list--dates .race-list__item:before {
    content: attr(data-date);
    width: 100px;
    font-size: 1.6rem;
    padding-top: 16px;
}

.race-list.race-list--dates .race-list__item .race-list__item__content {
    padding-left: 125px;
}

/* On light grey */
.bg-light-grey .race-list__item {
	background-color: #eee;
}
/* Min BP 2 */
@media screen and (min-width: 921px) {
	.bg-light-grey .race-list__item:hover {
		background-color: #e2e1e1;
	}
}
.bg-light-grey .race-list__item__content {
	background-color: transparent;
}

/* Expando version */
.race-list__expando {
	display: none;
	padding: 25px 0 20px 85px;
}
.race-list__item .race-list__item__content.race-list__expando__button {
	-webkit-appearance: none;
	border: none;
	outline: 0;
	text-align: left;
	width: 100%;
	background-image: url(../images/icon-arrow-right-black.png);
	background-position: right 15px top 10px;
}

.race-list__expando__intro {
	margin: 0 0 20px;
}
.race-list__expando__intro:before,
.race-list__expando__intro:after {
	content: " ";
	display: table;
}
.race-list__expando__intro:after {
	clear: both;
}

.race-list__videos {
	float: right;
	margin: 0 0 0 25px;
	max-width: 180px;
}
.race-list__expando__intro__video {
	margin-bottom: 17px;
}
.race-list__video__title {
	margin: 0 0 14px;
}
.race-list__video__button {
	display: block;
	position: relative;
}
.race-list__video__button:hover {
	opacity: 0.9;
}
.race-list__video__button:after {
	content: " ";
	background: url(../images/icon-play.png) no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	display: block;
}

.race-link-list {
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
}

.race-link-list-title {
	display: inline-block;
	margin: 6px 11px 0 0;
	float: left;
}

.race-link-list__item {
	margin: 0 3px 15px;
	padding: 0;
	display: inline-block;
}

.race-link-list__item a:hover {
	background-color: #d8d8d8;
}
.race-link-list__item.on a {
	background-color: #545454;
	color: #FFF;
}


.race-link-list__small_item {
	padding: 0 9px;
	text-align: center;
	color: #fff;
}

.race-link-list__item a {
	display: block;
	text-decoration: none;
	text-align: center;
	color: #5a5a5a;
	padding: 10px 5px;
	width: 40px;
	height: 40px;
	background-color: #e6e6e6;
	border-radius: 5px;
	line-height: 1.2;
}

.race-expando-arrow {
	background: url(../images/icon-arrow-down-black.png) transparent no-repeat 0 10px;
	background-size: 28px;
	border: none;
	width: 28px;
	height: 35px;
	-webkit-appearance: none;
	transition: all 500ms;
	outline: none;
}

.race-expando-arrow.up {
	background-position: center 50%;
	transform: rotate(180deg);
	transition: all 300ms;
}


.button--unstyled {
	background: none;
	border: none;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	text-align: left;
}

/* BP 2 */
@media screen and (max-width: 920px) {

	.race-list__item:before {
		width: 49px;
		font-size: 2.7rem;
	}

	.race-list-item__stage {
		position: relative;
		top: auto;
		right: auto;
		padding-top: 9px;
	}

	.race-list-item__stage,
	.race-list__item .race-list__item__content {
		padding-left: 65px;
	}

	.race-list.race-list--dates .race-list-item__stage,
	.race-list.race-list--dates .race-list__item .race-list__item__content {
		padding-left: 97px;
	}
	.race-list.race-list--dates .race-list__item:before {
		width: 80px;
		font-size: 1.4rem;
	}
	.race-list__item .race-list__item__content {
		padding-right: 39px;
		padding-top: 6px;
		padding-bottom: 10px;
	}
	.race-list__item a.race-list__item__content,
	.race-list__item .race-list__item__content.race-list__expando__button {
		background-position: right 12px top 0px;
		background-size: 15px;
	}
	.race-list-list__title {
		font-size: 1.4rem;
	}
	.race-list-item__stage__button,
	.race-list-item__stage__text {
		padding: 4px 8px;
		font-size: 1rem;
	}
	.race-list__item .race-list__item__content.race-list__expando__button {
		font-size: 1.3rem;
	}
	.race-expando-arrow {
		background-size: 20px;
		width: 22px;
		height: 29px;
	}
	.race-list__videos {
		width: 200px;
	}

}


/* BP 3 */
@media screen and (max-width: 730px) {
	.race-link-list-title {
		margin: 3px 11px 0 0;
	}
	.race-link-list__item {
		margin: 0 1px 12px;
	}
	.race-link-list__item a {
		padding: 7px 3px;
		width: 28px;
		height: 28px;
		font-size: 1.3rem;
	}
	.race-expando-arrow {
		background-size: 14px;
		width: 14px;
		height: 25px;
	}
	.race-list__videos {
		width: 140px;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.race-list__videos {
		float: none;
		margin: 0;
		width: 100%;
		max-width: none;
	}
	.race-list__videos:before,
	.race-list__videos:after {
		content: " ";
		display: table;
	}
	.race-list__videos:after {
		clear: both;
	}
	.race-list__expando__intro__video {
		float: left;
		width: 47%;
		margin-right: 5%;
	}
	.race-list__expando__intro__video {
		margin-bottom: 0;
	}
	.race-list__expando__intro__video:last-child {
		margin-right: 0;
	}
}


/* ---- Race table ---- */
.race-table .race-table__expando > td {
	padding: 0;
	border-bottom: none;
}

.race-table__expando-inner {
	display: none;
	border-bottom: 1px solid #d7d7d7;
	background: #FFF;
	border-left: 3px solid #222;
}
.race-table {
	border: none;
	width: 100%;
}
.race-table > tbody > tr:hover > td {
	background: #ededed;
}

.race-table > thead > tr > th,
.race-table > tbody > tr > td {
	border: none;
	padding: 7px 14px;
	text-align: left;
}
.race-table > thead > tr > th {
	background: none;
	padding-top: 13px;
	padding-bottom: 13px;
	border-bottom: 1px solid #d7d7d7;
	white-space: nowrap;
	font-size: 1.6rem;
	line-height: 1.2;
}
.race-table > tbody > tr > td {
	font-size: 1.5rem;
	border-bottom: 1px solid #d7d7d7;
}

.race-table__body-row--late-scratch > td {
	background: url(../images/bg_race-table-strikethrough.svg) repeat-x center center;
}

.race-table > tbody > .race-table__body-row--late-scratch:hover > td {
	background-color: #ededed;
	background: url(../images/bg_race-table-strikethrough.svg) #ededed repeat-x center center;
}

.race-table__position {
	font-weight: bold;
}
.race-table__name__avatar,
.race-table__name__horse,
.race-table__name__jockey,
.race-table__name__trainer {
	float: left;
}
.race-table__name__avatar {
	width: 29px;
	margin-right: 19px;
}
.race-table__name__horse {
	display: inline-block;
	width: auto;
	margin: 9px 0 0 0;
	line-height: 1.2;
}
.race-table__name__jockey,
.race-table__name__trainer {
	margin: 9px 0 0 15px;
}
.race-table__name__jockey a,
.race-table__name__trainer a {
	color: #6d6d6d;
	font-size: 1.3rem;
}
.race-table__name__jockey a:hover,
.race-table__name__trainer a:hover {
	color: #222;
}


.race-table__stage {
	position: relative;
	margin: 0 0 15px;
}
.race-table__stage__button,
.race-table__stage__text {
	background: #222;
	padding: 4px 12px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.2rem;
	border-radius: 3px;
	margin: 0;
	display: inline-block;
}
.race-table__stage__text {
	margin: 0;
}
.race-table__stage__button {
	-webkit-appearance: none;
	border: none;
	outline: none;
}
.race-table__stage__button:hover {
	background-color: #000;
}


.race-table__details__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #d7d7d7;
}

.race-table__details__item {
	-ms-flex: 1 1 auto;
	    flex: 1 1 auto;
	border-right: 1px solid #d7d7d7;
	padding: 20px 22px;
	max-width: 270px;
}
.race-table__details__item--wide {
	-ms-flex: 2 1 auto;
	    flex: 2 1 auto;
}
.race-table__details__item__title {
	margin: 0 0 3px;
	font-size: 1.3rem;
	font-weight: normal;
	text-transform: uppercase;
	color: #6d6d6d;
	line-height: 1.2;
}
.race-table__details__item__data {
	margin: 0;
	font-size: 1.3rem;
}

.race-table__stats {
	padding: 25px 0;
}
.race-table__stats__no-history {
	margin: 0;
	padding: 0 20px 22px;
	text-align: center;
	color: #6d6d6d;
	font-size: 1.4rem;
}
.race-table__stats__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -ms-flexbox;
	display: flex;
}
.race-table__stats__item {
	-ms-flex: 1;
	    flex: 1;
	padding: 0 23px;
}
.race-table__stats__item__title {
	margin: 0;
	font-size: 1.3rem;
	font-weight: normal;
	text-transform: uppercase;
	color: #6d6d6d;
	background-color: #f6f6f6;
	border: 1px solid #d7d7d7;
	text-align: center;
	padding: 5px 10px;
}
.race-table__stats__item__data {
	text-align: center;
	padding: 9px 0 0;
	margin: 0;
	font-size: 1.5rem;
}

.race-table__stats__item--active .race-table__stats__item__title {
	color: #FFF;
	background-color: #222;
	border-color: #222;
}

/* Recent form table */
.race-table__recent-form {
	width: 100%;
	border: none;
}
.race-table__recent-form tr {
	border-bottom: 1px solid #d7d7d7;
}
.race-table__recent-form tbody tr:last-child {
	border-bottom: none;
}
.race-table__recent-form__heading-row th,
.race-table__recent-form__data-row td {
	border: none;
	padding: 11px 10px;
	font-size: 1.3rem;
}
.race-table__recent-form__heading-row th {
	background: none;
	font-weight: normal;
	text-transform: uppercase;
	color: #6d6d6d;
	padding-top: 7px;
	padding-bottom: 7px;
}
.race-table__recent-form__heading-row {
	border-top: 1px solid #d7d7d7;
}
.race-table__recent-form__data-row td a {
	color: #6d6d6d;
}
.race-table__recent-form__data-row td a:hover {
	color: #222;
}
.race-table__recent-form__result__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.race-table__recent-form__data-row:nth-child(odd) {
	background: #f6f6f6;
}
.race-table__recent-form__video img,
.race-table__recent-form__video__fallback {
	width: 60px;
	display: block;
}
.race-table__recent-form__video__fallback {
	background-color: #ccc;
	padding-bottom: 40.25%;
}
.race-table__recent-form__video--play a {
	position: relative;
	display: block;
}
.race-table__recent-form__video--play a:after {
	content: " ";
	position: absolute;
	top: 7px;
	left: 21px;
	width: 20px;
	height: 20px;
	background: url(../images/icon-play.png) no-repeat;
	background-size: 20px;
}

.race-table__hide {
	display: none;
}

.race-table__details__item__data a {
	color: #6d6d6d;
}
.race-table__details__item__data a:hover {
	color: #222;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.race-table__hide-bp1 {
		display: none;
	}
	.race-table__show-bp1 {
		display: block;
	}

	.race-table__stats__item {
		padding: 0 12px;
	}
	.race-table__stats__item__title {
		font-size: 1.2rem;
		padding: 5px 6px;
	}
	.race-table__stats__item__data {
		font-size: 1.3rem;
	}
	.race-table__details__item {
		padding: 14px 15px;
	}
	.race-table__stats {
		padding: 19px 0;
	}
	.race-table__recent-form__heading-row th,
	.race-table__recent-form__data-row td {
		padding: 9px 7px;
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 1070px) {
	.race-table__stats__item {
		padding: 0 7px;
	}
	.race-table__stats__item__title {
		font-size: 1.1rem;
		padding: 4px 4px;
	}
	.race-table__stats__item__data {
		font-size: 1.1rem;
	}
	.race-table__details__item {
		padding: 12px 12px;
	}
	.race-table__stats {
		padding: 14px 0;
	}
	.race-table__recent-form__heading-row th,
	.race-table__recent-form__data-row td {
		padding: 7px 7px;
		font-size: 1.1rem;
	}
	.race-table__details__item__title {
		font-size: 1.2rem;
	}
	.race-table__details__item__data {
		font-size: 1.1rem;
	}
	.race-table > thead > tr > th {
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 1.3rem;
	}
	.race-table > tbody > tr > td {
		font-size: 1.3rem;
	}
	.race-table > thead > tr > th,
	.race-table > tbody > tr > td {
		padding: 6px 10px;
	}
	.race-table__name__avatar {
		width: 23px;
		margin-right: 15px;
	}
	.race-table__name__horse {
		margin: 8px 0 0 0;
	}
	.race-table__name__jockey,
	.race-table__name__trainer {
		margin: 8px 0 0 15px;
	}
	.race-table__name__jockey a,
	.race-table__name__trainer a {
		font-size: 1.2rem;
	}
	.race-table__stats__no-history {
		padding: 0 20px 14px;
		font-size: 1.3rem;
	}
	.race-table__recent-form__video__fallback {
		padding-bottom: 51.2%;
	}
	.race-table__recent-form__video img, .race-table__recent-form__video__fallback {
		width: 50px;
	}

	.race-table__recent-form__video--play a:after {
		top: 6px;
		left: 19px;
		width: 16px;
		height: 16px;
		background-size: 16px;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.race-table__hide-bp2 {
		display: none;
	}
	.race-table__show-bp2 {
		display: block;
	}
	.race-table__name__jockey,
	.race-table__name__trainer {
		display: none;
	}
	.race-table__details__list {
		display: block;
		padding: 7px 0;
	}
	.race-table__details__item {
		-ms-flex: initial;
		    flex: initial;
	}
	.race-table__details__item__title {
		display: inline;
	}
	.race-table__details__item__title:after {
		content: ":";
		display: inline;
	}
	.race-table__details__item__data {
		display: inline;
		font-size: 1.2rem;
	}
	.race-table__details__item {
		padding: 5px 14px;
		border-right: none;
	}
	.race-table__recent-form__video img,
	.race-table__recent-form__video__fallback {
		width: 40px;
	}
	.race-table__recent-form__video--play a:after {
		top: 6px;
		left: 15px;
		width: 12px;
		height: 12px;
		background-size: 12px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.race-table__hide-bp3 {
		display: none;
	}
	.race-table__show-bp3 {
		display: block;
	}
	.race-table__details__item {
		padding: 3px 10px;
	}
	.race-table__stats__item {
		padding: 0 1% 9px;
		width: 25%;
		-ms-flex: initial;
		    flex: initial;
	}
	.race-table__stats__item__title {
		font-size: 1rem;
		padding: 3px 3px;
	}
	.race-table__stats__item__data {
		padding: 6px 0 0;
		font-size: 1rem;
	}
	.race-table__stats {
		padding: 10px 0 0;
	}
	.race-table__stats__list {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		padding: 0 2%;
	}
	.race-table > thead > tr > th,
	.race-table > tbody > tr > td {
		padding: 2px 3px;
	}
	.race-table > thead > tr > th {
		padding-top: 4px;
		padding-bottom: 4px;
	}
	.race-table__name__avatar {
		width: 11px;
		margin-right: 5px;
	}
	.race-table__name__horse {
		margin: 3px 0 0 0;
	}
	.race-table > tbody > tr > td {
		font-size: 1.1rem;
	}
	.race-table__stats__no-history {
		padding: 0 20px 10px;
		font-size: 1.1rem;
	}
	.race-table__recent-form__heading-row {
		display: none;
	}

	.race-table__recent-form,
	.race-table__recent-form tr,
	.race-table__recent-form tbody,
	.race-table__recent-form td {
		display: block;
		width: 100%;
	}
	.race-table__recent-form tr {
		margin-bottom: 20px;
		border-right: 1px solid #d7d7d7;
		border-left: 1px solid #d7d7d7;
	}
	.race-table__recent-form thead,
	.race-table__recent-form th {
		display: none;
	}
	.race-table__recent-form__data-row td {
		padding: 7px 7px 7px 44%;
		border-top: 1px solid #d7d7d7;
		position: relative;
	}
	.race-table__recent-form__video__fallback {
		display: none;
	}
	.race-table__recent-form .race-table__recent-form__video--fallback {
		display: none;
	}

	.race-table__recent-form td:empty {
		display: none;
	}
	.race-table__recent-form td[data-heading]:before {
		content: attr(data-heading);
		display: block;
		background-color: #f6f6f6;
		padding: 5px 7px 4px;
		margin: 0;
		font-weight: normal;
		color: #6d6d6d;
		text-transform: uppercase;
		border-right: 1px solid #d7d7d7;
		width: 40%;
		float: left;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
	}
	.race-table__recent-form__data-row:nth-child(odd) {
		background: #fff;
	}
	.race-table__recent-form tbody tr:last-child {
		margin-bottom: 0;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.race-table__hide-bp4 {
		display: none;
	}
	.race-table__show-bp4 {
		display: block;
	}
	.race-table__stage {
		float: none;
		margin: 0 0 13px;
	}
	.race-table > thead > tr > th {
		font-size: 1rem;
		white-space: normal;
	}
	.race-table > tbody > tr > td {
		font-size: 1rem;
	}
}

/* ---- Club list ---- */
.club-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.club-list__item {
	background-color: #eee;
	margin-bottom: 20px;
	position: relative;
	text-align: center;
	min-height: 200px;
}
.club-list__item__logo-wrap {
	background: #FFF;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	padding: 10px 20px;
	min-height: 145px;

	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.club-list__item__logo-wrap a {
	display: block;
	width: 100%;
}
.club-list__item__logo {
	margin: 0 auto;
	display: block;
	max-width: 100%;
	max-height: 120px;
}
.club-list__item__content {
	padding: 20px;
}
.club-list__item__title {
	margin: 0 0 11px;
	font-size: 2.1rem;
}

.club-list__item__title a {
	text-decoration: none;
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.club-list__item__title {
		font-size: 1.8rem;
	}
}

/* ---- Clubs template ---- */
.club-header-info {
	padding: 15px 25px;
}
.club-header-info__text__title {
	margin: 0 7px 0 0;
}
.club-header-info__logo {
	float: right;
	max-width: 250px;
	margin: 0 0 0px 25px;
	min-height: 118px;
	line-height: 118px;
	vertical-align: bottom;
}

.club-header-info__logo img {
	max-height: 150px;
}
.club-header-info__text {
	margin: 54px 0 13px;
}
.club-header-info__text__title,
.club-header-info__text__region {
	display: inline;
	font-size: 3.2rem;
}
.club-header-info__text__region {
	color: #afafaf;
}
.club-header-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: table;
}
.club-header-nav-list__item {
	border-right: 2px solid #FFF;
	display: table-cell;
}
.club-header-nav-list__item:last-child {
	border-right: none;
}
.club-header-nav-list__item a {
	padding: 15px 0;
	position: relative;
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 1.9rem;
	color: #FFF;
}
.club-header-nav-list__item a:before {
	content: " ";
	background-color: rgba(0,0,0,0);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.club-header-nav-list__item.club-header-nav-list__item--active a:before {
	background-color: rgba(255,255,255,0.3);
}
.club-header-nav-list__item a:hover:before {
	background-color: rgba(0,0,0,0.1);
}
.feature-box.club-highlight-colour .feature-box-subtle-title,
.feature-box.club-highlight-colour legend,
.feature-box.club-highlight-colour label,
.feature-box.club-highlight-colour label:before,
.feature-box.club-highlight-colour label:after {
	color: #FFF;
}

/* Partners gallery */
.partners-gallery {
	list-style: none;
	padding: 0;
	margin: 0;
}
.partners-gallery__item {
	margin: 0 4.33333333% 35px 0;
	float: left;
	width: 16.5%;
	text-align: center;
}
.partners-gallery__item:nth-child(5n+5) {
	margin-right: 0;
}
.partners-gallery__item a {
	display: block;
}
.partners-gallery__item a:hover {
	opacity: 0.7;
}
.partners-gallery__item img {
	max-height: 120px;
	max-width: 160px;
}
.partners-gallery__item-image {
	min-height: 150px;
}


/* video gallery */
.video-gallery-list {
    padding: 0;
    list-style: none;
}

.video-gallery-list__item {
    margin-bottom: 1em;
    position: relative;
}

.video-gallery-list__item:before {
    padding-top: 56.25%;
    content: "";
    display: block;
}

.video-gallery-list__item a {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
}


.video-gallery-list__item__thumb {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.video-gallery-list__item__thumb img {
    max-width: 100%;
}

.video-gallery-list__item__title {
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    padding: 8px;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
}

.video-gallery-list__item__title P {
	margin: 0;
}

.video-gallery-list__item:hover .video-gallery-list__item__title {
    background-color: rgba(0,0,0,0.8);
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.partners-gallery__item {
		margin: 0 4% 35px 0;
		width: 22%;
	}
	.partners-gallery__item:nth-child(5n+5) {
		margin-right: 4%;
	}
	.partners-gallery__item:nth-child(4n+4) {
		margin-right: 0;
	}
	.partners-gallery__item img {
		max-height: 94px;
		max-width: 120px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.partners-gallery__item {
		margin-bottom: 13px;
	}
	.partners-gallery__item img {
		max-height: 75px;
		max-width: 90px;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.partners-gallery__item {
		margin: 0 2% 7px 0;
		width: 30.6666666%;
	}
	.partners-gallery__item:nth-child(5n+5),
	.partners-gallery__item:nth-child(4n+4) {
		margin-right: 2%;
	}
	.partners-gallery__item:nth-child(3n+3) {
		margin-right: 0;
	}
	.partners-gallery__item img {
		max-height: 50px;
		max-width: 70px;
	}
}

/* Upcoming events list */
.upcoming-events-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.upcoming-events-list__item {
	margin-bottom: 3px;
}
.upcoming-events-list__item:last-child {
	margin-bottom: 0;
}
.upcoming-events-list__item a {
	display: block;
	background-color: #ededed;
	border-left: 6px solid #555555;
	padding: 11px 19px;
	text-decoration: none;
	color: #444;
	font-size: 1.5rem;
}
.upcoming-events-list__item a:hover {
	background-color: #f7f6f6;
}
.upcoming-events-list__item__date {
	margin: 0;
}
.upcoming-events-list__item__title {
	margin: 0;
	font-weight: bold;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.club-header-nav-list__item a {
		padding: 13px 0;
		font-size: 1.6rem;
	}
	.club-header-info {
		padding: 5px 25px;
	}
	.club-header-info__text {
		margin: 38px 0 13px;
	}
	.club-header-info__text__title,
	.club-header-info__text__region {
		font-size: 2.8rem;
	}
	.club-header-info__logo {
		margin: 5px 0 5px 20px;
		width: 140px;
		min-height: 108px;
		line-height: 108px;
	}
}

/* BP 2 */
@media screen and (max-width: 920px) {
	.club-header-info__text {
		margin: 39px 0 13px;
	}
	.club-header-nav-list__item a {
		padding: 13px 0;
		font-size: 1.4rem;
	}
	.club-header-info__text__title,
	.club-header-info__text__region {
		font-size: 2.1rem;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.club-header-nav-list__item {
		display: block;
		border-right: none;
		border-top: 1px solid #FFF;
	}
	.club-header-info__logo {
		width: 90px;
		line-height: 90px;
		min-height: 95px;
	}
	.club-header-info__text {
		margin: 32px 0 13px;
	}
	.club-header-info__text__title,
	.club-header-info__text__region {
		font-size: 1.8rem;
	}
	.club-header-nav-list__item a {
		font-size: 1.2rem;
		padding: 7px 15px;
		text-align: left;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {
	.club-header-nav-list__item:first-child {
		border-top: none;
	}
	.club-header-info {
		padding: 14px 15px;
	}
	.club-header-info__text {
		margin: 5px 0 0;
		text-align: center;
	}
	.club-header-info__text__title,
	.club-header-info__text__region {
		font-size: 1.5rem;
	}
	.club-header-info__logo {
		width: 80px;
		line-height: inherit;
		min-height: auto;
		display: block;
		float: none;
		margin: 5px auto;
	}
}

/* ---- Fields template ---- */
.field-popup-buttons {
	margin: 0 0 15px;
}
.field-popup-buttons .button {
	margin-bottom: 8px;
}

/* ---- Magnific popup ---- */

/* White popup */
.white-popup {
	position: relative;
	background: #FFF;
	padding: 30px 40px;
	width: auto;
	max-width: 720px;
	margin: 20px auto;
}

/* Zoom animation */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* ---- Site search ---- */

/* ie on the /search page */

@media screen and (min-width: 650px) {
	.site-search-form input[type="text"] {
		width: 60%;
		margin: 0 1.5% 0 0;
	}

}

/* Generic style for all widgets */

.widget h3.widget-title {

}


/* ------------------------------------------------------
**** Widgets

Widgets & Modules that ship with sprout.
If they don't they belong in seperate partial file

------------------------------------------------------ */

/* ---- Catch all ---- */
.sidebar .widget {
	margin-bottom: 25px;
}

/* ---- Related Links ---- */
.widget-RelatedLinks {
	margin-bottom: 25px;
}
/* resets, don't touch */
.widget-RelatedLinks ul {
	padding: 0;
	margin:  0;
}
.widget-RelatedLinks li {
	list-style: none;
}
.widget-RelatedLinks a {
	text-decoration: none;
}
/* styles */
.widget-RelatedLinks li.depth1 {
	border-bottom: 1px solid #d6d6d6;
	position: relative;
}
.widget-RelatedLinks li.depth1:last-child {
	border-bottom: none;
}
.widget-RelatedLinks li.depth1 > a {
	display: block;
	padding: 10px 18px 10px 0;
	transition: all 150ms ease-out;
}
.widget-RelatedLinks li.depth1.on > a,
.widget-RelatedLinks li.depth1 > a:hover {
	background-color: #eee;
	padding-left: 10px;
}
.widget-RelatedLinks li.depth1.on > a:hover {
	padding-left: 15px;
}
.widget-RelatedLinks li.on > a:after,
.widget-RelatedLinks li.depth1:hover > a:after,
.widget-RelatedLinks li.depth2 a:hover:after {
	content: ">";
	position: absolute;
	right: 10px;
	color: #000;
	top: 9px;
}

/* Children */
.widget-RelatedLinks li.depth2 {
	font-size: 1.4rem;
}
.widget-RelatedLinks li.depth2 a {
	background: #f6f6f6;
}
.widget-RelatedLinks li.depth2.on a,
.widget-RelatedLinks li.depth2.on a:hover {
	background: #eee;
}
.widget-RelatedLinks li.depth2 a:before {
	content: "- ";
}
.widget-RelatedLinks li.depth2 {
	border-top: 1px solid #d6d6d6;
}
.widget-RelatedLinks li.depth2 a {
	transition: all 150ms ease-out;
	position: relative;
	padding: 10px 25px 10px 25px;
	display: block;
}
.widget-RelatedLinks li.depth2 a:hover {
	background: #eee;
}





/* ---- Blog ---- */

.widget-BlogCategorySubscribe {
	background: #0d2848;
	color: #FFF;
	padding: 25px 20px 20px 25px;
}

.blog-sidebar__tags {
	line-height: 2.25;
}


.blog-list__item:before,
.blog-list__item:after {
    content: " ";
    display: table;
}

.blog-list__item:after {
	clear: both;
}




/* ---- Simple Image Gallery ---- */
.widget-GallerySimple {
	margin: 15px -10px;
}

.widget-GallerySimple h3 {
	padding: 10px;
}

.widget-GallerySimple .gallery-simple-thumb {
	width: 33.333%;
	padding: 10px;
	float: left;
}
.widget-GallerySimple .gallery-simple-thumb img {
	width: 100%;
}

/* ---- Children Page Gallery ---- */
.children-gallery-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-ChildrenGallery .children-gallery-list-item {
	width: 48%;
	float: left;
	margin: 0 0 20px 4%;
	position: relative;
}

.widget-ChildrenGallery .children-gallery-list-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.widget-ChildrenGallery .children-gallery-list-item-link:hover {
	text-decoration: underline;
}
.widget-ChildrenGallery .children-gallery-list-item-image {
	margin-bottom: 9px;
}
.widget-ChildrenGallery .children-gallery-list-item-link:hover .children-gallery-list-item-image {
	opacity: 0.9;
}
.widget-ChildrenGallery .children-gallery-list-item-title {
	margin: 0;
}
.widget-ChildrenGallery .children-gallery-list-item-anchor {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.children-gallery-list-item-image-placeholder {
    padding-top: 86.666666667%;
    margin-bottom: 10px;
    position: relative;
    background: #fbf8f8 no-repeat center center;
	background-image: url(../images/children-gallery-thumb-placeholder.png);
	background-size: contain;
}

@media screen and (max-width: 600px) {
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(2n+1) {
		margin-left: 0;
		clear: left;
	}
}

/* BP 4 */
@media screen and (min-width: 601px) and (max-width: 730px) {
	.widget-ChildrenGallery .children-gallery-list-item {
		width: 30.666666%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(3n+1) {
		margin-left: 0;
		clear: left;
	}
}

/* BP 3 */
@media screen and (min-width: 731px) {
	.widget-ChildrenGallery .children-gallery-list-item {
		width: 22%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(4n+1) {
		margin-left: 0;
		clear: left;
	}
}

/* ---- Share links ---- */
.share-links {
    margin: 0 0 20px;
}
.share-link {
    display: inline-block;
    margin: 0 5px 0 0;
}
.share-link:last-child {
    margin-right: 0;
}
.share-link a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    position: relative;
}
.share-link img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 22px;
}
.share-link a:hover {
    opacity: 0.9;
}


/* Facebook */
.share-link.share-link--facebook a {
    background-color: #3e5b98;
}

/* Twitter */
.share-link.share-link--twitter a {
    background-color: #4da7de;
}

/* Email */
.share-link.share-link--email a {
    background-color: #444;
}

/* LinkedIn */
.share-link.share-link--linkedin a {
    background-color: #3371b7;
}

/* ---- Order Form ---- */
.widget-OrderForm .product {
	width: 30%;
	margin-right: 5%;
	float: left;
}
.widget-OrderForm .product:nth-child(3n+3) {
	margin-right: 0;
}

/* ---- Videos ---- */
.tinymce-media-iframe,
.widget-Video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    clear: both;
}

.tinymce-media-iframe iframe,
.widget-Video iframe,
.widget-Video object,
.widget-Video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    border: 0;
}

.tinymce-media-iframe {
    margin: 2rem 0;
}

.club-banner-video {
	background-size: 100%;
	background-position: 0 0;
	margin-bottom: 1em;
	width: 100%;
	background-color: #fff;
	background-repeat: no-repeat;
}


/* ---- reCAPTCHA ---- */
.g-recaptcha {
	padding-bottom: 15px;
}

/* ---- Social Hub ---- */

.author-name {
	padding-top: 10px;
}

.item-meta {
	top: 18px;
	width: 95px;
}

.item-meta .button.button-small {
	padding: 2px 5px;
	/*display: inline-block;*/
	font-size: 1.3rem;
	margin-top: -2px;
}

/* ---- Calendar ---- */
#calendar ul.weekdays {
	background-color: #0d2848;
}

/* 2020 Bushfire Appeal | temporary */
.bushfire-alert {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 7.2rem;
	line-height: 1.2;

	box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bushfire-alert .container {
	background-image: url(../images/img_bushfire-appeal_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.bushfire-alert a {
	display: block;
	text-decoration: none;
}

.bushfire-alert__row {
	box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;

	padding: 10px 32px;
}

.bushfire-alert__badge {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 108px;
	flex: 0 1 108px;

	padding-top: 5px;
	padding-bottom: 5px;

	display: -ms-flexbox;
    display: -webkit-box;
	display: flex;

	-ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
	text-align: center;

	-ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.bushfire-alert__badge img {
	-ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
}

.bushfire-alert__ticker {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;

	display: -ms-flexbox;
    display: -webkit-box;
	display: flex;

	-ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
	text-align: center;

	-ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;

	margin-bottom: 0;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.bushfire-alert__ticker span {
	display: block;
	width: 0.25em;
	text-align: left;
	float: left;
	padding: 4px 0;
}

.bushfire-alert__ticker span:not(.punctuation) {
	background-color: #EC1C24;
	border-radius: 6px;
	text-align: center;
	width: 1em;
	margin-left: 0.05em;
	margin-right: 0.05em;
	padding: 4px;
}

.bushfire-alert__button {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 100px;
	flex: 0 1 100px;

	padding-top: 30px;
	padding-bottom: 30px;

		display: -ms-flexbox;
    display: -webkit-box;
	display: flex;

	-ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
	text-align: center;

	-ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.bushfire-alert__button img {
	-ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
}

/* BP 1 */
@media screen and (max-width: 1190px) {
	.bushfire-alert {
		font-size: 6.4rem;
	}
}

/* BP 1.5 */
@media screen and (max-width: 1070px) {
	.bushfire-alert {
		font-size: 5.4rem;
	}
}


/* BP 2 */
@media screen and (max-width: 920px) {
	.bushfire-alert {
		font-size: 4.2rem;
	}

	.bushfire-alert__badge {
		padding-top: 0;
		padding-bottom: 0;
	}
	.bushfire-alert__ticker {
		padding-top: 18px;
		padding-bottom: 15px;
	}

	.bushfire-alert__button {
		padding-top: 21px;
		padding-bottom: 10px;
	}
}

/* BP 3 */
@media screen and (max-width: 730px) {
	.bushfire-alert {
		font-size: 3rem;
	}
}

@media screen and (max-width: 600px) {
	.bushfire-alert .container {
		background-image: url(../images/img_bushfire-appeal_bg-square.jpg);
	}

	.bushfire-alert__row {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;

		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		text-align: center;

		padding: 20px 20px 10px;
	}

	.bushfire-alert {
		font-size: 7.5vw;
	}

	.bushfire-alert__badge {
		-ms-flex-order: 0;
		-webkit-box-ordinal-group: 1;
		order: 0;

		-webkit-box-flex: 0;
		-ms-flex: 0 1 50%;
		flex: 0 1 50%;
	}

	.bushfire-alert__badge img {
		max-width: 100px;
	}

	.bushfire-alert__button {
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 2;
		order: 1;

		-webkit-box-flex: 0;
		-ms-flex: 0 1 50%;
		flex: 0 1 50%;

		padding-top: 40px;
    	padding-bottom: 15px;
	}

	.bushfire-alert__button img {
		max-width: 100px;
	}

	.bushfire-alert__ticker {
		-ms-flex-order: -1;
		-webkit-box-ordinal-group: 0;
		order: -1;

		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;

		padding-left: 5px;
		padding-right: 5px;
		padding-top: 5px;
		padding-bottom: 5px;

		border-radius: 2px;
		background-color: rgba(0,0,0,0.66);
	}
}

@media screen and (max-width: 480px) {
	.bushfire-alert {
		font-size: 6vw;
	}
}


/* ------------------------------------------------------
**** Print styles
------------------------------------------------------ */

@media print {
	* {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: h5bp.com/s */
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	/*
	* Don't show links for images, or javascript/internal links
	*/

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group; /* h5bp.com/t */
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

	.logo-text {
		width: auto;
	}

	.section--content > .container {
		padding-top: 0;
		padding-bottom: 0;
	}

	.social-media-list,
	#frankenmenu-subnav-list,
	#frankenmenu,
	#footer,
	#mobile-menu-button,
	.content-advertisements,
	.wide-advertisement,
	.sidebar {
		display: none;
	}
}
