/* # Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Misc
	- Buttons
	- Links
	- Gallery
	- Forms
	- Tables
	- Tabs
	- Screen Reader Text
- Structure and Layout
	- Site Containers
	- Column Widths and Positions
	- Column Classes
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Jetpack
- Site Header
	- Title Area
	- Header Tabs Area
- Site Navigation
	- Accessible Menu
	- Site Header Navigation
	- Primary Navigation
	- Secondary Navigation
	- Skip Links
- Content Area
	- Entries
	- Entry Meta
	- Pagination
	- Comments
- Sidebars
- Language Footer
- Site Footer
- Footer Widgets
- Home
- Events
- Calendar
- News (Blog)
- Our Team
- Single Posts
- Taxonomy Pages
- Archive Pages
- Media Queries
	- Retina Display
	- Max-width: 1200px
	- Max-width: 960px
	- Max-width: 800px
- Print Styles
- Animation
*/


/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */

/* ## Box Sizing
--------------------------------------------- */

/* ## Float Clearing
--------------------------------------------- */

.clear {
	clear: both;
}

/* # Defaults
---------------------------------------------------------------------------------------------------- */

html, body {
	overflow-x: hidden;
	width: 100vw;
}

::-moz-selection {
	background: #007ac3;
	color: #fff;
}

::selection {
	background: #007ac3;
	color: #fff;
}

::-moz-selection {
	background: #007ac3;
	color: #fff;
}

/* ## Typographical Elements
--------------------------------------------- */

body {
	font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
}

h1, h2, h3, h4, h5, h6, p, li, div, span {
	font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'din-2014', sans-serif;
	margin-bottom: 30px;
	color: #333;
}

