/*
Theme Name: MantyFrame
Author: MantyWeb
Author URI: https://mantyweb.com
Description: A custom framework
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
0.0 Fonts
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.4.1 Custom Post Types
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

html {
	font-family: sans-serif;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

h1 {
	font-size: 2vw;
	margin: 0.67vw 0;
}

figcaption,
figure,
main {
	display: block;
}

figure {
	margin: 1vw 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1vw;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
	outline-width: 0;
}

abbr[title] {
	border-bottom: 1px #767676 dotted;
	text-decoration: none;
}

b,
strong {
	font-weight: inherit;
}

b,
strong {
	font-weight: 700;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1vw;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #eee;
	color: #222;
}

small {
	font-size: 80%;
}

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

sub {
	bottom: -0.25vw;
}

sup {
	top: -0.5vw;
}

audio,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
    border: 0;
    margin: 0;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	border: 1px solid #bbb;
	margin: 0 2px;
	padding: 0.35vw 0.625vw 0.75vw;
}

legend {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	display: inline-block;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details,
menu {
	display: block;
}

summary {
	display: list-item;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/*--------------------------------------------------------------
2.0 Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
	visibility: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875vw;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5vw;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5vw;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
4.0 Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.nav-links:before,
.nav-links:after,
.pagination:before,
.pagination:after,
.comment-author:before,
.comment-author:after,
.widget-area:before,
.widget-area:after,
.widget:before,
.widget:after,
.comment-meta:before,
.comment-meta:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after,
.pagination:after,
.comment-author:after,
.widget-area:after,
.widget:after,
.comment-meta:after {
	clear: both;
}

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

body, button, input, select, textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-size: 1vw;
    line-height: 1.8;
    color: #7a7878;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.4;
	margin: 0 0 0.75vw;
	padding: 1.5vw 0 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 0;
}

h1 {
	font-size: 24px;
	font-size: 1.5vw;
	font-weight: 300;
}

h2 {
	color: #666;
	font-size: 20px;
	font-size: 1.25vw;
	font-weight: 300;
}

h3 {
	color: #333;
	font-size: 18px;
	font-size: 1.125vw;
	font-weight: 600;
}

h4 {
	color: #333;
	font-size: 16px;
	font-size: 1vw;
	font-weight: 800;
}

h5 {
	color: #767676;
	font-size: 13px;
	font-size: 0.8125vw;
	font-weight: 800;
	letter-spacing: 0.15vw;
	text-transform: uppercase;
}

h6 {
	color: #333;
	font-size: 15px;
	font-size: 0.9375vw;
	font-weight: 800;
}

p {
	margin: 0 0 1.5vw;
	padding: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	color: #666;
	font-size: 18px;
	font-size: 1.125vw;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
	overflow: hidden;
	padding: 0;
}

blockquote cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	margin-top: 0.5vw;
}

address {
	margin: 0 0 1.5vw;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375vw;
	line-height: 1.6;
	margin-bottom: 1.6vw;
	max-width: 100%;
	overflow: auto;
	padding: 1.6vw;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375vw;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #eee;
	text-decoration: none;
}

big {
	font-size: 125%;
}

blockquote {
	quotes: "" "";
}

q {
	quotes: "â€œ" "â€" "â€˜" "â€™";
}

blockquote:before,
blockquote:after {
	content: "";
}

:focus {
	outline: none;
}


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

label {
	color: #333;
	display: block;
	font-weight: 800;
	margin-bottom: 0.5vw;
}

fieldset {
	margin-bottom: 1vw;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    color: #666;
    background: #f2f2f2;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 0;
    -webkit-border-radius: 3px;
    border-radius: 0;
    display: block;
    padding: 0.7vw;
    width: 100%;
    font-size: 1vw;
    padding: 1vw;
    border: 1px solid #eee;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #222;
	border-color: #333;
}

select {
	border: 1px solid #bbb;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	height: 3vw;
	max-width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 0.5vw;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: 400;
}

button, input[type="button"], input[type="submit"] {
    background: #fff;
    border-radius: 0;
    text-transform: uppercase;
    color: #de0f18;
    font-weight: 200;
    font-size: 1vw;
    line-height: 1;
    margin-top: 2vw;
    padding: 1vw;
    display: inline-block;
    transition: opacity .4s;
}



input + button, input + input[type="button"], input + input[type="submit"] {
    padding: .7vw;
    font-size: .9vw;
}

button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
	background-color: #ddd;
	color: #222;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	opacity: .85;
}

button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
	background: #bbb;
}

/*--------------------------------------------------------------
7.0 Formatting
--------------------------------------------------------------*/

hr {
	background-color: #bbb;
	border: 0;
	height: 1px;
	margin-bottom: 1.5vw;
}

/*--------------------------------------------------------------
8.0 Lists
--------------------------------------------------------------*/

ul,
ol {
	margin: 0 0 1.5vw 1.5vw;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5vw;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5vw 1.5vw;
}

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

table {
	border-collapse: collapse;
	margin: 0 0 1.5vw;
	width: 100%;
}

thead th {
	border-bottom: 2px solid #bbb;
	padding-bottom: 0.5vw;
}

th {
	padding: 0.4vw;
	text-align: left;
}

tr {
	border-bottom: 1px solid #eee;
}

td {
	padding: 0.4vw;
}

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

th:last-child,
td:last-child {
	padding-right: 0;
}

/*--------------------------------------------------------------
10.0 Links
--------------------------------------------------------------*/

a {
    color: #cb3f2c;
    text-decoration: none;
}

.default a {
    text-decoration: underline;
    font-weight: 600;
}

a:focus {
}

a:hover,
a:active {
	color: #000;
	outline: 0;
}

/* Fixes linked images */
.entry-content a img,
.widget a img {
	-webkit-box-shadow: 0 0 0 8px #fff;
	box-shadow: 0 0 0 8px #fff;
}

.post-navigation a:focus .icon,
.post-navigation a:hover .icon {
	color: #222;
}

/*--------------------------------------------------------------
11.0 Featured Image Hover
--------------------------------------------------------------*/

.post-thumbnail {
	margin-bottom: 1vw;
}

.post-thumbnail a img {
	-webkit-backface-visibility: hidden;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.post-thumbnail a:hover img,
.post-thumbnail a:focus img {
	opacity: 0.7;
}

/*--------------------------------------------------------------
12.0 Navigation
--------------------------------------------------------------*/

.navigation-top {
    font-size: 16px;
    font-size: 1vw;
    position: relative;
    width: 83%;
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navigation-top .wrap {
	max-width: 1000px;
	padding: 0;
}

.navigation-top a {
    color: #222;
    font-weight: 400;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-transform: none;
}

.main-navigation {
    clear: both;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.5vw;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.menu-primary-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.js .main-navigation.toggled-on > div > ul {
	display: block;
}



.main-navigation ul ul a {
    letter-spacing: 0;
    padding: 0.4vw 1vw;
    position: relative;
    text-transform: none;
}

.main-navigation li {
    position: relative;
    display: flex;
    margin-left: 1.6vw;
    /* height: 100%; */
    align-items: center;
    /* padding: 2.6vw 0; */
}

.main-navigation li.menu-button {
    background: #cb3d2a;
    padding: .4vw 1vw;
    border-radius: 3px;
    opacity: 1;
    transition: opacity .4s;
}

.main-navigation li.menu-button:hover {
	opacity: .8;
}

.main-navigation li.menu-button a {
    color: #fff;
}

.main-navigation a {
    display: block;
    padding: 0.1vw 0;
    text-decoration: none;
    z-index: 9999;
}

.pm-header .navigation-top a {
    color: #000;
}

.main-navigation li a:hover,
.main-navigation li li a:hover,
.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a {
    color: #de1018;
}

.main-navigation li:hover li a {
    color: #000;
}

.main-navigation li li:hover a {
    color: #de1018;
}

.main-navigation li.menu-button a:hover {
    color: #fff;
}

.sub-menu li {
    margin: 0;
    display: block;
    padding: .0;
    border-bottom: 1px solid #f0f0f0;
}

/* Menu toggle */

.menu-toggle {
	background-color: transparent;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #222;
	display: none;
	font-size: 14px;
	font-size: 0.875vw;
	font-weight: 800;
	line-height: 1.5;
	margin: 1px auto 2px;
	padding: 1vw;
	text-shadow: none;
	position: absolute;
}

.main-navigation.toggled-on ul.nav-menu {
	display: block;
}

.menu-toggle:hover,
.menu-toggle:focus {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.menu-toggle .icon {
	margin-right: 0.5vw;
	top: -2px;
}

.toggled-on .menu-toggle .icon-bars,
.menu-toggle .icon-close {
	display: none;
}

.toggled-on .menu-toggle .icon-close {
	display: inline-block;
}

/* Dropdown Toggle */

.dropdown-toggle {
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #222;
    display: block;
    font-size: 16px;
    right: 1vw;
    line-height: 1.5;
    margin: 0 auto;
    padding: 0.5vw;
    position: absolute;
    text-shadow: none;
    top: 1vw;
    bottom: auto;
}

button.dropdown-toggle::after {
    content: '\f107';
    font-family: 'FontAwesome';
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
	background: transparent;
}

.dropdown-toggle.toggled-on .icon {
	-ms-transform: rotate(-180deg); /* IE 9 */
	-webkit-transform: rotate(-180deg); /* Chrome, Safari, Opera */
	transform: rotate(-180deg);
}

/* Scroll down arrow */

.site-header .menu-scroll-down {
	display: none;
}

.upper-nav {
    background: #000;
}

ul#upper-menu {
    margin: 0;
    text-align: right;
    display: flex;
}

#upper-menu li {
    display: flex;
    margin-left: .8vw;
}

#upper-menu li a {
    color: #fff;
    background: #f4b232;
    font-size: .8vw;
    padding: .6vw 1.3vw;
    line-height: 1;
    border-radius: .2vw;
}

.raceinfo {
    margin-right: .8vw;
    font-size: .8vw;
    position: relative;
    padding-right: .8vw;
    color: #fff;
}

.race-info {
    display: flex;
    width: 100%;
}

.menu-upper-menu-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


.upper-nav .search-field {
    overflow: hidden;
    padding: 0 .4vw;
    font-size: .7vw;
    width: auto;
    height: 100%;
}

.input-wrapper {
    max-width: 0;
    transition: max-width 1s;
    margin-left: 1vw;
    overflow: hidden;
}

.upper-nav.searchopen .input-wrapper {
    max-width: 100%;
}

.raceinfo.raceday {
    color: #de0f18;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .04vw;
}
.raceinfo::after {
    content: '|';
    position: absolute;
    right: 0;
}
.raceinfo.raceday::after,
.raceinfo:last-child::after {
	display: none;
}

span.red {
    color: #de0f18;
}

ul.sub-menu {
    display: none;
}

button.dropdown-toggle {
    display: none;
}



ul.sub-menu {
    display: none;
    position: absolute;
    z-index: 9;
    width: 16vw;
    background: #fff;
    text-align: left;
    padding: 0;
    top: 5vw;
    height: auto;
    left: 0;
}

.main-navigation li:hover .sub-menu {
    display: block;
}



.main-navigation li::after {
    content: '';
    position: absolute;
    height: 0;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0;
    z-index: 999;
}

.main-navigation li:hover::after {
    height: 100%;
    padding: 1.9vw 0;
}

.sub-menu li {
    margin: 0;
    display: block;
    padding: 0 0 0 1vw;
    border-bottom: 1px solid #f0f0f0;
    height: auto;
}

form.search-form {
    display: flex;
    justify-content: flex-end;
}

/*--------------------------------------------------------------
13.0 Layout
--------------------------------------------------------------*/

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

#page {
	position: relative;
	word-wrap: break-word;
}

.wrap {
	margin-left: auto;
	margin-right: auto;
	width: 81%;
}



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

#masthead .wrap {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
	background-color: #1e1e1e;
	position: relative;
	z-index: 1000;
}

/* Site branding */

.site-branding {
	position: relative;
	-webkit-transition: margin-bottom 0.2s;
	transition: margin-bottom 0.2s;
	z-index: 3;
	width: 21%;
    float: left;
}
.site-branding.has-slider {
    position: absolute;
    width: 100%;
    top: 0;
}
div#slider {
    position: relative;
}
.content-wrap {
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
.slide-content {
    width: 45%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 1.8vw;
    line-height: 1.2;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-content a.button {
    padding: 1vw;
}
.video-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-video, .pause-video {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s;
    font-size: 5vw;
    color: #fff;
    cursor: pointer;
}
.pause-video {
	opacity: 0;
	z-index: -1;
}
.play-video {
	opacity: 1;
}

.playing .play-video {
    opacity: 0;
    z-index: -1;
}

.playing .pause-video {
    z-index: auto;
}
.playing:hover .pause-video {
    opacity: 1;
}
.slide-content h1 {
    margin: 0;
}
.slide-content p:nth-last-of-type(1) {
    margin: 0;
}
.slide-image img {
    height: auto;
    width: 100%;
    display: block;
}
.site-branding a {
	text-decoration: none;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.site-branding a:hover,
.site-branding a:focus {
	opacity: 0.7;
}

.slide-title {
    font-size: 3.4vw;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    margin-bottom: .4vw;
}

.site-title, .site-title a {
    color: #222;
    opacity: 1;
    text-transform: uppercase;
    font-size: 2vw;
}

body.has-header-image .site-title,
body.has-header-video .site-title,
body.has-header-image .site-title a,
body.has-header-video .site-title a {
	color: #fff;
}

.site-description {
	color: #666;
	font-size: 13px;
	font-size: 1.5vw;
	margin-bottom: 0;
}

body.has-header-image .site-description,
body.has-header-video .site-description {
	color: #fff;
	opacity: 0.8;
}

.custom-logo-link {
	display: inline-block;
	padding-right: 1vw;
	vertical-align: middle;
	width: auto;
}

.custom-logo-link img {
	display: inline-block;
	max-height: 80px;
	width: auto;
}

body.home.title-tagline-hidden.has-header-image .custom-logo-link img,
body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
	max-height: 200px;
	max-width: 100%;
}

.custom-logo-link a:hover,
.custom-logo-link a:focus {
	opacity: 0.9;
}

body:not(.title-tagline-hidden) .site-branding-text {
	display: inline-block;
	vertical-align: middle;
}

.custom-header {
	position: relative;
}

.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header,
.has-header-image.home.blog .custom-header,
.has-header-video.home.blog .custom-header {
	display: table;
	height: 300px;
	height: 75vh;
	width: 100%;
}

.custom-header-media {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.custom-header-media:before {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.3+75 */
	background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#4d000000", GradientType=0); /* IE6-9 */
	bottom: 0;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 2;
}

.has-header-image .custom-header-media img,
.has-header-video .custom-header-media video,
.has-header-video .custom-header-media iframe {
	position: fixed;
	height: auto;
	left: 50%;
	max-width: 1000%;
	min-height: 100%;
	min-width: 100%;
	min-width: 100vw; /* vw prevents 1px gap on left that 100% has */
	width: auto;
	top: 50%;
	padding-bottom: 1px; /* Prevent header from extending beyond the footer */
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.wp-custom-header .wp-custom-header-video-button { /* Specificity prevents .color-dark button overrides */
	background-color: rgba(34, 34, 34, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: rgba(255, 255, 255, 0.6);
	height: 45px;
	overflow: hidden;
	padding: 0;
	position: fixed;
	right: 30px;
	top: 30px;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	width: 45px;
}

.brand-nav {
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9;
    background-position: center bottom!important;
    background-repeat: no-repeat!important;
    background-size: 105% auto!important;
    border-bottom: 1px solid #eee;
}

.wp-custom-header .wp-custom-header-video-button:hover,
.wp-custom-header .wp-custom-header-video-button:focus { /* Specificity prevents .color-dark button overrides */
	border-color: rgba(255, 255, 255, 0.8);
	background-color: rgba(34, 34, 34, 0.8);
	color: #fff;
}

.admin-bar .wp-custom-header-video-button {
	top: 62px;
}

.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
	bottom: 0;
	position: absolute;
	top: auto;
	-ms-transform: translateX(-50%) translateY(0);
	-moz-transform: translateX(-50%) translateY(0);
	-webkit-transform: translateX(-50%) translateY(0);
	transform: translateX(-50%) translateY(0);
}

/* For browsers that support 'object-fit' */
@supports ( object-fit: cover ) {
	.has-header-image .custom-header-media img,
	.has-header-video .custom-header-media video,
	.has-header-video .custom-header-media iframe,
	.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
		height: 100%;
		left: 0;
		-o-object-fit: cover;
		object-fit: cover;
		top: 0;
		-ms-transform: none;
		-moz-transform: none;
		-webkit-transform: none;
		transform: none;
		width: 100%;
	}
}

/* Hides div in Customizer preview when header images or videos change. */

body:not(.has-header-image):not(.has-header-video) .custom-header-media {
	display: none;
}

.has-header-image.twentyseventeen-front-page .site-branding,
.has-header-video.twentyseventeen-front-page .site-branding,
.has-header-image.home.blog .site-branding,
.has-header-video.home.blog .site-branding {
	display: table-cell;
	height: 100%;
	vertical-align: bottom;
}

/*--------------------------------------------------------------
13.2 Front Page
--------------------------------------------------------------*/

.twentyseventeen-front-page .site-content {
	padding: 0;
}

.twentyseventeen-panel {
	overflow: hidden;
	position: relative;
}

.panel-image {
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
}

.panel-image:before {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.3+100 */ /* FF3.6-15 */
	background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
	background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#4d000000", GradientType=0); /* IE6-9 */
	bottom: 0;
	content: "";
	left: 0;
	right: 0;
	position: absolute;
	top: 100px;
}

.twentyseventeen-front-page article:not(.has-post-thumbnail):not(:first-child) {
	border-top: 1px solid #ddd;
}

.panel-content {
	position: relative;
}

.panel-content .wrap {
	padding-bottom: 0.5vw;
	padding-top: 1.75vw;
}


/* Panel edit link */

.twentyseventeen-panel .edit-link {
	display: block;
	margin: 0.3vw 0 0;
}

.twentyseventeen-panel .entry-header .edit-link {
	font-size: 14px;
	font-size: 0.875vw;
}

/* Front Page - Recent Posts */

.twentyseventeen-front-page .panel-content .recent-posts article {
	border: 0;
	color: #333;
	margin-bottom: 3vw;
}

.recent-posts .entry-header {
	margin-bottom: 1.2vw;
}

.page .panel-content .recent-posts .entry-title {
	font-size: 20px;
	font-size: 1.5vw;
	font-weight: 300;
	letter-spacing: 0;
	text-transform: none;
}

.twentyseventeen-panel .recent-posts .entry-header .edit-link {
	color: #222;
	display: inline-block;
	font-size: 11px;
	font-size: 0.6875vw;
	margin-left: 1vw;
}

/*--------------------------------------------------------------
13.3 Regular Content
--------------------------------------------------------------*/

.site-content-contain {
    background-color: #fff;
    position: relative;
    background-size: 100%!important;
    background-repeat: no-repeat!important;
    background-position: center -1px!important;
}

.site-content {
    padding: 5.5vw 0;
}

div#content.has-slider {
    padding-top: 0;
}

/*--------------------------------------------------------------
13.4 Posts
--------------------------------------------------------------*/

/* Post Landing Page */

.sticky {
	position: relative;
}

.post:not(.sticky) .icon-thumb-tack {
	display: none;
}

.sticky .icon-thumb-tack {
	display: block;
	height: 18px;
	left: -1.5vw;
	position: absolute;
	top: 1.65vw;
	width: 20px;
}

.page .panel-content .entry-title, .page-title, body.page:not(.twentyseventeen-front-page) .entry-title {
    color: #222;
    font-size: 14px;
    font-size: 2vw;
    font-weight: 800;
    text-transform: none;
}

h2.subtitle {
    padding-top: 0;
    color: #e53c26;
    font-weight: 500;
}

.entry-header .entry-title {
	margin-bottom: 0.25vw;
}

.entry-title a {
	color: #333;
	text-decoration: none;
	margin-left: -2px;
}

.entry-title:not(:first-child) {
	padding-top: 0;
}

.entry-meta {
	color: #767676;
	font-size: 11px;
	font-size: 0.6875vw;
	font-weight: 800;
	letter-spacing: 0.1818vw;
	padding-bottom: 0.25vw;
	text-transform: uppercase;
}

.entry-meta a {
	color: #767676;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.pagination,
.comments-pagination {
	font-size: 14px;
	font-size: 0.875vw;
	font-weight: 800;
	padding: 2vw 0 3vw;
	text-align: center;
}

.pagination .icon,
.comments-pagination .icon {
	width: 0.666666666vw;
	height: 0.666666666vw;
}

.comments-pagination {
	border: 0;
}

.page-numbers {
	padding: 0.5vw 0.75vw;
}

.page-numbers.current {
	color: #cb3f2c;
	display: inline-block;
}

.page-numbers.current .screen-reader-text {
	clip: auto;
	height: auto;
	overflow: auto;
	width: auto;
}

.prev.page-numbers, .next.page-numbers {
    background-color: #cb3e2b;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    font-size: 24px;
    font-size: 1.5vw;
    line-height: 1;
    padding: 0.25vw 0.5vw 0.4vw;
    color: #fff;
}

.prev.page-numbers,
.next.page-numbers {
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.prev.page-numbers:focus,
.prev.page-numbers:hover,
.next.page-numbers:focus,
.next.page-numbers:hover {
	background-color: #ed614e;
	color: #fff;
}

.prev.page-numbers {
	float: left;
}

.next.page-numbers {
	float: right;
}

/* Aligned blockquotes */

.entry-content blockquote.alignleft,
.entry-content blockquote.alignright {
	color: #666;
	font-size: 13px;
	font-size: 0.8125vw;
	width: 48%;
}

/* Blog landing, search, archives */

.blog .site-main > article,
.archive .site-main > article,
.search .site-main > article {
	padding-bottom: 2vw;
}

body:not(.twentyseventeen-front-page) .entry-header {
	padding: 1vw 0;
}

body:not(.twentyseventeen-front-page) .entry-header,
body:not(.twentyseventeen-front-page) .entry-content,
body:not(.twentyseventeen-front-page) #comments {
	margin-left: auto;
	margin-right: auto;
}

body:not(.twentyseventeen-front-page) .entry-header {
	padding-top: 0;
}

.blog .entry-meta a.post-edit-link,
.archive .entry-meta a.post-edit-link,
.search .entry-meta a.post-edit-link {
	color: #222;
	display: inline-block;
	margin-left: 1vw;
	white-space: nowrap;
}

.search .page .entry-meta a.post-edit-link {
	margin-left: 0;
	white-space: nowrap;
}

.taxonomy-description {
	color: #666;
	font-size: 13px;
	font-size: 0.8125vw;
}

/* More tag */

.entry-content .more-link:before {
	content: "";
	display: block;
	margin-top: 1.5vw;
}

/* Single Post */

.single-post:not(.has-sidebar) #primary,
.page.page-one-column:not(.twentyseventeen-front-page) #primary,
.archive.page-one-column:not(.has-sidebar) .page-header,
.archive.page-one-column:not(.has-sidebar) #primary {
	margin-left: auto;
	margin-right: auto;
	max-width: 740px;
}

.single-featured-image-header {
	background-color: #fafafa;
	border-bottom: 1px solid #eee;
}

.single-featured-image-header img {
	display: block;
	margin: auto;
}

.page-links {
	font-size: 14px;
	font-size: 0.875vw;
	font-weight: 800;
	padding: 2vw 0 3vw;
}

.page-links .page-number {
	color: #767676;
	display: inline-block;
	padding: 0.5vw 1vw;
}

.page-links a {
	display: inline-block;
}

.page-links a .page-number {
	color: #222;
}

/* Entry footer */

.entry-footer {
	border-bottom: 1px solid #eee;
	border-top: 1px solid #eee;
	margin-top: 2vw;
	padding: 2vw 0;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
	display: block;
	font-size: 11px;
	font-size: 0.6875vw;
	font-weight: 800;
	letter-spacing: 0.1818vw;
	padding-left: 2.5vw;
	position: relative;
	text-transform: uppercase;
}

.entry-footer .cat-links + .tags-links {
	margin-top: 1vw;
}

.entry-footer .cat-links a,
.entry-footer .tags-links a {
	color: #333;
}

.entry-footer .cat-links .icon,
.entry-footer .tags-links .icon {
	color: #767676;
	left: 0;
	margin-right: 0.5vw;
	position: absolute;
	top: 2px;
}

.entry-footer .edit-link {
	display: inline-block;
}

.entry-footer .edit-link a.post-edit-link {
	background-color: #222;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-size: 0.875vw;
	font-weight: 800;
	margin-top: 2vw;
	padding: 0.7vw 2vw;
	-webkit-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	white-space: nowrap;
}

.entry-footer .edit-link a.post-edit-link:hover,
.entry-footer .edit-link a.post-edit-link:focus {
	background-color: #767676;
}

/* Post Formats */

.blog .format-status .entry-title,
.archive .format-status .entry-title,
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

.format-quote blockquote {
	color: #333;
	font-size: 20px;
	font-size: 1.25vw;
	font-weight: 300;
	overflow: visible;
	position: relative;
}

.format-quote blockquote .icon {
	display: block;
	height: 20px;
	left: -1.25vw;
	position: absolute;
	top: 0.4vw;
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
	width: 20px;
}

/* Post Navigation */

.post-navigation {
	font-weight: 800;
	margin: 3vw 0;
}

.post-navigation .nav-links {
	padding: 1vw 0;
}

.nav-subtitle {
	background: transparent;
	color: #767676;
	display: block;
	font-size: 11px;
	font-size: 0.6875vw;
	letter-spacing: 0.1818vw;
	margin-bottom: 1vw;
	text-transform: uppercase;
}

.nav-title {
	color: #333;
	font-size: 15px;
	font-size: 0.9375vw;
}

.post-navigation .nav-next {
	margin-top: 1.5vw;
}

.nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
	margin-right: 0.5vw;
}

.nav-links .nav-next .nav-title .nav-title-icon-wrapper {
	margin-left: 0.5vw;
}
.single-left {
    width: 45%;
    float: left;
}

.single-right {
    width: 52%;
    float: right;
}

h1.entry-title {
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
}

.back {
    width: 100%;
    float: left;
    margin-top: 2vw;
    font-size: 1.3vw;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
13.4.1 Custom Post Types
--------------------------------------------------------------*/

div#member-wrap {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    width: 100%;
    margin-top: 3vw;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -o-justify-content: flex-start;
    padding-bottom: 6vw;
    position: relative;
}
.team-member {
    width: 24.1%;
    margin-right: 1vw;
    margin-bottom: 1vw;
    cursor: pointer;
}
.team-member:nth-of-type(4n+4) {
    margin-right: 0;
}
.member-thumb {
    background: #000;
    width: 100%;
    height: 21.485vw;
    position: relative;
    overflow: hidden;
}
div#more-member {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    bottom: auto;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    padding: 1vw;
    opacity: 0;
    background: rgba(228, 228, 228, 0.92);
    z-index: -1;
    cursor: auto;
    transition: opacity .3s, z-index 1s;
}
div#more-member.show-member {
    z-index: 999;
    opacity: 1;
    transition: opacity .3s, z-index 1s;
}
.member-left {
    width: 32%;
    float: left;
}
.member-right {
    width: 67%;
    float: right;
}
.member-right .member-title {
    color: #000;
    padding-bottom: .5vw;
    margin-bottom: .5vw;
}
.member-right p {
    margin: 0;
    font-size: 1vw;
}
.close-member {
    position: absolute;
    right: 1.2vw;
    top: 2vw;
    width: 2vw;
    height: 2vw;
    cursor: pointer;
}
.close-member span {
    display: block;
    width: 100%;
    background: #000;
    opacity: 1;
    height: .2vw;
    position: absolute;
    transition: background .3s;
}
.close-member span:nth-of-type(1) {
    transform: rotate(45deg);
}
.close-member span:nth-of-type(2) {
    transform: rotate(-45deg);
}
.member-thumb::before {
    content: '';
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    transition: opacity .3s;
    z-index: 99;
}
.member-thumb:hover::before {
    content: '';
    opacity: .4;
    transition: opacity .3s;
}
.member-thumb img {
    width: auto;
    max-width: none;
    height: 100%;
    /* float: none; */
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}
.member-info {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    height: 4vw;
    margin: auto;
    opacity: 0;
    transition: opacity .3s;
    width: 89%;
    z-index: 99;
}
.member-thumb:hover .member-info {
    opacity: 1;
    transition: opacity .3s;
}
.member-name {
    color: #00BCD4;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5vw;
    letter-spacing: .2vw;
}
.member-title {
    color: #fff;
    font-size: 1.2vw;
    margin-top: .4vw;
}
/*--------------------------------------------------------------
13.5 Pages
--------------------------------------------------------------*/

