:root {
    --cg-beige: #ded4c6;
    --cg-black: #000;
    --cg-gold: #86714d;
    --cg-charcoal: #282728;
    --cg-olive-green: #605123;
    --cg-off-white: #efede9;
    --cg-ivory: #f6f3ef;
    --cg-warm-ivory: #f0ece6;
    --cg-creme: #f6f4e0;
    --cg-light-gold: #b09c79;
    --cg-brass: #b49400;
    --cg-copper-bras: #a96f3e;
    --cg-dark-brown: #605137;
    --cg-crimson: #700000;
    --cg-bordo-red: #812f36;
    --cg-tan: #8e774d;
    --cg-white: #ffffff;
    --cg-font-size: 1rem;
    --cg-font-family-body: 'Lato', sans-serif;
    --cg-font-family-heading: 'Sorts-Mill-Goudy', serif;




}

body,
html {
    padding: 0;
    margin: 0;

}


body {
    color: var(--cg-charcoal, #282728);
    font-size: var(--cg-font-size, 1rem);
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;

}

.fixed-bottom {
    position: fixed !important;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
}


.sticky-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
}

.scroll-lock,
.no-scroll {
    overflow-y: hidden !important;
}


/* FONT WEDIGHT CLASSES  */
.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-semi-bold {
    font-weight: 600 !important;
}

/* Keep footer always at the bottom */
/* .header,
   .footer {
    flex-grow: 0;
    flex-shrink: 0;
   }
   
   main {
    flex-grow: 1;
   } */

/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;

}


ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}



* {
    outline: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

button,
a {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

button:focus,
a:focus {
    outline: none !important;
}

input,
select {
    box-shadow: none;
}

input:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}



.drawer-container {
    display: none;
}

/* Global Styles */
.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

img {
    max-width: 100%;
    height: auto;
}

a:not(.btn),
a:not(.btn):visited {
    color: var(--cg-gold, #86714d);
}

a:not(.btn):hover {
    color: var(--cg-dark-brown, #605137);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.btn {

    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    /*letter-spacing: .08em;*/
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-image: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.btn-gradient {
    background: -moz-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%);
    background: linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    color: #FFF;
}

.btn-gradient:hover,
.btn-gradient:focus {
    background: -moz-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%);
    background: linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    color: #FFF;
}

.btn-box-shadow {
    box-shadow: 0px 3px 8px 0px rgb(66, 34, 3, 0.23) !important;
}

.btn-box-dk-shadow {
    box-shadow: 0px 5px 8px 0px rgb(66, 34, 3, 0.63) !important;
}

.text-black {
    color: #000 !important;
}

.text-charcoal {
    color: #282728 !important;
}

.text-olive-green {
    color: #605123 !important;
}

.text-off-white {
    color: #efede9 !important
}

.text-ivory {
    color: #f6f3ef !important;
}

.text-warm-ivory {
    color: #f0ece6 !important;
}

.text-gold {
    color: #86714d !important;
}

.text-light-gold {
    color: #b09c79 !important;
}

.text-dark-brown {
    color: #605137 !important;
}

.text-error {
    color: #700000 !important;
}

.bg-beige {
    background-color: #ded4c6 !important;
}

.bg-gold {
    background-color: #86714d !important;
}

.bg-light-gold {
    background-color: #b09c79 !important;
}

.bg-tan {
    background-color: #8e774d !important;
}

.bg-ivory {
    background-color: #f6f3ef !important;
}

.bg-warm-ivory {
    background-color: #f0ece6 !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-charcoal {
    background-color: #282728 !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-off-white {
    background-color: #efede9 !important;
}

.bg-light-gray-gradient {
    background: -moz-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    background: -webkit-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    background: -ms-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%);
    background: linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
}

.bg-image-none {
    background-image: none !important;
}

.drop-shadow--gold {
    filter: drop-shadow(2px 3px 3px var(--brand-gold, #86714d));
}



.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #FFF;
}

.border-bottom {
    border-bottom: 1px solid #fff;
}

.border-right {
    border-right: 1px solid #FFF;
}

.border-left {
    border-left: 1px solid #FFF;
}

.border-accent {
    border-width: 0.05rem !important;
}

.border-solid {
    border-style: solid !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-beige {
    border-color: #ded4c6 !important;
}

.border-gold {
    border-color: #86714d !important;
}

.border-white {
    border-color: #FFF !important;
}

.global-alert .alert-wrap {
    min-height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #784c0d;
    text-transform: uppercase;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
}

.global-alert .global-message,
#globalMessage {
    font-size: 0.935rem;
    line-height: 1.2rem;
    text-align: center;
    color: #86714d;
}

.global-alert .global-message {
    color: #86714d;
    /* transition: color 0.3s ease-in-out; */
}

.global-alert .global-message a:hover {
    color: #605137;
}

.global-alert .global-alert-menu a {
    font-size: 0.75rem;
    line-height: 1.5;
    font-family: 'Lato', "lato", sans-serif !important;
}

.global-alert .global-alert-link a {
    color: #86714d;
    letter-spacing: 0.05rem;
    font-size: 0.75rem;
}


.js-dropdown-box {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: none;
}

.js-dropdown-box.open {
    visibility: visible;
    opacity: 1;
    display: block;
}

.js-droplink:before {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.js-droplink.open:before {
    transform: rotate(180deg);
}

#ui-datepicker-div {
    background-color: #f0ece6;
    border: 1px solid #ded4c6;
    width: 20rem;
    padding: 1rem 0;
    position: fixed;
    z-index: 5 !important;
    font-family: var(--cg-font-family-body, "Lato");
}

#ui-datepicker-div .ui-datepicker-close {
    display: none !important;
}

#ui-datepicker-div .ui-state-disabled {
    opacity: 0.4;
    pointer-events: none;
}

#ui-datepicker-div .ui-datepicker-header {
    position: relative;
    padding: 0 1rem;
}

#ui-datepicker-div .ui-datepicker-header h3 {
    display: none !important;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    float: none;
    padding: 0;
    background-image: none;
    background: none;
    text-indent: -9999px;
    line-height: 0;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev span,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next span {
    display: none;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #784c0d;
    left: 1.5rem;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #86714d;
    right: 1.5rem;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
    text-align: center;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #86714d;
    text-transform: capitalize;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title span {
    font-size: 1.4rem;
    line-height: 1.8rem;
}

#ui-datepicker-div .ui-datepicker-calendar {
    width: 100%;
    text-align: center;
    margin: 0;
}

#ui-datepicker-div .ui-datepicker-calendar thead {
    background-color: transparent;
}

#ui-datepicker-div .ui-datepicker-calendar thead th {
    background-color: #8e774d;
    color: #efede9;
    padding: 0.3rem 0;
    width: auto;
    height: auto;
    font-size: 1.4rem;
    border: none;
    font-weight: initial;
}

#ui-datepicker-div .ui-datepicker-calendar tbody td {
    padding: 0.3rem 0;
    border: none;
    font-size: 1rem;
}

#ui-datepicker-div .ui-datepicker-calendar tbody td span,
#ui-datepicker-div .ui-datepicker-calendar tbody td a {
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    border: none;
    background: transparent !important;
    color: #784c0d;
    width: auto;
    height: auto;
    line-height: 1.6rem;
    font-weight: initial;
}

#ui-datepicker-div .ui-datepicker-calendar tbody td a.ui-state-active {
    color: #141414;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
}

#ui-datepicker-div .ui-datepicker-buttonpane {
    display: none !important;
}


#success-modal {
    position: fixed;
    border: 1px solid #86714d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 36rem;
    background: #ffffff;
    padding: 1.5rem;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    text-align: center;
    box-shadow: 0px 0px 5px #e2e2e2;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#success-modal img {
    max-width: 16rem;
    margin: 0 auto;
    display: none;
}

#success-modal h1 {
    font-size: 2rem;
    line-height: 1.5;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    color: #86714d;
    margin: 1rem 0 0.5rem;
    text-transform: uppercase;

}

#success-modal h2 {
    font-size: 1.4rem;
    line-height: 1.5;

    text-align: center;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
}

#success-modal h2:first-child {
    color: #282728;
    font-size: 1.25rem;
}

#success-modal h2:nth-child(2) {
    font-size: 1.5rem;
    color: #86714d;
}

#success-modal h2:first-of-type {
    line-height: 2rem;
    margin: 1rem 0;
}

#success-modal .success-info h2 {
    font-size: 1.25rem;
    color: #86714d;
}

#success-modal p {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #282728;
    font-family: 'Lato', "lato", sans-serif !important;
}

#success-modal #success-location-name,
#success-modal #success-location-details {
    text-align: center;
}

#success-modal .success-info {
    display: inline-block;
    text-align: center;
    margin-bottom: 1.2rem;
    width: 33.33%;
}

#success-modal #success-edit,
#success-modal #success-cancel {
    margin: 0.5rem 0.3rem;
    display: inline-block;
}

#success-modal #success-edit button,
#success-modal #success-cancel button,
.modal#locEmail .modalbox form .primary-btn {
    font-size: 1.5rem;
    line-height: 1.3;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    box-shadow: 0px 3px 8px 0 rgba(66, 34, 3, 0.23);

    transition: all 0.3s ease-in-out;
    border-radius: 0;
    background: -moz-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%);
    background: linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    color: #FFF;
    background-image: none;
    border: 0;


}

#success-modal #success-edit button:hover,
#success-modal #success-cancel button:hover,
.modal#locEmail .modalbox form .primary-btn:hover,
.modal#locEmail .modalbox form .primary-btn:focus {
    background: -moz-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%);
    background: linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    color: #FFF;
    background-image: none;
    border: 0;
}

#success-modal #success-edit,
#success-modal #success-cancel {
    margin: 1rem;
    display: block;
}

/* #success-modal #success-edit button:hover,
   #success-modal #success-cancel button:hover {
    background-color: #76552C;
    background-image: none;
    border-color: #76552C;
    color: #ffffff;
   } */

#success-modal .success-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
    top: 0;
    left: 0;
}

#success-modal .success-bg .conf-confirm {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    padding: 1.8rem;

    background-color: rgb(246, 243, 239) !important;
    background: rgb(246, 243, 239);
    text-align: center;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.5);
}

#success-modal .success-bg .conf-confirm .x-img {
    content: "X";
    width: 1rem;
    position: absolute;
    right: 0.7rem;
    top: 0.7rem;
}

#success-modal .success-bg .conf-confirm .conf-p {
    font-size: 15px;
    line-height: 1.5rem;
}

