/*
Theme Name: Mondo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mondo
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Mondo is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

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

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

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  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/ */
  box-sizing: inherit;
}

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

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

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin: 1.5em 0;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
  margin-bottom: 0;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

figure {
  margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 15px 17px rgba(255, 255, 255, 0.5),
    inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 15px 17px rgba(255, 255, 255, 0.8),
    inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5),
    inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

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;
  border-radius: 0;
  border: none;
  padding: 3px;
}

select {
  border: 1px solid #ccc;
}

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: #111;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul ul li {
}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  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.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

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

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content: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 {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

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

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

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

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

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.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 {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## General
--------------------------------------------------------------*/

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.edit-link {
  display: none;
}

#credits {
  background: black;
  color: #bbb;
  text-align: right;
  overflow: hidden;
  font-family: Lato, sans-serif;
  font-size: 14px;
}

#credits p {
  color: inherit;
  font-family: inherit;
  margin: 10px 0;
  font-size: inherit;
}

#credits a {
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

#credits a:hover {
  text-decoration: none;
}

#credits a:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: white;
  top: 100%;
  left: 0;
  transition: width 0.2s;
}

#credits a:hover:after {
  width: 100%;
}

/*--------------------------------------------------------------
## Custom
--------------------------------------------------------------*/

body {
  font-family: Lato, sans-serif;
  overflow-x: hidden;
}

a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header-absolute {
  position: fixed;
  z-index: 1;
  width: 100%;
}

.site-branding {
  float: left;
  margin-top: 5px;
  width: 50%;
  max-width: 220px;
}

.main-navigation {
  float: right;
  width: auto;
  clear: none;
  background: rgba(235, 235, 235, 0.8);
}

.main-navigation a {
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.main-navigation ul ul a {
  max-width: 400px;
  width: auto;
  white-space: nowrap;
}

.main-navigation ul ul {
  top: 100%;
  background: rgba(235, 235, 235, 0.8);
}

.mondo-latest-post .mondo-responsive-image {
  height: 400px;
  width: 50%;
  float: left;
}

.mondo-responsive-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mondo-latest-post {
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.mondo-latest-post-content {
  float: left;
  width: 50%;
  padding-left: 20px;
}

a.acf-button,
a.mondo-button,
button.mondo-button,
input[type="submit"].is-search-submit,
input[type="submit"].acf-button,
.alm-btn-wrap .alm-load-more-btn,
input[type="submit"].gform_button {
  background: #b81c27;
  color: white !important;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 20px;
  text-transform: uppercase;
  vertical-align: middle;
  margin: 0;
  transition: background-color 200ms;
  border-radius: 0;
  box-shadow: none;
  border: none;
  text-shadow: none;
  display: inline-block;
  font-family: Lato, sans-serif;
}

.mondo-event-acf {
  background: white;
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ccc;
}

.error404 .site-content .search-form {
  width: 100%;
  background: #ebebeb;
  margin: 20px 0;
  padding: 20px;
  overflow: hidden;
}

.error404 .site-content .search-form input[type="search"] {
  width: calc(100% - 120px);
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  float: left;
}

input[type="submit"].is-search-submit {
  padding: 10px;
  width: 100px;
  margin-left: 20px;
  display: block;
  float: left;
  line-height: 24px;
}

a.mondo-button:hover,
a.acf-button:hover,
button.mondo-button:hover,
input[type="submit"].is-search-submit:hover,
input[type="submit"].acf-button:hover {
  color: white;
  background: #90141d;
  text-decoration: none;
  box-shadow: none;
  text-shadow: none;
}

#tribe-bar-form .tribe-bar-submit input[type="submit"] {
  background: #b81c27;
  color: white;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 20px;
  text-transform: uppercase;
  vertical-align: middle;
  margin: 0;
  transition: background-color 200ms;
  border-radius: 0;
  box-shadow: none;
  border: none;
  text-shadow: none;
}

#tribe-bar-form .tribe-bar-submit input[type="submit"]:hover {
  color: white;
  background: #90141d;
  text-decoration: none;
  box-shadow: none;
  text-shadow: none;
}

a.mondo-button-small {
  font-size: 13px;
  padding: 10px 12px;
  margin: 0 10px;
}

#footer-top {
  text-align: center;
  margin-bottom: 20px;
}

#footer-top .widget {
  margin-bottom: 0;
}

#colophon {
  background: #ebebeb;
  padding-top: 20px;
}

.footer-columns > .widget-area {
  width: 20%;
  float: left;
  text-align: right;
  text-transform: uppercase;
}

.footer-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-columns .widget-title {
  font-size: 17px;
  margin-bottom: 5px;
}

.footer-columns li {
  font-size: 13px;
  font-weight: 700;
}

.site-info {
  overflow: hidden;
}

.footer-tag {
  background: #404040;
  color: white;
  overflow: hidden;
}

#footer-bottom-left {
  float: left;
}

#footer-bottom-right {
  float: right;
}

.footer-tag .widget,
.footer-tag p {
  margin: 5px 0;
}

.footer-tag p {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.mondo-listing-tiles {
  margin-top: 40px;
  overflow: hidden;
}

.mondo-tile {
  position: relative;
}

.mondo-listing-tile {
  width: calc(50% - 20px);
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
}

.mondo-listing-tile:nth-of-type(2n) {
  margin-right: 0;
}

.mondo-tile-content {
  text-align: center;
}

.mondo-listing-tile > .mondo-tile-content {
  margin: 100px auto;
  max-width: 300px;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.6);
  padding: 25px 0;
  transition: background-color 200ms;
}

.mondo-listing-tile:hover > .mondo-tile-content {
  background-color: transparent;
}

.mondo-tile > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mondo-tile-underlay,
.mondo-tile-content {
  pointer-events: none;
}

.mondo-listing-tile > .mondo-tile-underlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 200ms;
}

.mondo-listing-tile:hover > .mondo-tile-underlay {
  background: rgba(0, 133, 207, 0.5);
}

.mondo-listing-tile .mondo-tile-content h2 {
  text-transform: uppercase;
  color: #0085cf;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.mondo-listing-tile .mondo-tile-content h1 {
  font-family: Lora, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  margin: 0;
  line-height: 100%;
}

.mondo-listing-tile:hover .mondo-tile-content h1,
.mondo-listing-tile:hover .mondo-tile-content h2 {
  color: white;
  transition: color 200ms;
}

