@-webkit-viewport {
	width: device-width;
	zoom: 1.0;
}
@-moz-viewport {
	width: device-width;
	zoom: 1.0;
}
@-ms-viewport {
	width: device-width;
	zoom: 1.0;
}
@-o-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:				sans-serif;
	$heading-font:			Helvetica;


	Table of Contents for search based navigation


**** 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
---- Footer
---- Site search


**** Widgets
---- Catch all
---- Related Links
---- Simple Image Gallery
---- Children Page Gallery
---- Order Form
---- Videos


**** Print styles



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


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

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

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

/* ---- Grow in fade ---- */
@-webkit-keyframes growInFade {
	from {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
		        opacity: 0;
	}
	to {
		-webkit-transform: none;
		        transform: none;
		         opacity: 1;
	}
}
@keyframes growInFade {
	from {
		-webkit-transform: scale(0.9);
		        transform: scale(0.9);
		        opacity: 0;
	}
	to {
		-webkit-transform: none;
		        transform: none;
		         opacity: 1;
	}
}
/* ---- Grow in fade ---- */
@-webkit-keyframes growIn {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
		        opacity: 0.5;
	}
	to {
		-webkit-transform: none;
		        transform: none;
		         opacity: 1;
	}
}
@keyframes growIn {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
		        opacity: 0.5;
	}
	to {
		-webkit-transform: none;
		        transform: none;
		         opacity: 1;
	}
}


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

html {
	font-size: 62.5%;
}

body {
	line-height: 1.2;
	font-size: 1.4rem;
	color: #222;
	background: #dfdcd4;
	font-family: "Century Gothic W01", 'Century Gothic', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 48em) { /* 768px */
	body {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 62em) { /* 992px */
	body {
		font-size: 1.8rem;
	}
}


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

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
	margin-top: 2.5rem;
}


h1, .h1 {
	line-height: 3.4rem;
	font-size: 2.8rem;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
}

