:root {
  --ev-link-hover-state: #FFF;
  --ev-black: #000;
  --ev-orange: #bf770c;
  --ev-light-gold: #ffd16e;
  --ev-smokey-blue: #485060;
  --ev-slate-gray: #79818c;
  --ev-soft-gold: #f2cb65;
  --ev-moderate-gold: #b7995a;
  --ev-gray-silver: #bcc6c8;
  --ev-gray-harbour: #cfcfcf;
  --ev-gray-steel: #abb2bc;
  --ev-gray-charcoal: #22252b;
  --ev-gray-shadow: #292c33;
  --ev-gray-seal: #656565;
  --ev-gray-clouds: #a2adba;
  --ev-gray-cool: #717e8f;
  --ev-gray-blue: #3c4659;
  --ev-gray-pearl-river: #cfcfcf;
  --ev-gray-ivory: #cdcdcd;
  --ev-gray: #4d5460;
  --ev-gray-accent: #abb2bc;
  --ev-blue-smoke: #dcefff;
  --ev-red: #831a2e;
  --ev-gold: #7c6f51;
  --ev-cream: #d1c198;
  --ev-black-coal: #202228;
  --ev-black-onyx: #020001;
  --bg-gradient-gray-anchor: linear-gradient(90deg,
      rgba(41, 44, 51, 1) 0%,
      rgba(65, 77, 99, 1) 50%,
      rgba(41, 44, 51, 1) 100%);
  --bg-gradient-gray-lava: linear-gradient(90deg,
      rgba(97, 108, 126, 1) 0%,
      rgba(34, 37, 42, 1) 50%,
      rgba(97, 108, 126, 1) 100%);
  --bg-gradient-gray-raven: radial-gradient(circle,
      rgba(98, 105, 121, 1) 0%,
      rgba(74, 81, 99, 1) 100%);
  --bg-gradient-gray-join-button: linear-gradient(175deg,
      rgba(41, 45, 54, 1) 0%,
      rgba(65, 76, 98, 1) 50%,
      rgba(41, 45, 54, 1) 100%);
  --bg-gradient-gray-hero-btn: linear-gradient(170deg,
      rgba(235, 239, 239, 1) 0%,
      rgba(112, 115, 117, 1) 100%);
  --ev-body-font: "Montserrat", sans-serif;
  --ev-base-font-size: 1rem;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,800&display=swap");



/* 
 Z-index Reference:
 $zindex-dropdown:                   1000;
 $zindex-sticky:                     1020;
 $zindex-fixed:                      1030;
 $zindex-modal-backdrop:             1040;
 $zindex-modal:                      1050;
 $zindex-popover:                    1060;
 $zindex-tooltip:                    1070; 
 */

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--ev-body-font);
  font-size: var(--ev-base-font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[click],
a,
select,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

nav ul {
  list-style: none;
}

.nav>li>a:focus,
.nav>li>a:hover {
  text-decoration: none;
  background-color: transparent !important;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

input,
select {
  vertical-align: middle;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;

}

/*------------------- Utilities ----------------------------------------------------------------------------------*/

.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;
}

/* Text Colors */
.text-blue-gray {
  color: var(--ev-blue-smoke) !important;
}

.text-silver {
  color: var(--ev-gray-silver) !important;
}

.text-harbour-gray {
  color: var(--ev-gray-harbour) !important;
}

.text-steel-gray {
  color: var(--ev-gray-steel) !important;
}

.text-shadow-gray {
  color: var(--ev-gray-shadow) !important;
}

.text-ivory-gray {
  color: var(--ev-gray-ivory) !important;
}

.text-gray {
  color: var(--ev-gray) !important;
}

.text-red {
  color: var(--ev-red) !important;
}

.text-gold {
  color: var(--ev-gold) !important;
}

.text-cream {
  color: var(--ev-cream) !important;
}

.text-violet {
  color: var(--ev-lilac);
}

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

/* Font Sizes */
.smaller {
  font-size: 80%;
}

.smallest {
  font-size: 0.5rem !important;
}


/* Line Height */
.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

/* ======================================== Background Colors =============================================*/

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

.bg--ev-gradient {
  background: linear-gradient(90deg, rgb(41, 44, 51) 0%, rgb(65, 77, 99) 50%, rgb(41, 44, 51) 100%) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/* Page Background */
.bg-gradient-anchor-gray {
  background-color: #292c33;
  background-color: rgb(41, 44, 51);
  background: linear-gradient(90deg,
      rgba(41, 44, 51, 1) 0%,
      rgba(65, 77, 99, 1) 50%,
      rgba(41, 44, 51, 1) 100%);
}

/* Reservation Banner */
.bg-gradient-gray-lava {
  background-color: #616c7e;
  background-color: rgb(97, 108, 126);
  background: linear-gradient(90deg,
      rgba(97, 108, 126, 1) 0%,
      rgba(34, 37, 42, 1) 50%,
      rgba(97, 108, 126, 1) 100%);
}

/* Join Button */
.bg-gradient-gray-silver {
  background-color: #292d36;
  background-color: rgb(41, 45, 54);
  background: linear-gradient(175deg,
      rgba(41, 45, 54, 1) 0%,
      rgba(65, 76, 98, 1) 50%,
      rgba(41, 45, 54, 1) 100%);
}

/* Hero button */
.bg-gradient-gray-hero-btn {
  background-color: #ebefef;
  background-color: rgb(235, 239, 239);
  background: linear-gradient(170deg,
      rgba(235, 239, 239, 1) 0%,
      rgba(112, 115, 117, 1) 100%);
}

/* Reservation Banner */
.bg-gradient-gray-reservations {
  background-color: #616c7e;
  background-color: rgb(97, 108, 126);
  background: linear-gradient(90deg,
      rgba(97, 108, 126, 1) 0%,
      rgba(34, 37, 42, 1) 50%,
      rgba(97, 108, 126, 1) 100%);
}

/* Buttons */
.bg-gradient-gray-buttons {
  background-color: #6c747f;
  background-color: rgb(108, 116, 127);
  background: linear-gradient(175deg,
      rgba(108, 116, 127, 1) 0%,
      rgba(71, 80, 97, 1) 50%,
      rgba(108, 116, 127, 1) 100%);
}

/* Gift Card Gradient */
.bg-gradient-gray-gift-cards {
  background-color: #626979;
  background-color: rgb(98, 105, 121);
  background: radial-gradient(circle,
      rgba(98, 105, 121, 1) 0%,
      rgba(74, 81, 99, 1) 100%);
}

.bg-gray {
  background-color: var(--ev-gray) !important;
}

.bg-char-gray {
  background-color: var(--ev-gray-charcoal) !important;
}

.bg-shadow-gray {
  background-color: var(--ev-gray-shadow) !important;
}

.bg-black-coal {
  background-color: var(--ev-black-coal) !important;
}

.bg-black-onyx {
  background-color: var(--ev-black-onyx) !important;
}

.bg-blue-gray {
  background-color: var(--ev-blue-smoke) !important;
}

/* Separators */
.hr-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid;
  border-color: #abb2bc !important;
}

.hr-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid;
  border-color: #7c6f51 !important;
}

.hr-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid;
  border-color: #6d737e !important;
}

.hr-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid;
  border-color: #a1aec4 !important;
}

/* Letter spacing */
.ls-1 {
  letter-spacing: 0.0625rem !important;
}

.ls-2 {
  letter-spacing: 0.1rem !important;
}

.ls-3 {
  letter-spacing: 0.125rem !important;
}

.ls-4 {
  letter-spacing: 0.1875rem !important;
}

/* Buttons ----------------------------------------------------------*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: normal;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--ev-body-font);
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.btn-block {
  display: block;
  width: 100%;
}

/* Hero Button */
.btn-silver,
.btn-silver:visited {
  color: var(--ev-black-onyx);
  background-color: #ebefef;
  background-color: rgb(235, 239, 239, 1);
  background: linear-gradient(170deg,
      rgba(235, 239, 239, 1) 0%,
      rgba(112, 115, 117, 1) 100%) !important;
  border: 1.5px solid #656565;
  -webkit-transition: background-color 0.15s ease-in-out,
    border 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border 0.15s ease-in-out;
  letter-spacing: 0.1vw;
}

.btn-silver:hover,
.btn-silver:focus,
.btn-silver:active {
  opacity: 0.8;
  color: var(--ev-black-onyx) !important;
}

/* Buttons */
.btn-glassy,
.btn-glassy:visited {
  color: #d6e8ff;
  background-color: #6c747f;
  background-color: rgb(108, 116, 127);
  background: linear-gradient(175deg,
      rgba(108, 116, 127, 1) 0%,
      rgba(71, 80, 97, 1) 50%,
      rgba(108, 116, 127, 1) 100%) !important;
  border: 0.1rem solid #676e7c;
  letter-spacing: 0.125rem;
  width: 100%;
}

