
.inner-hero-banner {
  position: relative;
}
.inner-hero-banner:after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--body-bg);
  transform: skewY(2deg);
  transform-origin: top right;
  z-index: 2;
}
.mainimage-inner {
  margin: 0;
  overflow: hidden;
}
.mainimage-inner img {
  width: 100%;
}
.mainimage-inner h2 {
  width: 100%;
  position: absolute;
  bottom: 65px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--inverse-font-color);
  filter: opacity(1);
}
.mainimage-inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent linear-gradient(180deg, #00000080 0%, #67676700 60%, #000000A8 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 1024px){
  .mainimage-inner h2 {
    bottom: 35px;
    font: var(--mob-xl-title-fonts);
    text-align: center;
    padding: 0 20px;
  }
  .mainimage-inner img {
    min-height: 400px;
    object-fit: cover;
  }
}
.header {
  background: transparent;
  color: var(--header-color);
  /*height: 124px;*/
  display: flex;
  width: 100%;
  padding: 0 0px;
  transition: height .3s ease-out, background-color .3s ease-out;
  flex-wrap: wrap;
}
.vcomponent:has(header),
.VComponent:has(header) {
  position: fixed;
  position: -webkit-fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.ng-star-inserted .header {
  position: static;
  background: var(--bg-header);
}

.header_top {
  width: 100%;
  background-color: var(--bg-header);
  text-align: center;
  color: var(--header-color);
  padding: 7px 0px;
  display: none;
}
.header_top-inner {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  align-items: center;
}
.header_top a {
  color: var(--header-color);
  font-size: 16px;
}
.header_top a:hover, .header_top a:focus{
  color: var(--highlight-color);
}
.header:not(.is-fixed) .header_top {
  display: block;
}
.header__container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding: 0;
  padding: 0 20px;
}
.header.is-fixed {
  /*height: 67px;*/
  background: var(--bg-header);
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 10%);
  -moz-box-shadow: 0 1px 6px rgba(0,0,0,10%);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 10%);
}
.header__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
.header:not(.is-fixed) .header__scroll-logo {
  display: none;
}
.header.is-fixed .header__logo-transparent {
  display: none;
}
.header__col{
  width: auto;
}
.header__col--right {
  display: flex;
  align-items: center;
}
.header__reserve-cta {
  margin-left: 30px;
}
.header__reserve-cta .button.filled-secondary-button:hover, .header__reserve-cta .button.filled-secondary-button:focus{
  background-color: var(--inverse-font-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.header:not(.is-fixed) .header__reserve-cta {
  display: none;
}
.ng-star-inserted .header .header__reserve-cta{
  display: inline-block;
}
.navmenu__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navmenu__list-link {
  display: inline-flex;
  padding: 5px 0px;
  position: relative;
  font: var(--header-fonts);
  text-transform: var(--header-fonts-text-transform);
  color: var(--header-color);
  letter-spacing: 1.68px;
  border-bottom: 1px solid transparent;
  filter: opacity(1);
}
.navmenu__list-link:hover, .navmenu__list-link:focus, .navmenu__list-link.nav.navON {
  color: inherit;
  border-color: inherit;
}
.navmenu__list .navmenu__list-item + .navmenu__list-item{
  padding-left: 30px;
}
.header__logo {
  padding: 0 35px;
}
.header:not(.is-fixed) .header__logo .header__logo-img{
  width: var(--logo-width);
  height: auto;
  transition: 0.3s;
}
.header.is-fixed .header__logo .header__logo-img{
  width: var(--logo-width-onscroll);
  height: auto;
  transition: 0.3s;
}
.navmenu__list-item.submenulist .navmenu-dropmenu {
  position: absolute;
  min-width: 200px;
  left: -35px;
  padding-top: 15px;
  background: var(--inverse-font-color);
  border-radius: 0px 0px 0px 0px;
  margin: 0px auto;
  list-style: none;
  width: 250px;
  padding-bottom: 15px;
}
.navmenu__list-item.submenulist .navmenu-dropmenu li a {
  font-size: 15px;
  font-family: var(--text-fonts);
  text-transform: capitalize;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0px;
  color: var(--text-color) !important;
  padding: 0px 0px;
  font-weight: 400;
  border-bottom: 1px solid transparent;
}
.navmenu__list-item.submenulist .navmenu-dropmenu li a:hover,
.navmenu__list-item.submenulist .navmenu-dropmenu li a:focus,
.navmenu__list-item.submenulist .navmenu-dropmenu .navmenu-dropmenu__link.nav.navON{
  border-color: inherit;
}
.header__toggler-btn {
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
  border: none;
  font-size: 23px;
  padding: 0;
  display: flex;
  align-items: center;
}
#reserve-modal {
  padding: 0px;
}
#reserve-modal .uk-modal-dialog {
  width: 100%;
  height: 100%;
  /*background-image: url(/resourcefiles/common-image/orange-bg.jpg);*/
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  background-color: var(--primary-color);
  background-blend-mode: luminosity;
}
.open-table-widget-container {
  position: absolute;
  z-index: 10;
  max-width: 640px;
  width: 100%;
  max-height: 420px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  color: var(--text-color) !important;
  padding: 20px;
  background: var(--inverse-font-color);
  margin: auto !important;
}
.open-table-widget-container .uk-modal-close {
  position: absolute;
  right: 0px;
  top: -40px;
  /*color: var(--inverse-font-color);*/
}
#reserve-modal .uk-modal-dialog:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: 0;
  content: '';
  opacity: 0.75;
}
.header__collapsible-close-btn a, .reserve-modal-close-btn{
  width: 22px;
  height: 22px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 1px solid var(--highlight-color);
  background-color: transparent;
  color: var(--highlight-color);
  cursor: pointer;
}
.header__collapsible-close-btn a:hover, .header__collapsible-close-btn a:focus,
.reserve-modal-close-btn:hover, .reserve-modal-close-btn:focus{
  background-color: var(--highlight-color);
  color: var(--primary-color);
}

