/* -----------------------colores----------------------*/
:root {
    --principal-color: #e50203;
    --principal-color-gris: rgb(136, 136, 136);
    --principal-color-gris-transparente: rgba(136, 136, 136, 0.3);
}

/* -----------------------menu superior y lateral----------------------*/
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,*:after,*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a{
    color: black;
    text-decoration: none;
}

a:hover{
    color: black;
    text-decoration: none;
}

.fila{
    display: flex;
    flex-direction: row;
}

.columna{
    display: flex;
    flex-direction: column;
    align-items: center;
}

body,html {
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}

body{
    overflow-y: scroll;
}

html{
    scroll-behavior: smooth !important;
}

#titulo{
    justify-content: space-between;
    height: 8vh;
    margin: 0.5rem 1rem 0.5rem 1rem;
}

#logo{
    cursor: pointer;
    height: 8vh;
    -webkit-filter: drop-shadow(5px 5px 5px var(--principal-color-gris-transparente));
    filter: drop-shadow(5px 5px 5px var(--principal-color-gris-transparente));
}

.menu{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    background-color:white;
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
}

.sidenav a {
    padding: 1rem;
    text-decoration: none;
    font-size: 1rem;
    color: black;
    display: block;
    transition: 0.3s;
    border-bottom: 0.1px solid var(--principal-color-gris-transparente);
}

.sidenav a:hover{
    color: #f1f1f1;
    background-color: var(--principal-color);
}

.opcionesMenu{
    display: flex;
    align-items: center;
}

.opMenu{
    padding: 1rem;
    text-decoration: none;
    font-size: 1rem;
    color: black;
    display: block;
    transition: 0.3s;
}

.opMenu:hover{
    color: var(--principal-color);
    font-size: 1.1rem;
}

.capaTransparente{
    opacity: 0.1;
}

#cerrarMenuLateral{
    color: var(--principal-color-gris);
    font-size: 3.1rem;
    max-height: 8vh;
    padding: 0;
    padding-right: 1rem;
    text-align: end;
    background-color: transparent;
}

#itemSeleccionadoMenu1 {
    color: #f1f1f1;
    background-color: var(--principal-color);
    cursor: pointer;
}

#itemSeleccionadoMenu1 a{
    color: #f1f1f1;
}

#itemSeleccionadoMenu2 {
    color: var(--principal-color);
    cursor: pointer;
}

.abrirMenuLateral{
    background-color: white;
    margin-left: 0.5rem;
    color: var(--principal-color-gris);
    border: none;
    outline: 0;
    font-size: 1.7rem;
    display: none;
}

#cerrarMenuLateral:hover, .abrirMenuLateral:hover{
    color: rgb(88, 88, 88);
}

.idioma{
    margin: 0 !important;
    justify-content: center !important;
    width: auto !important;
    border-color: white !important;
}

#idiomaOp{
    display: none;
}

@media(max-width:880px){
    .abrirMenuLateral{
        display: flex;
    }

    #idiomaOp{
        display: flex;
        justify-content: center;
    }
    .opcionesMenu{
        display: none;
    }
}


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

.piePagina{
    padding: 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--principal-color-gris-transparente);
}

.informacionLegal, .redesSociales, .otros{
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.otros{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.redesSociales{
    font-size: 2rem;
    cursor: pointer;
}

.redesSociales i:hover{
    color: var(--principal-color);
    font-size: 2.1rem;
}

.informacionLegal a{
    border-right: 1px solid var(--principal-color-gris-transparente);
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
}

.contactoFooter{
    text-align: center;
}

.contactoFooter div{
    padding-left: 1rem;
    padding-right: 1rem;
}

.contactoFooter div p, .sinMargen{
    margin-bottom: 0 !important;
}

.informacionLegal a:hover{
    color: var(--principal-color) !important;
    font-size: 1.1rem;
}

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

#subirArriba{
    transform: rotate(-90deg);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-size: 12px;
    cursor: pointer;
}
    

/* -----------------------pagina inicio----------------------*/
.opciones, .videos, #slider{
    padding: 0rem 2rem 1rem 2rem;
}

.firstItem{
    padding-top: 2rem;
    padding-bottom: 0;
}

#slider{
    padding-bottom: 3rem;
    padding-top: 2rem;
}

h2{
    color: var(--principal-color);
    border-bottom: 1px solid;
}

