/* CARROUSEL */
:root {
    --main-white-color: white;
    --main-black-color: white;
  }
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  .static {
    position: static;
  }
  
  label{
    color: rgb(0, 0, 0);
  }
  
  .cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .owl-carousel .owl-slide {
    position: relative;
    height: 100vh;
    background-color: rgb(226, 219, 201);
  }
  
  .owl-carousel .owl-slide-animated {
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.05s;
  }
  
  .owl-carousel .owl-slide-animated.is-transitioned {
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
  }
  
  .owl-carousel .owl-slide-title.is-transitioned {
    transition-delay: 0.2s;
  }
  
  .owl-carousel .owl-slide-subtitle.is-transitioned {
    transition-delay: 0.35s;
  }
  
  .owl-carousel .owl-slide-cta.is-transitioned {
    transition-delay: 0.5s;
  }
  
  .owl-carousel .owl-dots,
  .owl-carousel .owl-nav {
    position: absolute;
  }
  
  .owl-carousel .owl-dots .owl-dot,
  .owl-carousel .owl-nav [class*="owl-"]:focus {
    outline: none;
  }
  
  .owl-carousel .owl-dots .owl-dot span {
    /* background: transparent; */
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--main-black-color);
    transition: all 0.2s ease;
  }
  
  .owl-carousel .owl-dots .owl-dot:hover span,
  .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--main-black-color);
  }
  
  .owl-carousel .owl-nav {
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    margin: 0;
  }
  
  .owl-carousel .owl-nav svg {
    opacity: 0.3;
    transition: opacity 0.3s;
  }
  
  .owl-carousel .owl-nav button:hover svg {
    opacity: 1;
  }
  
  .owl-carousel .owl-nav [class*="owl-"]:hover {
    background: transparent;
  }
  
  section {
    display: none;
  }
  
  @media screen and (max-width: 575px) {
    .owl-carousel .owl-nav {
      top: 5%;
    }
    
    .owl-carousel .owl-nav svg {
      width: 24px;
      height: 24px;
    }
  }

  .owl-nav{
    display: none;
    padding-top: 5%;
  }
  /* ****************************************END CARROUSEL**************************************** */

  /* Seccion Nosotros */
  .nosotros{
    /* background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondo_home.jpg') center center no-repeat;
    background-size: cover; */
    background: none;
    background-color: rgb(226, 219, 201);
  }

  .nosotros .header-content .container .row p{
    color: rgb(137, 95, 73);
  }
  
  .nosotros .header-content .container .row h2{
    color: rgb(137, 95, 73);
  }
  /* ****************************************END NOSOTROS**************************************** */

  /* Seccion Menu */
  .menu{
    /* background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondo_home.jpg') center center no-repeat;
    background-size: cover; */
    background: none;
    background-color: rgb(226, 219, 201);
  }

  .menu .header-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
    text-align: left;
  }

  .menu .header-content .container .row p{
    color: black;
  }
  
  .menu .header-content .container .row h2{
    color: rgb(134, 93, 70);
  }

  h3{
    color: rgb(179, 145, 79);
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .menu .header-content .container .row label{
    font-weight: bold;
    color: rgb(134, 93, 70);
    font-size: 20px;
  }
  .menu .header-content .container .row span{
    color: black;
  }
  .menu .header-content .container .row label{
    font-weight: bold;
    color: black;
    font-size: 18px;
  }
  .menu .header-content .container .row span{
    color: black;
  }
  /* ****************************************END MENU**************************************** */

  /* Seccion Galeria */
  .galeria{
    /* background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondo_home.jpg') center center no-repeat;
    background-size: cover; */
    background: none;
    background-color: rgb(226, 219, 201);
  }

  .galeria .header-content .container .row p{
    color: black;
  }
  
  .galeria .header-content .container .row h2{
    color: rgb(134, 93, 70);
  }
  .galeria .header-content {
    padding-top: 10rem;
    padding-bottom: 0rem;
    text-align: left;
  }
  /* ****************************************END GALERIA**************************************** */

  /* Seccion Contacto */
  .contacto{
    background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondo_contacto.jpg') center center no-repeat;
    background-size: cover;
    background-color: rgb(226, 219, 201);
  }

  .contacto .header-content .container .row .col-lg-8 span{
    color: rgb(89, 62, 49);
    font-size: 20px;
  }
  
  .contacto .header-content .container .row h2{
    color: rgb(134, 93, 70);
  }
  .contacto .header-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
    text-align: left;
  }
  .contacto .header-content .container .row .col-lg-8 h3{
    color: rgb(85, 56, 42); 
  }
  
  p{
    color: rgb(89, 62, 49);
    font-size: 20px;
  }
  /* ****************************************END CONTACTO**************************************** */