.mondo-secondary-tiles {
  overflow: hidden;
}

.mondo-secondary-tile {
  width: calc(50% - 20px);
  margin-right: 40px;
  margin-bottom: 40px;
  float: left;
}

.mondo-secondary-tile:nth-of-type(2n) {
  margin-right: 0;
}

.mondo-secondary-tile .mondo-tile-content {
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: Lora, serif;
  margin: 60px 0;
}

.mondo-secondary-tile .mondo-tile-content h1 {
  padding: 10px 0;
  font-weight: 700;
  font-style: italic;
}

.mondo-separator {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 10%,
    #b81c27,
    transparent 90%
  );
  margin-bottom: 40px;
}

.mondo-tertiary-tiles {
  overflow: hidden;
}

.mondo-tertiary-tile {
  width: calc(33.33% - 26.67px);
  float: left;
  margin: 0 40px 40px 0;
}

.mondo-tertiary-tile:nth-of-type(3n) {
  margin-right: 0;
}

.mondo-tertiary-tile {
  height: 300px;
}

.mondo-tertiary-tile .mondo-tile-content {
  color: white;
  position: static;
  margin: 110px auto 0 auto;
  width: 200px;
}

.mondo-tertiary-tile .mondo-tile-content h1 {
  font-family: Lora, serif;
  font-size: 40px;
  line-height: 110%;
  margin: 0;
  font-weight: 400;
}

.mondo-tertiary-tile .mondo-tile-content h2 {
  margin: 0;
  background: #0085cf;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 0 15px 0 15px;
  display: inline-block;
  padding: 5px 15px;
}

.mondo-landing-page-tile {
  width: calc(33% - 26.66px);
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
  border: 1px solid #ebebeb;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.mondo-landing-page-tile:hover {
  border-color: #ccc;
}

.mondo-landing-page-tile:nth-of-type(3n) {
  margin-right: 0;
}

.mondo-landing-page-tile img {
  display: block;
}

.mondo-landing-page-tile h3 {
  margin: 0;
  padding: 5px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.75px;
}

.mondo-hero-image {
  text-align: center;
  height: 500px;
  border: 2px solid #ebebeb;
  border-top: 4px solid #ebebeb;
}

.mondo-hero-image-has-title {
  height: auto;
}

.page-template-template-landing-page .mondo-hero-image,
.page-template-template-aggregated-specials .mondo-hero-image {
  border: none;
  border-bottom: 4px solid #bc1e29;
  margin-top: 0;
}

.mondo-hero-image-content {
  padding: 150px 0;
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

.mondo-hero-title {
  margin: 0;
  font-weight: 100;
  text-transform: uppercase;
  font-size: 144px;
  letter-spacing: 5px;
}

.mondo-landing-page-facets {
  background: #ebebeb;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 40px;
}

.mondo-landing-page-facets .facetwp-type-checkboxes {
  width: 20%;
  float: left;
  margin-top: 20px;
}

.mondo-landing-page-tile-image {
  position: relative;
}

.mondo-landing-page-tile-icons {
  position: absolute;
  bottom: 10px;
  right: 0;
}

.mondo-icon {
  font-size: 24px;
  display: block;
  float: left;
  color: white;
  margin-right: 10px;
  border: 1px solid transparent;
}

.mondo-icon i {
  padding: 0 10px;
}

.mondo-icon:hover {
  border-color: white;
}

.mondo-single-primary .mondo-landing-page-tile a {
  color: #404040;
}

.mondo-landing-page-tile-content a:hover {
  text-decoration: none;
}

.mondo-single-primary p,
.page-content p {
  font-family: Lora, serif;
  font-size: 16px;
  line-height: 150%;
}

.mondo-single-primary p:first-of-type {
  margin-top: 0;
}

.mondo-single-has-secondary .mondo-single-primary {
  width: calc(70% - 40px);
  margin-right: 40px;
  float: left;
}

.mondo-single-secondary {
  width: 30%;
  float: left;
  background: #ebebeb;
  padding: 20px;
  margin-bottom: 40px;
}

h1.mondo-single-title {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: 2px;
  margin: 20px 0 10px 0;
  line-height: 120%;
}

h1.mondo-page-title {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: 2px;
  margin: 20px 0;
}

.header-static {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 4px solid #ebebeb !important;
  position: fixed;
  width: 100%;
}

.header-static + #content {
  padding-top: 156px;
}

.single .site-main {
  overflow: hidden;
}

.mondo-single-content {
  padding: 0 40px;
  /*overflow: hidden;*/
  margin-bottom: 40px;
}

.mondo-hero-image {
  margin-top: 40px;
}

/*--------------------------------------------------------------
## Inntopia widget
--------------------------------------------------------------*/

#inntopiaWidget {
  overflow: hidden;
  position: relative;
  background: #b81c27;
  color: white;
  text-align: center;
  margin-bottom: 10px;
}

#inntopiaWidget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#inntopiaWidget li {
  margin: 0;
  float: left;
  display: block;
  width: 15%;
  overflow: hidden;
  padding: 2px 10px 10px 10px;
}

#inntopiaWidget li:last-of-type {
  width: 72px;
  padding: 0;
}

#inntopiaWidget input,
#inntopiaWidget button {
  width: 100%;
  border-radius: 0;
  border: none;
}

#inntopiaWidget input {
  background: white;
  text-align: center;
  font-size: 13px;
}

#inntopiaWidget label {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 100%;
}

#inntopiaWidget button {
  background: white;
  display: block;
  box-shadow: none;
  text-shadow: none;
  margin: 10px;
  width: calc(100% - 20px);
  font-size: 13;
  text-transform: uppercase;
  padding: 15px 0 16px;
  color: #b71c28;
  font-weight: 700;
  letter-spacing: 1px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a.mondo-external-website {
  color: #b71c28;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  display: inline-block;
}

.gallery-columns-6 .gallery-item {
  max-width: calc(16.66% - 16.67px);
  margin-right: 20px;
}

.gallery-columns-6 .gallery-item:nth-of-type(6n) {
  margin-right: 0;
}

h2 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
}

.mondo-single-gallery {
  margin-top: 40px;
  padding: 0 40px;
}

.single-listing .gallery-columns-6 .gallery-item {
  width: auto;
  margin: 0 20px 0 0 !important;
}

.single-listing .mondo-single-gallery {
  margin-top: 20px;
  padding: 20px 20px 10px 20px;
  max-width: 1200px;
  overflow-x: scroll;
  background: #ebebeb;
}