#success-modal .success-bg .conf-confirm .conf-p br {
    display: none;
}

#success-modal .success-bg .conf-confirm .conf-btn-row {
    text-align: center;
    margin: 1rem 0 0;
}

#success-modal .success-bg .conf-confirm .conf-btn-row a {
    display: inline-block;
    margin: 0 0.3rem;
}

#success-modal .success-bg .conf-confirm .conf-btn-row a button {
    padding: 0.4rem 1rem;
    background-color: #bba57a;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2rem;
    transition: background-color 0.3s ease-in-out;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    width: 5rem;
}

#success-modal .success-bg .conf-confirm .conf-btn-row a button:hover {
    background-color: #bba57a;
}



#header-links {
    display: none;
}


.header,
header {
    position: relative;
    width: 100%;
}

.bs-header {
    padding: 0 1rem;
    height: 5rem;
    display: flex;
    align-items: center;
    background-color: #141414;
}

.bs-header .desktop-nav ul {
    background: none;
}

.bs-header .mob-menu-wrap {
    position: fixed;
    top: 5rem;
    border-top: 2px solid #ded4c6;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0ece6;
    padding: 1.5rem 15px;
    overflow-y: auto;
    margin: 0;
    z-index: 5;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.bs-header .mob-menu-wrap .mob-nav-list .nav-item {
    margin-bottom: 1rem;
}

.bs-header .mob-menu-wrap .mob-nav-list .nav-link {
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    text-transform: uppercase;
    display: block;
    color: var(--cg-gold, #86714d);
    padding: 0;
}

.bs-header .mob-menu-wrap .mob-nav-list.primary-nav .nav-link {
    font-size: 2rem;
    line-height: 2.5rem;

}

.bs-header .mob-menu-wrap .mob-nav-list.secondary-nav .nav-link {
    font-size: 1.25rem;
    line-height: 1.5;

}

.bs-header .mob-menu-wrap.active {
    transform: translateX(0%);
    display: block;
}

.bs-header .mob-menu-wrap ul {
    background: none;
}

.bs-header .hamburger-btn {
    display: none;
    margin-right: 1rem;
    padding: 0;
}



.bs-header .logo {
    display: block;
    max-width: 7rem;
}

.bs-header nav {
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.bs-header .nav-list .nav-item {
    display: inline-block;
    margin: 0 1rem;
}

.bs-header .nav-list .nav-item:first-of-type {
    margin-left: 0;
}

.bs-header .nav-list .nav-item:last-of-type {
    margin-right: 0;
}

.bs-header .nav-list .nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    color: #bba57a;
    letter-spacing: 1.73px;
    padding: 0;
    transition: color 0.3s ease-in-out;
}

.bs-header .nav-list .nav-link:hover {
    color: #784c0d;
}

.bs-header .cart-location-wrapper {
    margin-left: auto;
    margin-right: 0;
}

.bs-header .cart-location-list {
    display: flex;
    align-items: center;
}

.bs-header .cart-location-list .cart-location-item {
    margin-right: 1rem;
    color: #bba57a;
}

.bs-header .cart-location-list .cart-location-item .cart-location-link,
.bs-header .cart-location-list .cart-location-item .cart-location-link:visited,
.bs-header .cart-location-list .cart-location-item .cart-location-link:hover {
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 1.73px;
    font-family: "lato", sans-serif;
    text-transform: uppercase;
    color: #86714d;

}

.bs-header .cart-location-list .cart-location-item .cart-location-link,
.bs-header .cart-location-list .cart-location-item .cart-location-link:visited,
.bs-header .cart-location-list .cart-location-item .login-link {
    text-decoration: none;
}

/* 
   .bs-header .cart-location-list .cart-location-item .cart-location-link:hover {
    text-decoration: underline;
   } */

.bs-header .cart-location-list .cart-location-item:last-of-type {
    margin-right: 0;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap {
    padding-right: 1rem;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location {
    display: none;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-name,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-num,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-link {
    display: block;

}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap .non-selected-location {
    font-size: 1rem;
    line-height: 1.4rem;
    text-transform: uppercase;
    color: #bba57a;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap.selected .non-selected-location,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .non-selected-location {
    display: none;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap.selected .selected-location,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location {
    text-align: right;
    display: block;
}

.bs-header .cart-location-list .cart-location-item .selected .selected-location .location-name,
.bs-header .cart-location-list .cart-location-item .selected .selected-location .location-num,
.bs-header .cart-location-list .cart-location-item .selected-location .location-name,
.bs-header .cart-location-list .cart-location-item .selected-location .location-num {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    color: var(--cg-gold, #86714d);
    letter-spacing: 0.5px;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap.selected .selected-location .location-name,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-name {
    position: relative;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap.selected .selected-location .location-name:before,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-name:before {
    content: "";
    border-top: 0.6rem solid #86714d;
    border-right: 0.5rem solid transparent;
    border-left: 0.5rem solid transparent;
    position: absolute;
    top: 0.4rem;
    right: -1.5rem;
}

.bs-header .cart-location-list .cart-location-item .locate-me-wrap.selected .selected-location .location-num,
.bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-num {
    display: block;
}

.bs-header .cart-location-list .cart-location-item .selected-location .location-link {
    text-transform: capitalize;
}

.bs-header .cart-location-list .cart-location-item .selected .selected-location .location-link,
.bs-header .cart-location-list .cart-location-item .selected .selected-location .location-link:visited,
.bs-header .cart-location-list .cart-location-item .selected .selected-location .location-link:hover,
.bs-header .cart-location-list .cart-location-item .selected-location .location-link,
.bs-header .cart-location-list .cart-location-item .selected-location .location-link:visited,
.bs-header .cart-location-list .cart-location-item .selected-location .location-link:hover {
    font-size: 1rem;
    color: #bba57a;
    letter-spacing: 1.73px;
}

.bs-header .cart-location-list .cart-location-item .login-link {
    font-size: 1rem;
    text-transform: uppercase;
    color: #bba57a;
}

.bs-header .cart-location-list .cart-location-item.login-wrap .logged-in {
    display: none;
}

.bs-header .cart-location-list .cart-location-item.login-wrap.login>.login-link {
    display: none;
}

.bs-header .cart-location-list .cart-location-item.login-wrap.login .logged-in {
    display: flex;
    flex-direction: column;
}

.bs-header .cart-location-list .cart-location-item.login-wrap.login .logged-in .login-link {
    margin-bottom: 0.3rem;
}

.bs-header .cart-location-list .cart-location-item.login-wrap.login .logged-in .login-link:last-of-type {
    margin-bottom: 0;
}

.bs-header .cart-link {
    display: inline-block;
    width: 2rem;
    position: relative;
}

.bs-header .cart-link .cart-item-count {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #bba57a;
    color: #bba57a;
    text-align: center;
    line-height: 1.5rem;
    font-size: 1rem;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    position: absolute;
    bottom: -0.2rem;
    right: -0.2rem;
    display: none;
}

.bs-header .cart-link .cart-item-count .visually-hidden {
    display: none;
}

.bs-header .cart-link.cart-has-fooditem .cart-item-count {
    display: block;
}

.bs-header .cart-link .sr-only {
    display: none;
}

.bs-header #cart-empty-popup {
    background-color: #FFF;
    z-index: 5;
    max-width: 350px;
    border: 1px solid #bba57a;
    padding: 1rem;
    top: 6rem;
    right: 0.3rem;
    max-width: 276px;
    left: auto;

    position: absolute;

}



.bs-header #cart-empty-popup .arrow {
    position: absolute;
    width: 15px;
    height: 15px;
    margin: 0;
    border: 1px solid;
    border-top-color: #bba57a;
    border-left-color: #bba57a;

    border-bottom-color: #f0ece6;
    border-right-color: #f0ece6;
    background-color: #f0ece6;

    transform: rotate(45deg);
    top: -7.6px;
    right: 3rem;



}

.bs-header #cart-empty-popup h2 {
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    color: #625548;
}

.bs-header #cart-empty-popup p {

    font-size: 0.93rem;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 1rem;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    font-weight: 300;
    color: #625548;
}

.bs-header #cart-empty-popup a {
    display: inline-block;
    margin: 0.5rem auto;
    width: 100%;
    display: block;
}

.bs-header #cart-empty-popup a input[type=button],
.bs-header #cart-empty-popup a:visited input[type=button] {
    background: -moz-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%);
    background: linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    width: 100%;
    display: block;
    padding: 0.6rem 1rem;
    transition: background-color 0.3s ease-in-out;
    width: 100%;
    display: block;
    box-shadow: 0px 3px 8px 0 rgba(66, 34, 3, 0.23);
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    border: 1px solid transparent;
}

.bs-header #cart-empty-popup a:hover input[type=button] {
    background: -moz-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%);
    background: linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    width: 100%;
    display: block;
    padding: 0.6rem 1rem;
}


/* .header-wrapper .location-wrap {
    height: auto;
   } */

.bs-header .cart-location-list .cart-location-item .mod-icon-text {
    padding: 0 7px;
    height: 5rem;
    text-align: center;
    height: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7px;
    background: #a88444;
}

.bs-header .cart-location-list .cart-location-item .mod-icon-text .text {
    font-size: 0.7rem;
}

.bs-header .cart-location-list .cart-location-item .mod-icon-text .img-calendar {
    width: 1.8rem;
    margin-bottom: 0.5rem;
}

.bs-header .cart-location-list .cart-location-item.shopping-bag img {
    width: 1.6rem !important;
    margin-bottom: 5px;
    padding-bottom: 0 !important;
}

.bs-header .cart-location-list .cart-location-item.shopping-bag .cart-location-link {
    width: auto;
    display: flex;
    flex-direction: column;
}

.header-wrapper .location-wrap .mod-icon-text .text {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #86714d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    text-transform: uppercase;
}