.btn-glassy:hover,
.btn-glassy:focus,
.btn-glassy:active {
  opacity: 0.8;
  color: #fff !important;
}

/*Old styles overwrite*/
.btn-default,
.btn-default:visited {
  font-size: 0.75rem;
  color: #cdcdcd !important;
  background-color: #6c747f;
  background-color: rgb(108, 116, 127);
  background: linear-gradient(175deg,
      rgba(108, 116, 127, 1) 0%,
      rgba(71, 80, 97, 1) 50%,
      rgba(108, 116, 127, 1) 100%) !important;
  border: 0.1rem solid #676e7c !important;
  letter-spacing: 0.125rem;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  opacity: 0.8;
  color: #fff !important;
}

/* Join Button */
.btn-eclub,
.btn-eclub:visited {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  color: #a1aec4;
  background-color: rgb(41, 45, 54);
  background: linear-gradient(175deg,
      rgba(41, 45, 54, 1) 0%,
      rgba(65, 76, 98, 1) 50%,
      rgba(41, 45, 54, 1) 100%) !important;
  /* border: 2px solid #717e8f; */
}

.btn-eclub:hover,
.btn-eclub:active,
.btn-eclub:focus {
  opacity: 0.8;
  color: #fff !important;
}

/* Utilities--------------------------------------------------------------------------*/
/* Borders  */
.border-gray-cool {
  border-color: var(--ev-gray-cool) !important;
}

.border-gray-accent {
  border-color: var(--ev-gray-accent) !important;
}

.border-gray-steel {
  border-color: var(--ev-gray-steel) !important;
}

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

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

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

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

.border-left-0 {
  border-left: 0;
}

.border-right {
  border-right: 1px solid !important;
}

.border-left {
  border-left: 1px solid !important;
}

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

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

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

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

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

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

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

.border-6 {
  border-width: 5px !important;
}

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

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



@media (min-width: 576px) {
  .fixed-top-sm {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
  }

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

@media (min-width: 768px) {
  .fixed-top-md {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
  }

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

@media (min-width: 992px) {
  .fixed-top-lg {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
  }

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

@media (min-width: 1200px) {
  .fixed-top-xl {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    width: 100%;
  }

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

/* Forms */
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
input[type="type"] {
  background: #3c4659;
  border-radius: 0;
  color: #fff;
}

::placeholder,
:-moz-placeholder,
:-ms-input-placeholder,
:-ms-input-placeholder {
  color: #cdcdcd;
}

.form-control {
  border: none !important;
  border-radius: 0 !important;
}


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

/* Header ------------------------------------------------------------------------------------*/

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

#responsiveMobileLoginLink {
  display: flex;
  flex-direction: column;
}

#responsiveMobileLoginLink a:last-child {
  padding-top: 0;
}

header .header-wrapper a:visited,
header .header-wrapper a:hover,
header .header-wrapper a:focus,
header .header-wrapper a:active,
header .desktop-nav li a,
header .desktop-nav-wrapper ul.desktop-nav li a:hover,
header .desktop-nav-wrapper ul.desktop-nav li a:active,
header .desktop-nav-wrapper ul.desktop-nav li a:focus,
header .desktop-nav-wrapper ul.desktop-nav li li a:focus-within {
  text-decoration: none;
  color: var(--ev-link-hover-state, #FFF);
}

#global-alert {
  background-color: #202228;
  color: #bcc6c8;
  width: 100%;
}

a.careers-link,
a.careers-link:visited,
a.global-alert-link,
a.global-alert-link:visited,
#globalMessage a,
#globalMessage a:visited,
#global-alert a:visited,
#global-alert a:hover {
  color: #b3c3d4;

}

#globalMessage,
#global-alert p,
#global-alert a,
.careers-link,
.careers-link:visited,
.careers-link:hover {
  color: #bcc6c8;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}

.careers-link,
.careers-link:visited,
.careers-link:hover {
  background-color: rgb(32, 34, 40);
  color: rgb(188, 198, 200);
  font-size: 0.5rem;
}

#globalMessage,
#global-alert p,
#global-alert a {
  font-size: 0.75rem;
  color: #fff;
  /* color: #bcc6c8; */
}

#dineInMessage {
  width: 100%;
  background-color: #4d5460;
  color: #fff;
  text-align: center;
  letter-spacing: 0.09rem;
}

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

header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #292c33;
  background-image: url("https://media.eddiev.com/images/site/responsive/global/ev-floral-design-header.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 80px;

}

#responsiveMobileLoginLink {
  display: flex;
  flex-direction: column;
}

header .desktop-nav-wrapper {
  margin-left: 1.5rem;
}

header .desktop-nav-wrapper .desktop-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

header .desktop-nav-wrapper ul.desktop-nav li {
  margin-right: 1.5rem;
}