.single-listing .mondo-single-gallery-title {
  margin: 0 20px;
  text-align: center;
}

.single-listing .mondo-single-gallery > .gallery {
  white-space: nowrap;
  margin-bottom: 0;
}

.mondo-single-secondary p {
  margin: 10px 0 0 20px;
  font-size: 14px;
  padding-left: ;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mondo-prefix {
  font-weight: 400;
}

.mondo-single-secondary p:last-of-type {
  margin-bottom: 0;
}

.mondo-single-secondary h2 {
  margin: 20px 0 10px 0;
  color: black;
}

.mondo-single-secondary h2:first-of-type {
  margin-top: 0;
}

.mondo-phone + .mondo-phone {
  margin-top: 0;
}

p.mondo-dollar-signs {
  font-size: 24px;
  color: #0085cf;
  vertical-align: middle;
}

.mondo-directory-item > h3 {
  width: 33.33%;
  float: left;
  clear: none;
  margin: 10px 0;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: left;
  padding-left: 20px;
}

.mondo-directory-item {
  clear: both;
  overflow: hidden;
  text-align: center;
}

.mondo-directory-item > h3:not(:first-child) {
  font-weight: 400;
}

.page-template-template-business-directory .facetwp-facet {
  background: #ebebeb;
  overflow: hidden;
  padding: 10px 20px;
}

.page-template-template-business-directory
  .facetwp-facet
  .mondo-facet-container {
  column-count: 3;
}

.page-template-template-business-directory .facetwp-facet:first-of-type {
  padding-top: 20px;
}

.page-template-template-business-directory .facetwp-facet:last-of-type {
  padding-bottom: 20px;
}

.facetwp-counter {
  display: none;
}

.facetwp-checkbox {
  font-size: 13px;
}

.facetwp-pager {
  text-align: center;
  margin: 20px 0;
  clear: both;
}

.facetwp-page {
  border: 1px solid #ebebeb;
  padding: 5px 10px !important;
  transition: background-color 200ms;
}

.facetwp-page:hover {
  text-decoration: none;
}

.facetwp-page:not(.active):hover {
  background-color: #ebebeb;
}

h2.mondo-search-header {
  font-size: 20px;
  color: #b81c27;
  margin-bottom: 20px;
}

.mondo-landing-page-facets .facetwp-type-search .facetwp-input-wrap {
  width: 100%;
}

h3.mondo-date {
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
  margin: 0;
}

.mondo-search-result h2 {
  text-transform: none;
  letter-spacing: 0.5px;
  font-size: 18px;
}

h3.mondo-contact {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.gform_wrapper {
  margin: 0 !important;
}

body .gform_wrapper ul li.gfield:first-of-type {
  margin-top: 0;
}

.gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0 !important;
}

.gform_wrapper .gform_footer {
  padding: 0 !important;
}

.gform_wrapper label.gfield_label {
  text-transform: uppercase;
  font-size: 13px !important;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
}

input[type="checkbox"] + label {
  text-transform: uppercase;
  font-weight: 700;
}

.post-type-archive-tribe_events .site-main {
  max-width: 1200px;
  margin: 0 auto;
}

.post-type-archive-tribe_events .entry-content {
  margin: 0;
  width: 100%;
}

.tribe-events-calendar thead th {
  background: white;
  color: #404040;
  border: none;
  border-top: 1px solid #ccc;
  padding: 5px 0;
}

.tribe-events-calendar td.tribe-events-past div[id*="tribe-events-daynum-"],
.tribe-events-calendar div[id*="tribe-events-daynum-"] {
  background: #f99790;
}

.tribe-events-calendar td.tribe-events-present div[id*="tribe-events-daynum-"] {
  background: #b81c27;
}

.tribe-events-calendar td div[id*="tribe-events-daynum-"] {
  text-align: center;
}

.single-tribe_events .tribe-events-event-image {
  margin-bottom: 0;
}

#tribe-events-content {
  margin-bottom: 0;
}

#tribe-events-content .mondo-single-title .mondo-button {
  display: inline-block;
  margin: 0 0 12px 10px;
}

#tribe-events .tribe-events-content p,
.tribe-events-after-html p,
.tribe-events-before-html p {
  line-height: 150%;
  font-family: Lora, serif;
}

.tribe-events-meta-group .tribe-events-single-section-title {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-tribe_events #tribe-events-content .tribe-events-event-meta dt {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 300;
}

.single-tribe_events #tribe-events-content .tribe-events-event-meta dd {
  letter-spacing: 1px;
}

.single-tribe_events .tribe-events-event-meta {
  background: #ebebeb;
  border-radius: 0;
  border: none;
}

.mondo-photo-gallery {
  padding: 0;
  margin-right: 80px;
  width: calc(50% - 40px);
  float: left;
}

.mondo-photo-gallery:nth-of-type(2n) {
  margin-right: 0;
}

.mondo-photo-gallery figure {
  margin: 0 10px 5px 0;
}

.mondo-photo-gallery .gallery-columns-3 .gallery-item {
  width: calc(33.33% - 6.67px);
}

.mondo-photo-gallery figure:nth-of-type(3n) {
  margin-right: 0;
}

