/*@font-face {
  font-family: 'Chronicle Display';
  src:  url('../fonts/ChronicleDisplay_Roman/ChronicleDisplay_Roman.woff') format('woff'),
      url('../fonts/ChronicleDisplay_Roman/ChronicleDisplay_Roman.svg#ChronicleDisplay_Roman') format('svg'),
      url('../fonts/ChronicleDisplay_Roman/ChronicleDisplay_Roman.otf') format('opentype'),
      url('../fonts/ChronicleDisplay_Roman/ChronicleDisplay_Roman.ttf') format('truetype'),
      url('../fonts/ChronicleDisplay_Roman/ChronicleDisplay_Roman.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Chronicle Display';
  src:  url('../fonts/ChronicleDisplay_Italic/ChronicleDisplay_Italic.woff') format('woff'),
      url('../fonts/ChronicleDisplay_Italic/ChronicleDisplay_Italic.svg#ChronicleDisplay_Italic') format('svg'),
      url('../fonts/ChronicleDisplay_Italic/ChronicleDisplay_Italic.otf') format('opentype'),
      url('../fonts/ChronicleDisplay_Italic/ChronicleDisplay_Italic.ttf') format('truetype'),
      url('../fonts/ChronicleDisplay_Italic/ChronicleDisplay_Italic.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: italic;
}*/
/* Mixins
====================================================================
====================================================================*/
/* Clearfix - usage: @extend %clearfix;
--------------------------------------------------------------------*/
header .group2, .clearfix {
  *zoom: 1; }
  header .group2:before, header .group2:after, .clearfix:before, .clearfix:after {
    content: " ";
    display: table; }
  header .group2:after, .clearfix:after {
    clear: both; }

/* Transition - usage: @include transition(all .2s ease); - or - @extend .transition;
--------------------------------------------------------------------*/
.transition, #store-login .button, #store-login .login-form input[type="submit"], #directory .a-z li:before, #directory .a-z li, #directory .categoryFilter .dropdown li, #directory .clearFilters, #directory .tabNav .button, footer .newsletter_signup button,
footer .newsletter_signup .ctct-form input[type="submit"], .postsContainer .searchform input[type="submit"], .featureBlocks .item, .buttonVert:before, .buttonHorz:before, .instagram .sbi_photo_wrap, .searchform .icon, a, svg, path, polygon, polyline, rect, circle {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

/* Animation - usage: @include keyframes(slide-down) { 0% { opacity: 1; } 90% { opacity: 0; } } - or - @include animation('slide-down 5s 3');
--------------------------------------------------------------------*/
/* Center Vertically - usage: @include vertical-align();
--------------------------------------------------------------------*/
/* Center Horizontally - usage: @include horizontal-align();
--------------------------------------------------------------------*/
/* Center Horizontal and Vertical - usage: @include center-align();
--------------------------------------------------------------------*/
/* Rotate - usage: @include rotate(-90deg); - or - @extend .rotate_left;
--------------------------------------------------------------------*/
.rotate_left {
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=cos(-90deg), M12=-sin(-90deg), M21=sin(-90deg), M22=cos(-90deg));
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=cos(-90deg), M12=-sin(-90deg), M21=sin(-90deg), M22=cos(-90deg))";
  zoom: 1; }

.rotate_right {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=cos(90deg), M12=-sin(90deg), M21=sin(90deg), M22=cos(90deg));
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=cos(90deg), M12=-sin(90deg), M21=sin(90deg), M22=cos(90deg))";
  zoom: 1; }

.transform_left {
  -moz-transform: rotate(-90deg) translateY(-50%);
  -o-transform: rotate(-90deg) translateY(-50%);
  -ms-transform: rotate(-90deg) translateY(-50%);
  -webkit-transform: rotate(-90deg) translateY(-50%);
  transform: rotate(-90deg) translateY(-50%); }

.transform_right {
  -moz-transform: rotate(90deg) translateY(-50%);
  -o-transform: rotate(90deg) translateY(-50%);
  -ms-transform: rotate(90deg) translateY(-50%);
  -webkit-transform: rotate(90deg) translateY(-50%);
  transform: rotate(90deg) translateY(-50%); }

/* Aspect Ratio - usage: @include aspect-ratio(16, 9);
--------------------------------------------------------------------*/
/* Flexbox - usage: @include flexbox(); - @include align-items(center); - @include justify-content(space-around);
--------------------------------------------------------------------*/
.flexCenterBetween, #store-login .buttonWrapper, #directory .grid, #directory .a-z, #directory .buttonWrapper, #about .amenities, #about .buttonWrapper, header .tooltip .hoursWrapper, header .tooltip, header .toolbar .inner, header .groups, .featureBlocks {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }

.flexCenterAround, #single.store .relatedPosts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around; }

.flexCenterCenter, #store-login .input-row, #store-login .sortButtons, .postsContainer .sortButtons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.flexStartCenter, #about .amenitiesText, #about .gift .section2, #about .gift .section.one, #movies .theaterInfo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center; }

.flexStartAround, .relatedPosts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around; }

.flexStartBetween, #online-ordering .eat .section2 .item, #online-ordering .shop .section2 .item, #online-ordering .park .section2 .item, #online-ordering .eat .section2, #online-ordering .shop .section2, #online-ordering .park .section2, #single .singleContent .postLinks, .postsContainer .postList {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }

.flexEndBetween, #error404 .amenities, #directory .list .item, footer .groups {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between; }

/* Multiple columns text - usage: @include textColumns(2,40px);
--------------------------------------------------------------------*/
/* Linear Gradient - usage: @include linearGradient(rgba(255,255,255,1), rgba(0,0,0,1));
--------------------------------------------------------------------*/
/* Grayscale - usage: @include linearGradient(rgba(255,255,255,1), rgba(0,0,0,1));
--------------------------------------------------------------------*/
.grayscale, #directory .grid a {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 200ms ease-in-out; }
  .grayscale:hover, #directory .grid a:hover {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    filter: grayscale(0); }

/* Placeholder - usage:
.myDiv {
  @include placeholder { color: #000; }
}
--------------------------------------------------------------------*/
/* Global
====================================================================
====================================================================*/
body, p, ul, li, h1, h2, h3, h4, h5, h6, div, section, header, footer, a {
  margin: 0px;
  padding: 0;
  outline: none; }

ul, li {
  list-style: none; }

a {
  display: block;
  text-decoration: none;
  color: inherit; }
  a:visited {
    color: inherit; }

img, svg {
  width: 100%; }

input, textarea, form, button, select {
  outline: none; }

html {
  -webkit-font-smoothing: antialiased; }

input[type="submit"] {
  cursor: pointer; }