header .desktop-nav li a {
  letter-spacing: 0.1rem;
  padding: 0;
  color: #cdcdcd;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

header .desktop-nav-wrapper ul.desktop-nav li:last-of-type {
  margin-right: 0;
}

header .cart-location-wrapper .cart-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #cdcdcd;
  gap: 1rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.log-in-link a {
  display: block;
}

header .cart-location-wrapper .cart-location .cart-location-item.find-location span a,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link a,
header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-location-name a span,
header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-location-number {
  color: #cdcdcd;
  letter-spacing: 0.1rem;
  padding: 0;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

header .cart-location-wrapper .cart-location .cart-location-item.find-location span a:visited,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link a:visited {
  color: #cdcdcd;
}

header .cart-location-wrapper .cart-location .cart-location-item.find-location span a:hover,
header .cart-location-wrapper .cart-location .cart-location-item.find-location span a:focus,
header .cart-location-wrapper .cart-location .cart-location-item.find-location span a:active,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link a:hover,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link a:focus,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link a:active {
  color: var(--ev-link-hover-state, #FFF);
}

header .cart-location-wrapper .cart-location a,
header .cart-location-wrapper .cart-location .cart-location-link {
  color: #cdcdcd;
  letter-spacing: 0.1rem;
  padding: 0;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

header .cart-location-wrapper .cart-location a:hover,
header .cart-location-wrapper .cart-location a:active,
header .cart-location-wrapper .cart-location a:focus,
header .cart-location-wrapper .cart-location a:focus-within,
header .cart-location-wrapper .cart-location .cart-location-link:hover,
header .cart-location-wrapper .cart-location .cart-location-link:active,
header .cart-location-wrapper .cart-location .cart-location-link:focus,
header .cart-location-wrapper .cart-location .cart-location-link:focus-within {
  text-decoration: none;
  color: var(--ev-link-hover-state, #FFF);
}

header .cart-location-wrapper .cart-location .cart-location-item {
  line-height: 1.4;
  padding: 0 1rem;
}

header .cart-location-wrapper .cart-location .cart-location-item:last-of-type,
header .cart-location-wrapper .cart-location .shopping-bag {
  padding-right: 0;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count {
  position: absolute;
  font-family: var(--ev-body-font) !important;
  background: #cbd1d6;
  border: 2px solid #717e8f;
  color: #020001;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: bold;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count.double-digit {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag a {
  position: relative;
  display: block;
}

.cart-location-wrapper ul.cart-location {
  margin-bottom: 0;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
  background: #b6bec6;
  position: absolute;
  z-index: 1060;
  padding: 1.5rem;
  border-radius: 0.375rem;
  -webkit-box-shadow: 10px 10px 34px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 34px 0 rgba(0, 0, 0, 0.3);
  color: var(--ev-black-onyx);
}

#cart-empty-popup h3 {
  text-transform: uppercase;
  font-weight: 700;
}

#cart-empty-popup .btn {
  text-align: center;
  display: block;
}

#cart-empty-popup p {
  letter-spacing: 0;
  line-height: 1.125rem;
}

header .header-location-name a,
header .cart-location-wrapper .cart-location .cart-location-link,
header .desktop-nav-wrapper .desktop-nav .desktop-nav-link,
header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-change-location-link,
header .mobile-nav-slider-wrapper .mobile-nav-link,
.cart-empty-title {
  font-weight: 600;
}

header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-location-name,
header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-change-location-link,
header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-location-number {
  margin-right: 1.25rem;
}

header .active-location #desktop-location-link-trigger {
  position: absolute;
  top: 0;
  right: 0;
  display: block
}

header .hamburger-button {
  cursor: pointer;
  background: transparent;
  outline: none;
  border: none;
  margin-right: 1.5rem;
  padding: 0;
  width: auto;
  overflow: visible;
  color: inherit;
  font: inherit;
  line-height: normal;
  opacity: 1;
}

/*
 header .hamburger-button:focus,
 header .hamburger-button:focus-within,
 header .hamburger-button:active {
  outline: 5px auto -webkit-focus-ring-color;
 } */

header .hamburger-button .hamburger {
  width: 1.625rem;
  height: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}

.hamburger .top,
.hamburger .bottom {
  background-color: #97a7ba;
}

header .hamburger-button .hamburger i {
  width: 100%;
  height: 0.1875rem;
  opacity: 1;
  background-color: #97a7ba;
  -webkit-transition: -webkit-transform 0.175s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.175s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.175s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.175s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.175s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header .hamburger-button .hamburger.slider-open i.top,
header .hamburger-button.open .hamburger i.top {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

header .hamburger-button .hamburger.slider-open i.bottom,
header .hamburger-button.open .hamburger i.bottom {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

header .mobile-nav-slider-wrapper {
  background-color: #202228;
  color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: auto;
  left: -100%;
  background-color: #212020;
  padding: 3.125rem 0 2.625rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1060;
  padding-bottom: 160px;
  display: none;
  /* visibility: hidden; */
  /* overflow-y: auto; */
}

header .mobile-nav-slider-wrapper.is-open,
header .mobile-nav-slider-wrapper.active {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* visibility: visible; */
  display: block;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

header .mobile-nav-slider-wrapper ul li {
  margin-bottom: 0.5rem;
}

header .mobile-location-information {
  /* visibility: hidden; */
  display: none;
}

header .mobile-location-information,
header .mobile-location-information.is-open,
header .mobile-location-information.open {
  background-color: #202228;
  color: #cdcdcd;
  padding: 1rem;
  width: 100%;
  position: absolute;
  z-index: 1020;
  top: 7.37rem;

}

header .mobile-location-information.is-open,
header .mobile-location-information.open {
  /* visibility: visible; */
  display: block;



}

header .mobile-location-information .rblinks ul li a,
header .mobile-location-information div,
header .mobile-location-information #popRestHrs,
header .mobile-location-information p,
header .mobile-location-information a,
header .mobile-location-information .btn,
header .mobile-location-information span,
header .mobile-location-information ul li a {
  line-height: 1.5;
  color: #cdcdcd;
}

header .mobile-location-information a:hover,
header .mobile-location-information a:active,
header .mobile-location-information a:focus {
  color: #fff;
}

header .mobile-location-information .header-location-details a,
header .mobile-location-information .header-location-details a:visited,
header .mobile-location-information .header-location-address a,
header .mobile-location-information .header-location-address span {
  color: #cdcdcd;
}

.mobile-location-information .header-location-details a:hover,
.mobile-location-information .header-location-details a:active,
.mobile-location-information .header-location-details a:focus,
.mobile-location-information .header-location-address a:hover,
.mobile-location-information .header-location-address a:focus,
.mobile-location-information .header-location-address a:active {
  color: #fff;
}

.ev-mobile-location-dropdown {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.5rem;
  padding: 0 1rem;
  background: url("//media.eddiev.com/images/site/responsive/global/ev-mobile-location-details-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* z-index: 1; */

}


.ev-mobile-location-dropdown .mobile-location-name span {
  display: flex;
  align-self: center;
}



header .mobile-location-information .mobile-location-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#popDirLink:hover,
.rblinks ul li a:hover {
  color: #fff;
  background-color: transparent !important;
}

.mobile-location-information .rblinks li {
  padding: 0;
}

.rblinks ul li a {
  padding: 0;
}

header .mobile-location-information #popRestHrs {
  text-transform: uppercase;
}

header .mobile-location-information #popRestHrs .times {
  float: right;
}

header .mobile-nav-slider-wrapper .mobile-nav {
  margin: 0 1.5rem;
  padding-left: 0;
}

header .mobile-nav-slider-wrapper .mobile-nav-item {
  margin-bottom: 0.5rem;
}

header .mobile-nav-slider-wrapper .mobile-nav-link,
header .mobile-nav-slider-wrapper ul li a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

header .mobile-nav-slider-wrapper .mobile-nav-link:hover,
header .mobile-nav-slider-wrapper .mobile-nav-link:active,
header .mobile-nav-slider-wrapper .mobile-nav-link:focus,
header .mobile-nav-slider-wrapper .mobile-nav-link:focus-within {
  text-decoration: underline;
}

header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-primary {
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid #e1e0df;
  margin-top: -42px;
}

header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-primary .mobile-nav-item:last-of-type {
  margin-bottom: 0;
}

header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary {
  padding-top: 1.5rem;
}

header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary .mobile-nav-item {
  margin-bottom: 0.75rem;
}




/* Footer  ------------------------------------------------------------------------------------ */
.img-privacy-notice {
  width: 2rem;
}

footer .section-social .x-icon img {
  width: 1.75rem;
}

footer .divider {
  border-top: 0.0625rem solid #a1aec4;
}

#mobile-footer,
#desktop-footer,
footer {
  width: 100%;
}

#mobile-footer .section-copyright {
  padding-bottom: 1rem;
}

#desktop-footer {
  display: none;
}

header #mobile-dropdown-arrow {
  background: none;
  border: none;
  outline: none;
  position: absolute;
  z-index: 2;
  right: 15px;
}

#mobile-footer .section-sticky a {
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #a1aec4 !important;
  letter-spacing: 0.07rem;
  text-decoration: none;
}

#mobile-footer .section-sticky a:hover {
  color: #fff;
}

#mobile-footer .section-sticky {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#mobile-footer .section-sticky .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mobile-footer .section-sticky .col:first-child {
  border-left: none;
}

#mobile-footer .section-sticky .col:last-child {
  border-right: none;
}

#mobile-footer .section-footer-nav .nav li a:visited,
#mobile-footer .section-footer-nav a,
#mobile-footer p {
  color: var(--ev-gray-steel);
}

#mobile-footer .section-footer-nav .nav li a:hover,
#mobile-footer .section-footer-nav .nav li a:focus,
#mobile-footer .section-footer-nav .nav li a:active {
  color: #fff;
}

#mobile-footer .section-footer-nav a.nav-link {
  padding: 0rem;
  line-height: 1.5;
}

#mobile-footer .section-footer-nav a:after {
  content: "|";
  display: inline-flex;
  padding: 0 3.9px;
}

#mobile-footer .section-footer-nav li:last-of-type a:after {
  content: "";
}

#desktop-footer .nav {
  justify-content: center;
}

#desktop-footer .section-footer-nav ul li a,
#desktop-footer .section-footer-nav ul li a:visited {
  color: var(--ev-gray-ivory);
  text-transform: uppercase;
}

#desktop-footer .section-footer-nav ul li a:hover,
#desktop-footer .section-footer-nav ul li a:focus,
#desktop-footer .section-footer-nav ul li a:active {
  color: var(--ev-link-hover-state, #FFF);
}

#desktop-footer .section-footer-nav ul li a:after {
  content: "|";
  display: inline-flex;
  padding: 0 1rem;
}

#desktop-footer .section-footer-nav ul li:last-of-type a:after {
  content: "";
}

#desktop-footer .section-footer-nav ul.nav a.nav-link {
  padding: 0.5rem 0;
}

#desktop-footer .section-copyright ul li a,
#desktop-footer .section-copyright ul li a:visited,
#desktop-footer .section-copyright p {
  color: var(--ev-gray-steel);
}

#desktop-footer .section-copyright ul li a:hover,
#desktop-footer .section-copyright ul li a:focus,
#desktop-footer .section-copyright ul li a:active {
  color: var(--ev-link-hover-state, #FFF);
}

#desktop-footer .section-copyright ul.nav a.nav-link {
  padding: 0rem;
}

#desktop-footer .section-copyright ul li a:after {
  content: "|";
  display: inline-flex;
  padding: 0 0.6rem;
}

#desktop-footer .section-copyright ul li:last-of-type a:after {
  content: "";
}

/* EClub Section------------------------------------- */
.section-eclub {
  background-image: url("https://media.eddiev.com/en_us/images/marketing/ev-eclub-banner-bground.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: auto !important;
}

#eclub-signup-form .btn.btn-eclub,
.section-eclub input,
.section-eclub .btn.btn-eclub,
.section-eclub input[type="text"] {
  height: 35px !important;
}

#desktop-footer .section-copyright ul.nav a.nav-link,
#desktop-footer .section-copyright p {
  font-size: 0.56rem !important;
}



.section-eclub input[type="text"],
.section-eclub #eclub-signup-form .eclub-zip {
  width: 100%;
}

.section-eclub .section-eclub--copy,
.section-eclub #eclub-form-copy {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03rem;
  font-family: Montserrat, sans-serif;
}

.section-footer-nav a.nav-link {
  font-size: 0.68rem;
}


#eclub-signup-form input {
  background: var(--ev-gray-blue);
  color: #fff;
}

#eclub-signup-form input::placeholder,
#eclub-signup-form input::-moz-placeholder,
#eclub-signup-form input:-moz-placeholder {
  color: #d5e7f7;
}

