/*
Theme Name: underscores
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: underscores
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.

underscores 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
	## Asides
	## 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-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

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. */
}

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, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .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: 1px solid #ccc;
	border-radius: 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;
}

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"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	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 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;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## 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;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
}

#content {
    max-width: 1320px;
    margin: 0 auto;
}

body {
  font-family: 'EB Garamond', serif;
  background: url('/wp-content/uploads/2016/06/crossword.png');
}

h1 {
  font-size: 4em;
}

h2, h1.entry-title-archive {
  font-size: 2.8em;
}

p {
  font-size: 1.4em;
}

#ui-datepicker-div {
    background: white;
    border: 1px solid #ccc;
    margin-top: 1px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}

.mobile-logo {
  display: none;
}

#ui-datepicker-div td {
    padding: 8px 14px;
    text-align: center;
}

.ui-datepicker-title {
    font-size: 32px;
    font-family: EB Garamond, serif;
    padding: 5px 0 5px 10px;
    margin: 0;
    clear: both;
}

.ui-datepicker-prev, .ui-datepicker-next {
    padding: 5px;
}

#ui-datepicker-div a {
    border: none;
}

.ui-datepicker-next {
    float: right;
}

.ui-datepicker-prev {
    float: left;
}

.ui-state-disabled {
    color: #ccc;
}

#ui-datepicker-div a:not(.ui-state-disabled) {
    cursor: pointer;
}

#ui-datepicker-div .ui-state-disabled:hover {
    color: #ccc;
}

.footer-booking {
    text-align: center;
    margin-bottom: 0;
    background: mintcream;
    padding: 50px 0;
}

.wp_widget_mondo_booking input {
    width: calc(33% - 14px);
    margin-right: 20px;
    border-radius: 0;
    padding: 5px;
    height: 40px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    font-size: 13px;
}

.wp_widget_mondo_booking input:last-of-type {
    margin-right: 0;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"], .wp_widget_mondo_booking input[type="submit"], a.button {
    background: tan;
    box-shadow: none;
    text-shadow: none;
    color: white;
    transition: background 0.25s;
}

.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type="submit"]:hover, .wp_widget_mondo_booking input[type="submit"]:hover, a.button {
    background: #a07131 !important;
}

body:not(.home):not(.page-brewery) .entry-content > div:first-of-type > div > .vc_column-inner { padding-top: 169px;}

.icon-list a, .icon-list a:visited {
  color: #404040;
  border: none !important;
}

.icon-list a:hover {
  color: black !important;
}

.gform_confirmation_message {
    margin: 20px 0;
    font-size: 22px;
    font-family: Montserrat, sans-serif;
    color: green;
    border: 1px solid green;
    padding: 18px 25px;
}

.gform_wrapper textarea.large {
  width: 100%;
}

.stash-link {
    position: relative;
}

/*.stash-link:hover:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 5;
    background: rgba(0,255,0,0.1);
    top: 0;
    left: 0;
}
*/
.footer-seatme {
    overflow: hidden;
    background: #FDF5E0;
    text-align: center;
}

.footer-seatme h1 {
    margin-bottom: 0;
    font-size: 48px;
    color: black;
}

.footer-seatme h2 {
    margin-top: -10px;
    font-size: 32px;
}

.footer-seatme .col_1-2 {
    float: none;
    margin: 0 auto;
}

.stash-link img {
    height: 100px;
    transition: height 0.2s;
}

a.blank-link.stash-link:hover > img {
    height: 110px;
}

a.blank-link.stash-link:hover {
    padding: 5px 0;
}

a.book-button {
	position: fixed;
    right: 0;
    top: 150px;
    border: none !important;
    background: rgba(0,155,0,0.75);
    box-shadow: -1px 1px 2px rgba(0,0,0,0.5);
    padding: 14px 20px;
    color: white !important;
    font-size: 14px;
    z-index: 112;
    transition: background 0.25s;
    text-transform: uppercase;
    font-weight: bold;
    font-family: Montserrat, sans-serif;
}

a.book-button:hover {
    background: darkgreen;
    color: white;
}

.full-height {
  height: 100vh;
}