/*$textgreen: #536758;
$darkgreen: #6d6a4d;*/
/*$lightgreen: #e4e9d2;*/
/* BRIDGE STREET TOWN CENTRE FONTS */
/* Gotham Medium:
font-family: "Gotham A", "Gotham B";
font-style: normal;
font-weight: 500; */
/* Chronicle Display Roman:
font-family: "Chronicle Display A", "Chronicle Display B";
font-style: normal;
font-weight: 400; */
/* Verlag Condensed Book:
font-family: "Verlag Cond A", "Verlag Cond B";
font-style: normal;
font-weight: 400; */
/* Verlag Book:
font-family: "Verlag A", "Verlag B";
font-style: normal;
font-weight: 400; */
/* Verlag Bold:
font-family: "Verlag A", "Verlag B";
font-style: normal;
font-weight: 700; */
/* Quarto Semibold Italic:
font-family: "Quarto A", "Quarto B";
font-style: italic;
font-weight: 600; */
body {
  font-family: "fairplex-wide", Georgia, Times;
  color: #6d6a4d; }

p {
  font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
  font-size: 19px;
  line-height: 29px;
  letter-spacing: .5px; }

p em {
  font-size: 25px;
  line-height: 33px;
  font-style: normal; }

/*h1 { font-family: $chronicle; font-size: 42px; line-height: 48px; letter-spacing: .5px; font-weight: $regular; }*/
h1 {
  font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
  font-size: 25px;
  line-height: 31px;
  letter-spacing: .5px;
  font-weight: 400; }

/*h2 { font-family: $verlagBook; font-size: 19px; line-height: 23px; letter-spacing: 1.5px; font-weight: $regular; text-transform: uppercase; }*/
h2 {
  font-family: "Verlag A", "Verlag B", Helvetica;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase; }

h3 {
  font-family: "Verlag A", "Verlag B", Helvetica;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 1.66px;
  font-weight: 400;
  text-transform: uppercase; }

h4 {
  font-family: "rift-soft", "Gotham SSm A", "Gotham SSm B", Helvetica;
  font-size: 55px;
  line-height: 47px;
  font-weight: 500; }

h5 {
  font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 1.66px;
  font-weight: 700;
  text-transform: uppercase; }

h6 {
  font-family: "Verlag A", "Verlag B", Helvetica;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 1.5px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 7px; }

::-moz-selection {
  background: #dfdedd;
  color: #6d6a4d; }

::selection {
  background: #dfdedd;
  color: #6d6a4d; }

a:hover, svg:hover, path:hover, polygon:hover, polyline:hover, rect:hover, circle:hover {
  color: 800; }

p a:hover {
  color: #c19e00; }

.relative {
  position: relative; }

.mobileOnly {
  display: none; }

.button, .pagination a {
  font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 34px;
  border: 2px solid #c19e00;
  display: inline-block;
  background: #ffffff;
  color: #c19e00;
  text-align: center; }
  .button:hover, .button.current, .pagination a:hover, .pagination a.current {
    color: #ffffff;
    background: #c19e00; }
  .button.noHover, .pagination a.noHover {
    background: #ffffff !important;
    color: #c19e00 !important; }

.hashtag a:hover {
  color: #c19e00; }

/* Z-Index
-----------------
20 - 
---------------*/
/* Recurring Structures
====================================================================
====================================================================*/
.social svg {
  height: 26px;
  width: auto; }

.social a {
  display: inline-block;
  margin: 0 20px 0 0;
  max-width: 33px; }
  .social a:last-child {
    margin-right: 0; }
  .social a:hover svg path {
    fill: #c19e00; }

.searchform .icon {
  z-index: -1; }
  .searchform .icon svg rect {
    fill: #c19e00 !important; }
  .searchform .icon.hidden {
    opacity: 0;
    width: 0; }

/*** IE FIX *** scale svg map ***/
body.ie .searchform .icon {
  top: -7px; }

.instagram {
  margin: 35px 70px;
  padding: 13px 0;
  background: #e2decf;
  line-height: 0;
  position: relative; }
  .instagram svg {
    width: 45px;
    position: absolute;
    top: 0px;
    left: 45px; }
    .instagram svg .st0 {
      fill: #c19e00; }
  .instagram .sbi_photo_wrap:hover {
    opacity: .38; }
  .instagram #sbi_images .sbi_photo {
    opacity: 1 !important; }
  .instagram .sbi_lightbox_carousel_icon path {
    display: none; }

.textBar {
  padding: 57px 70px 57px;
  background: #e2decf;
  text-align: center;
  position: relative;
  color: #c19e00; }
  .textBar h1 {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 1.66px;
    font-weight: 400;
    text-transform: uppercase; }
  .textBar.style1 h1 {
    font-family: "rift-soft", "Gotham SSm A", "Gotham SSm B", Helvetica;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: 6px; }

.textBarSmall {
  padding: 40px;
  background: #e2decf;
  text-align: center;
  color: #6d6a4d;
  position: relative; }
  .textBarSmall h2 {
    font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
    font-size: 17px;
    line-height: 29px;
    color: #6d6a4d;
    letter-spacing: 1px;
    text-transform: uppercase; }

.buttonHorz {
  position: relative;
  display: inline-block; }
  .buttonHorz:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #e2decf;
    position: absolute;
    left: 5px;
    top: 5px; }
  .buttonHorz .buttonInner {
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px 7px;
    border: 2px solid #6d6a4d;
    position: relative; }
  .buttonHorz .arrow {
    width: 43px;
    position: absolute;
    right: -44px;
    top: -2px;
    height: 100%;
    border: 2px solid #6d6a4d;
    border-left: none; }
    .buttonHorz .arrow svg {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      right: -35%; }
  .buttonHorz .pin, .buttonHorz .pet {
    width: 40px;
    position: absolute;
    right: -44px;
    top: -2px;
    height: 100%;
    border: 2px solid #6d6a4d;
    border-left: none; }
    .buttonHorz .pin svg, .buttonHorz .pet svg {
      width: 20px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%); }
  .buttonHorz .mail {
    width: 40px;
    position: absolute;
    right: -44px;
    top: -2px;
    height: 100%;
    border: 2px solid #6d6a4d;
    border-left: none; }
    .buttonHorz .mail svg {
      width: 20px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%); }

a.buttonHorz:hover:before, a.buttonVert:hover:before {
  background: #ebedeb; }

.buttonVert {
  position: relative;
  display: inline-block;
  text-align: center; }
  .buttonVert:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #e2decf;
    position: absolute;
    right: 5px;
    top: 5px; }
  .buttonVert.share .buttonInner {
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 21px;
    line-height: 29px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 5px 13px; }
  .buttonVert .buttonInner {
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px 13px;
    border: 2px solid #6d6a4d;
    position: relative;
    width: 15px;
    word-wrap: break-word;
    white-space: pre-wrap; }
  .buttonVert .word {
    margin-bottom: 15px; }
  .buttonVert .up-arrow {
    height: 34.5px;
    width: 100%;
    position: absolute;
    top: -48px;
    left: -0.3px;
    border-bottom: none; }
  .buttonVert .arrow {
    height: 44.5px;
    width: 100%;
    position: absolute;
    bottom: -30px;
    left: -0.7px;
    border-top: none; }
  .buttonVert svg {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -35%;
    height: 100%;
    width: auto; }
  .buttonVert .wifi {
    height: 39px;
    width: 100%;
    position: absolute;
    top: -43px;
    left: -2px;
    border: 2px solid #415863;
    border-bottom: none;
    background: #ffffff; }
    .buttonVert .wifi svg {
      width: 25px;
      height: auto;
      bottom: 7px; }

svg polygon, svg line, svg rect {
  fill: #6d6a4d; }

.ctct-form-wrapper .ctct-message .ctct-dismiss-ajax-notice {
  position: relative;
  bottom: 14px; }

.featureBlocks {
  overflow: hidden; }
  .featureBlocks .item {
    position: relative;
    color: #ffffff;
    text-align: center;
    /*background-size: 100% !important; background-position: center !important;*/
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease; }
    .featureBlocks .item.whole {
      width: 100%; }
      .featureBlocks .item.whole .aspect {
        position: relative;
        /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/ }
        .featureBlocks .item.whole .aspect:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 41.2587412587%; }
    .featureBlocks .item.half {
      width: 50%; }
      .featureBlocks .item.half .aspect {
        position: relative;
        /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/ }
        .featureBlocks .item.half .aspect:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 82.5174825175%; }
    .featureBlocks .item.third {
      width: calc(100% / 3); }
      .featureBlocks .item.third .aspect {
        position: relative;
        /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/ }
        .featureBlocks .item.third .aspect:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 123.6533957845%; }
  .featureBlocks .backgroundWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    .featureBlocks .backgroundWrapper:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #556757;
      opacity: .75;
      -webkit-transition: opacity 0.4s ease;
      -moz-transition: opacity 0.4s ease;
      -ms-transition: opacity 0.4s ease;
      -o-transition: opacity 0.4s ease;
      transition: opacity 0.4s ease;
      z-index: 1; }
  .featureBlocks .backgroundImage {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease; }
  .featureBlocks .innerBorder {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: calc(100% - (30px * 2));
    height: calc(100% - (30px * 2));
    border: 3px solid #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2; }
  .featureBlocks .center .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: calc(100% - (30px * 2));
    height: calc(100% - (30px * 2));
    /*border: 3px solid $white;*/
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2; }
  .featureBlocks .center .inner .content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 78%;
    height: 86%; }
  .featureBlocks .center .inner .title {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 34px;
    line-height: 42px;
    font-weight: 600;
    letter-spacing: 4px; }
  .featureBlocks .center .inner .upperText, .featureBlocks .center .inner .lowerText {
    font-size: 19px;
    line-height: 22px;
    letter-spacing: 3px;
    font-weight: 300;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%; }
  .featureBlocks .center .inner .upperText {
    top: 0; }
  .featureBlocks .center .inner .lowerText {
    bottom: 0; }
  .featureBlocks .bottom .innerBorder {
    display: none; }
  .featureBlocks .bottom .backgroundWrapper:before {
    display: none; }
  .featureBlocks .bottom .inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #6d6a4d; }
  .featureBlocks .bottom .inner .content {
    padding: 32px; }
  .featureBlocks .bottom .inner .title {
    font-family: "voltage";
    font-size: 46px;
    line-height: 46px;
    text-transform: none;
    margin: 10px 0; }
  .featureBlocks .bottom .inner .lowerText {
    font-size: 19px;
    line-height: 22px;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase; }
  .featureBlocks .item.overlay:hover .backgroundWrapper:before {
    opacity: .2;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease; }
  .featureBlocks .item.overlay:hover .backgroundImage {
    -moz-transform: scale(1.07);
    -o-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -webkit-transform: scale(1.07);
    transform: scale(1.07); }

.postsContainer {
  padding: 30px 30px 75px;
  /*.sortButtons a { font-family: $sansSerif1; font-size: 23px; line-height: 23px; text-transform: uppercase; float: left; padding: 9px 14px; border: 2px solid $darkgreen; @extend .transition; background: $white;
		&.current, &:hover { color: $white; background: $darkgreen; }
	}*/
  color: #c19e00; }
  .postsContainer .bar {
    text-align: center;
    max-width: 400px;
    margin: 0 auto; }
  .postsContainer .sortButtons {
    margin: 11px 0 37px; }
  .postsContainer .sortButtons .button:last-child {
    margin-left: -2px; }
  .postsContainer .searchform {
    position: relative;
    padding-top: 4px; }
  .postsContainer .searchform input[type="text"] {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    color: #c19e00;
    border: none;
    border-bottom: 3px solid #c19e00;
    width: 100%;
    text-align: center;
    background: none;
    z-index: 5; }
  .postsContainer .searchform input[type="submit"] {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    color: #6d6a4d;
    margin-top: 22px;
    border: none;
    padding: 0;
    background: none; }
    .postsContainer .searchform input[type="submit"]:hover {
      color: #c19e00; }
  .postsContainer .searchform .icon {
    width: 31px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0px;
    z-index: -1;
    height: 35px; }
  .postsContainer .postList {
    max-width: 810px;
    margin: 65px auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .postsContainer .post {
    width: 50%;
    max-width: 355px;
    margin-bottom: 82px; }
  .postsContainer .post h6 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #c19e00; }
  .postsContainer .post h1 {
    color: #6d6a4d; }
  .postsContainer .post a:hover {
    color: #c19e00; }
  .postsContainer .pagination {
    text-align: center; }
    .postsContainer .pagination.done {
      display: none !important; }
  .postsContainer .pagination a {
    display: inline-block !important; }
  .postsContainer .infiniteScroll .post {
    opacity: 0;
    margin-top: 60px;
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease; }
  .postsContainer #infscr-loading {
    float: left;
    width: 100%;
    text-align: center; }
    .postsContainer #infscr-loading img {
      max-width: 100px;
      margin: 0 auto;
      padding-top: 90px; }
  .postsContainer #infscr-end {
    padding-top: 90px;
    font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
    font-size: 18px;
    line-height: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6d6a4d; }

.relatedPosts {
  max-width: 1140px;
  margin: 0 auto 70px;
  padding: 70px 0;
  background: #eee8e0;
  position: relative; }
  .relatedPosts .button {
    position: absolute;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    top: 0; }
  .relatedPosts .post {
    width: 50%;
    max-width: 355px; }
  .relatedPosts .post h6 {
    margin-bottom: 5px; }

/* Header
====================================================================
====================================================================*/
header {
  padding: 0 75px; }
  header .logo {
    max-width: 400px;
    width: 400px;
    max-height: 135px; }
    header .logo:hover path {
      fill: #c19e00; }
  header .float_right {
    float: right;
    width: 100%; }
  header .toolbar {
    width: 455px;
    margin-bottom: 38px;
    float: right; }
  header .toolbar .inner {
    position: relative;
    padding: 0 20px;
    background: #e2decf;
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 1.66px; }
  header .toolbar .no_tooltip:hover {
    opacity: .5; }
  header .icon {
    display: inline-block;
    position: relative;
    top: 4px;
    height: 20px; }
    header .icon.search svg {
      width: 16px; }
      header .icon.search svg path, header .icon.search svg rect {
        fill: #c19e00; }
    header .icon.clock svg {
      width: 16px; }
      header .icon.clock svg path, header .icon.clock svg polygon {
        fill: #c19e00; }
    header .icon.pin svg {
      width: 12px; }
      header .icon.pin svg path {
        fill: #c19e00; }
    header .icon.chain svg {
      width: 16px; }
      header .icon.chain svg path {
        fill: #c19e00; }
  header .tooltip {
    position: absolute;
    top: -10px;
    left: 0px;
    width: calc(100% - (16px * 2));
    padding: 8px 16px;
    background: #c19e00;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    z-index: -1;
    cursor: initial;
    font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    letter-spacing: 2.35px;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  header .tooltip .hoursWrapper {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    /*margin-bottom: 5px;*/
    padding-bottom: 6px; }
  header .toolbar .item {
    padding: 9px 0 14px;
    cursor: pointer;
    font-weight: 300;
    color: #c19e00; }
    header .toolbar .item:hover .tooltip {
      top: calc(100% - 1px);
      opacity: 1;
      z-index: 0;
      -webkit-transition: opacity 0.6s ease;
      -moz-transition: opacity 0.6s ease;
      -ms-transition: opacity 0.6s ease;
      -o-transition: opacity 0.6s ease;
      transition: opacity 0.6s ease; }
  header .searchform {
    width: 100%; }
  header .searchform input {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase; }
  header .searchform input[type="text"] {
    border: none;
    padding: 0;
    background: none;
    color: #ffffff;
    z-index: 5;
    width: calc(100% - 97px); }
  header .searchform input[type="submit"] {
    padding: 0;
    border: none;
    background: none;
    color: #ffffff;
    float: right; }
  header ::placeholder {
    color: #e2decf; }
  header nav {
    float: right;
    width: 100%;
    text-align: right;
    padding-top: 6px; }
  header .menu-header-menu-container {
    padding-bottom: 27px; }
  header .menu-header-menu-container li {
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    color: #c19e00;
    display: inline-block;
    margin-right: 47px;
    text-align: right; }
    header .menu-header-menu-container li:last-child {
      margin-right: 0; }
    header .menu-header-menu-container li.current-menu-item a:after {
      width: 100%; }
  header .menu-header-menu-container a {
    position: relative;
    display: inline-block; }
    header .menu-header-menu-container a:hover {
      color: #6d6a4d; }
    header .menu-header-menu-container a:after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0px;
      height: 0px;
      width: 0;
      border-top: 3px solid #b2a46d;
      -webkit-transition: all 0.4s ease;
      -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
      transition: all 0.4s ease; }
    header .menu-header-menu-container a:hover:after {
      width: 100%; }

/* Footer
====================================================================
====================================================================*/
.pre-footer {
  width: 100%;
  background: #003C70;
  padding: 16px 0 12px 0; }
  .pre-footer a {
    text-align: center; }
  .pre-footer img {
    max-width: 240px;
    margin: 0 auto; }

footer {
  background: #6d6a4d;
  padding: 38px;
  text-align: center;
  color: #ffffff;
  font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
  text-transform: uppercase;
  /* Newsletter Link - New */ }
  footer .menu-footer-menu-container li {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 1.66px;
    font-weight: 600;
    display: inline-block;
    margin-right: 3vw; }
    footer .menu-footer-menu-container li:last-child {
      margin-right: 0; }
  footer .logo svg path, footer .logo svg polygon, footer .logo svg rect {
    fill: #ffffff; }
  footer a:hover {
    color: #c19e00; }
  footer svg:hover path, footer svg:hover polygon, footer svg:hover rect {
    fill: #c19e00; }
  footer .group1 {
    width: 142px;
    text-align: center; }
  footer .group3 {
    width: 142px;
    line-height: 0; }
  footer .group2 {
    margin-top: 48px; }
  footer .fineText {
    font-size: 8px;
    line-height: 11px;
    color: #d5c6b2; }
  footer .logo {
    margin: 7px 0; }
    footer .logo:hover svg path {
      fill: #c19e00; }
    footer .logo:hover svg polygon {
      fill: #c19e00; }
    footer .logo:hover svg rect {
      fill: #c19e00; }
  footer .newsletter_signup {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 15px; }
  footer .newsletter_signup .ctct-form-description p {
    font-family: "fairplex-wide", Georgia, Times;
    font-size: 16px;
    line-height: 16px;
    color: #ffffff;
    text-transform: none; }
    footer .newsletter_signup .ctct-form-description p:first-child {
      padding-bottom: 10px; }
    footer .newsletter_signup .ctct-form-description p:last-child {
      font-size: 14px;
      line-height: 14px;
      padding-bottom: 20px; }
  footer .newsletter_signup form .ctct-form-field {
    max-width: 400px;
    margin: 0 auto; }
  footer .newsletter_signup .ctct-form-field label {
    color: #ffffff;
    font-size: 16px;
    line-height: 18px; }
  footer .newsletter_signup .ctct-form-wrapper .ctct-form abbr {
    text-decoration: none;
    color: #556757; }
  footer .newsletter_signup .ctct-form a.button {
    display: none; }
  footer .newsletter_signup input[type="text"],
  footer .newsletter_signup input[type="email"] {
    border: none;
    margin: 0;
    background: none;
    padding: 0 0 20px;
    border-bottom: 2px solid #ffffff;
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff; }
  footer .newsletter_signup .ctct-form-field-email label,
  footer .newsletter_signup .ctct-form-field-text label {
    display: none !important; }
  footer .newsletter_signup button,
  footer .newsletter_signup .ctct-form input[type="submit"] {
    border: none;
    background: none;
    padding: 0;
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 13px;
    cursor: pointer; }
    footer .newsletter_signup button:hover,
    footer .newsletter_signup .ctct-form input[type="submit"]:hover {
      color: #ffffff; }
  footer .newsletter_signup ::-webkit-input-placeholder {
    color: #ffffff; }
  footer .newsletter_signup :-ms-input-placeholder {
    color: #ffffff; }
  footer .newsletter_signup ::-moz-placeholder {
    color: #ffffff;
    opacity: 1; }
  footer .newsletter_signup :-moz-placeholder {
    color: #ffffff;
    opacity: 1; }
  footer .newsletter_signup button,
  footer .newsletter_signup .ctct-form input[type="submit"] {
    text-transform: uppercase;
    border: none;
    background: none;
    padding: 0;
    font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 13px;
    cursor: pointer; }
    footer .newsletter_signup button:hover,
    footer .newsletter_signup .ctct-form input[type="submit"]:hover {
      color: #c19e00; }
  footer .newsletter_signup .fineText,
  footer .newsletter_signup .ctct-disclosure sub,
  footer .newsletter_signup .ctct-disclosure sub a {
    letter-spacing: 1px;
    font-size: 8px;
    line-height: 6px;
    text-transform: none;
    color: #d5c6b2; }
  footer .newsletter_signup .ctct-disclosure sub a {
    display: inline-block; }
  footer .newsletter_signup .ctct-disclosure hr {
    display: none; }
  footer .newsletter_signup a {
    border: 1px solid #ffffff;
    padding: 10px 25px; }
    footer .newsletter_signup a:hover {
      color: #c19e00;
      border-color: #c19e00; }
  footer .login-link {
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    color: #d5c6b2;
    border: 1px solid #d5c6b2;
    padding: 7px 14px 6px;
    margin-top: 22px;
    display: inline-block; }
    footer .login-link:hover {
      color: #c19e00;
      border-color: #c19e00; }
  footer .social a {
    margin: 32px 20px 23px 0;
    max-width: 26px; }
  footer .address {
    font-size: 10px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px; }
    footer .address br {
      display: none; }
    footer .address:hover {
      color: #c19e00; }
  footer .phone {
    font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
    font-size: 20px;
    line-height: 20px; }
    footer .phone:hover {
      color: #c19e00; }

.cn-close-icon {
  display: none; }

.cn-button {
  border-radius: 0; }

/* Home
====================================================================
====================================================================*/
.full-overlay[data-overlay="mailing-list"] {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #ffffff; }
  .full-overlay[data-overlay="mailing-list"].active {
    opacity: 1;
    visibility: visible; }

body.home .popup-inner {
  padding: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  /*width:565px; height: 365px;*/
  background: #ffffff;
  text-align: center;
  color: #6d6a4d;
  /*button[type="submit"]:after { content: ""; position: absolute; bottom: -4px; left: 0px; height: 0px; width: 0; border-top: 3px solid $textgreen; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; }
	button[type="submit"]:hover:after { width: 100%; }*/ }
  body.home .popup-inner h1 {
    margin-top: 55px;
    text-align: center; }
  body.home .popup-inner p {
    width: 70%;
    margin: 0 auto;
    margin-top: 15px;
    line-height: 22px;
    text-align: center;
    color: #6d6a4d;
    font-size: 18px;
    line-height: 20px; }
    body.home .popup-inner p:last-child {
      font-size: 16px;
      margin-bottom: 25px; }
  body.home .popup-inner .ctct-button {
    display: none; }
  body.home .popup-inner .overlay-trigger {
    width: 20px;
    height: 20px;
    float: right;
    padding-top: 20px;
    padding-right: 20px;
    cursor: pointer; }
  body.home .popup-inner .ctct-custom-form {
    margin-top: 35px;
    background-color: #ffffff; }
  body.home .popup-inner .ctct-embed-signup {
    margin-top: 50px; }
  body.home .popup-inner .newsletter_signup {
    text-align: center; }
  body.home .popup-inner .newsletter_signup .ctct-form-field-email label,
  body.home .popup-inner .newsletter_signup .ctct-form-field-text label,
  body.home .popup-inner .newsletter_signup .ctct-form-field-tel label {
    display: none !important; }
  body.home .popup-inner input[type="email"],
  body.home .popup-inner input[type="text"],
  body.home .popup-inner input[type="tel"] {
    width: 75%;
    margin: 0 auto;
    border: 1px solid #6d6a4d;
    border-radius: 0;
    padding: 12px 15px;
    font-family: "Verlag A", "Verlag B", Helvetica;
    color: #6d6a4d;
    opacity: 1;
    letter-spacing: 4px;
    font-size: 20px;
    text-transform: uppercase;
    box-shadow: none;
    line-height: 1; }
  body.home .popup-inner input[type="submit"] {
    display: block;
    position: relative;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10px;
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #6d6a4d;
    border: none;
    background: none;
    margin-top: 15px;
    width: inherit; }
  body.home .popup-inner input[type="submit"]:hover {
    cursor: pointer;
    color: #c19e00; }
  body.home .popup-inner .ctct-custom-form .ctct-button:hover {
    color: #a24945;
    background-color: #ffffff; }
  body.home .popup-inner .ctct-form-errorMessage {
    display: none; }
  body.home .popup-inner .newsletter_signup .ctct-disclosure hr {
    display: none; }
  body.home .popup-inner .newsletter_signup .ctct-disclosure {
    width: 70%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 55px; }
  body.home .popup-inner .newsletter_signup .ctct-disclosure sub,
  body.home .popup-inner .newsletter_signup .ctct-disclosure sub a {
    letter-spacing: 1px;
    font-size: 8px;
    line-height: 6px;
    text-transform: none; }
  body.home .popup-inner .newsletter_signup .ctct-disclosure sub a {
    display: inline-block; }
  body.home .popup-inner ::-webkit-input-placeholder {
    color: #6d6a4d; }
  body.home .popup-inner :-ms-input-placeholder {
    color: #6d6a4d; }
  body.home .popup-inner ::-moz-placeholder {
    color: #6d6a4d;
    opacity: 1; }
  body.home .popup-inner :-moz-placeholder {
    color: #6d6a4d;
    opacity: 1; }

#home {
  line-height: 0;
  /*	.watermark1 { position: absolute; width: 216px; top: 42%; right: 25px; }*/ }
  #home section {
    padding: 70px 30px; }
  #home .video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0; }
    #home .video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #home .watermark1 {
    position: relative;
    width: 216px;
    float: right;
    right: 25px;
    margin-top: -125px;
    z-index: 50; }
  #home section.block1 {
    /*padding: 75px;*/
    max-width: 1135px;
    margin: 0 auto; }
  #home section.block1 .item {
    max-width: 370px; }
    #home section.block1 .item.one {
      max-width: 415px; }
      #home section.block1 .item.one h1 {
        font-size: 42px;
        line-height: 48px;
        letter-spacing: .5px;
        font-weight: 400; }
  #home section.block1 p {
    margin-bottom: 40px; }
  #home .red {
    color: #c19e00;
    margin-bottom: 17px; }
  #home .featureBlocks .aspect {
    position: relative;
    /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/ }
    #home .featureBlocks .aspect:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 65.625%; }
  #home .featureBlocks .right .inner {
    border: none;
    text-transform: uppercase; }
  #home .featureBlocks .right .title {
    font-family: "Quarto A", "Quarto B", Georgia, Times;
    font-size: 100px;
    line-height: 100px;
    letter-spacing: .25px;
    -moz-transform: translateX(0) translateY(0);
    -o-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    position: static; }
  #home .featureBlocks .upperText {
    -moz-transform: translateX(0) translateY(0);
    -o-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    position: static;
    font-size: 25px;
    letter-spacing: 4px; }
  #home .featureBlocks .lowerText {
    -moz-transform: translateX(0) translateY(0);
    -o-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    position: static;
    /*font-size: 21px;*/
    font-size: 25px;
    letter-spacing: 3px; }
  #home .featureBlocks .center .inner .content {
    height: auto; }
  #home .featureBlocks .left .title {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 55px;
    line-height: 66px;
    font-weight: 700;
    text-transform: uppercase; }
  #home .featureBlocks .right .title {
    font-family: "Quarto A", "Quarto B", Georgia, Times;
    font-size: 100px;
    line-height: 100px;
    letter-spacing: .25px;
    text-transform: none;
    margin: 20px auto 40px; }
  #home .buttonVert {
    position: absolute;
    top: 80px;
    left: 5%;
    z-index: 10; }
    #home .buttonVert::before {
      background: #ebedeb;
      right: auto;
      left: 5px; }
    #home .buttonVert .buttonInner {
      color: #6d6a4d;
      border-color: #cec8b7; }
  #home .watermark2 {
    position: absolute;
    width: 197px;
    top: auto;
    left: auto;
    right: 70px;
    bottom: 0; }
  #home .hashtag {
    font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #6d6a4d;
    margin-top: 30px; }
  #home section.bottomText {
    text-align: center;
    position: relative; }
    #home section.bottomText h1 {
      color: #c19e00;
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 38px;
      line-height: 46px;
      letter-spacing: 1.66px;
      text-transform: uppercase; }
    #home section.bottomText a {
      color: #6d6a4d; }
      #home section.bottomText a:hover {
        color: #c19e00; }

/* Events (Play)
====================================================================
====================================================================*/
#events .buttonVert, #sales .buttonVert {
  position: absolute;
  bottom: 70px;
  left: 6%; }

#events .slider, #sales .slider {
  margin-bottom: 80px; }

#events .slider .item, #sales .slider .item {
  width: 100%; }

#events .postList h1, #sales .postList h1 {
  font-family: "Verlag A", "Verlag B", Helvetica; }

.flickity-page-dots .dot {
  background: #6d6a4d; }

/* Events Single (Play)
====================================================================
====================================================================*/
#single .postsContainer {
  padding-top: 0;
  margin-top: -24px;
  position: relative; }

#single .postsContainer .sortButtons {
  margin-top: 0; }

#single .singleContent {
  max-width: 1135px;
  margin: 0 auto;
  padding: 0 30px 85px; }
  #single .singleContent .left {
    float: left;
    width: calc(50% - 30px); }
  #single .singleContent .left img {
    margin-bottom: 40px; }
  #single .singleContent .text p a {
    display: inline;
    color: #c19e00; }
    #single .singleContent .text p a:hover {
      color: #6d6a4d; }
  #single .singleContent .group:first-child {
    width: 295px; }
  #single .singleContent .buttonHorz {
    width: 252px;
    display: block; }
    #single .singleContent .buttonHorz:first-child {
      margin-bottom: 12px; }
    #single .singleContent .buttonHorz .buttonInner {
      font-size: 20px; }
  #single .singleContent .hashtag {
    font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    color: #6d6a4d;
    margin-top: 17px; }
  #single .singleContent .right {
    float: right;
    width: calc(50% - 30px); }
  #single .singleContent .title {
    font-family: "Verlag A", "Verlag B", Helvetica;
    margin-bottom: 10px;
    position: relative;
    right: 3px;
    color: #6d6a4d; }
  #single .singleContent .date {
    margin-bottom: 20px;
    color: #6d6a4d;
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 1px; }
    #single .singleContent .date a {
      word-wrap: break-word; }
  #single .singleContent .hours {
    color: #c19e00; }
    #single .singleContent .hours:last-child {
      margin-bottom: 20px; }
    #single .singleContent .hours br {
      display: none; }