/*** Home ***/

.page-header {
	padding-bottom: 2vw;
}

.page .entry-header .edit-link {
	font-size: 14px;
	font-size: 0.875vw;
}

.search .page .entry-header .edit-link {
	font-size: 11px;
	font-size: 0.6875vw;
}

.page-links {
	clear: both;
	margin: 0 0 1.5vw;
}

.page:not(.home) #content {
}

div#home-carousel .slides li {
    margin-right: .7vw;
    width: 19.625vw!Important;
    border-radius: 0.3vw!important;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

#home-carousel .content-download {
    background: #fff;
    flex-grow: 1;
    justify-content: flex-end;
}

div#home-carousel li.ticket::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(203, 63, 44, 0.86);
}

div#home-carousel {
    margin-top: 0;
    padding-top: 2vw;    
    z-index: 1000;
}

div#home-carousel.no-slides {
    position: relative;
}

.carCon {
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    font-size: 1.2vw;
    line-height: 1.2;
    bottom: 1vw;
    max-width: 95%;
    left: 0;
    right: 0;
    margin: auto;
}

.ticketCon {
    position: absolute;
    top: 0;
    bottom: 0;
    color: #fff;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1vw;
    font-size: 1.2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.conSub {
    font-size: 1vw;
}

li.ticket .location-date {
    color: #fff;
    display: flex;
    font-size: .8vw;
    margin-top: 1.4vw;
    justify-content: center;
}

.ticketCon a {
    color: #fff;
}

.ticketCon a.button {
    background: #fff;
    color: #cb3f2c;
    margin-top: 1.6vw;
    display: inline-block;
    padding: .8vw;
    font-size: 1vw;
}

li.ticket .location-date .fa {
    color: #fff;
}

div#home-carousel.no-slides ul.slides {
    display: flex;
    justify-content: space-between;
}

div#home-carousel.no-slides .slides li {
    margin: 0;
    width: 19.3vw!Important;
}

div#home-carousel.no-slides ul.slides img {
    margin: 0;
    width: 100%;
	height: 15.705;
    object-fit: cover;
}

.content-download a.button {
    margin: 0;
}


/* 404 page */

.error404 .page-content {
	padding-bottom: 4vw;
}

.error404 .page-content .search-form,
.search .page-content .search-form {
	margin-bottom: 3vw;
}

.widget-row {
    width: 100%;
    display: flex;
    max-width: 81%;
    margin: 4vw auto;
    justify-content: space-between;
}

.home main#main {
    background: #eee;
}

/*--------------------------------------------------------------
13.5.1 Custom pages
--------------------------------------------------------------*/

.home .section.intro-section {
    margin: 0 0 3vw;
    font-size: 1vw;
}

.intro-section .section-wrap {
    max-width: 52%;
    margin: 0 auto;
    text-align: center;
}

span.small {
    font-size: 1vw;
}

.home-widgets .section-wrap {
    display: flex;
    flex-wrap: wrap;
}

.widget {
    width: 50%;
    height: 27vw;
    position: relative;
    padding: 1vw;
    overflow: hidden;
    background: #fff;
}

.wid-title {
    font-size: 2vw;
    text-transform: uppercase;
}

.widget-background {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    overflow: hidden;
    background: #fff;
    margin: .2vw;
}

.widget-background img {
    min-width: 100%;
    min-height: 100%;
    display: block;
}

.widget-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-icon img {
    max-height: 47%;
    max-width: 32%;
}

.main-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}



.hover-content {
    display: block;
    z-index: 999;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: .2vw;
    color: #fff;
    padding: 3vw;
    font-size: 1vw;
}

.widget-row.first-row {
    flex-wrap: wrap;
    justify-content: center;
}

.first-row .widget {
	display: flex;
    height: 15vw;
    width: 49.3%;
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 1vw;
    margin-right: 1vw;
}

.first-row .widget:nth-of-type(even), .first-row .widget:last-child {
    margin-right: 0;
}


.first-row .widget-background {
    position: relative;
    margin: 0;
}

.first-row .main-content {
    position: relative;
    margin: 0;
    width: 50%;
}

.first-row .hover-content {
    position: relative;
    width: 50%;
    padding: 2vw 3.4vw;
    margin: 0;
    color: #000;
    line-height: 1.5;
}

.first-row .widget a.button {
    display: inline-block;
    margin-top: 1.2vw;
    background: #cb3f2c;
    color: #fff;
    font-size: 1vw;
    padding: .6vw 1vw;
}

.first-row .widget-content {
    top: auto;
    color: #fff;
    text-align: left;
    right: auto;
    padding: 1vw;
    font-size: 1.5vw;
    line-height: 1;
    font-weight: 300;
    letter-spacing: .1vw;
}

.widget-row.second-row {
    max-width: none;
    margin: 2vw auto 0 auto;
}


.hover-content p {
    margin: 0;
}

.hover-content h2 {
    font-size: 1vw;
    color: #fff;
    margin: 0 0 .2vw;
    padding: 0;
    text-transform: uppercase;
}

.hover-content h3 {
    font-size: 1.4vw;
    color: #fff;
    margin: .7vw 0;
    padding: 0;
    font-weight: 200;
    text-transform: uppercase;
}

.widget-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2vw;
    text-transform: uppercase;
    color: #7a7878;
    font-weight: 100;
        z-index: 9;
}

a.button {
    color: #fff;
    font-size: 1.2vw;
    line-height: 1;
    margin-top: 2vw;
    background: #cb3d2a;
    padding: .4vw 1vw;
    border-radius: 3px;
    opacity: 1;
    transition: opacity .4s;
    text-transform: none;
    font-weight: 500;
    text-decoration: none;
}

.widget a.button {
    /* background: #cb402d; */
    /* color: #2c2d2f; */
    padding: .8vw 1vw;
    font-size: 1vw;
}

a.button:hover {
    opacity: .85;
}

.hoverimage {
    width: 40%;
    float: right;
    margin-top: 3vw;
}
.content-left {
    width: 55%;
    float: left;
}


.interior .slide-title {
    margin: 0;
    font-size: 3vw;
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
}

.interior .section-wrap {
    max-width: 68%;
    padding: 0 0 1vw;
    margin: 0 auto;
    text-align: center;
}


.widget-row.second-row .widget-background {
    margin: 0;
}

.second-row .widget {
    height: 20.5vw;
}

.widget-row.second-row .widget-content {
    width: 67%;
    color: #fff;
    padding: 1vw 0 1vw 4vw;
    left: 0;
    right: auto;
    flex-direction: column;
    text-align: center;
    font-size: 1vw;
}

.second-row .wid-title {
    font-size: 1.2vw;
    text-transform: none;
    font-weight: 400;
    color: #f4b132;
    letter-spacing: .1vw;
}

.wid-con {
    font-style: italic;
    margin-bottom: 3vw;
    text-transform: none;
}

.widget .buttons .button:first-child {
    margin-right: 1vw;
    background: transparent;
    border: .07vw solid rgba(255, 255, 255, 0.55);
}

.widget-row.second-row .widget:nth-of-type(2) .widget-content {
    text-align: left;
}

.widget-row.second-row .widget:nth-of-type(2) .toptitle, .widget-row.second-row .widget:nth-of-type(2) .wid-title {
    width: 100%;
}

.widget-row.second-row .widget:nth-of-type(2) .toptitle {
    text-transform: none;
    font-weight: 400;
    font-size: 1.1vw;
}

.widget-row.second-row .widget:nth-of-type(2) .wid-title {
    font-size: 1.6vw;
    line-height: 1.2;
}

.widget-row.second-row .widget:nth-of-type(2) .wid-con {
    font-style: normal;
    margin-top: .7vw;
    padding-right: 4vw;
}

.widget-row.third-row {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.third-row .widget {
    width: 100%;
    background: none;
    height: 100%;
    padding: 0;
}

.third-row .widget-content {
    position: relative;
    flex-direction: column;
    padding: 3vw;
}

a .wid-logo img {
    box-shadow: none;
}

.wid-logo {
    max-width: 13vw;
}

.third-row .wid-con {
    font-size: 1.2vw;
    margin-top: 2vw;
    font-style: normal;
    font-weight: 400;
    color: #000;
    max-width: 39%;
    display: inline-block;
    text-align: center;
    margin-bottom: 0;
}

.third-row a.button {
    display: block;
    width: max-content;
    margin: 1vw auto;
    z-index: 2;
    position: relative;
}

a.link-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.home .site-content {
    padding: 0;
}

.third-row .main-content {
    position: relative;
}

.widget-row.second-row .widget:first-child .widget-content {
    right: 0;
    left: auto;
    padding: 1vw 4vw 1vw 0;
}

.interior .section-wrap h2 {
    font-size: 2.4vw;
    text-transform: uppercase;
    font-weight: 100;
    color: #53b8ae;
}

div#leaders {
    max-width: 57%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.leader {
    width: 26%;
    text-align: center;
    margin-bottom: 5vw;
}

.leader:nth-of-type(3n+2) {
    margin: 0 6.1vw 5vw;
}

.leaderimg img {
    display: block;
    margin-bottom: 1vw;
}

.leadername {
    text-transform: uppercase;
    font-size: 1.34vw;
    color: #c3e09c;
    line-height: 1.2;
}

.leadertitle {
    font-size: 1.3vw;
    color: #9b9b9b;
}

div#stats img {
    width: 100%;
}

#logos .flex-viewport {
    max-width: 75%;
    margin: 0 auto;
}

#logos .slides img {
    max-width: 45%;
    margin: 0 auto;
}

#logos h2 {
    font-size: 2.4vw;
    text-transform: uppercase;
    font-weight: 100;
    color: #53b8ae;
    text-align: center;
    color: #f7b293;
    margin-bottom: 5vw;
}

div#logos {
    margin: 4vw 0 5vw;
}

#logos ul.flex-direction-nav {
    bottom: 3.6vw;
    top: auto;
    opacity: 1;
    width: 87%;
}

#logos .flex-direction-nav a:before {
    content: '>';
    color: #7d7d7d;
    font-size: 2vw;
}

#logos .flex-direction-nav a.flex-prev:before {
    content: '<';
    color: #7d7d7d;
}

/*** Trial Qualifiers **/

.trial-results {
	border-radius: 4px;
	overflow: hidden;
	border-collapse: collapse;
	color: #969696;
	text-align: center;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.39);
}

.trial-results tr:nth-child(odd) {
	background-color: #fbfbfb;
}

.trial-results th {
	background-color: #cb3c2a;
	color: #fff;
	border: 1px solid #f2f2f2;
	border-top: 0;
	text-align: center;
	padding: .8vw .4vw;
	text-transform: uppercase;
	text-shadow: 0px 0px 6px #440000;
}

.trial-results th:first-child {
	border-left: 0;
}

.trial-results th:last-child {
	border-right: 0;
}

.trial-results td {
	text-align: center;
	border: 1px solid #f2f2f2;
	padding: .8vw .4vw;
	font-size: .9vw;
}

.trial-results td:nth-child(2) {
	text-transform: uppercase;
}

.trial-results td:first-child {
	color: #474747;
	font-weight: 400;
}

/*** Track Records ***/

.records-section {
	padding: 0 0 3.5vw;
	margin: 0 0 3.5vw;
	border-bottom: 1px solid #f2f2f2;
}

h2.records-section-title {
	text-transform: uppercase;
	color: #474747;
	font-weight: 400;
}

h2.track-title {
	font-weight: 400;
	text-transform: uppercase;
	color: #cb3c2a;
	font-size: 1vw;
}

.track-table {
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.39);
	border-radius: 4px;
	overflow: hidden;
	margin: 0;
}

.track-table tr {
	border: 0;
}

.track-table th {
	color: #fff;
	background-color: #cb3c2a;
	padding: .25vw 1vw;
	font-weight: 300;
	border: 0;
	font-size: .9vw;
}

.track-table tr:first-child th:first-child {
	border-radius: 4px 0 0 4px;
}

.track-table tr:first-child th:last-child {
	border-radius: 0 4px 4px 0;
}

.track {
    margin: 2vw 0;
}

.track-table td {
    color: #000;
    background-color: #f6f6f6;
	padding: .25vw 1vw;
}

.track-table td:first-child,
.track-table th:first-child {
	padding-left: 2.5vw;
}

.track-table tbody tr:first-child td {
	padding-top: .7vw;
}

.track-table tbody tr:last-child td {
	padding-bottom: .7vw;
}

