:root {
  --main-color: black;
  --secondary-color: #FFFF00;
  --third-color: #0064c9;
  --text-color: black;
  --first-font-family: "Raleway", sans-serif;
  --secondary-font-family: Arial,Tahoma,sans-serif;
  --max-width-containers: 95%;
  --logo-width: 190px;
  --bg-img: url("../img/bg-mobile.jpg");
  --bg-img-full: url("../img/bg-full2.jpg");
  /* --bg-filter: brightness(1) ; */
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--first-font-family);
  text-align: center;
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

/* HEADLINES */
h1, h2, h3 {
  color: var(--text-color);
  font-weight: bold;
  text-shadow: 1px 1px #a7a7a7;
}

h1 {
  line-height: 100%;
  padding-top: 0.69em;
  padding-bottom: 0.25em;
  margin: 0;
}

.h1-reset {
  line-height: none;
  text-shadow: none;
  padding: 0;
}

h2 {
  font-style: italic;
  font-size: 26px;
  line-height: 50%;
}

h3 {
  font-size: 22px;
  line-height: 100%;
}

/* IMAGES */
img {
  border: none;
}

.display-none {
  display: none;
}

.display-inline-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.black {
  color: black;
}

.white {
  color: white;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

/* VIDEOS */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FIREFOX */
button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0px dotted ButtonText;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

a,
a:active,
a:hover {
  background-color: transparent;
  outline-style: none;
}

/* MODAL */
.modal {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.959);
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  z-index: 6;
  /* filter: blur(2px); */
  -webkit-animation: modal 2s 3s forwards;
          animation: modal 2s 3s forwards;
  /* EL primer tiempo es cuanto se tarda en aparecer, el segundo tiempo es el retraso */
  /* animation-delay: 3s; */
  /* La propiedad abajo hace que el modal se quede una vez cargado */
  /* animation-fill-mode: forwards; */
  visibility: hidden;
  opacity: 0;
}

.modal__content {
  margin: auto;
  width: 300px;
  height: 210px;
  background: darkred;
  border: 4px solid black;
  border-radius: 10px;
  padding: 18px;
  color: white;
}

.modal__title {
  font-size: 28px;
}

#modal__close {
  display: none;
}

#modal__close + label {
  position: fixed;
  color: white;
  font-size: 24px;
  z-index: 7;
  background: darkred;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  top: 13px;
  right: 15px;
  cursor: pointer;
  text-align: center;
  -webkit-animation: modal 2s 3s forwards;
          animation: modal 2s 3s forwards;
  visibility: hidden;
  opacity: 0;
}

#modal__close:checked + label,
#modal__close:checked ~ .modal {
  display: none;
}

@-webkit-keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}
/* MAIN BACKGROUND */
.la11-bg {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.la11-bg:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  background-image: var(--bg-img);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: var(--bg-filter);
  filter: var(--bg-filter);
}

@media screen and (min-width: 650px) {
  .la11-bg:before {
    background-image: var(--bg-img-full);
  }
}

.la11-bg__content {
  width: 100%;
  height: 100%;
  -webkit-filter: none;
  filter: none;
  position: relative;
}

/* ACCORDION */
.accordion {
  cursor: pointer;
  width: 250px;
  height: 46px;
  border: none;
  font-size: 19px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-top: 9px;
  margin-bottom: 9px;
  padding: 0;
  text-decoration: none;
  font-family: var(--first-font-family);
  background-color: var(--main-color);
  color: white;
  outline: 3px solid var(--secondary-color);
  text-shadow: 1px 1px #4e4e4e;
}

.accordion__panel {
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  -o-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}

.accordion--margin-top {
  margin-top: 0;
}

.accordion__link-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.accordion__link-button:hover {
  outline: 3px solid var(--secondary-color);
  background-color: var(--main-color);
}

@media screen and (max-width: 281px) {
  .accordion {
    width: var(--max-width-containers);
  }
}
/* OTHER BUTTONS */

.btn--margin-right {
  margin-right: 7px;
}

.btn-other {
  color: white;
  cursor: pointer;
  outline: none;
  font-size: 17px;
  display: inline-block;
  text-shadow: 1px 1px #4e4e4e;
  /* border: 1px solid #838383; */
  border: 1px solid black;
  background-color: var(--secondary-color);
  padding: 12px;
  margin: 0 auto;
}

.btn-llamar {
  width: 222px;
  border: 1px solid #838383;
  background-color: #64B46B;
}

.btn-messenger {
  width: 222px;
  border: 1px solid #838383;
  background-color: #007fff;
}

.btn-email {
  width: 222px;
  border: 1px solid #838383;
  background-color: #D44638;
}

@media screen and (max-width: 281px) {
  .btnllamar, .btnmessenger, .btnemail, .btn-other {
    width: var(--max-width-containers);
  }
}
/* PAYMENT BANNERS */
.payment-icon-container {
  position: relative;
  width: 68px;
  height: 37px;
  border: 1px solid #dfdfdf;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.664);
}