#single .icon.pin svg path {
  fill: #6d6a4d; }

#single .social svg path, #single .social svg polygon {
  fill: #6d6a4d; }

#single .social svg:hover path, #single .social svg:hover polygon {
  fill: #c19e00; }

#single.store .relatedPosts {
  background: none;
  max-width: 800px; }
  #single.store .relatedPosts .position {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 70%; }
  #single.store .relatedPosts .post {
    position: relative;
    padding-top: 190px; }
  #single.store .relatedPosts a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  #single.store .relatedPosts a:hover {
    opacity: .35; }
  #single.store .relatedPosts img {
    width: auto;
    width: 100%; }

/* Careers
====================================================================
====================================================================*/
#careers {
  line-height: 0; }
  #careers .jobs {
    margin: 60px auto;
    max-width: 1140px;
    padding: 0 30px; }
  #careers .item {
    padding: 50px 0;
    border-bottom: 1px solid #e2decf; }
    #careers .item:last-child {
      border-bottom: 0; }
    #careers .item.noResults {
      text-align: center; }
  #careers .left {
    float: left;
    width: 175px;
    padding-left: 20px; }
  #careers .right {
    float: right;
    width: calc(100% - 175px - 20px - 45px); }
  #careers .store {
    margin-bottom: 5px;
    font-family: "Verlag A", "Verlag B", Helvetica;
    color: #6d6a4d;
    font-size: 25px;
    line-height: 31px;
    letter-spacing: .5px;
    font-weight: 400; }
  #careers .store a {
    color: #6d6a4d; }
    #careers .store a:hover {
      color: #c19e00; }
  #careers .position {
    color: #c19e00; }
  #careers .description {
    margin: 24px 0;
    word-wrap: break-word; }
  #careers .link {
    color: #c19e00; }
  #careers .link a {
    display: inline;
    word-break: break-word; }
    #careers .link a:hover {
      color: #6d6a4d; }