/*** Linecards ***/

.ilc-header h2 {
    font-size: 2vw!important;
}

/*** Services ***/

div#divisions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.division-box {
    width: 33.3333333%;
    height: 16.078vw;
    overflow: hidden;
}

.division-box.division-choice {
    background: #4c4c4c;
    padding: 3vw 2vw;
    color: #fff;
}

.division-box.division-choice h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.5vw;
    font-weight: 100;
    margin-bottom: .4vw;
}

.div-intro {
    font-size: .9vw;
    color: #b6b6b6;
}

.division-box.division-choice a.button {
    font-size: 1vw;
    padding: .8vw 1.4vw;
}



div#middle-image img {
    display: block;
}

div#services {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service {
    width: 33.33333%;
    height: 21.437vw;
    position: relative;
    padding: .3vw .3vw .4vw;
    overflow: hidden;
}

.service-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #eee;
    opacity: 0;
    transition: opacity 1.4s;
}

.service:hover .service-bg {
	opacity: .7;
}

.service:nth-child(6n+1), .service:nth-child(6n+1) .service-bg {
    background: #44588e;
}

.service:nth-child(6n+2), .service:nth-child(6n+2) .service-bg {
    background: #219bc8;
}

.service:nth-child(6n+3), .service:nth-child(6n+3) .service-bg {
    background: #229b8d;
}

.service:nth-child(6n+4), .service:nth-child(6n+4) .service-bg {
    background: #b32950;
}

.service:nth-child(6n+5), .service:nth-child(6n+5) .service-bg {
    background: #f37237;
}

.service:nth-child(6n+6), .service:nth-child(6n+6) .service-bg {
    background: #91c647;
}

.service-img {
    background: #fff;
    overflow: hidden;
    max-height: 100%;
}

.service-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6vw;
    z-index: 9;
    color: #747474;
    transition: color .6s;
    flex-direction: column;
    text-align: center;
    cursor: default;
}

.title-wrap::after {
    border-bottom: 1px solid;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 0;
    transition: max-width .3s;
    transition-delay: .3s;
}

.service:hover .title-wrap::after {
    max-width: 5vw;
}

.title-wrap {
    position: relative;
    margin-bottom: .4vw;
}

.service:hover .service-title {
	color: #fff;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s, opacity .5s;
    font-size: 1vw;
    padding: 0 6vw;
	transition-delay: .7s;
}

.service:hover .service-content {
    max-height: 100%;
    opacity: 1;
}

/*** Projects ***/

.nav-wrap {
    display: flex;
    align-items: center;
}

.project-nav {
    display: flex;
    border-top: 2px solid #c9cbcc;
    padding: 1vw 2vw;
    justify-content: space-between;
}

.project-nav-item {
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1vw;
    margin: 0 2.8vw;
}

.project-nav-item.active-nav {
    border-bottom: 2px solid;
}

.projimage {
    position: relative;
    height: 20vw;
}

.project:not(.open) .projimage {
    cursor: pointer;
}

.project {
    width: 33.3333%;
    position: relative;
    height: 20vw;
    margin-bottom: 0;
    transition: margin-bottom .5s;
    transition-delay: .3s;
    display: none;
}

.projectmodal {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 2vw;
    opacity: 0;
    transition: opacity .5s;
    z-index: -1
}

.projectmodal.show {
    opacity: 1;
    z-index: 999;
}

.project.open::after {
    width: 0;
    height: 0;
    border-left: 1.4vw solid transparent;
    border-right: 1.4vw solid transparent;
    border-top: 1.4vw solid #636363;
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    margin: auto;
    top: 20vw;
}

.modalinner {
    background: #666666;
    color: #fff;
    overflow: hidden;
}

.modal-right {
    width: 64%;
    float: right;
}

.modal-left {
    width: 36%;
    float: left;
    padding: 2vw;
}

.project-row {
    display: flex;
}

.project img {
    display: block;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    width: auto;
}

.project-wrap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 99
}

.projectmodals {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 98;
}

.projouter {
    position: relative;
    overflow: hidden;
}

.projinfo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: top .8s, opacity .8s;
    z-index: 9;
    overflow: hidden;
}

.project:hover .projinfo {
    opacity: 1;
}

.project.open .projinfo {
    opacity: 0;
}

.project-sort select {
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    color: #000;
    padding: .4vw 0.7vw;
    line-height: 1;
    height: auto;
    border: 0;
    width: 100%;
    padding-right: 3vw;
    z-index: 9;
    font-size: .8vw;
}

.filter {
    display: flex;
    align-items: center;
}

.project-search input {
    border-radius: 0;
    border-color: #c9cbcc;
    color: #b4b7c0;
    padding: .4vw 0.7vw;
    line-height: 1;
    font-size: .8vw;
}

.project-sort {
    display: flex;
    border: 1px solid #c9cbcc;
    position: relative;
    margin-right: .6vw;
}

.project-sort i.fa.fa-sort-desc {
    position: absolute;
    top: 0;
    bottom: .4vw;
    margin: auto;
    display: flex;
    align-items: center;
    right: .7vw;
}

.infowrap {
    text-align: center;
    transform: translateY(4vw);
    transition: transform .8s;
}

.project:hover .infowrap {
    transform: translateY(0);
}

h2.projtitle {
    font-size: 2vw;
    font-weight: 100;
    padding-bottom: 0.6vw;
    color: rgba(255, 255, 255, 0.81);
    position: relative;
}

h2.projtitle::after {
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.81);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 0;
    transition: max-width 1.4s;
}

.project:hover h2.projtitle::after {
	max-width: 40%;
}

.projloc {
    font-size: 1vw;
}
.project-search {
    position: relative;
}
.project-search i.fa.fa-search {
    position: absolute;
    right: 1vw;
    top: 0;
    bottom: 0;
    left: auto;
    line-height: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 1vw;
    cursor: pointer;
}

.modal-left h2 {
    font-size: 1.6vw;
    padding: 0;
    color: #fff;
    font-weight: 100;
    margin-bottom: .2vw;
}

.modal-left h3::after {
    content: '';
    height: 1px;
    width: 13%;
    position: absolute;
    background: #fff;
    bottom: 0;
    left: 0;
}

.modalcontent p {
    font-size: .9vw;
    margin-bottom: .2vw;
    line-height: 1.6;
}

.featuredproducts li {
    font-size: .9vw;
    line-height: 1.6;
}

.featuredproducts {
    margin: .8vw 0;
}



.featuredproducts h4 {
    font-size: 1vw;
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: .4vw;
}

.modal-left ul {
    margin: 0 0 0 1vw;
}

.modal-left h3 {
    font-size: 1vw;
    color: #fff;
    margin: 0 0 .8vw;
    padding: 0 0 .8vw;
    position: relative;
    font-weight: 100;
}

.project-content .section.intro-section h1, .news-content .section.intro-section h1 {
    margin: 0 auto;
    padding: 1.4vw 2vw;
    border-top: .2vw solid;
    border-bottom: .2vw solid;
    font-size: 2.4vw;
    display: inline-block;
    font-weight: 100;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
}

div#projects #load-more-proj {
    margin-bottom: 2vw;
    margin-right: 1vw;
    float: right;
    border: 0;
    color: #fff;
}

div#projects #load-more-proj.hide {
    display: none;
}

/*** LightTalk ***/

div#news-wrap {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    width: 95%;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -o-justify-content: flex-start;
    padding-bottom: 6vw;
    position: relative;
    margin: 3vw auto 0;
    align-items: flex-start;
}
.news-item {
    width: 24.19%;
    margin-right: 1vw;
    margin-bottom: 1vw;
    cursor: pointer;
    border: 1px solid;
    display: none;
}
.news-item:hover {
    border: 1px solid #2196F3;
}
.news-item:nth-of-type(4n+4) {
    margin-right: 0;
}
.news-thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.more-news {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: -1;
    cursor: auto;
    transition: opacity .3s, z-index 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.more-news.show-news {
    z-index: 999;
    opacity: 1;
    transition: opacity .3s, z-index 1s;
}


.news-left {
    width: 47%;
    float: left;
}
.news-right {
    width: 50%;
    float: right;
}
.news-right .news-title {
    color: #000;
    padding-bottom: .5vw;
    margin-bottom: .5vw;
}
.news-right p {
    margin: 0;
    font-size: 1vw;
}
.close-news {
    position: absolute;
    right: 1vw;
    top: 1vw;
    width: 2vw;
    height: 2vw;
    cursor: pointer;
}
.close-news span {
    display: block;
    width: 100%;
    background: #e0e1e1;
    opacity: 1;
    height: .2vw;
    position: absolute;
    transition: background .3s;
    top: .8vw;
}

.more-wrap {
    position: absolute;
    width: 85%;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    padding: 2vw;
    border: 2px solid #e04c37;
    max-height: 69%;
    overflow-y: auto;
}
.close-news span:nth-of-type(1) {
    transform: rotate(45deg);
}
.close-news span:nth-of-type(2) {
    transform: rotate(-45deg);
}

.news-thumb img {
    width: 100%;
    height: auto;
}
.news-info {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: opacity .3s;
    z-index: 99;
    padding: 1vw 1.2vw;
}
.news-thumb:hover .news-info {
    opacity: 1;
    transition: opacity .3s;
}

button#load-more {
    border: 0;
    color: #fff;
}

button#load-more.hide {
    display: none;
}

div#image-slider {
    overflow: hidden;
    position: relative;
}
#image-slider .flex-control-nav {
    text-align: left;
    left: 0;
    right: 0;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    bottom: 0;
    top: 1vw;
}

#image-slider .flex-control-nav li {
    border: .1vw solid #000;
}

#image-slider .flex-control-paging li a.flex-active {
    background: #000;
}

.news-name {
    color: #000;
    font-weight: 100;
    font-size: 1.2vw;
    line-height: 1.4;
}

.more-wrap .news-name {
    color: #000;
    font-weight: 100;
    font-size: 1.8vw;
    line-height: 1.4;
    margin-top: 1vw;
}
.news-title {
    color: #fff;
    font-size: 1.2vw;
    margin-top: .4vw;
}

.news-con {
    font-size: 1vw;
}

.news-item:nth-of-type(8n+6), .news-item:nth-of-type(8n+8) {
    margin-top: -3.5vw;
}

/*** Contact ***/

.section.directions-right {
    width: 50%;
    float: right;
}
.section.directions-left {
    width: 50%;
    float: left;
    background: #fbfbfb;
    padding: 5vw 0 5vw 10vw;
}

.acf-map {
    width: 100%;
    height: 100%;
}
.section.top-section {
    display: flex;
    color: #000;
}

.section.top-section.bottom {
    background: #fbfbfb;
    justify-content: center;
}

.section.top-section.bottom .section.directions-left, .section.top-section.bottom .section.directions-right {
    padding: 2vw;
    margin: 5vw 2vw;
    width: 36%;
    background: #fff;
    border: 1px solid #eee;
}
.page-template-directions .bottom-sections {
    text-align: center;
}
.section.top-section.bottom .directions-right {
    padding: 5vw 10vw 5vw 0;
}
.section.top-section h2, .page-template-directions .bottom-sections h2 {
    color: #cb3d2b;
    font-weight: 600;
}

.directory-listing:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.directions-content a {
    font-weight: 600;
    text-decoration: underline;
}
.page-template-directions div#content {
    padding: 0;
}
.page-template-directions .section.intro-section h1 {
    margin: 0;
    line-height: 1;
    padding: 0;
    font-weight: 600;
    font-size: 3vw;
}
.page-template-directions .section.intro-section .section-wrap {
    padding: 0;
    margin: 3vw auto;
}
.section.middle-section {
    color: #000;
    margin: 5vw 0;
}
div#locations {
    position: relative;
    max-width: 80%;
    margin: 0 auto 6vw;
}

.location-hotspot {
    position: absolute;
    width: 1.6vw;
    height: 1.6vw;
    background: #aa2657;
    transform: translateY(-.5vw) translateX(-.8vw);
    border-radius: 100%;
    cursor: pointer;
}

div#locations img {
    display: block;
}

div#contact-form img {
    display: block;
}

.location-hotspot:hover {
    zoom: 1.2;
}

.headquarters h2, .directory h2 {
    font-size: 2.5vw;
    font-weight: 100;
    text-transform: uppercase;
    color: #b32950;
}

div#intro > div {
    width: 39%;
    text-align: center;
}
div#intro {
    max-width: 80%;
    margin: 3.5vw auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.directory a.button {
    background: linear-gradient(to bottom, rgba(181,51,87,1) 0%,rgba(222,74,53,1) 100%);
    color: #fff;
    margin-top: 0;
}

.location-more {
    position: absolute;
}

.location-more {
    position: absolute;
    text-align: center;
    top: 1vw;
    right: 1vw;
    border: 4px solid #526e67;
    padding: 3vw 6vw;
    opacity: 0;
    z-index: -1;
    transition: opacity .4s;
    background: #fff;
    box-shadow: 0px 0px 5px #888888;
    max-width: 40%;
}

.acf-map .location-more {
    position: relative;
    text-align: center;
    top: 1vw;
    right: 1vw;
    border: 4px solid #526e67;
    padding: 3vw 6vw;
    opacity: 1;
    z-index: 9;
    transition: opacity .4s;
    background: #fff;
    box-shadow: 0px 0px 5px #888888;
    max-width: 40%;
}

.location-more.active-location {
    opacity: 1;
    z-index: 9;
}

.location-more h2 {
    font-size: 2.5vw;
    font-weight: 100;
    text-transform: uppercase;
    color: #526e67;
}

.close-location {
    position: absolute;
    right: 1vw;
    top: 1vw;
    width: 2vw;
    height: 2vw;
    cursor: pointer;
}

.close-location span {
    display: block;
    width: 100%;
    background: #e0e1e1;
    opacity: 1;
    height: .2vw;
    position: absolute;
    transition: background .3s;
    top: .8vw;
}

.close-location span:nth-of-type(2) {
    transform: rotate(-45deg);
}

.close-location span:nth-of-type(1) {
    transform: rotate(45deg);
}

.location-more a.button {
    background: linear-gradient(to bottom, rgba(181,51,87,1) 0%,rgba(222,74,53,1) 100%);
    color: #fff;
    margin: 0;
}

.form-wrap {
    padding: 2vw 3vw;
    max-height: 63%;
    border: 1px solid #f2f2f2;
    max-width: 52%;
    margin: 0 auto 5vw;
}

.gform_wrapper {
    overflow: hidden;
}

.news-info .news-date {
    text-transform: uppercase;
    font-size: 1vw;
    margin-top: .3vw;
}

.form-wrap h3 {
    font-size: 1.5vw;
    font-weight: 100;
    text-transform: uppercase;
}

ul#gform_fields_1 {
    list-style: none;
}

.form-wrap label {
    display: none;
}

.form-wrap input[type="text"], .form-wrap input[type="tel"], .form-wrap input[type="email"] {
    border-radius: 0;
    padding: .6vw 1vw;
}

.form-wrap li.gfield:nth-of-type(odd) {
    float: left;
    width: 49.25%;
    margin-bottom: 1vw;
}

.form-wrap li.gfield:nth-of-type(even) {
    float: right;
    width: 49.25%;
    margin-bottom: 1vw;
}

.form-wrap li.gfield:last-child {
    width: 100%;
}

.gform_footer.top_label {
    text-align: center;
}

.gform_footer.top_label input {
    border: 0;
    margin: 0 auto;
    color: #fff;
    font-size: 1vw;
    background: #cb3d2a;
    padding: 1vw 1.5vw .8vw 1.5vw;
    border-radius: 3px;
    opacity: 1;
    transition: opacity .4s;
    line-height: 1;
}

.contact-content .intro-section h1 {
    color: #000;
    font-size: 2vw;
    font-weight: 600;
}

/*** Owners ***/

.video-wrap {
	position: relative;
}
.bullet-list {
	list-style: none;
}
.bullet-item {
	position: relative;
	padding: 0 0 0 1.3vw;
}
.bullet-item:before {
	content: "\2022";
	color: #cb3f2c;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 2.5vw;
	line-height: .65;
	vertical-align: top;
}
h2.bullet-list-heading,
h2.bottom-section-heading {
	color: #cb3f2c;
	text-transform: uppercase;
	font-weight: 600;
}
.bullet-list-button,
.bullet-list-button:hover {
	background-color: #cb3f2c;
	color: #fff;
	padding: 1vw;
	border-radius: 2px;
	text-decoration: none !important;
}

/*** RP Bet **/

.bet-section img {
	display: block;
	margin: 0 0 1.5vw;
}

/*** Race Day Picks ***/

.raceday-picks .dining-left h2:not(.dining-subtitle) {
	color: #df0711;
}

.raceday-picks .section {
	border-bottom: 1px solid #eee;
    overflow: hidden;
    padding-bottom: 2vw;
	margin-bottom: 2vw;
}

.raceday-picks .section-left {
    float: left;
    width: 48%;
}

.raceday-picks .section-right {
    float: right;
    width: 49%;
}

.raceday-picks .section-right h3 {
    text-transform: uppercase;
}

.raceday-picks .quotes-wrap svg {
	font-size: 13vw;
    color: #fafafa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.raceday-picks ul.quotes.slides {
    max-width: 73%;
    margin: 0 auto;
}

.raceday-picks .dining-promotions {
    padding: 2vw 2vw 0;
	border-bottom: 0;
}

.raceday-picks .dining-promotions:first-child {
    padding: 0 2vw 2vw;
}

.raceday-picks .dining-right {
	padding: 2vw 0;
}

/*** Events ***/

div#eventlist {
    float: right;
    width: 34%;
    background: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    overflow: hidden;
}

.calwrap {
    float: left;
    width: 63%;
    border-radius: 5px;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    position: relative;
}

.fc-center h2 {
    font-size: 1.5vw;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    padding: 0 1vw;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0;
    background: #eee;
    padding: 1vw;
}

.fc-view-container tr {
    border: 0;
    font-size: 1vw;
}

.fc-row table {
    margin: 0;
}

.fc-unthemed td.fc-today {
    background: #eaeaea!important;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0!important;
    background: #cb3d2a;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 5px 0 0;
}

.fc table {
    margin-bottom: 0;
}



.fc-icon-left-single-arrow:after {
    content: "\f104"!important;
    font-family: 'FontAwesome'!important;
    font-size: 1.8vw!important;
    top: .1vw!important;
    font-weight: 100!important;
    color: #f4d6d3!important;
}

.fc-day-grid-event .fc-content {
    white-space: initial!important;
}

.fc-icon-right-single-arrow:after {
    content: "\f105"!important;
    font-family: 'FontAwesome'!important;
    font-size: 1.8vw!important;
    top: .1vw!important;
    font-weight: 100!important;
    color: #f4d6d3!important;
}

.fc-day-header {
    border: none!important;
    background: #cb3e2b;
    padding: 0vw 0 .3vw!important;
}

td.fc-head-container.fc-widget-header {
    border: 0;
}

span.fc-day-number {
    background: #eee;
    border-radius: 100%;
    width: 1vw;
    height: 1vw;
    font-size: .6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cb3e2b;
    font-weight: 400;
    top: .2vw;
    position: relative;
    right: .2vw;
    box-shadow: 0.1vw 0.1vw 0.1vw 0px #d7d7d7;
    margin-bottom: .5vw;
}

.fc-day-header span {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: .6vw;
}

.fc-prev-button, .fc-next-button {
    background: #cb3e2b!important;
    box-shadow: none!important;
    text-shadow: none!important;
    color: #fff!important;
}

.fc-clear {
    display: none;
}

.fc-left {
	order: 1;
}

.fc-center {
	order: 2;
}

.fc-right {
	order: 3;
}

.daymo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.daymo h3 {
    line-height: 1;
    text-transform: uppercase;
    font-size: 1.8vw;
    padding: 0;
    margin: 0 0 0 .5vw;
    font-weight: 100;
}

.location-title {
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    margin-bottom: .2vw;
}



.location-date {
    font-weight: 400;
    color: #000;
}

.location-date .fa {
    color: #cb402d;
}

div#eventlist h2 {
    font-size: 1.4vw;
    font-weight: 300;
    text-transform: uppercase;
    background: #cb3e2b;
    margin: 0;
    padding: 1.5vw 0;
    text-align: center;
    color: #fff;
}

ul.events {
    list-style: none;
    margin: 0;
    padding: 1.8vw 1.8vw 0 1.8vw;
}

.listthumb {
    float: left;
    width: 45%;
    overflow: hidden;
}

.listthumb img {
	border-radius: 3px;
}

.listinfo {
    float: right;
    width: 48%;
    clear: right;
}

.listbot {
    overflow: hidden;
    margin: 0 0 1.2vw 0;
    position: relative;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 1.2vw;
}