.gallery-item img:hover {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

h2.mondo-photo-gallery-title {
  color: #b81c27;
  font-size: 24px;
  margin-bottom: 10px;
}

.mondo-photo-gallery:nth-of-type(2n) h2.mondo-photo-gallery-title {
  text-align: right;
}

.mondo-events-arrow i {
  color: #f99790;
  padding: 0 10px;
  transition: color 200ms;
}

.mondo-events-arrow:hover i {
  color: #f99790;
}

h2.tribe-events-page-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.mondo-press-grid-single {
  width: calc(33.33% - 26.67px);
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
  border: 1px solid #ebebeb;
  display: block;
  position: relative;
}

.mondo-press-grid-single:nth-of-type(3n + 1) {
  clear: left;
}

.mondo-press-grid-single:nth-of-type(3n) {
  margin-right: 0;
}

.mondo-press-grid-single h3 {
  color: #b81c27;
  padding: 10px 20px 10px 20px;
  margin: 0;
  display: inline-block;
}

.mondo-press-grid-single h4 {
  text-transform: uppercase;
  margin: 0;
  padding: 10px 20px 10px 20px;
  font-size: 13px;
  letter-spacing: 1px;
}

.mondo-press-grid-single .mondo-responsive-image {
  padding-bottom: 66%;
}

.mondo-press-grid-single .mondo-separator-gray {
  width: 75%;
  background: #ebebeb;
  height: 1px;
  margin-left: 10px;
}

.mondo-press-grid-single:hover {
  border-color: #ccc;
  text-decoration: none;
}

.mondo-press-grid {
  overflow: hidden;
}

.mondo-press-content {
  background: #ffe5e6;
  padding: 40px 80px;
  margin: 80px 0;
}

p:last-child {
  margin-bottom: 0;
}

.tribe_community_edit .site-main,
.tribe_community_list .site-main {
  max-width: 1200px;
  margin: 0 auto;
}

.mondo-alert {
  text-align: center;
  padding: 10px;
  font-weight: 300;
  margin-bottom: 20px;
}

.mondo-success {
  background: #8dd48d;
  color: white;
}

.mondo-single-primary.mondo-single-post-primary {
  width: 100%;
  margin-right: 0;
  float: none;
  margin-bottom: 40px;
}

.mondo-homepage-booking-widget > .container {
  position: relative;
}

.mondo-homepage-hero-slider .mondo-inntopia-widget-container,
.mondo-hero-image .mondo-inntopia-widget-container {
  position: absolute;
  bottom: 100%;
  z-index: 1;
  margin-bottom: 0 !important;
  width: 100%;
  background: rgba(235, 235, 235, 0.8);
  margin-bottom: 2px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-left: 1px solid white;
}

.mondo-homepage-hero-slider #inntopiaWidget,
.mondo-hero-image #inntopiaWidget {
  background: none;
  margin: 0;
  width: calc(100% - 150px);
  float: left;
}

.mondo-hero-image .mondo-homepage-booking-widget {
  margin-top: 0;
  border-top: none;
}

.mondo-latest-post-content h1 {
  text-transform: uppercase;
  font-weight: 400;
}

.mondo-latest-post-content p {
  font-family: Lora, serif;
}

#ui-datepicker-div {
  z-index: 10 !important;
}

.mondo-single-secondary ul {
  padding-left: 0;
  list-style: none;
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

h4.mondo-parent-link {
  background: #f99790;
  padding: 10px 20px;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 13px;
}

h4.mondo-parent-link a {
  text-transform: uppercase;
  color: #b81c27;
}

h4.mondo-parent-link a:hover {
  text-decoration: underline !important;
}

.mondo-hero-content {
  font-family: Lora, serif;
  padding: 40px 0;
}

.mondo-homepage-booking-widget {
  margin-top: -2px;
  z-index: 5;
  position: relative;
}

.mondo-homepage-hero-slider #inntopiaWidget input[type="text"],
.mondo-homepage-hero-slider #inntopiaWidget input[type="number"] {
  background: #ebebeb;
  border: 1px solid white;
}

.mondo-homepage-hero-slider #inntopiaWidget label,
.mondo-hero-image #inntopiaWidget label {
  color: #404040;
  letter-spacing: 1px;
}

.mondo-homepage-hero-slider #inntopiaWidget input[type="submit"],
.mondo-hero-image #inntopiaWidget input[type="submit"] {
  background: #b81c27;
  color: white;
}

.mondo-inntopia-widget-container h3 {
  width: 150px;
  float: left;
  color: #b81c27;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  margin: 18px 0 17px;
  letter-spacing: 1px;
}

.mondo-landing-page-facets .facetwp-search,
.mondo-business-directory-facets .facetwp-search {
  width: 100%;
  margin: 0;
  font-family: Lato, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 10px 20px;
  text-align: center;
}

.facetwp-facet {
  margin-bottom: 0 !important;
}

.page .mondo-single-primary {
  width: 100%;
  margin-right: 0;
  float: none;
}

.mfp-title {
  display: none;
}

.mondo-secondary-tile {
  transition: color 200ms ease-in-out;
}

.mondo-secondary-tile .mondo-tile-content {
  transition: background-color 200ms ease-in-out;
}

.mondo-secondary-tile:hover {
  color: white;
}

.mondo-secondary-tile:hover .mondo-tile-content {
  background-color: rgba(0, 133, 207, 0.5);
}

.page-template-template-season .mondo-landing-page-facets {
  border-top: 4px solid #b81d27;
}

.error404 .page-content {
  text-align: center;
}

.single .site-main {
  padding-bottom: 40px;
}

h2.mondo-no-posts {
  text-align: center;
  margin: 40px 0;
  font-family: Lora, serif;
  font-style: italic;
  text-transform: none;
  font-size: 32px;
  color: #b81d27;
  letter-spacing: 1px;
}

.mondo-blog-content {
  margin-bottom: 40px;
}

.mondo-press-content h1:first-child {
  margin-top: 0;
}

.single-special a.mondo-external-website {
  margin: 10px 20px;
}

.post-type-archive-tribe_events .mondo-single-primary,
.single-tribe_events .mondo-single-primary,
.tribe_community_edit .mondo-single-primary {
  width: 100%;
  margin-right: 0;
  float: none;
}

.mondo-landing-page-tile:nth-of-type(3n + 1) {
  clear: both;
}

.mondo-hero-content h1:first-of-type {
  margin-top: 0;
}

#tribe-events {
  margin-bottom: 40px;
}

.ginput_container input,
.ginput_container textarea {
  background: #ffe5e6;
}

.acf-input textarea,
.acf-input input {
  background: #ffe5e6;
  font-family: Lato, sans-serif;
  padding: 20px !important;
}

.acf-label label {
  text-transform: uppercase;
  font-size: 13px !important;
}

.mondo-landing-page-facets
  .facetwp-type-checkboxes.facetwp-facet-play_experience,
.mondo-landing-page-facets
  .facetwp-type-checkboxes.facetwp-facet-shop_store_type {
  width: 40%;
}

.facetwp-facet-play_experience .mondo-facet-container,
.facetwp-facet-amenities .mondo-facet-container,
.facetwp-facet-shop_store_type .mondo-facet-container {
  column-count: 2;
}

.mondo-landing-page-tile-image .mondo-responsive-image {
  padding-bottom: 60%;
  border-bottom: 1px solid #ebebeb;
}

#footer-bottom-right p {
  line-height: 39px;
}

.facet-label {
  text-transform: uppercase;
  font-size: 13px !important;
}