#eclub-signup-form h2,
#eclub-form-title {
  letter-spacing: 2px;
  color: #cdcdcd;
  text-align: center;
  text-transform: uppercase;
}

#eclub-form-title,
#eclub-form-copy {
  color: #CDCDCD;
}

.section-eclub .text-small {
  font-size: 0.75rem;
}


/* Mobile */

header .mobile-nav-slider-wrapper .mobile-nav-link {
  font-size: 1.5rem;
  line-height: 1.5;
}

header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary .mobile-nav-link,
header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary a {
  font-size: 1.3rem;
}

#responsiveMobileLoginLink a.mobile-nav-link:last-child {
  padding-top: 0px;
}

/* #res-wrapper {
 display: none;
 } */

header .desktop-nav-wrapper,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link,
header .cart-location-wrapper .cart-location .cart-location-item.current-location,
header .cart-location-wrapper .cart-location .cart-location-item.find-location {
  display: none;
}

header .cart-location-wrapper .cart-location {
  font-size: 0.75rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.find-location a,
header .cart-location-wrapper .cart-location .cart-location-item.find-location span,
header .cart-location-wrapper .cart-location #no-location-selected a,
header .cart-location-wrapper .cart-location #no-location-selected span {
  font-size: 0.75rem;
}

header .cart-location-wrapper .cart-location a,
header .cart-location-wrapper .cart-location .cart-location-link {
  font-size: 0.75rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
  right: 1rem;
  width: 300px;
}

#cart-empty-popup h3 {
  font-size: 1rem;
}

#cart-empty-popup .btn {
  font-size: 0.8rem;
  height: 35px;
  font-size: 0.8rem;
  line-height: 35px;
  padding: 0 0.75rem;
}

#cart-empty-popup #close-cart-empty-popup img,
#cart-empty-popup #close-cart-empty-popup svg {
  width: 1rem;
}

#cart-empty-popup p {
  font-size: 0.7rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count {
  bottom: 0.125rem;
  right: -0.3125rem;
  font-size: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count.double-digit {
  width: 1.7rem;
  height: 1.7rem;
  line-height: 1.7rem;
}

header .header-wrapper .logo-wrapper {
  width: 6rem;
}

header .reservation-button img {
  width: 4.5rem;
}


header .active-location img#desktop-location-link-trigger-icon {
  width: 0.75rem;
}





header #mobile-dropdown-arrow {
  top: 4.5rem;
}

#mobile-dropdown-arrow img {
  width: 1rem;
  height: 3.5rem;
}

.ev-mobile-location-dropdown .mobile-location-name,
#mobile-location-dropdown {
  display: flex;
  align-items: center;
  width: 100%;
  color: #292c33;
  text-transform: uppercase;
  outline: none;
  font-weight: 600;

}



.ev-mobile-location-dropdown .mobile-location-name .arrow-down {
  font-size: 24px;
  display: flex;
  justify-self: flex-end;
}

header .mobile-location-information .mobile-location-name .mobile-location-pin {
  width: 1rem;
  margin-right: 0.625rem;
}

.ev-mobile-location-dropdown .mobile-location-name #mobileOverlayRestName {
  width: 100%;
}

.ev-mobile-location-dropdown .mobile-location-name span,
.ev-mobile-location-dropdown .mobile-location-name #mobileOverlayRestName {
  font-size: 1rem;
  letter-spacing: 0.03rem;
  display: flex;
  align-self: center;
  font-weight: 600;
}

.ev-mobile-location-dropdown img.mobile-location-pin {
  margin-right: 10px;
  width: 1rem;
}



#globalMessage {
  font-size: 0.75rem;
}

footer .section-social img {
  width: 2rem;
}

#desktop-footer .section-copyright ul.nav a.nav-link,
#desktop-footer .section-copyright p {
  font-size: 0.625rem;
}

#mobile-footer .section-footer-nav {
  font-size: 0.875rem;
}

#mobile-footer .section-copyright p,
#mobile-footer .section-copyright a {
  font-size: 0.7rem;
}

#desktop-footer .section-footer-nav ul li a {
  font-size: 0.8rem;
}


#dineInMessage {
  padding: 1rem 0.5rem;
  font-size: 0.7rem;
}

.section-eclub .btn.btn-eclub {
  font-size: 0.9rem;
  height: 35px;
}

#eclub-signup-form h2,
#eclub-form-title {
  font-size: 1rem;
}

#eclub-signup-form input {
  font-size: 0.75rem;
  height: 35px;
}

#eclub-signup-form input::placeholder,
#eclub-signup-form input::-moz-placeholder,
#eclub-signup-form input:-moz-placeholder {
  font-size: 0.75rem;
}

.section-eclub .btn.btn-eclub {
  letter-spacing: 0.05rem;
}

#mobile-footer .section-sticky .col,
#mobile-footer .section-sticky .col-auto {
  flex: 0 0 100% !important;
  width: 100% !important;
  flex-direction: column;
}

.section-sticky .col,
.section-sticky .col-auto {
  border-bottom: 1px solid #abb2bc;
  border-left: 0;
  border-right: 0;
}

.section-sticky .col:last-child {
  border-bottom: 0;
}

/* #eclub-signup-form .col-even {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-right: 0;
  padding-left: 0;
 } */

/* .section-eclub .section-eclub__inner .col-7,
 .section-eclub .section-eclub__inner .col-5 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
 } */

.section-eclub #eclub-signup-form input {
  margin-bottom: 15px;
}

.section-eclub .btn.btn-eclub {
  font-size: 4vw;
  letter-spacing: 0.05rem;
}


#eclub-signup-form h2,
#eclub-form-title {
  font-size: 3vw;
  margin-bottom: 1rem;
  margin-top: 1rem;
}



.section-eclub input,
.section-eclub .btn.btn-eclub {
  height: 35px;
}

header .mobile-location-information .rblinks ul li a,
header .mobile-location-information div,
header .mobile-location-information #popRestHrs,
header .mobile-location-information p,
header .mobile-location-information a,
header .mobile-location-information .btn,
header .mobile-location-information span,
header .mobile-location-information ul li a {
  font-size: 0.75rem;
}

header .desktop-nav li a {
  font-size: 0.75rem;
}

header .mobile-nav-slider-wrapper .mobile-nav-link {
  font-size: 1.4rem;
  line-height: 1.5;
}

header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary .mobile-nav-link,
header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary a {
  font-size: 1.2rem;
}

/* 
 .global-alert-link,
 .careers-link {
 display: none;
 } */



header .desktop-nav-wrapper,
header .cart-location-wrapper .cart-location .cart-location-item.log-in-link,
header .cart-location-wrapper .cart-location .cart-location-item.current-location,
header .cart-location-wrapper .cart-location .cart-location-item.find-location {
  display: none;
}

header .cart-location-wrapper .cart-location {
  font-size: 0.75rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.find-location a,
header .cart-location-wrapper .cart-location .cart-location-item.find-location span,
header .cart-location-wrapper .cart-location #no-location-selected a,
header .cart-location-wrapper .cart-location #no-location-selected span {
  font-size: 0.75rem;
}

header .cart-location-wrapper .cart-location a,
header .cart-location-wrapper .cart-location .cart-location-link {
  font-size: 0.75rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
  right: 1rem;
  width: 300px;
}

#cart-empty-popup h3 {
  font-size: 1rem;
}

#cart-empty-popup .btn {
  font-size: 0.8rem;
  height: 35px;
  font-size: 0.8rem;
  line-height: 35px;
  padding: 0 0.75rem;
}

#cart-empty-popup #close-cart-empty-popup img,
#cart-empty-popup #close-cart-empty-popup svg {
  width: 1rem;
}

#cart-empty-popup p {
  font-size: 0.7rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count {
  bottom: 0.125rem;
  right: -0.3125rem;
  font-size: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
}

header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count.double-digit {
  width: 1.7rem;
  height: 1.7rem;
  line-height: 1.7rem;
}

header .header-wrapper .logo-wrapper {
  width: 6rem;
}

header .reservation-button img {
  width: 4.2rem;
}

header .mobile-location-information {
  width: 100%;
}

header .active-location img#desktop-location-link-trigger-icon {
  width: 0.75rem;
}

/* .ev-mobile-location-dropdown {
  top: 4.375rem;
  left: 0;
  height: 3.5rem;
  padding: 0 1rem;
 } */

/* #mobile-location-dropdown {
  height: 3.5rem;
 } */

header #mobile-dropdown-arrow {
  top: 4.375rem;
}

#mobile-dropdown-arrow img {
  width: 0.75rem;
  height: 3.5rem;
}



#dineInMessage {
  padding: 1rem 0.5rem;
  font-size: 0.7rem;
}

header .mobile-location-information .mobile-location-name .mobile-location-pin {
  width: 1rem;
  margin-right: 0.625rem;
}