/* LOCATION BAR */
.header-wrapper .location-wrap {
    width: 100%;
    height: 3.5rem;
    padding: 0.6rem 0;
    box-shadow: 0px -3px 9.9px 3.1px rgba(219, 205, 179, 0.68);
    box-shadow: none;
    background-image: url("https://media.thecapitalgrille.com/images/site/responsive/reserve-table-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



.header-wrapper .location-wrap .mod-icon-text {
    padding: 0 15px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: initial;
    align-items: center;
    position: relative;
}

.header-wrapper .location-wrap .mod-icon-text .icon {
    width: 1.6rem;
    margin-right: 0.8rem;
}

.header-wrapper .location-wrap .mod-icon-text .text {
    color: var(--cg-gold, #86714d);
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}



.header-wrapper .location-wrap .mod-icon-text:before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid #86714d;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.header-wrapper .location-wrap .mod-icon-text.js-droplink.open:before {
    transform: rotate(180deg) translateY(50%);
}

.header-wrapper .location-dropdown {
    display: none;
    /*visibility: hidden;*/
    border: 1px solid #86714d;
    width: 100%;
    overflow-y: scroll;
    max-height: 30rem;
    position: absolute;
    top: 9.20rem;
    z-index: 1020;
    text-align: left;
    padding: 1.2rem 1rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-wrapper .location-dropdown.open {
    /* visibility: visible; */
    display: block;


}





.header-wrapper .location-dropdown .location-selected {
    display: none;
}

.header-wrapper .location-dropdown .select-location {
    display: block;
}

.header-wrapper .location-dropdown .select-location .act-wrap {
    padding-top: 0;
}

.header-wrapper .location-dropdown.selected .location-selected {
    display: block;
}

.header-wrapper .location-dropdown.selected .select-location {
    display: none;
}

.header-wrapper .location-dropdown .popup-header {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.header-wrapper .location-dropdown .location-detail {
    display: flex;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.header-wrapper .location-dropdown .location-detail .location-img {
    display: none;
    width: 48%;
    padding-right: 0.8rem;
}

.header-wrapper .location-dropdown .location-detail .location-img img {
    width: 100%;
}

.header-wrapper .location-dropdown .location-detail .location-cont {
    padding-left: 0;
    width: 52%;
}

.header-wrapper .location-dropdown .location-detail .location-cont .name a {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin-bottom: 0.5rem;
    color: #784c0d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown .location-detail .location-cont .name a:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-detail .location-cont .location-address address {
    display: block;
}

.header-wrapper .location-dropdown .location-detail .location-cont .location-address address p {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #784c0d;
}

.header-wrapper .location-dropdown .location-timimg {
    display: none;
    width: 50%;
}

.header-wrapper .location-dropdown .location-timimg .time-item {
    display: flex;
    margin-bottom: 0.3rem;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper .location-dropdown .location-timimg .time-item span {
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    color: #784c0d;
}

.header-wrapper .location-dropdown .location-timimg .time-item:last-of-type {
    margin-bottom: 0;
}

.header-wrapper .location-dropdown .location-timimg .time-list {
    font-size: 1.4rem;
    line-height: 1.6rem;
    width: 100%;
    display: block;
    color: #784c0d;
}

.header-wrapper .location-dropdown .location-timimg .time-list .times {
    float: right;
}

.header-wrapper .location-dropdown #popRestHrsLink {
    display: none !important;
    color: #784c0d;
    transition: color 0.3s ease-in-out;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
}

.header-wrapper .location-dropdown #popRestHrsLink:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-links {
    display: none;
}

.header-wrapper .location-dropdown .location-links .menu-item {
    display: block;
    margin-bottom: 0.3rem;
}

.header-wrapper .location-dropdown .location-links .menu-item .link {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #784c0d;
    text-transform: capitalize;
    transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown .location-links .menu-item .link:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-links .menu-item:last-of-type {
    margin-bottom: 0;
}

.header-wrapper .location-dropdown .location-links a {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #784c0d;
    transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown .location-links a:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-links ul {
    display: flex;
    justify-content: space-between;
}

.header-wrapper .location-dropdown .location-links ul li {
    width: 50%;
    text-align: center;
}

.header-wrapper .location-dropdown .location-links.mobile-links {
    display: block !important;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul {
    justify-content: initial;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul li {
    width: auto;
    text-align: left;
    padding-right: 1rem;
    margin-right: 1rem;
    position: relative;
    color: #784c0d;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul li:before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: #bba57a;
    right: 0;
    top: 3px;
    bottom: 3px;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul li:last-of-type {
    padding-right: 0;
    margin-right: 0;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul li:last-of-type:before {
    content: none;
}

.header-wrapper .location-dropdown .act-wrap {
    padding: 1.2rem 0 0;
}

.header-wrapper .location-dropdown .act-wrap .btn {
    display: block;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    margin-top: 0.6rem;
}

.header-wrapper .location-dropdown .act-wrap .btn:first-of-type {
    margin-top: 0;
}

.header-wrapper .location-wrap .mod-icon-text .icon .bi-geo-alt-fill {
    color: #86714d;
    width: 1.5rem;
    height: 1.5rem;
}



/* RESERVATION WIDGET */
.reservation-wrap {
    width: 100%;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    min-height: 3.6rem;
    box-shadow: 0px 2px 9.9px 3.1px rgba(0, 0, 0, 0.68);
    padding: 0.6rem 0;

}

.reservation-wrap .bs-form {
    width: 100%;
}

.reservation-wrap .bs-form .form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-wrap .bs-form form {
    background-image: none !important;
}

.reservation-wrap .bs-form .form-title {
    color: #86714d !important;
    line-height: 2rem;
    text-transform: capitalize;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', 'Garamond', 'Georgia', serif);
    font-size: 1.2rem !important;
    font-weight: 600;
}

.reservation-wrap .bs-form .selection-wrap {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.reservation-wrap .bs-form form .styled-select .form-group {
    position: relative;
}

.reservation-wrap .bs-form form .styled-select select {
    margin: 0;
}

.reservation-wrap .bs-form form .styled-select .holder {
    position: absolute;
    top: 0;
    right: 0;
}

.reservation-wrap .bs-form form .selection-wrap .input-position .datepicker {
    color: #86714d;
}

.reservation-wrap .bs-form form .selection-wrap .input-position input::placeholder {
    color: #86714d;
}

.reservation-wrap .bs-form form .selection-wrap .input-position input:-moz-placeholder {
    color: #86714d;
}

.reservation-wrap .bs-form form .selection-wrap .input-position input::-webkit-input-placeholder {
    color: #86714d;
}

.reservation-wrap .bs-form form .selection-wrap .form-group .ui-datepicker-trigger {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.reservation-wrap .bs-form form .styled-select .holder {
    position: absolute;
    top: 0;
    right: 0;
}

.reservation-wrap .bs-form .selection-wrap .form-group {
    margin-right: 1.6rem;
    margin-bottom: 0;
    width: 8.5rem;
    border: 1px solid #ded4c6;

}

.reservation-wrap .bs-form .selection-wrap .form-group:last-child {
    margin-right: 0;
}



.reservation-wrap .bs-form .form-group #temp-res-btn {
    display: none;
}

.reservation-wrap .bs-form #party-info {
    display: none !important;
    padding-top: 0.6rem;
    text-align: center;
}

.reservation-wrap .bs-form #party-info a {
    color: #bba57a;
    transition: color 0.3s ease-in-out;
}

.reservation-wrap .bs-form #party-info a:hover {
    color: #bba57a;
}

.reservation-wrap .bs-form #res-available {
    padding-top: 0.6rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.header-wrapper .reservation-wrap .bs-form #full-info {
    background-image: none;
    background-color: #f0ece6;
    margin: 0;
}

.header-wrapper .reservation-wrap .bs-form #full-info #summary-location h3,
.header-wrapper .reservation-wrap .bs-form #res-available h3,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-table h3 .header-wrapper .reservation-wrap .bs-form #full-info #res-dob .holder.ab-holder,
#ui-datepicker-div .ui-datepicker-calendar tbody td span,
#ui-datepicker-div .ui-datepicker-calendar tbody td a,
.header-wrapper .reservation-wrap .bs-form #full-info #res-personal h2,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-time h3,
.header-wrapper .reservation-wrap .bs-form #full-info #res-additional h2,
.header-wrapper .reservation-wrap .bs-form #full-info #res-dob h3 {
    color: #86714d;
    font-family: 'Lato', "lato", sans-serif !important;
}

.reservation-wrap .bs-form #res-available h3 {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-left: 9rem;
}

.reservation-wrap .bs-form #res-available .available-times {
    margin-left: 1rem;
    display: inline-block;
}

.reservation-wrap .bs-form #res-available .available-times #ab-sameAsPref {
    background-color: #282728;
    color: #fff;
}

.reservation-wrap .bs-form #res-available .available-times .res-button {
    margin: 0 0.4rem;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    border: 1px solid #86714d;
    background-color: #f0ece6;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    color: #86714d;
    transition: all 0.3s ease-in-out;

    display: inline-block;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    color: #5f3b1d;
    font-size: 1.2rem;
}

.reservation-wrap .bs-form #res-available .available-times .res-button:hover {
    background-color: #000;
    color: #fff;
}

.reservation-wrap .bs-form #res-available .available-times .res-button:last-of-type {
    margin-right: 0;
}

.reservation-wrap .bs-form #res-available .available-times .res-button:first-of-type {
    margin-left: 0;
}

.reservation-wrap .bs-form #res-available .available-times #ab-sameAsPref {
    background-color: #000;
    color: #fff;
}

.reservation-wrap .bs-form #res-available .available-times .error {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    color: #282728;
}

.reservation-wrap .bs-form #full-info {
    flex-wrap: wrap;
    background-image: none;
    background-color: #f0ece6;
    margin: 0;
    justify-content: center;
}

.reservation-wrap .bs-form #full-info .res-header {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
    text-transform: uppercase;
    color: #605137;
    font-size: 2.6rem;
    line-height: 3rem;
}

.reservation-wrap #res-close {
    color: #605137;
}

.reservation-wrap .bs-form #full-info hr {
    display: none;
}

.reservation-wrap .bs-form #full-info .split {
    width: 50%;
    padding: 1.2rem 2rem;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    max-width: 600px;
}

.reservation-wrap .bs-form #full-info .split:first-of-type {
    border-right: 1px solid #784c0d;
}

.reservation-wrap .bs-form #full-info .split:last-of-type {
    border-left: 1px solid #784c0d;
}

.reservation-wrap .bs-form #full-info .split #res-summary br {
    display: none;
}

.reservation-wrap .bs-form #full-info .split #res-summary p br {
    display: inline;
}

.reservation-wrap .bs-form #full-info #summary-location h3 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    color: #5f3b1d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
}

.reservation-wrap .bs-form #full-info #summary-location p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #5f3b1d;
}

.reservation-wrap .bs-form #full-info #summary-table {
    margin-left: auto;
}

.reservation-wrap .bs-form #full-info #summary-table h3,
.reservation-wrap .bs-form #full-info #summary-table h1 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    color: #5f3b1d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
}