/* Online Ordering
====================================================================
====================================================================*/
#online-ordering .textBar {
  margin-top: -4px; }

#online-ordering .wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 30px; }

#online-ordering .eat .section2, #online-ordering .shop .section2, #online-ordering .park .section2 {
  padding: 60px;
  padding-top: 35px;
  background: #e2decf;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 90px;
  position: relative; }
  #online-ordering .eat .section2 .button.absolute, #online-ordering .shop .section2 .button.absolute, #online-ordering .park .section2 .button.absolute {
    position: absolute;
    -moz-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    top: 0; }
  #online-ordering .eat .section2 .item, #online-ordering .shop .section2 .item, #online-ordering .park .section2 .item {
    padding: 50px 0;
    border-bottom: 1px solid #6d6a4d; }
    #online-ordering .eat .section2 .item:last-child, #online-ordering .shop .section2 .item:last-child, #online-ordering .park .section2 .item:last-child {
      border-bottom: 0; }
    #online-ordering .eat .section2 .item.noResults, #online-ordering .shop .section2 .item.noResults, #online-ordering .park .section2 .item.noResults {
      text-align: center; }
  #online-ordering .eat .section2 .map, #online-ordering .shop .section2 .map, #online-ordering .park .section2 .map {
    width: 100%;
    margin: 0 auto; }
  #online-ordering .eat .section2 .list, #online-ordering .shop .section2 .list, #online-ordering .park .section2 .list {
    margin: 0 auto; }
  #online-ordering .eat .section2 .list .left, #online-ordering .shop .section2 .list .left, #online-ordering .park .section2 .list .left {
    width: 175px; }
  #online-ordering .eat .section2 .list .right, #online-ordering .shop .section2 .list .right, #online-ordering .park .section2 .list .right {
    width: calc(100% - 175px - 45px);
    flex-grow: 2;
    margin-left: 45px; }
  #online-ordering .eat .section2 .list .noResults:not(:first-child), #online-ordering .shop .section2 .list .noResults:not(:first-child), #online-ordering .park .section2 .list .noResults:not(:first-child) {
    display: none; }
  #online-ordering .eat .section2 .list .noResults, #online-ordering .shop .section2 .list .noResults, #online-ordering .park .section2 .list .noResults {
    text-align: center;
    padding: 50px 0; }

/* Directions
====================================================================
====================================================================*/
#directions .wrapper {
  max-width: 1110px;
  margin: 0 auto;
  padding: 90px 30px; }
  #directions .wrapper .description {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 1.5px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 75px; }

#directions .location {
  font-family: "Chronicle Display A", "Chronicle Display B", Georgia, Times;
  font-size: 19px;
  line-height: 29px;
  letter-spacing: .5px;
  color: #6d6a4d;
  margin-top: 3px; }

#directions .location a:hover {
  color: #c19e00; }

#directions .left {
  float: left;
  width: calc(60% - 60px); }

#directions .left .buttonVert {
  float: left;
  margin-right: 30px; }

#directions .left .group {
  float: left;
  width: calc(100% - 45px - 30px); }

#directions .left .address_label {
  color: #c19e00; }

#directions .left .description {
  margin-bottom: 20px;
  font-family: "Verlag A", "Verlag B", Helvetica;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 1.5px; }

#directions .mapEmbed {
  float: left;
  margin-top: 80px;
  /* for responsive iframe --> */
  position: relative;
  /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/
  width: 100%;
  position: relative;
  overflow: hidden; }
  #directions .mapEmbed:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 66.6666666667%; }
  #directions .mapEmbed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

#directions .right {
  float: right;
  width: 40%; }

#directions .right p {
  margin-bottom: 10px; }

#directions .right .location {
  margin-bottom: 10px;
  font-family: "Verlag A", "Verlag B", Helvetica;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 1.5px; }

#directions .right .item {
  margin-bottom: 40px; }

#directions .right .item h2 {
  color: #c19e00; }

/* Movies
====================================================================
====================================================================*/
#movies {
  line-height: 0; }
  #movies .theaterInfo {
    padding: 135px 30px 85px; }
    #movies .theaterInfo .left {
      max-width: 470px;
      position: relative;
      margin-right: 80px; }
    #movies .theaterInfo .right {
      max-width: 370px;
      position: relative; }
      #movies .theaterInfo .right p {
        font-family: "Verlag A", "Verlag B", Helvetica;
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 1.5px; }
    #movies .theaterInfo h1, #movies .theaterInfo h6 {
      position: relative; }
    #movies .theaterInfo h1 {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 26px;
      line-height: 32px;
      letter-spacing: 1.5px; }
    #movies .theaterInfo h6 {
      color: #c19e00; }
    #movies .theaterInfo .buttonHorz {
      display: block;
      margin-bottom: 27px;
      width: 254px; }
      #movies .theaterInfo .buttonHorz.phone {
        width: 293px; }
      #movies .theaterInfo .buttonHorz .buttonInner {
        border-width: 1px;
        font-size: 19px; }
        #movies .theaterInfo .buttonHorz .buttonInner .pin {
          right: -42px;
          top: -1px;
          border-width: 1px; }
          #movies .theaterInfo .buttonHorz .buttonInner .pin path {
            fill: #556757; }
        #movies .theaterInfo .buttonHorz .buttonInner .arrow {
          top: -1px;
          border-width: 1px; }
    #movies .theaterInfo .group {
      margin-top: 50px; }
    #movies .theaterInfo .buttonVert {
      float: left;
      margin-right: 25px; }
      #movies .theaterInfo .buttonVert .buttonInner {
        border-width: 1px; }
    #movies .theaterInfo .details {
      float: left; }