h2, .h2 {
	font-size: 2.2rem;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

h3, .h3 {
	font-size: 2.3rem;
	font-weight: bold;
}

h4, .h4 {
	font-size: 2.1rem;
	font-weight: bold;
}

h5, .h5 {
	font-size: 1.9rem;
	font-weight: bold;
}

h6, .h6 {
	font-size: 1.7rem;
	font-weight: bold;
}

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

.heading-lg {
	font-size: 1.5em;
}

.heading-btm {
	margin-top: 0;
	margin-bottom: 1em;
}

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 {
	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;
}

.list-unstyled {
	list-style-type: none;
	padding-left: 0;
	padding-right: 0;
}


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

.fashionevent-cal-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fashionevent-cal-list__item {
	margin: 0 0 0.5rem 0;
}

.fashionevent-cal-list__item span {
	background-color: #002354;
	margin-right: 1rem;
	padding: 0.2rem 0 1rem 0;
	width: 10%;
	border-radius: 5px;
	display: inline-block;
	text-align: center;
	color: #fff;
}

.fashionevent-cal-list__item a:link,
.fashionevent-cal-list__item a:visited {
	text-decoration: none;
	color: #222;
}

.fashionevent-cal-list__item a:hover,
.fashionevent-cal-list__item a:active,
.fashionevent-cal-list__item a:focus {
	text-decoration: underline;
	color: #c04f42;
}

.widget-FashionEventList h2:first-child {
	margin-top: 0
}


/* ---- Quotations ---- */
blockquote {
	margin: 2.5rem 0;
	padding: 20px 20px 28px;
	background: #f2f2f2;
	font-style: normal;
}
blockquote p:last-child {
	margin-bottom: 0;
}

/* ---- HR ---- */
hr {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 2em 0;
	padding: 0;
	clear: right; /* --------!!!! Change this to left if the sidebar is on the 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;
}

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

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

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}


/* ---- Links ---- */
a {
	color: #002354;
}

a:hover,
a:focus,
a:active {
    color: #45ad58;
}

/* 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;
}

@supports (display: flex) {
	a {
		text-decoration: none;
	}

    a:hover,
    a:focus,
    a:active {
        color: #002354;
    	background: -webkit-gradient(linear,left top,right top,from(#45ad58),to(#002354));
    	background: linear-gradient(to right,#45ad58,#002354);
    	    background-clip: border-box;
    	-webkit-background-clip: text;
    	-webkit-text-fill-color: transparent;
    	-webkit-box-decoration-break: clone;
    	box-decoration-break: clone;
    	text-shadow: none;
    }
}

h2 a,
h3 a,
h4 a {
	color: inherit;
}

h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus {
	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}

/* ------------------------------------------------------
**** 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;
	font-weight: bold;
	background-color: #2a2a2a;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid transparent;
	-webkit-transition: all 160ms ease-in;
	-o-transition: all 160ms ease-in;
	transition: all 160ms ease-in;
	outline: none;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}


.button:hover,
.button:focus,
.button:active {
	color: #fff;
	background: #2a2a2a;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}

/* 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 10px;
}
.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 11px;
}
.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 13px;
}
.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;
}

/* Extra Small */
.button.button-xsmall,
.field-element--button.field-element--xsmall .button {
	line-height: 1;
	font-size: 15px;
	padding: 3px 6px;
	border-radius: 4px;
}

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

/* Regular (default) */
.button,
.button-regular {
	padding: 8px 24px;
	font-size: 1.4rem;
	line-height: 1.2;
}

@media only screen and (min-width: 48em) { /* 768px */
	.button,
	.button-regular {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 62em) { /* 992px */
	.button,
	.button-regular {
		font-size: 1.8rem;
	}
}

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

/* default button */
.button {
	background-color: #2a2a2a;
	color: #fff;
	border-color: #2a2a2a;
}
.button.icon-before:before,
.button.icon-after:after {
	color: rgba(255,255,255,0.5);
}
.button:hover,
.button:focus {
	background-color: #000;
	color: #fff;
	border-color: #000;
}

.button.button-green {
	background-color: #45ad58;
	color: #fff;
	border-color: #45ad58;
}
.button.button-green.icon-before:before,
.button.button-green.icon-after:after {
	color: #212b34;
}

.button.button-green:hover,
.button.button-green:focus {
	background-color: #257B40;
	color: #fff;
	border-color: #257B40;
}

/* navy button  */
.button.button-navy {
	background-color: #212b34;
	color: #fff;
	border-color: #212b34;
}

.button.button-navy.icon-before:before,
.button.button-navy.icon-after:after {
	color: #212b34;
}

.button.button-navy:hover,
.button.button-navy:focus {
	background-color: #101519;
	color: #fff;
	border-color: #101519;
}

.button.blog-refine-bar__button.on {
	background-color: #101519;
	color: #fff;
	border-color: #101519;
}

/* white */
.button.button-white {
	background-color: rgba(255,255,255,1);
	color: #002222;
	border-color: rgba(255,255,255,0);
}
.button.button-white.icon-before:before,
.button.button-white.icon-after:after {
	color: #002222;
}
.button.button-white:hover,
.button.button-white:focus {
	background-color: rgba(255,255,255,.8);

}


/* 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: rgba(100,100,100,1);
	color: #ffffff;
	border-color: rgba(100,100,100,0);
}
.button.button-grey.icon-before:before,
.button.button-grey.icon-after:after {
	color: #ffffff;
}
.button.button-grey:hover,
.button.button-grey:focus,
.button.button-grey:disabled {
	background-color: rgba(80,80,80,1);
	border-color: rgba(80,80,80,1);
}


/* Black */
.button.button-black {
	background-color: #000;
	color: #ffffff;
	border-color: #000;
}
.button.button-black.icon-before:before,
.button.button-black.icon-after:after {
	color: #ffffff;
}
.button.button-black:hover,
.button.button-black:focus,
.button.button-black:disabled {
	background-color: #383838;
	border-color: #383838;
}

.club-highlight-colour .button {
	background-color: #000;
	border-color: #000;
	color: #fff;
}

.club-highlight-colour .button:hover,
.club-highlight-colour .button:focus,
.club-highlight-colour .button:active {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.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;
	background-color: #2a2a2a;
}

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

.button-right {
	float: right;
}

/* 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 {
	border-color: transparent;
	background-image: none;
	opacity: 0.4;
	cursor: default;
	-webkit-box-shadow: none;
	        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;
}

/* ---- Expando ---- */
.expando-opener-heading {
	color: #e85505;
}

.expando-opener-heading:hover {
	color: #ae550d;
}

a.expando-opener-link:before,
.expando-opener-heading:before {
	content:"\003e ";
	margin-right: 5px;
	display: inline-block;
	top: -2px;
	position: relative;
}

.expando-opener-heading.expanded:before {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	    transform: rotate(90deg);

}


/* ---- 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;
}

.expando-open {
	color: #002354;
}

.expando-open:hover,
.expando-open:focus {
	color: inherit;
}

/* ---- 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
------------------------------------------------------ */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #9e9e9e;
	text-transform: uppercase;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #9e9e9e;
	text-transform: uppercase;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #9e9e9e;
	text-transform: uppercase;
}
:-moz-placeholder { /* Firefox 18- */
	color: #9e9e9e;
	text-transform: uppercase;
}

/* 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: 0;
	-webkit-appearance: none;
	padding: 0;
	border: none;
	outline: none;
	background: transparent url(../images/icon-search.png) no-repeat 15px 15px;
	width: 54px;
	z-index: 1;
	bottom: 0;
	border-radius: 0;
}

/* 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: #545454;
}


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

/* ---- 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.4rem;
	line-height: 1.2;
	border: 1px solid #dfdcd4;
	border-radius: 5px;
	background-color: #f7f6f4;
}

@media only screen and (min-width: 48em) { /* 768px */
	.field-input .textbox,
	.field-input select,
	.field-element--fileselector .fs-preview-wrapper {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 62em) { /* 992px */
	.field-input .textbox,
	.field-input select,
	.field-element--fileselector .fs-preview-wrapper {
		font-size: 1.8rem;
	}
}

/* ---- 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;
	border-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;
}

@media screen and (max-width: 768px) {
	.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;
}

/* ---- Invisible ---- */
.field-element--invisible .field-input .textbox,
.field-element--invisible .field-input select,
.field-element--invisible .field-element--fileselector .fs-preview-wrapper {
	background: none;
	background-color: inherit;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0);
	outline: none;
	border-radius: 0;
	padding-left: 12px;
	padding-right: 12px;
}

.field-element--invisible ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
}
.field-element--invisible ::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
}
.field-element--invisible :-ms-input-placeholder { /* IE 10+ */
	color: #fff;
}
.field-element--invisible :-moz-placeholder { /* Firefox 18- */
	color: #fff;
}

/* ---- 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: 'Montserrat', Helvetica, Arial, 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-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;
}
/* Large */
.field-element--large .field-input select {
	background-position: top -253px right -104px, top -447px right -92px;
}