.reservation-wrap .bs-form #full-info #summary-table h1 {
    text-align: center;
}

.reservation-wrap .bs-form #full-info #summary-time {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.reservation-wrap .bs-form #full-info #summary-time h3 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    color: #5f3b1d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
}

.reservation-wrap .bs-form #full-info #summary-time p {
    font-size: 1rem;
    line-height: 1.6rem;
    margin-left: 0.5rem;
    color: #282728;
    font-family: 'Lato', "lato", sans-serif !important;
}

.header-wrapper .reservation-wrap .bs-form #full-info #res-additional .res-widget_label,
.header-wrapper .reservation-wrap .bs-form #full-info #res-additional p,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-location p,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-time p {
    font-size: 1rem;
}

.header-wrapper .reservation-wrap .bs-form #full-info #summary-location p,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-time p,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-edit p,
.header-wrapper .reservation-wrap .bs-form #full-info #res-additional .res-widget_label,
.header-wrapper .reservation-wrap .bs-form #full-info #res-insider .insider-text,
.header-wrapper .reservation-wrap .bs-form #full-info #summary-table h1 {
    color: #282728;
    font-family: 'Lato', "lato", sans-serif !important;
}

.reservation-wrap .bs-form #full-info #summary-edit {
    margin-bottom: 0;
}

.reservation-wrap .bs-form #full-info #summary-edit p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-left: 3.5rem;
    color: #5f3b1d;
    transition: color 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
}

.reservation-wrap .bs-form #full-info #summary-edit p:hover {
    color: #5f3b1d;
}

.reservation-wrap .bs-form #full-info #res-personal h2 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #5f3b1d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    text-transform: uppercase;
}

.reservation-wrap .bs-form #full-info #res-personal .form-row {
    justify-content: space-between;
    margin-top: 0.8rem;
}

.reservation-wrap .bs-form #full-info #res-personal .form-col {
    width: 48%;
}

.reservation-wrap .bs-form #full-info #res-personal .form-col label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1rem;
    color: #5f3b1d;
}

.reservation-wrap .bs-form #full-info #res-personal .form-col input {
    background: -moz-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    background: -webkit-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    background: -ms-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%);
    background: linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    border: 1px solid #86714d;
    color: #282728;
    font-family: 'Lato', "lato", sans-serif !important;
    border-radius: 0;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: inherit;

    height: auto;

    width: 100%;
}

.reservation-wrap .bs-form #full-info #res-additional h2 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #5f3b1d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.reservation-wrap .bs-form #full-info #res-additional p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: 0.6rem;
    color: #5f3b1d;
}

.reservation-wrap .bs-form #full-info #res-additional textarea {
    border: 1px solid #cfc7b5;
    border-radius: 0;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: inherit;
    color: #784c0d;
    height: 5rem;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    background: #faf3de !important;
    width: 100%;
    resize: none;
}

.reservation-wrap .bs-form #full-info #res-additional .error-wrapper {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.6rem;
}

#Reservation-Widget-Form .error-wrapper {
    margin-top: 1rem;
}

.reservation-wrap .bs-form #full-info #res-insider {
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #5f3b1d;
}

.reservation-wrap .bs-form #full-info #res-insider .insider-text {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #5f3b1d;
    margin-left: 0.5rem;
}

.reservation-wrap .bs-form #full-info #res-insider input {
    display: none;
}

.reservation-wrap .bs-form #full-info #res-insider input:checked+span:after {
    opacity: 1;
}

.reservation-wrap .bs-form #full-info #res-insider .res-checkbox {
    cursor: pointer;
    width: 15px;
    height: 15px;
    background-color: #f0ece6;
    border: 1px solid #86714d;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.reservation-wrap .bs-form #full-info #res-insider .res-checkbox:after {
    opacity: 0;
    content: "";
    position: absolute;
    width: 9px;
    height: 5px;
    background: 0 0;
    top: 3px;
    left: 1.8px;
    border: 2px solid #333;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.reservation-wrap .bs-form #full-info #res-dob {
    margin-bottom: 1rem;
}

.reservation-wrap .bs-form #full-info #res-dob h3 {
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #5f3b1d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.reservation-wrap .bs-form #full-info #res-dob .select-wrapper {
    margin: 0 0.3rem;
    position: relative;
    display: inline-block;
}

.reservation-wrap .bs-form #full-info #res-dob .select-wrapper:first-of-type {
    margin-left: 0;
}

.reservation-wrap .bs-form #full-info #res-dob .select-wrapper:last-of-type {
    margin-right: 0;
}

.reservation-wrap .bs-form #full-info #res-dob select {
    border: 1px solid #86714d;
    color: #86714d;
    background: -moz-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    background: -webkit-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    background: -ms-linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%);
    background: linear-gradient(to top, rgb(240, 236, 230) 0%, rgb(255, 255, 255) 50%, rgb(240, 236, 230) 100%) !important;
    font-family: 'Lato', "lato", sans-serif !important;
    border-radius: 0;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: uppercase;
    color: #784c0d;
    height: auto;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    padding-right: 1.6rem;
    width: 8rem;
}

.reservation-wrap .bs-form .form-group .holder.ab-holder {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    background-color: unset !important;
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1.3;
}

.reservation-wrap .bs-form #full-info #res-dob .holder.ab-holder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    /* display: inline-block;
    padding: 0.4rem 0.6rem;
    position: absolute;
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: uppercase;
    color: #784c0d;
   
    left: 0;
    top: 0;
    bottom: 0;
    line-height: 1.3;
    z-index: 1; */

}

.reservation-wrap .bs-form #full-info #res-btn {
    background: -moz-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%);
    background: linear-gradient(125deg, rgb(176, 156, 121) 0%, rgb(134, 113, 77) 100%) !important;
    color: #FFF;
    margin-left: 0;
    margin-top: 1rem;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    box-shadow: 0px 3px 8px 0 rgba(66, 34, 3, 0.23);
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    border: 1px solid transparent;


}

.reservation-wrap .bs-form #full-info #res-btn:hover,
.reservation-wrap .bs-form #full-info #res-btn:focus {
    background: -moz-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -webkit-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    background: -ms-linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%);
    background: linear-gradient(125deg, rgb(134, 113, 77) 0%, rgb(176, 156, 121) 100%) !important;
    color: #FFF;
}

.reservation-wrap .bs-form #full-info .form-row {
    margin-left: 0;
    margin-right: 0;
}

.reservation-wrap .bs-form #full-info .privacyNotice {
    margin: 0rem auto 1rem;
    color: #5f3b1d;
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
    width: 100%;
    text-align: center;
}

.reservation-wrap .bs-form #full-info .privacyNotice:hover {
    color: #5f3b1d;
}

.reservation-wrap #res-close {
    position: absolute;
    top: 0.6rem;
    right: 3rem;
    font-size: 2rem;
    line-height: 2rem;
    cursor: pointer;
    color: #605137;
}




@media only screen and (min-width: 992px) {

    .header-wrapper .location-dropdown,
    .header-wrapper .location-dropdown.open {

        position: absolute;
        z-index: 5;
        max-width: 30rem;
        text-align: left;
        right: 11rem;
        top: calc(100% - 10%);
        max-height: 60rem;
        border: 1px solid var(--cg-gold, #86714d);

    }
}

.header-wrapper .location-dropdown .popup-header {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #784c0d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
}

.header-wrapper .location-dropdown .location-detail {
    display: flex;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.header-wrapper .location-dropdown .location-detail .location-img {
    width: 48%;
    padding-right: 0.4rem;
}

.header-wrapper .location-dropdown .location-detail .location-img img {
    width: 100%;
}

.header-wrapper .location-dropdown .location-detail .location-cont {
    width: 52%;
    padding-left: 0.4rem;
}

.header-wrapper .location-dropdown .location-detail .location-cont .name a {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 0.5rem;
    color: #784c0d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown .location-detail .location-cont .name a:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-detail .location-cont .location-address address {
    display: block;
}

.header-wrapper .location-dropdown .location-detail .location-cont .location-address address p {
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: #784c0d;
}

.header-wrapper .location-dropdown .location-timimg {
    width: 52%;
}

.header-wrapper .location-dropdown .location-timimg .time-item {
    display: flex;
    margin-bottom: 0.3rem;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper .location-dropdown .location-timimg .time-item span {
    font-size: 1rem;
    line-height: 1.6rem;
    text-transform: uppercase;
    color: #86714d;
}

.header-wrapper .location-dropdown .location-selected .location-dropdown-name,
.header-wrapper .location-dropdown .location-selected .location-dropdown-name a,
.header-wrapper .location-dropdown .location-selected .location-dropdown-address p,
.header-wrapper .location-dropdown .location-selected .location-dropdown-address span,
.header-wrapper .location-dropdown .location-selected .location-dropdown-hours span {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #86714d !important;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
}

.header-wrapper .location-dropdown .location-selected .location-dropdown-address p,
.header-wrapper .location-dropdown .location-selected address p,
.header-wrapper .location-dropdown .location-selected .location-dropdown-name {
    margin-bottom: 0;
}

.header-wrapper .location-dropdown .location-timimg .time-item:last-of-type {
    margin-bottom: 0;
}

.header-wrapper .location-dropdown .location-timimg .time-list {
    font-size: 1rem;
    line-height: 1.4rem;
    width: 100%;
    display: block;
    color: #86714d;
}

.header-wrapper .location-dropdown .location-timimg .time-list .times {
    float: right;
    color: #86714d;
}

.header-wrapper .location-dropdown .location-selected .location-links.rdlinks {
    display: none;
}

.header-wrapper .location-dropdown #popRestHrsLink {
    display: inline-block;
    color: #605137;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    transition: color 0.3s ease-in-out;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.4rem;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown #popRestHrsLink:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-links .menu-item {
    display: block;
    margin-bottom: 0.3rem;
}

.header-wrapper .location-dropdown .location-links .menu-item .link {
    font-size: 1rem;
    line-height: 1.4rem;
    color: #784c0d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    text-transform: capitalize;
    transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown .location-links .menu-item .link:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-links .menu-item:last-of-type {
    margin-bottom: 0;
}

.header-wrapper .location-dropdown .location-links a {
    font-size: 1rem;
    line-height: 1.4rem;
    color: #784c0d;
    font-family: var(--cg-font-family, 'Lato', sans-serif);
    transition: color 0.3s ease-in-out;
}

.header-wrapper .location-dropdown .location-links a:hover {
    color: #a48962;
}

.header-wrapper .location-dropdown .location-links ul {
    display: flex;
    justify-content: space-between;
}

.header-wrapper .location-dropdown .location-links ul li {
    text-align: left;
    padding: 0;
}

.header-wrapper .location-dropdown .location-selected .location-links ul li a,
.header-wrapper .location-dropdown .location-selected .location-links ul li a:visited,
.header-wrapper .location-dropdown .location-selected .location-links ul li a:hover {
    padding: 0.5rem 0.75rem;
}

.header-wrapper .location-dropdown .location-links.mobile-links {
    display: none !important;
}

.header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a,
.header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:visited,
.header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:hover {
    font-size: 0.85rem;
    line-height: 1.5;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul li:before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: #bba57a;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30%;
}

.header-wrapper .location-dropdown .location-links.mobile-links ul li:last-of-type:before {
    content: none;
}

.header-wrapper .location-dropdown .location-links.desktop-links ul,
.header-wrapper .location-dropdown .location-links.rblinks ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    display: block;
    margin-bottom: 0;
}

.header-wrapper .location-dropdown .location-links.desktop-links ul li a,
.header-wrapper .location-dropdown .location-links.desktop-links ul li a:visited .header-wrapper .location-dropdown .location-links.mobile-links ul li a,
.header-wrapper .location-dropdown .location-links.mobile-links ul li a:visited {
    color: #605137;
}

.header-wrapper .location-dropdown .location-links.rblinks ul li,
.header-wrapper .location-dropdown .location-links.desktop-links ul li {
    width: 100%;
}

.header-wrapper .location-dropdown .location-selected .location-dropdwon-nav .btn,
.header-wrapper .location-dropdown .location-selected .location-dropdwon-nav .btn:focus,
.header-wrapper .location-dropdown .location-selected .location-dropdwon-nav .btn:hover {
    display: block;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    margin-top: 0.6rem;
}

.header-wrapper .location-dropdown .act-wrap {
    padding: 1.2rem 0 0;
}

.header-wrapper .location-dropdown .act-wrap .btn {
    display: block;
    border-radius: 0;
}




.header-wrapper .location-dropdown .location-img .map-location {
    width: 100%;
    text-align: center;
}

.bs-header .cart-location-list .shopping-bag .cart-icon-label {
    font-size: .7rem;
    font-weight: 600;
}

.header-wrapper .location-dropdown .location-img .map-location img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.header-wrapper .location-dropdown .select-location {
    display: none;
}

.header-wrapper .location-dropdown .location-selected .location-dropdown-title {
    font-size: 1.15rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--cg-olive-green, #605123);
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
}

.modal#locEmail {
    width: 30rem;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    height: auto;
    background-color: #FFF;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    border: 1px solid #86714d;

}

.modal#locEmail .modalbox {
    padding: 1.5rem;
}