.ev-mobile-location-dropdown .mobile-location-name span,
.ev-mobile-location-dropdown .mobile-location-name span#mobileOverlayRestName {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  display: flex;
  align-self: center;
}

.ev-mobile-location-dropdown img.mobile-location-pin {
  margin-right: 10px;
  width: 0.75rem;
}

footer .section-social img {
  width: 2rem;
}

#desktop-footer .section-copyright ul.nav a.nav-link,
#desktop-footer .section-copyright p {
  font-size: 0.625rem;
}

#mobile-footer .section-footer-nav {
  font-size: 0.875rem;
}

#mobile-footer .section-copyright p,
#mobile-footer .section-copyright a {
  font-size: 0.7rem;
}

#mobile-footer .section-sticky a {
  font-size: 0.6rem;
}

#desktop-footer .section-footer-nav ul li a {
  font-size: 0.8rem;
}

.section-eclub .btn.btn-eclub {
  font-size: 2.2vw;
}

#eclub-signup-form h2,
#eclub-form-title {
  font-size: 0.7rem;
  margin-bottom: 1rem;

}

#eclub-signup-form input {
  font-size: 0.75rem;
}

#eclub-signup-form input::placeholder,
#eclub-signup-form input::-moz-placeholder,
#eclub-signup-form input:-moz-placeholder {
  font-size: 0.75rem;
}


/* Date Picker --------------------------------------------------------------------------------*/
#ui-datepicker-div {
  background-color: #292c33;
  color: #cdcdcd;
  border: 1px solid #77808a;
  padding: 0.875rem;
  z-index: 999999 !important;
  display: none;
  /*48096*/
}

.ui-datepicker-header .ui-datepicker-prev {
  float: left;
  background-position: center 0px;
  background-image: url("https://media.eddiev.com/stage/stage3/images/site/prev-arrow.png");
  left: 0;
  position: relative;
  top: 5px;
  background-repeat: no-repeat !important;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

.ui-datepicker-header .ui-datepicker-next {
  float: right;
  background-position: center 0px;
  background-image: url("https://media.eddiev.com/stage/stage3/images/site/next-arrow.png");
  background-repeat: no-repeat !important;
  position: relative;
  right: 0;
  top: 5px;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

.ui-datepicker-prev span.ui-icon,
.ui-datepicker-next span.ui-icon {
  color: transparent !important;
}

.ui-corner-all {
  cursor: pointer;
}

.ui-datepicker td,
.ui-datepicker th {
  text-align: center;
}

.ui-datepicker-unselectable.ui-state-disabled span {
  color: #fff;
  background-color: #a2adba;
  cursor: not-allowed;
}

.ui-datepicker td,
.ui-datepicker th {
  font-size: 0.875rem;
}

.ui-datepicker-calendar th span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.3em;
}

.ui-datepicker-header.ui-widget-header {
  padding: 0.75rem;
  position: relative;
}

.ui-datepicker-header.ui-widget-header a {
  text-decoration: none;
}

.ui-datepicker-header.ui-widget-header .ui-datepicker-prev {
  float: left;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ui-datepicker-header.ui-widget-header .ui-datepicker-next {
  float: right;
  text-align: right;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ui-datepicker-title {
  color: #cdcdcd;
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: bold;
}

#ui-datepicker-div a {
  text-decoration: none !important;
  display: block;
  font-size: 0.75rem;
  text-align: center;
}

.ui-datepicker-calendar a.ui-state-default {
  background-color: #a2adba;
  color: #020001;
  border: 1px solid #77808a;
}

#ui-datepicker-div a:hover,
.ui-datepicker-calendar a.ui-state-default:hover,
.ui-datepicker-calendar a.ui-state-default:focus,
.ui-datepicker-calendar a.ui-state-default:active {
  color: #fff;
}

.ui-datepicker .ui-datepicker-calendar td,
.ui-datepicker .ui-datepicker-calendar th {
  border: 0.4em solid #cbd1d6;
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.ui-datepicker .ui-datepicker-calendar th {
  background-color: #292c33;
  color: #cdcdcd;
}

.ui-datepicker-week-end.ui-datepicker-other-month.ui-datepicker-unselectable.ui-state-disabled,
.ui-datepicker-other-month.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #a2adba;
  border: 0.4em solid #cbd1d6;
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-unselectable.ui-state-disabled span.ui-state-default {
  color: #cdcdcd;
  background-color: #a2adba;
  display: block;
  text-align: center;
  font-size: 0.75rem;
  border: 1px solid #77808a;
}

/* Reservation Widget -------------------------------------------------------------------------*/

label[for="res-phone"],
label[for="res-email"] {
  margin-top: 0.5rem;
}

input[type="text"] {
  height: 40px;
  line-height: 35px;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  border-radius: 0;
  outline: 0;
}

input:-ms-input-placeholder,
input::-webkit-input-placeholder {
  color: #cdcdcd;
  font-size: 0.75rem;
}

#full-info label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

#res-bg {
  display: none;
}

#res-wrapper .input-position {
  margin-top: -1px !important;
  height: 35px;
  line-height: 35px;
}

#res-wrapper,
.res-wrapper {
  display: none;
  width: 100%;
  min-height: 4.5rem;
  padding: 1rem 0;
  background: rgb(97, 108, 126);
  background: linear-gradient(90deg,
      rgba(97, 108, 126, 1) 0%,
      rgba(34, 37, 42, 1) 50%,
      rgba(97, 108, 126, 1) 100%);
}

#res-wrapper .holder.ab-holder {
  display: none;
}

.res-subheader {
  color: #cdcdcd;
  float: left;
  width: 20%;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  margin-bottom: 0;
  height: 35px;
  line-height: 35px;
}

#resdatepicker,
#res-locations,
#res-time,
#res-guest-num {
  outline: none;
  width: 100%;
  background-color: #292c33;
  border: none;
  color: #cdcdcd;
  font-size: 0.7rem;
  height: 35px;
  line-height: 35px;
  padding: 0 0.75rem;
  background-image: url("https://media.eddiev.com/images/site/responsive/global/reservation-widget-dropdown-arrow-2.svg") !important;
  box-shadow: inset 0px 20px 10px -15px #4d5463 !important;
  border: 0.1rem solid #47505d;
  background-repeat: no-repeat !important;
  background-size: 0.7rem;
  background-position-x: 97%;
  background-position-y: 50%;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#resdatepicker::placeholder {
  color: #cdcdcd;
  opacity: 1;
  font-size: 0.7rem;
}

#res-locations option,
#res-locations optgroup,
#res-time option,
#res-time optgroup,
#res-guest-num option,
#res-guest-num optgroup {
  font-size: 0.7rem;
  color: #cdcdcd;
  text-transform: uppercase;
  background: #3c4659;
}

#party-info,
#temp-res-btn {
  display: none;
}

#quick-info span.select-wrapper {
  height: 35px;
  line-height: 35px;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
}

#quick-info #resdatepicker::placeholder {
  color: #cdcdcd;
  font-size: 0.7rem;
}

#Reservation-Widget-Form {
  background: none !important;
}

#res-available {
  width: 100%;
  text-align: center;
  display: inline-block;
  height: auto;
  background: #cbd1d6;
  margin-top: 0.5em !important;
  padding: 1em 0;
  color: #000;
}

#res-available .available-times {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #000;
}

.res-button {
  padding: 0.1em 0.5em;
  background: rgb(108, 116, 127);
  background: linear-gradient(175deg,
      rgba(108, 116, 127, 1) 0%,
      rgba(71, 80, 97, 1) 50%,
      rgba(108, 116, 127, 1) 100%);
  border: 0.1rem solid #676e7c;
  letter-spacing: 0.05rem;
  color: #cdcdcd;
  cursor: pointer;
  margin: 0 0.5em;
}

#full-info .split {
  width: 50%;
  display: block;
  color: #020001;
  /* margin-top: 2rem; */
}

#res-additional {
  width: 100%;
  padding: 0 30px;
}

#res-summary,
#res-personal {
  padding-left: 27px;
}

#res-personal {
  margin-top: 25px;
}

#res-wrapper a.privacyNotice,
#res-wrapper a.privacyNotice:visited {
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  font-size: 0.8em;
  position: absolute;
  left: 0;
  bottom: 3em;
  color: #020001;
}

#res-wrapper a.privacyNotice:hover,
#res-wrapper a.privacyNotice:active,
#res-wrapper a.privacyNotice:focus {
  color: #020001;
}

#full-info {
  background: #cbd1d6;
  position: absolute;
  width: 100%;
  padding: 5em 0;
  top: 0;
}

#full-info h1.res-header {
  font-size: 1.2rem;
  letter-spacing: 4px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.42);
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  background: #202228;
  padding: 1em 0;
  color: #cdcdcd;
  text-align: center;
  text-transform: uppercase;
}