h1,
h2 {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.site-header h1,
.site-header h2,
.site-header h3,
.site-header h4,
.site-header h5,
.site-header h6 {
	margin-bottom: 0;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 33px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 26px;
}

h6 {
	font-size: 24px;
}

p {
	margin-bottom: 30px;
}

/* ## Headings
--------------------------------------------- */

/* ## Objects
--------------------------------------------- */

.entry-content hr {
	border-bottom: 1px solid #aaa;
}

hr {
	margin: 45px 0;
}

figure {
	margin: 0;
}

figure.thumbnail {
	width: 150px;
	height: 150px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-right: 15px;
	float: left;
	overflow: hidden;
}

figure.thumbnail img {
	width: 100%;
	height: auto;
	margin: 0;
}

a:hover figure.thumbnail {
	border-color: #78c4da;
}

.tiles {
	margin: 0 -5px 25px;
}

.tiles a {
	width: 100%;
	display: block;
	padding: 5px;
}

.tile {
	width: 100%;
	height: 175px; /* .tile & .label same */
	background-size: cover !important;
	background-position: center !important;
	border-radius: 5px;
	position: relative;
}

.tile .label {
	background: rgba(0, 121, 193, .6);
	border-radius: inherit;
	text-align: center;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	width: inherit;
	height: inherit;
}

a:hover .tile .label {
	background: rgba(0, 121, 193, .9);
}

.tile .label h2 {
	color: #fff;
	font-weight: 300;
	text-transform: none;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 24px;
	width: 90%;
}

/* Accordion */

.accordion {
	width: 100%;
	position: relative;
	display: block;
	margin: 5px 0;
}

.accordion .cord {
	position: relative;
	margin-bottom: 1px;
	width: 100%;
	color: #333;
	overflow-y: hidden;
	overflow-x: hidden;
}

.accordion input.accordion-input {
	position: absolute;
	opacity: 0;
	z-index: 1;
	width: 100%;
	height: 57px;
	cursor: pointer;
}

.accordion label.accordion-label {
	position: relative;
	display: block;
	background: transparent;
	font-weight: 700;
	cursor: pointer;
	background: rgba(0,0,0,0.05);
	padding: 15px 0;
	margin: 0;
}

.accordion label.accordion-label > h3 {
	margin: 0 0 0 50px;
	padding-left: 10px;
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0;
	display: inline-block;
}

.accordion .cord-content {
	max-height: 0;
	overflow: hidden;
	background: transparent;
	-webkit-transition: all .35s ease;
	-o-transition: all .35s ease;
	transition: all .35s ease;
	background: rgba(0,0,0,0.05);
	padding-left: 25px;
	padding-right: 25px;
}

.accordion .cord-content ul {
	margin: 0 0 0 20px;
}

/* :checked */
.accordion input.accordion-input:checked ~ .cord-content {
	max-height: 999vh;
	padding-top: 25px;
	padding-bottom: 25px;
}

/* Indicator */
.accordion label .indicator {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	font-size: 24px;
	font-family: 'Open Sans';
	font-weight: 700;
	text-align: center;
	color: #aaa;
	background: rgba(0,0,0,0.1);
	width: 50px;
	height: 100%;
}

.accordion label .indicator:before {
	content: '+';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	    -ms-transform: translate(-50%, -50%) rotate(0deg);
	        transform: translate(-50%, -50%) rotate(0deg);
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}

.accordion input.accordion-input:checked ~ label .indicator:before {
	content: '–';
}

/* oEmbed */

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ## Misc
--------------------------------------------- */

.blue-box {
	background: #007ac3;
	color: #fff;
	padding: 25px;
	margin-bottom: 30px;
}

.blue-box * {
	color: #fff !important;
}

.blue-box a:hover {
	border-bottom: 1px solid #fff !important;
}

.fancybox-stage .fancybox-content {
	background: #fff;
}

/* Checkmarks */

ul.checkmarks {
	display: block;
	margin: 0;
	padding: 0;
}

ul.checkmarks > li {
	list-style-type: none;
	display: table;
	margin-bottom: 15px;
}

ul.checkmarks > li:before {
	display: table-cell;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f00c';
	padding: 0 15px 0 5px;
	color: inherit;
	width: 40px;
}

/* Icon Circle */

.icon-display {
	margin-bottom: 30px;
}

.icon-display h6 {
	margin-bottom: 15px;
}

.icon-circle {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	float: left;
	position: relative;
	margin-bottom: 15px;
}

.icon-circle i {
	background: #fff;
	font-size: 48px;
	padding: 35px;
	border-radius: 50%;
	border: 1px solid #ddd;
	color: #007ac3;
	margin-right: 15px;
	-webkit-box-shadow: 0 0 50px rgba(0,0,0,0.15);
	        box-shadow: 0 0 50px rgba(0,0,0,0.15);
}

.circle-content {
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: calc(100% - 150px);
}

/* Cancer Cells */

.cancer-cells {
	margin: 50px 0 15px;
}

.cancer-cell {
	text-align: center;
}

.cancer-cell img {
	margin-bottom: 25px;
}

.cancer-cell h4 {
	font-size: 21px;
	text-transform: uppercase;
}

.cancer-cell p {
	font-size: 16px;
}

/* Alignment */

@media (max-width: 575.98px) {
	.alignleft,
	.alignright {
		float: none;
		display: block;
	}
}

/* ## Buttons
--------------------------------------------- */

button, input[type="button"], input[type="reset"], input[type="submit"], .button {
	background: #78c4da;
	border-radius: 5px;
	text-decoration: none;
	border: none;
	font-weight: 300;
	padding: 10px 20px;
	margin: 0 10px 10px 0;
	color: #fff;
	position: relative;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .button:hover,
button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, .button:focus {
	background: #007ac3;
	text-decoration: none;
}

button.pink, input[type="button"].pink, input[type="reset"].pink, input[type="submit"].pink, .button.pink {
	background: #d40e8c;
}

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

button.blue, input[type="button"].blue, input[type="reset"].blue, input[type="submit"].blue, .button.blue {
	background: #007ac3;
}

button.blue:hover, input[type="button"].blue:hover, input[type="reset"].blue:hover, input[type="submit"].blue:hover, .button.blue:hover,
button.blue:focus, input[type="button"].blue:focus, input[type="reset"].blue:focus, input[type="submit"].blue:focus, .button.blue:focus {
	background: #2991d6;
}

a.button.icon {
	padding-right: 50px;
}

a.button.icon:after {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 75%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f061';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: rgba(0,0,0,0.15);
	color: #fff;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

a.button.external {
	padding-right: 50px;
}

a.button.external:after {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 75%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f35d';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: rgba(0,0,0,0.15);
	color: #fff;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

a.button.phone {
	padding-right: 50px;
}

a.button.phone:after {
	content: '\f095';
}

a.button.file {
	width: 150px;
	height: auto;
	background: #fff;
	border: 2px solid #78c4da;
	padding: 0;
	color: #333;
	text-align: center;
	padding: 0 0 30px;
	font-weight: 700;
	color: #78c4da;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	display: -ms-inline-grid;
	display: inline-grid;
}

a.button.file:hover,
a.button.file:focus {
	color: #007ac3;
	border: 2px solid #007ac3;
}

a.button.file:before {
	display: block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 200%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f019';
	position: relative;
	height: auto;
	width: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 15px 0;
	color: inherit;
}

a.button.file:after {
	content: unset;
}

a.button.back:after {
	content: unset;
}

a.button.back {
	padding-right: 20px !important;
	padding-left: 50px !important;
}

a.button.back:before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 75%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f060';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: rgba(0,0,0,0.15);
	color: #fff;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

/* ## Links
--------------------------------------------- */

a {
	color: #007ac3;
	text-decoration: none;
}

a:hover {
	color: #2991d6;
	text-decoration: none;
}

.site-header a.external:after,
.sidebar a.external:after {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f35d";
	margin-left: 5px;
	font-size: 75%;
	-webkit-transform: translateY(-1px);
	    -ms-transform: translateY(-1px);
	        transform: translateY(-1px);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ## Gallery
--------------------------------------------- */

.gallery {
	margin: 0 -5px 30px;
}

.gallery .image {
	display: inline-block;
	margin: 5px;
}

.gallery img,
.gallery img:hover,
.gallery img:focus {
	border: none;
	padding: 0;
}

@media only screen and (max-width: 1199.98px) {
	.gallery .image {
		width: 125px;
		height: 125px;
	}
}

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

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

.table-wrapper {
	overflow: scroll;
	margin: 50px 0;
}

main.content table {
	margin: 0;
	border-top: 1px solid #78c4da;
}

main.content td {
	text-align: center;
	padding: 20px 10px;
	border: 1px solid #ddd;
	border-top: none;
	border-bottom: none;
	line-height: 1.2;
	font-size: 14px;
}

main.content tr {
	border-bottom: 1px solid #ddd;
	-webkit-transition: .2s ease all;
	-o-transition: .2s ease all;
	transition: .2s ease all;
}

main.content tbody tr:nth-of-type(even) {
	background: #eee;
}

main.content tbody tr:hover {
	background: #78c4da;
	border-bottom-color: #78c4da;
}

main.content tbody tr:hover td {
	color: #fff;
	border-color: #78c4da;
}

main.content thead {
	background: #78c4da;
}

main.content thead tr {
	border-bottom-color: #78c4da;
}

main.content thead td {
	color: #fff;
	border-color: #78c4da;
}

/* ## Tabs
--------------------------------------------- */
.tabs ul.nav-tabs {
	margin: 0;
	border: none;
}

.tabs ul.nav-tabs li.nav-item {
	list-style-type: none;
}

.tabs ul.nav-tabs li.nav-item .nav-link {
	padding: 15px 25px;
	border: 1px solid #ccc;
	border-bottom: none;
	border-right: none;
	background: #eee;
	color: #007ac3;
	border-radius: 0;
	font-size: 13px;
	font-weight: 700;
}

.tabs ul.nav-tabs li.nav-item:last-of-type .nav-link {
	border-right: 1px solid #ccc;
}

.tabs ul.nav-tabs li.nav-item .nav-link.active,
.tabs ul.nav-tabs li.nav-item .nav-link:hover {
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
	border-right: none;
}

.tabs ul.nav-tabs li.nav-item:last-of-type .nav-link.active,
.tabs ul.nav-tabs li.nav-item:last-of-type .nav-link:hover {
	border-right: 1px solid #ccc;
}

.tabs ul.nav-tabs li.nav-item .nav-link:hover {
	color: #78c4da;
}

.tabs .tab-content {
	padding: 25px 20px;
	border: 1px solid #ccc;
	background: #fff;
}

:focus {
	outline: none;
}

.dropdown {
	float: left;
	margin-top: 30px;
}

.dropdown a.button {
	background: #fff;
	border: 1px solid #ccc;
	border-right: none;
	position: relative;
	padding-right: 75px;
}

.dropdown a.button:after {
	content: unset;
}

.dropdown a.button .caret-down {
	padding: 10px 20px;
	background: #78c4da;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	border: 1px solid #78c4da;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	color: #fff;
}

.dropdown a.button:hover .caret-down {
	background: #007ac3;
	border: 1px solid #007ac3;
}

.dropdown ul.dropdown-menu {
	width: 100%;
	z-index: 10;
	max-height: 300px;
	overflow: scroll;
	margin: 0;
}

.dropdown ul.dropdown-menu li {
	font-size: 14px;
	list-style-type: none;
}

.dropdown ul.dropdown-menu li a {
	padding: 10px 20px;
	display: inline-block;
	border: none;
	border-bottom: 1px solid #ccc;
	text-decoration: none;
	color: #333;
	width: 100%;
}

.dropdown ul.dropdown-menu li:last-of-type a {
	border: none;
}

.dropdown ul.dropdown-menu li:hover a {
	color: #78c4da;
}

/* Vertical Tabs */

.vertical-tabs ul.nav-tabs {
	margin: 0;
	position: relative;
	z-index: 1;
	border-top: 1px solid #eee !important;
	border-bottom: 1px solid #eee !important;
}

.vertical-tabs ul.nav-tabs .nav-link {
	font-size: 13px;
	font-weight: 700;
	color: #333;
	padding: 15px;
	background: rgba(0,0,0,0.05);
	border: transparent;
	border-radius: 0;
	border-left: 1px solid #eee !important;
	border-bottom: 1px solid #eee !important;
	border-right: 1px solid #eee !important;
}

.vertical-tabs ul.nav-tabs .nav-link:hover,
.vertical-tabs ul.nav-tabs .nav-link:focus {
/*	border-left: 1px solid #eee !important;	*/
	border-color: transparent;
}

.vertical-tabs ul.nav-tabs .nav-link.active {
	color: #007ac3;
	background: #fff;
	border-right-color: orange;
	border-bottom-color: #eee !important;
	border-right-color: #fff !important;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.vertical-tabs ul.nav-tabs .nav-link:hover {
	color: #78c4da;
}

.vertical-tabs ul.nav-tabs li.nav-item {
	list-style: none;
	margin-bottom: 0;
}

.vertical-tabs ul.nav-tabs li.nav-item:last-of-type .nav-link {
	border-bottom: none !important;
}

.vertical-tabs ul.nav-tabs li.nav-item:first-of-type .nav-link {
	border-top: none !important;
}

.vertical-tabs .tab-content {
	border: 1px solid #eee;
	height: 100%;
	margin-left: -1px;
	z-index: -1;
	background: #fff;
}

.vertical-tabs .tab-content .tab-pane {
	padding: 25px;
}

@media (max-width: 575.98px) {
	.tabs ul.nav-tabs {
		display: inline-block;
		width: 100%;
	}
}

/* ## Screen Reader Text
--------------------------------------------- */

/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Containers
--------------------------------------------- */

.site-container {
	-webkit-animation-delay: 250ms;
	        animation-delay: 250ms;
	-webkit-animation-duration: .5s;
	        animation-duration: .5s;
	-webkit-animation-fill-mode: backwards;
	        animation-fill-mode: backwards;
	-webkit-animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	        animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	-webkit-animation-name: fadeIn;
	        animation-name: fadeIn;
}

.site-inner {
	max-width: none;
	padding: 0;
/*	min-height: 100vh;	*/
}

body:not(.home) .site-inner {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#fff), color-stop(#fff), to(#cbe8f0));
	background: -webkit-linear-gradient(top, #fff, #fff, #fff, #cbe8f0);
	background: -o-linear-gradient(top, #fff, #fff, #fff, #cbe8f0);
	background: linear-gradient(to bottom, #fff, #fff, #fff, #cbe8f0);
	padding-bottom: 100px;
}

body:not(.home) .site-inner .content-sidebar-wrap {
	-webkit-animation-delay: 500ms;
	        animation-delay: 500ms;
	-webkit-animation-duration: .5s;
	        animation-duration: .5s;
	-webkit-animation-fill-mode: backwards;
	        animation-fill-mode: backwards;
	-webkit-animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	        animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	-webkit-animation-name: fadeInUp;
	        animation-name: fadeInUp;
}

.wrap {
	max-width: 1220px;
	position: relative;
}

.content {
	width: 780px;
}

.full-width-content .content {
	max-width: none;
}

@media only screen and (max-width: 1279.98px) {
	.content {
		width: 70%;
		max-width: 840px;
	}

	.wrap {
		max-width: none;
		width: 90%;
		margin: 0 5%;
	}
}

@media only screen and (max-width: 1199.98px) {
	.content {
		width: 65%;
		max-width: none;
	}
}

@media (max-width: 991.98px) {
	.content {
		width: 100%;
	}

	.site-inner,
	.wrap {
		padding: 0;
	}
}

/* ## Column Widths and Positions
--------------------------------------------- */

/* Vertical Center */

.vertical-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* ## Column Classes
--------------------------------------------- */

ul.columns {
	-webkit-column-gap: 40px;
	        column-gap: 40px;
}

ul.columns-2 {
	-webkit-column-count: 2;
	   -moz-column-count: 2;
	        column-count: 2;
}

ul.columns-3 {
	-webkit-column-count: 3;
	   -moz-column-count: 3;
	        column-count: 3;
}

ul.columns-4 {
	-webkit-column-count: 4;
	   -moz-column-count: 4;
	        column-count: 4;
}

@media (max-width: 575.98px) {
	ul.columns {
		-webkit-column-count: 1;
		   -moz-column-count: 1;
		        column-count: 1;
	}
}

/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

/* ## Genesis
--------------------------------------------- */

/* ## Search Form
--------------------------------------------- */

/* Search form positioning/wrapper elements */

#search-form {
	position: relative;
	visibility: hidden;
	opacity: 0; /* visibility & opacity used (instead of display) to allow for transition effect */
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease;
}

#search-form.active { /* reveal search form on click */
	opacity: 1;
	visibility: visible;
}

#search-form .form-container {
	position: absolute;
	right: 0;
	width: 900px; /* default to be overridden by search.js */
	height: 80px; /* cover up menu */
	background: #fff;
	padding: 25px 0;
}

#search-form .form-wrapper {
	position: relative;
	float: right;
	width: calc(100% - 15px); /* offset to align with menu better */
}

/* AJAX Form using get_search_form */

#search-form form {
	width: 100%;
	margin: 0;
}

#search-form form input[type="search"] {
	width: 100%;
	font-size: 18px;
	padding: 15px 200px 15px 40px;
	border: none;
	line-height: 1.8;
}

#search-form form input[type="search"]::-webkit-input-placeholder {
	color: #aaa;
}

#search-form form input[type="search"]:-ms-input-placeholder {
	color: #aaa;
}