.main-navigation .astm-search-menu a {
  padding-bottom: 1px;
}

.astm-search-menu.full-width-menu form,
.astm-search-menu.sliding form {
  top: 100% !important;
  white-space: nowrap;
  text-align: right;
}

.astm-search-menu form label {
  margin: 0;
  display: inline-block;
  float: right;
  width: 200px;
}

.astm-search-menu form label input[type="search"] {
  padding: 10px;
  width: 100%;
}

.astm-search-menu input[type="submit"].is-search-submit {
  margin: 0;
  float: none;
  display: inline-block;
}

.mondo-hero-content h1 {
  font-family: Lato, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: 2px;
}

.site-header {
  border-bottom: 2px solid transparent;
  z-index: 20;
}

.scrolled .site-header {
  background-color: white;
  border-color: #b81c27;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
  background-image: none;
  z-index: 100;
}

.mondo-seasons-landing-content {
  margin-top: 40px;
}

.gallery-item {
  max-height: 95px;
  overflow: hidden;
}

.scrolled .site-branding img {
  width: 50%;
}

.mondo-single-primary a,
.mondo-hero-content a {
  color: #0085cf;
}

.site-branding a:last-of-type {
  display: none;
}

.scrolled .site-branding a:first-of-type {
  display: none;
}

.scrolled .site-branding a:last-of-type {
  display: block;
}

.scrolled .main-navigation {
  background: transparent;
}

.mondo-landing-page-facets .facetwp-type-checkboxes.facetwp-facet-amenities {
  width: 40%;
}

.page-id-217 .mondo-hero-title {
  font-size: 96px;
  line-height: 216px;
}

.mondo-landing-page-facets .facetwp-facet.facetwp-facet-specials_type {
  width: 100%;
  float: none;
  text-align: center;
}

.mondo-landing-page-facets
  .facetwp-facet.facetwp-facet-specials_type
  .facet-label {
  text-align: center;
  font-size: 24px !important;
  line-height: 100%;
  font-weight: 400;
}

.facetwp-facet.facetwp-facet-specials_type .facetwp-checkbox {
  display: inline-block;
  width: auto;
  margin: 0 40px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
}

.listing_type_shop #inntopiaWidget,
.listing_type_play #inntopiaWidget {
  width: 50% !important;
}

.listing_type_shop #inntopiaWidget li,
.listing_type_play #inntopiaWidget li {
  width: 50% !important;
}

.tribe-events-tooltip .tribe-event-description {
  padding-bottom: 10px;
}

.tribe-events-tooltip p {
  font-size: 13px;
}

.page-template-template-seasons-landing
  .mondo-listing-tile
  .mondo-tile-content
  h1 {
  font-size: 48px;
}

#sb_instagram {
  margin-bottom: 40px;
}

h4.mondo-author {
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 20px 20px;
  color: #0085cf;
}

.main-navigation .sub-menu li {
  float: none;
}

.mondo-shiftnav-toggle {
  display: none;
  float: right;
}

.mondo-shiftnav-toggle .shiftnav-toggle-button,
.mondo-shiftnav-toggle .shiftnav-toggle-button:hover {
  background: transparent;
  color: #b81c27;
  font-size: 48px;
}

td,
th {
  vertical-align: top;
}

.page-id-150 h1.mondo-page-title {
  text-align: center;
}

.single-listing .mondo-inntopia-widget-container h3 {
  display: none;
}

#inntopiaWidget li:nth-of-type(1),
#inntopiaWidget li:nth-of-type(2) {
  width: calc(32% - 18px);
}

#inntopiaWidget li:nth-of-type(3),
#inntopiaWidget li:nth-of-type(4) {
  width: calc(18% - 18px);
}

.home .mondo-homepage-booking-widget {
  border-top: 2px solid #b81c27;
}

.facetwp-checkbox {
  text-transform: capitalize;
}

.mondo-homepage-hero-slider #inntopiaWidget button,
.mondo-hero-image #inntopiaWidget button {
  background: #b71c28;
  color: white;
}

.mondo-homepage-booking-widget-mobile {
  display: none;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
}

.mondo-homepage-booking-widget-mobile .mondo-button {
  width: 150px;
  margin: 20px;
  text-align: center;
}

.mondo-homepage-hero-slider,
.mondo-hero-image {
  position: relative;
}

.alm-reveal {
  clear: both;
}

.alm-listing {
  clear: both;
  padding-top: 40px !important;
}

.mondo-mobile-button-container {
  text-align: center;
  padding-bottom: 10px !important;
}

.mondo-homepage-booking-widget-mobile {
  text-align: center;
}

.mondo-email a {
  word-wrap: break-word;
}

a.mondo-button.mondo-menu-button {
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.mondo-opentable-widget {
  margin-top: 20px;
}

.mondo-opentable-widget iframe {
  margin: 20px auto 0;
  display: block;
}

h4.mondo-valid-dates {
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  margin: 0 0 5px;
  /* color: #777; */
  line-height: 100%;
  font-weight: 400;
  width: auto;
  /*display: inline-block;*/
}

h4.mondo-valid-dates:last-of-type {
  margin: 0 0 20px;
}

.mondo-landing-page-tile-content h4 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #777;
}

.mondo-landing-page-spacer {
  margin-bottom: 40px;
}

.mondo-single-secondary ul li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.mondo-single-secondary ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mondo-hero-image .mondo-play-booking-widget .mondo-inntopia-widget-container {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.mondo-play-booking-widget #inntopiaWidget li:first-of-type {
  width: 200px;
}

.mondo-play-booking-widget #inntopiaWidget li:nth-of-type(2) {
  width: 72px;
}

ul.mondo-events li:nth-of-type(n + 4) {
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
  transition: all 200ms;
  opacity: 0;
}

ul.mondo-events li:nth-of-type(3) {
  border-bottom: none;
}

#mondo-expand-events:checked + ul.mondo-events li:nth-of-type(3) {
  border-bottom: 1px solid #ccc;
}

#mondo-expand-events:checked + ul li:nth-of-type(n + 4) {
  height: auto;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  opacity: 1;
}

.mondo-expand-events-label {
  background: white;
  display: table;
  text-align: center;
  margin: 0 auto 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 20px;
  font-size: 13px;
  border: 1px solid #ccc;
  cursor: pointer;
}

input#mondo-expand-events {
  display: none;
}

input#mondo-expand-events:checked + ul + #mondo-expand-events-more {
  display: none;
}