.stash-rewards-container {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stash-link {
  padding: 10px 0;
  transition: padding 0.2s;
}

.vc_btn3.vc_btn3-style-modern {
    border-radius: 0;
    font-size: 16px;
    margin: 12px 0;
    background: tan !important;
    color: black !important;
    font-family: Montserrat;
    text-transform: uppercase;
    box-shadow: none;
    text-shadow: none;
}

.vc_btn3.vc_btn3-style-modern:hover {
    background: #a07131 !important;
}

.beer-panel {
    color: #E9E5DC;
}

.beer-panel h1 {
    font-size: 108px;
    margin: 0;
    line-height: 108px;
    border-bottom: 2px inset tan;
    display: inline-block;
    color: tan;
}

.beer-panel h3 {
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-weight: normal;
  font-size: 24px;
}

.clearfix {
  clear: both;
}

.ubermenu .ubermenu-target {
    text-align: center;
}

.ubermenu-nav > .ubermenu-item {
    width: 14.28% !important;
    text-align: center;
  	position: relative;
}

.ubermenu-item > .ubermenu-target > .ubermenu-target-text {
	text-transform: uppercase;
    font-size: 17px;
    color: #eee;
    text-shadow: 1px 1px rgba(0,0,0,0.5);
}

.ubermenu-item:hover > .ubermenu-target > .ubermenu-target-text {
    color: #fff;
    text-decoration: underline;
}

.ubermenu .ubermenu-submenu {
    width: 100%;
    background: rgba(0,0,0,0.5);
}

.ubermenu .ubermenu-item:not(#menu-item-143):hover, .ubermenu .ubermenu-active {
    background: rgba(0,0,0,0.75);
}

.ubermenu .ubermenu-content-align-center>.ubermenu-image {
  margin-top: -6px;
}

.container {
  max-width: 1320px;
  margin: 0 auto !important;
}

.special-content > p:first-child {
    margin-top: 0;
}

.special-img {
    width: 100%;
    padding-right: 50px;
}

.wpb_column {
    position: static;
}

.container-small {
  max-width: 800px;
  margin: 0 auto !important;
}

.hentry {
	margin-bottom: 0 !important;
}
.vc_row {
	margin-bottom: 0 !important;
}

.wpb_content_element {
	margin-bottom: 0 !important;
}

.bordered {
  border: 2px solid white;
  padding: 10px 20px;
}

.site-header {
	position: absolute;
	z-index: 2;
  	width: 100%;
}

.entry-header, .site-branding {
	display: none;
}

.archive .entry-header {
	display: block;
}

.entry-content {
	margin-top: 0;
}

.main-navigation {
	width: 100%;
}

.edit-link {
	display: none;
}

.script {
  font-family: 'Dancing Script', sans-serif;
}

.beer-list .vc_gitem-animated-block {
    display: none;
}

.beer-list .vc_gitem-post-data-source-post_excerpt p {
  margin: 0;
}

.beer-list .vc_btn3-left {
    display: none;
}

.beer-list .vc_gitem-post-data {
    margin-bottom: 0;
}

.beer-list .vc_gitem_row .vc_gitem-col {
  padding: 30px;
}

#colophon {
  overflow-x: hidden;
    position: relative;
}

.footer-top {
  background: url('/wp-content/uploads/2016/05/wov.png');
  overflow: hidden;
  text-align: center;
}

#colophon h2 {
    font-family: Montserrat, sans-serif;
    font-size: 32px;
}

.footer-bottom li {
    font-size: 24px;
    font-family: Montserrat, sans-serif;
}

.footer-bottom p {
    padding: 0;
    margin: 0;
    font-size: 20px;
}

.footer-bottom {
    padding: 5px;
  	text-align: center;
    background: #ffffff;
}
.footer-bottom > p:last-of-type {
    padding: 1em 0;
}

#colophon::after {
    content: '';
    position: absolute;
    z-index: 5;
    height: 384px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-image: url('/wp-content/uploads/2019/04/tree_1271e37a3254fa1861ed542fdabd43be.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.5;
  	pointer-events: none;
}

.footer-top .icon-list {
  margin-left: 0;
  list-style: none;
  text-align: left;
}

.footer-top .icon-list i {
  margin-right: 10px;
}

.footer-top .icon-list li {
    margin: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
}

.ginput_container input {
    padding: 5px !important;
  	border-radius: 0;
}

.gform_footer input[type="submit"] {
    border-radius: 0;
    background: white;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    padding: 20px 40px !important;
}

.gform_title {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-weight: 400 !important;
    font-size: 24px !important;
}

.col_1-2 {
    width: 50%;
    float: left;
}

.gform_title, .gform_heading {
    text-align: center !important;
}

.gform_footer {
    text-align: center;
}

.page-dining .vc_btn3 {
}

.beer-slider {
    position: relative;
}

.beer-slider:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    box-shadow: inset 0 0 5px 5px black
}

.specials-info {
    background: #FFF8E4;
    padding: 2px 20px 5px 20px;
    margin-top: 40px;
}

.specials-info h1 {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-size: 24px;
}

.specials-info p {
    font-size: 16px;
}