.payment-icon {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* TEXTS */
.text-container {
  width: var(--max-width-containers);
  padding: 22px;
  background-color: rgba(255, 255, 255, 0.582);
  border: 2px solid var(--main-color);
  margin: 11px auto;
}

.text {
  font-size: 18px;
  color: var(--text-color);
  text-shadow: 1px 1px #d4d2d2;
}

.text-left {
  text-align: left;
}

.text-decoration-none {
  text-decoration: none;
}

.text-shadow-none{
  text-shadow: none;
}

li {
  line-height: 200%;
}

.counter-hidden {
  display: none;
}

/* LOGO */
.logo {
  max-width: var(--logo-width);
  width: 100%;
}

/* HEADBOARD */
.header {
  width: var(--max-width-containers);
  border: 4px solid var(--main-color);
  margin: 0 auto 16px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header__img {
  width: 100%;
  background-size: cover;
  display: block;
  border: 2px solid var(--secondary-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ANIMATIONS */
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}
.animation-delay-other {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

/* CONTACT SECTION */
.contact-section-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.541);
  padding: 20px 0 30px 0;
  border: 2px solid var(--main-color);
  width: var(--max-width-containers);
  margin: 0 auto;
}

/* Two-column layout */
.col {
  float: left;
  width: 50%;
  margin: auto;
  padding: 0 11px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* vertical line */
.vl {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  border: 1px solid #868686;
  height: calc(100% - 25%);
}

/* text inside the vertical line */
.vl-innertext {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 8px 10px;
}

/* hide some text on medium and large screens */
.hide-md-lg {
  display: none;
}

/* Responsive layout - when the screen is less than 650px wide,
make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 650px) {
  .col {
    width: 100%;
    margin-top: 0;
  }

  /* hide the vertical line */
  .vl {
    display: none;
  }

  /* show the hidden text on small screens */
  .hide-md-lg {
    display: block;
    text-align: center;
  }
}
/* CONTACT FORM */
.container-form {
  width: 90%;
  max-width: 411px;
  margin: 0 auto;
  position: relative;
  padding: 15px;
  background-color: var(--main-color);
  border: 2px solid var(--secondary-color);
  border-radius: 11px;
  font-size: 16px;
}

.contact-form-submit-button {
  color: white;
  padding: 9px;
  background-color: var(--secondary-color);
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  letter-spacing: 0.5px;
  border: 1.5px solid white;
  font-size: inherit;
  font-family: inherit;
}

.form-input-style,
.form-textarea-style {
  margin-bottom: 14px;
  border-color: #c4c4c4;
  border-width: 1px;
  padding: 10px;
  width: 98%;
  font-size: inherit;
  font-family: inherit;
}

.contact-txt-separation {
  margin-bottom: 0.9rem;
}

/* SOCIAL PROFILES */
.social-profiles {
  margin-left: 2px;
  margin-right: 2px;
}

/* THANKYOU PAGES */
.thankyou-page__bg {
  height: 100vh;
  background: -o-linear-gradient(top, var(--main-color) 0%, var(--secondary-color) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--main-color)), to(var(--secondary-color)));
  background: linear-gradient(to bottom, var(--main-color) 0%, var(--secondary-color) 100%);
}

.thankyou-page__div-content {
  background-color: white;
  border: 3px solid var(--secondary-color);
  width: 80%;
  max-width: 530px;
  padding: 22px;
  margin: 0 auto;
}

.counter-hidden {
  display: none;
}

/* FOOTER */
.footer {
  background-color: black;
  color: white;
  font-size: 17px;
  line-height: 150%;
}

.footer a {
  color: white;
}

.footer__links {
  padding: 4px;
}

.footer__txt {
  margin: 11px;
}

.barra-ltr {
  background: -o-linear-gradient(top, #2b2b2b 0%, #000000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#2b2b2b), to(#000000));
  background: linear-gradient(to bottom, #2b2b2b 0%, #000000 100%);
  height: 15px;
  background-color: black;
}

/* SHARE BUTTONS */
.share-buttons-container {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: white;
}

.table-cien {
  width: 100%;
  color: white;
}

.btn-comparte {
  background-color: rgba(0, 0, 0, 0.692);
  padding-right: 11px;
  width: 110px;
  font-size: 14px;
  font-weight: lighter;
  font-family: var(--secondary-font-family);
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-twitter {
  background-color: #1da1f2;
}

.btn-facebook {
  background-color: #3b579d;
}

.share-icons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 5px 5px 0;
}

.arrow-share-btns {
  -webkit-animation: slide1 1s ease-in-out infinite;
  animation: slide1 1s ease-in-out infinite;
  color: white;
}

@-webkit-keyframes slide1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
}
@keyframes slide1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
}
.th-separated {
  width: 7px;
}

/* HORARIOS */

.horarios {
  width: 100%;
  max-width: 250px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* TABLE MENU */

.tableMenu{
  width: 100%;
}
.tableMenu__title{
  font-size: 18px;
}
.tableMenu__plate{
  text-align: left;
}
.tableMenu__price{
  text-align: right;
}
.tableMenu__tr{
  padding-bottom: 8px;
}
.table__tr--yellow{
  background-color: rgba(255, 255, 0, 0.192);
}

.email-txt{
    overflow-wrap: break-word;
}