.opcionesHijo a{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.opcionesHijo a:hover{
    text-decoration: none !important;
}

.opcionesHijo h3{
    color: var(--principal-color);
    text-align: center;
    margin: 0.5rem;
}

.opcionesHijo a p{
    color: black;
    text-align: justify;
    margin-bottom: 2rem;
}

.opcionesHijo div img{
    width: 100%;
    padding: 0;
    cursor: pointer;
}

.contenedorImagen{
    position: relative;
    width: 100%;
}

.masInformacionImagen{
    position: absolute;
    bottom: 0;
    left: 85%;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff !important;
    text-align: end !important;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s, visibility .2s;
    margin: 0 !important;
    padding: 0;
    padding-right: 1rem;
    font-size: 1.2rem;
}

.opcionesHijo a:hover .masInformacionImagen{
    visibility: visible;
    opacity: 1;
}

iframe{
    width: 100%;
    height: 20rem;
    margin-top: 1rem;
}

/* -----------------------sobre nosotros----------------------*/
.submenu{
    border-top: 1px solid var(--principal-color-gris-transparente);
    border-bottom: 1px solid var(--principal-color-gris-transparente);
    margin-top: 1rem;
    /*margin-bottom: 1rem;*/
    display: flex;
    flex-direction: row;
}

.submenu div{
    padding: 0.5rem;
    border-right: 1px solid var(--principal-color-gris-transparente);
    cursor: pointer;
    text-align: center;
}

.submenu div:hover{
    color: #f1f1f1;
    background-color: var(--principal-color);
    cursor: pointer;
}

.submenu div:hover a{
    color: white;
}

.imagenPrincipal img{
    width: 100%;
}

.historia, .menuDiario, .contacto, .seccionAlergeneos, .wip {
    padding: 0 2rem 1rem 2rem;
}

.imagenContenedor{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.imagenContenedor img{
    width: 100%;
    cursor: pointer;
}

.imagenContenedor:hover .masInformacionImagen{
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}

.KBgalleryNav, .KBgalleryNav:hover{
    background-color: transparent;
}

/* -----------------------menú----------------------*/
.tituloMenu{
    border-bottom: 1px solid;
}

@media(max-width:992px){
    .listaMenu{
        text-align: center;
    }
}

/* -----------------------carta----------------------*/
.contenedorBotones{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.boton, .botonInvertido:hover{
    margin: 0.3rem 0.6rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--principal-color);
    border-radius: 3px;
    color: var(--principal-color);
    background-color: white;
    text-decoration: none;
    cursor: pointer;
}

.boton:hover, .botonInvertido, .botonActivado{
    margin: 0.3rem 0.6rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--principal-color);
    border-radius: 3px;
    background-color: var(--principal-color);
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.cartaMenu{
    display: none;
}

.cartaMenuVisible{
    display: block;
}

.itemCarta{
    margin-bottom: 1rem;
}

.itemCabeceraCarta{
    display: flex;
    align-items: baseline;
}

.itemTituloCarta{
    color: var(--principal-color);
    margin: 0;
}

.itemPuntosCarta{
    flex: 1;
    border-bottom: 1px dashed var(--principal-color-gris-transparente);
}

.itemPrecioCarta{
    color: black;
    margin-bottom: 0.5rem;
}

.itemDescripcionCarta{
    color: var(--principal-color-gris);
}

.tipoItemCarta{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid;
    margin-bottom: 2rem;

}

.tipoItemCarta p{
    margin-bottom: 0;
}

#contenedorBotones{
    display: block;
}

#contenedorDropdown{
    display: none;
}

@media(max-width:720px){
    #contenedorBotones{
        display: none;
    }

    #contenedorDropdown{
        display: block;
    }
}

.dropdown, .dropdown-toggle, .dropdown-menu{
    width: 100%;
}

.dropdown{
    margin-bottom: 2rem;
}

.dropdown-toggle{
    color: var(--principal-color);
    background-color: white;
    border-color: var(--principal-color);
    text-align: inherit;
}
.show>.btn-secondary.dropdown-toggle{
    color: white !important;
    background-color: var(--principal-color) !important;
    border-color: var(--principal-color) !important;
}

.dropdown-toggle:hover, .dropdown-item:hover{
    color: white !important;
    background-color: var(--principal-color) !important;
    border-color: var(--principal-color) !important;
}

.alergeno{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* -----------------------instalaciones----------------------*/

.enlace{
    color: var(--principal-color)
}

.enlace:hover{
    color: #b80303 !important;
}

/* -----------------------contacto----------------------*/
.separacionItems{
    padding: 0.5rem;
}

#separadorVertical{
    max-height: 30rem;
}

.separacionItems {
    display: flex;
    justify-content: center;
}

@media (max-width: 1200px){
    .separacionItems {
        display: none;
    }
}

.formTexto{
    align-items: baseline;
    /*color: var(--principal-color);*/
    font-weight: bold;
}

.botonInvertido, .botonInvertido:hover{
    margin-right: 0;
}

.botonesForm{
    display: flex;
    justify-content: flex-end;
}

.aliniados{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-control{
    border: 1px solid var(--principal-color) !important;
}

#alertaMailCorrecto, #alertaMailError{
    display: none;
}

.notificationMessage{
    margin-bottom: 0;
    margin-top: 1rem;
    border-radius: 0.5rem;
    box-shadow: 1px 2px 6px #e3e3e3;
    padding: 0.5rem;
    background-color: #fff3cd;
    border: 1px solid #ffecb5;
    color: #664d03;
}

.wip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    p  {
        margin: 0;;
    }

    img {
        margin-top: 1rem;
        width: 15rem;
        opacity: .7;
    }
}