/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

@font-face {
  font-family: 'PublicSans';
  src: url('/fonts/PublicSans-Regular.ttf') format('truetype'),
  url('/fonts/PublicSans-Regular.woff2') format('woff2'),
  url('/fonts/PublicSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PublicSans-Bold';
  src: url('/fonts/PublicSans-Bold.ttf') format('truetype'),
  url('/fonts/PublicSans-Bold.woff2') format('woff2'),
  url('/fonts/PublicSans-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PublicSans-SemiBold';
  src: url('/fonts/PublicSans-SemiBold.ttf') format('truetype'),
  url('/fonts/PublicSans-SemiBold.woff2') format('woff2'),
  url('/fonts/PublicSans-SemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PublicSans-Light';
  src: url('/fonts/PublicSans-Light.ttf') format('truetype'),
  url('/fonts/PublicSans-Light.woff2') format('woff2'),
  url('/fonts/PublicSans-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PublicSans-Medium';
  src: url('/fonts/PublicSans-Medium.ttf') format('truetype'),
  url('/fonts/PublicSans-Medium.woff2') format('woff2'),
  url('/fonts/PublicSans-Medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PublicSans-Thin';
  src: url('/fonts/PublicSans-Thin.ttf') format('truetype'),
  url('/fonts/PublicSans-Thin.woff2') format('woff2'),
  url('/fonts/PublicSans-Thin.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: 'PublicSans', sans-serif !important;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PublicSans-Bold';
}

p, li, span {
  font-family: 'PublicSans-Light';
}

.btn-cta, .menu-list > li {
  font-family: 'PublicSans-Medium';
}

b, strong {
  font-family: 'PublicSans-Bold';
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  border: none;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

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

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

a:link, a:visited, a:active, a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #1a1a1a;
}

/**
  Template css
 */

.clear {
  clear: both;
}

#wrapper {
  width: 100%;
  height: auto;
  position: relative;
  opacity: 0;
  transition: all 1s ease-in-out;
  background-color: #fff;
}

.bg {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.bg.fix-bg {
  background-attachment: fixed;
}

.layer:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
}

.layer.dark:before {
  background: rgba(0,0,0,0.45);
}

/**
  Start preload block
 */

#preload {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  background-color: #fff;
}

#preload .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preload .container .preload-content {
  width: 100%;
  position: relative;
}

#preload .container .preload-content h1 {
  font-weight: 400;
  text-align: center;
}

#preload .container .preload-content img {
  width: auto;
  max-width: 200px;
  height: auto;
  text-align: center;
  margin: 0 auto;
  display: block;
}

/**
  End preload block
 */

.panel-home {
  height: auto;
  background-color: #ffffff;
}

.title {
  font-weight: 700;
}

hr.break-light {
  border-top: 1px solid #cccccc80;
  padding: 0 0 1rem;
}

hr.dots-breaker {
  border-top: dashed 2px #cccccc80;
  width: 80%;
  margin: auto;
}

.form-restaurant input, .form-restaurant  select, .form-restaurant  textarea {
  background-color: #f9f9f9;
  border: none;
  border-radius: 1px;
}

.form-restaurant .submit {
  border: 1px solid #000;
  border-radius: 25px;
  color: #000;
  padding: 6px 40px 4px 40px;
  font-size: 13px;
  margin-bottom: 20px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  font-family: 'PublicSans-Thin';
}

.form-restaurant .submit:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.form-restaurant .submit.loading-dots {
  border: 1px solid #000;
  color: #ffffff;
  background: #000000;
}

.form-restaurant .submit.loading-dots:hover {
  background-color: #ffffff;
  color: #000000;
}

.form-restaurant select.form-control.is-valid, .form-restaurant .was-validated select.form-control:valid,
.form-restaurant select.form-control.is-invalid, .form-restaurant .was-validated select.form-control:invalid {
  background-position: right calc(.375em + 1rem) center;
}

.form-restaurant .custom-control-label {
  padding-top: 1px;
}

.form-restaurant .custom-control-label.contract-label {
  padding-top: 2px;
}

.form-restaurant .claim-tooltip {
  vertical-align: middle;
}

#parent {
  display: none;
}

#parent.show {
  display: block;
}

/*.form-restaurant input:focus, .form-restaurant  select:focus, .form-restaurant  textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #222;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 0 0 / 25%);
}*/

/**
  Start header section
 */

.panel-home header {
  position: absolute;
  width: 100%;
  z-index: 1050;
  padding: 14px 1rem;
  height: 65px;
  background-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: 0;
  left: 0;
}

.panel-home header.active {
  position: fixed;
  background: #000;
  -webkit-box-shadow: 0 1px 5px rgb(0 0 0 / 25%);
  box-shadow: 0 1px 5px rgb(0 0 0 / 25%);
  opacity: 1;
}

.panel-home header .logo {
  display: none;
  margin: 0 0 0 15px;
}

.panel-home header .logo img {
  display: block;
  height: 46px;
  margin: -5px auto;
  width: auto;
  max-width: 150px;
}

.panel-home header.active .logo {
  display: inline-block;
  text-align: center;
}

.panel-home header .hamburger-button {
  width: 25px;
  height: 23px;
  position: relative;
  z-index: 999;
  float: left;
  text-align: left;
  cursor: pointer;
  margin: 8px 0 0;
  display: none;
}

.panel-home header.active .hamburger-button {
  display: inline-block;
}