/* NAVBAR */
  .navbar-custom .navbar-brand.logo-image img {
    width: 160px;
    height: 10%;
	margin-bottom: 1px;
	-webkit-backface-visibility: hidden;
}

  .navbar-custom.top-nav-collapse .nav-item .nav-link {
    color: rgb(134, 93, 70);
}
  .navbar-custom.top-nav-collapse .nav-item .nav-link.active {
    color: rgb(86, 58, 45);
}

.navbar-custom .nav-item .nav-link {
  padding: 0.25rem 0.75rem 0.25rem 0.75rem;
  color: rgb(134, 93, 70);
}

.navbar-custom.top-nav-collapse .nav-item .nav-link:hover{
  color: rgb(86, 58, 45);
}

.navbar-custom .nav-item .nav-link.active {
  color: rgb(86, 58, 45);
}

.navbar-custom.top-nav-collapse {
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  /* box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1); */
  background-color: rgb(226, 219, 201);
}

.navbar-custom.top-nav-collapse {
  box-shadow: none;
}

.navbar-custom {
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  background-color: rgb(226, 219, 201);
  box-shadow: none;
  font: 700 0.75rem/2rem "Montserrat", sans-serif;
  transition: all 0.2s ease;
}

.navbar-custom .navbar-toggler {
  color: rgb(134, 93, 70);
  font-size: 2rem;
}
.navbar-custom .nav-item .nav-link:hover {
  color: rgb(86, 58, 45);
}
/* ****************************************END NAVBAR**************************************** */

/* Boton subir página */
a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 0.75rem;
  bottom: 0.75rem;
  display: none;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 1.875rem;
  background: rgb(134, 93, 70) url("../images/up-arrow.png") no-repeat center 47%;
      background-size: auto;
  background-size: 1.125rem 1.125rem;
  text-indent: -9999px;
}

a.back-to-top:hover {
  position: fixed;
  z-index: 999;
  right: 0.75rem;
  bottom: 0.75rem;
  display: none;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 1.875rem;
  background: rgb(86, 58, 45) url("../images/up-arrow.png") no-repeat center 47%;
      background-size: auto;
  background-size: 1.125rem 1.125rem;
  text-indent: -9999px;
}
/* ****************************************END BOTON SUBIR PÁGINA**************************************** */

/* Seccion Copyright*/
.copyright {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background-color: rgb(226, 219, 201);
  text-align: center;
}

.copyright .p-small{
  color: black;
}

.copyright a{
  color: black;
}
/* ****************************************END COPYRIGHT**************************************** */

/* Sección Armadillo */
.armadillo{
  background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondo_contacto.jpg') center center no-repeat;
  background-size: cover;
  background-color: rgb(226, 219, 201);
}

.armadillo .header-content .container .row .col-lg-8 span{
  color: rgb(89, 62, 49);
  font-size: 20px;
}

.armadillo .header-content .container .row h2{
  color: rgb(134, 93, 70);
}
.armadillo .header-content {
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: left;
}
h3{
  color: rgb(86, 58, 45);
}

p{
  color: rgb(89, 62, 49);
  font-size: 20px;
}
/* ****************************************END ARMADILLO**************************************** */

/* Logo página de Menú */
#logo{
  width: 128px;
  height: 10%;
  padding-bottom: 3rem;
}

h4{
  color: rgb(89, 62, 49);
}
/* ************************************END LOGO PÁGINA MENÚ ************************************ */

/* Seccion MenuPágina */
.menuPagina{
  /* background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondoMenu.png') center center no-repeat;
  background-size: cover; */
  background: none;
  background-color: rgb(226, 219, 201);
}

.menuPagina .header-content {
  padding-top: 3rem;
  padding-bottom: 5rem;
  text-align: left;
}

.menuPagina .header-content .container .row p{
  color: black;
}

.menuPagina .header-content .container .row h2{
  color: rgb(134, 93, 70);
}

h3{
  color: black;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.menuPagina .header-content .container .row label{
  /* font-weight: bold; */
  color: black;
  font-size: 18px;
}
.menuPagina .header-content .container .row span{
  color: black;
}
/* ****************************************END MENU PÁGINA**************************************** */

.spinner-wrapper{
  background: rgb(226, 219, 201);
}
.spinner > div {
  background-color: rgb(134, 93, 70);
}

img{
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

h2{
  font-family: 'Roboto Slab', serif;
}

/* MENU ESTILOS TEXTO */
#plato{
  font-weight: 600;
  color: black;
  margin-top: -0.5rem;
  font-size: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

#precio{
  color: rgb(179, 145, 79);
  font-weight: 500;
  margin-top: -0.5rem;
  font-size: 15px;
}

#descplato{
  color: black;
  font-size: 12px;
  margin-top: -0.7rem;
  margin-left: 20px;
  margin-right: 20px;
  font-style: italic;
}