@media (min-width: 1024.1px) {
  .header__collapsible.mobile-only, .header__toggler{
    display: none;
  }
}

@media (max-width: 1280px) {
  .navmenu__list .navmenu__list-item + .navmenu__list-item {
    padding-left: 15px;
  }
  .header__logo {
    padding: 0 10px;
  }
  .header__reserve-cta {
    margin-left: 10px;
  }
}
@media (max-width: 1024px) {
  .navmenu__list{
    display: none;
  }
  /*.header:not(.is-fixed) .header_top {
  display: none;
}*/
  .header_top{
    display: block;
  }
  .header__grid{
    padding: 13px 0px;
  }
  .header__reserve-cta {
    display: none;
  }
  .navmenu{
    width: 100%;
  }
  .header__container {
    justify-content: space-between;
    padding: 0 30px;
  }
  .header.is-fixed, .header{
    /*height: 64px;*/
    background: var(--inverse-font-color);
    box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.10), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  }
  .header__logo svg, .header__logo svg * {
    fill: var(--primary-color);
  }
  .header__logo.header__logo-transparent {
    display: none;
  }
  .header:not(.is-fixed) .header__scroll-logo {
    display: block;
  }
  .header:not(.is-fixed) .header__logo .header__logo-img, .header.is-fixed .header__logo .header__logo-img {
    width: var(--mob-logo-width);
  }
  /*#reserve-modal .uk-modal-dialog{
  background-image: url('https://www.bacchusbarpdx.com/resourcefiles/backgroundimages/wood-bg-image.jpeg') !important;
}*/
  #reserve-modal .uk-modal-dialog:before{
    opacity: 0.7;
  }
  .header__collapsible{
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    /*background-image: url('https://www.bacchusbarpdx.com/resourcefiles/backgroundimages/wood-bg-image.jpeg');*/
    background-color: var(--primary-color);
    background-blend-mode: luminosity;
    background-size: cover;
    background-position: center;
  }
  .header__collapsible .navmenu__list {
    display: block;
    padding: 30px 0px 30px;
  }
  .header__collapsible .uk-offcanvas-bar{
    width: 100%;
    background: none;
    /*background-image: url('https://www.bacchusbarpdx.com/resourcefiles/backgroundimages/wood-bg-image.jpeg');
    background-color: var(--primary-color);
    background-blend-mode: luminosity;
    position: relative;*/
    padding: 30px;
  }
  .header__collapsible:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 0;
    content: '';
    opacity: 0.7;
    pointer-events: none;
  }
  .navmenu__list .navmenu__list-item{
    text-align: center;
  }
  .navmenu__list .navmenu__list-item + .navmenu__list-item {
    padding-left: 0px;
    margin-top: 20px;
  }
  .header__collapsible .navmenu__list li a {
    font: var(--mob-header-fonts);
    text-transform: uppercase;
    color: var(--inverse-font-color) !important;
    justify-content: flex-start;
    letter-spacing: 0px;
    justify-content: center;
    font-family: var(--title-fonts);
    width: fit-content;
    margin: 0 auto;
  }
  .header__collapsible .header__container {
    justify-content: flex-end;
    padding: 0;
  }
  .header__collapsible-social-media {
    justify-content: center;
    border-top: 1px solid var(--highlight-color);
    margin: 0;
    padding-top: 30px;
    position: relative;
  }
  .header__collapsible-social-media  .social-channel-name {
    display: none;
  }
  .header__collapsible-social-media ul {
    column-gap: 17px;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;

  }
  .header__collapsible-social-media a{
    color: var(--highlight-color);
  }
  .header__collapsible-social-media .icon-s {
    font-size: 23px;
  }
  .header__collapsible .navmenu__list-item.submenulist .navmenu-dropmenu{
    position: relative;
    background: transparent;
    left: inherit !important;
    top: inherit !important;
    padding-bottom: 0;
    box-shadow: none;
  }
  .header__collapsible .navmenu__list-item.submenulist .navmenu-dropmenu li a{
    color: var(--inverse-font-color) !important;
  }
}
@media (max-width: 639.98px) {
  .header_top-inner {
    flex-direction: column;
    padding: 0px 20px;
  }
  .header_top{
    padding: 5px 0px;
  }
  .header_top a {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  .open-table-widget-container {
    max-width: 255px;
  }
  .open-table-widget-container .uk-modal-close {
    position: fixed;
    top: 35px;
    right: 35px;
  }
}

/* Without banner header CSS */
.without-banner .vcomponent:has(header),
.without-banner .VComponent:has(header) {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.without-banner .header {
  position: static;
}
@media (min-width: 1024.1px) {
  .without-banner .header {
    background: var(--bg-header);
  }
  .header.is-fixed .header_top, .menu-active .header .header_top, .without-banner .header .header_top 	{
    display: block;
  }
  .without-banner .header:not(.is-fixed) .header__scroll-logo{
    display: block;
  }
  .without-banner .header:not(.is-fixed) .header__logo-transparent {
    display: none;
  }
  .without-banner .header .header__logo .header__logo-img {
    width: var(--logo-width-onscroll);
  }
  .without-banner .header:not(.is-fixed) .header__reserve-cta {
    display: block;
  }
}
.navmenu__list-item.navmenu__list-item--onlymob {
  display: none;
}
@media (max-width: 768px) {
  .navmenu__list-item.navmenu__list-item--onlymob {
    display: block;
  }
}
/* Without banner header CSS */
.h1-headline{
	position: relative;
  	z-index: 3;
}
.footer {
    padding: 64px 0;
}
.footer-section:before,
.footer-section:after{
    display: none;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.footer-top-links {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    column-gap: 44px;
    row-gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.14px;
}

.footer a.top-link {
    font: var(--footer-fonts);
    text-transform: var(--footer-fonts-text-transform);
}

.form-description {
    margin-bottom: 16px;
}

#footerEmail {
    width: 300px;
    background: var(--primary-color);
    border-radius: 0 10px 0 10px;
}

#footerEmail::placeholder {
    color: var(--inverse-font-color);
}

.footer-top-right {
    max-width: 464px;
}

.social-section {
    display: flex;
    justify-content: flex-start;
    align-self: baseline;
}

.footer-social ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 33px;
    flex-direction: column;
}