#search-form form input[type="search"]::-ms-input-placeholder {
	color: #aaa;
}

#search-form form input[type="search"]::placeholder {
	color: #aaa;
}

#search-form form input[type="submit"] {
	position: absolute;
	top: 50%;
	right: 50px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	background: #78c4da;
	margin: 0;
	padding: 15px;
	border-radius: 3px;
	font-size: 16px;
	line-height: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease;
}

#search-form form input[type="submit"].active {
	visibility: visible;
	opacity: 1;
}

#search-form form input[type="submit"]:hover {
	background: #007ac3;
}

#search-form .fa-search {
	position: absolute;
	left: 0;
	font-size: 24px;
	color: #aaa;
	margin-top: 20px;
	z-index: 1;
}

#search-form .close {
	font-family: 'Arial';
	font-size: 36px;
	color: #aaa;
	line-height: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 0;
	padding: 0 15px;
	cursor: pointer;
	z-index: 1;
}

#search-form .close:hover {
	color: #555;
}

@media (max-width: 1279.98px) {
	#search-form {
		display: none;
	}
}

/* # Search Results Page
---------------------------------------------------------------------------------------------------- */

.search-results article {
	margin-bottom: 30px;
}

.search-results article h3 {
	margin-bottom: 15px;
}

.search-results .entry-summary {
	margin-bottom: 30px;
}

.search-results .entry-summary p {
	margin-bottom: 0;
}

.search-results .entry-summary a.button {
	margin-top: 15px;
}

/* ## Titles
--------------------------------------------- */

/* ## WordPress
--------------------------------------------- */

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

.sidebar .widget {
	border: 3px solid #666;
	border-radius: 5px;
	padding: 0;
	margin-bottom: 25px;
	background: #fff;
}

.sidebar .widget h3.widgettitle {
	background: #666;
	color: #fff;
	padding: 10px 10px 10px 30px;
	font-weight: bold;
	border: 1px solid #626262;
	margin: -1px -1px 0 0;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	font-family: 'Open Sans', sans-serif;
}

.sidebar .widget ul {
	padding: 15px 30px 15px 30px;
	margin: 0;
}

.sidebar .widget ul.sub-menu {
	padding: 0;
}

.sidebar .widget ul.sub-menu li,
.sidebar .widget ul.menu li {
	margin: 0;
	padding: 0;
}

.sidebar .widget ul li,
.sidebar .widget ul li a {
	color: #666;
}

.sidebar .widget ul.sub-menu li a,
.sidebar .widget ul.menu li a,
.sidebar .widget ul li a {
	display: block;
}

.sidebar .widget ul.sub-menu li a,
.sidebar .widget ul.menu li a {
	margin-bottom: 10px;
}

.sidebar ul li.menu-item-has-children:nth-of-type(2n) { /* hide any instances where page is child of multiple parents */
	display: none;
}

.sidebar ul li a:before {
	content: '';
	position: absolute;
	margin: 2px 0 0 -30px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #666;
	opacity: 0;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.sidebar ul li.current-menu-item > a:before,
.sidebar ul li > a:hover:before {
	opacity: 1;
}

.sidebar #custom_html-5 {
	border-color: #78c4da;
}

.sidebar #custom_html-5 h3.widgettitle {
	border-color: #78c4da;
	background: #78c4da;
}

.sidebar #custom_html-5 ul li.current-menu-item > a {
	color: #78c4da;
}

.sidebar #custom_html-5 ul li a:hover {
	color: #78c4da;
}

.sidebar #custom_html-5 ul li a:before {
	border-left-color: #78c4da;
}

.sidebar #nav_menu-2 {
	border-color: #d40e8c;
}

.sidebar #nav_menu-2 h3.widgettitle {
	border-color: #d40e8c;
	background: #d40e8c;
}

.sidebar #nav_menu-2 ul li.current-menu-item > a {
	color: #d40e8c;
}

.sidebar #nav_menu-2 ul li a:hover {
	color: #d40e8c;
}

.sidebar #nav_menu-2 ul li a:before {
	border-left-color: #d40e8c;
}

.sidebar #eo_event_list_widget-2 {
	border-color: #d4d10f;
}

.sidebar #eo_event_list_widget-2 h3.widgettitle {
	border-color: #d4d10f;
	background: #d4d10f;
}

.sidebar #eo_event_list_widget-2 ul li.current-menu-item > a {
	color: #d4d10f;
}

.sidebar #eo_event_list_widget-2 ul li {
	font-style: italic;
}

.sidebar #eo_event_list_widget-2 ul li a {
	font-style: normal;
}

.sidebar #eo_event_list_widget-2 ul li a:hover {
	color: #d4d10f;
}

.sidebar #eo_event_list_widget-2 ul li a:before {
	border-left-color: #d4d10f;
}

/* ## Featured Content
--------------------------------------------- */

/* # Plugins
---------------------------------------------------------------------------------------------------- */

/* ## Slick Slider
--------------------------------------------- */

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* Navigation */

.slider-arrows {
	width: 100%;
	position: absolute;
	top: calc(50% + 25px);
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
	z-index: 2;
	left: 0;
}

/* Arrows */

.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	display: block;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
			transform: translateY(-50%);
	z-index: 3;
	margin: 0 25px;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
}

.slick-prev:before,
.slick-next:before {
	content: '';
	display: block;
	margin: auto;
	width: 50px;
	height: 50px;
	opacity: .75;
	-webkit-transition: .2s ease all;
	-o-transition: .2s ease all;
	transition: .2s ease all;
}

.slick-prev:before {
	-webkit-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
			transform: rotate(135deg);
	border-right: 4px solid #fff;
	border-bottom: 4px solid #fff;
}

.slick-next:before {
	-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
	border-right: 4px solid #fff;
	border-bottom: 4px solid #fff;
}

.slick-prev:not(.slick-disabled):hover:before,
.slick-prev:not(.slick-disabled):focus:before,
.slick-next:not(.slick-disabled):hover:before,
.slick-next:not(.slick-disabled):focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 0;
	cursor: default;
}

/* Dots */

.slick-dots {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	padding: 25px 0 !important;
	margin: 0 !important;
	list-style: none;
	text-align: center;
	z-index: 3;
	opacity: .75;
	-webkit-transition: .2s ease all;
	-o-transition: .2s ease all;
		transition: .2s ease all;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.5+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 ); /* IE6-9 */
}

.slick-dots:hover,
.slick-dots:focus {
	opacity: 1;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	border-radius: 50%;
	border: 2px solid #ddd;
	width: 12px;
	height: 12px;
	opacity: 1;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	background: #ddd;
	opacity: 1;
}

/* # Skip Links
---------------------------------------------------------------------------------------------------- */

/* # Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	height: 179px;
	z-index: 999;
}

.site-header .wrap {
	padding: 0;
}

.site-header .primary-header-area {
	margin-top: 25px;
	border-bottom: 2px solid #78c4da;
	z-index: 999;
	position: absolute;
	width: 100%;
}

.site-header .primary-header-area.stuck {
	position: fixed;
	top: 0;
	margin: 0;
	width: 100%;
	background: #fff;
}

.site-header .secondary-header-area {
	background: #007ac3;
}

@media (max-width: 1279.98px) {
	.site-header {
		height: auto;
	}

	.site-header .primary-header-area {
		border: none;
	}

	.site-header .primary-header-area.stuck {
		position: absolute;
	}

	.site-header .wrap {
		width: 90%;
		margin: 0 5%;
	}
}

@media (max-width: 1199.98px) {
	.site-header .primary-header-area {
		margin-top: 0;
	}
}

@media (max-width: 991.98px) {
	.site-header .primary-header-area.stuck {
		position: relative;
	}

	.site-header .secondary-header-area .wrap {
		padding: 0;
		width: 100%;
		margin: 0;
	}
}

/* ## Title Area
--------------------------------------------- */

.site-header .title-area {
	float: left;
	display: inline-block;
	width: 245px;
	padding-bottom: 0;
}

.site-header .title-area .site-title {
	text-indent: -9999px;
	white-space: normal;
}