#txtPequenio{
  color: red;
  font-size: 8px;
  margin-top: -0.7rem;
}

#asteriscos{
  color: black;
  font-size: 8px;
  margin-top: -0.7rem;
  margin-left: 20px;
}

.row .col-md-6 .row .col-12 #plato{
  font-weight: 600;
  color: black;
  margin-top: -0.5rem;
  font-size: 15px;
  margin-left: 40px;
  margin-right: 0px;
}

.row .col-md-6 .row .col-12 #descplato{
  color: black;
  font-size: 12px;
  margin-top: -0.7rem;
  margin-left: 40px;
  margin-right: 40px;
}

.row .col-md-6 .row .col-12 #asteriscos{
  color: black;
  font-size: 8px;
  margin-top: -0.7rem;
  margin-left: 40px;
}

#txtTiempo{
  color: black;
  font-size: 10px;
  margin-top: -0.7rem;
}

#margen2 {
  border-image-source: url('../images/borde1.png');
  border-image-slice: 200 fill;
  border-image-width: 50px;
}

#margen1 {
  border-image-source: url('../images/borde2.png');
  border-image-slice: 200 fill;
  border-image-width: 50px;
}

.row .col-md-4 .row{
  margin-left: 2%;
  margin-right: 2%;
}

@media (min-width: 1200px) {
  .container {
  max-width: 90%;
  }
}

h6{
  color: rgb(152, 26, 38);
  margin-left: 20px;
  margin-right: 20px;
}

#txtAbout{
  color: black;
  font-size: 12px;
  margin-top: -0.7rem;
  margin-left: 20px;
  margin-right: 20px;
}

b{
  color: black;
}

#contenido{
  margin-left: 40px;
  margin-right: 40px;
}

.table-sm th, .table-sm td {
  padding: 0.0rem;
}

#tituloBebida{
  font-weight: 700;
  color: rgb(152, 26, 38);
}

#txtDesc{
  font-weight: 700;
  color: rgb(0, 0, 0);
}

#descrBebida{
  color: rgb(0, 0, 0);
  font-style: italic;
}

#txtEnMedio{
  text-align: center;
  vertical-align: middle;
}

small{
  color: rgb(0, 0, 0);
}


/**************************/
/*   Seleccion de Lugar   */
/**************************/

.selectLugar{
  background: none;
  background-color: rgb(226, 219, 201);
}

.selectLugar li.nav-item{
  font-size: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}

ul.nav.nav-pills {
  justify-content: center !important;
  text-align: center !important;
  align-items: center !important;
}

#listaLugar li.nav-item {
  margin-right: 1rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  display: block;
  color: rgb(0, 0, 0);
  background-color: rgb(179, 145, 79);
  /* background-color: red; */
  border-radius: 45px;
  /* border: 1px solid green; */
  text-decoration: none;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
}

.nav-pills a.nav-link, .nav-pills .show > a.nav-link {
    color: rgb(189, 191, 193);
    background-color: transparent;
    border: 1px solid grey;
    border-radius: 45px;
    text-decoration: none;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
}

/********************************************************************************************************************************/
/********************************/
/*   Seleccion de Tipo Comida   */
/********************************/

.selectTipoMenu .header-content {
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: left;
}

.selectTipoMenu li.nav-item {
  margin-right: 1rem;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.selectTipoMenu .header-content .container #myTabContent2 .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  display: block;
  color: rgb(134, 93, 70);
  background-color: transparent;
  border: 1px solid rgb(134, 93, 70);
  border-radius: 0px;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.selectTipoMenu .header-content .container #myTabContent2 .nav-pills a.nav-link, .nav-pills .show > a.nav-link {
    color: rgb(189, 191, 193);
    background-color: transparent;
    border: 1px solid grey;
    border-radius: 0px;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.selectTipoMenu .row .col-md-12{
  padding-left: 10%;
  padding-right: 10%;
}

.selectTipoMenu h2{
  color: rgb(134, 93, 70);
}

#adorno2{
  height: 35px;
  background-image: url('../images/adorno-2.png');
  background-size: cover;
  /* background: linear-gradient(to bottom right, rgba(72, 72, 212, 0), rgba(241, 104, 104, 0)), url('../images/fondoMenu.png') center center no-repeat;
  background-size: cover; */
  /* background: none;
  background-color: rgb(226, 219, 201); */
  
}

.selectTipoMenu .header-content .container .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  display: block;
  color: rgb(0, 0, 0);
  background-color: rgb(179, 145, 79);
  /* background-color: red; */
  border-radius: 45px;
  /* border: 1px solid green; */
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.selectTipoMenu .header-content .container .nav-pills a.nav-link, .nav-pills .show > a.nav-link {
    color: rgb(189, 191, 193);
    background-color: transparent;
    border: 1px solid grey;
    border-radius: 45px;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

/********************************************************************************************************************************/