.footer-social a {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.14px;
    display: flex;
    align-items: center;
    row-gap: 15px;
    column-gap: 15px;
}

.footer-social a:hover,
.footer-social a:focus {
    text-decoration: none !important;
}
.footer__secondary--links-item {
    font-size: 14px;
}
.footer-social a:hover span:last-child,
.footer-social a:focus span:last-child {
    text-decoration: underline;
}
.footer-social a:hover .icon-s,
.footer-social a:focus .icon-s{
    opacity: 0.7;
}

.social-text-links {
    padding: 0;
    list-style-type: none;
    display: flex;
    column-gap: 26px;
}

.social-text-links a {
    font: var(--footer-fonts);
    text-transform: var(--footer-fonts-text-transform);
    font-size: 14px;
}

.footer-social {
    position: relative;
}
.footer a{
    font-size: 14px;
}
.footer a:hover,
.footer a:focus,
.footer a.navON {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--inverse-font-color);
    padding-top: 23px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.footer-copyright-home {
    display: none;
}

.milestone .footer-copyright-home {
    display: block;
}

.milestone .footer-copyright-inner {
    display: none;
}

.footer-copyright-home a {
    text-decoration: underline;
}

.footer-copyright-home a:hover,
.footer-copyright-home a:focus {
    text-decoration: none;
}

.footer-top>div {
    position: relative;
    display: grid;
    place-items: center;
}

.footer-top div+div:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--inverse-font-color);
    left: -65px;
  left: -265px;
  display: none;
}

.footer-top-left {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start !important;
}

@media (max-width: 1280px) {
    .footer-top div+div:before {
        left: -45px;
      left: -200px;
    }
}

@media (max-width: 1180px) {
    .footer-top div+div:before {
        display: none;
    }

    .footer-top-links {
        column-gap: 30px;
    }
}

@media (max-width: 1024px) {
    .footer-top-links {
        column-gap: 50px;
    }

    .footer-top-links {
        column-gap: 20px;
    }

    .footer-top div+div:before {
        display: none;
    }

    .footer-top-right {
        max-width: unset;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer {
        padding: 48px 0;
    }

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer-social a {
        font-size: 14px;
        column-gap: 12px;
    }

    .footer-social ul {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-top-left {
        padding-top: 24px;
        margin-top: 32px;
        border-top: 1px solid var(--inverse-font-color);
    }

    .footer-top-links {
        flex-direction: column;
        align-items: center;
        padding-bottom: 24px;
        width: 100%;
        border-bottom: 1px solid var(--inverse-font-color);
        margin-bottom: 24px;
    }

    .social-section {
        align-self: auto;
        width: 100%;
    }

    .social-text-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        row-gap: 12px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--inverse-font-color);
    }

    .footer-bottom {
        border: none;
        margin-top: 23px;
        padding-top: 0;
    }
}