.button {
    border: 1px solid #6E856B;
    color: #6E856B;
    padding: 5px 10px;
    text-decoration: none;
    background: white;
    margin: 0 4px;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.button:hover {
    color: white;
    background: #9DB79A;
}

a, a:visited {
    text-decoration: none;
    color: #6E856B;
}

a:not(.blank-link) {
    border-bottom: 1px dotted #6E856B;
}

a:not(.blank-link):hover {
    color: #9DB79A;
}

.footer-bottom i {
    font-size: 24px;
    padding: 4px;
}

.footer-bottom a {
    border-bottom: 0;
}

hh.wp_widget_mondo_booking {
    position: absolute;
    top: 200px;
    right: 0;
    background: tan;
    margin-right: 20px;
    padding: 10px;
}

hh.wp_widget_mondo_booking .mobile-call-us, .wp_widget_mondo_booking .desktop-call-us {
  margin: 10px 0 0 0;
  font-size: 14px;
}

hh.wp_widget_mondo_booking .mobile-call-us {
  display: none;
}

@media ( max-width: 800px ) {
	hh.wp_widget_mondo_booking .mobile-call-us {
  		display: block;
	}
	hh.wp_widget_mondo_booking .desktop-call-us {
  		display: none;
	}
}

hh.wp_widget_mondo_booking input {
    width: 180px;
    border-radius: 0;
    margin-right: 10px;
    height: 30px;
    padding: 5px;
    font-size: 13px;
}

.single-specials #content {
    padding-top: 169px;
}

@media only screen and (max-width: 960px) {
    a.book-button {
  		display: none;
    }
}

@media (max-width: 768px) {
    .ubermenu-responsive-toggle {
      background: mintcream;
    }

	.mobile-logo {
      display: block;
  		margin: 5px auto;
    }

    #masthead {
        position: static;
   		background: #404040;
    }
    .container, .container-small {
        padding: 10px;
    }

    #ui-datepicker-div {
        width: calc(100% - 20px);
        left: 10px !important;
    }

    .wp_widget_mondo_booking input {
        display: block !important;
        width: 100%;
        margin-bottom: 10px;
    }

    .col_1-2 {
        width: 100%;
        display: block;
        float: none;
    }

    .icon-list {
        padding-left: 0;
    }

    .beer-slider {
        display: none;
    }
    .footer-booking {
        padding: 20px;
    }

    .beer-panel h1 {
        font-size: 38px;
        line-height: normal;
    }

	body:not(.home):not(.page-brewery) .entry-content > div:first-of-type > div > .vc_column-inner { padding-top: 0;}

  body {
      font-size: 0.8em;
  }

  h1 {
      font-size: 3em;
  }

  .wpb_wrapper {
      padding: 0 5px;
  }

  .vc_btn3 {
      width: 100% !important;
      display: block !important;
  }

  .alehouse-logo {
      display: none;
  }

#colophon::after {
    display: none;
}

#credits {
  text-align: center;
}

}

.ubermenu .ubermenu-item:not(#menu-item-143) {
    background: rgba(0,0,0,0.5);
}

/* Custom Ubermenu */

.ubermenu-sub-indicators .ubermenu-has-submenu-drop>.ubermenu-target {
  padding-right: 0;
}

.ubermenu .ubermenu-target {
  padding: 5px 0;
}

/* Custom top padding */

.single-tribe_events #content, .post-type-archive-tribe_events #content {
    padding-top: 200px;
}

.gform_wrapper .top_label .gfield_label {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.footer-partners img {
    max-height: 93px;
    max-width: 24%;
    padding: 10px;
}

.error-404.not-found {
    margin-top: 200px;
}

.hero-image.vc_row.vc_row-no-padding .vc_column-inner .wpb_text_column {
    padding-left: 15px;
    padding-right: 15px;
}

.vc_column_container>.vc_column-inner {
    padding-left: 25px;
    padding-right: 25px;
}

.single-specials #content img, .single-specials #content h2, .single-specials #content p {
    padding: 0 10px;
}

.hero-bar .vc_column-inner {
  padding: 0 !important;
}

.hero-icon {
    margin-bottom: 0;
}

.hero-bar {
  width: 100%;
  background: rgba(0,0,0,0.5);
  margin-bottom: 0;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
    height: 2em;
}

.hero-image {
  padding-bottom: 2em;
}

#gform_2 .gform_body {
    text-align: center;
}

#gform_2 label {
    display: none;
}

.home-page-specials h2 {
  font-size: 32px;
}

.home-page-specials p {
    font-size: 1.1em;
}