.event-pagination ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
}

.event-pagination li:first-child a, .event-pagination li:last-child a {
    background-color: #cb3e2b;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    font-size: 24px;
    font-size: 1.5vw;
    line-height: 1;
    padding: 0.25vw 0.5vw 0.4vw;
    color: #fff;
}

.numbers li:first-child a, .numbers li:last-child a {
    background: none;
    color: #cb3d2b;
    font-size: 1vw;
}

.event-pagination li.disabled {
    visibility: hidden;
}

#eventlist a.button {
    background: #cb3f2c;
    margin-top: 1vw;
    border-radius: 3px;
    font-size: .9vw;
    text-transform: none;
    padding: .8vw 2vw;
    display: inline-block;
    float: right;
    position: relative;
    right: 2.4vw;
    color: #fff;
}

.fields_panel {
    display: none;
}

.yith_evti_total_price::before {
    content: 'Total:';
    font-weight: 500;
    color: #000;
}

.yith-wcbk-has-date-picker input.yith-wcbk-date-picker {
	background: transparent!important;
	padding-right: 0 !important;
    z-index: 999;
    position: relative;
    cursor: pointer;
}

.yith-wcbk-has-date-picker:after {
    z-index: 0;
    top: 2.7vw;
    bottom: 0;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #cb402d!important;
    color: #fff;
    -webkit-font-smoothing: inherit!important;
    text-transform: none;
    margin-top: 1vw;
}

.woocommerce-message {
    border-top-color: #cb3f2c!important;
}

.woocommerce-message::before {
    color: #cb3f2c!important;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    display: none;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    float: left!important;
    width: 100%!important;
}

.woocommerce-tabs.wc-tabs-wrapper {
    display: none;
}

.event-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.topchoices {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2vw;
}

h1.product_title.entry-title {
    display: none;
}

.listbot.nocalendar .location-date {
    display: flex;
}

ul.events li {
    overflow: hidden;
}

ul.events li:first-child .listbot {
    margin-top: 0;
}

#eventlist a.button.more {
    display: inline-block;
    margin: 1.2vw 0 2.1vw 0;
    right: 0;
}

.button-parent {
    display: flex;
    justify-content: center;
}

.fc-event, .fc-event-dot {
    background: #fce8c0!important;
    border-color: #fce8c0!important;
    color: #000!important;
    font-size: .6vw!important;
    border-radius: 0!important;
    border-bottom: 1px solid #b4b4b4!important;
    padding: .2vw!important;
    margin-bottom: 0!important;
    margin-top: 0!Important;
}

td.fc-event-container.hide {
    display: none;
}

td.fc-event-container.show {
    display: block;
}

.eventcat {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    background: #eee;
    border: .1vw solid #fff;
    padding: .6vw 0 .4vw;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

div#eventcats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-day-grid .fc-row {
    min-height: 9vw!important;
}

.daymo .day {
    background: #000;
    padding: 1vw;
    color: #fff;
    font-size: 1.8vw;
    line-height: 1;
    border-radius: .4vw;
}

.nocalendar .listthumb {
    width: 47%;
}

.recurring-list #eventlisting .listinfo a.button {
    float: left;
    margin-top: 1vw;
    padding: .8vw 1vw;
}

.event-pagination li a {
    font-weight: 600;
    padding: 0.25vw 0.5vw 0.4vw;
}

li.active .current {
    padding: 0.25vw 0.5vw 0.4vw;
}

.event-pagination ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0;
}

.numbers {
    display: flex;
    width: 20%;
    justify-content: space-around;
}

.nocalendar .listinfo {
    width: 50%;
}
.listbot.nocalendar .location-date {
    display: flex;
    margin-bottom: .7vw;
}
.nocalendar .location-title {
    font-size: 1.5vw;
    margin-bottom: 1vw;
}

.dateinterior {
    margin-right: 1vw;
}

.post-type-archive-events div#content {
    padding-top: 3vw;
}

form#filter {
    margin-bottom: 2vw;
    overflow: hidden;
}

.sortwrap select {
    background: none;
    -webkit-appearance: none;
    border: none;
    padding: 0 6vw 0 .8vw;
    font-size: .8vw;
    z-index: 9;
    -moz-appearance: none;
}

.sortwrap select::-ms-expand {
    display: none;
}

.sortwrap {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.sortwrap i.fa.fa-sort-desc {
    position: absolute;
    left: auto;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    line-height: 1;
    background: #cb3e2b;
    color: #fff;
    padding: 0 1vw 0.5vw;
}

div#single-event {
    width: 63%;
    float: left;
}

div#single-event .listthumb {
    width: 100%;
    float: none;
}

#single-event .location-title {
    font-size: 1.5vw;
    margin-bottom: 1vw;
}

#single-event .location-date {
    display: flex;
    margin-bottom: 1.8vw;
    color: #5f5f5f;
}

div#single-event .listthumb {
    width: 100%;
    float: none;
    border-radius: 3px;
    background: #eee;
    padding: .3vw;
}

div#single-event .listthumb img {
    border-radius: 0;
}

.thumbwrap {
    position: relative;
}

.subwrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sub1 {
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: 300;
}

.sub2 {
    font-size: 1.7vw;
}

.sub3 {
    margin-top: 1vw;
    color: #cb3f2c;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.3vw;
}

.shareevent {
    height: 14vw;
    overflow: hidden;
    border-radius: 3px;
    margin-top: 2vw;
    position: relative;
    float: left;
    width: 100%;
}

section.related.products {
    display: none;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #cb402d!important;
    font-size: 1.3vw!important;
}

.woocommerce div.product .stock {
    color: #cb402d!important;
    font-size: 1.5vw!important;
}

.woocommerce .quantity .qty {
    width: auto!important;
}

.cartLink {
    width: 100%;
    text-align: right;
    font-size: 1.5vw;
    line-height: 1;
    margin-bottom: 2vw;
}

p.return-to-shop {
    display: none;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    color: #fff!important;
    background-color: #cb3f2c!important;
}

.shareevent::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(197, 67, 49, 0.82);
    content: '';
}

.sharecontent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 78%;
    margin: 0 auto;
}

.shareleft {
    text-align: center;
}

.shareday {
    text-transform: uppercase;
    font-size: 1.5vw;
    line-height: 1.2;
}

.sharemonth {
    font-size: 2.5vw;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2;
}

.sharetime {
    margin-top: 1vw;
}

a.button.share {
    background: #fff;
    color: #cb402d;
    padding: 1vw;
}

.share-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.73);
    z-index: 9999;
    display: none;
}

.modal-wrap {
    position: absolute;
    max-width: 80%;
    margin: 0 auto;
    top: 15%;
    left: 0;
    right: 0;
    bottom: 15%;
    background: #eee;
    border-radius: 3px;
    display: flex;
    padding: 3vw;
    justify-content: space-evenly;
    align-items: center;
}

.close-modal {
    position: absolute;
    right: 1vw;
    top: 1vw;
    color: #ccc;
    font-size: 2vw;
    line-height: 1;
    cursor: pointer;
    transition: color .4s;
}

.close-modal:hover {
    color: #898989;
}

.share-title {
    font-size: 2.8vw;
    text-transform: uppercase;
    font-weight: 500;
}

.socialicons a {
    color: #cb402d;
    font-size: 6vw;
    margin-right: 0.5vw;
    opacity: 1;
    transition: opacity .4s;
}

.socialicons a:hover {
    opacity: .8;
}

td.fc-event-container {
    border-bottom: 1px solid #eee!important;
}

form#eventcats input {
    display: none;
}

form#eventcats {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#eventcats label {
    margin: 0;
    cursor:pointer;
}

#eventcats li {
    padding: .5vw;
    background: #eee;
    width: 100%;
    text-align: center;
    border: .1vw solid #fff;
    cursor: pointer;
    list-style: none;
}

/* Loader */

.loadingContainer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: rgba(242, 242, 242, 0.69);
    z-index: 99;
    display: none;
}

.loadingContainer.show {
    display: block;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(203, 63, 44, 0.43);
    border-right: 1.1em solid rgba(203, 63, 44, 0.43);
    border-bottom: 1.1em solid rgba(203, 63, 44, 0.43);
    border-left: 1.1em solid #cb3f2c;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 2.1s infinite linear;
    position: absolute;
    left: 0;
    right: 0;
    top: 31%;
    display: block;
    margin: auto;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*** Accommodations ***/

.page-template-accommodations div#content, .page-template-partners div#content {
    padding: 0;
}

.accommoations-page .section.intro-section h1, .partners-page .section.intro-section h1 {
    padding: 2vw 0;
    line-height: 1;
    color: #000;
    font-size: 2vw;
    margin: 0;
    font-weight: 600;
}

.accommodation {
    padding: 3vw 22vw;
    text-align: center;
}

.accommodation-bottom p {
    max-width: 90%;
    margin: 0 auto 1.5vw;
}

.accommodation-bottom ul {
    text-align: left;
    column-count: 2;
    column-gap: 6vw;
    list-style: none;
    column-rule: .1vw outset #d6d6d6;
}

.accommodation:nth-of-type(even) .accommodation-bottom ul {
    max-width: 66%;
    margin: 0 auto;
}

.accommodation-bottom ul li {
    position: relative;
}

.accommodation-bottom ul li:before {
    content: "\f111";
    left: -1vw;
    position: absolute;
    color: #cb3f2c;
    font-family: 'FontAwesome';
    font-size: .53vw;
    top: .54vw;
}

.accommodation-top {
    display: flex;
    text-align: left;
    margin: 0 8vw 2vw;
    align-items: center;
}

.accommodation-left {
    width: 40%;
    margin-right: 3vw;
}

.accommodation-right h2 {
    color: #cb3f2c;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.2vw;
}

.accommodation-right {
    line-height: 1.4;
    width: 55%;
}

.accommodation:nth-of-type(odd) {
    background: #f9f9f9;
}

.accommodation-right a {
    text-decoration: underline;
}

.accommodation:nth-of-type(even) {
    background: #fff;
}

/*** Partners ***/

div#partners .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 71%;
}

.partner {
    width: 21vw;
    margin-bottom: 2.8vw;
    border: 1px solid #eee;
    border-radius: 5px;
}

.partner img {
    width: 100%;
    height: 100%;
}

/*** Horsemen ***/

.horsemenCalWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

div#horsemenCals {
    width: 55%;
    float: left;
}

div#directory {
    width: 34%;
    float: right;
    background: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    overflow: hidden;
}

.directory-wrap {
    padding: 1.5vw 2vw;
}

.horsemen-calendar {
    width: 34%;
    margin-right: 1vw;
    height: auto;
    overflow: hidden;
    border: 1px solid #000;
    margin-bottom: 1vw;
    box-sizing: content-box;
}

.horsemen-calendar .fc-row.fc-widget-header {
    border-bottom: 1px solid #000;
}

.horsemen-calendar .fc-toolbar.fc-header-toolbar {
    padding: .2vw;
    border-radius: 0;
    border-bottom: 1px solid #000;
}

.horsemen-calendar .fc-center h2 {
    font-size: .7vw;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    padding: 0 1vw;
}

.horsemen-calendar .fc-day-grid .fc-row {
    min-height: 0!important;
}

.horsemen-calendar .fc-event, .horsemen-calendar .fc-event-dot {
    background: none!important;
    border-color: transparent!important;
    color: #000!important;
    font-size: .8vw!important;
    border-radius: 0!important;
    border-bottom: none!important;
    padding: 0!important;
    margin-bottom: 0!important;
    margin-top: 0!Important;
    text-align: center;
    display: flex!important;
    align-items: center;
    justify-content: center;
    height: 92%;
    position: absolute!important;
    top: .1vw;
    bottom: 0;
    margin: 0!important;
    width: 1.94vw;
    z-index: -1;
}

.page-template-overnights .tax {
    display: none;
}

.quotes-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    background-color: #fff;
    margin: 0 auto 2vw;
}

ul.quotes.slides {
    padding: 2vw 0;
}

.quote-wrap {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.quotes-wrap .quotation {
    font-size: 13vw;
    color: #fafafa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;

}

.quotes {
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    z-index: 2;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
}



.quotes-wrap.flexslider .fa-quote-left {
    display: none;
}

.quote {
    font-weight: 600;
    color: #000;
}

li.quote {
    padding: 0 3vw!important;
}

.name {
    text-transform: uppercase;
    color: #df0812;
    margin-top: .5vw;
}

.quotes-wrap .flex-direction-nav {
    opacity: 1 !important;

}

.quotes-wrap .flex-prev, .quotes-wrap .flex-next {
    position: relative;
    display: inline-block;
    width: 2vw;
    height: 2vw;
    border-radius: 2vw;
    background-color: #f2f2f2;
}

.quotes-wrap .flex-prev:before, .quotes-wrap .flex-next:before {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 1 !important;
    content: "\f053";
    color: #df0711;
    font-size: .75vw;
}

.quotes-wrap .flex-direction-nav a.flex-next:before {
    content: "\f054";
}

.quotes-wrap.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 1!important;
    right: 0!important;
}

.sidebar-section a.button {
    margin-top: 1vw!important;
    padding: .6vw 1vw!important;
    font-size: 1vw!important;
}

.quotes-wrap.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 1!important;
    left: 0!important;
}

.horsemen-calendar span.fc-day-number {
    top: .3vw;
    position: relative;
    right: .2vw;
    box-shadow: none!important;
    background: none!important;
    border-color: transparent!important;
    color: #000!important;
    font-size: .8vw!important;
    border-radius: 0!important;
    border-bottom: none!important;
    padding: 0!important;
    margin-bottom: 0!important;
    margin-top: 0!Important;
    text-align: center;
    display: flex!important;
    align-items: center;
    justify-content: center;
    margin: 0 auto!important;
    width: 1.5vw;
    height: 100%;
}

.horsemen-calendar .fc-row .fc-content-skeleton {
    position: relative;
    z-index: 4;
    padding-bottom: 0;
}

.horsemen-calendar .fc-row .fc-content-skeleton td, .fc-row .fc-helper-skeleton td {
    background: none;
    border-color: transparent;
    border-bottom: 0;
    height: 100%;
    padding-bottom: 0.3vw;
    border-color: #000;
}

.horsemen-calendar .extras .fc-content {
    border-bottom: 1px solid #fff!important;
}

.page-template-horsemencharts .fc-event {
    background: #fff!important;
    height: 1vw;
    top: .4vw;
    width: 1.8vw;
}

.horsemen-calendar td.fc-widget-content {
    border: 0;
}

.horsemen-calendar .fc-content {
    padding: 0 .2vw .03vw;
    text-align: center;
    border-bottom: 1px solid #000!important;
}

.fc-event.nolink .fc-content {
    border: 0!important;
}

.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end.nolink {
    display: none!important;
}

.sidebar-section h3 {
    text-align: center;
}

.horsemen-calendar .fc-day-header {
    background: #fa5e18;
    border: 1px solid #000!important;
}

.horsemenGroup h2 {
    color: #cb3e2b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1vw;
}

.horsemenGroup:first-child {
    margin-bottom: 4vw;
}

.page-template-horsemen .intro-section h1 {
    font-size: 1.5vw;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}

#directory a.button {
    font-weight: 300;
    margin-top: .4vw;
    display: inline-block;
    padding: .4vw 1vw .6vw;
    font-size: .8vw;
}

.post-type-archive-horsemen h1 {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

#directory h2 {
    font-size: 1.4vw;
    font-weight: 300;
    text-transform: uppercase;
    background: #cb3e2b;
    margin: 0;
    padding: 1.5vw 0;
    text-align: center;
    color: #fff;
}

.single-events .horsemen-calendar {
    width: 100%;
    margin-bottom: 0;
    border: 0;
}

/*** Dining ***/

a.button.reservations {
    margin-top: 4vw;
    font-size: 1vw;
}

.dining-post {
    display: flex;
    display: -webkit-flex;
}

.dining-post > div {
    width: 50%;
}

.dining-post:nth-of-type(odd) .dining-thumb {
    order: 1;
    -webkit-order: 1;
}

.dining-post:nth-of-type(odd) .dining-content {
    order: 2;
    -webkit-order: 2;
}

.dining-post:nth-of-type(even) .dining-thumb {
    order: 2;
    -webkit-order: 2;
}

.dining-post:nth-of-type(even) .dining-content {
    order: 1;
    -webkit-order: 1;
}

.dining-content {
    background: #fbfbfb;
    padding: 4.5vw;
}

.dining-content h2 {
    font-weight: 400;
    color: #000;
    font-size: 1.6vw;
    text-transform: uppercase;
}

.dining-thumb img {
    width: 100%;
}

.dining-content a.button {
    padding: .4vw 1vw .7vw;
}

div#dining-posts {
    margin-top: 3vw;
}

.page-template-dining div#content {
    padding: 5.5vw 0 0;
}

div#concession-posts {
    max-width: 80%;
    margin: 0 auto;
}

.concession-post {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    margin-bottom: 2vw;
    padding-bottom: 2vw;
    border-bottom: 1px solid #eee;
}

.concession-post > div {
    width: 47%;
}

.concession-content h2 {
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.6vw;
}

.concession-content p {
    font-size: .95vw;
}

.hours {
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    font-size: .9vw;
    margin-bottom: .5vw;
    line-height: 1;
}

a.button.menu {
    font-size: .9vw;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.dining-left {
    float: left;
    width: 62%;
}

.dining-left h2 {
    font-weight: 600;
    text-transform: uppercase;
}

.gallery img {
    width: 47%;
    margin-right: 1.5vw;
    margin-bottom: 1.5vw;
    height: auto;
}

.gallery {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    margin-top: 4vw;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.dining-right h3 {
    font-size: 1.4vw;
    font-weight: 300;
    text-transform: uppercase;
    background: #cb3e2b;
    margin: 0;
    padding: 1.5vw 0;
    text-align: center;
    color: #fff;
}

.dining-right {
    float: right;
    width: 34%;
    background: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    overflow: hidden;
}

.dining-promotions {
    padding: 2vw;
    text-align: center;
}

#primary:not(.rp-bet,.raceday-picks) .dining-promotions img {
    margin-bottom: 2vw;
    padding-bottom: 2vw;
    border-bottom: 1px solid #e0e0e0;
}

.gallery img:nth-of-type(even) {
    margin-right: 0;
}

/*** Horse Owners ***/

.videofile {
    position: relative;
    padding: .8vw;
    background: #eee;
    background: #f2f2f2;
    box-shadow: 0vw 0vw 0.4vw 0vw #d7d7d7;
    overflow: hidden;
}

.page-template-horseowner .site-main ul {
    list-style: none;
    margin: 0;
}

.page-template-horseowner .site-main li {
    overflow: hidden;
    position: relative;
    padding: 0 0 0 1.2vw;
}

.page-template-horseowner .site-main ul li::before {
    content: 'Â·';
    font-size: 4vw;
    line-height: 0;
    color: #cb3f2c;
    position: absolute;
    top: .4vw;
    left: 0;
}

.page-template-horseowner h2 {
    color: #cb3f2c;
    font-weight: 500;
    text-transform: uppercase;
}

/*** Careers ***/

.page-template-careers h1.entry-title {
    color: #cb3f2c!important;
    text-transform: uppercase!important;
    font-size: 1.3vw!important;
}

.top-content h2 {
    font-size: 1.3vw;
    text-transform: uppercase;
    margin-bottom: 0;
}


.bottom-content h2 {
    color: #cb402d;
    text-transform: uppercase!important;
    font-size: 1vw;
    font-weight: 600;
    margin-bottom: 0;
}

.bottom-content {
    margin-top: 2vw;
}

.careers-left {
    width: 62%;
    float: left;
}

.careers-right {
    width: 33%;
    float: right;
}

.careers-right img {
    margin-bottom: 4vw;
}

/*** Groups/Catering ***/

.dining-content ul {
    list-style: none;
    margin: 0 0 1.5vw;
}

.dining-content li {
    overflow: hidden;
    position: relative;
    padding: 0 0 0 1.2vw;
}

.dining-content ul li::before {
    content: 'Â·';
    font-size: 4vw;
    line-height: 0;
    color: #cb3f2c;
    position: absolute;
    top: .4vw;
    left: 0;
}

.page-template-groupscatering .site-content {
    padding: 5.5vw 0 0;
}

.groups-contact * {
    margin: 0;
    color: #000;
}

.groups-contact {
    margin: 4vw 0;
}

.groups-contact h2 {
    text-transform: uppercase;
    font-weight: 400;
    color: #cb3f2c;
    margin-bottom: 1vw;
}

.single-groups-catering .videofile {
    background: none;
    padding: 0;
    box-shadow: none;
}

.single-groups-catering .dining-left h2 {
    color: #cb3f2c;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 2vw;
}

.single-groups-catering .dining-promotions img {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 1vw;
}

.single-groups-catering .groups-contact {
    background: #fff;
    max-width: 90%;
    margin: 0 auto 1.5vw;
    padding: 1vw;
}

.single-groups-catering .dining-right {
    text-align: center;
}

.single-groups-catering a.button {
    margin-bottom: 1vw;
}

.single-groups-catering a.button {
    margin: 0 0 1.6vw;
    display: inline-block;
    font-size: 1vw;
    padding: 1.2vw 3vw;
}

.group-links {
    max-width: 90%;
    margin: 0 auto;
    background: #fff;
    margin-bottom: 1.6vw;
    text-align: left;
    padding: 0;
}

.single-groups-catering .dining-promotions {
    padding: 1vw 1vw .4vw;
}

.group-link {
    position: relative;
    padding-left: 1.3vw;
    padding: .8vw 0 .8vw 3.3vw;
    border-bottom: 1px solid #eee;
}

.group-link a {
    color: #000;
}

.group-link:hover a {
    color: #cb3f2c;
}

.group-link::before {
    content: "·";
    font-size: 4vw;
    line-height: 0;
    color: rgb(203, 63, 44);
    position: absolute;
    top: 1.2vw;
    left: 1.5vw;
}

.bottom-promotions {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}



.bottom-promotions img {
    width: 47.9%;
    margin: 0 1vw 1vw 0;
}

.bottom-promotions img:nth-of-type(even) {
    margin-right: 0;
}

/*** Casino Promotions ***/

.agenda .fc-view.fc-month-view.fc-basic-view {
    display: none;
}

div#promotion-slider {
    margin-top: 3vw;
    width: 100%;
    float: left;
}