#mondo-expand-events-fewer {
  display: none;
}

input#mondo-expand-events:checked + ul + label + #mondo-expand-events-fewer {
  display: table;
}

.mondo-blog-categories {
  text-align: left;
  padding: 15px 15px 5px;
  background: #ebebeb;
  margin-top: 60px;
}

span.mondo-date {
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 700;
  background: #ebebeb;
  padding: 10px;
  display: table;
  vertical-align: middle;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}

.mondo-blog-categories a.mondo-button {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.mondo-blog-categories a.mondo-button:last-of-type {
  margin-right: 0;
}

.mondo-blog-categories h3 {
  display: inline-block;
  margin: 0 10px 0 0;
  font-weight: 300;
  font-style: italic;
}

@media print {
  #masthead,
  #colophon,
  #credits {
    display: none;
  }

  .header-static + #content {
    padding-top: 0;
  }
}

.tribe-events-calendar .type-tribe_events:not(:hover) .tribe-events-tooltip {
  display: none !important;
  opacity: 0 !important;
}

a.branding-image-small > img {
  height: 55px;
  width: auto !important;
}

a.branding-image-large > img {
  height: 141px;
  width: auto;
}

div.tenf-single-icons {
  overflow: hidden;
  margin-bottom: 20px;
}

div.tenf-single-icons > span.mondo-icon > a {
  display: flex;
}

span.smaller {
  font-size: 0.65em;
}

span.mondo-icon > a:hover {
  text-decoration: none;
  opacity: 0.65;
}

.mondo-search-secondary,
.mondo-search-primary {
  float: right;
}

.mondo-search-secondary {
  background: #ebebeb;
  width: 30%;
}

.mondo-search-primary {
  width: 70%;
  padding-left: 40px;
}

.mondo-search-primary .mondo-search-result-new {
  width: calc(50% - 20px);
  float: left;
  margin: 0 40px 40px 0;
}

.mondo-search-primary .mondo-search-result-new:nth-of-type(even) {
  margin-right: 0;
}

.mondo-search-primary .mondo-search-result-new:nth-of-type(odd) {
  clear: both;
}

.mondo-search-primary .mondo-search-result-new .mondo-landing-page-tile {
  width: 100%;
  float: none;
  margin: 0;
}

.mondo-search-secondary .mondo-search-result-new h2 {
  font-size: 16px;
  margin: 0;
  text-transform: none;
  line-height: 1.2;
}

.mondo-search-secondary .mondo-search-result-new {
  margin-bottom: 20px;
}

.mondo-search-secondary {
  padding: 20px;
  margin-bottom: 40px;
}

.mondo-search-primary {
  padding-top: 20px;
}

.mondo-search-page-button {
  background: #bc1e29;
  display: inline-block;
  padding: 8px 14px;
  color: white;
  margin: 0 10px 20px 0;
  font-size: 13px;
  cursor: pointer;
  font-weight: 700;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.mondo-search-page-button:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.mondo-search-page-button.active {
  background: white;
  border: 2px solid #bc1e29;
  color: #bc1e29;
}

.mondo-search-paginated-page {
  overflow: hidden;
  float: left;
  width: 320px;
  opacity: 0;
  transition: opacity 200ms;
}

.mondo-search-paginated-page.active {
  opacity: 1;
}

.mondo-search-page-container {
  overflow: hidden;
  margin-bottom: 20px;
}

.mondo-search-page-track {
  width: 5000px;
  transition: transform 200ms;
}

p a,
p a:hover {
  color: #0085cf;
}

#footer-bottom-right p a,
#footer-bottom-right p a:hover {
  color: white;
}

.mondo-search-results-panel:last-of-type .mondo-search-page-button {
  margin-bottom: 0;
}

.tenf-foliage-tracker {
  position: relative;
  padding: 10px 0 20px;
  margin: 40px 0;
}

.tenf-foliage-background {
  background: #ebebeb;
  width: 200vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 10;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.tenf-foliage-content {
  position: relative;
  z-index: 20;
}

.tenf-foliage-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

a.tenf-foliage-tile {
  width: calc(33% - 15px);
  display: block;
  background: white;
  margin: 0 20px 20px 0;
  color: #404040;
  border: 1px solid #707070;
  position: relative;
}

a.tenf-foliage-tile:hover {
  text-decoration: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 2px 2px 2px rgba(0, 0, 0, 0.25);
}

a.tenf-foliage-tile:nth-of-type(3n) {
  margin-right: 0;
}

a.tenf-foliage-tile h2 {
  font-size: 14px;
  margin: 10px;
  line-height: 1.3;
  height: 36px;
}

a.tenf-foliage-tile h3 {
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
  margin: 10px;
}

.tenf-foliage-tile-content {
  width: 90%;
  max-width: 350px;
}

.tenf-foliage-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80px;
  width: 86px;
  background-size: cover;
}

.tenf-foliage-icon span {
  position: absolute;
  top: 24px;
  left: 46px;
  color: white;
  -webkit-text-stroke: 1px #404040;
  font-weight: 700;
  font-size: 44px;
}

ul.tenf-foliage-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  right: 0;
}

ul.tenf-foliage-legend li {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #777;
}

ul.tenf-foliage-legend li:last-of-type {
  margin-right: 0;
}

.tenf-foliage-tracker p {
  text-align: justify;
}

.gform_confirmation_message {
  border: 2px solid #bf1e2e;
  border-bottom-width: 5px;
  padding: 20px;
  font-family: Lora, serif;
  font-size: 16px;
  line-height: 150%;
  margin: 40px 0;
}

li#menu-item-22472 {
  float: right;
  background: #bf1e2e;
}

li#menu-item-22472 > a {
  color: white;
}

.mondo-hero-image.mondo-hero-image-no-title .mondo-homepage-booking-widget {
  position: absolute;
  top: 100%;
  width: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
}

li#menu-item-22472:hover > ul,
li#menu-item-22472.focus > ul {
  right: 0;
}

.main-navigation .astm-search-menu > a {
  height: 31px;
}

a.is-edit-link,
a.is-customize-link {
  display: none;
}

input.is-search-input {
  padding: 10px;
}

.astm-search-menu i.fa-search {
  color: #0085cf;
  font-size: 18px;
}
a.tenf-listing-special {
  color: #0085cf;
  font-weight: bold;
}