#summary-location,
#summary-time {
  width: 100%;
}

#summary-time p {
  margin: 0;
}

#summary-location p {
  font-size: 0.875em;
}

#summary-edit,
#res-personal h2 {
  margin-left: -0.2em;
}

#summary-edit p {
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}

#res-personal h2 {
  margin-bottom: 0.5em;
}

#res-personal .form-row {
  display: block;
  width: 100%;
  float: left;
}

#res-personal .form-row .form-col {
  width: 45%;
  float: left;
  margin: 0 1em 0 0;
}

#res-summary,
#res-personal,
#res-additional {
  width: 100%;
  position: relative;
}

#res-additional-info {
  margin-top: 0;
}

#res-additional h2,
#res-personal h2,
#res-dob h2,
#summary-location h3,
#summary-time h3 {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #020001;
  font-weight: 700;
}

#res-tcg-insider {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#res-additional .res-checkbox {
  width: 15px;
  height: 15px;
  padding: 0.5em;
  cursor: pointer;
  border: 1px solid #717e8f;
  background: #3c4659;
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

#res-tcg-insider:checked~.res-checkbox::after {
  content: "";
  width: 1em;
  height: 0.3em;
  background: 0 0;
  border: 2px solid #cdcdcd;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 0.3em;
  left: 0;
}

input[type="checkbox"]:checked+span:after {
  opacity: 1;
}

#res-insider .check-wrapper {
  display: flex;
  align-items: center;
}

.insider-text {
  font-size: 0.7em;
  position: relative;
  margin-left: 0.5rem;
}

#res-btn {
  margin: 3rem 0;
  padding: 0;
  background: none;
  border: none;
  margin-left: 285px;
}

#res-btn span {
  display: block;
  padding: 0 1.5rem;
  height: 40px;
  line-height: 40px;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #cdcdcd;
  background-color: #6c747f;
  background: rgb(108, 116, 127);
  background: linear-gradient(175deg,
      rgba(108, 116, 127, 1) 0%,
      rgba(71, 80, 97, 1) 50%,
      rgba(108, 116, 127, 1) 100%);
}

#res-btn :hover,
#res-btn :active,
#res-btn :focus {
  opacity: 0.8;
}

#res-additional textarea {
  margin: 0.5em 0 1.5em 0;
  outline: none;
  width: 80%;
  min-height: 70px;
}

#res-additional p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

#res-dob {
  margin-top: 2rem;
}

#res-dob h2 {
  margin-bottom: 0.3em;
}

#party-info {
  width: 100%;
  text-align: center;
  padding: 0 0 1em 0;
  margin-top: 0;
}

#party-info-inner {
  display: inline-block;
  background-color: #cbd1d6;
  width: 100%;
  padding: 1em 0;
  margin: -0.5em 0;
}

span.select-wrapper.birthDate:last-of-type {
  margin-right: 0;
}

.styled-select {
  background: none !important;
}

#res-additional span.select-wrapper.birthDate {
  width: 25%;
  height: 38px;
  line-height: 35px;
  width: 25%;
  margin-right: 10px;
  float: left;
  position: relative;
  background-color: #3c4659 !important;
  padding: 0;
}

#res-additional span.select-wrapper.birthDate select {
  width: 100%;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #3c4659 !important;
  color: #cdcdcd;
  outline: none;
  font-size: 0.7rem;
  padding: 0 0 0 0.75rem;
  box-shadow: inset 0px 20px 10px -15px #4d5463;
  border: 0.1rem solid #47505d;
  background-image: url("https://media.eddiev.com/images/site/responsive/global/reservation-widget-dropdown-arrow-2.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 0.7rem;
  background-position-x: 97%;
  background-position-y: 50%;
  cursor: pointer;
  text-transform: uppercase;
  opacity: 1;
}

select option,
select optgroup {
  background: #3c4659;
  color: #cdcdcd;
}

#Reservation-Widget-Form {
  background: none !important;
}

#res-available .available-times {
  font-size: 0.8em;
  line-height: 1.5em;
  color: #000;
}

#res-available h3 {
  font-size: 1.3em;
  line-height: 1.5em;
}

#full-info {
  background: #cbd1d6;
  position: absolute;
  width: 100%;
  padding: 5em 0;
  top: 0;
}

#summary-location,
#summary-time {
  width: 100%;
}

#summary-time p {
  margin: 0;
}

#summary-edit,
#res-personal h2 {
  margin-left: -0.2em;
}

#summary-edit p {
  font-weight: bold;
  cursor: pointer;
}

#res-personal h2 {
  margin-bottom: 0.5em;
}

#res-personal .form-row {
  display: block;
  width: 100%;
  float: left;
}

#res-personal .form-row .form-col {
  width: 45%;
  float: left;
  margin: 0 1em 0 0;
}

#summary-table {
  position: absolute;
  width: auto;
  text-align: center;
  top: 0;
  right: 30px;
}

#summary-table h1 {
  font-size: 1.5rem;
  position: relative;
  text-transform: uppercase;
  font-weight: 800;
  color: #020001;
  box-shadow: none;
}

#summary-table h3 {
  font-size: 1rem;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #020001;
}

#summary-time p {
  margin: 0;
  font-size: 0.875em;
}

input[type="checkbox"]:checked+span:after {
  opacity: 1;
}

#res-tcg-insider {
  display: none;
}

#res-dob {
  margin-top: 0.5em;
}

#res-dob h2 {
  margin-bottom: 0.3em;
}

#party-info {
  width: 100%;
  text-align: center;
  padding: 0 0 1em 0;
  margin-top: 0;
}

#party-info-inner {
  display: inline-block;
  background-color: #cbd1d6;
  width: 100%;
  padding: 1em 0;
  margin: -0.5em 0;
}

#success-modal h1 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

#success-modal h2:first-of-type {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

#success-modal h2:nth-of-type(2) {
  font-size: 1rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

#success-location-details p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.success-info {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  margin-bottom: 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

#success-modal .success-info:nth-of-type(2) {
  position: relative;
}

#success-edit button {
  width: 113%;
}

.conf-cxl-tri {
  border-left: 16px solid transparent;
  border-right: 14px solid transparent;
  border-top: 24px solid #b6bec6;
}

#success-modal .success-info:nth-of-type(4) {
  border-right: none;
}

.success-info h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

a#success-edit {
  margin-right: 30px;
}

#success-edit button,
#success-cancel button {
  background-color: #6c747f;
  background: rgb(108, 116, 127);
  background: linear-gradient(175deg,
      rgba(108, 116, 127, 1) 0%,
      rgba(71, 80, 97, 1) 50%,
      rgba(108, 116, 127, 1) 100%);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #cdcdcd;
  border: 0;
  border-radius: 0;
}

#success-modal {
  display: none;
  background-color: #cbd1d6;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 450px;
  padding: 1.5rem;
  z-index: 999999;
}

/* Media Queries --------------------------------------------------------------------------------*/

/* GLOBAL */

@media only screen and (min-width: 360px) and (orientation: portrait) {
  header .header-wrapper .logo-wrapper {
    width: 7rem;
  }

  #eclub-signup-form h2,
  #eclub-form-title {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 375px) {
  .section-footer-nav a.nav-link {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 390px) and (orientation: portrait) {
  header .mobile-nav-slider-wrapper .mobile-nav-link {
    font-size: 1.85rem;
    line-height: 2.625rem;
  }

  header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary .mobile-nav-link,
  header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary a {
    font-size: 1.5rem;
  }

  #dineInMessage {
    font-size: 0.8rem;
  }

  #eclub-signup-form input::placeholder,
  #eclub-signup-form input::-moz-placeholder,
  #eclub-signup-form input:-moz-placeholder {
    font-size: 0.75rem;
  }


}