.modal#locEmail .modalbox .close {
    width: 1.5rem;
}

.modal#locEmail .modalbox .close img {
    width: 100%;
}

.modal#locEmail .modalbox h3 {
    text-align: center;
    color: #86714d !important;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    font-weight: bold;
}

.modal#locEmail .modalbox p {
    font-size: 1rem;
    line-height: 1.5;
    color: #282728;
    text-align: center;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
}

.modal#locEmail .modalbox form textarea {
    border: 1px solid #86714d;
    border-radius: 0;
    padding: 0.5rem;
    color: #282728;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
}

.modal#locEmail .modalbox #error_message_email {
    color: #dc3545;
    font-size: 1.3rem;
    line-height: 1.7rem;
}

.modal#locEmail .modalbox .row {
    margin: 0;
}

.modal#locEmail .modalbox .row form {
    width: 100%;
}

.modal#locEmail .modalbox .row form textarea {
    border: 1px solid #cfc7b5;
    border-radius: 0;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: uppercase;
    color: #784c0d;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    background: #ffffff;
    resize: none;
    display: block;
    width: 100%;
    height: 5rem;
}

.modal#locEmail .modalbox .row form .primary-btn {
    font-size: 1.8rem;
    line-height: 1.6rem;
    width: 100%;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    padding: 0.6rem 1rem;
    background-color: #bba57a;
    color: #eee0c7;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    box-shadow: 0px 3px 8px 0 rgba(66, 34, 3, 0.23);
    background-image: linear-gradient(to top, #b38541, #6b3f10);
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    border: 1px solid transparent;
}

.modal#locEmail .modalbox .row form .primary-btn:hover {
    background-color: #76552C;
    background-image: none;
    border-color: #76552C;
    color: #ffffff;
}

.modal {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.modal.modal-large,
.modal.subscribe-modal {
    max-width: 60rem;
    max-height: 85vh;
    border-radius: 0px;
    height: auto;
}

.modal.subscribe-modal {
    background: #EEE4C7;
    padding: 2rem !important;
    transform: translate(-50%, 0);
}

.modal.subscribe-modal button.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 1;
}

.modal.subscribe-modal .no-txttrans {
    color: #000000;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    line-height: 2.2rem;
}

.modal.subscribe-modal p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    color: #000000;
}

.modal #emailSignUpModal {
    display: flex;
    padding: 2rem;
    position: relative;
    flex-wrap: wrap;
    background: #EEE4C7;
}

.modal #emailSignUpModal button.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 1;
}

.modal #emailSignUpModal .left-img-container {
    width: 30%;
    padding: 1rem;
    border: 1px solid #999;
    background: #d5c4a5;
    align-self: flex-start;
}

.modal #emailSignUpModal .left-img-container+p {
    display: none;
}

.modal #emailSignUpModal #email_signup_form {
    width: 70%;
    padding: 0 2rem 2rem;
    color: #000000;
}

.modal #emailSignUpModal #email_signup_form>h2 {
    font-size: 1.7rem;
    line-height: 2.1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero {
    margin: 0.5rem 0;
    justify-content: space-between;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero .span3.text-type-wid {
    width: 49%;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label {
    display: block;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label a {
    display: inline-block;
    margin-left: 0.3rem;
    width: 1.2rem;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label#ae-dob {
    width: 100%;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label[for=zipcode_step2] {
    width: 100%;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label[for=dobDay],
.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label[for=dobMonth],
.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero label[for=dobYear] {
    margin: 0;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero input {
    border: 1px solid #cfc7b5;
    border-radius: 0;
    padding: 0.4rem 0.6rem;
    font-size: 1.2rem;
    line-height: 1.3rem;
    text-transform: inherit;
    color: #784c0d;
    height: auto;
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    background: #faf3de !important;
    width: 100%;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero input#zipcode_step2 {
    width: 10rem;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero .select-wrapper {
    margin: 0 0.3rem;
    position: relative;
    display: inline-block;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero .select-wrapper:first-of-type {
    margin-left: 0;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero .select-wrapper:last-of-type {
    margin-right: 0;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero select {
    border: 1px solid #cfc7b5;
    border-radius: 0;
    padding: 0.4rem 0.6rem;
    font-size: 1.2rem;
    line-height: 1.3rem;
    text-transform: uppercase;
    color: #784c0d;
    height: auto;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background-color: #faf3de !important;
    background-image: url("https://media.seasons52.com/images/site/responsive/down-arrow.svg");
    background-repeat: no-repeat;
    background-size: 1rem 0.5rem;
    background-position: 98% 52%;
    padding-right: 1.6rem;
    width: 10rem;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero .holder {
    display: inline-block;
    padding: 0.4rem 0.6rem;
    position: absolute;
    font-size: 1.2rem;
    line-height: 1.3rem;
    text-transform: uppercase;
    color: #784c0d;
    left: 1px;
    top: 0.1rem;
    bottom: 1px;
    z-index: 1;
    background-color: #faf3de !important;
}

.modal #emailSignUpModal #email_signup_form .row.mar_btm.span6.mar-left-zero a[data-toggle=tooltip] {
    align-self: center;
}

.modal #emailSignUpModal #email_signup_form .confirm-check {
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    font-size: 1.2rem;
    line-height: 1.4rem;
    position: relative;
    padding-left: 2.4rem;
    margin: 1rem 0;
}

.modal #emailSignUpModal #email_signup_form .confirm-check #join_checkbox {
    display: inline-block;
    cursor: pointer;
    background: url(/images/site/checkbox.png) no-repeat;
    height: 24px;
    width: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.modal #emailSignUpModal #email_signup_form .confirm-check #join_checkbox input {
    display: none;
}

.modal #emailSignUpModal #email_signup_form .opt_in_darden_checkin {
    display: none;
}

.modal #emailSignUpModal #email_signup_form .opt_in_darden_checkin+label {
    display: block;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.modal #emailSignUpModal #email_signup_form .email_signup_button {
    margin: 0;
    justify-content: flex-end;
}

.modal #emailSignUpModal #email_signup_form .email_signup_button input#save_email_button {
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    padding: 0.6rem 1rem;
    background-color: #bba57a;
    color: #eee0c7;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2rem;
    letter-spacing: 1.3px;
    box-shadow: 0px 3px 8px 0 rgba(66, 34, 3, 0.23);
    background-image: linear-gradient(to top, #b38541, #6b3f10);
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    border: 1px solid transparent;
}

.modal #emailSignUpModal #email_signup_form .email_signup_button input#save_email_button:hover {
    background-color: #76552C;
    background-image: none;
    border-color: #76552C;
    color: #ffffff;
}

.modal #emailSignUpModal .row.mar_top01.clr_bth {
    margin: 0;
    width: 100%;
    padding: 0 2rem;
}

.modal #emailSignUpModal .row.mar_top01.clr_bth p {
    width: 100%;
}

.modal #emailSignUpModal .row.mar_top01.clr_bth p small {
    font-size: 1.1rem;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    display: block;
    text-align: right;
    color: #000000;
}

.modal #emailSignUpModal .row.mar_top01.clr_bth p small a {
    text-decoration: underline;
    color: #784c0d;
}

.modal #emailSignUpModal .row.mar_top01.clr_bth p:last-of-type {
    display: none;
}




/* Common Header and Responsive base end */