li#menu-item-22472 .sub-menu li:last-child {
  background: #0085cf;
}

li#menu-item-22472 .sub-menu li:last-child a {
  color: white;
}

div.tenf-landing-page-tile-special {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  z-index: 88;
  pointer-events: none;
  margin: 0;
  background: #0085cf;
  text-transform: uppercase;
  border-radius: 0 15px 0 15px;
  display: inline-block;
  padding: 5px 15px;
  /*transition: padding 0.24s;*/
}

div.tenf-landing-page-tile-special > i {
  padding: 0px 0px 0px 5px;
}

.tenf-participating-listings {
  margin-top: 40px;
}

.mondo-single-interior-content {
  overflow: hidden;
}

div.tenf-hidden {
  display: none;
  position: absolute;
}

dd.tribe-events-event-url {
  overflow-wrap: break-word;
}

div.tenf-announcement-banner {
  background: #daf2ff;
  text-align: center;
  color: #404040;
  padding: 2px;
}

div.tenf-announcement-banner p {
  color: inherit;
  margin: 5px 0px;
}

div.tenf-announcement-banner a,
div.tenf-announcement-banner a:hover,
div.tenf-announcement-banner a:visited {
  color: inherit;
  font-weight: bold;
}

.tenf-hero-slider {
  border: 2px solid #ebebeb;
  border-top: 4px solid #ebebeb;
  margin-top: 40px;
}

.tenf-cta {
  background: #ebebeb;
  padding: 20px;
  display: flex;
  margin-bottom: 20px;
}

.tenf-cta-image {
  margin-right: 20px;
}

.tenf-cta-content h3 {
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: 15px;
}

.tenf-cta-content p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.tenf-cta-button-container {
  text-align: right;
  width: 100%;
}

.tenf-cta-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tenf-cta-image img {
  max-width: none;
}

.tenf-custom-grid-container {
  overflow: hidden;
  width: 100%;
}

.tenf-custom-grid-anchor {
  position: relative;
}

#tenf-custom-grid {
  position: absolute;
  top: -112px;
}

.admin-bar #tenf-custom-grid {
  top: -144px;
}

/* New Homepage Slider */

.tenf-homepage-slider {
  height: 100vh;
  min-height: 590px;
  position: relative;
  margin-bottom: 0 !important;
}
body.logged-in .tenf-homepage-slider {
  height: calc(100vh - 32px);
}

.tenf-homepage-slider .tenf-slide {
  position: relative;
}

.tenf-homepage-slider .tenf-slide-content-container {
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
}

.tenf-homepage-slider .tenf-slide-panel {
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 5px #00000087;
  max-width: 995px;
  margin: auto;
}

.tenf-homepage-slider h2.tenf-slide-title {
  font-size: 63px;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 60px;
}

.tenf-homepage-slider .tenf-slide-content {
  font-family: "Lora";
  font-style: italic;
  font-size: 20px;
}

.tenf-homepage-slider a.tenf-read-more.tenf-read-more-inverted {
  color: white;
  text-shadow: none;
  background: #bf1e2e;
  flex: inherit;
  padding: 10px 40px;
  align-self: flex-start;
  font-family: "Lato";
  font-weight: 700;
  margin: 64px 0;
  font-size: 15px;
  letter-spacing: 2px;
}

.tenf-homepage-slider .tenf-slide-content p {
  margin: 0;
}

.tenf-homepage-slider a.tenf-read-more.tenf-read-more-inverted:after {
  content: "";
  position: relative;
  font-family: "FontAwesome";
}

.tenf-homepage-slider ul.slick-dots {
  bottom: 84px;
}

.tenf-homepage-slider .slick-dots li button {
  box-shadow: none;
  text-shadow: none;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.tenf-homepage-slider .slick-dots li button:before {
  content: "" !important;
  height: 100%;
  width: 100%;
}

.tenf-homepage-slider li.slick-active button {
  opacity: 1;
}

.tenf-homepage-slider a.tenf-read-more.tenf-read-more-inverted {
  text-transform: uppercase;
}

.tenf-homepage-slider a.tenf-read-more.tenf-read-more-inverted:hover {
  background: rgb(140, 20, 29);
  text-decoration: none;
}

button.slick-arrow {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50%;
  box-shadow: none;
  z-index: 10;
}
.slick-next {
  right: 25px;
}
.slick-prev {
  left: 25px;
}
.slick-arrow:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%);
}
.slick-prev:before {
  content: "";
  left: calc(50% - 2px);
}
a.tenf-read-more.tenf-read-more-inverted img {
  display: none;
}

/* End homepage slider */

#primary .alm-filters-container {
  display: flex;
}

#primary .alm-filters-container .alm-filter {
  width: 100%;
  flex-grow: 1;
  margin-right: 20px;
}

#primary .alm-filters-container .alm-filters--controls {
  flex-grow: 0;
  width: auto;
  margin: 0;
}

#primary .alm-filters-container .alm-filters--reset-button {
  white-space: nowrap;
}

#primary .alm-filters-container .alm-filter--select select {
  padding: 10px;
}

#primary .alm-filters-container .alm-filter--inner {
  padding: 0;
}

#primary .alm-filters-container button[type="button"] {
  background: #bf1e2e;
  box-shadow: none;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 0;
}

#primary .alm-filters-container button[type="button"]:hover {
  background: #bf1e2e;
  text-decoration: underline;
}

.tenf-recaptcha-info {
  font-size: 0.8rem;
  color: #ddd;
}

.footer-tag .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-tag .container p {
  margin-bottom: 0 !important;
  line-height: unset !important;
}

.footer-tag .container > * {
  float: unset !important;
}

.footer-tag .container ~ .container {
  display: block;
}

.footer-tag #footer-bottom-right {
  text-align: right;
  margin: 0.5rem;
}

#tribe-events-content
  .tribe-events-calendar
  td.tribe-events-present
  div[id*="tribe-events-daynum-"]
  a {
  color: white !important;
}

/* Slick Slider */
.tenf-listing-slider {
  margin-top: 40px;
  height: 500px;
}
.tenf-listing-slider .tenf-image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.tenf-slider {
  display: none;
}
.tenf-slider.slick-initialized {
  display: block;
}

/* Itinerary start */

.tenf-bookmark {
  position: absolute;
  z-index: 20;
  bottom: 100%;
  right: 0;
  margin: 0 0.5rem -1.5rem 0;
  font-size: 2em;
  color: #ebebeb;
  line-height: 1;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
  cursor: pointer;
}