@media only screen and (min-width: 412px) and (orientation: portrait) {
  #dineInMessage {
    font-size: 1rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag {
    margin-right: 1rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag img {
    width: 2.2rem;
  }

  #mobile-footer .section-footer-nav {
    font-size: 1rem;
  }

  #mobile-footer .section-sticky a {
    font-size: 0.75rem;
  }

  .section-eclub .btn.btn-eclub {
    font-size: 0.75rem;
  }

  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 0.8rem;
  }

}

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

  #eclub-signup-form h2,
  #eclub-form-title {
    font-size: 1.25rem;
  }

  .section-eclub input,
  .section-eclub .btn.btn-eclub {
    height: 35px;
  }

  .ev-mobile-location-dropdown img.mobile-location-pin {
    margin-right: 10px;
    width: 1rem;
  }

  #mobile-dropdown-arrow img {
    width: 0.9rem;
  }

  header .reservation-button img {
    width: 4.5rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag img {
    width: 2rem;
    margin-right: 1rem;
  }

  header .header-wrapper .logo-wrapper {
    width: 8rem;
  }

  .ev-mobile-location-dropdown {
    top: 4.5rem;
    left: 0;
    height: 3.5rem;
  }

  header #mobile-dropdown-arrow {
    top: 4.5rem;
    height: 3.5rem;
  }



  /* #mobile-location-dropdown {
    height: 3.5rem;
  } */

  .ev-mobile-location-dropdown .mobile-location-name span {
    display: flex;
    align-items: center;
    letter-spacing: 0.125rem;
    font-weight: 500;
    font-size: 1rem;
  }


  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 0.75rem;
  }

  .header-location-address a span,
  .header-location-address #overlayRestName {
    font-size: 0.9rem;
  }


  #dineInMessage {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }


  .section-eclub .btn.btn-eclub {
    font-size: 0.75rem;
  }

  #eclub-form-title,
  #eclub-signup-form h2 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
    right: 1rem;
    width: 300px;
  }



  div#cart-empty-popup .btn.btn-default {
    height: 35px;
    line-height: 35px;
    padding: 0 0.75rem;
  }

  #eclub-signup-form h2,
  #eclub-form-title {
    font-size: 1rem;
  }

  #eclub-signup-form input {
    font-size: 0.75rem;
  }

  #eclub-signup-form input::placeholder,
  #eclub-signup-form input::-moz-placeholder,
  #eclub-signup-form input:-moz-placeholder {
    font-size: 0.75rem;
  }

  #mobile-footer .section-footer-nav a,
  #mobile-footer p {
    font-size: 0.7rem;
  }

  #mobile-footer .section-footer-nav,
  #mobile-footer .section-footer-nav a.nav-link {
    font-size: 0.875rem;
  }

  footer .section-social img {
    width: 2.5rem;
  }
}

@media only screen and (min-width: 568px) {
  header .reservation-button img {
    width: 4.5rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag img {
    width: 2rem;
    margin-right: 1rem;
  }

  header .header-wrapper .logo-wrapper {
    width: 8rem;
  }

  .ev-mobile-location-dropdown {
    top: 4.5rem;
    left: 0;
    height: 3.5rem;
  }

  header #mobile-dropdown-arrow {
    top: 4.5rem;
  }



  .ev-mobile-location-dropdown .mobile-location-name span {
    display: flex;
    align-items: center;
  }



  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 0.9rem;
  }

  .header-location-address a span,
  .header-location-address #overlayRestName {
    font-size: 1rem;
  }


  #dineInMessage {

    font-size: 1.3rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
    right: 1rem;
    width: 300px;
  }

  div#cart-empty-popup .btn.btn-default {
    height: 35px;
    line-height: 35px;
    padding: 0 0.75rem;
  }



  #eclub-signup-form h2,
  #eclub-form-title {
    font-size: 1rem;
  }

  #eclub-signup-form input,
  #eclub-signup-form input::placeholder,
  #eclub-signup-form input::-moz-placeholder,
  #eclub-signup-form input:-moz-placeholder {
    font-size: 0.75rem;
  }

  .section-eclub .btn.btn-eclub {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 600px) and (orientation: portrait) {
  header .header-wrapper .logo-wrapper {
    width: 9rem;
  }

  #eclub-signup-form h2,
  #eclub-form-title {
    font-size: 1.2rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count {
    right: 0.75rem;
  }

  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 0.9rem;
  }

  #overlayRestName {
    font-size: 1rem;
  }

  .ev-mobile-location-dropdown .mobile-location-name span {
    font-size: 1rem;
  }

  .ev-mobile-location-dropdown .mobile-location-name.active .arrow-down {
    transform: rotate(180deg) translateY(0%);
  }

  .ev-mobile-location-dropdown .mobile-location-name span,
  .ev-mobile-location-dropdown .mobile-location-name span#mobileOverlayRestName {
    font-size: 1rem;
    letter-spacing: 0.125rem;
  }

  #mobile-dropdown-arrow img {
    width: 1rem;
  }

  .ev-mobile-location-dropdown img.mobile-location-pin {
    margin-right: 10px;
    width: 1rem;
  }
}

@media only screen and (min-width: 667px) and (orientation: landscape) {

  #eclub-signup-form h2,
  #eclub-form-title {
    font-size: 1.2rem;
  }
}



@media only screen and (min-width: 768px) {
  .section-eclub #eclub-signup-form .form-group {
    margin-bottom: 0px;
  }

  #eclub-form-title,
  #eclub-signup-form h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }


  .section-eclub #eclub-signup-form .form-group {
    margin-bottom: 0;
  }

  .section-eclub #eclub-signup-form input {
    margin-bottom: 0;
  }


  header .reservation-button img {
    width: 4.5rem;
  }

  /* 
  .ev-mobile-location-dropdown {
    top: 4.5rem;
    left: 0;
    height: 3.5rem;
    padding: 0 1rem;
  } */


  .ev-mobile-location-dropdown .mobile-location-name span {
    font-size: 1.2rem;
  }

  #mobile-dropdown-arrow img {
    width: 1.2rem;
  }

  header .mobile-location-information {
    padding: 2rem;
  }

  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 1rem;
  }

  #overlayRestName {
    font-size: 1.2rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count,
  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count.cart-item-count.double-digit {
    width: 26px;
    height: 26px;
    line-height: 26px;
    right: 0.75rem;
    font-size: 16px;
  }


  header .header-wrapper .logo-wrapper {
    width: 9rem;
  }

  #dineInMessage {
    font-size: 1.3rem;
  }

  .ev-mobile-location-dropdown img.mobile-location-pin {
    margin-right: 10px;
    width: 1.2rem;
  }



  #eclub-signup-form .btn.btn-eclub {
    font-size: 0.7rem;
  }

  #eclub-signup-form input,
  #eclub-signup-form input::placeholder {
    font-size: 0.9rem;
  }

  span#overlayRestName,
  .header-location-address a span,
  .header-location-address a {
    font-size: 1rem;
  }
}

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

  header .cart-location-wrapper .cart-location .find-location,
  header .cart-location-wrapper .cart-location #no-location-selected {
    display: none !important
  }
}

