@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 0 1em;
    margin: 0;
}

.column3 {
    float: left;
    width: 33%;
    padding: 0 1em;
    margin: 0;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.single {
    margin: 0 auto; /* FIXED: Added missing colon */
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
    .column3 {
        width: 100%;
    }
}

body {
    background: rgb(255, 255, 255);
    /* FIXED: Removed quotes from "sans-serif" (generic families should not be quoted) */
    font-family: Calibri, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
}

a {
    color: #5d5d5d!important;
}

p {
    color: #5d5d5d;
    text-align: center;
    text-transform: capitalize;
    margin-top: 0;
}

p .listMenu {
    line-height: 2.0em; /* FIXED: Changed from 20em (320px) to 2.0em */
}

p .dish {
    font-weight: normal;
}

b .dish {
    font-weight: bold!important;
}

strong {
    color: #00012b;
}

h1 {
    font-size: 1.7em;
    font-weight: 600;
}

.menuName {
    color: #fff!important;
    background-color: rgb(0, 0, 0)!important;
    padding: .5em;
}

h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #00012b;
    margin-top: 0;
}

h4 {
    font-size: 1.2em;
    font-weight: normal;
    color: #00012b;
    text-decoration: underline;
    margin-block-end: .5em;
}

.pageContainer {
    text-align: center;
    width: 100%;
    max-width: 100%;
    border-style: none;
}

.menuContainer {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
}

.menuHeader {
    font-size: 1em;
    font-weight: 100;
    text-align: left;
    border-bottom: 1px solid rgb(209, 209, 209);
}

h3 .featuredHeader {
    font-size: 2em;
    font-weight: 600;
    color: #00012b;
    font-style: italic;
}

.propertyName {
    text-align: center;
}

.propertyLogo {
    padding: 1em;
    text-align: center;
}

.venueName {
    text-decoration: none;
    border-bottom: 2px solid rgb(55, 58, 229);
    font-weight: 600;
    color: rgb(55, 58, 229);
}

.menuSecondary {
    color: #5d5d5d;
    padding-left: 1.5em;
    text-decoration: none;
}

hr {
    border: none;
    border-top: 1px solid rgb(209, 209, 209); /* FIXED: Added "solid" */
    height: 1px;
    margin: 0 auto;
    margin-top: 2em!important;
    color: rgb(209, 209, 209);
    background-color: rgb(209, 209, 209);
}

/* NOTE: This selector won't work in HTML because <hr> cannot have children */
hr .highlight {
    margin: 0 auto;
    width: 70%;
}

.course {
    width: 50%;
    border: none;
    border-top: 1px solid rgb(209, 209, 209); /* FIXED: Added "solid" */
    height: 1px;
    margin: 0 auto;
    margin-top: 2em!important;
    margin-bottom: 2em!important;
    color: rgb(209, 209, 209);
    background-color: rgb(209, 209, 209);
}

.featuredMenu {
    position: relative;
    border-radius: 8px;
    box-shadow: rgba(177, 150, 97, 0.2) 0px 2px 16px 0px;
    background-color: rgb(250, 249, 245);
    border-color: #00012b;
    padding: 1em;
    margin: 1em;
    margin-top: 2em;
}

.highlightMenu {
    position: relative;
    display: block;
    border: 1px solid;
    border-color: #00012b;
    padding: 1em 1em 0 1em;
    margin: 1em;
}

.backToTop {
    margin-top: .5em;
    text-align: right;
    font-size: .85em;
    text-decoration: none;
    color: #5d5d5d;
}

.disclaimer {
    margin: 2em 0 2em 0;
    font-size: .8em!important;
    font-style: italic!important;
}