.btn.btn-default {
    font-family: var(--cg-font-family-body, 'Lato', sans-serif);
    padding: 0.6rem 1rem;
    background-color: #bba57a;
    color: #eee0c7;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2rem;
    letter-spacing: 1.3px;
    box-shadow: 0px 3px 8px 0 rgba(66, 34, 3, 0.23);
    background-image: linear-gradient(to top, #b38541, #6b3f10);
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    border: 1px solid transparent;
}

.btn.btn-default:hover {
    background-color: #76552C;
    background-image: none;
    border-color: #76552C;
    color: #ffffff;
}

.btn.btn-outline {
    color: #784c0d;
    font-size: 2.2rem;
    line-height: 1.6rem;
    border: 2px solid #784c0d;
    text-transform: uppercase;
    text-align: center;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease-in-out;
}

.btn.btn-outline:hover {
    background-color: #784c0d;
    color: #ffffff;
}

.bs-banner {
    overflow: hidden;
    position: relative;
}

.bs-banner .carousel {
    height: 100%;
}

.bs-banner .carousel .carousel-inner {
    height: 100%;
}

.bs-banner .carousel .carousel-item {
    position: relative;
    height: 100%;
}

.bs-banner .carousel .carousel-indicators {
    bottom: 11rem;
    z-index: 2;
}

.bs-banner .carousel .carousel-indicators li {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid #ffeec2;
    position: relative;
    margin-right: 8px;
    margin-left: 8px;
    opacity: 1;
    box-sizing: border-box;
    background-color: transparent;
}

.bs-banner .carousel .carousel-indicators li:before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #ffeec2;
    top: 3.3px;
    left: 3.3px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.bs-banner .carousel .carousel-indicators li.active:before {
    opacity: 1;
}

.bs-banner .carousel .carousel-control-prev,
.bs-banner .carousel .carousel-control-next {
    width: 3.5rem;
    height: 3.5rem;
    top: 45%;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #784c0d;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.bs-banner .carousel .carousel-control-prev:hover,
.bs-banner .carousel .carousel-control-next:hover {
    background-color: #784c0d;
    opacity: 1;
}

.bs-banner .carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.bs-banner .carousel .carousel-control-next:hover .carousel-control-prev-icon {
    background-image: url("https://media.thecapitalgrille.com/images/site/responsive/left-arrow-white.svg");
}

.bs-banner .carousel .carousel-control-prev:hover .carousel-control-next-icon,
.bs-banner .carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-image: url("https://media.thecapitalgrille.com/images/site/responsive/right-arrow-white.svg");
}

.bs-banner .carousel .carousel-control-prev {
    left: 3rem;
}

.bs-banner .carousel .carousel-control-prev .carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("https://media.thecapitalgrille.com/images/site/responsive/left-arrow.svg");
    background-size: cover;
}

.bs-banner .carousel .carousel-control-next {
    right: 3rem;
}

.bs-banner .carousel .carousel-control-next .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("https://media.thecapitalgrille.com/images/site/responsive/right-arrow.svg");
    background-size: cover;
}

.bs-banner .banner-cont {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bs-banner .banner-cont .title-img {
    position: relative;
    margin: 0 auto;
    width: 24rem;
    text-align: center;
}

.bs-banner .banner-cont .title-img.typ-big {
    width: 34rem;
}

.bs-banner .banner-cont .title-img.typ-long {
    width: auto;
    height: 11rem;
}

.bs-banner .banner-cont .title-img.typ-long img {
    width: auto;
    height: 100%;
}

.bs-banner .banner-cont .banner-desc {
    color: #625c48;
    font-size: 2rem;
    line-height: 2.4rem;
    max-width: 28rem;
    margin: 3rem auto;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
    text-align: center;
}

.bs-banner .banner-cont .banner-subtitle {
    font-size: 5.4rem;
    line-height: 4.6rem;
    letter-spacing: -2px;
    color: #5c5649;
    width: 70rem;
    margin: 3rem auto 0;
    text-align: center;
    text-transform: uppercase;
}

.bs-banner .banner-cont .btn {
    width: 24rem;
    font-size: 2.4rem;
    line-height: 2rem;
    margin: 2.5rem auto 0;
    display: block;
}

.bs-banner .img-wrap {
    position: relative;
}

.bs-banner .img-wrap img {
    width: 100%;
}

.bs-banner .img-wrap .img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.bs-banner .img-wrap .img-cta-link:first-of-type {
    position: absolute;
    left: 33.7%;
    width: 14.5%;
    height: 5.4%;
    bottom: 35.8%;
}

.bs-banner .img-wrap .img-cta-link:last-of-type {
    right: 33.5%;
    position: absolute;
    width: 14.5%;
    height: 5.4%;
    bottom: 35.8%;
}

.bs-banner .scroll-btn {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 4rem;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    padding-left: 2px;
}

.bs-banner .scroll-btn:before {
    content: "";
    position: absolute;
    left: 45%;
    bottom: 0.1rem;
    transform: translateX(-50%);
    width: 0.4rem;
    height: 3.5rem;
    background: url("https://media.thecapitalgrille.com/images/site/responsive/scroll-icon.png") center no-repeat;
    background-size: contain;
}

.bs-section {
    padding: 5rem 0;
}


/* Footer Section Responsive start */
#footer p,
#footer ul li a,
#footer ul li a:visited,
#footer ul li a:hover {
    font-family: 'Lato', "lato", 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

#footer input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}

#footer .eclub-labels {
    display: none;
}

#footer .form .is-email {
    font-size: .8rem;
}

#footer .footer-quick-links {
    margin-bottom: 2px;
    box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.3), 0px 10px 20px 0 rgba(0, 0, 0, 0.60);
}

#footer .footer-quick-links a {
    font-size: 3vw;
    padding: 1rem 0.25rem;
    display: block;
}

/* Overwrite main.css */
#footer .eclub-wrap .form-title {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 1px;
    font-weight: normal;
}

#footer .eclub-wrap form .eclub-input-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

#footer .eclub-wrap form .eclub-btn-wrapper {
    width: 100%;
}

#footer .eclub-wrap form .form-group .form-control {
    height: auto !important;
    line-height: 1.5;
    padding: 0.55rem;
    font-size: 0.75rem;
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
    font-family: 'Lato-regular', 'Lato', "lato", 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

#footer .eclub-wrap form .btn-gradient {
    width: 100%;
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
    line-height: 1.5;
}

#footer .eclub-wrap form .is-email {
    text-transform: none;
}

#footer .eclub-wrap form input::-webkit-input-placeholder {
    font-size: 0.75rem;
    color: #86714d !important;
}

#footer .eclub-wrap form input::placeholder {
    font-size: 0.75rem;
    color: #86714d !important;
}

#footer .eclub-wrap form input:-moz-placeholder {
    font-size: 0.75rem;
    color: #86714d !important;
}

#footer .eclub-wrap form input:-ms-input-placeholder {
    font-size: 0.75rem;
    color: #86714d !important;
}

#footer .secondary-nav .nav-item {
    border-right: 0;
    position: relative;
}

.footer ul li,
.footer ul li a {
    padding: 0 !important;
}

#footer .secondary-nav .nav-item .nav-link {
    font-size: 0.75rem;
    padding: .5rem !important;
    letter-spacing: 0.025rem;
}

#footer .secondary-nav li:after {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #86714d;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30%;
}

#footer .secondary-nav li:last-of-type::after {
    content: none;
}

#footer .footer-copyright p {
    font-size: 0.75rem;
    line-height: 1.3;
}


.bs-footer .invalid-feedback {
    position: absolute;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', serif);
}

.bs-footer .eclub-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.1rem 0 1.1rem;
    background-color: #e7d8b8;
}

.bs-footer .eclub-wrap .bs-form .form {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 1rem;
}

.bs-footer .eclub-wrap .bs-form .form .form-validation-failed {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -3.5rem;
    color: #dc3545;
}

.bs-footer .eclub-wrap .bs-form .form-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-align: right;
    text-transform: uppercase;
    color: #784c0d;
}

.bs-footer .eclub-wrap .bs-form .form-group {
    margin: 0 1.5rem;
    width: 20rem;
}

.bs-footer .eclub-wrap .bs-form .form-group .form-control {
    width: 100%;
    height: auto;
    padding: 0.7rem 1.2rem;
    border-radius: 0;
    border: 1px solid #b29164;
    font-size: 1rem;
    line-height: 1.4rem;
    color: #ffffff;
    text-transform: initial;
    background-color: #b29164;
    font-family: var(--cg-font-family-body, 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif);

}

.bs-footer .eclub-wrap .bs-form .form-group .form-control::placeholder {
    color: #ffffff;
    letter-spacing: 0.8px;
}

h2#eclub-form-dynamic-title {
    font-size: 1.6rem;
}

.bs-footer .footer-nav {
    padding: 1.2rem 0;
    background-color: #141414;
}

.bs-footer .footer-nav .primary-nav,
.bs-footer .footer-nav .bottom-foot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-footer .footer-nav .primary-nav .nav-item,
.bs-footer .footer-nav .bottom-foot .nav-item {
    padding: 0 1.2rem;
    line-height: 1.2rem;
    border-right: 2px solid #ffeec2;
}

.bs-footer .footer-nav .primary-nav .nav-item:first-of-type,
.bs-footer .footer-nav .bottom-foot .nav-item:first-of-type {
    padding-left: 0;
}

.bs-footer .footer-nav .primary-nav .nav-item:last-of-type,
.bs-footer .footer-nav .bottom-foot .nav-item:last-of-type {
    padding-right: 0;
    border-right: none;
}

.bs-footer .footer-nav .nav-link {
    color: #ffeec2;
    text-transform: uppercase;
    padding: 0;
    position: relative;
    transition: color 0.3s ease-in-out;
    font-weight: lighter;
    font-size: 1.2rem;
    letter-spacing: 1.1px;
}

.bs-footer .footer-nav .nav-link:hover {
    color: #784c0d;
}

.bs-footer .footer-nav .secondary-nav {
    margin-right: 1.4rem;
    display: flex;
    align-items: center;
}

.bs-footer .footer-nav .secondary-nav .nav-item {
    padding: 0 0.4rem;
    line-height: 0.7rem;
    border-right-width: 1px;
}

.bs-footer .footer-nav .secondary-nav .nav-item .nav-link {
    font-size: 0.9rem;
    text-transform: initial;
    color: #bbad7a;
    letter-spacing: normal;
}

.bs-footer .footer-nav .bottom-foot .copyright-text {
    font-size: 0.9rem;
    line-height: 0.7rem;
    text-transform: uppercase;
    color: #bbad7a;
}

.bs-footer .footer-nav .primary-nav {
    margin-bottom: 1.2rem;
}



/* Footer Section Responsive end */

