﻿:root {
    /*--main-blue-color: #003b81;*/
    --main-blue-color: #1f285c;
    --secondary-gold-color: #f8d03f;
    --gray-text-color: #727373;
    --divider-gray-color: #ebebeb;
}

body {
    font-family: proxima-nova-condensed, sans-serif;
    margin: 0;
}

.align-center {
    text-align: center;
}

h1, h2, h3, h4, h5 {
    font-family: proxima-nova-extra-condensed, sans-serif;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--main-blue-color);
    text-transform: uppercase;
    margin: 5px 0 30px 0;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

p, ul, ol {
    font-size: 24px;
    line-height: 1.3em;
}

table {
    font-size: 24px;
    line-height: 1.3em;
}

.wr-bold {
    font-weight: 700;
}

.wr-semi-bold {
    font-weight: 600;
}

.wr-playful-text {
    font-family: "Knewave", serif;
    font-weight: 400;
    font-style: normal;
}


@media (max-width: 1024px)
{
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }
    
    p, ul, ol {
        font-size: 22px;
    }

    table {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    p, ul, ol {
        font-size: 20px;
    }

    table {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    p, ul, ol {
        font-size: 18px;
    }

    table {
        font-size: 18px;
    }
}

.align-center {
    text-align: center;
}

.wr-section {
    padding-top: 20px;
    padding-right: 60px;
    padding-bottom: 20px;
    padding-left: 60px;
}

    .wr-section p, .wr-section ul, .wr-section ol {
        color: var(--gray-text-color);
    }

    .wr-section img {
        max-width: 100%;
    }

@media (max-width: 1024px) {
    .wr-section {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .wr-section-hero {
        padding-top: 0 !important;
    }
}

@media (max-width: 500px) {
    .wr-section {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }
}

.wr-row {
    display: flex;
    flex-flow: row nowrap;
    gap: 60px;
}

.wr-column {
}

.wr-column-50 {
    flex-basis: 50%;
}

.wr-column-66 {
    flex-basis: 66%;
}

.wr-column-34 {
    flex-basis: 34%;
}

@media (max-width: 768px) {
    .wr-row {
        flex-flow: column nowrap;
    }
}

@media (max-width: 1024px) {
    .wr-row {
        gap: 20px;
    }
}

.wr-img-border {
    display: block;
    padding: 10px;
    border: 1px solid #000;
    box-sizing: border-box;
}

@media (max-width: 500px) {
    .wr-img-border {
        padding: 5px;
    }
}

.wr-img-border-center {
    margin: 0 auto;
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 49px;
    height: 49px;
    background-image: url("/Resources/Images/blue_block_arrow_left.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(90deg);
    border: 0;
    outline: 0;
    cursor: pointer;
    z-index: 99;
}

#backToTop.backToTopActive {
    display: block;
}

.wr-standard-button {
    display: inline-block;
    align-items: center;
    font-family: proxima-nova-extra-condensed, sans-serif;
    background-color: var(--main-blue-color);
    color: #fff;
    font-size: 24px;
    line-height: 1em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 25px;
    margin: 15px 0;
    border: 0;
    cursor: pointer;
}

    .wr-standard-button:hover {
        background-color: #000;
    }

.wr-standard-button-center {
    display: block;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

#wr-video-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*box-sizing: border-box;
    border-bottom: 5px solid #000;*/
    /*background-image: url('/Resources/Images/video_hero.jpg');
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;*/
    background-color: #000;
    z-index: 40;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#wr-video-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 41;
}

.wr-video-hero-title {
    position: relative;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 85px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
    line-height: 1em;
    max-width: 1300px;
    margin-bottom: 5%;
    z-index: 45;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .wr-video-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .wr-video-hero-title {
        font-size: 36px;
    }
}

#wr-video-modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    background-color: rgba(0,0,0,0.85);
}

.wr-video-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 100px;
    line-height: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

#wr-video-modal-video {
    max-width: 80%;
    max-height: 80%;
    aspect-ratio: 1920/1080;
    border: 15px solid #000;
}

#wr-wrapper {
    position: relative;
    z-index: 50;
    /*margin-top: 100vh;*/
    background-color: #fff;
}

.wr-header {

}