div#sidebar {
    float: right;
    width: 34%;
    background: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    overflow: hidden;
    padding: 1vw;
}

.sidebarwrap p {
    margin-bottom: .8vw;
    line-height: 1.2;
}

.sidebarwrap h2 {
    color: #cb3e2b;
    font-weight: 600;
    text-align: center;
}

.sidebarwrap a.button {
    margin-top: .4vw;
    display: inline-block;
}

.button-wrap {
    text-align: center;
}

.sidebarwrap hr {
    background-color: #eee;
}

.casino-left {
    width: 63%;
    float: left;
}

.sidebarwrap {
    background: #fff;
    padding: 1vw;
    margin: 0 auto 1vw;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    border-radius: 3px;
    overflow: hidden;
}

div#promotion-slider .slides li img {
    padding: .4vw;
    background: #eee;
    max-width: 84%;
    margin: 0 auto;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    border-radius: 5px;
    overflow: hidden;
}

#promotion-slider ul.flex-direction-nav {
    opacity: 1;
    width: 100%;
}

.casino-left .calwrap {
    width: 100%;
}

#promotion-slider .flex-direction-nav a::before {
    color: #cb3f2c;
    font-size: 1vw;
    text-shadow: none;
    background: #eee;
    width: 2vw;
    height: 2vw;
    line-height: 2;
    text-align: center;
    border-radius: 100%;
}

#promotion-slider .flex-direction-nav a:hover::before {
    background: #cb3f2c;
    color: #eee;
}

.casino .topchoices {
    position: absolute;
    background: #fff;
    width: auto;
    right: 40.4vw;
    top: 7.2vw;
    z-index: 9;
}

.casino .listthumb img {
    border-radius: 3px;
    width: 100%;
}

.casino .listbot.nocalendar {
    max-width: 94%;
    margin: 1vw auto;
}

.agenda a.button {
    display: inline-block;
    margin-top: 1vw;
    padding: 1vw;
    font-size: 1vw;
}

.sortwrap.sortlist {
    border-radius: 0;
    border: 0;
}

.sortwrap.sortlist i.fa.fa-sort-desc {
    color: #000;
    background: none;
}

/*** How To ***/

.main-content-left {
    width: 63%;
    float: left;
}

.sidebar {
    width: 34%;
    float: right;
    background: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0vw 0vw 0.3vw 0.12vw #d7d7d7;
    overflow: hidden;
}

.sidebar h2 {
    font-size: 1.4vw;
    font-weight: 300;
    text-transform: uppercase;
    background: #cb3e2b;
    margin: 0;
    padding: 1.5vw 0;
    text-align: center;
    color: #fff;
}

.sidebar-wrap {
    padding: 1.5vw 2vw;
}

.main-content-left .videofile {
    padding: .2vw;
}

body.page:not(.twentyseventeen-front-page) .main-content-left h1.entry-title {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    font-size: 1.6vw;
}

.sidebar-wrap h3 {
    margin: 0;
    padding: 0;
}

.video-wrap {
    margin-bottom: 1.3vw;
    padding-bottom: 1.5vw;
    border-bottom: 1px solid #dbdbdb;
}

.video-wrap:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-wrap h3 a {
    color: #000;
    text-decoration: none;
}

.sidebar h4 {
    padding: 0;
}

.sidebar .videofile {
    padding: 0;
    border-radius: 5px;
}

.sidebar .play-video, .sidebar .pause-video {
    font-size: 3.5vw;
}

/*** Community ***/
.page-template-community .location-date {
    margin-bottom: 2vw;
}

.section.intro-section.community-section {
    max-width: 98.6%;
    margin: 0 auto 3vw;
}

.section.intro-section.community-section a.button {
    margin-right: 1vw;
    margin-top: 1vw;
    display: inline-block;
    padding: 1vw 2vw;
    font-size: .9vw;
}

.page-template-community a.button.menu {
    margin-top: 1vw;
    display: inline-block;
    padding: 1vw 2vw;
}

p.link-more {
    display: none;
}

/*** Press ***/

.interior .section-wrap h2 {
    font-size: 1.6vw;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
}

.page-template-press i.fa.fa-calendar {
    margin-left: .4vw;
}

.featured-press h1 {
    font-size: 2vw;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}

.featured-press h2 {
    padding: 0;
    font-size: 1.4vw;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

.featured-image {
    margin-top: 1vw;
}

div#press-posts {
    display: flex;
    justify-content: space-between;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    margin-top: 2vw;
}

.press-content h2 {
    font-weight: 500;
    color: #000;
    margin-bottom: .2vw;
    font-size: 1.4vw;
}

.middle-press {
    margin: 2vw 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middle-press h2, .downloads h2, .social-section h2 {
    font-size: 2vw;
    color: #000;
    font-weight: 600;
}

.middle-press a {
    margin: 0;
}

.press-post {
    width: 32%;
    background: #fbfbfb;
    padding: 2vw;
    border-radius: 5px;
    border: 1px solid #eee;
}

.downloads {
    margin-top: 4vw;
}

.download-post {
    margin: 1.5vw 1.5vw 0 0;
    width: 32%;
    background: #fbfbfb;
    padding: 0;
    border-radius: 5px;
    border: 1px solid #eee;
    overflow: hidden;
}

.download-img {
    height: 16vw;
    overflow: hidden;
}

.download-content .videofile {
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    display: flex;
    display: -webkit-
    flex;
}

.download-content .videowrap {
    height: 16vw;
    background: #000;
    position: relative;
    display: flex;
    display: -webkit-flex;
}
.download-post:nth-of-type(3n+3) {
    margin-right: 0;
}

.download-img img {
    width: 100%;
}

.content-download {
    padding: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: flex-start;
    -webkit-align-items: flex-start;
}

.content-download h2 {
    color: #cb3e2b;
    font-size: 1.2vw;
}



.downloads-wrap {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.social-section {
    margin-top: 4vw;
    background: #fbfbfb;
    padding: 5vw 0;
}

.social-section .socialicons {
    display: flex;
    justify-content: center;
}

.social-section .socialicons a {
    color: #595959;
    margin-right: 1.5vw;
    font-size: 4.5vw;
}

.social-section h2 {
    text-align: center;
}

.social-section .socialicons a {
    color: #595959;
    margin-right: 1.5vw;
    font-size: 4.5vw;
    line-height: 1.5;
}

.social-section .socialicons a:hover {
    color: #cb402d;
}

body.no-slides div#content {
    padding: 5.5vw 0 0;
}

/*** Live Racing ***/
.live-racing-header {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 12.2vw;
}

.sort {
    font-size: 1.2vw;
    right: .5vw;
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    line-height: 0;
}

.race-info-box {
    text-align: center;
    color: #fff;
    margin-top: 1vw;
}

.race-closing, .race-title {
    font-size: 1.5vw;
    font-weight: 500;
}

.race-prize, .post-time {
    font-size: 1.3vw;
}

.races {
    display: flex;
    align-items: center;
}

.race-number {
    padding: .73vw 1vw;
    border-radius: 100%;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.race-info-box {
    display: none;
}

.races-info {
    max-width: 40%;
    margin: 0 auto;
}

.race-number.active {
    background: #fff;
    color: #000;
}

span.select-race {
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    padding: 0 1.3vw 0 1vw;
    font-weight: 600;
}

.racing-dates {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-date {
    font-size: 3vw;
    color: #fff;
    padding: 0 3vw;
    font-weight: 600;
    margin-bottom: 1vw;
}


.next a, .prev a {
    color: #fff;
    font-size: 3vw;
}

.select-date {
    display: flex;
    color: #fff;
    font-size: 1.3vw;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 9;
}

.select-date > div {
    padding: 0 .5vw;
}

.date-number {
    text-align: center;
    border-radius: 100%;
    padding: .4vw .9vw;
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date:hover .date-number {
    border: 1px solid #fff;
}

.date-select {
    margin-top: 0.6vw;
    padding-right: 1vw!important;
}

.date.active .date-number {
    background: #fff;
    color: #000;
}

.date {
    text-align: center;
}

.date-number a {
    color: #fff;
}

.date.active .date-number a {
    color: #000;
}

div#sorting {
    display: none;
}

.date-day {
    visibility: hidden;
    padding-top: .6vw;
    line-height: 1;
}

.race-day-info {
    display: flex;
    flex-direction: column;
     margin-top: .2vw;
}

.race-numbers {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 2.6vw;
    font-weight: 600;
    justify-content: center;
}

.number {
    display: flex;
}

.timeday {
    margin: 0.15vw 0.75vw 0 .4vw;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 1vw;
    letter-spacing: -.3vw;
    -webkit-text-orientation: upright;
	-ms-transform: rotate(-90deg) translateY(.5vw);
}

.number-title {
    font-size: 1vw;
    font-weight: 500;
}

.races-number.divide {
    border-right: 1px dashed #fff;
    height: 3.5vw;
    transform: skewX(-20deg);
    margin: .6vw 2vw 0 0;
}

.races-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: .6vw;
    padding: 0 1vw;
    margin: .6vw 1vw;
}

.conditions {
    display: flex;
    color: #fff;
    font-size: 1.4vw;
    text-transform: uppercase;
}

.track-title {
    font-weight: 600;
    padding-right: .6vw;
}
.live-racing-header h1 {
    color: #fff;
    font-size: 2.5vw;
    margin-bottom: 0;
    line-height: 1;
}

.date:hover .date-day {
    visibility: visible;
}

.horsemen-calendar .fc-event.race-day {
    background: #e6d0c3!important;
}

.horsemen-calendar .fc-event.stakes-day {
    background: #6f503e!important;
    color: #fff!important;
}

.page-template-liveracing .horsemen-calendar .fc-content, .single-events .horsemen-calendar .fc-content {
    padding: 0 .2vw .03vw;
    text-align: center;
    border-bottom: 0!important;
}

.page-template-liveracing .horsemen-calendar, .single-events .horsemen-calendar {
    width: 100%;
    margin-bottom: 0;
    border: 0;
}

.month-cal {
    width: 34%;
    margin-right: 1vw;
    height: auto;
    overflow: hidden;
    border: 1px solid #000;
    margin-bottom: 1vw;
    box-sizing: content-box;
}

.hide-month {
    display: none;
}

.page-template-liveracing .fc-other-month, .single-events .fc-other-month {
    opacity: 0!important;
}

.page-template-liveracing div#horsemenCals, .single-events div#horsemenCals {
    width: 61%;
    float: left;
}

.page-template-liveracing .bottom-content h2, .single-events .bottom-content h2 {
    color: #000;
    text-transform: uppercase!important;
    font-size: 1.3vw;
    font-weight: 600;
    margin-bottom: 0;
}
.page-template-liveracing .horsemen-calendar .fc-event, .single-events .horsemen-calendar .fc-event {
    width: 2.29vw;
}

.page-template-liveracing .location-title, .single-events .location-title {
    color: #cb3d2b;
    font-weight: 600;
}

.bottom-sections {
    margin-top: 4vw;
}

.sidebar-section {
    margin-bottom: 1vw;
    padding-bottom: 1vw;
    border-bottom: 1px solid #d7d7d7;
}

.sidebar-section:last-child {
	margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sidebar-links {
    text-align: center;
}

.sidebar-link {
    font-weight: bold;
}

.term {
    display: flex;
    width: 100%;
    align-items: center;
    color: #000;
    margin-bottom: 1.5vw;
}

.term::before {
    content: '';
    width: 3vw;
    height: 2vw;
    float: left;
    margin-right: .4vw;
    border: 1px solid;
}

.intro-section h2 {
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.section.intro-section {
    color: #000;
}

.term.race-day::before {
    background: #e7d1c3;
}

.term.stakes-day::before {
    background: #6e503e;
}

.term.overnights::before {
    background: #efb278;
}

.term.extras::before {
    background: #000;
}

.fc-event.overnights {
    background: #efb277!important;
}

.fc-event.extras {
    color: #fff!important;
    background: #000!important;
}

.fc-event {
    z-index: 9!important;
}

.previous-dates {
    display: flex;
    flex-direction: row-reverse;
}

.month-cal.tax {
    border: 0;
}

/*** Condition Book ***/

.page-template-condition-book .downloads {
    float: left;
    width: 65%;
    margin-top: 0;
}

.page-template-condition-book .downloads h1 {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}

/*** Horsemen 02 ***/

.page-template-horsemen-info .downloads {
    float: left;
    width: 60%;
    margin-top: 0;
}

.page-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
}

.directory-item {
    padding-right: .5vw;
}
.directory-item::after {
    content: 'â€¢';
    float: right;
    padding-left: .5vw;
    color: #cb3d2b;
    font-weight: 600;
}
.directory-item:last-child::after {
    content: '';
}
.directory-items {
    display: flex;
}

.page-section:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.directory-title {
    width: 49%;
}

.directory-listing {
    display: flex;
    margin-bottom: .4vw;
    padding-bottom: .4vw;
    border-bottom: 1px solid #f7f7f7;
}

.directory-title {
    width: 45%;
    font-weight: 600;
}

.page-section h3 {
    color: #cb3d2b;
    text-transform: uppercase;
    margin-bottom: 2vw;
}

/*** Booking ***/
.yith-wcbk-form-section.yith-wcbk-form-section-services {
    display: flex;
    align-items: center;
}
.yith-wcbk-form-section.yith-wcbk-form-section-services label {
    margin: 0;
}

.yith-wcbk-booking-form-message {
    display: none;
}


.variation-From, .variation-To, .variation-Duration {
    display: none!important;
}

dd.variation-From {
    display: block!important;
}

input#yith-wcbk-booking-services-67, label[for="yith-wcbk-booking-services-67"] {
    display: none;
}

input.checked {
    position: relative;
}

.yith-wcbk-form-section.yith-wcbk-form-section-services.checked::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.yith-wcbk-form-section.yith-wcbk-form-section-services.checked {
    position: relative;
}

.single-product .location-date {
    display: none!important;
}

.yith-wcbk-form-section.yith-wcbk-form-section-duration {
    display: none;
}

.choice-wrap {
    display: flex;
    align-items: center;
}

.yith-wcbk-form-section.yith-wcbk-form-section-persons {
    width: 4vw;
    margin-right: 1vw;
}

div#single-product {
    float: left;
    width: 38%;
}

div#product-description {
    float: right;
    width: 60%;
}

.cartLink {
    width: 100%;
    text-align: right;
    font-size: 1.5vw;
    line-height: 1;
    margin-bottom: 2vw;
    display: flex;
    justify-content: space-between;
}

h1.procuct-title {
    margin: 0;
    font-weight: 700;
    color: #cb3d2b;
    text-transform: uppercase;
    font-size: 2vw;
}

span.posted_in {
    display: none;
}

.woocommerce-product-gallery__image--placeholder {
    display: none;
}

div#product-description h2 {
    font-weight: 600;
    text-transform: uppercase;
}

.yith-wcbk-form-section.yith-wcbk-form-section-services input {
    position: relative;
    border-radius: 100%!important;
    -webkit-appearance: none;
    width: 1.1vw;
    height: 1vw;
    border: 1px solid;
}

.yith-wcbk-booking-form-message p.bookable {
    border-color: #cb3d2b!important;
    color: #cb3d2b!important;
}

.yith-wcbk-form-section.yith-wcbk-form-section-services.checked input {
    background: #eee;
}

.yith-wcbk-form-section.yith-wcbk-form-section-services.checked input::after {
    content: '';
    width: .6vw;
    height: .6vw;
    background: #cb3d2b;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    border: 1px solid;
    border-radius: 100%;
    margin: auto;
}

.raceday-picks .section-left {
    float: left;
    width: 31%!important;
}

.raceday-picks .section-right {
    float: right;
    width: 70%!important;
}

.raceday-picks .section-left, .raceday-picks .section-right {
    flex: auto!important;
}

p.p1 {
    margin: 0;
}

table.suites tr {
    border: 0;
}

table.suites {
    margin: 0;
}

td.left {
    width: 17%;
}

.header-buttons .button {
    margin-right: 1vw;
}

.header-buttons {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.post-type-archive-events .header-buttons {
    top: 29%;
}
.header-buttons .button:last {
    margin-right: 0;
}

.header-buttons .button {
    margin-right: 1vw;
    padding: 1vw;
    display: inline-block;
}

/*** Meet Your Planner ***/

.meet-sections .section {
    border-bottom: 1px solid #eee;
    overflow: hidden;
    padding: 2vw 0;
}

.section-left {
    float: left;
    width: 48%;
}

.section-right {
    float: right;
    width: 49%;
}

.section-right h3 {
    text-transform: uppercase;
}

/*** Stable Notes ***/
.press-post.stable-note {
    flex-grow: 1;
    margin: 1vw;
    width: 30.8%;
    width: 100%;
}

div#press-posts.stable-notes {
    flex-wrap: wrap;
}

.nav-link {
    width: 100%;
}

a.prev-post {
    float: right;
}

h1.header {
    font-weight: 600;
    color: rgb(203, 61, 43);
    text-transform: uppercase;
}

.social-section .socialicons a:last-child {
    margin: 0;
}

.button-wrap.stable-wrap {
    margin-bottom: 3vw;
}

.button-wrap.add-wrap {
    margin-top: 3vw;
}

.dining-content.hall-of-fame-content .button {
		margin-top: 1vw;
		display: inline-block;
	    padding: .8vw 1vw;
}

.site-content {
	padding: 5.5vw 0 0;
}

.hf-post {
	/* display: flex; */
	float: left;
	display: flex;
	vertical-align: top;
	/* padding-top: 2vw; */
	/* margin-top: 2vw; */
	/* border-top: 1px solid #bbb; */
	flex-direction: column;
	width: 23.1%;
	margin: 0 2vw 2vw 0;
	background: #fbfbfb;
	border-radius: 5px;
	border: 1px solid #eee;
}

.hf-post:last-child {
	/* padding-bottom: 2vw; */
	/* margin-bottom: 2vw; */
	/* border-bottom: 1px solid #bbb; */
}

.hf-thumb {
	width: 100%;
	/* margin-right: 1vw; */
	display: block;
	float: left;
	clear: both;
}

.hf-name, .hf-year {
	/* margin-right: 2vw; */
	/* white-space: nowrap; */
	/* width: 10vw; */
	text-align: center;
}

.hf-thumb img {
	width: 100%;
	display: block;
}

.hf-bio {
	/* width: 34vw; */
	float: right;
	padding: 0 2vw 2vw;
	text-align: center;
}

.site-content {
	padding: 3.5vw 0;
}

.interior .section-wrap {
	padding: 0 0 4vw;
}

.hf-name {
    font-size: 2vw;
	font-weight: 500;
	color: #000;
	padding: 1vw .5vw 0;
}

.hf-post > div {
	display: block;
	color: #000;
	line-height: 1.5;
}

.hf-post .hf-year, .hf-post .hf-career {
	color: #cb3d2b;
	font-size: 1.3vw;
	font-weight: 500;
	padding: 0 1vw 1vw;
	text-align: center;
}