.panel-home header .hamburger-button span {
  width: 25px;
  height: 2px;
  background-color: black;
  margin: 0 0 10px 0;
  display: block;
  position: absolute;
  -webkit-transition: .3s cubic-bezier(.8,.5,.2,1.4);
  transition: .3s cubic-bezier(.8,.5,.2,1.4);
}

.panel-home header .hamburger-button.light span {
  background-color: #fff;
}

.panel-home header .hamburger-button.show-close span {
  background-color: #000;
}

.panel-home header .hamburger-button span:nth-child(1) {
  top: 2px;
  left: 0;
}

.panel-home header .hamburger-button:hover span:nth-child(1) {
  top: 2px;
  left: 2px;
  width: 21px;
}

.panel-home header .hamburger-button.show-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}

.panel-home header .hamburger-button span:nth-child(2) {
  top: 10px;
  left: 0;
}

.panel-home header .hamburger-button:hover span:nth-child(2) {
  top: 10px;
  left: 4px;
  width: 17px;
}

.panel-home header .hamburger-button.show-close span:nth-child(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 50ms;
  transition-duration: 50ms;
}

.panel-home header .hamburger-button span:nth-child(3) {
  top: 18px;
  left: 0;
}

.panel-home header .hamburger-button:hover span:nth-child(3) {
  top: 18px;
  left: 2px;
  width: 21px;
}

.panel-home header .hamburger-button.show-close span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.panel-home header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
  background: rgba(255,255,255,0);
  pointer-events: none;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.panel-home header .hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 100vh;
  background: #fff;
  z-index: 10;
  overflow: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateX(-451px);
  transform: translateX(-451px);
  -webkit-box-shadow: 0 0 6px rgb(0 0 0 / 20%);
  box-shadow: 0 0 6px rgb(0 0 0 / 20%);
}

.panel-home header .show-menu .hamburger-menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.panel-home header .hamburger-menu .hamburger-close {
  position: absolute;
  top: 26px;
  left: 10px;
  padding: 10px;
  z-index: 1;
  cursor: pointer;
  display: none;
}

.panel-home header .hamburger-menu .hamburger-menu-content {
  padding-top: 85px;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  text-align: left!important;
}

.panel-home header .hamburger-menu .hamburger-menu-content .menu-list {
  display: inline-block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.panel-home header .hamburger-menu .hamburger-menu-content .menu-list .menu-item {
  color: #373d48;
  font-weight: 600;
  list-style: outside circle;
  margin: 0;
  display: block;
  font-size: 20px;
  line-height: 36px;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
  padding: 0 40px;
}

.panel-home header .hamburger-menu .hamburger-menu-content .menu-list .menu-item .menu-nav-link {
  text-decoration: none;
  color: #000;
  pointer-events: auto;
  font-size: 28px;
  line-height: 32px;
  padding: .65rem 0;
  display: block;
  width: 100%;
  text-align: left;
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}


.panel-home header .hamburger-menu .hamburger-menu-content .menu-list:hover .menu-item .menu-nav-link:not(:hover) {
  opacity: .25;
}

.panel-home header .hamburger-menu .hamburger-menu-content .menu-list .menu-item:first-child .menu-nav-link {
  padding-top: 0;
}

.panel-home header .buttons {
  display: none;
}

.panel-home header.active .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.panel-home header .buttons .extra-link {
  display: inline-block;
  margin-right: 15px;
  color: #FFFFFF;
  text-shadow: 1px 1px 1px #1a1a1a;
}

.panel-home header .buttons .extra-link {
  display: inline-block;
  color: #FFFFFF;
  text-shadow: 1px 1px 1px #1a1a1a;
}

.panel-home header .buttons .extra-link:hover {
  color: #409EFF;
}

.panel-home header .cta-menu-buttons {
  padding: 20px 40px;
  position: relative;
  display: block;
}

.panel-home header .cta-menu-buttons .btn-cta {
  width: auto;
  padding: 5px 20px 5px;
  margin-bottom: 5px;
  border: 1px solid #000;
  border-radius: 25px;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 500;
}

.panel-home header .cta-menu-buttons .btn-cta:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #000;
}

.panel-home .wrap-description .buttons {
  padding: 40px 15px 0;
  text-align: center;
}

.panel-home .wrap-description .buttons .btn-cta {
  width: auto;
  padding: 10px 34px;
  margin-bottom: 5px;
  border: none;
  border-radius: 100px;
  color: #000;
  font-size: 17px;
  line-height: 21px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 400;
  font-family: 'PublicSans-SemiBold';
}

.panel-home .wrap-description .buttons .btn-cta:nth-child(n+2) {
  margin-left: 10px;
}

.panel-home .wrap-description .buttons .btn-cta:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #000;
}

.panel-home .wrap-description .buttons .btn-cta.light {
  color: #000;
  background-color: #fff;
}

.panel-home .wrap-description .buttons .btn-cta.light:hover {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(255,255,255,0.75);
}

.panel-home header .btn-language {
  padding: 3px 10px;
  margin: 0 0 0 5px;
  font-weight: 500!important;
  font-size: 16px!important;
  text-transform: uppercase;
  border-radius: 24px;
  color: #ffffff;
  outline: none;
  border: none;
  background-color: transparent!important;
}

.panel-home header .btn-language:hover {
  background-color: hsla(0,0%,100%,.3)!important;
}

.panel-home header .dropdown-menu {
  min-width: 80px;
}

/**
  End header section
 */

/**
  Start banner section
 */

.banner {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: block;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-attachment: fixed !important;
  z-index: 1;
}

.banner-layer {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
}