/* Large and regular field elements turn small */
@media screen and (max-width: 900px) {
	.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 {
	-webkit-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 */
@media screen and (max-width: 900px) {
	.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 */
@media screen and (max-width: 900px) {
	.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 */
@media screen and (max-width: 900px) {
	.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 */
@media screen and (max-width: 900px) {
	.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 */
@media screen and (max-width: 900px) {
	.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: #45ad58;
	color: #FFF;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:focus {
	background-color: #000;
	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: #45ad58;
}

.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;
	-o-text-overflow: ellipsis;
	   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 {
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.file-upload__progress-circle__pie__piece {
	-webkit-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	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%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -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: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#file-selector-upload .field-elements-inline .field-element--dropdown,
#file-selector-search .field-elements-inline .field-element--dropdown {
	-webkit-box-flex: 1;
	    -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 {
	-webkit-box-flex: 1;
	    -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;
}

/* popup */
.mfp-content #main_content {
	background-color: #fff;
	margin: 0 auto;
	padding: 2em;
	max-width: 900px;
	position: relative;
}

/* ---- 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 */
@media screen and (max-width: 900px) {
	.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: #ededed;
	padding: 14px;
}

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

.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 {
	padding: 10px 0;
	text-align: center;
}
.search-paginate .page-prev {
	margin: 0 8px 0 0;
}
.search-paginate .page {
	padding: 3px 14px 9px;
	margin: 0 3px;
	background-color: #dfdcd4;
	text-decoration: none;
	color: #000;
	font-weight: 900;
	display: inline-block;
	font-size: 2.1rem;
}
.search-paginate .page:hover {
	background-color: #d4d0c8;
}
.search-paginate .page.on {
	color: #fff;
	background-color: #002354;
}

.search-paginate .page-next,
.search-paginate .page-prev {
	font-size: 1.8rem;
	font-weight: 900;
	text-decoration: none;

	color: #000;
}
.search-paginate .page-prev {
	margin-right: 14px;
}
.search-paginate .page-next {
	margin-left: 14px;
}
.search-paginate .page-prev:hover,
.search-paginate .page-next:hover {
	text-decoration: underline;
}


/* ---- 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: #f6f6f6;
}

/* ---- 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: #FFF;
}
.table--content-standard th,
.table--content-standard td {
	border: 1px solid #d7d7d7;
	padding: 12px 15px;
	text-align: left;
}


/* 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;
}

/* ---- 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;
}




/* ------------------------------------------------------
**** 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;
}

/* ---- Text align ---- */
.text-align--center {
	text-align: center;
}
.text-align--right {
	text-align: right;
}

/* ---- 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;
		width: 100%;
		display: block;
		float: none;
	}
}

/* ---- Vertical align ---- */

.vert-align {
	display: table;
	width: 100%;
	height: 100%;
}

.vert-align__wrap {
	display: table-cell;
	vertical-align: middle;
}


/* ---- 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;
	}
}

/* Fashion at the races grid */
.grid-col--last-right {
	float: right;
}

@media screen and (min-width: 500px) {
	.grid-col--lgmob-up {
		float: left;
		margin-right: 2.1052631578947367%;
	}
	.grid-col--lgmob-up:last-child,
	.grid-col--lgmob-up.grid-col-last-in-row--lgmob-up {
		margin-right: 0;
	}

	/* Reverse */
	.grid.grid-reverse .grid-col--lgmob-up {
		float: right;
		margin-right: 0;
		margin-left: 1.754385964912%;
	}
	.grid.grid-reverse .grid-col--lgmob-up:last-child,
	.grid.grid-reverse .grid-col--lgmob-up.grid-col-last-in-row--lgmob-up {
		margin-left: 0;
	}
	.grid-col--last-right--lgmob-up {
		float: right;
	}
}
@media screen and (min-width: 700px) {
	.grid-col--tab-up {
		float: left;
		margin-right: 2.1052631578947367%;
	}
	.grid-col--tab-up:last-child,
	.grid-col--tab-up.grid-col-last-in-row--tab-up {
		margin-right: 0;
	}

	/* Reverse */
	.grid.grid-reverse .grid-col--tab-up {
		float: right;
		margin-right: 0;
		margin-left: 1.754385964912%;
	}
	.grid.grid-reverse .grid-col--tab-up:last-child,
	.grid.grid-reverse .grid-col--tab-up.grid-col-last-in-row--tab-up {
		margin-left: 0;
	}
	.grid-col--last-right--tab-up {
		float: right;
	}
}
@media screen and (min-width: 980px) {
	.grid-col--lgtab-up {
		float: left;
		margin-right: 2.1052631578947367%;
	}
	.grid-col--lgtab-up:last-child,
	.grid-col--lgtab-up.grid-col-last-in-row--lgtab-up {
		margin-right: 0;
	}

	/* Reverse */
	.grid.grid-reverse .grid-col--lgtab-up {
		float: right;
		margin-right: 0;
		margin-left: 1.754385964912%;
	}
	.grid.grid-reverse .grid-col--lgtab-up:last-child,
	.grid.grid-reverse .grid-col--lgtab-up.grid-col-last-in-row--lgtab-up {
		margin-left: 0;
	}
	.grid-col--last-right--lgtab-up {
		float: right;
	}
}
@media screen and (min-width: 1120px) {
	.grid-col--smdes-up {
		float: left;
		margin-right: 2.1052631578947367%;
	}
	.grid-col--smdes-up:last-child,
	.grid-col--smdes-up.grid-col-last-in-row {
		margin-right: 0;
	}

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


@media screen and (min-width: 1120px) {
	.grid-col-3--smdes-up {
		width: 23.421052631579%;
	}
}

@media screen and (min-width: 500px) {
	.grid-col-4--lgmob-up {
		width: 31.929824561404%;
	}
}
@media screen and (min-width: 700px) {
	.grid-col-4--tab-up {
		width: 31.929824561404%;
	}
}
@media screen and (min-width: 980px) {
	.grid-col-4--lgtab-up {
		width: 31.929824561404%;
	}
}
@media screen and (min-width: 1120px) {
	.grid-col-4--smdes-up {
		width: 31.929824561404%;
	}
}

@media screen and (min-width: 500px) {
	.grid-col-5--lgmob-up {
		width: 40.438596491228%;
	}
}
@media screen and (min-width: 700px) {
	.grid-col-5--tab-up {
		width: 40.438596491228%;
	}
}
@media screen and (min-width: 980px) {
	.grid-col-5--lgtab-up {
		width: 40.438596491228%;
	}
}
@media screen and (min-width: 1120px) {
	.grid-col-5--smdes-up {
		width: 40.438596491228%;
	}
}

@media screen and (min-width: 500px) {
	.grid-col-6--lgmob-up {
		width: 48.947368421053%;
	}
}
@media screen and (min-width: 700px) {
	.grid-col-6--tab-up {
		width: 48.947368421053%;
	}
}
@media screen and (min-width: 980px) {
	.grid-col-6--lgtab-up {
		width: 48.947368421053%;
	}
}
@media screen and (min-width: 1120px) {
	.grid-col-6--smdes-up {
		width: 48.947368421053%;
	}
}

@media screen and (min-width: 500px) {
	.grid-col-8--lgmob-up {
		width: 65.964912280702%;
	}
}
@media screen and (min-width: 700px) {
	.grid-col-8--tab-up {
		width: 65.964912280702%;
	}
}
@media screen and (min-width: 980px) {
	.grid-col-8--lgtab-up {
		width: 65.964912280702%;
	}
}
@media screen and (min-width: 1120px) {
	.grid-col-8--smdes-up {
		width: 65.964912280702%;
	}
}




/** css columns **/
@media screen and (min-width: 700px) {
	.css-col-2 {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 1rem;
		column-gap: 1rem;
	}
	.css-col-2 ul {
		-webkit-column-break-inside: avoid;
		break-inside: avoid;
	}
}

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

* {
	margin: 0;
}

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

#wrap {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: rgb(157,157,157);
	background: -moz-linear-gradient(90deg, rgba(157,157,157,1) 0%, rgba(230,230,230,1) 33%, rgba(230,230,230,1) 66%, rgba(157,157,157,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(157,157,157,1) 0%, rgba(230,230,230,1) 33%, rgba(230,230,230,1) 66%, rgba(157,157,157,1) 100%);
	background: linear-gradient(90deg, rgba(157,157,157,1) 0%, rgba(230,230,230,1) 33%, rgba(230,230,230,1) 66%, rgba(157,157,157,1) 100%);
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (min-width: 75em) { /* 1200px */
	#wrap {
		background-size: 100% auto;
	}
}

.container {
	margin: 0 4%;
}
@media screen and (min-width: 500px) {
	.container {
		width: 460px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (min-width: 600px) {
	.container {
		width: 580px;
	}
}
@media screen and (min-width: 700px) {
	.container {
		width: 660px;
	}
}

@media screen and (min-width: 980px) {
	.container {
		width: 880px;
	}
}

@media screen and (min-width: 1120px) {
	.container {
		width: 1080px;
	}
}

@media screen and (min-width: 1280px) {
	.container {
		width: 1180px;
	}
}

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

/* Small */
.section--small {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Large */
.section--large {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section--pb0 {
	padding-bottom: 0;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .section--small {
        padding-top: 25px;
        padding-bottom: 25px;
	}

	.section--large {
        padding-top: 45px;
        padding-bottom: 45px;
    }

	.section--pb0 {
		padding-bottom: 0;
	}
}

@media only screen and (min-width: 48em) { /* 768px */
	.section {
		padding: 60px 0;
	}

	.section--small {
        padding-top: 30px;
        padding-bottom: 30px;
	}

	.section--large {
        padding-top: 80px;
        padding-bottom: 80px;
    }

	.section--pb0 {
		padding-bottom: 0;
	}
}

.section--separate {
	padding-left: 36px;
	padding-right: 36px;
	margin-top: 12px;
	margin-bottom: 12px;
}

/* ---- Bg colours ---- */
.bg-white {
	background-color: #FFF;
}
.bg-grey {
	background-color: #545454;
	color: #FFF;
}
.bg-grey a {
	color: #FFF;
}
.bg-light-grey {
	background-color: #f0eeee;
}
.bg-grn {
	background-color: #45ad58;
}
.bg-blue {
	background-color: #002354;
}
.bg-dark-grey {
	background-color: #383838;
	color: #FFF;
}
.bg-navy {
	background-color: #212b34;
	color: #FFF;
}
.bg-fawn-pink {
	background-color: #002354;
	color: #FFF;
}
.bg-trans {
	background-color: transparent;
}
.bg-reverse {
	color: #fff;
}
.bg-reverse a {
	color: #fff;
}

@media only screen and (min-width: 62em) { /* 992px */
	.row-inner-gap--md > .col-md-6:first-child {
		padding-right: 16px;
	}
	.row-inner-gap--md > .col-md-6:last-child {
		padding-left: 16px;
	}
}

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

#header {
	position: relative;
	z-index: 1;
}

#header > * {
	position: relative;
}

@media screen and (min-width: 1280px) {
	.header-logo {
		position: relative;
	}
}


/* Social */
.social-list.social-list--header {
	text-align: center;
	margin-top: 0;
	display: none;
	position: relative;
    z-index: 2;
}
.social-list--header a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #002354;
	text-align: center;
}
.social-list--header a:hover {
	background-color: #000;
}
.social-list--header .social-list__item img {
	max-width: 17px;
	max-height: 16px;
}

@media screen and (min-width: 600px) {
	.social-list.social-list--header {
		margin-bottom: 32px;
		display: block;
	}
}
@media screen and (min-width: 700px) {
	.social-list.social-list--header {
		/* margin-top: -67px; */
		text-align: right;
	}
}

@media screen and (min-width: 980px) {
	.social-list.social-list--header {
		/* margin-top: -78px; */
		margin-bottom: 20px;
	}
	.social-list--header a {
		width: 44px;
		height: 44px;
	}
	.social-list--header .social-list__item img {
		max-width: 25px;
		max-height: 23px;
	}
}

/* affiliated websites */
.affiliated-entity-links {
	display: none;
	position: relative;
	margin-bottom: 48px;
}
.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__item:first-child:before {
	content: none;
}
.affiliated-entity-links__img {
	height: 28px;
	width: auto;
}

@media screen and (min-width: 700px) {
	.affiliated-entity-links {
		display: inline-block;
	}
}


/* Header logo */
.header-logo {
	padding: 25px 0 10px;
}


.header-logo a {
	display: block;
	margin-left: 0;
}

.logo {
	max-width: 280px;
	height: 80px;
	margin: 0 auto;
	display: block;
}

@media screen and (min-width: 500px) {
	.header-logo {
		padding: 35px 0 10px;
	}

	.header-logo .logo {
		margin-left: 0;
	}
}

@media screen and (min-width: 700px) {
	.logo {
		height: 108px;
	}
}

/* header search */
.header__search {
	display: none;
}

.header__search .site-search__input {
	float: left;
	width: calc(100% - 50px);
}

.header__search .field-element {
	margin-bottom: 0;
}

.header__search .field-input .textbox {
	font-size: 1.8rem;
	height: 50px;
	color: #fff;
}

.header__search .site-search__button {
	width: 50px;
	float: right;
}

.header__search .site-search__button .button {
	height: 50px;
	width: 50px;
	border-radius: 0;
	background: none;
	background-color: transparent;
	background-image: url(../images/icon_search.svg);
	background-position: center center;
	background-size: 24px auto;
	background-repeat: no-repeat;
	border: none;
	border-left: 1px solid rgba(255,255,255,0.15);
	padding-left: 20px;
	padding-right: 20px;
}

.header__search .site-search__button .button:hover,
.header__search .site-search__button .button:focus {
	background-color: #002354;
}

@media all and (min-width: 601px) {
	.header__search {
		display: block;
	}
}


@media all and (min-width: 979px) {
	.header__search {
		width: auto;
		max-width: 250px;
		float: right;
		border-left: 1px solid #fff;
		padding-left: 8px;
	}

	.header__search .field-input .textbox {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 1280px) {
	.header__search .field-input .textbox {
		font-size: 1.6rem;
	}
}



/* ---- Bar slider ---- */
.section.section--bar-slider > .container {
	padding-top: 18px;
	padding-bottom: 15px;
}
.section.section--bar-slider {
	padding: 10px 0;
}
.section--bar-slider + .section.section--content {
	padding-top: 0;
}
.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 80px;
	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: #a92025;
}

/* 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: 20px;
		padding-right: 20px;
	}
	.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;
	}
	.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;
}

.section--banner {
	margin-top: 12px;
}

.banner-slider {
	list-style: none;
	padding: 0;
	margin: 0;
}

.banner__item,
.banner-slider__item {
	position: relative;
	height: 393px !important;
}

.banner-image {
	background-image: url(../images/temp/banner-home/banner.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.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: #002354;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.banner-title {
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1;
}

@media screen and (min-width: 700px) {
	.banner-title {
		font-size: 3.6rem;
	}
}

.banner-title span {
	display: block;
}

.banner-text__content {
	font-size: 1.8rem;
	color: #000;
	max-width: calc(92vw - 48px);
    margin-left: auto;
    margin-right: auto;
}

.banner-slider__item--reverse .banner-text__content,
.banner-slider__item--reverse .banner-text {
	color: #fff;
}

/* fix the fact that Form builder forms don't have responsive columns  */
.forms-form .grid > .grid-col {
	width: 100%;
}

@media screen and (min-width: 700px) {
	/* 2 col */
	.forms-form .grid > .grid-col-2 {
		width: 14.912280701754%;
	}

	/* 3 col */
	.forms-form .grid > .grid-col-3 {
		width: 23.421052631579%;
	}

	/* 4 col */
	.forms-form .grid > .grid-col-4 {
		width: 31.929824561404%;
	}

	/* 6 col */
	.forms-form .grid > .grid-col-6 {
		width: 48.947368421053%;
	}

	/* 12 col */
	.forms-form .grid > .grid-col-12 {
		width: 100%;
	}
}


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

.hmpg-section-image {
	margin-bottom: 24px;
}

@media only screen and (min-width: 62em) { /* 992px */
	.hmpg-section-image {
		margin-bottom: 0;
	}
}

/* ---- Subtitle ---- */
.subtitle {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 1.7rem;
	color: #9c9c9c;
}
a.subtitle,
.subtitle.subtitle--link {
	text-decoration: none;
}
a.subtitle:hover,
.subtitle.subtitle--link:hover {
	color: #545454;
}

/* ---- Category list ---- */
.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.category-list li {
	margin-right: 8px;
	margin-bottom: 8px;
}
.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;
}
.category-list a:hover {
	color: #545454;
	border-bottom-color: #545454;
}

/* ---- Feature boxes ---- */
.feature-box {
	margin-bottom: 25px;
}
.feature-box--mb0 {
	margin-bottom: 0;
}
.feature-box.bg-white {
	color: #222;
}
/* Animate */
.feature-box--animate {
	-webkit-animation: growIn 450ms ease;
	        animation: growIn 450ms ease;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
.feature-box__ad {
	width: 100%;
}
.feature-box-title-bar {
	background-color: #545454;
	color: #FFF;
	padding: 12px 20px 14px;
}
.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 {
	text-decoration: none;
	display: block;
	color: inherit;
}
.feature-box__link:hover,
.feature-box__link:focus {
	color: inherit;
	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}
.feature-box__link:hover .feature-box-image {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	opacity: 0.9;
}
.feature-box.bg-white .feature-box__link {
	color: #222;
}
.feature-box.bg-white .club-highlight-colour .feature-box__link a {
	color: #fff;
}
.feature-box.bg-white .club-highlight-colour .feature-box__link a:hover,
.feature-box.bg-white .club-highlight-colour .feature-box__link a:focus {
	color: #fff;
	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
	text-decoration: underline;
}
.feature-box-content {
	padding: 25px;
}
.feature-box-title-bar--grey {
	background-color: #555555;
}
.feature-box-title-bar .feature-box-title {
	margin: 0;
	font-size: 2.2rem;
	letter-spacing: 3px;
}

.feature-box-title-icon {
	float: left;
	margin-right: 10px;
}

.feature-box-title-bar:before,
.feature-box-title-bar:after {
	content: " ";
	display: table;
}
.feature-box-title-bar:after {
	clear: both;
}
.feature-box-title {
	margin: 0 0 12px;
}
@supports(background-clip: border-box) {
	a:hover .feature-box-title,
	a:focus .feature-box-title {
		color: #002354;
		background: -webkit-gradient(linear,left top,right top,from(#45ad58),to(#002354));
		background: linear-gradient(to right,#45ad58,#002354);
		background-clip: border-box;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		-webkit-box-decoration-break: clone;
		box-decoration-break: clone;
		text-shadow: none;
	}
}
.feature-box-content {
	padding: 19px 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;
}
.feature-box-footer {
	position: absolute;
	bottom: 17px;
	left: 0;
	right: 0;
	padding-left: 25px;
	padding-right: 25px;
}
.feature-box-image {
	-webkit-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.feature-box-image-wrapper {
	overflow: hidden;
	background: #000;
}
.feature-box-image-wrapper--fallback {
	background-image: url(../images/img_fallback.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 53.94%;
}


@media screen and (min-width: 600px) {
	.blog-hub__posts .feature-box {
		width: 47%;
		margin: 0 1.5% 25px;
	}
}

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

@media screen and (max-width: 1129px) {
	.feature-box-content {
		padding: 17px 20px;
	}
	.feature-box-footer {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.feature-box-title-bar .social-list {
	height: 25px;
	margin-top: 8px;
	overflow: visible;
}

.feature-box-footer {
	color: #878787;
}
.feature-box-footer__date {
	margin-bottom: 2px;
}
.feature-box-footer__time {
	font-size: 1.5rem;
	margin-top: 12px;
	margin-bottom: 12px;
}
.feature-box-footer__link {
	margin-bottom: 0;
}

@supports(background-clip: border-box) {
	a:hover .feature-box-footer__link .subtitle,
	a:focus .feature-box-footer__link .subtitle.subtitle--link {
		color: #545454;
	}
}

@media screen and (min-width: 390px) and (max-width: 979px),
screen and (min-width: 1280px) {
	.feature-box-title-bar .feature-box-title {
		float: left;
	}
	.feature-box-title-bar .social-list {
		float: right;
		margin-top: -3px;
	}
}

/*  Welcome message  */

@media screen and (min-width: 1280px) {
	.feature-box--welcome {
		height: 376px;
		display: table;
	}
	.feature-box--welcome .feature-box-content {
		display: table-cell;
		vertical-align: middle;
	}
}


/*  blog feature box  */

.feature-box--blog {
	position: relative;
}

.feature-box--blog .feature-box-title {
	margin-bottom: 5px;
}
@media screen and (min-width: 980px) and (max-width: 1129px) {
	.feature-box--blog .feature-box-title {
		letter-spacing: 1px;
	}
}
@media screen and (min-width: 700px) and (max-width: 1279px) {
}

.feature-box--blog .feature-box-footer .grid-col:last-child {
	text-align: right;
}

.feature-box-hover {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: rgba(0,0,0,0.8);
	text-align: center;
	color: #fff;
	padding: 3% 6% 10% 6%;
	-webkit-transition: opacity 900ms ease;
	-o-transition: opacity 900ms ease;
	transition: opacity 900ms ease;
}

.feature-box-hover.feature-box-hover--hide {
	opacity: 0;
}

.feature-box-hover .button:hover,
.feature-box-hover .button:focus,
.feature-box-hover .button:active {
	background: #FFF;
	border-color: #FFF;
	color: #000
}

.feature-box-hover__tags {
	list-style-type: none;
	margin: 40px 0 20px;
	padding: 0;
	text-transform: lowercase;
}

.feature-box-hover__tags li {
	display: inline-block;
	height: 38px;
	padding: 0 2px;
}

/*  calendar  */

.feature-box-calendar {
	list-style-type: none;
	padding: 0;
	margin: 5px 0 0;
}

.feature-box-calendar li {
	list-style-type: none;
	display: block;
	-webkit-transition: background 300ms ease;
	-o-transition: background 300ms ease;
	transition: background 300ms ease;
	background: #ededed;
	color: #222;
	padding: 15px;
}

.feature-box-calendar li:last-child {
	background: none;
	padding: 0;
}

.feature-box-calendar__item {
	margin-bottom: 3px;
	border-left: 7px solid #545454;
}

.feature-box-calendar li a {
	text-decoration: none;
	display: block;
	-webkit-transition: background 300ms ease;
	-o-transition: background 300ms ease;
	transition: background 300ms ease;
}

.feature-box-calendar__item a:hover,
.feature-box-calendar__item a:hover {
	text-decoration: none;
}

.feature-box-calendar__item a {
	background: #ededed;
	color: #222;
	padding: 15px;
}

.feature-box-calendar__item a:hover,
.feature-box-calendar__item a:hover {
	background: #545454;
	color: #fff;
}

.feature-box-calendar__cta {
	text-align: right;
}

.feature-box-calendar__cta a {
	background: #545454;
	color: #FFF;
	padding: 10px 15px;
}

.feature-box-calendar__cta a:hover,
.feature-box-calendar__cta a:hover {
	background: #002354;

}

@media only screen and (min-width: 48em) { /* 768px */
	.row .feature-box {
		height: 100%;
		margin-bottom: 0;
	}
}


/* ---- 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,
.promo-item__title__date__year {
    display: inline-block;
    padding-top: 8px;
    font-size: 1.4rem;
    letter-spacing: -0.25px;
}

@media only screen and (min-width: 48em) { /* 768px */
	.promo-item__title__date__month,
	.promo-item__title__date__year {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 62em) { /* 992px */
	.promo-item__title__date__month,
	.promo-item__title__date__year {
		font-size: 1.8rem;
	}
}

@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: 10px 100px 10px 50px;
	position: relative;
}
.alert-message:before,
.alert-message:after {
	content: " ";
	display: table;
}
.alert-message:after {
	clear: both;
}
.alert-message--red {
	background-color: #e11e29;
	color: #FFF;
}
.alert-message--red .alert-message__text:before {
	content: " ";
	background: url(../images/icon-alert.png) no-repeat;
	display: inline-block;
	width: 34px;
	height: 34px;
	margin: 0 13px 0 -47px;
	vertical-align: middle;
}
.alert-message__text {
	padding: 0 0 0 47px;
	margin: 0;
	vertical-align: middle;
}

.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;
}

/* ---- Social list ---- */
.social-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.social-list__item {
	display: inline-block;
	margin: 0 0 0 6px;
}
.social-list__item:first-child {
	margin-left: 0;
}
.social-list__item img {
	max-width: 25px;
	max-height: 23px;
}
.social-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;

	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}

#header .social-list__item a {
	background: #002354;
}

#header .social-list__item a:hover,
#header .social-list__item a:focus,
#header .social-list__item a:active {
	background: #002354;
}


/* ---- Social posts - instagram ---- */

/* Instagram */
.social-post__item__instagram__feed {
	list-style: none;
	margin: 0 -0.2rem;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.social-post__item__instagram__feed__item {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 25%;
	        flex: 1 1 25%;
	margin: 0 0 0.4rem;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
}
.social-post__item__instagram__feed__item img {
	width: 100%;
}
.social-post__item__instagram__feed__item a {
	display: block;
	position: relative;
}

.social-post__item__instagram__feed__item a:before {
	content: " ";
	display: block;
	background: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.social-post__item__instagram__feed__item a:hover:before {
	opacity: 1;
}

.social-post__item__instagram__feed__item a:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/icon-instagram.png) no-repeat center center;
	display: none;
}
.social-post__item__instagram__feed__item a:hover:after {
	-webkit-animation: growInFade 200ms ease;
	        animation: growInFade 200ms ease;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	display: block;
}


/* ---- Footer ---- */
.section--footer > .container {
	padding-bottom: 40px;
	font-size: 15px;
}

.section--footer {
	text-align: center;
}

.section--footer .col-xs-12 {
	margin-bottom: 20px;
}

.section--footer h3 {
	color: #99ca3c;
	margin-bottom: 0.5em;
	font-size: 15px;
	margin-top: 0;
}

.section--footer a {
	color: #ffffff;
}
.section--footer a:hover,
.section--footer a:focus {
	text-decoration: underline;
	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}

.footer__logos a {
	display: inline-block;
}

.footer__img {
	width: auto;
	height: 60px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.social-list--footer {
	width: 100%;
	float: left;
	margin-bottom: 20px;
	margin-top: 24px;
}

.section--footer .grid-col--smdes-up {
	padding: 30px 0;
}

.footer-contact {
	margin: 19px 0 0;
}

.footer-copyright {
	border-top: 1px solid #fff;
	margin-top: 40px;
	padding: 15px 0;
}

.footer__copyright {
	font-size: 1.5rem;
	margin: 0;
}

.footer__heading-link a {
	color: inherit;
}

@media screen and (min-width: 700px) {
	.section--footer {
		text-align: left;
	}

	.section--footer .grid > *:nth-child(even) {
		margin-right: 0;
	}

	.section--footer .grid > *:nth-child(odd) {
		padding-right: 20px;
	}

	.footer__img {
		margin-left: 0;
		margin-right: 0;
	}
}

@media only screen and (min-width: 62em) { /* 992px */
	.section--footer .col-xs-12 {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1120px) {
	.section--footer .grid-col-3--smdes-up {
		width: 23.421052631579%;
	}

	.section--footer .grid > *:nth-child(even) {
		margin-right: 2.1052631578947367%;
	}

	.section--footer .grid > *:nth-child(odd) {
		padding-right: 0;
	}

	.section--footer .grid > *:last-child {
		margin-right: 0;
	}
}

.section--footer .grid > *:last-child {
	margin-right: 0;
}

/* ---- Content ---- */
.section--content > * {
	position: relative;
	z-index: 0;
}

.inner-banner {
	margin: 0 0 25px;
}

/* Mainbar */
.mainbar {
	padding: 20px;
	margin-bottom: 25px;
}
@media screen and (min-width: 380px) {
	.mainbar {
		padding: 25px;
	}
}
.mainbar h1 {
	margin-top: 0;
	margin-bottom: 19px;
}

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

.content-advertisements {
	margin-bottom: 25px;
}

.fashionadvert-item img {
	width: 100%;
}

.sidebar .fashionadvert-item img {
	margin-bottom: 25px;
}


/* 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;
	}
}

.event-list__item__date__month {
	background-color: #002354;
}

/* ---- 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 ---- */
.section--club-header {
	margin-top: 12px;
}
.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;

	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}
.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 ---- */
@media screen and (min-width: 901px) {
	.site-search__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-left: -1.5rem;
		margin-right: -1.5rem;
	}
	.site-search__inner .site-search__input,
	.site-search__inner .site-search__button {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.site-search__inner .site-search__input {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		margin-bottom: 0;
	}
	.site-search__inner .site-search__button {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		width: auto;
	}
}


/* 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

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

.sidebar {
	padding-bottom: 25px;
}

.blog-sidebar__tags .button,
.blog-post__tags .button {
	margin-bottom: 5px;
}

.sidebar h3 {
	margin-top: 0;
}

/* ---- Catch all ---- */
.sidebar .widget {
	background: #fff;
	padding: 25px;
	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;
	-webkit-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	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 {
	-webkit-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
	position: relative;
	padding: 10px 25px 10px 25px;
	display: block;
}
.widget-RelatedLinks li.depth2 a:hover {
	background: #eee;
}

/* ---- Blog post ---- */
.blog-post__time {
	color: #878787;
	font-size: 1.5rem;
	margin: 0 0 14px;
}
.blog-post__author {
	margin: 0 0 3px;
	font-size: 1.7rem;
}

/* ---- 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;
	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: #002354;
	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: #002354 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.7rem;
		padding: 12px 15px 14px;
	}
}

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

/* ---- Blog hub ---- */
.blog-hub__post {
	width: 47%;
	margin: 0 1.5% 20px;
	padding: 0;
}
.blog-hub__post__text {
	padding: 20px 25px;
}
.blog-refine-bar {
	display: none;
}
.blog-hub__post__time {
	color: #878787;
	font-size: 1.5rem;
	margin: 0 0 5px;
}
.blog-hub__post__author {
	margin: 0 0 3px;
	font-size: 1.7rem;
}
.blog-hub__post__title {
	margin: 0 0 12px;
}
.blog-hub__post__img-link {
	margin: 0;
}

.blog-hub__posts .feature-box--blog .feature-box-image--placeholder {
	min-height: 120px;
	padding: 30%;
	background-image: url(../images/children-gallery-thumb-placeholder.png);
	background-repeat: no-repeat;
	background-position: center center;
}

@media screen and (max-width: 500px) {
	.blog-hub__post {
		width: 100%;
		margin: 0 0 20px;
		padding: 15px;
	}
}

/* ---- Blog Category page ---- */

.blog-list__item__title {
	margin-top: 5px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 900;
}

.blog-list__item__title-link {
	text-decoration: none;
}

.blog-list__author {
	margin-bottom: 0;
}

.blog-list__time {
	font-weight: bold;
	margin-bottom: 20px;
}

/* ---- 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: 22%;
	float: left;
	margin: 0 0 20px 4%;
	position: relative;
}
.widget-ChildrenGallery .children-gallery-list-item:nth-child(4n+1) {
	margin-left: 0;
	clear: left;
}
.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;
}

@media screen and (max-width: 800px) {
	.widget-ChildrenGallery .children-gallery-list-item {
		width: 30.666666%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(4n+4) {
		margin-right: 4%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(3n+3) {
		margin-right: 0;
	}
}

@media screen and (max-width: 500px) {
	.widget-ChildrenGallery .children-gallery-list-item {
		width: 48%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(3n+3) {
		margin-right: 4%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(2n+2) {
		margin-right: 0;
	}
}

/* ---- 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: #99ca3c;
}

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

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

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

.submission-social-sharing > p {
	display: none;
}

.form-controller .mainbar {
	max-width: 460px;
	margin-lefT: auto;
	margin-right: auto;
}

.form-controller .mainbar > h1,
.form-controller .mainbar .breadcrumb {
	display: none;
}

.submission-message h2 {
	font-size: 4.0rem;
	font-weight: 800;
    letter-spacing: 0;
    text-transform: inherit;
	line-height: 1;
	margin-top: 0;
}

.submission-message h3 {
	font-size: 6.4rem;
	font-weight: 800;
    letter-spacing: 0;
    text-transform: inherit;
	line-height: 1;
	color: #99ca3c;
}

.submission-message p {
	font-size: 1.6rem;
}

.so-long-and-thanks-for-all-the-fish{
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	padding-top: 20px;
}

.so-long-and-thanks-for-all-the-fish p {
	font-weight: bold;
	font-weight: 900;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;

	margin-bottom: 30px;
}

.so-long-and-thanks-for-all-the-fish div {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	    -ms-flex: 0 0 50%;
			flex: 0 0 50%;
}

@media screen and (min-width: 700px) {
	.so-long-and-thanks-for-all-the-fish{
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;

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

	.so-long-and-thanks-for-all-the-fish p {
		margin-bottom: 0;
	}

	.so-long-and-thanks-for-all-the-fish div {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 128px;
			-ms-flex: 0 0 128px;
				flex: 0 0 128px;
	}
}


/* ---- 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,
.widget-Video video {
    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%;
}

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

/* Calendar module override */
#calendar ul.weekdays {
	background: #022352;
}

#calendar a {
	color: inherit;

	background: inherit;
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: initial;
	-webkit-box-decoration-break: slice;
	box-decoration-break: slice;
	text-shadow: none;
}

#calendar .date {
	line-height: 24px;
}


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

	@media print {
		* {
			background: transparent !important;
			color: #000 !important; /* Black prints faster: h5bp.com/s */
			-webkit-box-shadow: none !important;
			        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;
		}
	}