.hf-post .hf-career {
	padding-bottom: 0;
}

.hf-thumb-single {
    width: 40%;
    margin: 0 auto;
}

div#hf-posts {
    display: flex;
    flex-wrap: wrap;
}

.hf-post:nth-of-type(4n+4) {
    margin-right: 0;
}

.hf-post:first-child {
	/* margin-top: 0; */
}

.hf-bio a.button {
	display: inline-block;
	margin-top: 1vw;
	padding: .8vw 1vw;
}

.hf-nav {
	display: flex;
	justify-content: center;
	text-transform: uppercase;
	margin-bottom: 3vw;
}

.hf-nav-item {
	margin: 0 3vw;
	position: relative;
}

.hf-nav-item::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: #cb3d2b;
	transition: width .3s;
	bottom: 0;
	left: 0;
	right: 0;
}

.hf-nav-item a {
	color: #000;
	font-weight: 600;
}

.hf-nav-item:hover::after {
	width: 100%;
}

.hf-nav-item.active-item::after {
	width: 100%;
}

.hf-button {
	display: inline-block;
	float: left;
}	

.button-wrap.optional-buttons {
    position: absolute;
    margin-top: 1vw;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0;
    right: 0;
    max-width: 85%;
    margin: 0 auto;
}

li.quote {
    padding: 0 3vw;
}

.yith-wcbk-form-section-dates-wrapper {
    width: 86%;
    float: left;
}

.yith-wcbk-form-section-persons-wrapper {
    width: 13%;
    float: right;
    margin-left: .25vw;
}

.yith-wcbk-form-section-services-wrapper {
    overflow: hidden;
    width: 100%;
}

.yith-booking--simple-style #ui-datepicker-div.yith-wcbk-datepicker.ui-widget-content {
    width: 100%!important;
}

.yith-wcbk-form-section {
    position: unset!important;
}

/*--------------------------------------------------------------
13.6 Footer
--------------------------------------------------------------*/

.site-footer {
    background: #f2f2f2;
    color: #fff;
}

.site-footer .wrap {
	padding-bottom: 1vw;
    padding-top: 1vw;
}

/* Footer widgets */

.site-footer .widget-area {
	padding-bottom: 2vw;
	padding-top: 2vw;
}

/* Social nav */

.social-navigation {
	font-size: 16px;
	font-size: 1vw;
	margin-bottom: 1vw;
}

.social-navigation ul {
	list-style: none;
	margin-bottom: 0;
	margin-left: 0;
}

.social-navigation li {
	display: inline;
}

.social-navigation a {
	background-color: #767676;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	color: #fff;
	display: inline-block;
	height: 40px;
	margin: 0 1vw 0.5vw 0;
	text-align: center;
	width: 40px;
}

.social-navigation a:hover,
.social-navigation a:focus {
	background-color: #333;
}

.social-navigation .icon {
	height: 16px;
	top: 12px;
	width: 16px;
	vertical-align: top;
}

.footer-logo {
    width: 16%;
}

.footer-menu ul {
    list-style: none;
    text-align: right;
    margin: 0;
    display: flex;
}

ul#social-menu li {
    margin-left: .6vw;
    width: 1.8vw;
    height: 1.8vw;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-social img {
    opacity: .8;
    transition: opacity .5s;
}

.footer-social img:hover {
    opacity: 1;
}

#top.menu li:nth-last-of-type(1) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

#top.menu li {
    display: inline-block;
    margin-right: .3vw;
    text-align: right;
    border-right: 1px solid;
    padding-right: .3vw;
    line-height: 1;
}

ul#top.menu li a {
    font-size: .8vw;
    text-transform: uppercase;
}

form#subscribe-form {
    display: flex;
    justify-content: center;
}
button.submit {
    border-left: none;
    background: #f4b232;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    padding: .6vw 1vw;
    height: 100%;
    margin-left: .4vw;
    text-transform: none;
    font-size: .8vw;
}

input.input-email {
    border: 0;
    line-height: 1;
    font-size: .8vw;
    padding: .5vw .8vw;
    border-radius: 3px;
    width: auto;
    background-color: #fff!important;
    width: 11vw;
}


.mc-field-group {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

div#mce-error-response {
    margin: 1vw auto;
    font-size: 1vw;
    max-width: 70%;
}
div#mce-error-response a {
    color: #fff;
}
input:focus, a:focus {
    outline: none;
}

form#subForm {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

#subForm input {
    border: 0;
    line-height: 1;
    font-size: .8vw;
    padding: .5vw .8vw;
    border-radius: 3px;
    width: auto;
    background-color: #fff!important;
    width: 11vw;
}

#subForm button {
    border-left: none;
    background: #f4b232;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    padding: .6vw 1vw;
    height: 100%;
    margin-left: .4vw;
    text-transform: none;
    font-size: .8vw;
}


/* Site info */

.site-info {
    font-size: 14px;
    font-size: 1vw;
    margin-bottom: 0;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    background: #cb3e2b;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.site-info a {
	color: #fff;
}

.site-info .sep {
	margin: 0;
	display: block;
	visibility: hidden;
	height: 0;
	width: 100%;
}

.info-left {
    float: right;
    font-size: .8vw;
}

.info-right {
    float: right;
}

.info-right p {
    font-size: .8vw;
}

.info-right p {
    display: inline;
}

.site-info p {
	margin: 0;
}

footer ul.sub-menu {
    display: none;
}

.footer-menu-main {
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
            justify-content: flex-end;
    background: #f2f2f2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-menu-main .wrap {
    border-top: 1px solid #d4d4d4;
    padding: 2vw 0 3vw;
}

ul#logos-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-around;
        -ms-flex-pack: space-around;
            justify-content: space-around;
    max-width: 50%;
    margin: 4vw auto 2vw;
}

ul#logos-menu li img {
    max-height: 4vw;
}

.footer-menu-main li a {
    color: #777777;
    text-transform: uppercase;
    font-size: .9vw;
}

ul#footer-menu {
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul#footer-menu li {
    position: relative;
}

#footer-menu li::after {
    content: '|';
    position: absolute;
    color: #7f777b;
    right: -1vw;
}

ul#footer-menu li:last-child::after {
    content: '';
}

span.fc-title {
    display: block;
}

/*--------------------------------------------------------------
14.0 Comments
--------------------------------------------------------------*/

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


/*--------------------------------------------------------------
16.0 Media
--------------------------------------------------------------*/

img,
video {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	display: block;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
	margin-bottom: 1.5vw;
	max-width: 100%;
}

.wp-caption,
.gallery-caption {
	color: #666;
	font-size: 13px;
	font-size: 0.8125vw;
	font-style: italic;
	margin-bottom: 1.5vw;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075vw 0;
}

/* Media Elements */

.mejs-container {
	margin-bottom: 1.5vw;
}

/* Audio Player */

.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls a.mejs-horizontal-volume-slider:focus,
.mejs-controls a.mejs-horizontal-volume-slider:hover {
	background: transparent;
	border: 0;
}

/* Playlist Color Overrides: Light */

.site-content .wp-playlist-light {
	border-color: #eee;
	color: #222;
}

.site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-album {
	color: #333;
}

.site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-artist {
	color: #767676;
}

.site-content .wp-playlist-light .wp-playlist-item {
	border-bottom: 1px dotted #eee;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.site-content .wp-playlist-light .wp-playlist-item:hover,
.site-content .wp-playlist-light .wp-playlist-item:focus {
	border-bottom-color: rgba(0, 0, 0, 0);
	background-color: #767676;
	color: #fff;
}

.site-content .wp-playlist-light a.wp-playlist-caption:hover,
.site-content .wp-playlist-light .wp-playlist-item:hover a,
.site-content .wp-playlist-light .wp-playlist-item:focus a {
	color: #fff;
}

/* Playlist Color Overrides: Dark */

.site-content .wp-playlist-dark {
	background: #222;
	border-color: #333;
}

.site-content .wp-playlist-dark .mejs-container .mejs-controls {
	background-color: #333;
}

.site-content .wp-playlist-dark .wp-playlist-caption {
	color: #fff;
}

.site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-album {
	color: #eee;
}

.site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-artist {
	color: #aaa;
}

.site-content .wp-playlist-dark .wp-playlist-playing {
	background-color: #333;
}

.site-content .wp-playlist-dark .wp-playlist-item {
	border-bottom: 1px dotted #555;
	-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
}

.site-content .wp-playlist-dark .wp-playlist-item:hover,
.site-content .wp-playlist-dark .wp-playlist-item:focus {
	border-bottom-color: rgba(0, 0, 0, 0);
	background-color: #aaa;
	color: #222;
}

.site-content .wp-playlist-dark a.wp-playlist-caption:hover,
.site-content .wp-playlist-dark .wp-playlist-item:hover a,
.site-content .wp-playlist-dark .wp-playlist-item:focus a {
	color: #222;
}

/* Playlist Style Overrides */

.site-content .wp-playlist {
	padding: 0.625vw 0.625vw 0.3125vw;
}

.site-content .wp-playlist-current-item .wp-playlist-item-title {
	font-weight: 700;
}

.site-content .wp-playlist-current-item .wp-playlist-item-album {
	font-style: normal;
}

.site-content .wp-playlist-current-item .wp-playlist-item-artist {
	font-size: 10px;
	font-size: 0.625vw;
	font-weight: 800;
	letter-spacing: 0.1818vw;
	text-transform: uppercase;
}

.site-content .wp-playlist-item {
	padding: 0 0.3125vw;
	cursor: pointer;
}

.site-content .wp-playlist-item:last-of-type {
	border-bottom: none;
}

.site-content .wp-playlist-item a {
	padding: 0.3125vw 0;
	border-bottom: none;
}

.site-content .wp-playlist-item a,
.site-content .wp-playlist-item a:focus,
.site-content .wp-playlist-item a:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
}

.site-content .wp-playlist-item-length {
	top: 5px;
}

/* SVG Icons base styles */

.icon {
	display: inline-block;
	fill: currentColor;
	height: 1vw;
	position: relative; /* Align more nicely with capital letters */
	top: -0.0625vw;
	vertical-align: middle;
	width: 1vw;
}

/*--------------------------------------------------------------
16.1 Galleries
--------------------------------------------------------------*/

.gallery-item {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin: 0 0 1.5vw;
	padding: 0 1vw 0 0;
	width: 50%;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: none;
	display: inline-block;
	max-width: 100%;
}

.gallery-item a img {
	display: block;
	-webkit-transition: -webkit-filter 0.2s ease-in;
	transition: -webkit-filter 0.2s ease-in;
	transition: filter 0.2s ease-in;
	transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gallery-item a:hover img,
.gallery-item a:focus img {
	-webkit-filter: opacity(60%);
	filter: opacity(60%);
}

.gallery-caption {
	display: block;
	text-align: left;
	padding: 0 10px 0 0;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
17.0 Customizer
--------------------------------------------------------------*/

.highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel:after {
	border: 2px dashed #0085ba; /* Matches visible edit shortcuts. */
	bottom: 1vw;
	content: "";
	display: block;
	left: 1vw;
	position: absolute;
	right: 1vw;
	top: 1vw;
	z-index: 1;
}

.highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel .panel-content {
	z-index: 2; /* Prevent :after from preventing interactions within the section */
}

/* Show borders on the custom page panels only when the front page sections are being edited */
.highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel:nth-of-type(1):after {
	border: none;
}

.twentyseventeen-front-page.twentyseventeen-customizer #primary article.panel-placeholder {
	border: 0;
}

/* Add some space around the visual edit shortcut buttons. */
.twentyseventeen-panel .customize-partial-edit-shortcut button {
	top: 30px;
	left: 30px;
}

/* Ensure that placeholder icons are visible. */
.twentyseventeen-panel .customize-partial-edit-shortcut-hidden:before {
	visibility: visible;
}

/*--------------------------------------------------------------
18.0 SVGs Fallbacks
--------------------------------------------------------------*/

.svg-fallback {
	display: none;
}

.no-svg .svg-fallback {
	display: inline-block;
}

.no-svg .dropdown-toggle {
	padding: 0.5vw 0 0;
	right: 0;
	text-align: center;
	width: 2vw;
}

.no-svg .dropdown-toggle .svg-fallback.icon-angle-down {
	font-size: 20px;
	font-size: 1.25vw;
	font-weight: 400;
	line-height: 1;
	-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
	-ms-transform: rotate(180deg); /* IE 9 */
	transform: rotate(180deg);
}

.no-svg .dropdown-toggle.toggled-on .svg-fallback.icon-angle-down {
	-webkit-transform: rotate(0); /* Chrome, Safari, Opera */
	-ms-transform: rotate(0); /* IE 9 */
	transform: rotate(0);
}

.no-svg .dropdown-toggle .svg-fallback.icon-angle-down:before {
	content: "\005E";
}

/* Social Menu fallbacks */

.no-svg .social-navigation a {
	background: transparent;
	color: #222;
	height: auto;
	width: auto;
}

/* Show screen reader text in some cases */

.no-svg .next.page-numbers .screen-reader-text,
.no-svg .prev.page-numbers .screen-reader-text,
.no-svg .social-navigation li a .screen-reader-text,
.no-svg .search-submit .screen-reader-text {
	clip: auto;
	font-size: 16px;
	font-size: 1vw;
	font-weight: 400;
	height: auto;
	position: relative !important; /* overrides previous !important styles */
	width: auto;
}

/*--------------------------------------------------------------
19.0 Media Queries
--------------------------------------------------------------*/

/*** Tablet Lanscape & >  ***/
@media only screen
    and (min-device-width : 320px)
    and (max-device-width : 1024px)
    and (orientation : landscape),
	only screen
    and (min-device-width : 320px)
    and (max-device-width : 1024px)
    and (orientation : portrait) {

	.menu-open .site-header {
		z-index: auto;
	}

	.menu-upper-menu-container {
		width: 94%;
	}

	.horsemen-calendar .fc-event, .horsemen-calendar .fc-event-dot {
		width: 2.7vw;
	}

    .menu-main-menu-container {
		transform: translateX(100%);
		transition: transform .5s;
		background: #252525;
		width: 59vw;
		top: 0;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.main-navigation li::after {
    	display: none;
	}

	.main-navigation ul ul.toggled-on {
		display: block;
	}

	/* wrapper widths */
	.wrap {
		width: 93%;
	}

	.site-title, .site-title a {
		font-size: 4vw;
	}

	.site-description {
		color: #666;
		font-size: 13px;
		font-size: 2.5vw;
		margin-bottom: 0;
	}

	header .menu-primary-container {
		position: absolute;
		background: rgba(255, 255, 255, 0.9);
		left: 0;
		right: 0;
		transform: translateX(100%);
		top: 9vw;
		transition: transform .8s;
		display: block;
		height: auto;
		z-index: 9;
	}

	div#slider {
		margin-top: 10.6vw;
	}

	header .toggled-on .menu-primary-container {
		transform: translateX(0);
	}

	header .main-navigation li a::before {
		display: none;
	}
	.menu-toggle {
		display: block;
		cursor: pointer;
		background: none;
		right: 3.5vw;
		width: 2.8vw;
    	height: 1.6vw;
		position: absolute;
		z-index: 999;
		top: 3vw;
	}

	button.menu-toggle span {
		height: 3px;
	}

	.navigation-top {
		font-size: 16px;
		font-size: 1vw;
		position: relative;
		width: 100%;
		float: right;
	}

	button.menu-toggle span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: #000;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .6s ease-in-out;
		-moz-transition: .6s ease-in-out;
		-o-transition: .6s ease-in-out;
		transition: .6s ease-in-out;
	}
	button.menu-toggle span:nth-child(1) {
		top: 0;
	}
	.toggled-on button.menu-toggle span:nth-child(1) {
		top: 43%;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	button.menu-toggle span:nth-child(2) {
		top: 0;
		bottom: 0;
		margin: auto;
	}

	button.menu-toggle span:nth-child(3) {
		bottom: 0;
	}

	.toggled-on button.menu-toggle span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.toggled-on button.menu-toggle span:nth-child(3) {
		animation: move 1s forwards;
	}

	@keyframes move {
	  0% {
		bottom: 0;
	  }

	  /* Finish changes by here */
	  80% {
		bottom: -44%;
	  }

	  /* Between 20% and 100%, nothing changes */
	  100% {
		bottom: -44%;
		opacity: 0;
		transition: opacity .3s;
	  }
	}
	header .menu-primary-navigation-container {
		max-height: 0;
		transition: max-height .8s;
		height: auto;
	}
	header .toggled-on .menu-primary-navigation-container {
		max-height: 100vh;
		transition: max-height 2s;
	}
	.site-branding {
		padding-top: 1vw;
		position: absolute;
		top: 0;
		background: #fff;
	}
	.main-navigation ul li .sub-menu, .main-navigation li:hover .sub-menu {
		position: relative;
		text-align: right;
		width: auto;
		top: 0;
		right: 3vw;
		max-height: 0;
		transition: max-height 2s;
		overflow: hidden;
	}

	.main-navigation li:hover .sub-menu.toggled-on, .main-navigation li .sub-menu.toggled-on {
		max-height: 100vh;
		transition: max-height 4s;
	}
	#page {
		overflow: hidden;
	}
	.site-branding-logo {
		width: 12vw;
	}
	.header-right {
		width: 100%;
	}

	.site-header {
		background-color: #1e1e1e;
		position: relative;
		z-index: auto;
	}
	nav#site-navigation {
		top: 1vw;
		position: relative;
		display: block;
		width: 50%;
		 z-index: 9999;
	}
	body {
		font-size: 1.3vw;
		transform:	 none;
		transition: transform .6s;
	}

	header .main-navigation li {
		position: relative;
		display: block;
		margin-left: 0;
	}
	.main-navigation li li, .main-navigation li:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
	.main-navigation a {
		display: block;
		padding: 1.5vw 4vw;
		text-decoration: none;
		font-size: 1.4vw;
		font-weight: 300;
		text-transform: uppercase;
	}

	ul#top-menu {
    padding: 0;
    display: block;
	}

	.main-navigation li.menu-button {
		padding: 0;
	}

	button.dropdown-toggle {
		display: block;
		transform: rotate(0deg);
		transition: transform .4s;
	}

	button.dropdown-toggle.toggled-on {
		transform: rotate(180deg);
	}

	ul#top.menu li a {
		font-size: 1.3vw;
		text-transform: uppercase;
	}

	.site-info a, .site-info p {
		color: #fff;
		font-size: 1.4vw;
	}

	.site-branding {
		width: 100%;
		margin: 0 auto;
		padding: 2vw 2vw;
		left: 0;
		right: 0;
	}

	#masthead .wrap {
    	width: 100%;
    	max-width: 100%;
    }

    #masthead .upper-nav .wrap {
		max-width: 93%;
	}

	#upper-menu li a {
		font-size: 1.1vw;
	}

	/* top page margin fix */
	body:not(.has-slider):not(.post-type-archive-events) .site-branding {
		border-bottom: 1px solid #eee;
	}
	body:not(.has-slider):not(.post-type-archive-events) .site-content {
		margin-top: 10.6vw;
	}
	.page-template-groupscatering .site-content {
		padding: 7vw 0 0;
	}

	.upper-nav .search-field {
		font-size: 1.1vw;
	}

	.raceinfo {
		margin-right: 1.1vw;
		font-size: 1.1vw;
    }
    .race-info {
    	max-width: 105%;
    }

    .upper-nav.searchopen .race-info {
		width: 110%;
	}

	.play-video, .pause-video {
		font-size: 7vw;
	}

	.widget-row {
		margin: 6vw auto;
	}

	.wid-logo {
		max-width: 16vw;
	}

	.footer-menu-main .wrap {
		padding: 3vw 0;
	}
	#subForm button {
		padding: .75vw 1.3vw;
		font-size: 1.1vw;
	}
	#subForm input {
		padding: 0.75vw 1.1vw;
		width: 14vw;
		font-size: 1.1vw;
	}
	ul#social-menu li {
    	margin-left: .8vw;
    	width: 2.2vw;
    	height: 2.2vw;
	}

	.slide-content {
		width: 60%;
	}