.site-header .title-area .site-title > a {
	background-image: url(../../images/logo.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	min-height: 100px;
	display: block;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) { /* IE10+ */
	.site-header .title-area .site-title > a {
		background-position: 0 -15px;
	}
}

@media (max-width: 575.98px) {
	.site-header .title-area {
		padding-top: 15px;
	}
}

@media (max-width: 320px) {
	.site-header .title-area {
		padding-top: 20px;
		width: 225px;
	}
}

/* ## Header Tabs Area
--------------------------------------------- */

.header-tabs {
	position: absolute;
	z-index: 999;
}

.header-tabs a:first-of-type .header-tab {
	border-bottom-left-radius: 5px;
}

.header-tabs a:last-of-type .header-tab {
	border-bottom-right-radius: 5px;
}

.header-tabs .header-tab {
	float: left;
	padding: 15px 20px;
	text-align: center;
	width: auto;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.header-tabs .header-tab .icon {
	margin-top: -5px;
}

.header-tabs .header-tab .icon img {
	width: 37px;
	float: left;
	padding-right: 5px;
}

.header-tabs .header-tab .label {
	color: #fff;
	font-weight: 100;
	font-size: 18px;
}

.header-tabs a.external:after {
	content: unset;
}

.header-tabs a.external .header-tab .label:after {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f35d";
	margin-left: 5px;
	font-size: 75%;
	-webkit-transform: translateY(-1px);
	    -ms-transform: translateY(-1px);
	        transform: translateY(-1px);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1199.98px) {
	.header-tabs {
		position: relative;
		float: left;
	}

	.header-tabs .header-tab {
		border-radius: 0 !important;
		padding: 15px;
	}

	.header-tabs .header-tab .icon {
		margin-top: -3px;
	}

	.header-tabs .header-tab .icon img {
		width: 30px;
		padding-right: 5px;
	}

	.header-tabs .header-tab .label {
		font-size: 14px;
	}
}

@media (max-width: 991.98px) {
	.header-tabs {
		width: 100%;
	}

	.header-tabs .header-tab {
		width: 33.3333%;
		padding-left: 5%;
	}
}

@media (max-width: 575.98px) {
	.header-tabs .header-tab {
		text-align: center;
		padding: 10px;
	}

	.header-tabs .header-tab .icon {
		display: none;
	}

	.header-tabs .header-tab .label {
		width: 100%;
	}
}

/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	text-align: right;
	position: relative;
}

.genesis-nav-menu li {
	line-height: 1;
}

.site-header li.hidden,
.genesis-nav-menu li.hide-submenu ul.sub-menu {
	display: none !important;
}

.genesis-nav-menu a:hover, .genesis-nav-menu a:focus, .genesis-nav-menu .current-menu-item > a, .genesis-nav-menu .sub-menu .current-menu-item > a:hover, .genesis-nav-menu .sub-menu .current-menu-item > a:focus {
	text-decoration: none;
}

/* ## Accessible Menu
--------------------------------------------- */

/* ## Site Header Navigation
--------------------------------------------- */

.genesis-nav-menu a {
	padding: 5px;
}

/* ## Primary Navigation
--------------------------------------------- */

.nav-primary {
	float: right;
	padding: 25px 0 0;
	border-bottom: 0;
	margin-top: 5px;
}

.nav-primary .genesis-nav-menu > li {
	border-right: 1px solid #eee;
	float: left;
}

.nav-primary .genesis-nav-menu > li:last-of-type {
	border-right: none;
}

.nav-primary .genesis-nav-menu a {
	color: #555;
}

.nav-primary .genesis-nav-menu > li > a {
	padding: 15px;
	margin: 2px;
}

.nav-primary .genesis-nav-menu > li > a:hover,
.nav-primary .genesis-nav-menu li:not(.menu-item-home).current-menu-item > a {
	background: #78c4da;
	color: #fff;
	border-radius: 3px;
}

.nav-primary .genesis-nav-menu li.current-menu-item > a:hover {
	color: #fff;
}

.nav-primary .genesis-nav-menu li.current-menu-parent > a {
	color: #78c4da;
}

.nav-primary .genesis-nav-menu li.current-menu-parent > a:hover {
	color: #fff;
}

/* Sub Menus */

.nav-primary .genesis-nav-menu .sub-menu {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.nav-primary .genesis-nav-menu .sub-menu a {
	font-weight: 400;
	border-bottom: none;
	padding: 15px 20px;
	font-size: 16px;
	background: transparent;
}

.nav-primary .genesis-nav-menu .sub-menu li:last-of-type a {
	padding-bottom: 20px;
}

.nav-primary .genesis-nav-menu .sub-menu a:hover {
	color: #78c4da;
}

/* Mega Menus */

.nav-primary .genesis-nav-menu .mega-menu {
	max-width: 1220px;
	width: 100%;
	left: 50% !important;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 0 25px;
	font-weight: 500;
}

.genesis-nav-menu .menu-item > .sub-menu {
	display: none;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	display: block;
}

.nav-primary .genesis-nav-menu .mega-menu h2.widgettitle {
	font-size: 16px;
	letter-spacing: 0;
	text-transform: none;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
}

.nav-primary .genesis-nav-menu .mega-menu li {
	margin: 10px 0;
}

.nav-primary .genesis-nav-menu .mega-menu a {
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.nav-primary .genesis-nav-menu .mega-menu ul:not(.sub-menu) {
	-webkit-column-count: 4;
	   -moz-column-count: 4;
	    	column-count: 4;
}

.nav-primary .genesis-nav-menu .mega-menu ul:not(.sub-menu) li {
	page-break-inside: avoid;
	break-inside: avoid-column;
	display: table;
}

.nav-primary .genesis-nav-menu .mega-menu .widget {
	margin: 25px 0;
}

@media (max-width: 1279.98px) {
	.nav-primary {
		display: none;
	}
}

/* ## Secondary Navigation
--------------------------------------------- */

.nav-secondary {
	width: 100%;
	padding: 5px 0;
	text-align: right;
	color: #fff;
	border-bottom: none;
}

.nav-secondary .genesis-nav-menu {
	margin: 5px 0;
}

.nav-secondary .genesis-nav-menu a {
	font-size: 12px;
	color: #fff;
	font-weight: 300;
}

.nav-secondary .genesis-nav-menu a:hover {
	color: #78c4da;
}

@media (max-width: 1199.98px) {
	.nav-secondary {
		width: auto;
		float: right;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
		right: 0;
	}

	.nav-secondary .genesis-nav-menu a {
		font-size: 10px;
	}
}

@media (max-width: 991.98px) {
	.nav-secondary {
		display: none;
	}
}

/* ## Mobile Navigation
--------------------------------------------- */
body:before {
	content: '';
	background: rgba(0,0,0,0);
}

.mobile-toggle-active:before {
	content: '';
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	-webkit-transition: background 0.5s ease;
	-o-transition: background 0.5s ease;
	transition: background 0.5s ease;
}

.mobile-icon-wrapper {
	position: absolute;
	top: 30px;
	right: 25px;
	height: 50px;
	width: 50px;
	cursor: pointer;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	z-index: 1000;
	display: none;
	background: #78c4da;
	border-radius: 5px;
}

.mobile-toggle-active .mobile-icon-wrapper {
	opacity: 0;
}

.mobile-icon-wrapper.stuck {
	position: fixed;
	right: 5%;
}

.mobile-icon-wrapper:hover,
.mobile-icon-wrapper:focus {
	background: #007ac3;
}

.mobile-icon,
.mobile-icon:before,
.mobile-icon:after {
	content: '';
	position: absolute;
	border-radius: 3px;
	height: 4px;
	width: 25px;
	background: #fff;
	z-index: 1000;
}

.mobile-icon {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.mobile-icon:before {
	top: -10px;
}

.mobile-icon:after {
	bottom: -10px;
}

.mobile-menus {
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	pointer-events: none;
	position: fixed;
	top: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.85);
	text-align: center;
	z-index: 1100;
	height: 100%;
	width: 300px;
	right: -301px;
	overflow-y: scroll;
	border-left: 1px solid #d40e8c;
	border-left: 1px solid #d4d10f;
	border-left: 1px solid #007ac3;
	border-left: 1px solid #78c4da;
	-webkit-box-shadow: inset 0 0 300px 100px rgba(255,255,255,0.75);
	        box-shadow: inset 0 0 300px 100px rgba(255,255,255,0.75);
}

.mobile-nav-area .search-form {
	width: calc(100% - 50px);
	margin: 0 25px;
	float: none;
	padding: 0;
	font-size: 14px;
}

.mobile-nav-area .search-form input[type="search"] {
	border-radius: 3px;
	padding: 15px;
}

.mobile-nav-area .search-form input[type="submit"] {
	display: none;
}

.mobile-nav-area .close {
	display: none;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	z-index: 999;
	padding: 50px 30px 30px 0;
}

.mobile-nav-area .close:before,
.mobile-nav-area .close:after {
	content: '';
	display: none;
	width: 30px;
	height: 2px;
	background: #aaa;
}

.mobile-nav-area .close:after {
	-webkit-transform: rotate(45deg) translateX(-1px);
	    -ms-transform: rotate(45deg) translateX(-1px);
	        transform: rotate(45deg) translateX(-1px);
}

.mobile-nav-area .close:before {
	-webkit-transform: rotate(-45deg) translateX(-1px);
	    -ms-transform: rotate(-45deg) translateX(-1px);
	        transform: rotate(-45deg) translateX(-1px);
}

.mobile-menu {
	position: relative;
	width: 100%;
	display: block;
	float: left;
	padding: 25px;
}

.mobile-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	z-index: 1000;
	-webkit-transition: .5s width ease;
	-o-transition: .5s width ease;
	transition: .5s width ease;
}

.mobile-toggle-active .mobile-mask {
	width: 100%;
}

.mobile-toggle-active .mobile-menus {
	pointer-events: initial;
	right: 0;
}

ul.mobile-menu-list {
	display: block;
	padding: 0;
	list-style-type: none;
	position: relative;
	width: 100%;
}

ul.mobile-menu-list > li {
	font-weight: 700;
	border-bottom: 1px solid #eee;
	width: 100%;
	float: left;
	position: relative;
	text-align: left;
}

ul.mobile-menu-list > li:last-of-type {
	border: none;
}

ul.mobile-menu-list li a {
	color: #555;
	text-align: left;
}

ul.mobile-menu-list li a:hover,
ul.mobile-menu-list li a:focus {
	color: #2991d6;
}

ul.mobile-menu-list > li > a {
	float: left;
	padding: 15px 0;
	width: 100%;
}

ul.mobile-menu-list > li.menu-item-has-children > a {
	width: 50%;
}

ul.mobile-menu-list > li.menu-item-has-children > .toggle-indicator {
	content: '+';
	position: relative;
	width: 50%;
	right: 0;
	display: inline-block;
	color: inherit;
	padding: 15px;
	text-align: right;
	cursor: pointer;
}

/* Hide Teem Feed submenu items */

ul.mobile-menu-list > li.team-feed > a {
	width: 100%;
}

ul.mobile-menu-list > li.team-feed > .toggle-indicator {
	display: none;
}

ul.mobile-menu-list > li.menu-item-has-children > ul.sub-menu {
	display: none;
	float: left;
	padding-bottom: 10px;
	width: 100%;
}

ul.mobile-menu-list > li.menu-item-has-children > ul.sub-menu > li {
	font-weight: 400;
	border: none;
	line-height: 1.2;
	margin-bottom: 10px;
}

ul.mobile-menu-list > li.menu-item-has-children > ul.sub-menu > li a {
	font-size: 14px;
	padding: 5px 0;
}

ul.mobile-menu-list > li.menu-item-has-children.active > ul.sub-menu {
	display: block;
}

#secondary-mobile-menu ul.mobile-menu-list li {
	font-weight: 400;
	border: none;
}

#secondary-mobile-menu ul.mobile-menu-list li a {
	font-size: 14px;
	padding: 5px 0;
}