.banner.page {
  height: 550px;
}

.banner-description {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 100px 0 50px;
  min-height: 100vh;
  margin: 0 auto;
  opacity: 1;
  display: -webkit-flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner.page .banner-description {
  background: rgba(0,0,0,0.25);
}

.banner.page .banner-wrapp {
  color: #ffffff;
  text-shadow: 1px 1px 1px #333;
}

.banner.page .banner-wrapp hr {
  width: 32px;
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.banner.page .banner-wrapp p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-description h1 {
  margin: 0 auto;
  display: block;
  width: 100%;
  padding: 0 15px;
  transition: all 2s;
  transform: scale(1);
  vertical-align: middle;
  font-weight: 500;
  font-size: 55px;
  color: #ffffff;
  text-align: center;
  text-shadow: 1px 1px 1px #333;
}

.banner-description .slogan {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  padding: 10px 15px 0;
  transition: all 2s;
  transform: scale(1);
  color: hsla(0,0%,100%,.9);
  text-shadow: 1px 1px 1px #333;
  font-size: 18px;
  line-height: 18px;
}

.banner-description img {
  margin: 0 auto;
  display: block;
  width: 40%;
  padding: 0;
  border-radius: 100%;
  max-width: 200px;
  transition: all 2s;
  transform: scale(1);
  vertical-align: middle;
  background-color: #ffffff;
}

.banner-description .banner-logo {
  margin: 0 auto;
  display: block;
  width: auto;
  height: 200px;
  transition: all 2s;
  transform: scale(1);
  background: transparent;
  max-width: 100%;
}

/**
  End banner section
 */

.content-area {
  width: 100%;
  position: relative;
  display: block;
}

.section-break {
  position: relative;
  display: block;
  width: 100%;
  padding: 4rem 0;
  background: #ffffff;
}

.section-cta {
  position: relative;
  display: block;
  width: 100%;
  padding: 4rem 0;
  background: #000000;
  text-align: center;
}

.section-cta .btn-cta-panel {
  width: auto;
  padding: 20px 38px;
  border: none;
  border-radius: 100px;
  color: #000;
  font-size: 22px;
  line-height: 21px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 400;
  font-family: 'PublicSans-SemiBold';
  background-color: #fb2dfd;
  border-color: #fb2dfd;
  color: #ffffff;
  text-decoration: none;
}

.gallery-content {
  width: 100%;
  display: block;
  background-color: #ffffff;
  position: relative;
  height: auto;
  padding: 2rem 0;
}

.gallery-content .gallery-header {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.gallery-content .gallery-header h2 {
  font-size: 45px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 45px;
  height: auto;
}

.gallery-content .gallery-header hr {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  border: 1px solid #000000;
  text-shadow: 1px 1px 1px #333;
}

.gallery-content .gallery-image {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  margin-top: 25px;
}

/**
  Start panel sections
 */

.panel .panel-content {
  width: 100%;
  display: block;
  background-color: #ffffff;
  position: relative;
  height: auto;
  min-height: 100vh;
}

.panel .panel-content-video {
  width: 100%;
  display: block;
  position: relative;
  height: auto;
  min-height: 80vh;
  border-radius: 20px;
}

.panel .banner_video_bg {
  border-radius: 12px;
  overflow: hidden;
}

.panel #frameVideo.panel-content-video:before {
  content: 'Cargando video...';
  position:  absolute;
  color: rgba(204, 204, 204, 0.84);
  font-size: 22px;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 0;
}

.panel #wrapper_bgndVideo {
  z-index: 100 !important;
}

.panel .panel-content.inner-auto {
  padding: 0 0 4rem;
}

.panel .panel-video-wrapper {
  position: relative;
  padding: 6rem 0 4rem;
  display: block;
  background-color: #ffffff;
}

.panel .panel-video-wrapper .video-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.panel .panel-video-wrapper .video-header h2 {
  font-size: 45px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 45px;
  height: auto;
}

.panel .panel-video-wrapper .video-header hr {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  border: 1px solid #000000;
  text-shadow: 1px 1px 1px #333;
}

.panel .panel-video-wrapper .video-body {
  position: relative;
  display: block;
}

.panel .panel-content.the-menu {
  background-color: #fafaf9;
}

.panel .panel-content .wrap-bg-image {
  background-color: #ffffff;
}

.panel .panel-content .bg-image {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.panel .panel-content .the-menu-container {
  position: relative;
  padding: 8em 0 6rem;
}

.panel .panel-content .the-menu-container .the-menu-content {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.panel .panel-content .the-menu-container .the-menu-content h2 {
  font-size: 45px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 45px;
  height: auto;
}

.panel .panel-content .the-menu-container .the-menu-content hr {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  border: 1px solid #000000;
  text-shadow: 1px 1px 1px #333;
}

.panel .panel-content .map-item {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0;
}

.panel .panel-content .map-item #map {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  text-align: center;
  border: 0;
  position: relative;
}

.panel .panel-content .map-item #map:before {
  content: '(MapaLatitude,MapaLongitude)';
  position:  absolute;
  color: rgba(204, 204, 204, 0.84);
  font-size: 18px;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: -1;
}

.panel .panel-content .panel-description {
  padding: 0 50px 60px;
  width: 100%;
}

.panel .panel-content .panel-description:after {
  background: url(/themes/template1/img/bd-image.png) no-repeat left;
  position: absolute;
  content: "";
  bottom: -20px;
  height: 20px;
  display: block;
  width: 200px;
  margin: 0 0 30px;
}

.panel .panel-content .panel-description h2 {
  font-size: 45px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 45px;
  height: auto;
}

.panel .panel-content .box {
  position: relative;
  max-width: 800px;
  top: -2em;
  z-index: 10;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  box-shadow: 0px 0px 35px 0px rgb(41 43 44 / 15%);
}

.pdf-download-wrapper {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 30px 0 20px;
}

.pdf-download-wrapper .btn-pdf-download {
  position: relative;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 34px;
  font-size: 17px;
  line-height: 21px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  text-decoration: none;
  font-family: 'PublicSans-SemiBold';
}

.pdf-download-wrapper .btn-pdf-download:hover {
  color: #000;
  text-decoration: none;
  background-color: rgba(255,255,255,0.75);
}

/**
  End panel sections
 */

/**
  Start footer section
 */

.footer-main {
  display: block;
  background: #1a1a1a;
}

.footer-main footer .footer-container {
  width: 100%;
  display: block;
  background-color: #0c0d0f;
  color: #ffffff;
  padding: 40px 50px;
}

.footer-main footer .footer-container .footer-logo {
  width: 100%;
  display: block;
  text-align: left;
  margin: 0 0 35px;
}

.footer-main footer .footer-container .footer-logo img {
  width: auto;
  height: 80px;
  max-width: 100%;
  position: relative;
  filter: grayscale(100%);
}

.footer-main footer .footer-container .footer-logo h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 45px;
  margin: 0;
}