/* About
====================================================================
====================================================================*/
#about {
  line-height: 0; }
  #about .wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 30px; }
  #about .textBar {
    position: relative; }
  #about .buttonWrapper {
    position: absolute;
    -moz-transform: translateY(50%) translateX(-50%);
    -o-transform: translateY(50%) translateX(-50%);
    -ms-transform: translateY(50%) translateX(-50%);
    -webkit-transform: translateY(50%) translateX(-50%);
    transform: translateY(50%) translateX(-50%);
    left: 50%;
    bottom: 0;
    white-space: nowrap; }
    #about .buttonWrapper .button {
      border-right: none; }
      #about .buttonWrapper .button:last-child {
        border-right: 2px solid #c19e00; }
  #about .contact {
    /*.label em { font-size: 33px; line-height: 39px; }*/ }
    #about .contact .section {
      padding-bottom: 50px;
      margin-bottom: 50px;
      border-bottom: 2px solid #e2decf; }
      #about .contact .section:last-child {
        border: none;
        margin-bottom: 0;
        padding-bottom: 0; }
    #about .contact .description {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 26px;
      line-height: 32px;
      letter-spacing: 1.5px;
      text-align: center;
      max-width: 780px;
      margin: 0 auto 75px; }
    #about .contact .left {
      float: left;
      width: calc(50% - 37px); }
    #about .contact .left .buttonHorz {
      margin-bottom: 20px;
      width: 290px; }
      #about .contact .left .buttonHorz .text {
        position: absolute;
        right: -137px;
        height: 20px;
        top: -2px;
        padding: 11px 15px;
        border: 2px solid #6d6a4d;
        border-left: none; }
      #about .contact .left .buttonHorz.first {
        margin-top: 30px; }
      #about .contact .left .buttonHorz:last-child {
        margin-bottom: 0; }
      #about .contact .left .buttonHorz.wide {
        width: 352px; }
    #about .contact .left p.arrow {
      margin-bottom: 33px;
      padding-left: 35px;
      position: relative; }
      #about .contact .left p.arrow:before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 18px;
        height: 40px;
        background: url(../images/arrow_down.svg) no-repeat; }
    #about .contact .icon.pin path, #about .contact .icon.mail polygon {
      fill: #556757; }
    #about .contact .right {
      float: right;
      width: calc(50% - 37px); }
    #about .contact .right .label {
      margin-bottom: 5px;
      margin-top: 20px;
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-weight: 700;
      font-size: 19px;
      line-height: 23px;
      letter-spacing: 1.5px;
      text-transform: uppercase; }
      #about .contact .right .label em {
        font-family: "Verlag A", "Verlag B", Helvetica;
        font-weight: 700;
        font-size: 19px;
        line-height: 23px;
        letter-spacing: 1.5px;
        text-transform: uppercase; }
      #about .contact .right .label:first-child {
        margin-top: 0; }
    #about .contact .right .hours {
      margin-bottom: 2px;
      color: #c19e00;
      font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
      font-size: 17px;
      line-height: 30px;
      letter-spacing: 1px; }
    #about .contact .right .buttonHorz {
      display: block;
      margin-bottom: 30px;
      width: 282px; }
      #about .contact .right .buttonHorz.first {
        margin-top: 30px; }
      #about .contact .right .buttonHorz:last-child {
        margin-bottom: 0; }
      #about .contact .right .buttonHorz.wide {
        width: 352px; }
    #about .contact .prContact {
      margin-top: 30px;
      color: #c19e00;
      font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
      font-size: 17px;
      line-height: 27px;
      letter-spacing: 1px; }
    #about .contact .prContact a:hover {
      color: #6d6a4d; }
    #about .contact .charitable .buttonInner {
      padding: 10px 18px 7px; }
    #about .contact .charitable .label em {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-weight: 700;
      font-size: 19px;
      line-height: 23px;
      letter-spacing: 1.5px;
      text-transform: uppercase; }
  #about .gift .giftDescription {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 50px; }
  #about .gift .giftImage {
    max-width: 415px; }
  #about .gift .section.one .button {
    margin-bottom: 27px; }
  #about .gift .left, #about .gift .right {
    /*width: calc(50% - 37px);*/
    max-width: 320px; }
  #about .gift .left {
    margin-right: 65px; }
  #about .gift .right .description {
    margin-bottom: 30px; }
  #about .gift .right .small {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 30px; }
  #about .gift .button {
    color: #c19e00; }
    #about .gift .button:hover {
      color: #ffffff; }
  #about .gift .section2 {
    padding: 60px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    max-width: 800px;
    margin: 90px auto 0; }
    #about .gift .section2 .button.absolute {
      position: absolute;
      -moz-transform: translateY(-50%) translateX(-50%);
      -o-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      -webkit-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      left: 50%;
      top: 0;
      white-space: nowrap;
      border-color: #6d6a4d;
      color: #6d6a4d !important;
      border-width: 1px;
      width: 189px;
      margin-bottom: 50px; }
    #about .gift .section2 .group {
      width: 100%;
      margin-top: 50px;
      color: #6d6a4d; }
    #about .gift .section2 .label {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-weight: 700;
      font-size: 19px;
      line-height: 23px;
      letter-spacing: 1.5px;
      padding-bottom: 20px; }
    #about .gift .section2 .g1 .text {
      margin-top: 10px; }
    #about .gift .section2 .g1 .hours {
      font-size: 16px;
      line-height: 25px;
      letter-spacing: 1px;
      color: #c19e00; }
    #about .gift .section2 .g2 .label {
      margin-bottom: 20px; }
    #about .gift .section2 .g2 .buttonHorz {
      margin-bottom: 20px; }
      #about .gift .section2 .g2 .buttonHorz:before {
        background: #ffffff; }
      #about .gift .section2 .g2 .buttonHorz:hover:before {
        background: #e5ddd8; }
    #about .gift .section2 .small {
      font-size: 10px;
      line-height: 13px;
      font-weight: 700; }
  #about .amenitiesText {
    padding: 55px 30px 0; }
    #about .amenitiesText .left {
      max-width: 415px;
      text-align: center; }
    #about .amenitiesText .label {
      margin-bottom: 5px; }
  #about .amenities {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 40px;
    padding: 50px 30px 30px; }
    #about .amenities .item {
      text-align: center;
      width: calc(100% / 5 - 20px);
      margin-bottom: 70px; }
      #about .amenities .item h2 {
        color: #c19e00;
        font-size: 16px;
        line-height: 25px;
        letter-spacing: 1.66px; }
    #about .amenities .icon {
      margin: 0 auto 10px;
      height: 73px;
      position: relative; }
      #about .amenities .icon.balloon svg {
        width: 22px; }
      #about .amenities .icon.charging svg {
        width: 43px; }
      #about .amenities .icon.pet svg {
        width: 46px; }
      #about .amenities .icon.shoes svg {
        width: 40px; }
      #about .amenities .icon.services svg {
        width: 45px; }
      #about .amenities .icon.shaded svg {
        width: 52px; }
      #about .amenities .icon.restrooms svg {
        width: 54px; }
      #about .amenities .icon.atms svg {
        width: 24px; }
      #about .amenities .icon.dining svg {
        width: 66px; }
      #about .amenities .icon.music svg {
        width: 44px; }
      #about .amenities .icon.security svg {
        width: 44px; }
      #about .amenities .icon svg {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 0; }
  #about .conduct {
    text-align: center; }
    #about .conduct .description {
      max-width: 850px;
      margin: 0 auto 65px;
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 26px;
      line-height: 32px;
      letter-spacing: 1.5px; }
    #about .conduct .button {
      color: #c19e00; }
      #about .conduct .button:hover {
        color: #ffffff; }

/* Directory (Shop / Eat)
====================================================================
====================================================================*/
#directory {
  line-height: 0; }
  #directory .tabNav .button {
    cursor: pointer; }
  #directory .buttonWrapper {
    position: absolute;
    -moz-transform: translateY(50%) translateX(-50%);
    -o-transform: translateY(50%) translateX(-50%);
    -ms-transform: translateY(50%) translateX(-50%);
    -webkit-transform: translateY(50%) translateX(-50%);
    transform: translateY(50%) translateX(-50%);
    left: 50%;
    bottom: 0;
    white-space: nowrap;
    z-index: 10; }
    #directory .buttonWrapper .button {
      border-right: none;
      padding-left: 0;
      padding-right: 0;
      width: 150px; }
      #directory .buttonWrapper .button:last-child {
        border-right: 2px solid #c19e00; }
  #directory .bar {
    position: relative;
    text-align: center;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 100px 30px 60px; }
  #directory .searchform {
    position: relative;
    padding-top: 4px;
    max-width: 400px;
    margin: 0 auto; }
  #directory .searchform input[type="text"] {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c19e00;
    background: none;
    border: none;
    border-bottom: 3px solid #c19e00;
    width: 100%;
    text-align: center;
    z-index: 5; }
  #directory .searchform input[type="submit"] {
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6d6a4d;
    margin-top: 22px;
    border: none;
    padding: 0;
    background: none; }
  #directory .searchform .icon {
    width: 31px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0px;
    z-index: -1;
    height: 35px; }
  #directory .clearFilters {
    position: absolute;
    left: 0;
    top: calc(100% + 7px);
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c19e00;
    border: none;
    padding: 0 0 10px;
    background: none;
    cursor: pointer; }
    #directory .clearFilters:hover {
      color: #6d6a4d; }
  #directory .categoryFilter {
    position: absolute;
    right: 0;
    top: calc(100% + 7px);
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c19e00;
    border: none;
    padding: 0 0 10px;
    background: none; }
  #directory .categoryFilter .trigger {
    cursor: pointer; }
    #directory .categoryFilter .trigger .downarrow {
      font-size: 7px;
      position: relative;
      bottom: 1px; }
  #directory .categoryFilter .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    text-align: left;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    padding: 15px;
    width: 190px;
    background: #e2decf;
    color: #6d6a4d;
    z-index: 10; }
    #directory .categoryFilter .dropdown li {
      margin-bottom: 10px;
      cursor: pointer; }
      #directory .categoryFilter .dropdown li:hover, #directory .categoryFilter .dropdown li.current {
        color: #c19e00; }
  #directory .a-z {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 41px;
    top: 41px;
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c19e00;
    width: 100%;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    overflow: hidden; }
    #directory .a-z li {
      margin-right: 30px;
      position: relative;
      cursor: pointer; }
      #directory .a-z li:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
        top: calc(50% - 1px);
        width: 35px;
        height: 35px;
        border: 2px solid #c19e00;
        opacity: 0; }
      #directory .a-z li:hover:before, #directory .a-z li.current:before {
        opacity: 1; }
      #directory .a-z li.current:hover:before, #directory .a-z li.current:hover {
        border-color: #ac8e66;
        color: #ac8e66; }
      #directory .a-z li:last-child {
        margin-right: 0; }
  #directory .tab {
    display: none; }
  #directory .tab.current {
    display: block; }
  #directory #listView {
    padding: 0 30px 40px; }
  #directory .list {
    max-width: 805px;
    margin: 0 auto; }
    #directory .list .item {
      padding-bottom: 20px;
      margin-bottom: 40px;
      border-bottom: 2px solid #e2decf;
      width: 100%; }
    #directory .list .item .group:first-child {
      width: calc(80% - 25px); }
    #directory .list .item .group:last-child {
      width: 20%; }
    #directory .list .item a:hover {
      color: #c19e00; }
    #directory .list .link {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 11px;
      line-height: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-align: right;
      margin-bottom: 5px; }
    #directory .list .link span {
      font-family: "Wingdings W95_3"; }
    #directory .list .item h2 {
      color: #c19e00; }
    #directory .list .item h1 {
      font-family: "Verlag A", "Verlag B", Helvetica; }
  #directory #gridView {
    padding: 0 30px 80px; }
  #directory .grid {
    border-left: 2px solid #e2decf;
    border-top: 2px solid #e2decf;
    max-width: 1000px;
    margin: 0 auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #directory .grid .item {
      position: relative;
      border-right: 2px solid #e2decf;
      border-bottom: 2px solid #e2decf;
      position: relative;
      /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/
      width: calc(25% - 2px); }
      #directory .grid .item:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 100%; }
    #directory .grid a {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
    #directory .grid .position {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      text-align: center;
      width: 60%; }
    #directory .grid img {
      width: auto;
      max-width: 100%; }
  #directory #mapView {
    position: relative; }
    #directory #mapView .list {
      padding: 95px 30px 0px; }
    #directory #mapView .list .item {
      margin-bottom: 20px; }
    #directory #mapView .list .item .hide {
      display: none; }
    #directory #mapView .scrollToWaypoint {
      position: absolute;
      top: 54px;
      left: 0; }
    #directory #mapView .bottom {
      max-width: 1105px;
      margin: 0 auto;
      padding: 0 30px 30px; }
    #directory #mapView .bottomBar {
      padding: 20px 80px 5px;
      border-bottom: 2px solid #e2decf;
      position: relative; }
    #directory #mapView .bottomBar .buttons {
      position: absolute;
      right: 9%;
      bottom: 10px; }
      #directory #mapView .bottomBar .buttons .buttonHorz {
        margin-right: 50px; }
    #directory #mapView .label, #directory #mapView .categoryFilter {
      font-family: "Verlag A", "Verlag B", Helvetica;
      position: static;
      display: inline-block;
      margin-right: 10px; }
    #directory #mapView .fullList {
      padding: 50px 80px;
      /*@extend .flexStartBetween; @include flex-wrap(wrap);*/
      -moz-column-count: 4;
      -webkit-column-count: 4;
      -o-column-count: 4;
      column-count: 4;
      -webkit-column-gap: 40px;
      -moz-column-gap: 40px;
      column-gap: 40px; }
    #directory #mapView .fullList .item {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 11px;
      line-height: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 15px;
      color: #c19e00; }
    #directory #mapView .fullList .item:hover {
      color: #6d6a4d; }
    #directory #mapView .map {
      width: 63%;
      margin: 0 auto; }
    #directory #mapView .map g[data-unit][data-unit=""] polygon, #directory #mapView .map g[data-unit][data-unit=""] path, #directory #mapView .map g[data-unit][data-unit=""] rectangle, #directory #mapView .map g[data-unit][data-unit=""] rect, #directory #mapView .map g[data-unit][data-unit=""] polyline {
      fill: #bbbdbf;
      cursor: default; }
    #directory #mapView .map g[data-unit][data-unit="other"] polygon, #directory #mapView .map g[data-unit][data-unit="other"] path, #directory #mapView .map g[data-unit][data-unit="other"] rectangle, #directory #mapView .map g[data-unit][data-unit="other"] rect, #directory #mapView .map g[data-unit][data-unit="other"] polyline {
      fill: #c19e00; }
    #directory #mapView .map g[data-unit][data-unit="exists"] {
      cursor: pointer; }
      #directory #mapView .map g[data-unit][data-unit="exists"] polygon, #directory #mapView .map g[data-unit][data-unit="exists"] path, #directory #mapView .map g[data-unit][data-unit="exists"] rectangle, #directory #mapView .map g[data-unit][data-unit="exists"] rect, #directory #mapView .map g[data-unit][data-unit="exists"] polyline {
        fill: #c19e00; }
    #directory #mapView .map g[data-unit][data-unit="exists"]:hover polygon, #directory #mapView .map g[data-unit][data-unit="exists"]:hover path, #directory #mapView .map g[data-unit][data-unit="exists"]:hover rectangle, #directory #mapView .map g[data-unit][data-unit="exists"]:hover rect, #directory #mapView .map g[data-unit][data-unit="exists"]:hover polyline, #directory #mapView .map g[data-unit][data-class="current"][data-unit="exists"] polygon, #directory #mapView .map g[data-unit][data-class="current"][data-unit="exists"] path, #directory #mapView .map g[data-unit][data-class="current"][data-unit="exists"] rectangle, #directory #mapView .map g[data-unit][data-class="current"][data-unit="exists"] rect, #directory #mapView .map g[data-unit][data-class="current"][data-unit="exists"] polyline {
      fill: #6D774D; }