.home-page-specials .vc_btn3-container {
    margin-bottom: 0;
}

.home-page-specials .vc_btn3.vc_btn3-style-modern {
    margin: 0;
}

#responsive-menu-container a.button {
    padding: 10px;
    border: none;
}

a.small {
    font-family: Montserrat;
    color: black;
    font-size: 13px;
}

.ubermenu #menu-item-143 {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5) 32px, rgba(0,0,0,0.0) 32px, rgba(0,0,0,0.0));
}

@media only screen and (max-width: 959px) {
    .main-navigation {
        display: none;
    }
}

/*

 */

body.home rs-module-wrap {
    width: 100% !important;
    left: 0 !important;
}

/* Accessibility Updates */

.beer-panel h2 {
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-weight: normal;
  font-size: 24px;
}

#footer-booking a {
    font-size: 24px;
    font-weight: 200;
}

.tribe-events-notices {
  color: #000033 !important;
}
p.tribe-events-back {
    margin-top: 64px
}

.archive .hentry {
    max-width: 800px;
}

a.vc_btn3.vc_btn3.vc_btn3,
.tenf-secondary-menu-wrapper a,
.gform_button[type="submit"].gform_button[type="submit"].gform_button[type="submit"] {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: white !important;
    border-radius: 0 !important;
    border: none !important;
    letter-spacing: 1px !important;
}

a.vc_btn3.vc_btn3.vc_btn3,
.gform_button[type="submit"].gform_button[type="submit"].gform_button[type="submit"] {
    background: #bb8946 !important;
    padding: 1rem 2rem !important;
	}

a.vc_btn3.vc_btn3.vc_btn3:hover, .gform_button[type="submit"].gform_button[type="submit"].gform_button[type="submit"]:hover {
    background: #745429 !important;
}


/* Tenf Specials (Homepage short-code) */

.tenf-specials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
    margin: 1em 0;
}

a.tenf-special {
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.tenf-special-image {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
}

.tenf-special-image > img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tenf-special-content {
    position: absolute;
    bottom: 0em;
    font-size: 2em;
    width: 100%;
    background: #6e856be6;
    padding: 0.5em;
    height: 4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1em;
    transition: height 0.9s;
}

.tenf-special:nth-child(2) .tenf-special-content {
    background: #bb8946e6;
}

.tenf-special:nth-child(3) .tenf-special-content {
    background: #556670e6;
}

.tenf-special-content > h3 {
    margin: 0;
    color: white;
}

a.tenf-special:hover .tenf-special-content {
    height: 100%;
}

a.tenf-special:hover .tenf-special-learn-more {
  height: 1.5em;
  opacity: 1;
}

span.tenf-special-learn-more {
    font-size: 0.6em;
    font-family: 'Montserrat';
    font-weight: bold;
    color: #eee;
    display: block;
    height: 0;
    opacity: 0;
    transition: height 0.5s, opacity 0.5s;
}


@media (max-width: 768px) {
	.tenf-specials {
		grid-template-columns: 1fr;
    max-width: 600px;
    margin: 1em auto;
	}
}


.tenf-primary-menu-wrapper {
    display: flex;
    background: rgba(0, 0, 0, 0.7);
  }

  .tenf-primary-menu-wrapper .tenf-header-logo {
    position: relative;
    height: 0;
    padding: 0.5em 0 0 2em;
  }

  .menu-primary-container {
    flex-grow: 1;
    width: 100%;
  }

  .tenf-menu-container a {
    color: white;
    text-transform: uppercase;
    font-size: 1rem;
    text-decoration: none;
    border: 0;
    text-align: center;
    font-weight: 700;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0.5em 1.5em;
    display: grid;
    place-items: center;
  }

  .tenf-menu-container li:hover > a,
  .tenf-menu-container li:active > a {
    color: white;
    background: black;
  }

  #primary-menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  #primary-menu li {
    text-align: center;
  }

  .main-navigation ul li:hover > ul,
  .main-navigation ul li.focus > ul {
    background: rgba(0, 0, 0, 0.7);
    top: unset;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .tenf-secondary-menu-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 2em;
  }

  #secondary-menu {
    font-family: Montserrat;
    display: flex;
    gap: 1em;
  }

  .tenf-secondary-menu-wrapper a {
    background: rgba(0, 155, 0, 0.75);
    padding: 0.5em;
    margin-right: 2em;
    font-size: 0.9em;
  }

  div.tenf-secondary-menu-wrapper a:hover,
  div.tenf-secondary-menu-wrapper a:active {
    background: rgba(0, 155, 0);
  }

li.order-online {
    display: none;
}

.page-dining li.order-online {
    display: block;
}