.tenf-bookmark i {
  transition: all 200ms;
}

.tenf-bookmark.tenf-bookmark-static {
  position: relative;
  display: inline-block;
  font-size: 1em;
  margin: 0;
  text-shadow: none;
}

.tenf-bookmark:not(.tenf-bookmark-active):hover i {
  transform: scale(1.25);
}

.tenf-bookmark.tenf-bookmark-active {
  color: #ffa041;
  transform: scale(1.25);
}

.tenf-bookmark.tenf-bookmark-static.tenf-bookmark-active {
  transform: none;
}

.tenf-bookmark:not(.tenf-bookmark-active):after {
  opacity: 0;
  content: "Add to itinerary";
  position: absolute;
  font-size: 1rem;
  text-transform: none;
  bottom: 100%;
  right: 0;
  text-shadow: none;
  background: orange;
  color: white;
  padding: 0.25em 1em;
  white-space: pre;
  margin: 0 -0.25em 0.25em 0;
  border-radius: 0 15px;
  pointer-events: none;
  transition: all 200ms;
  transform: translateY(-0.5em);
}

.tenf-bookmark.tenf-bookmark-static:not(.tenf-bookmark-active):after {
  right: auto;
  left: 0;
}

.tenf-bookmark:not(.tenf-bookmark-active):hover:after {
  transform: translateY(0);
  opacity: 1;
}

.tenf-bookmark.tenf-bookmark-static:hover i {
  transform: none;
}

.tenf-itinerary-control {
  position: fixed;
  left: 0;
  bottom: 72px;
  padding: 5px 20px;
  background: #ffa041;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 20%);
  cursor: pointer;
  font-size: 1rem;
  z-index: 20;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.tenf-itinerary-control > a {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.tenf-itinerary-control a:hover,
.tenf-itinerary-control a:active,
.tenf-itinerary-control a:focus,
.tenf-itinerary-control a:visited {
  color: white;
  text-decoration: none;
}

.scrolled .tenf-itinerary-control span {
  max-width: 0;
}

.tenf-itinerary-control span {
  transition: max-width 0.2s;
  max-width: 130px;
  white-space: nowrap;
  text-overflow: clip;
  overflow-x: hidden;
}

.tenf-itinerary-control:hover span {
  max-width: 130px;
}

.tenf-itinerary-control i {
  margin: 0 0.5rem;
  font-size: 2em;
}

.my-trip-header-circle-wrapper {
  position: relative;
  height: 4vw;
}

.my-trip-header-circles {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.my-trip-circle-row {
  display: grid;
  column-gap: 1vw;
  margin-bottom: 1vw;
  width: 100%;
}

.my-trip-circle-row:nth-of-type(2n) svg {
  margin-left: -55%;
}

.my-trip-circle-row svg {
  width: 100%;
}

.my-trip-circle-row svg circle {
  fill: white;
}

.my-trip-circle-row:nth-of-type(2) svg circle {
  fill: rgba(255, 255, 255, 0.66);
}

.my-trip-circle-row:nth-of-type(1) svg circle {
  fill: rgba(255, 255, 255, 0.33);
}

.my-trip-circle-row:nth-of-type(1) svg:nth-of-type(12) circle,
.my-trip-circle-row:nth-of-type(2) svg:nth-of-type(6) circle,
.my-trip-circle-row:nth-of-type(3) svg:nth-of-type(4) circle {
  fill: #b81c27;
}

.page-template-template-my-trip .mondo-hero-image {
  border: none;
  margin: 0 !important;
}

.tenf-saved-listings-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 40px;
  padding: 0 40px;
}

.tenf-saved-listings-grid > .mondo-landing-page-tile {
  float: none;
  width: 100%;
  margin: 0;
  background: white;
  grid-column: span 2;
}

.tenf-saved-listings-grid.grid-overflow-3-1
  .mondo-landing-page-tile:last-child {
  grid-column: 3 / span 2;
}

.tenf-saved-listings-grid.grid-overflow-3-2
  .mondo-landing-page-tile:nth-last-child(2) {
  grid-column: 2 / span 2;
}

a.tenf-button {
  background: #bf1e2e;
  border: 1px solid #bf1e2e;
  color: white;
  font-size: 13px;
  padding: 5px 9px;
  text-transform: uppercase;
  cursor: pointer;
}
a.tenf-button:hover {
  text-decoration: none;
  color: #bf1e2e;
  background: white;
}
.tenf-itinerary-overwrite-panel {
  background: #efefef;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 10px;
}

.tenf-itinerary-overwrite-panel h3 {
  margin: 0 0 10px 0;
  color: #404040;
  font-weight: normal;
}

a.tenf-button.tenf-button-blue {
  background: #0085cf;
  border-color: #0085cf;
}
a.tenf-button-blue:hover {
  color: #0085cf;
  background: white;
}

a.tenf-button.tenf-button-gray {
  background: gray;
  color: white;
  border-color: gray;
}
a.tenf-button-gray:hover {
  color: gray;
  background: white;
}
.tenf-saved-listings-header {
  display: grid;
  text-align: center;
  justify-content: center;
  grid-gap: 5px;
  margin-bottom: 2.5em;
}

.tenf-saved-listings {
  background-color: #00a3d1;
  color: white;
  padding: 3em 0;
  margin: 1em 0;
}

.tenf-saved-listings .mondo-landing-page-tile h3 {
  background: white;
  color: #404040;
}

.tenf-saved-listings-header h2 {
  font-size: 2em;
  text-transform: none;
}

.tenf-my-trip-container {
  padding: 0 40px;
}

.tenf-my-trip-container .mondo-listing-tiles {
  padding-left: 0;
  padding-right: 0;
}

.my-trip-header-circles-container {
  position: absolute;
  bottom: 0;
  overflow-x: hidden;
}

.tenf-bookmark-demo {
}

.tenf-bookmark-demo i {
  background: #ffa041;
  color: white;
  display: inline-block;
  padding: 0.5em 0.5em;
  font-size: 1.5rem;
}

.page-template-template-my-trip h1 {
  text-align: center;
}

#tribe-events #tribe-events-content ul {
  font-family: Lato, sans-serif;
  font-size: 16px;
  padding-inline-start: 40px;
  list-style-position: outside;
}

#tribe-events #tribe-events-content li > ul {
  margin-bottom: 0;
}