@media (max-width: 1279.98px) {
	.mobile-icon-wrapper {
		display: block;
		right: 0;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

@media (max-width: 575.98px) {
	.mobile-icon-wrapper {
		top: 40px;
	}
}

/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* ## Entries
--------------------------------------------- */

.entry {
	margin: 0;
}

.home .entry {
	margin-bottom: 0;
}

.entry-header {
	background: #f7f7f7;
	margin-bottom: 50px;
	position: relative;
	border-bottom: 2px solid #eee;
}

.entry-header h1.entry-title {
	color: #999;
	margin: 0;
	padding: 25px 0;
	display: inline-block;
	font-size: 28px;
	font-weight: 300;
	width: 50%;
	float: left;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content p,
.entry-content li {
	color: #666;
}

.entry-content ul.list-style-none {
	margin-left: 0;
}

.entry-content ul.list-style-none li {
	list-style: none;
}

@media (max-width: 767.98px) {
	.entry-header h1.entry-title {
		width: 100%;
		font-size: 21px;
	}
}

/* ## Entry Meta
--------------------------------------------- */

/* ## Breadcrumbs
--------------------------------------------- */

.entry-meta,
.breadcrumb {
	background: transparent;
	padding: 0;
	margin: 0;
	display: inline-block;
	float: right;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-weight: 300;
	font-size: 14px;
	font-style: italic;
	color: #999;
	width: 50%;
	text-align: right;
}

.breadcrumb a:hover {
	color: #2991d6;
}

@media (max-width: 1279.98px) {
	.breadcrumb {
		padding-right: 5%;
	}
}

@media (max-width: 767.98px) {
	.entry-meta,
	.breadcrumb {
		display: none;
	}
}

/* ## Pagination
--------------------------------------------- */

.pagination ul {
	margin: 0;
	width: 100%;
	text-align: center;
}

.pagination ul li {
	font-weight: 700;
}

.pagination ul li a {
	padding: 10px;
	color: #78c4da;
}

.pagination ul li.active a,
.pagination ul li.active a:hover,
.pagination ul li.active a:focus {
	color: #2991d6;
}

.pagination ul li a:hover,
.pagination ul li a:focus {
	color: #007ac3;
}

.pagination ul li.pagination-previous a,
.pagination ul li.pagination-next a {
	background: #78c4da;
	border-radius: 5px;
	text-decoration: none;
	border: none;
	font-weight: 300;
	padding: 10px 20px;
	margin: 0;
	color: #fff;
}

.pagination ul li.pagination-previous a:hover,
.pagination ul li.pagination-next a:hover {
	background: #007ac3;
	text-decoration: none;
}

.pagination ul li.pagination-previous {
	float: left;
}

.pagination ul li.pagination-next {
	float: right;
}

.post-nav > div {
	display: inline-block;
	width: 49%;
}

.post-nav .post-prev {
	float: left;
	text-align: left;
}

.post-nav .post-next {
	float: right;
	text-align: right;
}

.post-nav .post-title {
	text-transform: uppercase;
	font-size: 14px;
}

.post-nav a {
	background: #78c4da;
	border-radius: 5px;
	text-decoration: none;
	border: none;
	font-weight: 300;
	padding: 10px 20px;
	margin: 15px 0;
	color: #fff;
	display: inline-block;
}

.post-nav a:hover,
.post-nav a:focus {
	background: #007ac3;
	text-decoration: none;
}

.post-nav a {
	position: relative;
}

.post-nav .post-prev a {
	padding-left: 50px;
}

.post-nav .post-prev a:before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 75%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f060';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: rgba(0,0,0,0.15);
	color: #fff;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.post-nav .post-next a {
	padding-right: 50px;
}

.post-nav .post-next a:after {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 75%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '\f061';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: rgba(0,0,0,0.15);
	color: #fff;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

@media (max-width: 575.98px) {
	.post-nav .post-title {
		display: none;
	}
}

/* ## Comments
--------------------------------------------- */

/* # Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	width: 360px;
}

.sidebar #custom_html-5 {
	display: none;
}

.page-parent .sidebar #custom_html-5,
.page-child .sidebar #custom_html-5,
.page-template-page-staff .sidebar #custom_html-5,
.page-id-10 .sidebar #custom_html-5,
.tax-trials-cat .sidebar #custom_html-5,
.blog .sidebar #custom_html-5,
.single .sidebar #custom_html-5 {
	display: block;
}

@media (max-width: 1279.98px) {
	.sidebar {
		width: 300px;
	}
}

@media (max-width: 1199.98px) {
	.sidebar {
		width: 30%;
	}
}

@media (max-width: 991.98px) {
	.sidebar {
		display: none;
	}
}

/* # Language Footer
---------------------------------------------------------------------------------------------------- */

#translation-footer {
	margin-bottom: 40px;
	background: #007ac3;
	padding: 50px 0;
	text-align: center;
	color: #fff;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

#translation-footer h6 {
	color: #fff;
	font-weight: 400;
}

#translation-footer ul {
	-webkit-column-count: 4;
	   -moz-column-count: 4;
	    	column-count: 4;
}

#translation-footer ul li a {
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	line-height: 1.5;
}

#translation-footer ul li a:hover {
	color: #33ccff;
}

@media (max-width: 991.98px) {
	#translation-footer ul {
		-webkit-column-count: 3;
		   -moz-column-count: 3;
		        column-count: 3;
	}
}

@media (max-width: 767.98px) {
	#translation-footer ul {
		-webkit-column-count: 2;
		   -moz-column-count: 2;
		        column-count: 2;
	}
}

@media (max-width: 575.98px) {
	#translation-footer ul {
		-webkit-column-count: 1;
		   -moz-column-count: 1;
		        column-count: 1;
	}
}

/* # Site Footer
---------------------------------------------------------------------------------------------------- */

/* ## Footer Widgets
--------------------------------------------- */

.site-footer {
	padding: 0;
	background-color: #222;
	background-image: url(../../images/gray-diamond-trans.png);
	color: #ddd;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	border: none;
}

.home .site-footer {
	margin-top: 0;
}

.site-footer h3.widgettitle {
	display: block;
	font-size: 18px;
	color: #fff;
	letter-spacing: 2px;
}

.site-footer .copyright {
	margin-top: 50px;
	padding: 30px 0;
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
	text-align: center;
}

.footer-widget-area {
	width: 33.3333%;
	float: left;
	padding: 0;
}

.footer-widget-area > section {
	width: 90%;
}

.footer-widgets-1 > section {
	float: left;
}

.footer-widgets-2 > section {
	margin: 0 auto;
}

.footer-widgets-3 > section {
	float: right;
}

.site-footer p {
	margin-bottom: 13px;
	font-weight: 600;
	line-height: 1.5;
	font-size: 14px;
}

.site-footer hr {
	border-color: #ccc;
}

.site-footer .button {
	background: #78c4da;
}

.site-footer .button:hover {
	background: #007ac3;
}

.site-footer .sm-links .button {
	float: left;
	margin: 0 15px 0 0;
}

.site-footer .sm-links .fb_iframe_widget {
	margin-top: 3px;
}

@media (max-width: 991.98px) {
	.footer-widget-area {
		width: 100%;
		margin-bottom: 50px;
	}

	.footer-widget-area > section {
		width: 100%;
	}

	.site-footer .copyright {
		text-align: left;
	}
}

/* ## Recent News Widget
--------------------------------------------- */