@media only screen and (min-width: 992px) {
  .img-privacy-notice {
    width: 1.5rem;
  }

  #responsiveLoginLink {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }


  .ev-mobile-location-dropdown,
  #dineInMessage,
  .hamburger-button,
  .reservation-button,
  #mobile-dropdown-arrow {
    display: none;
  }

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

  header .desktop-nav-wrapper,
  header .cart-location-wrapper .cart-location .cart-location-item.log-in-link,
  header .cart-location-wrapper .cart-location .cart-location-item.current-location,
  header .cart-location-wrapper .cart-location .cart-location-item.find-location {
    display: block;
  }


  header .header-location-name a,
  header .cart-location-wrapper .cart-location .cart-location-link,
  header .desktop-nav-wrapper .desktop-nav .desktop-nav-link,
  header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-change-location-link,
  header .mobile-nav-slider-wrapper .mobile-nav-link,
  .cart-empty-title {
    font-size: 0.75rem;
  }

  header .mobile-location-information {
    position: absolute;
    max-width: 21rem;
    right: 12%;
    top: 4rem;
  }

  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 0.75rem;
  }

  header .mobile-location-information .header-location-address a span,
  header .mobile-location-information .header-location-address a,
  header .mobile-location-information .header-location-address #overlayRestName {
    font-size: 0.9rem;
  }

  header .header-wrapper {
    padding: 0 1rem;
  }

  header .header-wrapper .logo-wrapper {
    width: 9rem;
  }

  header .cart-location-wrapper .cart-location li#no-location-selected {
    padding: 0;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.log-in-link {
    padding: 0;
    /* margin-right: 1.5rem; */
  }

  header .cart-location-wrapper .cart-location .cart-location-item.current-location {
    padding: 0;
    margin-right: 0;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.find-location {
    margin-right: 0.75rem;
  }



  #eclub-form-title,
  #eclub-signup-form h2 {
    font-size: 1.5rem;
  }


  #eclub-signup-form .btn.btn-eclub {
    font-size: 0.75rem;
  }

  #eclub-signup-form input,
  #eclub-signup-form input::placeholder {
    font-size: 0.75rem;
  }

  #desktop-footer .section-copyright ul.nav a.nav-link,
  #desktop-footer .section-copyright p {
    font-size: 0.7rem;
  }

  #desktop-footer .section-footer-nav ul.nav a.nav-link {
    font-size: 1rem;
  }




  /* Header ------------------------------------------------------------------------------------*/
  header .header-wrapper .logo-wrapper {
    width: 9rem;
  }

  #dineInMessage {
    /* padding: 1rem 0.5rem; */
    font-size: 0.75rem;
  }

  header .desktop-nav li a {
    font-size: 0.75rem;
  }

  header .desktop-nav-wrapper ul.desktop-nav li:last-of-type {
    margin-right: 0;
  }

  header .cart-location-wrapper .cart-location {
    font-size: 0.75rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.find-location a,
  header .cart-location-wrapper .cart-location .cart-location-item.find-location span,
  header .cart-location-wrapper .cart-location #no-location-selected a,
  header .cart-location-wrapper .cart-location #no-location-selected span {
    font-size: 0.75rem;
  }

  header .cart-location-wrapper .cart-location a,
  header .cart-location-wrapper .cart-location .cart-location-link {
    font-size: 0.75rem;
  }

  header .reservation-button img {
    width: 4rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag img {
    width: 2rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
    right: 1rem;
    width: 20rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count {
    bottom: 0.125rem;
    right: -0.3125rem;
    font-size: 0.75rem;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag .cart-item-count.double-digit {
    width: 1.7rem;
    height: 1.7rem;
    line-height: 1.7rem;
  }

  #cart-empty-popup h3 {
    font-size: 1rem;
  }

  #cart-empty-popup .btn {
    font-size: 0.8rem;
    height: 35px;
    line-height: 35px;
    padding: 0 0.75rem;
  }

  #cart-empty-popup #close-cart-empty-popup img,
  #cart-empty-popup #close-cart-empty-popup svg {
    width: 1rem;
  }

  #cart-empty-popup p {
    font-size: 0.75rem;
  }

  header .active-location img#desktop-location-link-trigger-icon {
    width: 0.75rem;
  }

  header .mobile-location-information .rblinks ul li a,
  header .mobile-location-information div,
  header .mobile-location-information #popRestHrs,
  header .mobile-location-information p,
  header .mobile-location-information a,
  header .mobile-location-information .btn,
  header .mobile-location-information span,
  header .mobile-location-information ul li a {
    font-size: 0.75rem;
  }

  /* .ev-mobile-location-dropdown,
  #mobile-location-dropdown {
    height: 3.5rem;
  } */

  .ev-mobile-location-dropdown .mobile-location-name span {
    font-size: 1rem;
    letter-spacing: 0.125rem;
    font-weight: 500;
  }



  #mobile-dropdown-arrow img {
    width: 1rem;
  }

  .ev-mobile-location-dropdown img.mobile-location-pin {
    margin-right: 10px;
    width: 1rem;
  }

  header .mobile-location-information .mobile-location-name .mobile-location-pin {
    width: 1rem;
    margin-right: 0.625rem;
  }

  header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary .mobile-nav-link,
  header .mobile-nav-slider-wrapper .mobile-nav.mobile-nav-secondary a {
    font-size: 1.5rem;
  }


  /* Footer  ------------------------------------------------------------------------------------ */

  footer .section-social img {
    width: 2rem;
  }

  #mobile-footer .section-footer-nav a,
  #mobile-footer p {
    font-size: 0.75rem;
  }

  #mobile-footer .section-footer-nav,
  #mobile-footer .section-footer-nav a.nav-link {
    font-size: 0.875rem;
  }

  #desktop-footer .section-footer-nav ul li a {
    font-size: 0.8rem;
  }

  #desktop-footer .section-copyright ul.nav a.nav-link,
  #desktop-footer .section-copyright p {
    font-size: 0.625rem;
  }

  .section-sticky a {
    font-size: 0.6rem;
  }



  .section-eclub .btn.btn-eclub {
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
  }

  #eclub-signup-form input {
    font-size: 0.75rem;
  }

  #eclub-signup-form input::placeholder,
  #eclub-signup-form input::-moz-placeholder,
  #eclub-signup-form input:-moz-placeholder {
    font-size: 0.7rem;
  }



  header .cart-location-wrapper .cart-location .cart-location-item:last-of-type {
    padding-right: 0;
  }

  header .desktop-nav-wrapper {
    margin-left: 1.5rem;
    margin-right: auto;
  }

  #mobile-footer {
    display: none;
  }

  #desktop-footer {
    display: block;
    background-image: url("https://media.eddiev.com/images/site/ext/responsive/global/ev-desktop-footer-1920.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 0.1rem solid #575e66;
  }
}


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

  .careers-link,
  .global-alert-link {
    display: block;
  }

  /* #res-wrapper {
  top: 8.125rem;
  height: 4.5rem;
 } */

  #desktop-footer .section-copyright ul.nav a.nav-link,
  #desktop-footer .section-copyright p {
    font-size: 0.75rem;
  }

  #desktop-footer .section-footer-nav ul li a {
    font-size: 1rem;
  }

  #eclub-signup-form .btn.btn-eclub {
    font-size: 0.9rem;
  }
}

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



  header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-location-name a,
  header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-change-location-link a,
  header .cart-location-wrapper .cart-location .cart-location-item .active-location .header-location-number {
    font-size: 0.75rem;
  }

  /* #res-wrapper {
  height: 4.5rem;
  top: 6.938rem;
 } */

  header .header-wrapper .logo-wrapper {
    margin-right: initial;
  }


  header .desktop-nav-wrapper {
    margin-right: auto;
  }

  #desktop-footer .section-copyright ul.nav a.nav-link,
  #desktop-footer .section-copyright p {
    font-size: 0.7rem;
  }

  #desktop-footer .section-footer-nav ul.nav a.nav-link {
    font-size: 1rem;
  }


  header .header-wrapper .logo-wrapper {
    width: 9rem;
  }

  #desktop-footer .section-copyright ul li a:after {
    content: "|";
    display: inline-flex;
    padding: 0 0.3rem;
  }

  #eclub-signup-form input::placeholder,
  #eclub-signup-form input::-moz-placeholder,
  #eclub-signup-form input:-moz-placeholder {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 1200px) {
  header .desktop-nav-wrapper {
    margin-left: 3rem;
  }

  #desktop-footer .section-copyright ul.nav a.nav-link,
  #desktop-footer .section-copyright p {
    font-size: 0.6rem;
  }
}

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



  header .desktop-nav-wrapper {
    margin-right: auto;
  }


  header .header-wrapper .logo-wrapper {
    width: 9rem;
  }

  #eclub-signup-form input::placeholder,
  #eclub-signup-form input::-moz-placeholder,
  #eclub-signup-form input:-moz-placeholder {
    font-size: 0.75rem;
  }

  header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag #cart-empty-popup {
    right: 1rem;
    width: 320px;
  }

  #desktop-footer .section-copyright ul.nav a.nav-link,
  #desktop-footer .section-copyright p {
    font-size: 0.7rem;
  }

  #desktop-footer .section-footer-nav ul.nav a.nav-link {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1600px) {
  header .mobile-location-information {
    right: 7%;
  }
}



/* Agency styles------------------------------------ */


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-shown {
  position: static;
  overflow: visible;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
}

.is-invalid {
  border-color: #dc3545;
}


.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
  margin: 0;
  height: 100%;
}

.zoom-on-hover {
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

/*
 * IE11 styles
 */
.ie-11 img {
  width: auto;
}

input:not([type="submit"]) {
  background: #3c4659;
  border: none;
  border-radius: 0;
  color: #cfcfcf;
  box-shadow: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}





header .cart-location-wrapper .cart-location,
header .cart-location-wrapper .cart-location a,
header .cart-location-wrapper .cart-location .cart-location-link,
header .cart-location-wrapper .cart-location .cart-location-item.find-location a,
header .cart-location-wrapper .cart-location .cart-location-item.find-location span a,
header .cart-location-wrapper .cart-location #no-location-selected a,
header .cart-location-wrapper .cart-location #no-location-selected span {
  font-size: 0.75rem;
}



header .cart-location-wrapper .cart-location .cart-location-item.shopping-bag img {
  width: 30px;
  height: 43px;
}

header .reservation-button img {
  width: 60px;
  height: 62px;
}


.select-wrapper {
  background-size: 0.7rem !important;
  height: 35px;
}

.select-wrapper {
  line-height: 1;
  text-transform: uppercase;
  background-size: 0.7rem !important;
  height: 41px;
  background-color: #3c4659;
  width: 100%;
  float: left;
  border: 1px solid #717e8f;
  background-image: url(https://media.eddiev.com/images/site/responsive/global/reservation-widget-dropdown-arrow-2.svg) !important;
  cursor: pointer;
  background-repeat: no-repeat !important;
  background-position-x: 97%;
  background-position-y: 50%;
}



.select-wrapper .holder {

  cursor: pointer;
  padding: 6px 3px;
  display: block;
  overflow: hidden;
  margin: -3px 14px 0 0;
  font-size: 12px;
  height: 41px;
  white-space: nowrap;
  font-family: 'Montserrat';
  color: #cdcdcd !important;
  padding-top: 5px;
}


.styled-select {
  background: none !important;
}



.select-wrapper select {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  outline: none;
  opacity: 0;
  width: 100%;
}