.footer-main footer .footer-container .footer-content h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer-main footer .footer-container .footer-content .footer-description {
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin: 10px 0 15px;
}

.footer-main footer .footer-container .footer-content .footer-description .btn-cta {
  border: 1px solid #000;
  border-radius: 25px;
  color: #000;
  padding: 5px 20px;
  font-size: 13px;
  margin-bottom: 5px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  text-decoration: none;
}

.footer-main footer .footer-container .footer-content .footer-description .btn-cta:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
}

.footer-main footer .footer-container .footer-content .footer-description .btn-cta.light {
  color: #fff;
  border: solid 1px #fff;
}

.footer-main footer .footer-container .footer-content .footer-description .btn-cta.light:hover {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}

.footer-main footer .footer-container .footer-content .footer-description .icons {
  width: 100%;
  display: block;
  margin-top: 15px;
}

.footer-main footer .footer-container .footer-content .footer-description .icons img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}

.footer-main footer .footer-container .footer-content .footer-description .complaints-book {
  font-size: 14px;
  line-height: 20px;
  color: #959499;
  text-decoration: none;
  margin: 20px 0 0;
  font-weight: 500;
  display: block;
  position: relative;
}

.footer-main footer .footer-container .footer-content .menu-footer {
  display: inline-block;
}

.footer-main footer .footer-container .footer-content .menu-footer .menu {
  text-align: left;
  margin: 5px 0 33px;
  padding: 0;
}

.footer-main footer .footer-container .footer-content .menu-footer .menu .menu-item {
  font-size: 13px;
  color: #959499;
  padding: 0 0 5px 0;
  list-style: none;
  line-height: 20px;
  display: block;
  margin-left: 0;
}

.footer-main footer .footer-container .footer-content .menu-footer .menu .menu-item img.claims-book {
  position: relative;
  display: inline-block;
  height: 26px;
  width: auto;
  margin: 0 3px 0 0;
}

.footer-main footer .footer-container .footer-content .menu-footer .menu .menu-item a {
  font-size: 14px;
  line-height: 20px;
  color: #959499;
  text-decoration: none;
  padding: 0;
  font-weight: 500;
}

.footer-main footer .footer-container .footer-content .footer-description .complaints-book:hover,
.footer-main footer .footer-container .footer-content .menu-footer .menu .menu-item:hover,
.footer-main footer .footer-container .footer-content .menu-footer .menu .menu-item a:hover {
  color: #c8c9cd;
}