body.page-template-page-shop #directory #mapView .map g[data-unit=""] polygon, body.page-template-page-shop #directory #mapView .map g[data-unit=""] path, body.page-template-page-shop #directory #mapView .map g[data-unit=""] rectangle, body.page-template-page-shop #directory #mapView .map g[data-unit=""] rect, body.page-template-page-shop #directory #mapView .map g[data-unit=""] polyline {
  fill: #bbbdbf;
  cursor: default; }

/*** IE FIX ***/
body.ie #directory .tab {
  overflow: hidden; }

/*** IE FIX *** scale svg map ***/
body.ie #directory #mapView .ieMapFix {
  height: 0;
  padding-top: 48%;
  position: relative; }

body.ie #directory #mapView .ieMapFix svg {
  position: absolute;
  top: 0;
  left: 0; }

/*** IE FIX *** scale svg map ***/
body.ie #directory .searchform .icon {
  top: -7px; }

/* Store Login
====================================================================
====================================================================*/
#store-login .login-form {
  max-width: 395px;
  margin: 106px auto;
  text-align: center;
  padding: 0 30px; }
  #store-login .login-form ::-webkit-input-placeholder {
    font-size: 14px;
    color: #e2decf;
    text-transform: uppercase;
    letter-spacing: 2px; }
  #store-login .login-form :-moz-placeholder {
    font-size: 14px;
    color: #e2decf;
    text-transform: uppercase;
    letter-spacing: 2px; }
  #store-login .login-form ::-moz-placeholder {
    font-size: 14px;
    color: #e2decf;
    text-transform: uppercase;
    letter-spacing: 2px; }
  #store-login .login-form :-ms-input-placeholder {
    font-size: 14px;
    color: #e2decf;
    text-transform: uppercase;
    letter-spacing: 2px; }
  #store-login .login-form form p:first-child {
    display: none; }
  #store-login .login-form input[type="password"] {
    width: 100%;
    padding-bottom: 5px;
    border: none;
    border-bottom: 2px solid #6d6a4d;
    font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
    font-size: 21px;
    letter-spacing: 2px;
    color: #6d6a4d;
    text-align: center; }
  #store-login .login-form input[type="submit"] {
    margin-top: 74px;
    width: 242px;
    font-family: "Verlag A", "Verlag B", Helvetica;
    font-size: 23px;
    line-height: 23px;
    text-transform: uppercase;
    padding: 9px 14px;
    border: 2px solid #c19e00;
    display: inline-block;
    background: #ffffff;
    color: #c19e00; }
    #store-login .login-form input[type="submit"]:hover {
      color: #ffffff;
      background: #c19e00; }

#store-login .textBarSmall h3 {
  color: #c19e00; }

#store-login .sortButtons {
  margin: 11px 0 37px; }

#store-login .buttonWrapper {
  position: absolute;
  -moz-transform: translateY(50%) translateX(-50%);
  -o-transform: translateY(50%) translateX(-50%);
  -ms-transform: translateY(50%) translateX(-50%);
  -webkit-transform: translateY(50%) translateX(-50%);
  transform: translateY(50%) translateX(-50%);
  left: 50%;
  bottom: 0;
  white-space: nowrap;
  z-index: 10; }
  #store-login .buttonWrapper .button {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    width: 150px;
    color: #c19e00; }
    #store-login .buttonWrapper .button:last-child {
      border-right: 2px solid #c19e00; }

#store-login .button {
  color: #6d6a4d;
  cursor: pointer; }
  #store-login .button:hover, #store-login .button.current {
    color: #ffffff; }

#store-login .store-form {
  max-width: 890px;
  margin: 88px auto 65px;
  padding: 0 30px;
  display: none; }
  #store-login .store-form.current {
    display: block; }
  #store-login .store-form form {
    border-top: 2px solid #6d6a4d; }

#store-login ::-webkit-input-placeholder {
  color: #e2decf;
  text-transform: uppercase;
  letter-spacing: 2px; }

#store-login :-moz-placeholder {
  color: #e2decf;
  text-transform: uppercase;
  letter-spacing: 2px; }

#store-login ::-moz-placeholder {
  color: #e2decf;
  text-transform: uppercase;
  letter-spacing: 2px; }

#store-login :-ms-input-placeholder {
  color: #e2decf;
  text-transform: uppercase;
  letter-spacing: 2px; }

#store-login .input-row {
  border-bottom: 2px solid #6d6a4d; }

#store-login div.label {
  width: 200px;
  padding: 39px 30px 33px 0;
  text-align: right;
  border-right: 2px solid #6d6a4d;
  color: #6d6a4d;
  align-self: stretch;
  font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px; }

#store-login div.subscript {
  font-size: 9px;
  line-height: 9px;
  margin-top: 4px; }

#store-login p.input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }
  #store-login p.input input, #store-login p.input textarea {
    width: calc(100% - 40px);
    padding: 39px 0 33px 30px;
    margin: 0;
    border: none;
    font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
    font-size: 14px;
    letter-spacing: 1px;
    color: #6d6a4d; }
  #store-login p.input input[type="date"] {
    max-width: 180px;
    color: #6d6a4d;
    letter-spacing: 2px;
    text-transform: uppercase; }
    #store-login p.input input[type="date"]::-webkit-datetime-edit-text, #store-login p.input input[type="date"]::-webkit-datetime-edit-month-field, #store-login p.input input[type="date"]::-webkit-datetime-edit-day-field, #store-login p.input input[type="date"]::-webkit-datetime-edit-year-field {
      color: #e4e9d2; }
    #store-login p.input input[type="date"].active::-webkit-datetime-edit-text, #store-login p.input input[type="date"].active::-webkit-datetime-edit-month-field, #store-login p.input input[type="date"].active::-webkit-datetime-edit-day-field, #store-login p.input input[type="date"].active::-webkit-datetime-edit-year-field {
      color: #6d6a4d; }
  #store-login p.input input[type="file"] {
    color: transparent;
    text-transform: uppercase; }
    #store-login p.input input[type="file"]::-webkit-file-upload-button {
      border: none;
      background: none;
      font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #e2decf;
      cursor: pointer;
      outline: none; }
    #store-login p.input input[type="file"].active {
      color: #6d6a4d;
      text-transform: none; }

#store-login .wpcf7-form-control-wrap {
  display: block;
  width: 100%; }

#store-login .submit-row {
  width: 245px;
  margin: 65px auto 0;
  position: relative; }
  #store-login .submit-row .button {
    width: 100%;
    color: #c19e00; }
    #store-login .submit-row .button:hover {
      color: #ffffff; }
  #store-login .submit-row .ajax-loader {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px; }

#store-login .logoutWrapper {
  max-width: 890px;
  margin: 30px auto 30px;
  padding: 0 30px;
  text-align: center; }
  #store-login .logoutWrapper input {
    font-family: "Burford W03 Base", "Gotham SSm A", "Gotham SSm B", Helvetica;
    font-size: 17px;
    line-height: 17px;
    text-transform: uppercase;
    border: none;
    color: #c19e00; }
    #store-login .logoutWrapper input:hover {
      background: none;
      color: #6d6a4d; }

#store-login div.wpcf7-response-output {
  border: none !important;
  text-align: center;
  padding: 22px 30px;
  background: #f3f2f2;
  border-radius: 1px;
  max-width: 390px;
  margin: 30px auto;
  font-size: 18px;
  line-height: 25px; }

#store-login span.wpcf7-not-valid-tip {
  color: #880101;
  display: block;
  padding: 0 0 10px 30px;
  font-family: "Gotham SSm A", "Gotham SSm B", Helvetica;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px; }

#store-login div.wpcf7-mail-sent-ok {
  background: #f3f2f2; }

#store-login div.wpcf7-validation-errors {
  background: #fbe8e8;
  color: #880101; }

/* Search
====================================================================
====================================================================*/
#search {
  /* The above button assumes it is a shop, so on restaurants the link breaks, better to hide it and then
	the link can be clicked from the actual single page and it will work */ }
  #search .showing {
    margin-top: 2px; }
  #search .postsContainer .seeOnMap {
    display: none;
    /*margin-bottom: 0; display: inline-block;*/ }

/* 404
====================================================================
====================================================================*/
#error404 .wrapper {
  padding: 150px 30px;
  text-align: center; }

#error404 .amenities {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 690px;
  margin: 0 auto;
  height: 73px;
  padding-bottom: 42px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e2decf; }
  #error404 .amenities .item {
    text-align: center;
    width: 20%; }
  #error404 .amenities .icon {
    margin: 0 auto;
    height: 73px;
    position: relative; }
    #error404 .amenities .icon.dining svg {
      width: 82px; }
    #error404 .amenities .icon.balloon svg {
      width: 38px; }
    #error404 .amenities .icon.pet svg {
      width: 62px; }
    #error404 .amenities .icon.shoes svg {
      width: 56px; }
    #error404 .amenities .icon.security svg {
      width: 44px; }
    #error404 .amenities .icon svg {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      bottom: 0; }

#error404 h1 a {
  display: inline;
  border-bottom: 2px solid #c19e00; }
  #error404 h1 a:hover {
    color: #c19e00; }

/* Plugins
====================================================================
====================================================================*/
/*.slick-slide { outline: none; position: relative; }
.slider_nav { position: absolute; top: 50%; @extend h4; cursor: pointer; @extend .transition;
	&:hover {}
}
.prev { @extend .transform_left; }
.next { @extend .transform_right; }*/
#jPanelMenu-menu {
  background: #e2decf;
  padding: 0;
  margin-top: 30px;
  text-align: center;
  display: block;
  box-shadow: inset 0px 9px 30px rgba(0, 0, 0, 0.5); }
  #jPanelMenu-menu:before {
    content: "";
    height: 100%;
    width: 9px;
    background: #ffffff;
    position: absolute;
    left: 0px;
    top: 0px; }
  #jPanelMenu-menu:after {
    content: "";
    height: 100%;
    width: 9px;
    background: #ffffff;
    position: absolute;
    right: 0px;
    top: 0px; }
  #jPanelMenu-menu a {
    color: #6d6a4d;
    font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    color: #c19e00; }
  #jPanelMenu-menu li {
    margin-bottom: 25px; }
    #jPanelMenu-menu li:last-child {
      margin-bottom: 0; }
  #jPanelMenu-menu .current-menu-item a {
    color: #6d6a4d; }
  #jPanelMenu-menu .menu-header-menu-container {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%); }

.jpanelTrigger {
  display: none;
  width: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  padding: 5px;
  z-index: 99999999; }
  .jpanelTrigger hr {
    height: 1px;
    margin: 0 0 3px;
    background: #6d6a4d;
    border-style: none; }

.jPanelMenu body[data-menu-position="closed"] {
  overflow-x: visible; }

.jPanelMenu body[data-menu-position="open"] {
  overflow-x: hidden; }