.widget_recent_entries li a {
	display: block;
	background: rgba(0,0,0,0.25);
	width: 100%;
	margin-bottom: 5px;
	padding: 20px 15px;
	border-left: 3px solid #a6ce39;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(0,0,0,0.25)), color-stop(50%, #a6ce39));
	background: -webkit-linear-gradient(right, rgba(0,0,0,0.25) 50%, #a6ce39 50%);
	background: -o-linear-gradient(right, rgba(0,0,0,0.25) 50%, #a6ce39 50%);
	background: linear-gradient(to left, rgba(0,0,0,0.25) 50%, #a6ce39 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	-webkit-transition:all .25s ease-in-out;
	-o-transition:all .25s ease-in-out;
	transition:all .25s ease-in-out;
	font-size: 14px;
	font-weight: 700;
	color: #ccc;
}

.widget_recent_entries li a:hover {
	background-position: left bottom;
}

.widget_recent_entries li:hover a {
	color: #333;
}

.widget_recent_entries li span.post-date {
	display: block;
	font-size: 14px;
	font-weight: 300;
	font-style: italic;
	color: #aaa;
}

.widget_recent_entries li:hover span.post-date {
	color: #333;
}

/* ## Facebook Feed Widget
--------------------------------------------- */

#cff.narrow .cff-album-item.cff-col-3,
#cff.narrow .cff-album-item.cff-col-4 {
	width: 30%;
	margin-right: 0;
}

#cff.narrow .cff-album-item.cff-col-3,
#cff.narrow .cff-album-item.cff-col-4:not(:nth-child(3n)) {
	margin-right: 5%;
}

._2p3a {
	width: 100% !important;
}

@media (max-width: 991.98px) {
	#cff {
		width: 105%;
		margin: 0 -2.5% !important;
	}

	#cff .cff-album-item {
		width: calc(33.3333% - 5%) !important;
		margin: 15px 2.5% !important;
	}
}

/* ## Newsletter Sign-up Widget
--------------------------------------------- */

.site-footer #gform_widget-2 .gform_wrapper .gfield input[type="text"] {
	width: 100%;
	padding: 10px 15px;
	border-radius: 5px;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield input[type="text"]::-webkit-input-placeholder {
	color: #999;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield input[type="text"]:-ms-input-placeholder {
	color: #999;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield input[type="text"]::-ms-input-placeholder {
	color: #999;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield input[type="text"]::placeholder {
	color: #999;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield input[type="text"]:focus {
	color: #333;
}

.site-footer #gform_widget-2 .gform_wrapper li.gfield.gf_left_half {
	width: 60%;
	float: left;
	margin-top: 0;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield .ginput_container {
	margin-top: 0;
}

.site-footer #gform_widget-2 .gform_wrapper .gfield_label {
	display: none;
}

.site-footer #gform_widget-2 .gform_wrapper .gform_footer {
	float: left;
	clear: none;
	margin: 0;
	padding: 0;
	width: 40%;
}

.site-footer #gform_widget-2 .gform_wrapper .gform_footer input[type="submit"] {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	padding: 10px 20px;
	background: #78c4da;
	width: 100%;
	margin-right: 0;
}

.site-footer #gform_widget-2 .gform_wrapper .gform_footer input[type="submit"]:hover {
	background: #007ac3;
}

@media (max-width: 991.98px) {
	.site-footer #gform_widget-2 .gform_wrapper li.gfield.gf_left_half {
		width: 100%;
		margin-bottom: 25px;
	}

	.site-footer #gform_widget-2 .gform_wrapper .gform_footer {
		width: 150px;
	}
}

/* # Home
---------------------------------------------------------------------------------------------------- */
.home .site-inner section {
	padding: 25px 0;
	margin: 25px 0;
}

.home .site-inner section:not(#hero) {
	-webkit-animation-delay: 500ms;
	        animation-delay: 500ms;
	-webkit-animation-duration: .5s;
	        animation-duration: .5s;
	-webkit-animation-fill-mode: backwards;
	        animation-fill-mode: backwards;
	-webkit-animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	        animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	-webkit-animation-name: fadeInUp;
	        animation-name: fadeInUp;
}

.home #hero {
	padding: 0;
	margin: 0;
	height: calc(100vh - 179px);
	background-color: #0A59A6;
	position: relative;
}

.home #hero .slick-slider,
.home #hero .slick-list,
.home #hero .slick-track,
.home #hero .slick-slide,
.home #hero .slick-slide > div,
.home #hero .hero-slide,
.home #hero .hero-slide .wrap {
	width: 100%;
	height: 100%;
}

.home #hero .hero-slide {
	display: inline-flex !important;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.home #hero .hero-slide .row {
	width: 100%;
}

.home #hero .hero-slide .graphic {
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 25%;
	position: relative;
	width: 100%;
	height: 100%;
}

.home #hero .hero-slide .graphic img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.home #hero .hero-slide .graphic.contain {
	background: none !important;
}

.home #hero .hero-slide .graphic.cover img {
	display: none;
}

.home #hero .hero-slide .text {
	width: 100%;
	height: 100%;
	position: relative;
}

.home #hero .hero-slide .text .text-content {
	color: #fff;
	width: 75%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.home #hero .hero-slide .text .text-content > * {
	color: #fff;
	text-shadow: 0 0 25px rgba(0,0,0,0.15);
	margin-bottom: 0;
}

.home #hero .hero-slide .text .text-content h1 {
	font-size: 72px;
	font-weight: 700;
}

.home #hero .hero-slide .text .text-content h2 {
	font-size: 60px;
	font-weight: 700;
}

.home #hero .hero-slide .text .text-content h3 {
	font-size: 48px;
	font-weight: 700;
}

.home #hero .hero-slide .text .text-content h4 {
	font-size: 36px;
	font-weight: 700;
}

.home #hero .hero-slide .text .text-content h5 {
	font-size: 30px;
	font-weight: 700;
}

.home #hero .hero-slide .text .text-content h6 {
	font-size: 28px;
	font-weight: 700;
}

@media only screen and (max-width: 1919.98px) {
	.home #hero .hero-slide .text .text-content h1 {
		font-size: 60px;
	}

	.home #hero .hero-slide .text .text-content h2 {
		font-size: 48px;
	}

	.home #hero .hero-slide .text .text-content h3 {
		font-size: 36px;
	}

	.home #hero .hero-slide .text .text-content h4 {
		font-size: 30px;
	}

	.home #hero .hero-slide .text .text-content h5 {
		font-size: 28px;
	}

	.home #hero .hero-slide .text .text-content h6 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 991.98px) {
	.home #hero {
		height: auto;
		overflow: visible;
	}

	.home #hero .hero-slide .graphic {
		display: flex;
		-webkit-justify-content: center;
		        justify-content: center;
		-webkit-align-items: center;
		        align-items: center;
	}

	.home #hero .hero-slide .graphic img {
		position: relative;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		left: unset;
		top: unset;
	}

	.home #hero .hero-slide .text {
		text-align: center;
	}

	.home #hero .hero-slide .text .wrap {
		max-width: none;
		margin: 0;
		display: flex;
		-webkit-justify-content: center;
		        justify-content: center;
		-webkit-align-items: center;
		        align-items: center;
	}

	.home #hero .hero-slide .text .text-content {
		width: 100%;
		margin-bottom: 0;
		position: relative;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		left: unset;
		top: unset;
		padding: 35px 0;
	}

	.home #hero .hero-slide .text .text-content h1 {
		font-size: 48px;
		font-weight: 400;
	}

	.home #hero .hero-slide .text .text-content h2 {
		font-size: 36px;
		font-weight: 400;
	}

	.home #hero .hero-slide .text .text-content h3 {
		font-size: 30px;
		font-weight: 400;
	}

	.home #hero .hero-slide .text .text-content h4 {
		font-size: 28px;
		font-weight: 400;
	}

	.home #hero .hero-slide .text .text-content h5 {
		font-size: 24px;
		font-weight: 400;
	}

	.home #hero .hero-slide .text .text-content h6 {
		font-size: 21px;
		font-weight: 400;
	}

	.home #hero .slick-dots,
	.home #hero .slick-arrow {
		display: none !important;
	}
}

/*
.home #hero .graphic {
	text-align: center;
	min-height: 500px;
	background-color: rgba(117, 177, 201);
	background-image: url(../../images/hero-pattern.png);
	background-size: contain;
	background-repeat: repeat-x;
	background-position: bottom;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.home #hero .graphic img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
*/
.home #intro .events-preview h6 {
	font-size: 18px;
	color: #ccc;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 10px 0 25px;
}

.home #intro .events-preview a.all-events {
	font-weight: 400;
	font-size: 13px;
	font-style: italic;
}

.home #directory {
	background: url(../../images/diamond-texture.png);
	background-repeat: repeat-x;
	background-size: cover;
	padding: 30px 0;
}

.home #directory .tabs {
	margin-bottom: 50px;
}

.home #affiliates {
	text-align: center;
}

@media (max-width: 1198.98px) {
	.home ul.events-feed li.event-item {
		height: auto;
	}
}

@media (max-width: 1023.98px) {
	.home #hero .graphic {
		min-height: 50vw;
	}
}

@media (max-width: 575.98px) {
	.home ul.events-feed li.event-item {
		width: 100%;
		margin-right: 0;
	}

	.home ul.events-feed li.event-item > a {
		float: left;
	}

	.home ul.events-feed li.event-item figure.thumbnail {
		float: none;
	}

	.home ul.events-feed li.event-item .event-details {
		width: 100%;
	}
}

/* # Events
---------------------------------------------------------------------------------------------------- */

ul.events-feed {
	margin: 0;
	float: left;
	width: 100%;
}

ul.events-feed li.event-item {
	list-style-type: none;
	width: 350px;
	display: inline-block;
	margin-right: 25px;
}

ul.events-feed li.event-item {
	margin-bottom: 25px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #333;
	float: left;
}

ul.events-feed li.event-item figure.thumbnail {
	width: 150px;
	height: 150px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-right: 15px;
	float: left;
}