.wr-header-top {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-right: 60px;
    padding-bottom: 5px;
    padding-left: 60px;
    font-family: proxima-nova-extra-condensed, sans-serif;
    background-color: var(--secondary-gold-color);
    color: var(--main-blue-color);
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.wr-header-top-phone {
    text-decoration: none;
    color: var(--main-blue-color);
}

    .wr-header-top-phone:hover {
        text-decoration: underline;
    }

.wr-header-top-right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.wr-mobile-nav-button {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    appearance: none;
    border: none;
    background: none;
}

    .wr-mobile-nav-button > div {
        height: 6px;
        width: 100%;
        background-color: var(--main-blue-color);
    }

.wr-header-top-menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

.wr-header-top-menu a {
    color: var(--main-blue-color);
    text-decoration: none;
    padding-left: 20px;
}

    .wr-header-top-menu a:hover {
        text-decoration: underline;
    }

.wr-header-top-shopping-cart {

}

@media (max-width: 1100px) and (min-width: 1025px) {
    .wr-header-top-menu a {
        padding-left: 15px;
    }
}

@media (min-width: 1025px) {
    .wr-mobile-nav-button {
        display: none;
    }
}

@media (max-width: 1024px) {
    .wr-header-top {
        padding-top: 20px;
        padding-right: 50px;
        padding-bottom: 20px;
        padding-left: 50px;
        justify-content: space-between;
    }

    .wr-header-top-menu {
        display: none;
    }

    .wr-header-top-right {
        flex-flow: row-reverse nowrap;
    }
}

@media (max-width: 500px) {
    .wr-header-top {
        font-size: 24px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.wr-mobile-nav {
    display: none;
    flex-flow: column nowrap;
}

    .wr-mobile-nav > a {
        display: block;
        color: var(--main-blue-color);
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom: 1px solid var(--divider-gray-color);
        padding: 5px 15px;
        text-decoration: none;
    }

        .wr-mobile-nav > a:hover {
            color: #FFF;
            background-color: var(--main-blue-color);
        }

@media (max-width: 1024px) {
    .wr-mobile-nav.wr-mobile-nav-active {
        display: flex;
    }
}

.wr-header-main {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    padding-top: 20px;
    padding-right: 60px;
    padding-bottom: 20px;
    padding-left: 60px;
    background-color: var(--main-blue-color);
}

.wr-header-logo {
    display: flex;
    width: 250px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .wr-header-logo > img {
        max-width: 100%;
        max-height: 100%;
    }

.wr-header-main-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    width: 100%;
    max-width: 850px;
}

    .wr-header-main-buttons a {
        display: block;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 390px;
        font-family: proxima-nova-extra-condensed, sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #FFF;
        text-transform: uppercase;
        text-decoration: none;
        border: 2px solid #FFF;
        text-align: center;
        margin-left: 20px;
    }

        .wr-header-main-buttons a:hover {
            background-color: #000;
        }

@media (max-width: 1300px) and (min-width: 1024px) {
    .wr-header-main-buttons {
        max-width: 630px;
    }

    .wr-header-main-buttons a {
        font-size: 36px;
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .wr-header-main {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .wr-header-main-buttons {
        flex-flow: row wrap;
        width: 50%;
        gap: 2vh;
    }

        .wr-header-main-buttons a {
            margin-left: 0;
        }

    .wr-header-logo {
        width: 50%;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .wr-header-main-buttons a {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .wr-header-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .wr-header-main-buttons a {
        font-size: 22px;
    }
}

@media (max-width: 320px) {
    .wr-header-main-buttons a {
        font-size: 18px;
    }
}

.wr-header-bottom {
    display: flex;
    justify-content: center;
    background-image: url('/Resources/Images/wr-header-bottom-bg-tile.png');
    background-repeat: repeat;
    padding-top: 5px;
    padding-right: 60px;
    padding-bottom: 5px;
    padding-left: 60px;
    min-height: 15px;
    
}

.wr-main-nav {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

    .wr-main-nav > a {
        display: block;
        font-family: proxima-nova-extra-condensed, sans-serif;
        color: var(--main-blue-color);
        font-size: 30px;
        line-height: 30px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        margin: 0 5px;
    }

        .wr-main-nav > a:hover {
            text-decoration: underline;
        }

@media (max-width: 1600px) and (min-width: 1301px) {
    .wr-main-nav > a {
        font-size: 24px;
    }
}

@media (max-width: 1300px) and (min-width: 1025px) {
    .wr-main-nav > a {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .wr-main-nav {
        display: none;
    }
}

.wr-hero {
    position: relative;
    padding: 10px;
    border: 1px solid #000;
}

    .wr-hero img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.wr-hero-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 15px 0;
    gap: 7%
}

    .wr-hero-buttons a {
        display: block;
        flex: 1 1 30%;
        font-family: proxima-nova-extra-condensed, sans-serif;
        font-size: 36px;
        font-weight: 700;
        color: #FFF;
        background-color: var(--main-blue-color);
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
    }

        .wr-hero-buttons a:hover {
            background-color: #000;
        }

.wr-hero-buttons-mobile {
    display: none;
}

@media (max-width: 1600px) and (min-width: 1301px) {
    .wr-hero-buttons a {
        font-size: 28px;
    }
}

@media (max-width: 1300px) and (min-width: 769px) {
    .wr-hero-buttons a {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .wr-hero-buttons {
        gap: 10px;
    }
        .wr-hero-buttons a {
            font-size: 26px;
        }
    
    .wr-hero-buttons-desktop {
        display: none;
    }

    .wr-hero-buttons-mobile {
        display: flex;
    }

    .wr-hero {
        padding: 5px;
    }
}

@media (max-width: 500px) {
    .wr-hero-buttons a {
        font-size: 20px;
    }
}

.wr-hero-title {
    position: absolute;
    bottom: 20px;
    padding: 15px;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 48px;
    line-height: 1em;
    font-weight: 700;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 1600px)
{
    .wr-hero-title {
        font-size: 26px
    }
}

@media (max-width: 500px) {
    .wr-hero-title {
        font-size: 20px
    }
}

.wr-subpage-hero {
    position: relative;
    padding: 10px;
    border: 1px solid #000;
}

    .wr-subpage-hero img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.wr-subpage-hero-title {
    position: absolute;
    bottom: 5px;
    right: 10px;
    padding: 15px;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 48px;
    line-height: 0.8em;
    font-weight: 700;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    text-align: right;
    box-sizing: border-box;
}

    .wr-subpage-hero-title > span {
        display: block;
        font-size: 36px;
    }

@media (max-width: 1600px) {
    .wr-subpage-hero-title {
        font-size: 26px
    }

        .wr-subpage-hero-title > span {
            font-size: 20px;
        }
}

@media (max-width: 500px) {
    .wr-subpage-hero-title {
        font-size: 20px
    }
        .wr-subpage-hero-title > span {
            font-size: 16px;
        }
}

.wr-banners {
    display: flex;
    flex-flow: column nowrap;
}

    .wr-banners a {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 5px;
        border: 1px solid #000;
        flex: 1 1 50%;
        box-sizing: border-box;
    }

        .wr-banners a > img {
            width: 100%;
            object-fit: cover;
        }

.wr-banners-row {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
    margin-bottom: 15px;
}

.wr-banner-title {
    position: absolute;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 48px;
    line-height: 1em;
    font-weight: 700;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid var(--secondary-gold-color);
}

@media (max-width: 1600px) and (min-width: 1025px) {
    .wr-banner-title {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .wr-banner-title {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .wr-banner-title {
        font-size: 20px;
    }
}

.wr-headline {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.wr-headline-divider {
    flex: 1 1 auto;
    height: 10px;
    background-color: var(--main-blue-color);
}

    .wr-headline-divider.wr-headline-divider-left {
        margin-right: 20px;
    }

    .wr-headline-divider.wr-headline-divider-right {
        margin-left: 20px;
    }

.wr-headline-title {
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 56px;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--main-blue-color);
    text-transform: uppercase;
    text-align: center;
}

.wr-headline-logo {

}

@media (max-width: 1024px) {
    .wr-headline-title {
        font-size: 48px;
    }
}

@media (max-width: 769px) {
    .wr-headline-title {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .wr-headline-title {
        font-size: 28px;
    }
}

.venue_container {
    display: flex;
    flex-flow: row nowrap;
    gap: 60px;
    margin-bottom: 60px;
}

.venue {
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1 50%;
    box-sizing: border-box;
}

.venue_image_container {
    border: 1px solid #000;
    padding: 5px;
}

.venue_image {
    display: flex;
    /*height: 45vh;*/
    height: 22vw;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .venue_image.venue_image_steakhouse {
        background-image: url('/Resources/Images/venue_1.jpg');
    }

    .venue_image.venue_image_sportsbar {
        background-image: url('/Resources/Images/venue_2.jpg');
    }

    .venue_image.venue_image_wineroom {
        background-image: url('/Resources/Images/venue_3.jpg');
    }

    .venue_image.venue_image_banquetcenter {
        background-image: url('/Resources/Images/venue_4.jpg');
    }

.venue_logo,
.wr-section img.venue_logo {
    display: block;
    max-width: 80%;
    max-height: 60%;
    padding: 20px;
    box-sizing: border-box;
    object-fit: contain;
}

.venue_button {
    display: inline-block;
    min-width: 40%;
    max-width: 100%;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFF;
    background-color: rgb(0, 0, 0, 0.50);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 2px solid #FFF;
    margin: 20px;
}

    .venue_button:hover {
        background-color: rgb(0, 0, 0, 1);
    }

.venue_spacer {
    flex: 1 1 auto;
}

.venue_divider {
    height: 10px;
    border-top: 5px solid var(--divider-gray-color);
    border-bottom: 5px solid var(--divider-gray-color);
}

@media (max-width: 1300px) and (min-width: 1025px) {
    .venue_button {
        font-size: 28px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    
}

@media (max-width: 1024px) {
    .venue_button {
        font-size: 22px;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .venue_container {
        flex-flow: column nowrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .venue_image {
        height: 45vw;
        justify-content: center;
    }
}

.wr-promo-container {
    columns: 3 auto;
    column-gap: 15px;
    margin-top: 30px;
}

.wr-promo {
    display: inline-block;
    min-width: 100%;
    border: 1px solid #000;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

    .wr-promo > img {
        display: block;
        width: 100%;
    }

@media (max-width: 1024px) {
    .wr-promo-container {
        columns: 2 auto;
    }
}

@media (max-width: 768px) {
    .wr-promo-container {
        columns: 1 auto;
    }
}

/*@media (max-width: 500px) {
    .wr-promo-container {
        columns: 1 auto;
    }
}*/

.wr-awards-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin: 30px 0 0 0;
}

.wr-award {
    margin-bottom: 30px;
}

    .wr-award .wine-spectator {
        display: block;
        max-width: 150px;
    }

    .wr-award .wr-award-opentable {
        display: block;
        max-width: 200px;
    }

@media (max-width: 500px) {
    .wr-awards-container {
        flex-flow: column nowrap;
    }
}

.wr-divider {
    height: 50px;
    background-image: url('/Resources/Images/wr-header-bottom-bg-tile.png');
    background-repeat: repeat;
}

.wr-logos-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    margin: 30px 0 50px 0;
}

.wr-logo {
    display: block;
}

    .wr-logo > img {
        display: block;
        width: 100%;
    }

@media (max-width: 768px) {
    .wr-logos-container {
        flex-flow: row wrap;
        justify-content: center;
    }

    .wr-logo {
        flex: 0 0 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 500px) {
    .wr-logos-container {
        flex-flow: column nowrap;
    }
}

.wr-section-divider {
    height: 15px;
    border-top: 5px solid var(--divider-gray-color);
    border-bottom: 5px solid var(--divider-gray-color);
    margin: 30px 0;
}

.wr-cta-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 5%;
    margin: 30px 0 0 0;
}

.wr-cta {
    text-align: center;
    text-decoration: none;
}

    .wr-cta span {
        font-size: 30px;
        color: var(--gray-text-color);
    }

@media (max-width: 768px) {
    .wr-cta-container {
        justify-content: space-evenly;
    }
}

@media (max-width: 500px) {
    .wr-cta span {
        font-size: 20px;
    }
}

.wr-footer {
    background-color: var(--main-blue-color);
    padding-bottom: 30px;
    border-top: 50px solid var(--secondary-gold-color);
    color: #FFF;
}

    .wr-footer a {
        color: #FFF;
        text-decoration: none;
    }

        .wr-footer a:hover {
            color: #FFF;
            text-decoration: underline;
        }

.wr-footer-info {
    text-align: center;
    font-size: 36px;
    line-height: 1.3em;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

.wr-sub-footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    padding-top: 3px;
    padding-right: 30px;
    padding-bottom: 3px;
    padding-left: 30px;
    font-size: 24px;
}

    .wr-sub-footer > div {
        flex: 1 1 33%;
        text-align: center;
    }

        .wr-sub-footer > div:first-of-type {
            text-align: left;
        }

        .wr-sub-footer > div:last-of-type {
            text-align: right;
        }

@media (max-width: 1300px) and (min-width: 1025px) {
    .wr-sub-footer {
        font-size: 18px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .wr-footer-info {
        font-size: 24px;
    }

    .wr-sub-footer {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .wr-footer {
        padding-bottom: 0;
    }
    
    .wr-footer-info {
        font-size: 22px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .wr-sub-footer {
        flex-flow: row wrap;
        font-size: 16px;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

        .wr-sub-footer > div {
            order: 1;
            flex: 0 0 100%;
            margin: 0 0 10px 0;
        }

            .wr-sub-footer > div:first-of-type {
                order: 2;
                flex: 0 0 50%;
            }

            .wr-sub-footer > div:last-of-type {
                order: 3;
                flex: 0 0 50%;
            }
}

@media (max-width: 500px) {
    .wr-sub-footer {
        flex-flow: column nowrap;
        padding-left: 10px;
        padding-right: 10px;
    }

        .wr-sub-footer > div {
            flex: 0 0 100%;
            margin: 0 0 3px 0;
        }

            .wr-sub-footer > div:first-of-type {
                flex: 0 0 100%;
            }

            .wr-sub-footer > div:last-of-type {
                flex: 0 0 100%;
            }
}

/* -- Sub-page stuff -- */

.about-logos-container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 5%;
}

.about-logo {
    flex: 1 1 27%;
    margin-bottom: 30px;
    text-align: center;
}

    .about-logo img {
        max-width: 100%;
    }

.wr-section-subpage {
    margin-bottom: 30px;
}

.wr-section-subpage-alt {
    background-color: var(--main-blue-color);
    background-position-x: center;
    background-position-y: -20vh;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url('/Resources/Images/sub_bg_4.jpg');
}

    .wr-section-subpage-alt h1,
    .wr-section-subpage-alt h2,
    .wr-section-subpage-alt h3,
    .wr-section-subpage-alt h4,
    .wr-section-subpage-alt h5,
    .wr-section-subpage-alt p,
    .wr-section-subpage-alt a:not(.gold_button),
    .wr-section-subpage-alt ul,
    .wr-section-subpage-alt table:not(.grdCart, .cart_grid_table) {
        color: #fff;
        text-shadow: 1px 1px 2px #000;
    }

@media (max-width: 1024px) {
    .wr-section-subpage-alt {
        background-position-y: -10vh;
    }
}

.wr-section-about > .wr-headline {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .wr-section-about > .wr-headline {
        margin-bottom: 0;
    }
}

.wr-section-about .wr-img-border {
    width: 100%;
}

.ahg-logo {
    display: block;
    max-width: 550px;
}

.wr-section-cart table:not(.grdCart) {
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.wr-section-gift-cards h5 {
    color: var(--gray-text-color);
    margin-bottom: 0;
}

.wr-section-gift-cards p.no-margin-top {
    margin-top: 0;
}

.wr-section-gift-cards .wr-column > .wr-img-border {
    min-width: 100%;
}

.gift-card-select {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    align-items: center;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--main-blue-color);
    text-transform: uppercase;
}

    .gift-card-select select {
        width: 350px;
        background-color: var(--divider-gray-color);
        /*font-family: proxima-nova-extra-condensed, sans-serif;*/
        /*font-size: 30px;*/
        font-size: 24px;
        color: var(--main-blue-color);
        cursor: pointer;
        padding: 0 15px;
        box-sizing: border-box;
    }

.gift-card-purchase {
    display: inline-block;
    min-width: 250px;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    border: 1px solid #000;
    background-color: #007236;
    margin: 30px 0;
    text-decoration: none;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

    .gift-card-purchase:hover {
        background-color: #000;
    }

.wr-testimonial {
    margin-bottom: 30px;
}

    .wr-testimonial h2 {
        margin-bottom: 15px;
    }

    .wr-testimonial p {
        margin-top: 15px;
        margin-bottom: 15px;
    }

.wr-news {
    margin-bottom: 30px;
}

    .wr-news h2 {
        margin-bottom: 15px;
    }

    .wr-news p {
        margin-top: 15px;
        margin-bottom: 15px;
    }

.wr-section-our-menus {
    /*background-image: url('/Resources/Images/sub_bg_1.jpg');/*/
    background-image: none;
}

.wr-row-our-menus-menus {
    flex-flow: row nowrap;
    justify-content: space-evenly;
    gap: 1%;
}

    .wr-row-our-menus-menus > .wr-column {
        flex: 0 1 19%;
    }

@media (min-width: 769px) {
    .wr-row-our-menus-menus > .wr-column {
        min-width: 300px;
    }
}

.wr-our-menus-menu-title {
    font-family: proxima-nova-extra-condensed, sans-serif;
    color: var(--main-blue-color);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.wr-our-menus-menu {
    display: flex;
    min-height: 50px;
    align-items: center;
    font-family: proxima-nova-extra-condensed, sans-serif;
    background-color: var(--main-blue-color);
    color: #fff;
    font-size: 24px;
    line-height: 1em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 20px;
    margin-bottom: 30px;
}

    .wr-our-menus-menu:hover {
        background-color: #000;
    }

@media (max-width: 1800px) {
    .wr-row-our-menus-menus {
        flex-flow: row wrap;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .wr-row-our-menus-menus > .wr-column {
        min-width: unset;
        flex-basis: 32%;
    }

    .wr-our-menus-menu-title {
        font-size: 24px;
    }

    .wr-our-menus-menu-title {
        margin-bottom: 15px;
    }

    .wr-our-menus-menu {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .wr-row-our-menus-menus {
        flex-flow: column nowrap;
        gap: 10px;
    }

        .wr-row-our-menus-menus > .wr-column {
            flex-basis: unset;
        }

    .wr-our-menus-menu-title {
        margin-bottom: 10px;
    }

    .wr-our-menus-menu {
        margin-bottom: 10px;
    }
}

.wr-section-sunday-brunch .wr-our-menus-menu {
    max-width: 250px;
    justify-content: center;
    text-align: center;
}

.wr-section-reservations table {
    margin: 5px 0 30px 0;
}

.wr-opentable-container iframe {
    border: 1px solid #000;
}

.wr-email-list {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    flex-flow: column nowrap;
    text-align: center;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-text-color);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid var(--divider-gray-color);
    margin-bottom: 30px;
}

    .wr-email-list img {
        display: inline-block;
        margin-bottom: 3px;
    }

.wr-fancy-columns {
    display: flex;
    flex-flow: row wrap;
    gap: 2%;
}

.wr-fancy-column {
    flex: 0 1 32%;
    background-color: var(--divider-gray-color);
    margin-bottom: 15px;
}

.wr-fancy-column-stretch {
    flex-grow: 1;
}

.wr-fancy-column img {
    max-width: 100%;
    box-sizing: border-box;
}

.wr-fancy-column-title {
    background-color: var(--main-blue-color);
    color: #fff;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
}

.wr-fancy-column-content {
    padding: 15px;
}

    .wr-fancy-column-content .less-margin {
        margin-top: 5px;
    }

    .wr-fancy-column-content .wr-opentable-container {
        width: 224px;
        margin: 0 auto;
    }

.wr-fancy-column-menus {
    display: flex;
    flex-flow: row wrap;
    gap: 2%;
    justify-content: space-between;
}

.wr-fancy-column-menus .wr-our-menus-menu {
    flex: 0 1 49%;
    box-sizing: border-box;
}

.wr-fancy-columns.wr-fancy-columns-happening-now .wr-fancy-column {
    border: 1px solid var(--main-blue-color);
    box-sizing: border-box;
}

.wr-fancy-columns.wr-fancy-columns-happening-now .wr-fancy-column-content {
    padding: 30px 60px;
}

.wr-fancy-column-weekday-title {
    text-align: center;
}

    .wr-fancy-column-weekday-title > img {
        display: inline-block;
        max-height: 120px;
    }

@media (max-width: 1600px) {
    .wr-fancy-column-menus .wr-our-menus-menu {
        flex: 0 0 100%;
    }
}

@media (max-width: 1200px) {
    .wr-fancy-columns {
        flex-flow: row wrap;
        gap: 2%;
    }
    
    .wr-fancy-column {
        flex: 0 1 48%;
    }
}

@media (max-width: 1024px) {
    .wr-fancy-columns.wr-fancy-columns-happening-now .wr-fancy-column-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .wr-fancy-column {
        flex: 0 0 100%;
    }

    .wr-fancy-columns.wr-fancy-columns-happening-now .wr-fancy-column-content {
        padding: 15px;
    }
}

.wr-photo-gallery {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
}

    .wr-photo-gallery a {
        display: block;
        box-sizing: border-box;
        padding: 10px;
        background-color: transparent;
        transition: background-color linear 0.2s;
        overflow: hidden;
        border-radius: 5px;
    }

        .wr-photo-gallery a:hover {
            background-color: var(--main-blue-color);
        }

    .wr-photo-gallery img {
        display: block;
        width: 100%;
        border: 1px solid #000;
        border-radius: 5px;
    }

@media (max-width: 1024px) {
    .wr-photo-gallery a {
        flex: 0 0 20%;
    }
}

@media (max-width: 768px) {
    .wr-photo-gallery a {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 500px) {
    .wr-photo-gallery a {
        flex: 0 0 50%;
    }
}

#menu-container {
    max-width: 800px;
    margin: 0 auto;
}

/* -- Sliders -- */

.wr-slider {
    position: relative;
    padding: 5px;
    border: 1px solid #000;
}

.wr-slider-images {
    position: relative;
    padding-bottom: 56.25%;
    background-color: #000;
    overflow: hidden;
}

.wr-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*opacity: 1;
    transition: opacity linear 0.5s;*/
    z-index: 40;
}

    .wr-slider-image.active {
        z-index: 45;
    }

    .wr-slider-image.last-active {
        z-index: 46;
    }

.wr-slider-image > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.wr-slider-image-title {
    position: absolute;
    bottom: 5px;
    right: 10px;
    padding: 15px;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 48px;
    line-height: 0.8em;
    font-weight: 700;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    text-align: right;
    box-sizing: border-box;
}

    .wr-slider-image-title > span {
        display: block;
        font-size: 36px;
    }

.wr-slider-nav-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}

.wr-slider-nav-arrow {
    flex: 0 1 112px;
    height: 112px;
    max-height: 65px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border: 0;
    appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 50;
}

.wr-slider-nav-arrow-left {
    background-image: url('/Resources/Images/blue_block_arrow_left.png');
    background-position-x: left;
}

.wr-slider-nav-arrow-right {
    background-image: url('/Resources/Images/blue_block_arrow_right.png');
    background-position-x: right;
}

@media (max-width: 1600px) {
    .wr-slider-image-title {
        font-size: 26px
    }

        .wr-slider-image-title > span {
            font-size: 20px;
        }
}

@media (max-width: 768px) {
    .wr-slider-nav-arrows {
        padding: 15px;
    }

    .wr-slider {
        padding: 5px;
    }
    
    .wr-slider-nav-arrow {
        max-height: 50px;
        max-width: 50px;
    }
}

@media (max-width: 500px) {
    .wr-slider-image-title {
        font-size: 20px
    }

        .wr-slider-image-title > span {
            font-size: 16px;
        }

    .wr-slider-nav-arrow {
        max-height: 30px;
        max-width: 30px;
    }
}

.wr-slider-hero .wr-slider-image-title {
    position: absolute;
    width: 100%;
    bottom: 20px;
    padding: 15px;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 48px;
    line-height: 1em;
    font-weight: 700;
    color: #FFF;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
}

    .wr-slider-hero .wr-slider-image-title > span {
        display: block;
        font-size: 36px;
    }

@media (max-width: 1600px) {
    .wr-slider-hero .wr-slider-image-title {
        font-size: 26px
    }

    .wr-slider-hero .wr-slider-image-title > span {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .wr-slider {
        padding: 5px;
    }
    
    .wr-slider-image {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .wr-slider-image-title,
    .wr-slider-hero .wr-slider-image-title {
        position: relative;
        left: 0;
        bottom: 0;
    }
}

@media (max-width: 500px) {
    .wr-slider-image-title,
    .wr-slider-hero .wr-slider-image-title {
        font-size: 20px;
        text-align: center;
        padding-left: 50px;
        padding-right: 50px;
    }

        .wr-slider-image-title > span,
        .wr-slider-hero .wr-slider-image-title > span {
            font-size: 16px;
        }
}

.wr-content-video {
    position: relative;
    /*padding: 10px;*/
    border: 1px solid #000;
    padding: 5px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1920/1080;
}

#wr-content-video-video {
    display: block;
    width: 100%;
    aspect-ratio: 1920/1080;
}

.wr-content-video iframe {
    height: 100%;
    width: 100%;
}

/* -- Imports from old stylsheet -- */
.tbl_sub {
    color: var(--gray-text-color);
}

.certificate {
    border-collapse: collapse;
    background: #000;
}

    .certificate td {
        border: 3px solid #000;
        padding: 0;
    }

        .certificate td.top {
            background: #003FCE;
            padding-left: 5px;
        }

        .certificate td.bottom {
            display: flex;
            flex-flow: row nowrap;
            justify-content: space-evenly;
            align-items: center;
        }

        .certificate td img {
            max-width: 100%;
        }

.cart_grid {
    margin-bottom: 30px;
}

    .cart_grid table {
        width: 100%;
        color: var(--main-blue-color);
        border: 2px solid var(--main-blue-color);
        text-align: left;
        border-collapse: collapse;
    }

        .cart_grid table th {
            font-family: proxima-nova-extra-condensed, sans-serif;
            background-color: var(--main-blue-color);
            padding: 5px 15px;
            color: #fff;
            font-weight: 700;
            font-size: 28px;
            text-transform: uppercase;
        }

        .cart_grid table td {
            background-color: var(--divider-gray-color);
            padding: 5px 15px;
            border: 2px solid var(--main-blue-color);
        }

    .cart_grid a {
        padding: 3px 0;
        margin: 0 auto;
        background-color: var(--main-blue-color);
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        display: block;
        color: #fff;
    }

        .cart_grid a:hover {
            background-color: #000;
        }

        .cart_grid a.update {
            margin-bottom: 2px;
        }

    .cart_grid p {
        padding-left: 0;
    }

    .cart_grid .btn_checkout {
        float: right;
        width: 200px;
        height: 36px;
        line-height: 30px;
        margin: 10px 0 0 10px;
        padding: 3px 25px;
        background: #007236;
        color: #FFFFFF;
        font-family: proxima-nova-condensed, sans-serif;
        font-size: 24px;
        border: 0;
        border-radius: 0;
        display: block;
        cursor: pointer;
        text-align: center;
        box-sizing: border-box;
        appearance: none;
    }

    .cart_grid .btn_cancel {
        float: right;
        width: 200px;
        height: 36px;
        line-height: 30px;
        margin: 10px 0 0 10px;
        padding: 3px 25px;
        background: #000000;
        color: #FFFFFF;
        font-family: proxima-nova-condensed, sans-serif;
        font-size: 24px;
        border: 0;
        border-radius: 0;
        display: block;
        cursor: pointer;
        text-align: center;
        text-transform: uppercase;
        box-sizing: border-box;
        appearance: none;
    }

@media (max-width: 1024px) {
    .cart_grid table {
        font-size: 16px;
    }

        .cart_grid table th,
        .cart_grid table td {
            padding: 5px 5px;
        }
}

@media (max-width: 500px) {
    .cart_grid table {
        font-size: 12px;
    }

        .cart_grid table th {
            font-size: 14px;
        }

        .cart_grid table td {
            padding: 5px;
        }
}

.promo-code {
    display: flex;
    flex-flow: column;
    font-size: 20px;
    color: #FFF;
    max-width: 500px;
    margin: 15px auto 0 auto;
    position: relative;
    z-index: 99;
}

    .promo-code > div {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        justify-content: center;
    }

    .promo-code input[type=text] {
        width: 150px;
        margin: 0 15px;
        height: 30px;
        line-height: 30px;
        text-align: center;
    }

.promo-code-btn {
    width: 150px;
    height: 36px;
    line-height: 26px;
    border: 2px solid #FFF;
    margin: 0;
    appearance: none;
    background: var(--main-blue-color);
    text-align: center;
    text-decoration: none;
    display: block;
    cursor: pointer;
    padding: 3px 0;
    font-size: 20px;
    color: #FFF;
}

    .promo-code-btn:hover {
        background: #000;
    }

#promo-code-status {
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    margin: 15px 0;
    padding: 15px;
    text-align: center;
}

    #promo-code-status.promo-code-status-green {
        border-color: green;
    }

    #promo-code-status.promo-code-status-red {
        border-color: red;
    }

.wr-checkout-inputs {
    display: flex;
    flex-flow: column nowrap;
}

    .wr-checkout-inputs input,
    .wr-checkout-inputs select,
    .wr-checkout-textarea {
        display: block;
        font-size: 24px;
        border: 1px solid #000;
        margin-bottom: 10px;
    }

        .wr-checkout-inputs input[type=text] {
            padding: 5px 10px;
        }

        .wr-checkout-inputs select {
            padding: 5px 10px;
        }

    .wr-checkout-textarea {
        min-width: 100%;
        min-height: 200px;
        box-sizing: border-box;
    }

    .wr-checkout-inputs > span {
        color: #FF0000;
    }

@media (max-width: 1024px) {
    .wr-checkout-inputs input,
    .wr-checkout-inputs select {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .wr-checkout-inputs input,
    .wr-checkout-inputs select {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    .wr-checkout-inputs input,
    .wr-checkout-inputs select {
        font-size: 18px;
    }
}

.wr-checkout-inputs-expiration-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .wr-checkout-inputs-expiration-row select {
        width: auto;
        margin-bottom: 0;
    }

    .wr-checkout-inputs-expiration-row p {
        margin: 0;
    }

.wr-checkout-inputs-birthday-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .wr-checkout-inputs-birthday-row select {
        width: auto;
        margin-bottom: 0;
    }

    .wr-checkout-inputs-birthday-row p {
        margin: 0;
    }

.checkout_submit {
    width: 200px;
    height: 50px;
    background-color: #007236;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    margin: 15px 0 0 0;
    border: 0;
    cursor: pointer;
}

    .checkout_submit:hover {
        background-color: #000;
    }

.special_events {
    display: flex;
    justify-content: center;
}

    .special_events table {
        flex: 1 1 auto;
        max-width: 1400px;
        font-size: 19px;
        border-spacing: 0;
        border-collapse: collapse;
        border-style: hidden;
    }

        .special_events table h4 {
            color: #fff;
            margin: 0;
            text-shadow: none;
        }

        .special_events table a {
            color: var(--main-blue-color) !important;
            text-decoration: none;
            text-shadow: none !important;
        }

            .special_events table a:hover {
                text-decoration: underline;
            }

        .special_events table tr td {
            background-color: var(--divider-gray-color);
            padding: 3px 15px;
            font-weight: 600;
            color: var(--main-blue-color);
            text-shadow: none;
            border: 2px solid var(--main-blue-color);
        }

        .special_events table td.tbl_header {
            background-color: var(--main-blue-color);
            text-align: center;
        }

        .special_events table td img {
            display: block;
            margin: 0 auto;
            width: 36px;
            max-width: unset;
        }

@media (max-width: 1024px) and (min-width: 769px) {
    .special_events table {
        font-size: 14px;
    }
}

@media (max-width: 768px) and (min-width: 501px) {
    .special_events table {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    .special_events table {
        font-size: 10px;
    }

        .special_events table tr td {
            padding: 3px;
        }
}

.ticket {
    width: 100%;
    max-width: 1100px;
    background: var(--divider-gray-color);
    border: 1px solid var(--main-blue-color);
    color: var(--main-blue-color);
}

    .ticket td {
        padding: 5px 15px;
    }

    .ticket tr:first-of-type {
        font-weight: 700;
        text-transform: uppercase;
    }

    .ticket input[type=text] {
        width: 225px;
        border: 1px solid var(--main-blue-color);
        font-size: 24px;
    }

.btn_continue {
    font-family: proxima-nova-extra-condensed, sans-serif;
    min-width: 225px;
    margin: 0 auto;
    padding: 15px 30px;
    background-color: #007236;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 24px;
    border: 0;
    border-radius: 0;
    display: block;
    cursor: pointer;
    text-align: center;
    appearance: none;
}

    .btn_continue:hover {
        background-color: #000;
    }

@media (max-width: 500px) {
    .ticket {
        font-size: 14px;
    }

        .ticket input[type=text] {
            width: auto;
            font-size: 14px;
        }

    .btn_continue {
        min-width: unset;
        font-size: 22px;
        padding: 5px 30px;
    }
}

#comment_card {
    width: 100%;
    max-width: 1000px;
    border: 1px solid #000;
    padding: 10px;
    margin: 5px 0 30px 0;
    box-sizing: border-box;
}

    #comment_card p {
        padding: 0 0 10px 0;
    }

    #comment_card table {
        margin: 10px 0;
        color: var(--gray-text-color);
    }

        #comment_card table td span {
            color: red;
        }

        #comment_card table.checkbox_grid {
            max-width: 95%;
            border: 1px solid #000;
            border-collapse: collapse;
            margin: 0 auto 15px auto;
        }

            #comment_card table.checkbox_grid td {
                text-align: center;
                border: 1px solid #000;
                padding: 5px;
            }

                #comment_card table.checkbox_grid td.align_left {
                    text-align: left;
                }

            #comment_card table.checkbox_grid table {
                border: none;
                margin: 0 auto;
            }

                #comment_card table.checkbox_grid table td {
                    border: none;
                }

    #comment_card .comments {
        width: 98%;
    }

    #comment_card input[type=submit] {
        display: flex;
        width: 250px;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: proxima-nova-extra-condensed, sans-serif;
        background-color: var(--main-blue-color);
        color: #fff;
        font-size: 24px;
        line-height: 1em;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        padding: 5px 20px;
        margin: 30px 0;
        cursor: pointer;
        appearance: none;
        border-radius: 0;
    }

        #comment_card input[type=submit]:hover {
            background-color: #000;
        }

@media (max-width: 500px) {
    #comment_card table {
        font-size: 14px;
    }
}

#mapviewer {
    width: 100%;
    margin: 5px 0 30px 0;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid var(--main-blue-color);
}

    #mapviewer iframe {
        width: 100%;
        height: 50vh;
    }

/* -- Carryout Page -- */

.carryout_block_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.carryout_block {
    flex: 1 0 calc(50% - 30px);
    margin: 15px;
    background-color: var(--divider-gray-color);
}

    .carryout_block:last-of-type {
        align-self: flex-start;
    }

    .carryout_block h1 {
        font-size: 34px;
        font-weight: 700;
        margin: 25px 15px 5px 15px;
        padding: 0;
        color: var(--main-blue-color);
    }

        .carryout_block h1.align_middle {
            display: flex;
            align-items: center;
            flex-direction: row;
        }

        .carryout_block h1 > span {
            font-size: 26px;
        }

            .carryout_block h1 > span a {
                color: var(--main-blue-color) !important;
            }

        .carryout_block h1 > a {
            color: var(--main-blue-color);
        }

    .carryout_block p > a:not(.gold_button) {
        color: var(--main-blue-color) !important;
    }

    .carryout_block h1:first-of-type {
        margin-top: 10px;
        margin-bottom: 0;
    }

    .carryout_block h1.no_margin_top {
        margin-top: 10px;
    }

    .carryout_block p {
        font-size: 28px;
        margin: 10px 15px;
        padding: 0;
        color: var(--main-blue-color);
    }

    .carryout_block ol {
        font-size: 28px;
        margin: 10px 15px;
        /*padding: 0 30px;*/
        color: var(--main-blue-color);
    }

    .carryout_block table {
        font-size: 28px;
        margin: 10px 15px;
        /*padding: 0 30px;*/
        color: var(--main-blue-color);
    }

        .carryout_block table td {
            vertical-align: top;
        }

    .carryout_block .carryout_block_header {
        height: 65px;
        line-height: 65px;
        padding: 0 15px;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        background-color: var(--main-blue-color);
        text-align: center;
        font-family: proxima-nova-extra-condensed, sans-serif;
        text-transform: uppercase;
    }

    .carryout_block .row {
        display: flex;
        flex-direction: row;
    }

        .carryout_block .row .column {
            flex-basis: 50%;
            /*display: flex;*/
            /*align-self: flex-start;*/
            padding: 15px;
        }

    .carryout_block div.coming_soon {
        font-size: 48px;
        font-weight: 700;
        color: #FFF;
        text-transform: uppercase;
        margin: 50px auto;
    }

    .carryout_block .row .column.column_vertical_center {
        /*align-self: center;*/
    }

    .carryout_block .row.row_carryout .column {
        padding-top: 0;
    }

        .carryout_block .row.row_carryout .column:first-of-type {
            display: flex;
            flex-direction: column;
            flex-basis: 50%;
        }

        .carryout_block .row.row_carryout .column:last-of-type {
            flex-basis: 50%;
        }

        .carryout_block .row.row_carryout .column:first-of-type > div {
            flex-grow: 0;
        }

            .carryout_block .row.row_carryout .column:first-of-type > div:last-of-type {
                align-self: center;
                flex-grow: 1;
                display: flex;
                align-items: center;
            }

    .carryout_block .row .column p,
    .carryout_block .row .column h1 {
        margin-left: 0;
    }

        .carryout_block .row .column p:first-of-type {
            margin-top: 0;
        }

        .carryout_block .row .column h1:first-of-type {
            margin-top: 0;
        }

    .carryout_block .row .column img {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        border: solid 1px var(--main-blue-color);
    }

.gold_button {
    display: inline-block;
    padding: 5px 25px;
    color: #fff !important;
    text-shadow: none;
    font-family: proxima-nova-extra-condensed, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--main-blue-color);
    margin: 15px;
    text-decoration: none;
    text-align: center;
    border: 1px solid #000;
}

    .gold_button:hover {
        background-color: #000;
    }

    .gold_button.more_space {
        margin: 40px auto;
    }

    .gold_button.small {
        font-size: 24px;
        padding: 5px 15px;
        margin: 0 10px;
    }

@media screen and (max-width: 1900px) {
    .carryout_block .carryout_block_header {
        font-size: 26px;
    }

    .carryout_block h1 {
        font-size: 26px;
    }

        .carryout_block h1 > span {
            font-size: 20px;
        }

    .carryout_block p {
        font-size: 20px;
    }

    .carryout_block table {
        font-size: 20px;
    }

    .carryout_block ol {
        font-size: 20px;
        /*padding-left: 25px;*/
    }

    .gold_button {
        font-size: 26px;
    }

    .carryout_block div.coming_soon {
        font-size: 34px;
    }
}

@media screen and (max-width: 1600px) {
    .carryout_block .carryout_block_header {
        font-size: 20px;
    }

    .carryout_block h1 {
        font-size: 20px;
    }

        .carryout_block h1 > span {
            font-size: 16px;
        }

    .carryout_block p {
        font-size: 16px;
    }

    .carryout_block table {
        font-size: 16px;
    }

    .carryout_block ol {
        font-size: 16px;
        /*padding-left: 20px;*/
    }

    .gold_button {
        font-size: 20px;
    }

        .gold_button.small {
            font-size: 12px;
        }

    .carryout_block div.coming_soon {
        font-size: 26px;
    }
}

@media screen and (max-width: 1200px) {
    .carryout_block_container {
        flex-direction: column;
    }

    .carryout_block {
        flex-basis: 100%;
    }

        .carryout_block .carryout_block_header {
            font-size: 26px;
        }

        .carryout_block h1 {
            font-size: 26px;
        }

            .carryout_block h1 > span {
                font-size: 20px;
            }

        .carryout_block p {
            font-size: 20px;
        }

        .carryout_block table {
            font-size: 20px;
        }

        .carryout_block ol {
            font-size: 20px;
        }

    .gold_button {
        font-size: 26px;
    }

    .carryout_block div.coming_soon {
        font-size: 34px;
    }
}

@media screen and (max-width: 767px) {
    .carryout_block {
        margin: 5px;
    }

        .carryout_block .row {
            flex-direction: column;
        }

            .carryout_block .row .column {
                flex-basis: 100%;
                padding: 0 15px;
            }

        .carryout_block .carryout_block_header {
            font-size: 16px;
            height: auto;
            line-height: unset;
            padding: 15px;
        }

        .carryout_block h1 {
            font-size: 16px;
            margin: 25px 15px 15px 15px;
        }

            .carryout_block h1 > span {
                font-size: 12px;
            }

        .carryout_block .row .column h1:first-of-type {
            margin-top: 15px;
        }

        .carryout_block h1:first-of-type {
            margin-bottom: 5px;
        }

        .carryout_block p {
            font-size: 12px;
        }

        .carryout_block table {
            font-size: 12px;
        }

        .carryout_block ol {
            font-size: 12px;
            /*padding-left: 15px;*/
        }

    .gold_button {
        font-size: 16px;
    }

    .carryout_block div.coming_soon {
        font-size: 18px;
        margin: 45px auto;
    }
}

.family_meals_title {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    line-height: 60px;
}

    .family_meals_title h1 {
        margin: 0;
        padding: 0;
    }

    .family_meals_title .view_cart {
        display: block;
        height: 100%;
        padding-right: 60px;
        background: url('/Resources/Images/shopping-cart.png') 85% center no-repeat;
        background-size: auto 50%;
        text-transform: uppercase;
        font-size: 24px;
        font-weight: 600;
        text-decoration: none;
        color: var(--main-blue-color);
    }

        .family_meals_title .view_cart:hover {
            text-decoration: underline;
        }

        .family_meals_title .view_cart:visited {
            color: var(--main-blue-color);
        }

.family_meals_empty {
    width: 84%;
    margin: 40px auto;
    text-align: center;
}

    .family_meals_empty h1 {
        margin: 0;
        padding: 0;
    }

.meal {
    display: flex;
    flex-direction: row;
    color: #FFF;
    padding: 20px;
    margin: 0 0 30px 0;
    background-color: var(--divider-gray-color);
    border: 1px solid var(--main-blue-color);
}

    .meal .column {
        flex-basis: 75%;
        overflow: hidden;
    }

        .meal .column:first-of-type {
            flex-basis: 25%;
        }

        .meal .column img {
            width: 100%;
            box-sizing: border-box;
            padding: 10px;
            border: 1px solid var(--main-blue-color);
        }

    .meal .title {
        font-size: 36px;
        margin: 0 15px 15px 15px;
        font-weight: 700;
        color: var(--main-blue-color);
    }

    .meal .description {
        font-size: 24px;
        margin: 0 15px 15px 15px;
    }

        .meal .description p {
            padding: 0;
            margin: 15px 0;
            font-size: 24px;
        }

    .meal .purchase {
        display: inline-block;
        min-width: 250px;
        font-size: 30px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 5px 15px;
        border: 1px solid #000;
        background-color: #007236;
        margin: 0 15px;
        text-decoration: none;
        text-align: center;
        color: #fff;
    }

        .meal .purchase:hover {
            background-color: #000;
        }

        .meal select {
            font-size: 24px;
            margin: 0 15px 15px 15px;
            max-width: 93%;
            box-sizing: border-box;
        }

    .meal .quantity_select {
        width: 50px;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;
        border: 1px solid #000;
        margin: 0 15px;
    }

    .meal .options {
    }

        .meal .options p {
            font-size: 24px;
            margin: 0 15px 15px 15px;
            padding: 0;
        }

.product_details {
    color: var(--gray-text-color);
    margin: 0 auto 30px auto;
    max-width: 1200px;
    width: 100%;
}

    .product_details .image img {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        border: 1px solid var(--main-blue-color);
    }

    .product_details textarea {
        max-width: 100%;
        box-sizing: border-box;
    }

.info {
    display: flex;
    flex-direction: row;
    margin: 15px 0;
}

    .info .column {
        flex-basis: 50%;
    }

        .info .column:first-of-type {
            flex-basis: 50%;
        }

    .info .title {
        font-size: 32px;
        margin: 0 15px 15px 15px;
    }

    .info .description {
        font-size: 24px;
        margin: 0 15px 15px 15px;
    }

    .info select {
        font-size: 24px;
        margin: 0 15px 15px 15px;
    }

    .info .options {
    }

        .info .options p {
            font-size: 24px;
            margin: 0 15px 15px 15px;
            padding: 0;
        }

    .info .purchase {
        display: inline-block;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;
        border: 1px solid #000;
        background: #007236;
        margin: 0 15px;
        text-decoration: none;
        color: #fff;
    }

    .info .go_back {
        display: inline-block;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;
        border: 1px solid #000;
        background: #000;
        margin: 0 15px;
        text-decoration: none;
        color: #fff;
    }

    .info .quantity_select {
        width: 50px;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;
        border: 1px solid #000;
        margin: 0 15px;
    }

.meals_cart {
    /*position: relative;
    z-index: 50;
    color: #FFF;*/
}

.meals_cart_product_info div {
    margin: 15px 0;
    font-size: 18px;
}

/*.meals_cart_product_info div:first-of-type {
        font-weight: bold;
    }*/

.meals_cart_product_info .product_title {
    font-weight: bold;
    font-size: 18px;
}

    .meals_cart_product_info .product_title a.cart_remove {
        display: inline-block;
        width: auto;
        padding: 3px 5px;
    }

    .meals_cart_product_info .product_title span {
        font-weight: normal;
        font-size: 18px;
    }

.meals_cart_product_info .input_quantity {
    width: 40px;
    padding: 5px;
    font-size: 18px;
}

.meals_cart_product_info .addOns div {
    margin: 5px 0;
}

.cart_grid .subTotal {
    font-size: 22px;
    font-weight: bold;
}

.quantity_column {
    text-align: center;
}

    .quantity_column .input_quantity {
        margin: 10px 0;
        padding: 5px;
        font-size: 18px;
        width: 50px;
    }

.cart_button_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

    .cart_button_container .proceed {
        display: block;
        width: 300px;
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;
        border: 1px solid #000;
        background: #007236;
        text-decoration: none;
        margin: 15px;
        z-index: 999;
        color: #fff;
    }

    .cart_button_container .go_back {
        display: block;
        width: 300px;
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;
        border: 1px solid #000;
        background: #000;
        text-decoration: none;
        margin: 15px;
        z-index: 999;
        color: #fff;
    }

.gratuity {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
}

    .gratuity .gratuity_input {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
    }

    .gratuity a {
        display: block;
        width: 80px;
        margin: 0 10px;
        padding: 5px;
        background: #000;
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
    }

    .gratuity input {
        margin: 10px;
        padding: 5px;
        font-size: 18px;
        width: 100px;
    }

.checkout_col .checkout_submit {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.cart_grid .meals_cart_checkout_buttons input,
.cart_grid .meals_cart_checkout_buttons a {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.info .options p.price {
    font-weight: bold;
    font-size: 28px;
    color: var(--main-blue-color);
}

@media screen and (max-width: 1100px) {
    .gratuity {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .gratuity {
        flex-direction: column;
    }

        .gratuity a {
            margin: 10px;
            padding: 5px 20px;
        }
}

.cart_grid a.addOn_btn {
    display: inline-block;
    width: auto;
    padding: 3px 5px;
}

.meals_cart_checkout_info {
}

    .meals_cart_checkout_info h1 {
        text-align: right;
        padding: 0;
        margin-bottom: 0;
    }

.meals_cart_checkout_buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.cart_grid .meals_cart_checkout_buttons .btn_checkout,
.cart_grid .meals_cart_checkout_buttons .btn_cancel {
    float: none;
}

.meals_cart_grid .checkout_col input,
.meals_cart_grid .checkout_col textarea {
    width: 98%;
}

@media screen and (max-width: 768px) {
    .cart_grid.meals_cart_grid {
        width: 95%;
    }

        .cart_grid.meals_cart_grid .grdCart > tbody > tr > th:first-of-type,
        .cart_grid.meals_cart_grid .grdCart > tbody > tr > td:first-of-type {
            display: none;
        }

    /*.cart_grid.meals_cart_grid .grdCart > tbody > tr:last-of-type > td {
            display: table-cell;
        }*/

    .meals_cart_product_info textarea {
        width: 200px;
    }

    .meals_cart_product_info .product_title {
        font-size: 14px;
    }

        .meals_cart_product_info .product_title span {
            font-size: 10px;
        }

    .cart_grid.meals_cart_grid table {
        font-size: 10px;
    }

    .meals_cart_checkout_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

        .meals_cart_checkout_info h1 {
            text-align: center;
            margin: 20px 0;
            font-size: 28px;
        }

    .meals_cart_checkout_buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cart_grid .meals_cart_checkout_buttons input,
    .cart_grid .meals_cart_checkout_buttons a {
        float: none;
        display: block;
        width: 250px;
        height: auto;
        margin: 10px auto;
        padding: 10px 0;
        line-height: unset;
    }

    .checkout_col {
        float: none;
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }

        .checkout_col .checkout_submit {
            display: block;
            margin: 15px auto;
        }

    .info {
        flex-direction: column;
        margin: 0 10px 0 10px;
    }

        .info .column {
            flex-basis: 100%;
        }

        .info .description {
            font-size: 18px;
            margin-left: 0;
            margin-right: 0;
        }

        .info .purchase,
        .info .go_back {
            display: block;
            text-align: center;
            margin: 15px 0;
        }

    .family_meals_title {
        margin-top: 20px;
        margin-bottom: 20px;
        flex-direction: column;
        justify-content: center;
    }

        .family_meals_title h1 {
            font-size: 24px;
        }

        .family_meals_title .view_cart {
            margin-left: 20px;
            font-size: 16px;
            height: 30px;
            line-height: 30px;
            padding-right: 50px;
        }

    .meal {
        margin: 15px 0;
        flex-direction: column;
        padding: 10px;
    }

        .meal .title {
            font-size: 24px;
            margin-left: 0;
            margin-right: 0;
        }

    .hide_on_mobile {
        display: none;
    }

    .info .options p {
        font-size: 18px;
        margin-left: 0;
        margin-right: 0;
    }

    .meal .description {
        margin-left: 0;
        margin-right: 0;
    }

    .meal .purchase {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 500px) {
    .meal .title {
        font-size: 18px;
    }

    .meal .description p {
        font-size: 18px;
    }

    .meal .purchase {
        font-size: 22px;
        min-width: unset;
        width: 100%;
        box-sizing: border-box;
    }

    .meals_cart_product_info .input_quantity {
        font-size: 12px;
    }
}

.meals_cart_checkout_info {
}

    .meals_cart_checkout_info h1 {
        text-align: right;
        padding: 0;
    }

.meals_cart_checkout_buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.cart_grid .meals_cart_checkout_buttons .btn_checkout,
.cart_grid .meals_cart_checkout_buttons .btn_cancel {
    float: none;
    font-family: proxima-nova-condensed, sans-serif;
    font-size: 24px;
    width: auto;
    min-width: 200px;
    height: 36px;
    padding: 3px 25px;
}

@media (max-width: 1024px) {
    .cart_grid .meals_cart_checkout_buttons .btn_checkout,
    .cart_grid .meals_cart_checkout_buttons .btn_cancel {
        width: 250px;
        height: auto;
    }
}

.meals_cart_grid .checkout_col input,
.meals_cart_grid .checkout_col textarea {
    width: 98%;
}



.checkout_col {
    float: left;
    position: relative;
    width: 30%;
    padding: 1% 2.3828125% 0 8%;
    z-index: 50;
    color: #FFFFFF;
    margin-bottom: 30px;
}

    .checkout_col input[type=text] {
        display: block;
        width: 100%;
        height: 25px;
        margin: 0 0 5px 0;
        box-sizing: border-box;
    }

    .checkout_col select {
        /*width: 100%;*/
        height: 25px;
        margin: 0 0 5px 0;
        box-sizing: border-box;
    }

    .checkout_col textarea {
        display: block;
        width: 100%;
        height: 200px;
        margin: 0 0 5px 0;
        box-sizing: border-box;
    }

    .checkout_col h1 {
        padding: 20px 0 10px 0;
    }

    .checkout_col h2 {
        padding: 20px 0 10px 0;
    }

    .checkout_col p {
        padding: 0 0 15px 0;
    }

    .checkout_col table {
        color: #FFFFFF;
    }

    .checkout_col .checkout_submit {
        width: 200px;
        height: 50px;
        background-color: #007236;
        font-weight: bold;
        color: #FFFFFF;
        text-align: center;
        margin: 20px 0 0 0;
        border: 0;
        cursor: pointer;
    }

@media (max-width: 1024px) {
    .cart_grid.meals_cart_grid {
        width: 100%;
    }

        .cart_grid.meals_cart_grid .grdCart > tbody > tr > th:first-of-type,
        .cart_grid.meals_cart_grid .grdCart > tbody > tr > td:first-of-type {
            display: none;
        }

    /*.cart_grid.meals_cart_grid .grdCart > tbody > tr:last-of-type > td {
            display: table-cell;
        }*/

    .meals_cart_product_info textarea {
        width: 200px;
    }

    .meals_cart_product_info .product_title {
        font-size: 14px;
    }

        .meals_cart_product_info .product_title span {
            font-size: 10px;
        }

    .cart_grid.meals_cart_grid table {
        font-size: 10px;
    }

    .meals_cart_checkout_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

        .meals_cart_checkout_info h1 {
            text-align: center;
            margin: 20px 0;
            font-size: 28px;
        }

    .meals_cart_checkout_buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cart_grid .meals_cart_checkout_buttons input,
    .cart_grid .meals_cart_checkout_buttons a {
        float: none;
        display: block;
        width: 250px;
        height: auto;
        margin: 10px auto;
        padding: 10px 0;
        line-height: unset;
    }

    .checkout_col {
        float: none;
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }

        .checkout_col .checkout_submit {
            display: block;
            margin: 15px auto;
        }
}

@media (max-width: 500px) {
    .meals_cart_product_info textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

.g-recaptcha {
    overflow: hidden;
}

/* -- Mobile vertical fit tweaks -- */

@media (max-width: 768px) and (orientation: portrait) {
    .wr-header-top {
        height: 8vh;
        height: calc(var(--vh, 1vh) * 8);
        box-sizing: border-box;
    }

    .wr-header-main {
        height: 19vh;
        height: calc(var(--vh, 1vh) * 19);
        box-sizing: border-box;
    }

    .wr-header-bottom {
        height: 2vh;
        height: calc(var(--vh, 1vh) * 2);
        min-height: unset;
        box-sizing: border-box;
    }

    .wr-slider-hero {
        margin-top: 1vh;
        margin-top: calc(var(--vh, 1vh) * 1);
        box-sizing: border-box;
        height: 20vh;
        height: calc(var(--vh, 1vh) * 20);
    }

    .wr-slider-hero .wr-slider-images {
        padding-bottom: unset;
        height: 100%;
    }

    .wr-section-hero > .wr-row {
        gap: 1vh;
        gap: calc(var(--vh, 1vh) * 1);
    }

    .wr-banners {
        box-sizing: border-box;
        gap: 1vh;
        gap: calc(var(--vh, 1vh) * 1);
    }

    .wr-banners-row {
        margin-bottom: 0;
        gap: 1vh;
        gap: calc(var(--vh, 1vh) * 1);
        height: 19vh;
        height: calc(var(--vh, 1vh) * 19);
    }

    .wr-banners a > img {
        height: 100%;
    }

    .wr-hero-buttons {
        margin-top: 1vh;
        margin-bottom: 1vh;
        margin-top: calc(var(--vh, 1vh) * 1);
        margin-bottom: calc(var(--vh, 1vh) * 1);
        margin-left: 0;
        margin-right: 0;
        height: 7vh;
        height: calc(var(--vh, 1vh) * 7);
        align-items: center;
    }

    .wr-hero-buttons a {
        padding: 0.5vh 0;
        padding-left: 0.5vh;
        padding-right: 0.4vh;
        padding-left: calc(var(--vh, 1vh) * 0.5);
        padding-right: calc(var(--vh, 1vh) * 0.5);
        padding-top: 0;
        padding-bottom: 0;
    }
}

.test {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    border: 5px solid red;
    box-sizing: border-box;
    display: none;
}

.wr-contact-form {
    display: flex;
    flex-flow: column nowrap;
    max-width: 300px;
    margin: 0 auto;
    gap: 10px;
    padding: 15px 7px 15px 15px;
    align-items: center;
    background-color: var(--divider-gray-color);
}

.wr-contact-form-standalone {
    margin: 2em auto 0 auto;
}

.wr-contact-form-send-us-a-message {
    margin: 0 0 30px 0;
    border: 1px solid #000;
}

.wr-contact-form-field {
    display: grid;
    grid-template-columns: 130px auto;
    column-gap: 5px;
    row-gap: 5px;
    width: 100%;
}

.wr-contact-form-field-vertical {
    grid-template-columns: auto;
}

.wr-contact-form-field-label {
    text-align: left;
}

.wr-contact-form-field-input {
}

    .wr-contact-form-field-input > input[type=text],
    .wr-contact-form-field-input > input[type=tel],
    .wr-contact-form-field-input > input[type=date],
    .wr-contact-form-field-input > input[type=number] {
        width: 150px;
        appearance: none;
        border: 0;
        padding: 2px 3px;
    }

    .wr-contact-form-field-input > textarea {
        width: calc(100% - 15px);
    }

.wr-contact-form-submit {
    display: block;
    width: 200px;
    height: 50px;
    background-color: var(--main-blue-color);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 15px 8px 15px 0;
    cursor: pointer;
}

    .wr-contact-form-submit:hover {
        background-color: #000;
        color: #fff;
    }