/*
.nav_overlay { background: #222222; background: linear-gradient(0deg,rgba(255,255,255,0.5) 0%,rgba(255,255,255,1) 50%); position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; opacity: 0; visibility: hidden; z-index: 20; @include transition(all .5s ease);
	&.active { opacity: 1; visibility: visible; }
}
*/
/* TEMP HIDDEN STUFF
====================================================================
====================================================================*/
/*#about .buttonWrapper .button[href="#gift"], #about .amenities .gift-icon-wrapper, #about .wrapper.gift, #about #gift { display: none !important; }*/
/*=======================================================================================================
=======================================================================================================*/
/*=======================================================================================================
=======================================================================================================*/
@media screen and (max-width: 1100px) {
  #home .watermark1 {
    margin-top: -57px; } }

/*=======================================================================================================
=======================================================================================================*/
@media all and (min-width: 768px) and (max-width: 1100px) {
  p {
    font-size: 17px;
    line-height: 26px; }
  p em {
    font-size: 23px; }
  h1 {
    /*font-size: 32px; line-height: 40px;*/
    font-size: 26px;
    line-height: 34px; }
  h2 {
    font-size: 15px;
    line-height: 17px;
    letter-spacing: 1px; }
  h4 {
    font-size: 35px;
    line-height: 28px; }
  h5 {
    font-size: 27px;
    line-height: 30px; }
  h6 {
    font-size: 15px;
    line-height: 19px; }
  .instagram {
    margin: 35px 30px; }
  .textBar {
    padding: 40px 70px 40px; }
    .textBar h1 {
      font-size: 25px;
      line-height: 32px; }
    .textBar.style1 h1 {
      font-size: 30px;
      line-height: 38px;
      letter-spacing: 5px; }
  .textBarSmall h2 {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1px; }
  .featureBlocks .innerBorder {
    width: calc(100% - (20px * 2));
    height: calc(100% - (20px * 2)); }
  .featureBlocks .center .inner .content {
    width: 100%;
    height: 100%; }
  .postsContainer {
    padding: 30px 100px 35px; }
  .postsContainer .post {
    width: 45%; }
  .postLinks {
    display: block !important; }
    .postLinks .group {
      float: left; }
    .postLinks .group:first-child {
      margin-bottom: 20px;
      float: none; }
    .postLinks .group:last-child {
      width: calc(100% - 85px);
      margin-left: 0;
      text-align: center;
      margin-top: 20px; }
    .postLinks .social a {
      margin: 0 10px; }
    .postLinks .hashtag a {
      max-width: none;
      margin: 0; }
  .featureBlocks .center .inner .title {
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 4px; }
  .featureBlocks .center .inner .upperText, .featureBlocks .center .inner .lowerText {
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 2px; }
  .buttonVert .buttonInner {
    font-size: 18px;
    line-height: 19px; }
  header {
    padding: 0 30px; }
    header .logo {
      width: 255px; }
    header .menu-header-menu-container li {
      font-size: 18px;
      line-height: 21px;
      font-weight: 600;
      margin-right: 15px; }
  #home section.block1 .item.one {
    max-width: 298px; }
    #home section.block1 .item.one:last-child {
      margin-left: 30px; }
  #home .buttonHorz .buttonInner {
    font-size: 16px; }
  #home .featureBlocks .left .title {
    letter-spacing: 3px;
    font-size: 32px;
    line-height: 36px; }
  #home .featureBlocks .right .title {
    font-size: 76px;
    line-height: 86px; }
  #home .featureBlocks .upperText, #home .featureBlocks .lowerText {
    font-size: 18px;
    letter-spacing: 3px; }
  #home .buttonVert {
    top: 110px; }
  #home .watermark1 {
    width: 136px; }
  #home .watermark2 {
    display: none; }
  #home section.bottomText {
    padding-bottom: 35px; }
  #home section.bottomText h1 {
    font-size: 32px;
    line-height: 40px; }
  body.home .popup-inner {
    width: 80%; }
  #events .buttonVert, #sales .buttonVert {
    left: 28px; }
  #directory .textBar h1 {
    font-size: 25px;
    line-height: 32px; }
  #directory #mapView .list {
    padding: 95px 30px 10px; }
  #directory #mapView .fullList {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40;
    -moz-column-gap: 40;
    column-gap: 40; }
  #directory .a-z {
    font-size: 11px;
    line-height: 11px; }
  #directory .a-z li {
    margin-right: 18px; }
    #directory .a-z li:before {
      width: 24px;
      height: 24px; }
  #about .buttonWrapper .button {
    border-right: none;
    padding: 9px 14px;
    font-size: 21px; }
  #about .contact .left, #about .contact .right {
    width: calc(100% - 37px);
    float: left; }
  #about .contact .prContact {
    margin-bottom: 30px; }
  #about .gift .section2 .button.absolute {
    text-align: center; }
  #about .gift .section2 {
    display: block;
    text-align: center;
    padding: 60px 60px 40px; }
  #about .gift .section2 .group {
    width: 100%;
    margin: 0 0 40px; }
    #about .gift .section2 .group:last-child {
      margin-bottom: 0; }
  #about .gift .section2 .g2 .buttonHorz {
    margin-left: -45px; }
  #about .gift .section .right .button {
    display: block; }
  #about .conduct p em {
    font-size: 20px; }
  #movies .theaterInfo {
    padding: 45px 30px 85px; }
  #careers p em {
    font-size: 19px;
    line-height: 28px; }
  #directions .left .group .description {
    font-size: 25px;
    line-height: 35px; }
  #single .singleContent .hours {
    margin-bottom: 8px;
    line-height: 16px; }
  #single .singleContent .hours br {
    display: block; } }

/*=======================================================================================================
=======================================================================================================*/
@media screen and (max-width: 1023px) {
  .list .item .group:first-child {
    width: 80% !important; }
  .list .item .group:last-child {
    width: 18% !important; } }