ul.events-feed li.event-item figure.thumbnail img {
	width: 100%;
	height: auto;
	margin: 0;
}

ul.events-feed li.event-item h4.event-title {
	font-size: 18px;
	margin-bottom: 5px;
	letter-spacing: 0;
}

ul.events-feed li.event-item:hover figure.thumbnail {
	border-color: #78c4da;
}

ul.events-feed li.event-item:hover h4.event-title {
	color: #78c4da;
}

ul.events-feed li.event-item .event-details {
	width: 175px;
}

ul.events-feed li.event-item p {
	font-size: 14px;
	margin-bottom: 0;
}

@media only screen and (max-width: 1199.98px) {
	ul.events-feed li.event-item {
		display: block;
		width: auto;
		height: 250px;
	}

	ul.events-feed li.event-item figure.thumbnail {
		margin-bottom: 15px;
	}
}

@media (max-width: 575.98px) {
	ul.events-feed li.event-item .event-details {
		width: 125px;
	}

	ul.events-feed li.event-item figure.thumbnail {
		width: 125px;
		height: 125px;
	}
}

@media (max-width: 375px) {
	ul.events-feed li.event-item {
		margin-right: 0;
	}
}

@media (max-width: 320px) {

}


/* ## Calendar
--------------------------------------------- */

#calendar {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.fc-event {
	background: #78c4da !important;
	border-color: #78c4da !important;
	padding: 10px 5px !important;
	margin: 5px !important;
	border-radius: 3px !important;
}

.fc-event:hover {
	background: #33ccff !important;
	border-color: #33ccff !important;
}

.fc-content {
	font-weight: 300 !important;
	font-family: 'Open Sans', sans-serif !important;
}

.fc-time {
	font-weight: 600 !important;
}

.fc-month-view .fc-time {
	display: block !important;
}

.fc-title {
	display: block !important;
}

td.fc-today.fc-state-highlight {
	border-color: #ddd !important;
	background: #007ac3 !important;
}

.eo-fullcalendar-reset .fc-content-skeleton td.fc-day-number,
.eo-fullcalendar-reset .fc-view-container td.fc-day-number {
	padding: 10px !important;
	opacity: .5;
	margin-bottom: -25px !important;
	font-size: 36px !important;
	z-index: -1 !important;
	font-family: 'Open Sans', sans-serif !important;
	font-weight: 700 !important;
	padding: 10px !important;
}

.eo-fullcalendar-reset .fc-content-skeleton td.fc-day-number.fc-other-month,
.eo-fullcalendar-reset .fc-view-container td.fc-day-number.fc-other-month {
	opacity: .25 !important;
}

.eo-fullcalendar-reset .fc-content-skeleton td.fc-day-number.fc-today.fc-state-highlight,
.eo-fullcalendar-reset .fc-view-container td.fc-day-number.fc-today.fc-state-highlight {
	color: #fff !important;
	opacity: 1 !important;
}

.fc-button {
	position: relative !important;
	background: #fff !important;
	border: 1px solid #ccc !important;
	margin: 1px !important;
	border-radius: 3px !important;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
	opacity: 1 !important;
	text-shadow: none !important;
	font-weight: 400 !important;
	-webkit-transition: all .2s ease !important;
	-o-transition: all .2s ease !important;
	transition: all .2s ease !important;
}

.fc-button:hover,
.fc-button:focus {
	background: #007ac3 !important;
	border: 1px solid #007ac3 !important;
	color: #fff !important;
}

.fc-button.fc-state-disabled,
.fc-button.fc-state-disabled:hover,
.fc-button.fc-state-disabled:focus {
	background: #ddd !important;
	border-color: #ccc !important;
	color: #999 !important;
	cursor: not-allowed;
	text-shadow: 0 1px 1px rgba(255,255,255,.75) !important;
}

.fc-prev-button,
.fc-next-button {
	width: 50px !important;
}

.fc-icon-right-single-arrow:after,
.fc-icon-left-single-arrow:after {
	font-size: 30px;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	-webkit-transform: translate(-50%) !important;
	    -ms-transform: translate(-50%) !important;
	        transform: translate(-50%) !important;
	line-height: 0 !important
}

.fc button .fc-icon {
	top: 0 !important;
	margin: 0 !important;
	position: unset !important;
}

.eo-fullcalendar-reset .fc-view-container th.fc-day-header {
	text-transform: uppercase !important;
	letter-spacing: 2px !important;
	font-weight: 200 !important;
	color: #555 !important;
	font-size: 18px !important;
	padding: 10px 0 !important;
}

.fc-center h2 {
	font-size: 30px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 3px !important;
	color: #999;
}

@media (max-width: 767.98px) {
	#calendar,
	.eo-fullcalendar-loading,
	.eo-fullcalendar {
		display: none;
	}
}

/* # News (Blog)
---------------------------------------------------------------------------------------------------- */

.blog .post {
	margin-bottom: 25px;
}

.blog .post {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.blog .post figure {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}

.blog .post h4.entry-title {
	font-size: 18px;
	margin-bottom: 5px;
	letter-spacing: 0;
}

.blog .post p {
	margin-bottom: 0;
	font-size: 14px;
}

.blog .post:hover h4.entry-title {
	color: #78c4da;
}

.blog .post:hover figure {
	border-color: #78c4da;
}

@media (max-width: 575.98px) {
	.blog .post {
		display: block;
	}

	.blog .post .post-details {
		width: 100%;
		float: left;
		margin-top: 15px;
	}

	.mobile-hide {
		display: none;
	}
}

/* # Our Team
---------------------------------------------------------------------------------------------------- */

.page-template-page-staff .sidebar li.menu-item-has-children > a {
	display: none !important;
}

.page-template-page-staff .staff-member h4.staff-member-name {
	font-size: 14px;
	text-align: center;
	float: left;
	width: 100%;
	padding-top: 15px;
	text-transform: none;
	letter-spacing: 0;
	font-family: 'Open Sans', sans-serif;
}

.page-template-page-staff .staff-member figure.thumbnail {
	width: 100%;
	height: 225px;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.page-template-page-staff section#physicians {
	margin-top: -150px;
	padding-top: 150px;
}

.page-template-page-staff section#medical-staff {
	margin-top: -100px;
	padding-top: 150px;
}

.page-template-page-staff .staff-member figure.thumbnail img {
	height: 0;
}

.page-template-page-staff .staff-member:hover h4.staff-member-name {
	color: #78c4da;
}

.page-template-page-staff .staff-member:hover figure.thumbnail {
	border-color: #78c4da;
}

.single-staff .locations-services ul {
	margin: 15px 0 0;
}

.single-staff .locations-services ul li {
	list-style-type: none;
}

.single-staff .mda-certified {
	float: left;
	width: 100%;
}

.page-template-page-staff hr {
	margin-bottom: 25px;
}

@media (max-width: 767.98px) {
	.page-template-page-staff .staff-member figure.thumbnail {
		height: 250px;
	}
}

@media (max-width: 375px) {
	.page-template-page-staff .staff-member figure.thumbnail {
		height: 200px;
	}
}

/* # Contact Page
---------------------------------------------------------------------------------------------------- */

.page-template-page-contact .contact-info {
	margin-bottom: 50px;
}

.page-template-page-contact .contact-info .row:first-of-type {
	margin-bottom: 15px;
}

.page-template-page-contact .contact-info h4 {
	margin: 0;
	color: #007ac3;
	font-size: 21px;
	letter-spacing: 1px;
}

.page-template-page-contact .contact-info p {
	font-size: 16px;
	margin: 0;
}

.page-template-page-contact .contact-info .fa-square {
	color: #007ac3;
}

.page-template-page-contact .contact-info .info-tile {
	margin-bottom: 15px;
}

/* Contact Form Page */
.page-template-page-contact-form .contact-info {
	margin-bottom: 50px;
}

.page-template-page-contact-form .contact-info .row:first-of-type {
	margin-bottom: 15px;
}

.page-template-page-contact-form .contact-info h4 {
	margin: 0;
	color: #007ac3;
	font-size: 21px;
	letter-spacing: 1px;
}

.page-template-page-contact-form .contact-info p {
	font-size: 16px;
	margin: 0;
}

.page-template-page-contact-form .contact-info .fa-square {
	color: #007ac3;
}

.page-template-page-contact-form .contact-info .info-tile {
	margin-bottom: 15px;
}


/* # Clinical Trials Page
---------------------------------------------------------------------------------------------------- */

/* # Location Pages
---------------------------------------------------------------------------------------------------- */

.page-template-page-location .entry-header {
	margin-bottom: 0;
}

/* Map */

.map-holder {
	width: 100%;
	height: 400%; /* .map-holder .acf-map same */
	position: relative;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.acf-map {
	width: 100%;
	height: 400px; /* .map-holder .acf-map same */
}

.acf-map img { /* fixes potential theme css conflict */
   max-width: inherit !important;
}

.window {
	position: absolute;
	z-index: 100;
	right: 0;
	top: 0;
	margin-top: 100px;
	background: #007ac3;
	width: 250px;
	color: #fff;
	padding: 25px;
}

.window a.directions {
	color: #fff;
	border-bottom: 1px solid transparent;
	font-size: 14px;
}

.window a.directions:hover {
	border-color: #fff;
}

.window .location-title {
	color: #fff;
	font-weight: 300;
	text-transform: none;
	font-size: 21px;
	letter-spacing: 0;
	font-family: 'Open Sans';
	margin-bottom: 10px;
}

@media (max-width: 575.98px) {
	.window {
		display: none;
	}
}

/* Details */

.details {
	margin: 50px 0 100px;
	font-weight: 700;
	font-size: 15px;
	color: #333;
}

.details h3 {
	color: #007ac3;
	margin-bottom: 10px;
	font-weight: 300;
	font-size: 24px;
	text-transform: none;
	letter-spacing: 1px;
}

.details a {
	color: #333;
}

.details a:hover {
	color: #007ac3;
}

.details i {
	font-size: 48px;
	color: #007ac3;
}

.details-tile {
	margin-bottom: 15px;
}

/* # Single Posts
---------------------------------------------------------------------------------------------------- */

/* ## Single Blog Post
--------------------------------------------- */

.single .entry-header h1.entry-title {
	font-size: 24px;
	text-transform: none;
}

.single-post .sidebar #custom_html-5 {
	border: none;
}