/* 	.fa:not(.fa-play-circle) {
		font-size: 1.3vw !important;
	} */

	h1, h2, h3, h4, h5, h6 {
		padding: 1.8vw 0 0;
	}


	/* font sizes */
	.social-section .socialicons a {
		font-size: 4.7vw;
	}
	.interior .slide-title {
		font-size: 3.8vw;
	}
	.accommoations-page .section.intro-section h1, .partners-page .section.intro-section h1,
	.middle-press h2, .downloads h2, .social-section h2,
	.contact-content .intro-section h1 {
		font-size: 2.4vw;
	}
	.widget-row.second-row .widget:nth-of-type(2) .wid-title,
	.fc-center h2,
	h1,
	.dining-content h2 {
		font-size: 2vw;
	}

	div#eventlist h2,
	#directory h2,
	.sidebar h2,
	.press-content h2,
	.content-download h2
	{
		font-size: 1.7vw;
	}
	h2,
	.carCon,
	.ticketCon,
	.second-row .wid-title,
	.third-row .wid-con,
	.horsemenGroup h2,
	a.button,
	.accommodation-right h2,
	.top-content h2,
	.bottom-content h2
	{
		font-size: 1.55vw;
	}
	.widget-row.second-row .widget:nth-of-type(2) .toptitle {
		font-size: 1.4vw;
	}
	h4,
	.conSub,
	button, input[type="button"], input[type="submit"],
	.ticketCon a.button,
	.hover-content,
	.first-row .widget a.button,
	.widget-row.second-row .widget-content,
	.widget a.button,
	.footer-menu-main li a,
	body .fc label,
	.location-title a,
	.location-date,
	#eventlist a.button,
	.single-groups-catering a.button,
	a.button.reservations,
	input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea,
	.gform_footer.top_label input
	{
		font-size: 1.3vw;
	}
	li.ticket .location-date,
	.sortwrap select,
	#directory a.button,
	a.button.menu
	{
		font-size: 1.1vw;
	}
	.horsemen-calendar .fc-center h2 {
		font-size: .9vw;
	}
	span.fc-day-number,
	.fc-day-header span {
		font-size: .8vw;
	}

	/* line heights */
	button:not(.search-submit),
	input[type="button"], input[type="submit"]:not(.search-submit),
	.carCon
	{
		line-height: 1.3;
	}

	/* buttons padding */
	button,
	body .bullet-list-button, body .bullet-list-button:hover,
	.slide-content a.button
	{
		padding: 1.3vw;
	}
	.ticketCon a.button {
		padding: 1.1vw;
	}
	a.button {
		padding: .6vw 1.3vw;
	}

	/* wrapper widths */
	.widget-row
	{
		max-width: 93%;
	}
	.interior .section-wrap {
		max-width: 75%;
	}

	.page .panel-content .entry-title,
	.page-title, body.page:not(.twentyseventeen-front-page) .entry-title {
		font-size: 2.5vw;
	}

	/* home page */
	div#home-carousel.no-slides .slides li {
		width: 22.3vw !important;
		height: 18.205vw!important;
	}
	.first-row .widget {
		width: 47%;
		height: 18vw;
	}
	.first-row .widget a.button {
		padding: .8vw 1.3vw;
	}
	.first-row .hover-content {
		padding: 2vw 3.2vw;
	}
	.widget-row.second-row .widget:first-child .widget-content {
		padding: 1vw 6vw;
		width: 100%;
	}
	.widget-row.second-row .widget-content {
		padding: 1vw 0 1vw 6vw;
	}
	.widget-row.second-row .widget-content {
		width: 83%;
	}
	.widget a.button {
		padding: 1.1vw 1.3vw;
	}
	.third-row .wid-con {
		max-width: 47%;
	}
	.third-row .widget-content {
		padding: 4.5vw;
	}
	ul#logos-menu {
		max-width: 65%;
	}
	ul#logos-menu li img {
		max-height: 6vw;
	}

	/* events calendar */
	span.fc-day-number {
		width: 1.3vw;
		height: 1.3vw;
	}
	#eventcats li {
		padding: .8vw;
	}
	.fc-event, .fc-event-dot {
		font-size: .8vw !important;
	}
	#eventlist a.button {
		padding: 1.1vw 2.3vw;
	}
	.sortwrap select {
		padding: 0 6.4vw 0 1.1vw;
	}
	.sortwrap i.fa.fa-sort-desc {
		padding: 0 1.3vw 0.9vw;
	}

	/* horsemen */
	.horsemen-calendar {
		width: 40%;
	}
	.horsemen-calendar span.fc-day-number {
		font-size: 1.1vw !important;
	}
	#directory a.button {
		padding: .6vw 1.3vw .7vw;
	}

	/* groups catering */
	.dining-content a.button {
		padding: .6vw 1.4vw 1vw;
	}
	.groups-contact {
		margin: 4.5vw 0;
	}
	.group-link::before {
		font-size: 4.5vw;
		top: 1.5vw;
	}
	.single-groups-catering .dining-left h2 {
		font-size: 1.5vw;
	}
	.single-groups-catering .dining-promotions {
		padding: 1.3vw 1.3vw .6vw;
	}
	.single-groups-catering a.button {
		padding: 1.5vw 3.3vw;
	}
	.bottom-promotions img {
		width: 57%;
	}

	/* casino */
	#promotion-slider .flex-direction-nav a::before {
		width: 2.3vw;
		height: 2.3vw;
		line-height: 1.8;
		font-size: 1.3vw;
	}
	.sidebarwrap {
		padding: 1.3vw;
	}

	/* accommodation */
	.accommodation {
		padding: 2.4vw 15vw;
	}
	.accommodation-bottom ul li:before {
		font-size: .7vw;
		top: .5vw;
		left: -1.2vw;
	}

	/* how to videos */
	.sidebar .play-video, .sidebar .pause-video {
		font-size: 4.2vw;
	}

	/* careers */
	.page-template-careers h1.entry-title {
		font-size: 2vw !important;
	}

	#footer-menu li::after {
		display: none;
	}

	.site-info {
		position: relative;
	}

	.site-footer {
		background: #f2f2f2;
		color: #fff;
		margin-bottom: 0!important;
	}


}

/*** Tablet Portrait & > ****/
@media only screen
    and (min-device-width : 320px)
    and (max-device-width : 768px)
    and (orientation : landscape),
	only screen
    and (min-device-width : 320px)
    and (max-device-width : 1024px)
    and (orientation : portrait) {

    .main-navigation a {
		padding: 1.5vw 4vw;
		font-size: 2.2vw;
	}

	header .menu-primary-container {
    top: 11vw;
    }

	.horsemen-calendar .fc-event, .horsemen-calendar .fc-event-dot {
		width: 3.4vw;
	}

	.dropdown-toggle {
    	top: 1.5vw;
    }

    .site-branding-logo {
		width: 16vw;
	}

	#footer-menu li::after {
		right: -2.4vw;
		top: 0.8vw;
		font-size: 1.8vw;
	}

	input.input-email {
		font-size: 1.2vw;
		width: 14vw;
	}

	button.submit {
		font-size: 1.2vw;
	}

	.slide-content {
		font-size: 2.5vw;
	}

	.learn {
		font-size: 1.2vw;
	}

	.widget-text {
		font-size: 1.2vw;
	}

	.site-info a {
	   font-size: 1.3vw;
	}

	.right-bottom {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		font-size: 1.4vw;
	}

	.social-menu a {
		margin-left: .8vw;
		width: 3.3vw;
	}

	.info-left {
		float: left;
		width: auto;
	}

	.wrap {
		width: 90%;
    }

    .loadtitle {
		top: 73%;
	}

	.loadtitle.has-header.load {
		top: 73%;
	}
	body, button, input, select, textarea {
		font-size: 1.5vw;
    }
    h2 {
		font-size: 1.7vw;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: 0 0 1vw;
	}
	.page .panel-content .entry-title, .page-title, body.page:not(.twentyseventeen-front-page) .entry-title {
		font-size: 2.5vw;
    }

    #upper-menu li a {
		font-size: 1.5vw;
	}

	.raceinfo {
		font-size: 1.5vw;
	}

	.upper-nav .search-field {
		font-size: 1.5vw;
	}

	.race-info {
		width: 200vw;
	}

	.upper-nav.searchopen .race-info {
		width: 221%;
	}

	#footer-menu li::after {
		right: -1.5vw;
    	top: -.2vw;
    	font-size: 1.6vw;
	}

	/* font sizes */
	.social-section .socialicons a {
		font-size: 5vw;
	}
	.interior .slide-title {
		font-size: 4.4vw;
	}
	.accommoations-page .section.intro-section h1, .partners-page .section.intro-section h1,
	.second-row .wid-title,
	.widget-row.second-row .widget:nth-of-type(2) .wid-title {
		font-size: 2.8vw;
	}
	.fc-center h2,
	h1,
	.dining-content h2,
	.carCon,
	.ticketCon,
	.first-row .widget-content,
	.first-row .widget a.button,
	.widget-row.second-row .widget-content,
	.top-content h2,
	.bottom-content h2
	{
		font-size: 2.2vw;
	}

	div#eventlist h2,
	#directory h2,
	.sidebar h2,
	.widget a.button,
	.widget-row.second-row .widget:nth-of-type(2) .toptitle,
	.press-content h2,
	.content-download h2
	{
		font-size: 2vw;
	}
	h2,
	.third-row .wid-con,
	.horsemenGroup h2,
	a.button,
	.accommodation-right h2,
	.conSub,
	.ticketCon a.button,
	.hover-content	{
		font-size: 1.9vw;
	}
	li.ticket .location-date {
		font-size: 1.6vw;
	}


	.sortwrap select,
	#directory a.button,
	.footer-menu-main li a,
	a.button.menu
	{
		font-size: 1.3vw;
	}
	.horsemen-calendar .fc-center h2 {
		font-size: 1.1vw;
	}
	span.fc-day-number,
	.fc-day-header span {
		font-size: 1vw;
	}

	/* line heights */
	button:not(.search-submit),
	input[type="button"], input[type="submit"]:not(.search-submit),
	.carCon
	{
		line-height: 1.5;
	}

	/* buttons padding */
	button,
	body .bullet-list-button, body .bullet-list-button:hover,
	.slide-content a.button
	{
		padding: 1.5vw;
	}
	.ticketCon a.button {
		padding: 1.3vw;
	}
	a.button {
		padding: .8vw 1.5vw;
	}

	/* wrapper widths */
	.widget-row
	{
		max-width: 93%;
	}
	.interior .section-wrap {
		max-width: 75%;
	}

	.page .panel-content .entry-title,
	.page-title, body.page:not(.twentyseventeen-front-page) .entry-title {
		font-size: 2.8vw;
	}

	/* vertical flex */
	.first-row .widget,
	.second-row.widget-row {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;

	}

	/* home page */
	div#home-carousel.no-slides ul.slides {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	div#home-carousel.no-slides .slides li {
		width: 44vw !important;
		height: 35vw !important;
		margin-bottom: 2vw;
	}
	.widget-row {
		max-width: 90%;
	}
	.carCon {
		max-width: 70%;
	}
	.first-row .widget {
		width: 44vw;
		height: 55vw;
	}
	.first-row .widget > div {
		width: 100%;
	}
	.first-row .widget-content {
		padding: 3vw;
	}
	.first-row .widget a.button,
	.second-row .widget a.button {
		display: block;
		width: 16vw;
    	text-align: center;
	}
	.first-row .widget a.button {
		padding: 1.5vw 2vw;
	}
	.second-row .widget {
		width: 100%;
		height: 41.5vw;
	}
	.widget a.button {
		padding: 1.7vw 2vw;
	}
	.second-row .widget a.button {
		width: 26vw;
	}
	.wid-logo {
		max-width: 20vw;
	}

	/* calendar */


	.fc-title {
		font-size: 1.2vw;
	}


	.upper-nav {
		background: #fff;
		margin-top: 2vw;
	}

	.upper-nav .wrap {
		max-width: 100%;
		align-items: flex-end;
	}

	.upper-wrap {
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: flex-end;
	}

	.race-info {
		width: auto;
		order: 1;
		flex-direction: column;
		text-align: right;
		margin: 0 2vw 3vw;
		align-items: flex-end;
		width: auto;
	}

	.menu-upper-menu-container {
		order: 2;
		width: auto;
	}

	ul#upper-menu {
		flex-direction: column;
		align-items: flex-end;
		width: 100%;
	}

	#upper-menu li {
		display: flex;
		padding: 0 .3vw;
		width: 100%;
		align-items: center;
		justify-content: center;
		background: #f4b132;
		margin-bottom: 2.5vw;
	}

	#upper-menu li a {
		padding: 2.5vw 5vw;
		font-size: 2vw;
		align-items: center;
	}

	.searchform {
		order: 2;
		width: 100%;
	}

	form.search-form {
		display: flex;
		justify-content: flex-end;
		margin: 2vw 0 3vw;
	}

	.input-wrapper {
		max-width: none;
		margin: 0;
		width: 100%;
	}

	button.search-submit.no-submit {
		font-size: 3.3vw;
		padding: 1vw 3vw;
		border: 1px solid #eee;
		border-left: 0;
		border-right: 0;
	}

	.raceinfo {
		font-size: 1.5vw;
		color: #000;
	}

	.raceinfo::after {
		display: none;
	}


	#masthead .upper-nav .wrap {
		max-width: 100%;
		align-items: flex-end;
		flex-direction: column;
	}

	.upper-nav .search-field {
		font-size: 2.2vw;
		padding: 2.5vw;
		max-width: none;
		width: 100%;
	}

	ul#footer-menu {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	ul#footer-menu li {
		text-align: right;
		width: 30%;
	}

	#footer-menu li::after {
		display: none;
	}

	.month-cal {
		width: 46%;
    }

    .site-footer {
		background: #f2f2f2;
		color: #fff;
		margin-bottom: 0!Important;
	}

	.site-info {
		position: relative;
	}


}