.bs-form .form-control {
    border-radius: 0;
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: uppercase;
    /* color: #784c0d; */
    height: auto;
    color: var(--cg-gold, #86714d);
    font-family: var(--cg-font-family, 'Lato', sans-serif);

}

.bs-form .form-control.datepicker {
    font-family: var(--cg-font-family-body, 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif);
    color: var(--cg-gold, #86714d);
    border: none;
    border-radius: 0;
    letter-spacing: 1.13px;
    /*padding: 0.4rem 0.6rem;
    */
    font-size: 1rem;
    line-height: 1.1rem;
    text-transform: uppercase;
    color: #784c0d;
    height: auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.bs-form .form-control.datepicker::placeholder {
    color: #fef6dc;
    letter-spacing: 1.13px;
}

.bs-form select.form-control {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    background-color: transparent;
    background-image: url("https://media.thecapitalgrille.com/images/site/responsive/down-arrow.svg");
    background-repeat: no-repeat;
    background-size: 1rem 0.5rem;
    background-position: 98% 52%;
    padding-right: 1.6rem;
    color: #fef6dc;
    border: none;
    font-family: var(--cg-font-family-body, 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif);
    letter-spacing: 1.13px;
}

.bs-form select.form-control option,
.bs-form select.form-control optgroup {
    color: #495057 !important;
}

.bs-quick-links {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 4;
}

.bs-quick-links .list {
    display: flex;
    align-items: center;
}

.bs-quick-links .link-item {
    border: 1px solid #bba57a;
    flex-grow: 1;
}

.bs-quick-links .link-item:first-of-type,
.bs-quick-links .link-item:last-of-type {
    border-left: none;
    border-right: none;
}

.bs-quick-links .quick-link {
    display: block;
    padding: 1.2rem;
    color: #eee0c7;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 1.6rem;
    text-align: center;
    background-image: linear-gradient(to top, #000000, #44423d, #000000);
    transition: all 0.3s ease-in-out;
    font-family: var(--cg-font-family-body, 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif);
}

.bs-quick-links .quick-link:hover {
    background-color: #bba57a;
    color: #ffffff;
}

.bs-quick-links.pos-fixed {
    position: fixed;
    bottom: 0;
}

.mod-img-desc .head-wrap .img-wrap {
    width: 90%;
    margin: 0 auto 1rem;
    height: 10.8rem;
}

.mod-img-desc .head-wrap .img-wrap img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.mod-img-desc .cont-wrap {
    text-align: center;
}

.mod-img-desc .cont-wrap h2 {
    font-size: 1.7rem;
    line-height: 2rem;
    color: #784c0d;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.27px;
}

.mod-img-desc .cont-wrap .desc {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.8rem;
    min-height: 5.4rem;
    color: #a48962;
    max-width: 90%;
    margin: 0 auto;
}

.mod-img-desc .cont-wrap .act-wrap {
    text-align: center;
    margin-top: 1.5rem;
}

.mod-img-desc .cont-wrap .act-wrap .btn {
    width: 98%;
}

.res-wrapper,
#res-wrapper {
    display: none;
}

#onetrust-consent-sdk {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji !important;
}

#onetrust-policy-text b {
    font-weight: bolder;
}


/* WORK ORDERS & INCIDENTS */
/*PBI72363*/
#ui-datepicker-div {
    display: none;
}



@media only screen and (min-width: 360px) and (orientation: portrait) {

    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a,
    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:visited,
    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:hover {
        font-size: 1rem;
    }


    .header-wrapper .location-dropdown.open {
        max-height: 30rem;
    }

    .global-alert .global-alert-menu a {
        letter-spacing: 1.3px;
        font-size: 0.93rem;
    }
}

@media only screen and (min-width: 375px) and (orientation: portrait) {
    .global-alert .out-dine-act {
        padding: 2rem 15px;
        letter-spacing: 1.5px;
        font-size: 1.5rem;
    }



    /* .header-wrapper .location-dropdown .location-links.mobile-links ul li:before {
        height: 40%;
    } */

    #footer .footer-quick-links a {
        font-size: 0.75rem;
    }
}

@media only screen and (min-width: 414px) and (orientation: portrait) {
    .global-alert .global-alert-menu a {
        font-size: 0.93rem;
    }

    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a,
    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:visited,
    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:hover {
        font-size: 1.25rem;
    }

    #footer .footer-quick-links a {
        font-size: 0.93rem;
    }
}

@media only screen and (min-width: 480px) and (orientation: landscape) {
    #footer .footer-quick-links a {
        font-size: 1rem;
    }

    .global-alert .global-alert-menu a {
        font-size: 1.25rem;
    }
}

@media only screen and (min-width: 576px) {

    .header-wrapper .location-dropdown .location-selected .location-dropdown-title {
        font-size: 1.5rem;
    }

    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a,
    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:visited,
    .header-wrapper .location-dropdown .location-selected .location-links.mobile-links ul li a:hover {
        font-size: 1.25rem;
    }

    .header-wrapper .location-dropdown .location-selected .location-dropdown-name,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-name a,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-address p,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-address span,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-hours span {
        font-size: 1.15rem;
    }

    .global-alert .global-alert-menu a {
        font-size: 1.25rem;
    }

    #footer .eclub-wrap .form-title {
        font-size: 1.5rem;
    }

    #footer .eclub-wrap form .eclub-input-wrapper {
        width: 100%;
        margin-right: 0;
    }

    #footer .eclub-wrap form .eclub-btn-wrapper {
        width: 100%;
    }

    #footer .eclub-wrap form .form-group .form-control,
    #footer .eclub-wrap form .btn-gradient {
        font-size: .8rem;
    }

    #footer .secondary-nav .nav-item .nav-link {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 600px) and (orientation: portrait) {
    .global-alert .global-alert-menu a {
        font-size: 1.25rem;
    }

    .header-wrapper .location-dropdown .location-selected .location-dropdown-title {
        font-size: 1.5rem;
    }

    .header-wrapper .location-dropdown .location-selected .location-dropdown-name,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-name a,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-address p,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-address span,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-hours span {
        font-size: 1.15rem;
    }

    .header-wrapper .location-dropdown .location-links.mobile-links ul li:before {
        content: "";
        position: absolute;
        width: 2px;
        background-color: #bba57a;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 50%;
    }
}