/*=======================================================================================================
=======================================================================================================*/
@media screen and (max-width: 767px) {
  .mobileOnly {
    display: block; }
  .mobileHide {
    display: none; }
  .instagram {
    margin: 10px 15px 30px;
    background: none; }
    .instagram #sb_instagram #sbi_images .sbi_item {
      margin-bottom: 15px !important; }
    .instagram #sb_instagram #sbi_images .sbi_item {
      display: none; }
      .instagram #sb_instagram #sbi_images .sbi_item:nth-child(1), .instagram #sb_instagram #sbi_images .sbi_item:nth-child(2), .instagram #sb_instagram #sbi_images .sbi_item:nth-child(3) {
        display: inline-block; }
    .instagram svg {
      left: 15px; }
  .textBar {
    /*padding: 40px 30px;*/
    padding: 20px 30px; }
    .textBar h3 {
      font-size: 18px;
      line-height: 22px; }
    .textBar h1 {
      font-size: 22px;
      line-height: 27px; }
    .textBar.style1 h1 {
      font-size: 21px;
      line-height: 26px;
      letter-spacing: 4px; }
  .textBarSmall {
    padding: 20px 30px; }
    .textBarSmall h2 {
      font-size: 16px;
      line-height: 22px; }
  .featureBlocks {
    display: block; }
    .featureBlocks .item.whole, .featureBlocks .item.half, .featureBlocks .item.third {
      width: 100%; }
    .featureBlocks .item.whole .aspect, .featureBlocks .item.half .aspect, .featureBlocks .item.third .aspect {
      position: relative;
      /*> .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }*/ }
      .featureBlocks .item.whole .aspect:before, .featureBlocks .item.half .aspect:before, .featureBlocks .item.third .aspect:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 123.6533957845%; }
    .featureBlocks .innerBorder {
      width: calc(100% - (20px * 2));
      height: calc(100% - (20px * 2));
      border-width: 2px; }
    .featureBlocks .center .inner .content {
      width: 95%;
      height: 95%; }
    .featureBlocks .center .inner .upperText {
      top: 0;
      left: 0;
      position: absolute;
      -moz-transform: translateY(0) translateX(0);
      -o-transform: translateY(0) translateX(0);
      -ms-transform: translateY(0) translateX(0);
      -webkit-transform: translateY(0) translateX(0);
      transform: translateY(0) translateX(0); }
    .featureBlocks .center .inner .title {
      font-size: 34px;
      line-height: 39px; }
    .featureBlocks .center .inner .lowerText {
      bottom: 0;
      left: 0;
      position: absolute;
      -moz-transform: translateY(0) translateX(0);
      -o-transform: translateY(0) translateX(0);
      -ms-transform: translateY(0) translateX(0);
      -webkit-transform: translateY(0) translateX(0);
      transform: translateY(0) translateX(0); }
  .postsContainer {
    padding: 30px; }
  .postsContainer .postList {
    display: block;
    margin: 35px auto 30px; }
    .postsContainer .postList .post {
      width: 100%;
      margin-bottom: 25px; }
  .relatedPosts, #single.store .relatedPosts {
    margin: 50px auto 0px;
    padding: 50px 30px 30px;
    display: block; }
    .relatedPosts .button, #single.store .relatedPosts .button {
      width: 220px; }
    .relatedPosts .post, #single.store .relatedPosts .post {
      width: 100%;
      margin-bottom: 20px; }
      .relatedPosts .post:last-child, #single.store .relatedPosts .post:last-child {
        margin-bottom: 0; }
  .buttonHorz .buttonInner {
    font-size: 18px !important;
    line-height: 18px; }
  .mobileSearch {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 40px);
    bottom: 60px; }
    .mobileSearch .icon {
      width: 16px;
      display: inline-block;
      position: relative;
      top: 5px; }
      .mobileSearch .icon svg path,
      .mobileSearch .icon svg rect {
        fill: #6d6a4d !important; }
    .mobileSearch input[type="text"] {
      width: calc(100% - 60px);
      background: none;
      border: none;
      border-bottom: 1px solid #6d6a4d;
      height: 20px;
      font-family: "Verlag Cond A", "Verlag Cond B", Helvetica;
      letter-spacing: 1px; }
    .mobileSearch input[type="submit"] {
      display: none; }
  #home .hashtag, .hashtag {
    font-size: 14px; }
  h1 {
    /*font-size: 30px; line-height: 37px;*/
    font-size: 22px;
    line-height: 27px; }
  h2 {
    /*font-size: 17px; line-height: 20px;*/
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 1px; }
  h3 {
    font-size: 33px;
    line-height: 37px; }
  h4 {
    font-size: 42px;
    line-height: 36px; }
  h5 {
    font-size: 29px;
    line-height: 32px; }
  h6 {
    font-size: 14px; }
  p {
    font-size: 16px;
    line-height: 26px; }
  p em {
    font-size: 20px;
    line-height: 28px; }
  body {
    padding-top: 65px; }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 30;
    background: #ffffff;
    height: 65px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); }
    header .groups {
      display: block; }
    header .group2 {
      display: none; }
    header .logo {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      width: 228px; }
  header #mobile_logo {
    display: block; }
  header .menu-menu-1-container {
    display: none; }
  .pre-footer {
    width: 100%;
    background: #003C70;
    padding: 14px 0 10px 0; }
    .pre-footer img {
      max-width: 200px;
      margin: 0 auto; }
  footer {
    padding: 40px; }
    footer .menu-footer-menu-container li {
      display: block;
      margin: 0 0 15px; }
    footer .groups {
      display: block; }
    footer .group1 {
      width: 100%;
      text-align: center;
      margin-top: 20px; }
    footer .group2 {
      margin-top: 30px; }
    footer .group3 {
      margin: 25px auto 0; }
    footer .address {
      margin-bottom: 20px; }
  body.home .popup-inner {
    width: 100%; }
  body.home .popup-inner p {
    width: 90%;
    font-size: 12px;
    line-height: 14px; }
    body.home .popup-inner p:last-child {
      font-size: 10px;
      line-height: 12px;
      margin-bottom: 10px; }
  body.home .popup-inner input[type="email"],
  body.home .popup-inner input[type="text"],
  body.home .popup-inner input[type="tel"] {
    width: 80%;
    font-size: 16px;
    letter-spacing: 3px;
    padding: 8px 11px; }
  body.home .popup-inner input[type="submit"] {
    font-size: 18px;
    line-height: 18px; }
  body.home .popup-inner {
    top: calc(50% + 27px); }
  body.home .popup-inner h1 {
    display: none; }
  body.home .newsletter_signup {
    margin-top: 45px; }
  body.home .popup-inner .newsletter_signup .ctct-disclosure {
    width: 90%;
    margin-top: 5px;
    margin-bottom: 45px; }
  body.home .popup-inner .newsletter_signup .ctct-disclosure sub,
  body.home .popup-inner .newsletter_signup .ctct-disclosure sub a {
    font-size: 6px;
    line-height: 4px;
    letter-spacing: .5px; }
  #home {
    /*.buttonHorz { width: 210px; }*/ }
    #home section {
      padding: 40px 30px; }
    #home section.block1 {
      display: block; }
    #home section.block1 .item {
      max-width: 100%;
      width: 100%;
      margin-top: 20px; }
      #home section.block1 .item h1 br {
        display: none; }
      #home section.block1 .item:first-child {
        margin-top: 0; }
    #home .watermark1, #home .watermark2 {
      display: none; }
    #home .buttonVert {
      display: none; }
    #home .featureBlocks .right .title {
      font-size: 60px;
      line-height: 66px; }
    #home .featureBlocks .upperText, #home .featureBlocks .lowerText {
      font-size: 15px;
      line-height: 17px; }
    #home .featureBlocks .left .title {
      font-size: 29px;
      line-height: 35px; }
    #home section.bottomText h1 {
      font-size: 16px;
      line-height: 19px; }
  #events .buttonVert, #sales .buttonVert {
    display: none; }
  #single .textBar {
    display: none; }
  #single .postsContainer {
    margin-top: 0;
    padding: 40px 30px 35px; }
  #single .singleContent {
    padding: 0 30px 0px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical; }
    #single .singleContent .left {
      float: none;
      width: 100%;
      -webkit-box-ordinal-group: 2;
      -moz-box-ordinal-group: 2;
      box-ordinal-group: 2; }
    #single .singleContent .right {
      float: none;
      width: 100%;
      margin-bottom: 40px; }
    #single .singleContent .group:first-child {
      width: 100%; }
    #single .singleContent .postLinks {
      display: block; }
    #single .singleContent .buttonHorz {
      width: 218px; }
    #single .singleContent .postLinks {
      width: 100%;
      max-width: 260px;
      margin: 0 auto; }
    #single .singleContent .group.shareLabel {
      width: 45px;
      float: left;
      margin-top: 20px; }
    #single .singleContent .group.social {
      float: right;
      width: calc(100% - 55px); }
    #single .singleContent .hashtag a {
      max-width: none; }
    #single .singleContent .social {
      text-align: center;
      margin: 40px auto 30px; }
    #single .singleContent .social a {
      margin: 0 0 0 20px; }
      #single .singleContent .social a:first-child {
        margin-left: 0; }
    #single .singleContent .hours {
      margin-bottom: 8px;
      line-height: 16px; }
    #single .singleContent .hours br {
      display: block; }
    #single .singleContent .readMore {
      font-family: "Verlag A", "Verlag B", Helvetica;
      font-size: 14px;
      line-height: 14px;
      font-weight: 300;
      text-transform: uppercase;
      -webkit-transition: all 0.2s ease;
      -moz-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
      -o-transition: all 0.2s ease;
      transition: all 0.2s ease;
      cursor: pointer;
      color: #c19e00; }
      #single .singleContent .readMore:hover {
        color: #c3c3c3; }
    #single .singleContent .toggleView.full .readMore {
      margin-top: 10px; }
  #directory .textBar {
    padding-bottom: 40px; }
  #directory .textBar h1 {
    font-size: 22px;
    line-height: 27px; }
  #directory .tabNav {
    width: 100%;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center; }
  #directory .bar {
    padding: 70px 0 60px; }
  #directory .a-z {
    display: none; }
  #directory .categoryFilter .dropdown {
    left: auto;
    right: 0; }
  #directory .list .item {
    display: block;
    margin-bottom: 20px; }
  #directory .list .item .group:first-child {
    margin-bottom: 10px; }
  #directory .list .link {
    text-align: left; }
  #directory .grid .item {
    width: calc(100% - 2px); }
  #directory .list .item .group {
    width: 100% !important; }
  #directory #mapView .list {
    padding: 55px 30px 20px; }
    #directory #mapView .list .currentStore {
      margin-bottom: 0px;
      padding-bottom: 10px; }
  #directory #mapView .bottom .buttons {
    display: none; }
  #directory #mapView .fullList {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    -o-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    padding: 20px 0px; }
  #directory #mapView .bottomBar {
    padding: 20px 0px 10px; }
  #directory #mapView .map {
    margin-top: -20px;
    margin-bottom: 20px;
    width: 90%;
    padding-top: 20px; }
  #careers .jobs {
    margin: 0 auto 60px; }
  #careers .left {
    float: none;
    width: 40%;
    padding-left: 0;
    margin: 0 0 20px; }
  #careers .right {
    float: none;
    width: 100%; }
  #careers .description {
    margin: 16px 0 24px; }
  #careers p em {
    font-size: 18px;
    line-height: 27px; }
  #careers .item {
    padding: 30px 0; }
  #online-ordering .wrapper {
    max-width: unset;
    width: 100%;
    padding: 60px 0; }
  #online-ordering .eat .section2, #online-ordering .shop .section2, #online-ordering .park .section2 {
    padding: 30px; }
    #online-ordering .eat .section2 .item, #online-ordering .shop .section2 .item, #online-ordering .park .section2 .item {
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    #online-ordering .eat .section2 .list .left, #online-ordering .shop .section2 .list .left, #online-ordering .park .section2 .list .left {
      width: 40%;
      margin: 0 0 20px; }
    #online-ordering .eat .section2 .list .right, #online-ordering .shop .section2 .list .right, #online-ordering .park .section2 .list .right {
      width: 100%;
      margin-left: 0; }
      #online-ordering .eat .section2 .list .right h5, #online-ordering .shop .section2 .list .right h5, #online-ordering .park .section2 .list .right h5 {
        font-size: 30px;
        line-height: 24px; }
  #directions .wrapper {
    padding: 30px; }
  #directions .left {
    float: none;
    width: 100%; }
  #directions .wrapper .description {
    margin: 0 auto 25px;
    font-size: 22px;
    line-height: 28px; }
  #directions .left .group {
    float: none;
    width: 100%; }
  #directions .left .buttonVert {
    display: none; }
  #directions .mapEmbed {
    float: none;
    margin: 20px 0 25px; }
  #directions .right {
    float: none;
    width: 100%; }
  #directions .right .item {
    margin-bottom: 20px; }
  #movies .theaterInfo {
    display: block;
    padding: 35px 30px 35px; }
  #movies .theaterInfo h1 {
    font-size: 22px;
    line-height: 28px; }
  #movies .theaterInfo .watermark3 {
    display: none; }
  #movies .theaterInfo .left, #movies #movies .theaterInfo .right {
    float: none;
    max-width: none;
    width: 100%; }
  #movies .theaterInfo .right p {
    font-size: 16px;
    line-height: 26px; }
  #movies .theaterInfo .group {
    margin: 30px 0; }
  #movies .theaterInfo .buttonVert.share {
    display: none; }
  #movies .theaterInfo .buttonHorz {
    width: calc(100% - 44px);
    margin: 0 0 27px;
    max-width: 350px; }
  #movies .theaterInfo .buttonHorz .buttonInner {
    font-size: 15px !important; }
  #movies .theaterInfo .buttonHorz.phone {
    width: 100%;
    max-width: 350px; }
  #about .wrapper {
    padding: 30px 30px; }
  #about .buttonWrapper {
    display: none; }
  #about .contact .description {
    margin: 0 auto 25px;
    font-size: 22px;
    line-height: 28px; }
  #about .contact .label em {
    font-size: 25px;
    line-height: 28px; }
  #about .contact .left .arrow br {
    display: none; }
  #about .contact .left, #about .contact .right {
    float: none;
    width: 100%; }
  #about .contact .left .buttonHorz {
    width: 100%; }
  #about .contact .left .buttonHorz .text {
    position: static;
    height: auto;
    padding: 0;
    border: none; }
  #about .contact .right .buttonHorz {
    width: calc(100% - 45px);
    max-width: 350px; }
  #about .contact .right .buttonHorz.wide,
  #about .contact .left .buttonHorz.wide {
    width: calc(100% - 45px); }
  #about .contact .prContact {
    word-wrap: break-word; }
  #about .contact .prContact {
    margin-top: 16px;
    font-size: 14px;
    line-height: 24px; }
  #about .contact .right .label, #about .contact .left .label {
    margin: 10px 0 5px; }
  #about .contact .section {
    margin-bottom: 20px; }
  #about .charitable .right .label:first-child {
    margin-top: 20px; }
  #about .amenitiesText {
    display: block;
    padding: 30px; }
    #about .amenitiesText p em {
      font-size: 25px;
      line-height: 28px; }
    #about .amenitiesText .left, #about .amenitiesText .right {
      width: 100%;
      margin-right: 0; }
    #about .amenitiesText .left {
      margin-bottom: 20px; }
  #about .wrapper.amenities {
    display: none; }
  #about .amenities {
    padding: 40px 30px; }
  #about .amenities .item {
    width: 100%;
    margin-bottom: 20px; }
  #about .gift .left, #about .gift .right {
    float: none;
    width: 100%; }
  #about .gift .giftImage {
    margin: 0 auto 40px; }
  #about .gift .section.one {
    display: block; }
  #about .gift .section2 {
    padding: 0px;
    background: none;
    display: block;
    margin-top: 30px; }
  #about .gift .section2 .button.absolute.noHover {
    border: none;
    text-align: left;
    padding: 0;
    white-space: normal;
    margin-bottom: 10px; }
  #about .gift .section2 .group {
    width: 100%;
    margin: 0;
    margin-bottom: 25px; }
  #about .gift .section2 .button.absolute {
    position: static;
    -moz-transform: translateY(0) translateX(0);
    -o-transform: translateY(0) translateX(0);
    -ms-transform: translateY(0) translateX(0);
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    font-size: 20px;
    line-height: 20px;
    text-align: center; }
  #about .gift .section2 .g2 .buttonHorz {
    width: calc(100% - 45px); }
  #about .gift .section2 .label {
    margin: 10px 0;
    padding-bottom: 10px; }
    #about .gift .section2 .label em {
      font-size: 25px;
      line-height: 28px; }
  #about .gift .section2 .g3 .label {
    margin-bottom: 10px;
    margin-top: 30px; }
  #about .conduct {
    padding: 30px 30px; }
  #about .conduct .description {
    margin: 0 auto 30px;
    font-size: 22px;
    line-height: 28px; }
  #about .conduct p {
    line-height: 20px; }
  #about .conduct p em {
    font-size: 16px;
    line-height: 20px; }
  #store-login .textBarSmall {
    padding: 40px 30px; }
  #store-login .store-form {
    border: none; }
  #store-login .store-form form {
    border: none; }
  #store-login .input-row {
    display: block;
    margin-bottom: 20px; }
  #store-login div.label {
    width: auto;
    border: 2px solid #415863;
    text-align: left;
    font-size: 11px;
    padding: 8px 14px;
    background: #e2decf;
    color: #6d6a4d; }
  #store-login p.input {
    border-right: 2px solid #415863;
    border-left: 2px solid #415863; }
  #store-login p.input input, #store-login p.input textarea {
    width: calc(100% - 28px);
    font-size: 11px;
    padding: 24px 14px; }
  #store-login p.input input[type="date"] {
    max-width: none; }
  #store-login span.wpcf7-not-valid-tip {
    padding: 0 0 3px 14px;
    font-size: 9px; }
  #search .no_results {
    font-size: 21px;
    line-height: 26px;
    text-align: center;
    padding-bottom: 10px; }
  #error404 .amenities .balloon-item,
  #error404 .amenities .shoes-item {
    display: none; }
  #error404 .amenities .icon .dining svg {
    width: 72px; }
  #error404 .amenities .icon .pet svg {
    width: 52px; }
  #error404 .amenities .icon .security svg {
    width: 34px; } }

/*=======================================================================================================
=======================================================================================================*/
/*
========================================================================================================
========================================================================================================
========================================================================================================
*/
/*
========================================================================================================
========================================================================================================
========================================================================================================
*/