/*** Large Phone Format & > ****/
@media only screen
    and (min-device-width : 320px)
    and (max-device-width : 767px)
    and (orientation : portrait) {

	.contact-left {
		width: 100%;
	}
	.page-template-events .event-wrap .listinfo{
			float: left;
			width: 51%;
			margin-left: 2vw;
		}

	nav#site-navigation {
		top: 1vw;
		position: relative;
		display: block;
		width: 100%;
		z-index: 9999;
	}
	
	.modal-wrap {
		top: 50%;
		bottom: auto;
		position: fixed!important;
	}
	
	.close-modal {
    	font-size: 5vw;
    }
    
    .sidebar-section a.button {
		margin-top: 3vw!important;
		padding: 2.6vw 3vw!important;
		font-size: 5vw!important;
		margin-bottom: 3vw;
	}


    .boxxed {
		float: left;
		width: 100%;
	}

	.page-template-events .event-wrap {
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.page-template-events .event-wrap .topchoices {
		/* position: absolute;
		top: 0;
		right: 5%; */
		-webkit-order: 1;
		order: 1;
	}

	/* horsemen */
	div#horsemenCals {
		width: 62%;
	}
	.horsemenCalWrap {
		-webkit-justify-content:  space-between;
		justify-content: space-between;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.horsemen-calendar {
		width: 47.3%;
	}
	#directory a.button {
		padding: .8vw 1.5vw .9vw;
	}

	/* groups catering */
	.dining-post {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.dining-post > div {
		width: 100%;
	}
	.dining-post:nth-of-type(odd) .dining-content,
	.dining-post:nth-of-type(even) .dining-content {
		-webkit-order: 2;
		order: 2;
	}

	/* dining */
	.gallery img {
		width: 100%;
		margin-right: 0;
	}

	/* accommodation */
	.accommodation-top {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.accommodation-left,
	.accommodation-right {
		width: 50%;
		margin: 0;
		text-align: center;
	}
	.accommodation-left {
		margin-bottom: 2vw;
	}
	.accommodation-bottom ul {
		column-count: 1;
		max-width: 66%;
    	margin: 0 auto;
	}
	.page-template-events .event-wrap .calwrap,
	.page-template-events .event-wrap div#eventlist {
		float: none;
		width: auto;
	}
	.page-template-events .event-wrap #eventlist a.button {
		float: none;
		left: 0;
	}

	.page .panel-content .entry-title, .page-title, body.page:not(.twentyseventeen-front-page) .entry-title {
		font-size: 4vw;
	}

	h2 {
		font-size: 3vw;
	}

	body, button, input, select, textarea {
		font-size: 3.3vw;
	}

	.term::before {
		content: '';
		width: 6vw;
		height: 5vw;
		float: left;
		margin-right: 1.4vw;
		border: 1px solid;
	}

	.term {
		display: flex;
		width: 100%;
		align-items: center;
		color: #000;
		margin-bottom: 3.5vw;
	}

	.month-cal {
		width: 34%;
		margin-right: 0;
		height: auto;
		overflow: hidden;
		border: 1px solid #000;
		margin-bottom: 4vw;
		box-sizing: content-box;
	}

	.live-racing-header {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: 17.2vw;
	}

	div#slider {
		margin-top: 16.6vw;
	}

	.slide-image img {
		height: 44vw!important;
		width: auto;
		display: block;
		max-width: none;
		margin: 0 auto;
	}

	div#eventlist {
		margin-bottom: 5vw;
		width: 100%;
	}

	.sub3 {
		margin-top: 1vw;
		color: #cb3f2c;
		text-transform: uppercase;
		font-weight: 400;
		font-size: 3.3vw;
	}

	.shareday {
		text-transform: uppercase;
		font-size: 3.5vw;
		line-height: 1.2;
	}

	.sharecontent {
		flex-direction: column;
		padding: 3vw;
	}

	.shareevent {
		height: 31vw;
    }

    .sharemonth {
    font-size: 3.5vw;
    }

	.listinfo {
		float: right;
		width: 100%;
		clear: right;
	}

	.sub2 {
		font-size: 4.7vw;
	}

	.sub1 {
		text-transform: uppercase;
		font-size: 5vw;
		font-weight: 300;
	}
	.listthumb {
		float: left;
		width: 100%;
		overflow: hidden;
		margin-bottom: 3vw;
	}

	.page-template-events .event-wrap .listinfo {
		float: left;
		width: 100%;
		margin-left: 0;
	}

	.sort {
		font-size: 4.2vw;
		right: 1.5vw;
		position: absolute;
		top: -1.2vw;
		bottom: 0;
		display: flex;
		align-items: center;
		line-height: 0;
	}

	form#eventcats {
		display: flex;
		align-items: unset;
		justify-content: space-around;
		flex-direction: column;
	}

	div#single-event {
		width: 100%;
		float: left;
		margin-bottom: 5vw;
	}

	.live-racing-header h1 {
		color: #fff;
		font-size: 5.5vw;
		margin-bottom: 0;
		line-height: 1;
	}

	.header-date {
		font-size: 6vw;
    }

    .next a, .prev a {
		color: #fff;
		font-size: 6vw;
	}

	.date-select {
		font-size: 3vw;
		}

	.number {
		display: flex;
		font-size: 5vw;
	}

	.number-title {
		font-size: 3vw;
		font-weight: 500;
	}

	.races-number.divide {
		border-right: 2px dashed #fff;
		height: 7.5vw;
		transform: skewX(-20deg);
		margin: .6vw 2vw 0 0;
	}

	.timeday {
		font-size: 2vw;
	}

	.date-number {
		text-align: center;
		border-radius: 100%;
		padding: 0.4vw .9vw;
		width: 5.5vw;
		height: 5.5vw;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: .5vw;
	}

	.date-number a {
		color: #fff;
		font-size: 3vw;
	}

	h3 {
		font-size: 2.1vw;
	}

	.main-navigation a {
		padding: 2.5vw 4vw;
		font-size: 3.4vw;
	}

	.site-branding-logo img {
    	width: 23vw;
    }

    .slide-content {
		font-size: 2.1vw;
		width: 100%;
	}
	input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
		font-size: 4vw;
	}

	.wrap {
		width: 95%;
	}

	/* top page margin fix */
	body:not(.has-slider):not(.post-type-archive-events) .site-content {
		margin-top: 0;
	}


	/* font sizes */
	.slide-title {
		font-size: 6vw;
	}
	.ticketCon,
	.second-row .wid-title,
	.first-row .widget-content,
	.widget-row.second-row .widget:nth-of-type(2) .wid-title,
	.contact-content .intro-section h1,
	.partners-page .section.intro-section h1,
	.featured-press h1,
	.middle-press h2,
	#directory h2,
	.sidebar h2
	{
		font-size: 5vw;
	}
	body.page:not(.twentyseventeen-front-page) .main-content-left h1.entry-title,
	.carCon,
	.conSub,
	.ticketCon a.button,
	.hover-content,
	.first-row .widget a.button,
	.widget a.button,
	.widget-row.second-row .widget:nth-of-type(2) .toptitle,
	.third-row .wid-con,
	.gform_footer.top_label input,
	.bottom-content h2,
	.top-content h2,
	.concession-content h2,
	a.button,
	.press-content h2,
	.downloads h2,
	.social-section h2,
	div#eventlist h2,
	.fc-center h2,
	h1,
	.dining-content h2,
	.single-groups-catering .dining-left h2,
	.dining-left h2,
	.accommoations-page .section.intro-section h1
	{
		font-size: 4vw;
	}
	.slide-content,
	li.ticket .location-date,
	.widget-row.second-row .widget-content,
	.location-date,
	.concession-content p,
	.featured-press h2,
	.sortwrap select,
	.location-title a,
	#eventlist a.button,
	.single-groups-catering a.button,
	.slide-content a.button,
	.accommodation-right h2
	{
		font-size: 3.5vw;
	}
	.featured-press .location-date,
	.press-content .location-date,
	a.button.menu,
	body .fc label,
	.horsemenGroup h2,
	.horsemen-calendar .fc-center h2,
	#directory p,
	.dining-content p,
	.intro-section .section-wrap p,
	.groups-contact p,
	.dining-left p,
	.dining-right p,
	.group-link,
	.accommoations-page,
	.sidebar-wrap h3,
	.page-template-howtovideos p
	{
		font-size: 3vw;
	}
	span.fc-day-number, .fc-day-header span,
		#directory a.button,
		.sidebar h4 {
		font-size: 2.5vw;
	}
	.fc-title {
		font-size: 1.5vw;
	}
	.second-row .wid-title {
		line-height: 1.2;
	}


	/* home page */
	div#home-carousel.no-slides .slides li {
		width: 100% !important;
		height: 73vw !important;
	}
	.carCon {
		bottom: 3vw;
	}
	.ticketCon a.button {
		padding: 3vw;
		margin-top: 5.5vw;
	}
	.widget-row {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.first-row .widget {
		width: 100%;
		height: 115vw;
		margin-bottom: 3vw;
	}

	.first-row .widget a.button {
		padding: 2.5vw 2vw;
		width: 32vw;
		margin-top: 5vw;
	}
	.widget-row.second-row .widget-content {
		width: 100%;
		padding: 0 !important;
	}
	.widget .buttons .button:first-child{
		border-width: .15vw;
	}
	.second-row .widget a.button {
		width: 48vw;
		padding: 2.5vw 2vw;
	}
	.second-row .widget {
		height: 56vw;
	}
	.widget-row.second-row .widget-content {
		padding-left: 4vw !important;
	}
	.wid-logo {
		max-width: 30vw;
	}
	.third-row .wid-con {
		max-width: 100%;
	}

	/* contact */
	.form-wrap {
		max-width: 93%;
	}
	.form-wrap li.gfield:nth-of-type(odd),
	.form-wrap li.gfield:nth-of-type(even) {
		width: 100%;
		float: none;
	}

	.form-wrap input[type="text"], .form-wrap input[type="tel"], .form-wrap input[type="email"] {
		padding: 2vw 3vw;
	}
	.gform_footer.top_label input {
		padding: 2vw 3.5vw 1.8vw 3.5vw;
	}


	/* careeres */
	.page-template-careers #main {
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.careers-left,
	.careers-right {
		width: 100%;
		float: none;
	}
	.page-template-careers h1.entry-title {
		font-size: 5vw !important;
	}
	/* community */
	.concession-post {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.concession-post > div {
		width: 100%;
		margin-bottom: 3vw;
	}
	.page-template-community a.button.menu {
		padding: 2vw 4vw;
	}

	/* partners */
	.partner {
		width: 100%;
	}

	/* press */
	.featured-image {
		margin-top: 2vw;
	}
	.middle-press {
		margin: 4vw 0 0;
	}
	a.button {
		padding: 2vw 3.5vw;
		display: flex;
	}
	div#press-posts {
		margin-top: 4vw;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.press-post {
		width: 100%;
	}
	.downloads-wrap {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.download-post {
		width: 100%;
		margin: 2vw 0 0;
	}
	.download-content .videowrap {
		height: 39vw;
	}
	.download-img {
		height: auto;
	}
	.social-section .socialicons a {
		font-size: 10vw;
	}

	/* calendar */
	select {
		height: 7vw;
	}
	.sortwrap i.fa.fa-sort-desc {
		padding: 0 2.5vw 0.9vw;
	}
	#eventlist a.button {
		padding: 2.1vw 4vw;
		margin-top: 3vw;
		float: left;
	}

	div#single-product {
		float: left;
		width: 100%;
	}

	.woocommerce div.product p.price, .woocommerce div.product span.price {
		color: #cb402d!important;
		font-size: 5.3vw!important;
	}

	h1.procuct-title {
		margin: 0;
		font-weight: 700;
		color: #cb3d2b;
		text-transform: uppercase;
		font-size: 4vw;
	}

	.cartLink {
		width: 100%;
		text-align: right;
		font-size: 3.5vw;
		line-height: 1;
		margin-bottom: 2vw;
		display: flex;
		justify-content: space-between;
	}

	.yith-wcbk-form-section.yith-wcbk-form-section-persons {
		width: 17vw;
		margin-right: 2vw;
	}

	.yith-wcbk-form-section.yith-wcbk-form-section-services input {
		position: relative;
		border-radius: 100%!important;
		-webkit-appearance: none;
		width: 4.1vw;
		height: 4vw;
		border: 1px solid;
	}

	.yith-wcbk-form-section.yith-wcbk-form-section-services.checked input::after {
		content: '';
		width: 2.6vw;
		height: 2.6vw;
    }

    div#product-description {
		float: right;
		width: 95%;
		margin: 0 auto;
	}

	.page-template-horsemen-info .downloads {
		float: left;
		width: 100%;
		margin-top: 0;
	}

	.directory-item {
		padding-right: .5vw;
		display: flex;
	}

	.bullet-item {
		position: relative;
		padding: 0 0 0 4.3vw;
	}

	.bullet-item:before {
		content: "\2022";
		color: #cb3f2c;
		position: absolute;
		top: 0;
		left: 0;
		font-size: 6.5vw;
		line-height: 0.85;
		vertical-align: top;
	}

	.nocalendar .listthumb {
		width: 100%;
	}

	.nocalendar .listinfo {
		width: 100%;
	}

	.agenda a.button {
		display: inline-block;
		margin-top: 3vw;
		padding: 1vw;
		font-size: 5vw;
	}

	.site-info {
		position: relative;
	}

	.site-footer {
		background: #f2f2f2;
		color: #fff;
		margin-bottom: 0!important;
	}

	.fc-title {
		font-size: 2.5vw;
	}

	.stakes-schedule p {
		font-size: 3.8vw!important;
    }

    .stakes-schedule p a {
		font-size: 3.9vw!important;
    }

    .training-races-bottom {
		clear: both;
		float: left;
		width: 100%;
	}

	header .menu-primary-container {
		position: absolute;
		left: 0;
		right: 0;
		transform: translateX(100%);
		top: 15vw;
    }

    .trial-qualifier-date span {
		font-size: 2.95vw;
    }

    h4, button, input[type="button"], input[type="submit"], body .fc label, .location-title a, .location-date, #eventlist a.button, .single-groups-catering a.button, a.button.reservations {
		font-size: 3.5vw;
	}

	div#eventlist h2, #directory h2, .sidebar h2, .widget a.button, .widget-row.second-row .widget:nth-of-type(2) .toptitle, .press-content h2, .content-download h2 {
		font-size: 4vw;
	}

	.accommodation-bottom ul li:before {
		font-size: .9vw;
		top: 1.9vw;
		left: -2.2vw;
	}
	.fc-icon-left-single-arrow:after,
	.fc-icon-right-single-arrow:after {
		font-size: 3.5vw !important;
	}

	div#horsemenCals,
	div#directory {
		width: 100%;
		float: none;
	}
	.horsemenCalWrap {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.horsemen-calendar {
		width: 100%;
		margin-bottom: 3vw;
	}
	.horsemen-calendar .fc-row .fc-content-skeleton td,
	.fc-row .fc-helper-skeleton td {
		height: 2vw;
	}
	.horsemen-calendar .fc-row .fc-content-skeleton thead td {
		position: relative;
		top: 2.3vw;
	}
	.horsemen-calendar .fc-title,
	.horsemen-calendar span.fc-day-number {
		font-size: 3vw !important;
	}
	.horsemen-calendar .fc-day-number {
		float: none !important;
	}
	.horsemen-calendar .fc-event, .horsemen-calendar .fc-event-dot {
		width: 13vw;
	}
	#directory a.button {
		padding: 2vw 2.5vw 1.8vw;
	}

	/* groups catering / dining */
	.dining-content a.button {
		padding: 2vw 2.5vw 1.8vw;
	}
	.dining-left,
	.dining-right {
		float: none;
		width: 100%;
	}
	.single-groups-catering a.button {
		padding: 2vw 4vw;
		margin-top: 1vw;
		margin-bottom: 4vw;
	}
	.group-link::before {
	    font-size: 10vw;
	    top: 2.5vw;
	    left: 1vw;
	}
	.group-link a {
		padding-left: 1vw;
	}
	.slide-content a.button {
		padding: 3vw;
	}

	/* casino */
	.casino .event-wrap {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.casino-left,
	.casino div#sidebar {
		float: none;
		width: 100%;
	}
	.casino .topchoices {
		position: relative;
		float: none;
		top: auto;
		right: auto;
		align-self: flex-end;
	}
	#promotion-slider .flex-direction-nav a::before {
		width: 5vw;
    	height: 5vw;
    	line-height: 1.8;
    	font-size: 3vw;
	}
	div#sidebar {
		margin-top: 3vw;
		font-size: 3vw;
	}

	/* accommodation */
	.accommodation-left, .accommodation-right {
		width: 100%;
	}
	.accommodation-top {
		margin: 0px 4vw 2vw;
	}
	.accommodation {
		text-align: left;
		padding: 2.4vw 14vw;
	}
	.accommodation-bottom p,
	.accommodation-bottom ul {
		max-width: none !important;
	}

	/* how to videos */
	.main-content-left,
	.sidebar {
		float: none;
		width: 100%;
	}
	.sidebar {
		margin-top: 4vw;
	}

	.upper-nav {
		background: #fff;
		margin-top: 2vw;
	}

	.main-navigation a {
		padding: 3.5vw 10vw;
		font-size: 3.4vw;
	}

	div#home-carousel {
		margin-top: 0;
		padding-top: 3vw;
		 z-index: 0;
	}

	.site-branding-logo {
		width: 25vw;
	}

	.menu-toggle {
		display: block;
		cursor: pointer;
		background: none;
		right: 3.5vw;
		width: 6.8vw;
		height: 3.6vw;
		position: absolute;
		z-index: 999;
		top: 5vw;
	}

	.main-navigation li::after {
    	display: none;
    }

    ul#top-menu {
		padding: 0;
		display: block;
		margin: 3vw;
	}

	form#subForm {
		display: flex;
		justify-content: flex-end;
		flex-wrap: wrap;
		align-items: center;
	}

	form#subForm {
		display: flex;
		justify-content: flex-end;
		flex-wrap: nowrap;
		align-items: center;
	}

	#subForm input {
		padding: 0.75vw 1.1vw;
		width: 100%;
		font-size: 6.1vw;
	}

	#subForm button {
		padding: .75vw 1.3vw;
		font-size: 4.1vw;
		/* display: flex; */
		/* align-items: center; */
		height: auto;
	}

	.month-cal {
		width: 100%;
    }

    .page-template-liveracing div#horsemenCals, .single-events div#horsemenCals {
		width: 100%;
		float: left;
	}

	.page-template-liveracing .horsemen-calendar .fc-event, .single-events .horsemen-calendar .fc-event {
		width: 13.29vw;
	}

	.page-template-liveracing .bottom-content h2, .single-events .bottom-content h2 {
		color: #000;
		text-transform: uppercase!important;
		font-size: 4.3vw;
		font-weight: 600;
		margin-bottom: 0;
	}

	.nocalendar .location-title {
		font-size: 3.5vw;
		margin-bottom: 1vw;
	}

	#directory img {
		margin: 0 auto;
	}

	h3 {
		font-size: 4.1vw;
	}
    button.dropdown-toggle::after {
		content: '\f107';
		font-family: 'FontAwesome';
		font-size: 7vw;
		line-height: 1.15;
		padding-right: 1vw;
	}

	#upper-menu li a {
		padding: 3.5vw 7vw;
		font-size: 3.4vw;
	}

	#upper-menu li {
		display: flex;
		padding: 0 .3vw;
		width: 100%;
		align-items: center;
		justify-content: center;
		background: #f4b132;
		margin-bottom: 2.5vw;
	}

	#masthead .upper-nav .wrap {
		max-width: 100%;
		align-items: flex-end;
	}

	ul#upper-menu {
		flex-direction: column;
		align-items: flex-end;
		width: 100%;
	}

	.main-navigation li.menu-button {
		background: #fff;
		margin-top: .8vw;
	}

	.main-navigation li.menu-button a {
		background: #cb3d2a;
		display: inline-block;
	}

	.upper-nav .wrap {
		flex-direction: column;
	}

	.race-info {
		width: auto;
		order: 1;
		flex-direction: column;
		text-align: right;
		margin: 0 2vw 3vw;
		align-items: flex-end;
		width: auto;
	}

	.menu-upper-menu-container {
		order: 2;
		width: auto;
	}

	.searchform {
		order: 2;
		width: 100%;
	}

	.input-wrapper {
		max-width: none;
		margin: 0;
		width: 100%;
	}

    form.search-form {
		display: flex;
		justify-content: flex-end;
		margin: 2vw 0 3vw;
	}

    button.search-submit.no-submit {
		font-size: 5.3vw;
		padding: 1vw 3vw;
		border: 1px solid #eee;
		border-left: 0;
		border-right: 0;
	}

	.upper-nav .search-field {
		font-size: 3.2vw;
		padding: 2.5vw;
		max-width: none;
		width: 100%;
	}

	html {
    /*transform: translateY(-137vw);*/
}

	.raceinfo::after {
		display: none;
	}

	.raceinfo {
		margin-right: 0.8vw;
		font-size: 2.8vw;
		position: relative;
		padding-right: .8vw;
		color: #000;
	}

	.upper-wrap {
		display: flex;
		align-items: center;
		width: 100%;
		justify-content: flex-end;
	}

	.dropdown-toggle {
		top: 2vw;
	}

	#footer-menu li::after {
		display: none;
	}

	ul#footer-menu li {
		text-align: right;
		width: 50%;
	}

	.footer-menu-main li a {
		font-size: 2.8vw;
	}

	.site-footer .wrap {
		padding-bottom: 4vw;
		padding-top: 4vw;
	}

	ul#footer-menu {
		flex-wrap: wrap;
	}

	ul#logos-menu li img {
		max-height: 12vw;
		margin-bottom: 5vw;
	}

	ul#logos-menu {
		flex-wrap: wrap;
	}

	.footer-content {
		flex-wrap: wrap;
	}

	.footer-content > div {
		width: 100%;
		justify-content: flex-end;
		float: right;
	}

	.footer-content > div {
		width: 100%;
		justify-content: flex-end;
		float: right;
		text-align: right;
	}

	.mc-field-group {
		justify-content: flex-end;
    }

    .footer-menu {
		order: 1;
		margin-bottom: 2vw;
	}

	.info-left {
		order: 2;
		margin-bottom: 2vw;
	}

	.info-right {
		order: 3;
	}

	.site-info a, .site-info p {
		font-size: 3vw;
    }

    input.input-email {
		font-size: 2.8vw;
		width: 59vw;
		padding: 1.5vw;
	}

	button.submit {
		font-size: 2.8vw;
		padding: 1.9vw 1.8vw;
		font-weight: 400;
	}

	ul#social-menu li {
		margin-left: 1.5vw;
		width: 8vw;
		height: 8vw;
		margin-bottom: 2vw;
	}

	.footer-menu {
		order: 1;
		margin-bottom: 2vw;
		margin-top: 1vw;
	}
	
	.dining-right h3 {
		font-size: 4vw;
	}

	.rp-bet .dining-right h4 {
		font-size: 3vw!important;
	}
	
	.yith-wcbk-has-date-picker:after {
		top: 9.7vw;
	}
	
	.hf-post {
		width: 100%;
	}
	
	.hf-post {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
	
	.hf-thumb {
		width: 100%;
	}

	.hf-name, .hf-year {
		width: 100%;
		font-size: 5vw;
		text-align: left;
	}

	.hf-bio {
		width: 100%;
		text-align: left;
	}

	.hf-post .hf-year, .hf-post .hf-career {
		font-size: 4vw;
	}
	
	h2.track-title {
		font-size: 6vw;
	}

	.hf-post:last-child {
		margin-bottom: 4vw;
		padding-bottom: 4vw;
	}

	.hf-bio a.button {
		margin-top: 3vw;
		padding: 2vw 4vw;
	}
	
	body.no-slides div#content {
		padding: 21.5vw 0 0;
	}
	
	.button-wrap.optional-buttons {
		position: relative;
		order: 3;
		margin: 2vw 0;
	}

	.button-wrap.optional-buttons .button {
		margin: 0 2vw;
	}
	
	.interior .section-wrap h2 {
		font-size: 5vw;
	}
	
	.hf-thumb-single {
		width: 100%;
	}
}

/*--------------------------------------------------------------
20.0 Print
--------------------------------------------------------------*/

@media print {

	/* Hide elements */

	form,
	button,
	input,
	select,
	textarea,
	.navigation-top,
	.social-navigation,
	#secondary,
	.content-bottom-widgets,
	.header-image,
	.panel-image-prop,
	.icon-thumb-tack,
	.page-links,
	.edit-link,
	.post-navigation,
	.pagination.navigation,
	.comments-pagination,
	.comment-respond,
	.comment-edit-link,
	.comment-reply-link,
	.comment-metadata .edit-link,
	.pingback .edit-link,
	.site-footer aside.widget-area,
	.site-info {
		display: none !important;
	}

	.entry-footer,
	#comments,
	.site-footer,
	.single-featured-image-header {
		border: 0;
	}

	/* Font sizes */

	body {
		font-size: 12pt;
	}

	h1 {
		font-size: 24pt;
	}

	h2 {
		font-size: 22pt;
	}

	h3 {
		font-size: 17pt;
	}

	h4 {
		font-size: 12pt;
	}

	h5 {
		font-size: 11pt;
	}

	h6 {
		font-size: 12pt;
	}

	.page .panel-content .entry-title,
	.page-title,
	body.page:not(.twentyseventeen-front-page) .entry-title {
		font-size: 10pt;
	}

	/* Layout */

	.wrap {
		padding-left: 5% !important;
		padding-right: 5% !important;
		max-width: none;
	}

	/* Site Branding */

	.site-header {
		background: transparent;
		padding: 0;
	}

	.custom-header-media {
		padding: 0;
	}

	.twentyseventeen-front-page.has-header-image .site-branding,
	.twentyseventeen-front-page.has-header-video .site-branding,
	.home.blog.has-header-image .site-branding,
	.home.blog.has-header-video .site-branding {
		position: relative;
	}

	.site-branding {
		margin-top: 0;
		margin-bottom: 1.75vw !important; /* override styles added by JavaScript */
	}

	.site-title {
		font-size: 25pt;
	}

	.site-description {
		font-size: 12pt;
		opacity: 1;
	}

	/* Posts */

	.single-featured-image-header {
		background: transparent;
	}

	.entry-meta {
		font-size: 9pt;
	}

	/* Colors */

	body,
	.site {
		background: none !important; /* Brute force since user agents all print differently. */
	}

	body,
	a,
	.site-title a,
	.twentyseventeen-front-page.has-header-image .site-title,
	.twentyseventeen-front-page.has-header-video .site-title,
	.twentyseventeen-front-page.has-header-image .site-title a,
	.twentyseventeen-front-page.has-header-video .site-title a {
		color: #222 !important; /* Make sure color schemes don't affect to print */
	}

	h2,
	h5,
	blockquote,
	.site-description,
	.twentyseventeen-front-page.has-header-image .site-description,
	.twentyseventeen-front-page.has-header-video .site-description,
	.entry-meta,
	.entry-meta a {
		color: #777 !important; /* Make sure color schemes don't affect to print */
	}

	.entry-content blockquote.alignleft,
	.entry-content blockquote.alignright {
		font-size: 11pt;
		width: 34%;
	}

	.site-footer {
		padding: 0;
	}
}


/**** General Charts ***/
.page-template-general-charts .horsemen-calendar .fc-row .fc-content-skeleton td.fc-event-container {
    background: #eee;
    border: 0 !important;
    margin: 0 !important;
}

.page-template-general-charts .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end.nolink {
    display: flex !important;
    background: #f4a45d !important;
    border: 0 !important;
    width: 2.12vw !important;
}

.page-template-general-charts a.fc-day-grid-event {
    background: #f4a45d !important;
}