.single-post .sidebar #custom_html-5 h3.widgettitle {
	display: none;
}

.single-post .sidebar #custom_html-5 a.button {
	width: 100%;
	padding: 15px 30px;
	margin: 0;
}

.single-staff .sidebar #custom_html-5,
.single-trials .sidebar #custom_html-5,
.archive .sidebar #custom_html-5,
.single-event .sidebar #custom_html-5 {
	border: none;
}

.single-staff .sidebar #custom_html-5 h3.widgettitle,
.single-trials .sidebar #custom_html-5 h3.widgettitle,
.archive .sidebar #custom_html-5 h3.widgettitle,
.single-event .sidebar #custom_html-5 h3.widgettitle {
	display: none;
}

.single-staff .sidebar #custom_html-5 a.button,
.single-trials .sidebar #custom_html-5 a.button,
.archive .sidebar #custom_html-5 a.button,
.single-event .sidebar #custom_html-5 a.button {
	width: 100%;
	padding: 15px 30px;
	margin: 0;
}

figure.featured-image img {
	border: 1px solid #ccc;
	border-radius: 5px;
}

@media (max-width: 767.98px) {
	.single .entry-header h1.entry-title {
		font-size: 21px;
		letter-spacing: 1px;
	}
}

@media (max-width: 575.98px) {
	figure.featured-image {
		width: 100%;
		float: left;
	}
}

/* ## Single Clinical Trial
--------------------------------------------- */

@media (max-width: 575.98px) {
	.single-trials .trial-field .label p {
		margin-bottom: 0;
		font-weight: 700;
	}

	.single-trials .trial-field .value {
		margin-bottom: 30px;
	}

	.single-trials .trial-field .value p,
	.single-trials .trial-field .value ul {
		margin-bottom: 0;
	}
}

/* # Taxonomy Pages
---------------------------------------------------------------------------------------------------- */

.tax-trials-cat .trials.entry {
	margin-bottom: 25px;
}

.tax-trials-cat .trials.entry .phase {
	float: left;
	font-weight: 700;
	text-transform: uppercase;
	color: #ccc;
	margin: 15px 0;
}

.tax-trials-cat .trials.entry .button {
	float: right;
}

section > li.trials-cat {
	margin-bottom: 30px;
	font-size: 21px;
	font-weight: 700;
}

section > li.trials-cat > ul {
	margin-top: 15px;
}

li.cat-item {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}

/* # Archive Pages
---------------------------------------------------------------------------------------------------- */

/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {

}

/* # Print Styles
---------------------------------------------------------------------------------------------------- */

/* # Animation
---------------------------------------------------------------------------------------------------- */

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: backwards;
	animation-fill-mode: backwards;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
	0%,
	4%,
	10.6%,
	16%,
	20% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: rotate(-90deg) translateY(0);
		transform: rotate(-90deg) translateY(0); }

	8%,
	8.6% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: rotate(-90deg) translateY(-30px);
		transform: rotate(-90deg) translateY(-30px); }

	14% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: rotate(-90deg) translateY(-15px);
		transform: rotate(-90deg) translateY(-15px); }

	18% {
		-webkit-transform: rotate(-90deg) translateY(-4px);
		transform: rotate(-90deg) translateY(-4px); } }

@keyframes bounce {
	0%,
	4%,
	10.6%,
	16%,
	20% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: rotate(-90deg) translateY(0);
		transform: rotate(-90deg) translateY(0); }

	8%,
	8.6% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: rotate(-90deg) translateY(-30px);
		transform: rotate(-90deg) translateY(-30px); }

	14% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: rotate(-90deg) translateY(-15px);
		transform: rotate(-90deg) translateY(-15px); }

	18% {
		-webkit-transform: rotate(-90deg) translateY(-4px);
		transform: rotate(-90deg) translateY(-4px); } }

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -25px, 0);
		transform: translate3d(0, -25px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -25px, 0);
		transform: translate3d(0, -25px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDown {
	animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
	-webkit-animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
	-webkit-animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
	-webkit-animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
	-webkit-animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
}

.fadeOutDown {
	animation-name: fadeOutDown;
	-webkit-animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
}

.fadeOutLeft {
	animation-name: fadeOutLeft;
	-webkit-animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
}

.fadeOutRight {
	animation-name: fadeOutRight;
	-webkit-animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -25px, 0);
		transform: translate3d(0, -25px, 0);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -25px, 0);
		transform: translate3d(0, -25px, 0);
	}
}

.fadeOutUp {
	animation-name: fadeOutUp;
	-webkit-animation-name: fadeOutUp;
}

@-webkit-keyframes fadeInScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.9875);
		transform: scale(0.9875);
		filter: blur(4px);
		-webkit-filter: blur(4px);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
		filter: none;
		-webkit-filter: none;
	}
}

@keyframes fadeInScale {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.9875);
		transform: scale(0.9875);
		filter: blur(4px);
		-webkit-filter: blur(4px);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
		filter: none;
		-webkit-filter: none;
	}
}
.fadeInScale {
	animation-name: fadeInScale;
	-webkit-animation-name: fadeInScale;
}

@-webkit-keyframes fadeOutScale {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		filter: none;
		-webkit-filter: none;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(0.9875);
		transform: scale(0.9875);
		filter: blur(4px);
		-webkit-filter: blur(4px);
	}
}

@keyframes fadeOutScale {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		filter: none;
		-webkit-filter: none;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(0.9875);
		transform: scale(0.9875);
		filter: blur(4px);
		-webkit-filter: blur(4px);
	}
}

.fadeOutScale {
	animation-name: fadeOutScale;
	-webkit-animation-name: fadeOutScale;
}

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

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

.anim {
	animation-duration: 0.55s;
	animation-fill-mode: backwards;
	animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
	-webkit-animation-duration: 0.55s;
	-webkit-animation-fill-mode: backwards;
	-webkit-animation-timing-function: cubic-bezier(0.2, 0.3, 0.25, 0.9);
}
.anim.infinite {
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.anim.hinge {
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
}

.delay-50 {
	animation-delay: 0.05s;
	-webkit-animation-delay: 0.05s;
}

.delay-100 {
	animation-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
}

.delay-150 {
	animation-delay: 0.15s;
	-webkit-animation-delay: 0.15s;
}

.delay-200 {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}

.delay-250 {
	animation-delay: 0.25s;
	-webkit-animation-delay: 0.25s;
}

.delay-300 {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}

.delay-350 {
	animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
}

.delay-400 {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

.delay-450 {
	animation-delay: 0.45s;
	-webkit-animation-delay: 0.45s;
}

.delay-500 {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}

.delay-550 {
	animation-delay: 0.55s;
	-webkit-animation-delay: 0.55s;
}

.delay-600 {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

.delay-650 {
	animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
}

.delay-700 {
	animation-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
}

.delay-750 {
	animation-delay: 0.75s;
	-webkit-animation-delay: 0.75s;
}

.delay-800 {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}

.delay-850 {
	animation-delay: 0.85s;
	-webkit-animation-delay: 0.85s;
}

.delay-900 {
	animation-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
}

.delay-950 {
	animation-delay: 0.95s;
	-webkit-animation-delay: 0.95s;
}

.delay-1000 {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}

.delay-1050 {
	animation-delay: 1.05s;
	-webkit-animation-delay: 1.05s;
}

.delay-1100 {
	animation-delay: 1.1s;
	-webkit-animation-delay: 1.1s;
}

.delay-1150 {
	animation-delay: 1.15s;
	-webkit-animation-delay: 1.15s;
}

.delay-1200 {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}

.delay-1250 {
	animation-delay: 1.25s;
	-webkit-animation-delay: 1.25s;
}

.delay-1300 {
	animation-delay: 1.3s;
	-webkit-animation-delay: 1.3s;
}

.delay-1350 {
	animation-delay: 1.35s;
	-webkit-animation-delay: 1.35s;
}

.delay-1400 {
	animation-delay: 1.4s;
	-webkit-animation-delay: 1.4s;
}

.delay-1450 {
	animation-delay: 1.45s;
	-webkit-animation-delay: 1.45s;
}

.delay-1500 {
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
}

.delay-2000 {
	animation-delay: 2000ms;
	-webkit-animation-delay: 2000ms;
}

.delay-2500 {
	animation-delay: 2500ms;
	-webkit-animation-delay: 2500ms;
}

.delay-3000 {
	animation-delay: 3000ms;
	-webkit-animation-delay: 3000ms;
}

.delay-4000 {
	animation-delay: 4000ms;
	-webkit-animation-delay: 4000ms;
}

.delay-5000 {
	animation-delay: 5000ms;
	-webkit-animation-delay: 5000ms;
}