@media only screen and (min-width: 768px) {

    /* 
    .bs-header .cart-location-list .cart-location-item {
        margin-right: 2rem;
    } */

    .bs-header .cart-location-list .cart-location-item.shopping-bag img,
    .bs-header .cart-location-list .cart-location-item .mod-icon-text .img-calendar {
        width: 2rem !important;
    }

    #footer .eclub-wrap .form-title {
        font-size: 1.15rem;
        margin-bottom: 0;
    }

    #footer #eclub-signup-form .row:nth-of-type(1) {
        max-width: 580px;
        margin: 0 auto;
    }

    #footer .eclub-wrap .form-group {
        margin-left: 0;
    }

    #footer .eclub-wrap form .eclub-input-wrapper {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 991.98px) {

    .bs-header {
        padding: 0 15px;
        flex-wrap: wrap;
    }


    .bs-header .hamburger-btn {
        display: inline-block;
        margin-right: 1.5rem;
    }

    .bs-header .hamburger-btn .line {
        display: block;
        width: 20px;
        height: 3px;
        background-color: #bba57a;
        position: relative;
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
    }

    .bs-header .hamburger-btn .line:last-of-type {
        margin-top: 10px;
    }

    .bs-header .hamburger-btn.open .line:first-of-type {
        transform: rotate(45deg);
        top: -1px;
    }

    .bs-header .hamburger-btn.open .line:last-of-type {
        transform: rotate(-45deg);
    }

    .bs-header .logo-wrap {
        width: 9rem;
        box-shadow: none;
        position: static;
        transform: none;
    }



    .bs-header .mod-icon-text .icon {
        width: 2.4rem;
        display: block;
        margin: 0 auto 0.3rem;
    }

    .bs-header .mod-icon-text .text {
        display: block;
        font-size: 1.1rem;
        letter-spacing: 1px;
        color: #bba57a;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        color: #292c33;
    }

    .bs-header .cart-location-wrapper {
        display: flex;
        height: 100%;
    }

    .bs-header .cart-location-list .cart-location-item {
        margin-right: 2rem;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .bs-header .cart-location-list .cart-location-item:last-of-type {
        margin-right: 0;
    }

    .bs-header .cart-link {
        display: inline-block;
        width: 2rem;
        position: relative;
        padding-bottom: 1.8rem;
    }

    .bs-header .cart-link .cart-item-count {
        width: 1.8rem;
        height: 1.8rem;
        border-radius: 50%;
        background-color: #ffffff;
        border: 1px solid #bba57a;
        color: #bba57a;
        text-align: center;
        line-height: 1.8rem;
        font-size: 1.2rem;
        font-family: var(--cg-font-family-body, 'Lato', sans-serif);
        position: absolute;
        bottom: 2rem;
        right: -0.5rem;
        display: none;
    }

    .bs-header .cart-link .cart-item-count .sr-only {
        display: none;
    }

    .bs-header .cart-link.cart-has-fooditem .cart-item-count {
        display: block;
    }

    .bs-header .cart-link .sr-only {
        display: block;
        width: auto;
        clip: initial;
        margin: 0;
        bottom: 0.3rem;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.1rem;
        letter-spacing: 1px;
        color: #bba57a;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        text-transform: uppercase;
    }

    .bs-header .mob-menu-wrap {
        position: fixed;
        top: 6.2rem;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
        padding: 1.5rem 15px;
        overflow-y: auto;
        margin: 0;
        z-index: 5;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }


    .bs-header .mob-menu-wrap .mob-nav-list .nav-item.login-wrap .nav-link {
        margin-bottom: 1.5rem;
    }

    .bs-header .mob-menu-wrap .mob-nav-list .nav-item.login-wrap .nav-link:last-of-type {
        margin-bottom: 0;
    }

    .bs-header .mob-menu-wrap.active {
        transform: translateX(0%);
    }

    .bs-header #cart-empty-popup .arrow {
        right: 2rem;
    }


    .bs-banner .banner-cont {
        top: 45%;
    }

    .bs-banner .banner-cont .title-img {
        width: 20rem;
    }

    .bs-banner .banner-cont .title-img.typ-big {
        width: 30rem;
    }

    .bs-banner .banner-cont .title-img.typ-long {
        height: 10rem;
    }

    .bs-banner .banner-cont .banner-desc {
        font-size: 2.2rem;
        line-height: 2.6rem;
        max-width: 100%;
        margin: 2rem auto;
    }

    .bs-banner .banner-cont .banner-subtitle {
        font-size: 4rem;
        line-height: 3.5rem;
        letter-spacing: -2px;
        width: 100%;
        margin: 2rem auto 2rem;
    }

    .bs-banner .banner-cont .btn {
        width: 28rem;
        font-size: 2.6rem;
        line-height: 2.4rem;
        margin: 0rem auto 0;
    }

    .bs-banner .scroll-btn {
        display: none;
    }

    .bs-banner .img-wrap .img-cta-link:first-of-type {
        left: 22%;
        width: 56.5%;
        height: 7.5%;
        bottom: 26.5%;
    }

    .bs-banner .img-wrap .img-cta-link:last-of-type {
        right: auto;
        left: 22%;
        width: 56.5%;
        height: 7.5%;
        bottom: 15.5%;
    }

    .bs-banner .carousel .carousel-indicators {
        bottom: 2vw;
    }

    .bs-banner .carousel .carousel-indicators li:before {
        top: 3px;
        left: 3px;
    }

    .bs-banner .carousel .carousel-control-prev,
    .bs-banner .carousel .carousel-control-next {
        display: none;
    }

    .bs-footer .eclub-wrap {
        padding: 2rem 0 1.5rem;
        background: #e7d8b8;
    }

    .bs-footer .eclub-wrap .bs-form {
        padding: 0 15px;
    }

    .bs-footer .eclub-wrap .bs-form .form {
        flex-direction: column;
        min-width: 25rem;
        max-width: 40rem;
        margin: 0 auto;
        padding-bottom: 1.5rem;
    }

    .bs-footer .eclub-wrap .bs-form .form .form-validation-failed {
        bottom: -2.5rem;
    }

    .bs-footer .eclub-wrap .bs-form .form-title {
        font-size: 1.4rem;
        line-height: 1.8rem;
        width: 100%;
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .bs-footer .eclub-wrap .bs-form .form-group {
        margin: 0 0 20px;
        width: 100%;
        position: relative;
    }

    .bs-footer .eclub-wrap .bs-form .form-group .form-control {
        font-size: 1.1rem;
    }

    .bs-footer .eclub-wrap .bs-form .btn {
        width: 13rem;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .bs-footer .footer-nav {
        padding: 1.5rem 15px;
        background: #000000;
    }

    .bs-footer .footer-nav .primary-nav .nav-item,
    .bs-footer .footer-nav .bottom-foot .nav-item {
        border-right: 1px solid #784c0d;
    }

    .bs-footer .footer-nav .primary-nav .nav-item:last-of-type,
    .bs-footer .footer-nav .bottom-foot .nav-item:last-of-type {
        padding-right: 0.6rem;
    }

    .bs-footer .footer-nav .primary-nav .nav-item:nth-of-type(4),
    .bs-footer .footer-nav .primary-nav .nav-item:nth-of-type(6),
    .bs-footer .footer-nav .bottom-foot .nav-item:nth-of-type(4),
    .bs-footer .footer-nav .bottom-foot .nav-item:nth-of-type(6) {
        border-right: none;
    }

    .bs-footer .footer-nav .bottom-foot {
        flex-direction: column;
    }

    .bs-footer .footer-nav .secondary-nav {
        margin-right: 0;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 27rem;
        margin: 0 auto;
    }

    .bs-footer .footer-nav .secondary-nav .nav-item {
        padding: 0 0.6rem;
        line-height: 1rem;
        margin-bottom: 1rem;
    }

    .bs-footer .footer-nav .secondary-nav .nav-item .nav-link {
        font-size: 1.2rem;
    }

    .bs-footer .footer-nav .bottom-foot .copyright-text {
        width: 90%;
        display: block;
        margin-top: 0.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #bba57a;
        text-align: center;
        text-transform: initial;
    }

    .bs-footer .footer-nav .bottom-foot .social-btn-wrap {
        padding-bottom: 1rem;
    }

    .bs-footer .footer-nav .bottom-foot .social-btn-wrap .btn-list {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bs-footer .footer-nav .bottom-foot .social-btn-wrap .btn-list .social-item {
        margin-right: 2.2rem;
    }

    .bs-footer .footer-nav .bottom-foot .social-btn-wrap .btn-list .social-item:first-of-type {
        margin-left: 0;
    }

    .bs-footer .footer-nav .bottom-foot .social-btn-wrap .btn-list .social-item:last-of-type {
        margin-right: 0;
    }

    .bs-footer .footer-nav .bottom-foot .social-btn-wrap .btn-list .social-item .social-link {
        width: 2.5rem;
        display: block;
    }

    .bs-footer .footer-nav .primary-nav {
        margin-bottom: 1.2rem;
    }
}

@media only screen and (min-width: 992px) {

    #res-wrapper,
    .reservation-wrap {
        display: flex;
    }

    .bs-header {
        padding: 1rem;
        height: auto;
    }

    .header-wrapper .location-wrap {
        display: none;
    }

    .bs-header .nav-list .nav-link {
        font-size: 0.875rem;
    }

    .header-wrapper .bs-header ul.nav-list li.nav-item a.nav-link {
        background-image: linear-gradient(to right,
                #b09c79,
                #b09c79 50%,
                #86714d 50%);
        background-size: 200% 100%;
        background-position: -100%;
        display: inline-block;
        /* padding: 5px 0; */
        position: relative;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: all 0.3s ease-in-out;
    }

    .header-wrapper .bs-header ul.nav-list li.nav-item a.nav-link:before {
        content: '';
        background: #86714d;
        display: block;
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        transition: all 0.3s ease-in-out;
    }

    .header-wrapper .bs-header ul.nav-list li.nav-item a.nav-link:hover,
    .header-wrapper .bs-header ul.nav-list li.nav-item a.nav-link:focus {
        background-position: 0;
    }

    .header-wrapper .bs-header ul.nav-list li.nav-item a.nav-link:hover::before,
    .header-wrapper .bs-header ul.nav-list li.nav-item a.nav-link:focus::before {
        width: 100%;
    }

    .header-wrapper .location-dropdown .location-links ul li {
        line-height: 1.5;
    }

    .header-wrapper .location-dropdown .location-links.desktop-links ul li a,
    .header-wrapper .location-dropdown .location-links.desktop-links ul li a:visited,
    .header-wrapper .location-dropdown .location-links.desktop-links ul li a:hover {
        padding: 0;
    }

    .bs-header .cart-location-list .cart-location-item .selected .selected-location .location-name,
    .bs-header .cart-location-list .cart-location-item .locate-me-wrap.selected .selected-location .location-name,
    .bs-header .cart-location-list .cart-location-item .selected .selected-location .location-num,
    .bs-header .cart-location-list .cart-location-item .selected .non-selected-location,
    .bs-header .cart-location-list .cart-location-item .selected .non-selected-location a,
    .bs-header .cart-location-list .cart-location-item .selected .non-selected-location a:hover,
    .bs-header .cart-location-list .cart-location-item .selected .non-selected-location a:visited,
    .bs-header .cart-location-list .cart-location-item .selected .selected-location .location-link,
    .bs-header .cart-location-list .cart-location-item .selected .selected-location .location-link:visited,
    .bs-header .cart-location-list .cart-location-item .selected .selected-location .location-link:hover,
    .bs-header .cart-location-list .cart-location-item .login-link,
    .bs-header .cart-location-list .cart-location-item .selected-location .location-name,
    .bs-header .cart-location-list .cart-location-item .locate-me-wrap .selected-location .location-name,
    .bs-header .cart-location-list .cart-location-item .selected-location .location-num,
    .bs-header .cart-location-list .cart-location-item .non-selected-location,
    .bs-header .cart-location-list .cart-location-item .locate-me-wrap .non-selected-location,
    .bs-header .cart-location-list .cart-location-item .non-selected-location a,
    .bs-header .cart-location-list .cart-location-item .non-selected-location a:hover,
    .bs-header .cart-location-list .cart-location-item .non-selected-location a:visited,
    .bs-header .cart-location-list .cart-location-item .selected-location .location-link,
    .bs-header .cart-location-list .cart-location-item .selected-location .location-link:visited,
    .bs-header .cart-location-list .cart-location-item .selected-location .location-link:hover {
        font-size: 0.875rem;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: 1.73px;
        font-family: "Lato", 'Lato-Regular', sans-serif;
    }

    .bs-header .mob-menu-wrap ul li a {
        text-transform: uppercase;
        display: block;
    }

    .bs-header .mob-menu-wrap .mob-nav-list.secondary-nav .nav-link {
        font-size: 1.4rem;
        line-height: 1.5;
        padding: 0;
    }



    .header-wrapper .reservation-wrap {
        background-image: none !important;
        box-shadow: none;
    }

    .header-wrapper .reservation-wrap .form-title {
        font-size: 1.2rem !important;
        font-weight: 600;
    }

    .header-wrapper .reservation-wrap .bs-form .selection-wrap .form-group {
        border: 1px solid #ded4c6;

        background-image: none;
    }

    .header-wrapper .location-dropdown .location-selected .location-dropdown-name,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-name a,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-address p,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-address span,
    .header-wrapper .location-dropdown .location-selected .location-dropdown-hours span {
        font-size: 1rem;
    }

    #footer .eclub-wrap {
        background: none;
    }

    #footer #eclub-signup-form .row:nth-of-type(1) {
        max-width: 1440px;
        margin: 0 auto;
    }

    #footer .eclub-wrap form .eclub-input-wrapper {
        margin-bottom: 0;
    }

    #footer .form-group:has(#zip) {
        max-width: 280px;
    }

    #footer form.form .is-email {
        font-size: 1rem;
        letter-spacing: .05em;
    }

    #footer .eclub-btn-wrapper .btn {
        font-size: .9rem;
    }

    #footer .primary-nav li {
        position: relative;
    }

    #footer .primary-nav li a {
        color: #605137;
        text-transform: uppercase;
        letter-spacing: 0.08rem;
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 1rem !important;
    }

    #footer .primary-nav li:after {
        content: "";
        position: absolute;
        width: 1px;
        background-color: #605137;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 40%;
    }

    #footer .primary-nav li:last-of-type:after {
        content: none;
    }

    #footer .secondary-nav .nav-item .nav-link {
        font-size: 0.85rem;
    }
}

@media only screen and (min-width: 1024px) {


    #footer .eclub-wrap .form-title {
        font-size: 1.2rem;
    }
}

@media only screen and (min-width: 1200px) {


    #footer .eclub-btn-wrapper .btn {
        font-size: 1rem;
    }


    #footer #content_body .box,
    #footer .span12.main-cont,
    #footer .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
        box-sizing: border-box;
    }
}