.footer-main footer .footer-container .footer-content .social-buttons {
  zoom: 1;
  width: 100%;
  display: block;
  position: relative;
  margin: 0 0 15px;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social {
  width: 35px;
  height: 35px;
  background-color: #fff;
  text-align: center;
  line-height: 32px;
  font-size: 15px;
  margin: 0 5px 0 0;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  z-index: 1;
  transition: .5s;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.facebook:hover {
  background-color: #3b5999;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d)!important;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.twitter:hover {
  background-color: #55acee;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.linkedin:hover {
  background-color: #0077b5;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.google:hover {
  background-color: #dd4b39;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.tiktok:hover {
  background: #000000;
  text-shadow: 2px 1px 0 #EE1D52, -2px -1px 0 #69C9D0;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.tripadvisor:hover {
  background-color: #34e0a1;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social.tripadvisor:hover .icon {
  color: #262626;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}

.footer-main footer .footer-container .footer-content .social-buttons .icon-social:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.footer-main footer .copy-content {
  width: 100%;
  background-color: #0c0d0f;
  color: #fff;
  padding: 13px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.footer-main footer .powered-by-content {
  width: 100%;
  background-color: #0c0d0f;
  color: #e1e1e1;
  padding: 13px 0 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.footer-main footer .powered-by-content a {
  color: #1877f2;
  text-decoration: underline;
}

.footer-main footer .powered-by-content a:hover {
  color: #1877f2;
  text-decoration: underline;
}

.footer-main footer .powered-by-content img {
  position: relative;
  height: 25px;
  width: auto;
  margin: 0 0 0 5px;
}

/**
  End footer section
 */

/**
  Start Cta buttons section
 */

.cta-buttons {
  background-image: none;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  position: fixed;
  bottom: 0pt;
  left: 0pt;
  background-color: #fff;
  width: 100%;
  padding: 10px 5px;
  text-align: center;
  z-index: 999;
  -webkit-box-shadow: 0 0 4px rgb(0 0 0 / 20%);
  box-shadow: 0 0 4px rgb(0 0 0 / 20%);
  display: none;
}

.cta-buttons .btn-cta {
  width: auto;
  padding: 3px 7px;
  border: 1px solid #000;
  border-radius: 25px;
  color: #000;
  font-size: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
}

.cta-buttons .btn-cta:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #000;
  position: relative;
}

/**
  End Cta buttons section
 */

/**
  Start discount plates section
 */

.container.up-show {
  margin-top: -115px;
}

.discount-plates .food-plates {
  display: block;
  padding: 20px;
  position: relative;
  border-top: 1px solid #ffffff6b;
  max-width: 900px;
  margin: 0 auto 100px;
}

.discount-plates .food-plates .box-food {
  background: rgba(0, 0, 0, .4);
  padding: 40px;
  display: block;
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.discount-plates .food-plates .box-food .category-label {
  display: block;
  text-align: left;
  color: #fff;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.discount-plates .food-plates .box-food .food-title {
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 600;
  display: block;
  font-size: 26px;
  line-height: 28px;
  width: 100%;
  text-align: left;
}

.discount-plates .food-plates .box-food .description {
  width: 100%;
  display: block;
  color: #ddd;
  font-size: 14px;
  line-height: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  white-space: pre-line;
  text-align: justify;
}

.discount-plates .food-plates .box-food .prices {
  display: block;
  width: 100%;
  line-height: 32px;
  color: #fff;
  text-align: left;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
}

.discount-plates .food-plates .box-food .prices .discount {
  color: #b9b9b9;
  display: block;
  line-height: 24px;
}

.discount-plates .food-plates .box-food .prices .discount span {
  display: inline-block;
  text-decoration: line-through;
  padding: 2px 0;
  text-align: right;
}

.discount-plates .food-plates .box-food .prices .price-save {
  color: #fd4749;
  display: block;
  line-height: 24px;
}

.discount-plates .food-plates .box-food .prices .price-save span {
  display: inline-block;
  padding: 2px 0;
  text-align: right;
}

.discount-plates .food-plates .box-food .prices .price-money {
  font-weight: 600;
  font-size: 16px;
  display: block;
  line-height: 24px;
  font-family: 'PublicSans-Bold';
}

.discount-plates .food-plates .box-food .prices .price-money span {
  display: inline-block;
  padding: 2px 0;
  text-align: right;
  font-family: 'PublicSans-Bold';
}

.discount-plates .food-plates .box-food .btn-food {
  border: 2px solid #ffffff;
  border-radius: 25px;
  padding: 6px 30px 6px 30px;
  font-size: 17px;
  font-weight: 400;
  margin: 0 5px 10px 0;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: transparent;
}

.discount-plates .food-plates .box-food .btn-food:hover {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  text-shadow: 0 3px 6px hsl(0deg 0% 100% / 16%);
}

.discount-plates .food-plates .box-food img {
  border-radius: 10px;
  max-height: 281px;
}

/**
  End discount plates section
 */

/**
  Start popular/discount plates section
 */

.wrap-popular-foods {
  width: 100%;
  position: relative;
  padding-top: 20px;
}

.wrap-popular-foods .box-popular-food {
  border-radius: 15px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 16px 18px 5px rgb(0 0 0 / 4%);
}

.wrap-popular-foods .box-popular-food .food-image {
  width: 100%;
  height: 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.wrap-popular-foods .box-popular-food .food-image .discount {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: red;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  padding: 3px 12px;
}

.wrap-popular-foods .box-popular-food .food-body {
  width: 100%;
  padding: 15px;
}

.wrap-popular-foods .box-popular-food .food-body .discount {
  position: relative;
  background-color: red;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  padding: 3px 12px;
  margin-bottom: 8px;
}

.wrap-popular-foods .box-popular-food .food-body .food-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: 'PublicSans-SemiBold';
  display: block;
  height: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.wrap-popular-foods .box-popular-food .food-body .food-description {
  display: block;
  height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wrap-popular-foods .box-popular-food .food-body .food-description p {
  font-size: 14px;
  line-height: 18px;
  font-family: 'PublicSans-Thin';
}

.wrap-popular-foods .box-popular-food .food-body .food-price {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'PublicSans-SemiBold';
  padding: 10px 0 0;
  text-align: right;
}

.wrap-popular-foods .box-popular-food .food-body .wrap-food-link {
  display: block;
  position: relative;
  margin-top: 15px;
  text-align: center;
}

.wrap-popular-foods .box-popular-food .food-body .wrap-food-link .btn-food-link {
  width: auto;
  padding: 5px 20px 5px;
  background-color: #000;
  margin-bottom: 5px;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 500;
}

.wrap-popular-foods .box-popular-food .food-body .wrap-food-link .btn-food-link:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/**
  End popular/discount plates section
 */

/**
  Start special plates section
 */

.panel .panel-content.the-specials {
  min-height: auto;
  background-color: #fafaf9;
  padding: 8rem 0;
}

.the-specials-container {
  position: relative;
  padding: 0;
}

.the-specials-container .the-specials-content {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.the-specials-container .the-specials-content h2 {
  font-size: 45px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 45px;
  height: auto;
}

.the-specials-container .the-specials-content hr {
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
  border: 1px solid #000000;
  text-shadow: 1px 1px 1px #333;
}

.the-specials-container .wrap-specials {
  position: relative;
  padding: 8rem 0;
}

.the-specials-container .wrap-specials .special-plates {
  display: block;
  position: relative;
}

.the-specials-container .wrap-specials .special-plates .special-food {
  background: rgba(0,0,0,.4);
  padding: 15px;
  display: block;
  width: 100%;
  border-radius: 10px;
}

.the-specials-container .wrap-specials .special-plates .special-food img {
  max-height: 200px;
  border-radius: 10px;
}

.the-specials-container .wrap-specials .special-plates .special-food .food-title {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 18px;
  line-height: 22px;
  width: 100%;
  text-align: left;
}

.the-specials-container .wrap-specials .special-plates .special-food .description {
  width: 100%;
  display: block;
  color: #ddd;
  font-size: 14px;
  line-height: 18px;
  padding-top: 5px;
  white-space: pre-line;
}

.the-specials-container .wrap-specials .special-plates .special-food .prices {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 10px;
  font-weight: 600;
}

/**
  End special plates section
 */

/**
  Start food-plates section (popup)
 */

.wrap-food-plates {
  width: 100%;
  max-height: 500px;
  background-color: #ffffff;
  padding: 10px 0 10px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.wrap-food-plates .food-plates-items {
  width: 100%;
  max-height: 470px;
  padding: 5px 16px 20px;
  overflow: hidden;
  overflow-y: auto;
}

.wrap-food-plates .food-plates-items .box-food-plate {
  background: #ebe9ef;
  border-radius: 10px;
  min-height: 3rem;
  padding: 1rem;
  width: 100%;
  margin: 0 auto 10px;
  display: block;
  position: relative;
  text-align: left;
}

.wrap-food-plates .food-plates-items .box-food-plate .food-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 4px;
}

.wrap-food-plates .food-plates-items .box-food-plate .img-product {
  border-radius: 4px;
  margin: 0;
  position: relative;
}

.wrap-food-plates .food-plates-items .box-food-plate .food-header .food-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: 'PublicSans-SemiBold';
}

.wrap-food-plates .food-plates-items .box-food-plate .food-header .food-price {
  padding-left: 10px;
  display: flex;
  align-items: flex-start;
}
.wrap-food-plates .food-plates-items .box-food-plate .food-header .food-price .discount {
  background-color: red;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  padding: 3px 12px;
}

.wrap-food-plates .food-plates-items .box-food-plate .food-header .food-price .price {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  font-family: 'PublicSans-SemiBold';
  padding-left: 10px;
}

.wrap-food-plates .food-plates-items .box-food-plate .food-body {
  width: 100%;
  position: relative;
}

.wrap-food-plates .food-plates-items .box-food-plate .food-body p {
  font-size: 14px;
  line-height: 18px;
  font-family: 'PublicSans-Thin';
}

/**
  End food-plates section (popup)
 */

/**
  Start food-plates section (embed)
 */

.the-menu-container .wrap-food-plates {
  position: relative;
  border-radius: 0;
  max-height: none;
  background: transparent;
  padding: 0;
}

.the-menu-container .wrap-food-plates .food-plates-items {
  width: 100%;
  max-height: 540px;
  overflow: hidden;
  padding: 25px 16px 0;
  position: relative;
}

.the-menu-container .wrap-food-plates .food-plates-items.expand {
  max-height: none;
}

.the-menu-container .wrap-food-plates .food-plates-items h4 {
  /*color: #ffffff;
  text-shadow: 1px 1px 1px #333;*/
  padding-bottom: 1rem;
}

.the-menu-container .wrap-food-plates .food-plates-items .box-food-plate {
  /*color: #ffffff;
  background: #ffffff;
  box-shadow: rgb(0 0 0 / 18%) 0px 2px 4px;
  padding: 0;*/
  background: transparent;
}

.the-menu-container .wrap-food-plates .food-plates-items .box-food-plate.with-image {
  padding: 1rem;
}

.the-menu-container .food-controls {
  position: absolute;
  padding: 10px 0;
  height: 150px;
  width: 100%;
  text-align: center;
  bottom: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(235, 233, 230, 0),
    rgba(0, 0, 0, .55)
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.the-menu-container .food-controls.deep {
  background: transparent;
  position: sticky;
  height: auto;
}

.the-menu-container .food-controls .btn-control {
  border: 2px solid #fafaf9;
  border-radius: 25px;
  color: #000000;
  background-color: #fafaf9;
  padding: 6px 40px 4px 40px;
  font-size: 13px;
  margin-bottom: 5px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
}

.the-menu-container .food-controls.deep .btn-control {
  border: 2px solid #000000;
  color: #000000;
  background-color: #fafaf9;
}

.the-menu-container .food-controls .btn-control:hover {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #000000;
  border: 2px solid #000000;
}

.the-menu-container .food-controls.deep .btn-control:hover {
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #000000;
}

/**
  End food-plates section (embed)
 */

.modal-locals {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
}

.modal-locals .modal-header {
  border-bottom: none;
  color: #FFFFFF;
}

.modal-locals .modal-header .close {
  color: #FFFFFF;
}

.content-locals {
  width: 100%;
  max-height: 350px;
  padding: 10px 0 10px;
  border-radius: 15px;
  overflow: hidden;
}

.content-locals .local-items {
  width: 100%;
  max-height: 320px;
  padding: 5px 10px 20px;
  overflow: hidden;
  overflow-y: auto;
}

.content-locals .local-item {
  background: #ffffff;
  border-radius: 0.5rem;
  min-height: 3rem;
  padding: 1rem;
  position: relative;
  width: 100%;
  margin: 10px auto 0;
  display: block;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.content-locals .local-item:hover {
  color: #546bbb;
  background: #dae1f8;
}

.content-locals .local-item i {
  margin-right: 5px;
}

.content-locals .local-item i,
.content-locals .local-item span {
  display: inline-block;
}

.readonly{
  pointer-events: none;
  opacity: 0.5;
}

.loading-dots:after{content:" .";-webkit-animation:dots 1s steps(5) infinite;animation:dots 1s steps(5) infinite}

/**
  Start back to top button
 */

.back-to-top {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 105px;
  right: 33px;
  transition: background-color .3s,
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.back-to-top:focus {
  outline: 0;
}

.back-to-top i {
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

.back-to-top:active {
  transform: scale(0.9);
  background-color: #333;
  box-shadow: 0 2px 25px rgba(51, 51, 51, 0.5);
}

.back-to-top:hover {
  cursor: pointer;
  background-color: #333;
  box-shadow: 0 2px 25px rgba(51, 51, 51, 0.5);
}

.back-to-top:active {
  background-color: #555;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/**
  End back to top button
 */


/**
  Start whatsapp button
 */

.wrap-whatsapp {
  --red: 37;
  --green: 211;
  --blue: 102;
  --bottom: 20px;
  --sep: 20px;
  --header: 70px;
  --btn: 60px;
  --vh: 100vh;
  --rgb: var(--red),var(--green),var(--blue);
  --color: rgb(var(--rgb));
  --dark: rgb(calc(var(--red) - 75),calc(var(--green) - 75),calc(var(--blue) - 75));
  --hover: rgb(calc(var(--red) + 50),calc(var(--green) + 50),calc(var(--blue) + 50));
  --bg: rgba(var(--rgb),0.04);
  --tolerance: 210;
  --bw: calc((var(--red)*0.2126 + var(--green)*0.7152 + var(--blue)*0.0722 - var(--tolerance))*-100000);
  --text: rgba(var(--bw),var(--bw),var(--bw),min(1,max(0.7,var(--bw))));
  --msg: var(--color);
  position: fixed;
  z-index: 1000;
  right: var(--sep);
  bottom: var(--bottom);
  color: var(--text);
  font: normal normal normal 16px/1.625em -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
  letter-spacing: 0;
  transform: scale3d(0,0,0);
  transition: transform .3s ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

.wrap-whatsapp *, .wrap-whatsapp :after, .wrap-whatsapp :before {
  box-sizing: border-box;
}

.wrap-whatsapp.show {
  transform: scaleX(1);
  transition: transform .5s cubic-bezier(.18,.89,.32,1.28);
}

.wrap-whatsapp .btn-whatsapp {
  display: flex;
  flex-direction: row;
  position: absolute;
  z-index: 2;
  bottom: 8px;
  right: 8px;
  height: var(--btn);
  min-width: var(--btn);
  max-width: 95vw;
  background-color: #25d366;
  color: inherit;
  border-radius: calc(var(--btn)/2);
  box-shadow: 1px 6px 24px 0 rgb(7 94 84 / 24%);
  cursor: pointer;
  transition: background .2s linear;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  will-change: background-color,width;
}

.wrap-whatsapp .btn-whatsapp:hover {
  background: #128c7e;
  transition: background 1.5s linear;
}

.wrap-whatsapp .btn-whatsapp .content-whatsapp {
  width: var(--btn);
  height: var(--btn);
  background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3.516 3.516c4.686-4.686 12.284-4.686 16.97 0 4.686 4.686 4.686 12.283 0 16.97a12.004 12.004 0 01-13.754 2.299l-5.814.735a.392.392 0 01-.438-.44l.748-5.788A12.002 12.002 0 013.517 3.517zm3.61 17.043l.3.158a9.846 9.846 0 0011.534-1.758c3.843-3.843 3.843-10.074 0-13.918-3.843-3.843-10.075-3.843-13.918 0a9.846 9.846 0 00-1.747 11.554l.16.303-.51 3.942a.196.196 0 00.219.22l3.961-.501zm6.534-7.003l-.933 1.164a9.843 9.843 0 01-3.497-3.495l1.166-.933a.792.792 0 00.23-.94L9.561 6.96a.793.793 0 00-.924-.445 1291.6 1291.6 0 00-2.023.524.797.797 0 00-.588.88 11.754 11.754 0 0010.005 10.005.797.797 0 00.88-.587l.525-2.023a.793.793 0 00-.445-.923L14.6 13.327a.792.792 0 00-.94.23z'/%3E%3C/svg%3E") 50% no-repeat;
  background-size: 60%;
}

/**
  End whatsapp button
 */

/**
  Start custom popup
 */

.custom-popup-overlay {
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 26, 28, 0.8);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.custom-popup-overlay .custom-popup-container {
  z-index: 9999;
  top: 10%;
  background-repeat: no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center center;
  width: 75%;
  height: 80%;
  max-width: 800px;
  position: relative;
  display: block;
  margin: 0 auto;
  color: #fff;
  font-style: normal;
  text-align: center;
  overflow: auto;
  transition: all 1s ease-in-out;
  animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
}

.custom-popup-overlay .custom-popup-container .custom-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px 15px;
  font-size: 25px;
  color: #000000 !important;
  text-decoration: none;
  transition: unset !important;
  box-shadow: 2px 2px 2px #333;
  padding: 0 9px;
  background-color: #ffffff;
  border-radius: 100%;
  border: 2px solid #000000;
}

.custom-popup-overlay .custom-popup-container .custom-popup-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
  End custom popup
 */

.editor-container {
  width: 100%;
  display: block;
  position: relative;
  color: #444;
  padding: 25px 0 0;
}

.editor-container a:link, .editor-container a:visited, .editor-container a:active, .editor-container a:hover {
  color: #007bff;
  text-decoration: underline;
  background-color: transparent;
}

.editor-container img {
  max-width: 100%;
}

/* STAR Extras */

.carousel {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
}

.carousel .carousel-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-size: 24px;
  z-index: 0;
}

.carousel .carousel-banner.active {
  opacity: 1;
}

.carousel .carousel-banner .background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .carousel-banner .background-container .background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 9s ease-in-out;
}

.carousel .carousel-banner.active .background-container .background-image.zoomed {
  transform: scale(1.2);
}

.carousel .carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 5px; /* Reduce el tamaño del gap entre bullets */
  z-index: 1;
}

.carousel .carousel-nav .carousel-indicator {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.carousel .carousel-nav .carousel-indicator.active {
  background-color: rgba(255, 255, 255, 1);
}

/* Media Queries para diferenciar entre mobile y desktop */
@media (max-width: 767px) {
  .carousel .carousel-nav .carousel-indicator {
      width: 8px; /* Tamaño reducido para móviles */
      height: 8px;
  }
}

@media (min-width: 768px) {
  .carousel .carousel-nav .carousel-indicator {
      width: 12px; /* Tamaño mayor para desktop */
      height: 12px;
  }
}

/* END Extras */

/**
  ============================
  ======== Responsive ========
  ============================
 */

/* Fix responsive */
@media (min-width: 767px) and  (max-width: 1024px) {
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .wrap-popular-foods .box-popular-food .food-image {
    height: 208px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .panel-home header {
    height: 65px;
    padding: 6px 1rem;
  }

  .panel-home header .buttons .extra-link {
    display: none;
  }

  .panel-home header .hamburger-button {
    margin: 16px 0 0;
  }

  .panel-home header .hamburger-menu .hamburger-menu-content {
    padding-top: 85px;
  }

  .panel-home header .logo img {
    float: right;
    margin: -1px 0 0 0;
    height: 55px;
    max-width: 105px;
  }

  .panel-home header .hamburger-menu .hamburger-menu-content .menu-list .menu-item .menu-nav-link {
    padding: .4rem 0;
    font-size: 26px;
    line-height: 30px;
  }

  .panel-home .wrap-description .buttons .btn-cta {
    padding: 7px 14px;
    display: block;
    margin: 0 auto 5px;
    width: 100%;
    min-width: 200px;
  }

  .panel-home .wrap-description .buttons .btn-cta:nth-child(n+2) {
    margin-left: unset;
  }

  .panel .panel-content-video {
    min-height: 300px;
  }

  .panel .panel-content .bg-image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100%;
    height: 50vh;
  }

  .panel .panel-content .map-item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100%;
    height: 50vh;
  }

  .panel .panel-content .panel-description {
    transform: none;
    -webkit-transform: none!important;
    top: 2%;
    padding: 50px 10px 65px;
    position: static;
  }

  .panel .panel-content .panel-description h2 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 35px;
    height: auto;
  }

  .panel .panel-content .box {
    padding: 20px 10px;
  }

  .footer-main footer .footer-container {
    padding: 20px 20px;
  }

  .footer-main footer .copy-content {
    padding: 25px;
    font-size: 12px;
  }

  .footer-main footer .powered-by-content {
    padding: 25px;
    font-size: 12px;
  }

  .the-menu-container .food-controls.deep {
    bottom: 35px;
  }

  .cta-buttons {
    display: block;
  }

  .back-to-top {
    bottom: 85px;
    right: 19px;
  }

  .wrap-whatsapp {
    --bottom: 6px;
    --sep: 6px;
    --header: 55px;
  }

  .custom-popup-overlay .custom-popup-container {
    max-width: none;
    width: 90%;
    height: 70%;
  }

  .wrap-popular-foods .box-popular-food .food-body .food-title {
    height: auto;
  }

  .wrap-popular-foods .box-popular-food .food-body .food-description {
    height: auto;
  }

  .gallery-content .gallery-image {
    height: 286px;
  }
}

/**
  Fix support
 */

.mb_YTPBar {
  opacity: 1 !important;
}

@supports (-webkit-touch-callout: none) {
  .banner {
    background-attachment: scroll !important;
  }
}


/**
  Animations
 */

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes dots{0%,20%{color:transparent;text-shadow:.25em 0 0 transparent,.5em 0 0 transparent}40%{color:#fff;text-shadow:.25em 0 0 transparent,.5em 0 0 transparent}60%{text-shadow:.25em 0 0 #fff,.5em 0 0 transparent}80%,to{text-shadow:.25em 0 0 #fff,.5em 0 0 #fff}}@keyframes dots{0%,20%{color:transparent;text-shadow:.25em 0 0 transparent,.5em 0 0 transparent}40%{color:#fff;text-shadow:.25em 0 0 transparent,.5em 0 0 transparent}60%{text-shadow:.25em 0 0 #fff,.5em 0 0 transparent}80%,to{text-shadow:.25em 0 0 #fff,.5em 0 0 #fff}}
