@charset "utf-8";
/* CSS Document */
:root {
    --primary: #64727B;
    --secondary: #A6896E;
    --title-color: #252525;
    --subtitle-color: #A6896E;
    --text-color: #222;
    --input-placeholder-color: #ADADAD;
    --input-text-color: #888888;
    --checkbox-color: #A6896E;
    --label-color: #252525;
    --label-color-hover: #A6896E;
    --red: #FF0000;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-ExtraLight.woff2') format('woff2'),
    url('../fonts/Muli-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Light.woff2') format('woff2'),
    url('../fonts/Muli-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-SemiBold.woff2') format('woff2'),
    url('../fonts/Muli-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli.woff2') format('woff2'),
    url('../fonts/Muli.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli-Bold.woff2') format('woff2'),
    url('../fonts/Muli-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* philosopher-regular - latin */
@font-face {
    font-family: 'Philosopher';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/philosopher-v21-latin-regular.woff2') format('woff2'),
    url('../fonts/philosopher-v21-latin-regular.ttf') format('truetype');
}

/* philosopher-700 - latin */
@font-face {
    font-family: 'Philosopher';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/philosopher-v21-latin-700.woff2') format('woff2'),
    url('../fonts/philosopher-v21-latin-700.ttf') format('truetype');
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../gestina/fonts/Roboto-Regular.eot');
    src: url('../gestina/fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../gestina/fonts/Roboto-Regular.woff2') format('woff2'),
    url('../gestina/fonts/Roboto-Regular.woff') format('woff'),
    url('../gestina/fonts/Roboto-Regular.ttf') format('truetype'),
    url('../gestina/fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*FIN FONT-FACE*/
p {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-moz-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-o-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        transform: translate(-125%, -50%);
        opacity: 0;
    }
    100% {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

html {
    height: 100%;
    scroll-padding-top: 100px;
}

html.no-scroll {
    overflow: hidden;
}

::-moz-selection { /* Code for Firefox */
    color: #FFF;
    background: var(--primary);
}

::selection {
    color: #FFF;
    background: var(--primary);
}

/* CKEDITOR GESTINA */
.cke_editable {
    font-family: RobotoRegular !important;
    font-weight: 300 !important;
    overflow: auto;
    font-size: 16px;
}

/* FIX margin listas*/
.cke_editable {
    overflow-y: auto;
}

.cke_editable, .cke_editable li {
    margin: 20px;
}

.cke_editable strong {
    font-weight: bold;
}

* {
    padding: 0;
    margin: 0;
    outline: none;
}

body {
    font-family: "Muli", serif;
    font-weight: 400;
    padding: 0;
    font-size: 16px;
    color: var(--text-color);
    line-height: normal;
    /*overflow: hidden;*/
    padding-right: 0 !important;
}

body:not(.cke_editable) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wow {
    visibility: hidden;
}

/*AUTOCOMPLETE*/
.ui-autocomplete {
    position: absolute;
    max-height: 250px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    width: 250px;
    z-index: 9900000999;
    background-color: white !important;
    border: 1px solid #DCDCDC !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.ui-menu .ui-menu-item-wrapper {
    font-size: 1rem;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border-color: #ECECEC;
    background: #ECECEC;
    font-weight: normal;
    color: #666666 !important;
    margin: 0 !important;
    border: none !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
    position: relative;
    padding: 11px 20px;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
}

.ui-menu .ui-menu-item {
    display: block;
}

/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
    height: 250px;
}

.ui-autocomplete-loading {
    background: white url("https://jqueryui.com/resources/demos/autocomplete/images/ui-anim_basic_16x16.gif") center right 10px no-repeat !important;
}

/*FIN AUTOCOMPLETE*/

/* INICIO COMUNES */
form {
    overflow: hidden
}

.contenido > .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto
}

.owl-nav.disabled {
    display: none !important
}

.owl-dots.disabled {
    display: none !important
}

.owl-carousel {
    touch-action: manipulation;
}

.owl-carousel.owl-center .owl-stage {
    margin-left: auto;
    margin-right: auto;
}

.owl-carousel.owl-custom-nav.owl-loaded {
    display: flex;
    /*flex-direction: column-reverse;*/
    flex-direction: column;
}

.owl-custom-nav .owl-nav:not(.disabled),
.owl-custom-nav2 .owl-nav:not(.disabled) {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    position: relative;
    z-index: 11;
}

.current_section_producto .owl-custom-nav .owl-nav:not(.disabled) {
    margin-top: -40px;
}

.owl-custom-nav .owl-nav:not(.disabled) > div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    background-color: white;
    transition: all .3s;
}

.owl-custom-nav .owl-nav:not(.disabled) > div:hover {
    background-color: var(--primary);
}

.owl-custom-nav2 .owl-nav:not(.disabled) {
    margin-top: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.owl-custom-nav .owl-nav div path,
.owl-custom-nav2 .owl-nav div path {
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.owl-custom-nav .owl-nav div:hover path,
.owl-custom-nav2 .owl-nav div:hover path {
    fill: #FFF;
}

.owl-shadow-margin .owl-stage-outer {
    margin: -40px -26px;
    padding: 40px 26px;
}

.owl-shadow-margin2 .owl-stage-outer {
    margin: -15px;
    padding: 15px;
}

.owl-shadow .owl-stage-outer {
    overflow: visible;
}

.owl-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: all 150ms linear;
}

.owl-shadow .owl-item.active {
    transition: all 350ms linear;
    opacity: 1;
    visibility: visible;
}

.dimbox-container path {
    fill: #FFF;
}

.dimbox-container *:active, .dimbox-container *:focus, .dimbox-container *:focus-visible {
    outline: none;
}

.dimbox-container [class^=dimbox-btn] {
    opacity: 1;
}

.trans-04 {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.subTituloSeccion {
    word-wrap: break-word;

    color: var(--subtitle-color);

    margin-bottom: 50px;

    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    letter-spacing: 2.2px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.subTituloSeccion::before, .subTituloSeccion::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    border: 1px dashed var(--subtitle-color);
}

.subTituloSeccion.text-start {
    justify-content: flex-start;
}

.subTituloSeccion.text-start::before {
    display: none;
}

.subTituloSeccion a, .tituloSeccion a {
    color: currentColor;
    transition: all .3s ease-in-out;
}

.subTituloSeccion a:hover, .tituloSeccion a:hover {
    color: var(--primary);
}

.tituloSeccion {
    color: var(--title-color);
    font-family: Philosopher, sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: normal;
    letter-spacing: 0.7px;
    text-align: center;
}

a.tituloSeccion, .tituloSeccion a {
    color: var(--title-color);
}

a.tituloSeccion:hover, .tituloSeccion a:hover {
    color: var(--title-color);
}

.subTituloSeccion.white, .textoSeccion.white, .subTituloSeccion.white a, .subTituloSeccion.white a:hover, .tituloSeccion.white, .white, .white a, .form-check label .white a {
    color: white;
}

.textoSeccion {
    color: var(--text-color);
    word-wrap: break-word;

    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.textoSeccion2 {
    font-size: 25px;
    line-height: 46px;
}

.textoSeccion3 {
    font-size: 16px;
    line-height: 25px;
}

.textoSeccion table {
    /*width: 100%;*/
    max-width: 100%;
    /*text-align: center;*/
    color: var(--text-color);
    margin-bottom: 0 !important;

    border-collapse: collapse;
    border-color: var(--primary);
    /*border-style: hidden; !* hide standard table (collapsed) border *!*/
}

.textoSeccion table td, .textoSeccion table th {
    border-top: 1px solid;
    border-color: var(--primary);
    padding: 8px 10px;
}

.lh-156 {
    line-height: 156%;
}

.textoSeccion a:not(.btnStandard) {
    color: var(--secondary);
    text-decoration: underline;
}

.textoSeccion.white a:not(.btnStandard) {
    color: #FFF;
    text-decoration: underline;
}

.textoSeccion a:not(.btnStandard):hover {
    text-decoration: underline;
}

.textoSeccion strong, .textoSeccion b {
    font-weight: 700;
}

.textoSeccion ul, .textoSeccion ol {
    margin-left: 45px;
    margin-top: 10px;
}

.btnStandard {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

    box-sizing: border-box;

    /*background: var(--secondary);*/
    background-image: linear-gradient(160deg, var(--secondary) 50%, var(--primary) 50%);
    background-size: 300%;

    border-radius: 35px;

    text-decoration: none !important;
    text-align: center;

    -webkit-transition: all .5s ease-in-out !important;
    transition: all .5s ease-in-out !important;

    padding: 14px 34px;

    overflow: hidden;
    outline: none;

    color: #FFF;
    font-family: Philosopher, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.btnStandard::after {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../img/iconos/arrow-button.svg) no-repeat center center;
}

.btnStandard:not(.disabled):active, .btnStandard:not(.disabled):hover, .btnStandard:not(.disabled):focus, .active > .btnStandard:not(.disabled), .btnStandard.active {
    color: #FFF;
    background-position: 99%;
}

.imagenDerecha {
    position: sticky;
    top: 50px;

    margin: 0;
    text-align: right
}

.img-effect{position: relative}
.img-effect.imagenDerecha {position: sticky}
.img-effect::after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.img-effect:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.btnStandard.disabled {
    border-color: #BBBBBB !important;
    background-color: #BBBBBB !important;
    color: #FFFFFF !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.sinResultados {
    color: #777777;
    text-align: center;
    padding: 120px 0;
}

.btnCerrar {
    text-transform: uppercase;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.sl-overlay {
    z-index: 10033;
    background: #000;
}

.sl-wrapper {
    z-index: 10034;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
}

html:not(.loaded) {
    scroll-behavior: auto !important;
}

.no-scroll {
    overflow: hidden !important;
}

ul, ol {
    padding: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* FIN COMUNES */

/* INICIO HEADER */
header {
    position: relative;
    z-index: 1111;
    background-color: white;
}

.navbar-nav {
    flex: 1;
    justify-content: space-between;
    gap: 30px;
}

.nav-item .nav-link svg {
    margin-left: 10px;
}

.nav-icon{display: none}

.nav-link svg path {
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

li.dropdown:hover .nav-link svg path,
#menuNavbarCollapse li.menu-seleccionado > a svg path {
    stroke: var(--secondary);
}

#wrapper {
    margin-top: 50px;
    flex-grow: 1;
}

body.current_section_inicio #wrapper, body.current_section_contacto #wrapper, body.current_section_quienesSomos #wrapper, body.current_section_menu #wrapper {
    margin-top: 0;
}

.olvidePass, .olvidePass:hover {
    font-size: 15px;
    color: var(--primary) !important;
    display: block;
    text-decoration: underline;
}

.margin-left-3 + .olvidePass {
    margin-left: 28px;
}

.dropdown-toggle::after, .dropup .dropdown-toggle::after {
    /*quitamos la flecha del desplegable*/
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
}

.owl-dots:not(.disabled) {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    gap: 8px;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
}

#banner .owl-dots:not(.disabled) {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-top: 0;
}

#banner .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 15px;
}

#banner .owl-nav svg {
    fill: none;
}

#banner .owl-nav > div {
    pointer-events: all;
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

#banner .owl-nav > div:hover {
    background-color: var(--secondary);
}

#banner .owl-nav > div:hover path {
    stroke: #FFF;
}

.owl-dot {
    position: relative;
    display: block !important;
}

.owl-dot span {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CED4DA;
}

.owl-dot span, #banner .owl-nav > div path {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.owl-dot.active span,
.owl-dot:hover span {
    background: var(--primary);
}

#carousel-banner img {
    object-fit: cover;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.slide-banner {
    position: relative;
    overflow: hidden;
}

.datos-banner {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    left: calc(8.333333334% + 12px);
    margin: auto;

    width: 630px;

    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);

    padding: 40px 60px 60px;

    z-index: 2;
}

.datos-banner-titulo {
    font-family: Philosopher, sans-serif;
    font-size: 44px;
    font-weight: 400;
}

.datos-banner-texto {
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
}

.datos-banner-titulo + .datos-banner-texto {
    margin-top: 40px;
}

.datos-banner-btn {
    margin-top: 42px;
}

#carousel-banner .active .datos-banner {
    animation: slideIn 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

#banner {
    z-index: 20
}

#banner,
#carousel-banner img {
    position: relative;
    height: 550px;
    max-height: 1000px;
    min-height: 550px;
}

.current_section_inicio #banner,
.current_section_inicio #carousel-banner img {
    height: calc(100vh - 207px);
}

#cerrarMenu {
    display: none;
}

#navbarWeb.navbar {
    pointer-events: all;
    padding: 0;
    align-items: center;
    display: flex;
}

#menuNavbarCollapse li {
    position: relative
}

#menuNavbarCollapse li.nav-item > a {
    position: relative;
    padding: 16px 0;
    text-align: center;

    overflow: hidden;

    color: #FFF;
    font-family: Philosopher, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: capitalize;
}

#menuNavbarCollapse li.nav-item > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #FFF;
    opacity: 0;
    transition: all .3s;
    transform: scaleX(0);
    transform-origin: center;
}

#menuNavbarCollapse li.dropdown > a i {
    margin-left: 5px;
}

#menuNavbarCollapse li.nav-item:hover > a, #menuNavbarCollapse li.menu-seleccionado > a, #menuNavbarCollapse li.show > a {
    color: #FFF;
}

#menuNavbarCollapse li.nav-item:hover > a::before, #menuNavbarCollapse li.menu-seleccionado > a::before, #menuNavbarCollapse li.show > a::before {
    transform: scaleX(1);
    opacity: 1;
}

#menuNavbarCollapse li a {
    transition: all .3s;
}

#menu-web .dropdown:not(.bootstrap-select):hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 100000 !important;
    top: calc(100% + 10px) !important;

    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    padding: 10px 0;

    -webkit-transform: scaleY(1) translateX(-50%);
    -khtml-transform: scaleY(1) translateX(-50%);
    -moz-transform: scaleY(1) translateX(-50%);
    -ms-transform: scaleY(1) translateX(-50%);
    -o-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

#menu-web li.dropdown::after {
    position: absolute;
    left: -13px;
    right: -13px;
    top: 100%;
    height: 10px;
    content: '';
    background: transparent;
    z-index: 1;
}

#navbarWeb .dropdown-menu {
    top: calc(100% + 10px) !important;
    left: 50%;
    display: block !important;
    padding: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0;
    border: none;
    width: 139px;
    margin-top: 0;

    visibility: hidden;
    /*overflow: hidden;*/
    -webkit-transform: scaleY(0) translateX(-50%);
    -khtml-transform: scaleY(0) translateX(-50%);
    -moz-transform: scaleY(0) translateX(-50%);
    -ms-transform: scaleY(0) translateX(-50%);
    -o-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
    -webkit-transform-origin: 0 0;
    -khtml-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;

    transition: all .3s;
    min-width: initial;

    max-height: calc(100vh - 300px);
    overflow: auto;
}

#menu-web .dropdown-menu .dropdown:not(.bootstrap-select):hover > .dropdown-menu {
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

#menu-web .dropdown-menu li + li::before {
    content: "";
    width: 69px;
    height: 1px;
    border-bottom: 1px dashed #C3E2D3;
    margin: 5px auto;
    display: block;
}

#navbarWeb .dropdown-menu .dropdown-menu {
    left: 0;
}

#menu-web .dropdown:not(.bootstrap-select):hover > .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0 !important;
}

#menu-web > li:last-child:hover > .dropdown-menu .dropdown-menu {
    left: initial !important;
    right: 100% !important;
}

#navbarWeb .dropdown-item {
    transition: all .4s;
    position: relative;


    color: #000;
    text-align: center;
    font-family: Muli, sans-serif;
    font-size: 15px;
    font-weight: 600;

    padding: 10px 15px;
}

#navbarWeb .dropdown:hover > .dropdown-item,
#navbarWeb .dropdown-item:hover,
#navbarWeb .dropdown-item:focus {
    color: var(--secondary) !important;
    background-color: white !important;
}

#navbarWeb .dropdown:hover > .dropdown-item:before,
#navbarWeb .dropdown-item:hover:before,
#navbarWeb .dropdown-item:focus:before {
    opacity: 1;
}

.sub-arrow {
    display: none !important;
}

/* INICIO MENU FIJO */
#menuBloque.fixed {
    opacity: 1;
    visibility: visible;
    max-height: initial;
    position: fixed;
    width: 100%;
    top: -100px;
    left: 0;
    right: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -o-transition: transform 500ms ease, background 500ms ease;
    transition: transform 500ms ease, background 500ms ease, -webkit-transform 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    z-index: 1999;

    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

body.menuFixed {
    padding-top: 50px;
}

/* FIN MENU FIJO */

#header-top {
    background-color: var(--primary);
}

#header-top > div {
    display: flex;
    align-items: center;
}

#header-datos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.datos-localizacion {
    display: flex;
    column-gap: 150px;
}

.item-dato-localizacion {
    display: flex;
    gap: 17px;

    font-size: 14px;
    line-height: 16px;
}

#menuBloque {
    background-color: var(--secondary);
}

#menu-web {align-items: center}

#menu-web .separator {
    width: 1px;
    height: 20px;
    background-color: #FFF;
}

.navbar-brand{padding: 0; margin: 0}

.redes-sociales {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.redes-sociales a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #FFF;
}

.redes-sociales a, .redes-sociales a path {transition: all .3s;}

.redes-sociales a:hover path{fill: #FFF;}

.redes-sociales .iconFacebook:hover {background-color: #0866FF;}
.redes-sociales .iconInstagram:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.redes-sociales .iconYoutube:hover {background-color: #FF0033;}
.redes-sociales .iconTikTok:hover {background-color: #000000;}

#idiomas {
    margin-right: 30px;
    position: relative;
}

#idiomas-desplegable
{
    position: absolute;
    left: -24px;
    min-width: 135px;

    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    padding: 1px;

    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;

    transition: all .4s;

    z-index: 1111111;
}

#idiomas:hover #idiomas-desplegable
{
    opacity: 1;
    transform: scaleY(1);
}

.item-idioma
{
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    cursor: pointer;
}

#idiomas-desplegable .item-idioma
{
    color: var(--text-color);
    padding: 12px 22px;
    transition: all .3s;
}

#idiomas-desplegable .item-idioma:hover
{
    background-color: var(--primary);
    color: #FFF;
}

/* FIN HEADER */

/* INICIO SECCION INICIO */

.item-ventaja {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
    height: 100%;
    padding: 27px 25px 45px;
    transition: all .3s;
}

.item-ventaja-icono {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-ventaja-titulo {
    font-family: Philosopher, sans-serif;
    font-size: 25px;
    font-weight: 400;
}

.item-ventaja-texto {
    border-top: 1px solid #CCC;
    margin-top: 15px;
    padding-top: 26px;
    line-height: 25px;
    min-height: 100px;
}

.item-ventaja:hover {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-15px);
}

#sabores-lancora {
    background-color: #EDE7E2;
    padding: 80px 0;
}

#sabores-lancora-img {
    border-radius: 30px;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.25);
    height: 100%;
}

#items-sabores {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    height: 100%;
}

.item-sabores {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
    height: 100%;
    padding: 38px 20px;
}

.item-sabores-titulo {
    font-family: Philosopher, sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-top: 40px;
}

.item-sabores-texto {
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 10px;
    height: 90px;
}

#faqs-img {
    position: sticky;
    top: 80px;
    border-radius: 20px;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.25);
}

#bloque-contacto {
    display: grid;
    grid-template-columns: 650px minmax(0, 1fr);

    border-radius: 20px;
    background: #EDE7E2;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;

    z-index: 1;
}

#bloque-contacto #contiene-contacto {
    padding: 30px;
}

#bloque-contacto .textoSeccion {
    color: #666;
}

#datos-localizacion {
    position: absolute;
    right: 20px;
    bottom: 20px;

    border-radius: 20px;
    background: rgba(255, 255, 255, 0.90);
    width: 450px;
    padding: 30px;
}

#datos-localizacion .item-dato-localizacion + .item-dato-localizacion {
    margin-top: 20px;
}

#datos-localizacion .item-dato-localizacion {
    display: flex;
    gap: 10px;
}

#datos-localizacion .item-dato-localizacion-icono {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary);
}

#datos-localizacion .item-dato-localizacion-titulo {
    color: var(--secondary);
    font-family: Philosopher, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 5px;
}

#datos-localizacion .item-dato-localizacion-texto {
    font-size: 14px;
    line-height: 20px;
}

.item-galeria {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.item-galeria-imagen {

}

.item-galeria-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all .3s;
    border-radius: 20px;
}

.item-galeria-hover span {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    border-radius: 50%;
    transition: all .3s;
}

.item-galeria:hover .item-galeria-hover {
    transform: scale(1);
    opacity: 1;
}

.item-galeria-hover span:hover {
    transform: rotate(180deg);
}

#breve-qs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding-right: 12px;
}

.container-menu-restaurante {
    position: relative;

    height: calc(100dvh - 207px);
    min-height: 700px;
}

.menu-restaurante-imagen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-restaurante-menu {
    position: relative;
    z-index: 1;

    background: rgba(255, 255, 255, 0.90);
    width: 630px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 50px 5px 25px;

    display: flex;
    flex-direction: column;
}

.menu-restaurante-body {flex-grow: 1}

.menu-restaurante-header, .menu-restaurante-body, .menu-restaurante-footer {
    padding-left: 45px;
    padding-right: 45px;
    text-align: center;
}

.menu-restaurante-titulo {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.menu-restaurante-texto {
    color: #222;
    font-size: 16px;
    line-height: 23px;
}

.menu-restaurante-texto + .menu-restaurante-titulo {
    margin-top: 30px;
}

.menu-restaurante-footer {padding-top: 15px}

.menu-restaurante-precio {
    color: #222;
    font-family: Philosopher, sans-serif;
    font-size: 50px;
    font-weight: 400;
}

.menu-restaurante-precio span {
    font-size: 25px;
}

.menu-restaurante-info {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
}

/* FIN SECCION INICIO */

/* INICIO SECCION CARTA */

#alergenos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;

    color: #222;
    text-align: center;
    font-family: Philosopher, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;

    margin-bottom: 50px;
}

.alergeno {
    flex: 0 0 98px;
    width: 98px;
    white-space: nowrap;
}

.alergeno-icono {
    aspect-ratio: 1;
    background-color: #EDE7E2;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    margin-bottom: 12px;
}

#menu-carta {
    position: sticky;
    top: 50px;
    margin-bottom: 45px;
    z-index: 11;
}

#menu-carta ul {
    list-style: none;
    border-radius: 5px;
    background: #F3F4F6;
    margin-bottom: 0;
    padding: 10px 20px;

    display: flex;
    align-items: center;

    white-space: nowrap;
    user-select: none;
}

#menu-carta ul li + li::before {
    content: "";
    background-image: url("../img/iconos/menu.svg");
    background-size: contain;
    width: 24px;
    height: 24px;
    margin: 0 38px;
    vertical-align: middle;
    display: inline-block;
}

#menu-carta ul a {
    color: #222;
    font-family: Philosopher, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;

    white-space: nowrap;
    -webkit-user-drag: none;

    transition: all .3s;
}

#menu-carta ul a:hover, #menu-carta ul a.active {
    color: var(--secondary);
}

#carta-productos > .row + .row
{
    margin-top: 50px;
}

#carta-productos > .row:nth-child(2n - 1) {
    flex-direction: row-reverse;
}

.item-carta-producto-img {
    position: sticky;
    top: 120px;
    border-radius: 20px;
}

.tabla-produtos {
    color: #222;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
}

.tabla-produtos tr {
    display: flex;
    align-items: flex-end;
}

.tabla-produtos tr td {
    padding: 5px 0;
}

.item-producto-texto {
    position: relative;
    margin-right: 12px;
    flex-grow: 1;
    overflow: hidden;
}

.item-producto-texto:after {
    content: "........................................................................................................................................................................................................................................................................................................................................";
    position: absolute;
    padding-left: 5px;
}

.item-producto-descripcion {
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
}

.item-producto-precio {
    flex-shrink: 0;
}

/* FIN SECCION CARTA */

/* INICIO SECCION CONTACTO */
#mapa {
    margin-top: -160px;
}

#google_maps, .google_maps
{
    height: 725px;
}

.current_section_contacto #google_maps, .current_section_contacto .google_maps
{
    height: 745px;
    margin-top: 0 !important;
}

#google_maps.no-mapa
{
    position: relative;
    background-image: url("../img/mapa.png");
    background-size: cover;
    background-position: center center;
}

.current_section_contacto #google_maps.no-mapa {
    background-image: url("../img/mapa_contacto.png");
}

.current_section_contacto #datos-localizacion {
    width: 390px;
}

.datosMapas
{
    position: absolute;
    right: 0;
    bottom: 0;
    background: white;
    font-family: Roboto, Arial, sans-serif;
    font-size: 0.625rem;
    padding: 0 5px;
    color: rgb(68, 68, 68);
    user-select: none;
}

.datosMapas a,
.datosMapas a:hover
{
    color: rgb(68, 68, 68);
    margin-left: 3px;
    text-decoration: none;
}

/* FIN SECCION CONTACTO */

/* INICIO FAQS */
.itemFaq + .itemFaq {
    margin-top: 15px;
}

.itemFaqTitle {
    cursor: pointer;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

#faqs .card-header[aria-expanded="true"] .itemFaqTitle {
    color: var(--primary);
}

#faqs .card-header[aria-expanded="true"] .itemFaqBtn {
    transform: rotate(-180deg);
}

#faqs .card-header[aria-expanded="true"] .itemFaqBtn path{
    stroke: var(--primary);
}

/*.itemFaqData.itemFaqDataText
{
	display: none;
	margin-left: auto;
}*/
.itemFaqText {
    color: #666;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-top: 10px;
}

.itemFaqBtn {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

#faqs .card-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 15px;
    margin: 0;
    cursor: pointer;
    gap: 15px;

    border-radius: 10px;
    border: 1px solid #EAEAEA;
    background: #FFF;
}

#faqs .card {
    box-shadow: none;
    border: none;
}

/* FIN FAQS */

/* INICIO SCROLL BAR */
.custom-scroll-bar
{
    scrollbar-width: thin;
    scrollbar-color: #DADADA #FFF;
    overflow: auto;
}

.custom-scroll-bar::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    border-radius: 10px;
}

.custom-scroll-bar::-webkit-scrollbar
{
    width: 8px;
    background-color: #FFF;
}

.custom-scroll-bar::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #DADADA;
}

.custom-scroll-bar::-webkit-scrollbar-thumb
{
    -webkit-box-shadow: none;
}

.custom-scroll-bar:hover
{
    scrollbar-color: #DADADA #FFF;
}

.custom-scroll-bar:hover::-webkit-scrollbar-thumb
{
    background-color: #DADADA;
}

/* FIN SCROLL BAR */

/* INICIO PAGINADOR */
.listadoPaginador {
    margin-top: 50px !important;
}

.contienePaginador
{
    margin: 0;
    color: #FFF;
    font-weight: normal;
    font-size: 0;
    display: inline-block;
}

.contienePaginador path
{
    stroke: var(--secondary);
}

.contienePaginador a
{
    font-family: Philosopher, sans-serif;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    margin: 0;
    font-size: 20px;
    vertical-align: middle;
    border: 1px solid var(--secondary);
}

.contienePaginador a + a
{
    margin-left: 7px;
}

.contienePaginador a:hover,
.contienePaginador a.paginaSeleccionada,
.contienePaginador a#enlaceAtras:hover,
.contienePaginador a#enlaceSiguiente:hover
{
    color: #FFF;
    background: var(--primary);
    border-color: var(--primary);
}

.contienePaginador a#enlaceAtras:hover path,
.contienePaginador a#enlaceSiguiente:hover path
{
    stroke: #FFF;
}

/* FIN LISTADO */

/* INICIO FOOTER */
footer
{
    position: relative;
    color: #FFF;
    font-size: 15px;
    background-color: var(--primary);
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.current_section_inicio footer,
.current_section_contacto footer,
.current_section_menu footer
{margin-top: 0}

footer a{position: relative}

footer a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background-color: white;
    transition: all .3s;
}

footer a:hover, footer a.menu-seleccionado
{text-decoration: none; color: #FFF;}

footer a:hover::before, footer a.menu-seleccionado::before {
    transform: scaleX(1);
}

#menu-footer {
    border-top: 1px dotted #FFF;
    border-bottom: 1px dotted #FFF;
    padding-top: 18px;
    padding-bottom: 18px;
}

#menu-footer ul, #menu-legales ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
}

#menu-footer ul {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2.25px;
    text-transform: uppercase;
    row-gap: 5px;
}

#menu-footer ul li + li::before {
    position: relative;
    top: -2px;

    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 3px;
    height: 3px;
    background-color: #FFF;
    border-radius: 50%;
    margin: 0 30px;
}

#copy-legales {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;

    font-size: 15px;
    font-style: italic;
    font-weight: 300;
}

#menu-legales ul {
    gap: 12px 25px;
}

#btn-subir {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;

    display: inline-flex;
    padding: 10px 10px 20px 10px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    background-color: white;
    border-radius: 50px;
    transition: all .3s ease-in-out;
    border: 1px solid var(--primary);
}
#btn-subir-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#btn-subir #btn-subir-icon > svg:last-child {
    position: absolute;
    transform: translateY(40px);
}

#btn-subir-text {
    color: var(--primary);
    font-size: 17px;
    writing-mode: vertical-lr;
    transform: scale(-1);
}

#btn-subir:hover {
    transform: translateY(-6px);
}

#btn-subir:hover #btn-subir-icon > svg:first-child{
    transform: translateY(-40px);
    transition: all 0.3s ease-in-out;
}

#btn-subir:hover #btn-subir-icon > svg:last-child{
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
/* FIN FOOTER */

.tab-pane.active
{
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: flipInX;
}

/* INICIO VALORACIONES */
/*#valoraciones.owl-carousel
{position: initial}*/
#valoraciones.owl-loaded {
    display: flex;
    flex-direction: column;
}

#valoraciones.owl-loaded .owl-dots {
    align-self: center;
    width: fit-content;
}

#valoraciones .owl-stage {
    display: flex;
    align-items: stretch;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 0 !important;
}

.valoracion-media {
    font-size: 25px;
    line-height: 25px;
    color: #ffb238;
    margin-right: 10px;
    font-weight: 500;
}

.item-resena {
    position: relative;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    padding: 25px 20px;
    background: white;
    height: 100%;
}

.icono-google {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 19px !important;
    height: auto;
}

.item-resena-estrellas {
    margin-top: 12px;
}

.valoracion-estrellas span {
    display: inline-block;
    vertical-align: middle;
}

.valoracion-estrellas {
    line-height: 0;
    display: flex;
    align-items: center;
}

.item-resena-imagen {
    border-radius: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .25);
    flex-shrink: 0;
    width: 50px !important;
}

.item-resena-datos {
    padding-left: 13px;
    padding-right: 30px;
}

.item-resena-nosotros .item-resena-usuario {
    max-height: initial;
    color: #222;

    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    overflow: initial;
}

.item-resena-nosotros .item-resena-datos {
    padding-right: 0;
}

.item-resena-usuario {
    position: relative;
    color: #222;
    margin-bottom: 2px;
    max-height: 40px;
    overflow: hidden;

    text-transform: capitalize;

    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

.item-resena-usuario img {
    position: absolute;
    width: 19px !important;
    height: auto;
    right: 0;
    top: 0;
}

.item-resena-texto {
    margin-top: 12px;
    min-height: 92px;

    color: #222;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.basadoEn {
    margin-top: 7px;

    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}

.btn-valorar {
    background: var(--secondary);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    padding: 5px 20px;
    cursor: pointer;
}

.btn-valorar img {
    margin-left: 10px;
}

.btn-valorar:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.btn-mas-resena {
    margin-top: 20px;
}

.valoracion-texto {
    color: #666;
    height: 92px;
    display: block;
    overflow: hidden;
    font-size: 15px;
    line-height: 23px;
}

/* FIN VALORACIONES */

/* MODAL */
.modal-dialog.modal622
{width: 622px}

.modal-dialog.modal1050
{width: 1050px}

.botoneraBlockUI
{
    width: 100%;
}

.esperePorFavor
{
    font-size: 0;
    border: 5px solid var(--primary);
    border-radius: 40px;
    height: 40px;
    margin: 0 auto;
    width: 40px;
    z-index: 1000007;
    -webkit-animation: pulsate 1s ease-out infinite;
    -moz-animation: pulsate 1s ease-out infinite;
    -ms-animation: pulsate 1s ease-out infinite;
    -o-animation: pulsate 1s ease-out infinite;
    animation: pulsate 1s ease-out infinite;
    display: block;
}

.modalEspere
{
    box-shadow: none !important;
}

.modalEspere img
{display: none}

.modalEspere .modal-content
{
    background-color: transparent;
    border: none;
}

.bloqueModal
{
    display: none;
    text-align: left;
}

.modal .bloqueModal
{
    display: block;
}

.modal
{
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

@media screen and (min-width: 768px)
{
    .modal:before
    {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-content
{
    border: 1px solid #FFF;
    border-radius: 0.5rem;
}

.modal-header
{
    border-bottom: none;
    text-align: center;
    padding: 0.5rem 1rem 1rem;
}

.modal-header .close
{
    opacity: 1 !important;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
    text-shadow: none;
    -webkit-appearance: initial;
    border: none;
    background: none;
}

.close:hover, .close:focus
{
    outline: none;
}

.modal-header .modal-title
{
    color: var(--secondary);
    font-size: 30px;
    text-align: center;
    width: 100%;
    border-bottom: none;
    text-transform: uppercase;
    margin-top: 20px;
}

.modal-dialog
{
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    min-width: 300px !important;
    max-width: calc(100% - 30px);
    /*min-width:450px !important;*/
}

.modal-dialog.modal-sm
{
    min-width: 450px !important;
}

.modal-dialog.modal-lg
{
    min-width: 950px !important;
}

.modal .btnStandard + .btnStandard
{
    margin-left: 20px;
}

.modal-body
{
    color: var(--text-color);
    font-size: 16px;
    text-align: center;
    padding: 0 1rem 1rem;
    line-height: 150%;
}

.modal-body a:not(.btnStandard)
{
    color: var(--primary);
}

.modalEspere .modal-body
{
    padding: 1rem;
}

.modal-body img
{
    margin-right: 2px;
}

.modal-footer
{
    padding: 10px 15px;
}

.modalAlert .modal-footer
{
    text-align: center;
    border-top: none;
    padding-bottom: 20px;
}

.modalAlert .botoneraBlockUI
{
    width: 100%;
}

/* FIN DE MODAL*/
.navbar-toggler:focus
{box-shadow: none;}

.wow
{
    visibility: hidden;
}

table.dataTable > tbody > tr.child ul.dtr-details
{
    width: 100%;
}

.navbar-toggler
{display: none}

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */

    #menu-movil{padding-bottom: 22px}
}

@media only screen and (max-width: 1199px)
{
    #copy-legales{flex-direction: column-reverse; justify-content: center; margin-top: 15px}
}

@media only screen and (max-width: 991px)
{
    /*es, sm  y MD| Extra Small (XS), SM y MD xsm*/

    #banner .owl-nav{display: none}
    .datos-banner{left: 0; right: 0; max-width: calc(100dvw - 40px);}

    .btnStandard.btn-abre-reservas, .datos-localizacion{margin-left: auto}

    body.menuFixed {
        padding-top: 0;
    }

    .navbar-toggler
    {
        vertical-align: middle;
        border: none;
        outline: none !important;
        padding: 13px 0 13px 10px;
        text-align: right;
        box-shadow: none !important;
        display: block !important;
        line-height: 0;
        margin-left: 15px;
    }

    #cerrarMenu
    {display: flex !important;}

    #menuNavbarCollapse
    {
        position: fixed;
        top: 0;
        background: #FFF;
        width: 375px;
        max-width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        right: 0;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        padding: 70px 0 17px;
        overflow: auto;
        transform: translateX(100%);
        transition: transform 0.35s ease !important;
        z-index: 9000000001;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #menuNavbarCollapse.show
    {transform: none;}

    .navbar-nav
    {
        justify-content: left !important;
        overflow: auto;
        display: block;
        padding-bottom: 20px;
        width: 100%;
        flex-grow: 1;
    }

    #menu-web{padding: 0 10px}
    #menu-web .separator {display: none}

    #menu-web .separator + li {margin-top: 5px}

    #menuNavbarCollapse li.nav-item > a
    {
        color: #222;
        padding: 12px 20px;
        background-color: white;
        text-align: start;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 5px;
    }

    #menuNavbarCollapse li.dropdown.nav-item:hover > a, #menuNavbarCollapse li.nav-item a:hover, #menuNavbarCollapse li.menu-seleccionado > a, #menuNavbarCollapse li.open > a, #menuNavbarCollapse li.show > a {
        background-color: var(--secondary);
        color: #FFF;
    }

    #menuNavbarCollapse li.nav-item > a::before{display: none}

    #menuNavbarCollapse ul.dropdown-menu
    {
        position: initial !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-shadow: none;
        border-radius: 0;
        display: none !important;
        margin: 5px 0 0 !important;
        overflow: auto;
        height: auto !important;
        transform: none !important;
        text-align: left !important;
    }

    #menuNavbarCollapse li.open > .dropdown-menu
    {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
        height: auto !important;
    }

    #menuNavbarCollapse .dropdown-item
    {text-align: start}

    #menuNavbarCollapse li.nav-item::before{display: none}

    .dropdown > a > i
    {
        display: inline-block !important;
        position: absolute;
        right: 12px !important;
        top: 50% !important;
        font-size: 16px !important;
    }

    .dropdown > a > i.fa-angle-right:before
    {
        content: "\f107";
    }

    #menuNavbarCollapse ul.dropdown-menu
    {
        padding: 0 0 0 5px !important;
        max-height: 250px;
        box-shadow: none !important;
    }

    #menu-web .dropdown-menu li + li::before {display: none}

    .nav-icon {display: flex}

    #menu-web li.dropdown::after{display: none}

    .icon-dropdown
    {
        padding: 5px 0 5px 5px;
    }

    #menuNavbarCollapse ul.dropdown-menu li + li
    {
        border-top: 1px dashed var(--primary);
    }

    #datos-menu-movil {
        display: block !important;
        width: 100%;
        padding: 20px 12px 0;
        border-top: 1px dashed var(--secondary);

    }

    #datos-menu-movil .item-dato-localizacion + .item-dato-localizacion {
        margin-top: 20px;
    }




    #bloque-contacto{display: block}

    #breve-qs {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
        padding-left: 12px;
    }

    #copy-legales {gap: 5px}

    .item-ventaja-icono{gap: 15px}
    .item-ventaja-icono img {
        width: 75px;
        height: 75px;
    }

    #carta-productos > .row{
        flex-direction: column-reverse !important;
    }

    .datos-localizacion .item-dato-localizacion-ubicacion, .datos-localizacion .item-dato-localizacion-horario {display: none}

    #wrapper{margin-top: 30px}
    #header-datos {box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);}

    .item-dato-localizacion {gap: 8px; font-size: 13px}

    #menu-carta{top: 0}

    .tabla-produtos{font-size: 14px}
}

@media only screen and (max-width: 767px)
{
    /*es y sm | Extra Small (XS) and SM */
    .separacion-bloque
    {margin-top: 50px !important}

    .container-menu-restaurante, .menu-restaurante-menu{
        min-height: calc(100dvh - 157px);
        height: auto;
    }

    .alergeno {
        flex: 0 0 90px;
        width: 90px;
        white-space: normal;
        font-size: 14px;
    }

    .alergeno-icono img {
        transform: scale(.85);
    }

    .current_section_contacto #datos-localizacion {
        width: calc(100dvw - 40px);
        left: 0;
        right: 0;
        margin: auto;
    }

    #menu-footer ul, #menu-legales ul {
        flex-direction: column;
    }

    #menu-footer ul li + li::before{display: none}
    #menu-footer ul li + li{margin-top: 15px}

    #copyright{text-align: center; margin-top: 15px}

    .tituloSeccion {font-size: 25px}
    .subTituloSeccion{font-size: 18px; margin-bottom: 30px}

    .item-sabores-titulo{margin-top: 20px}

    .current_section_inicio #banner, .current_section_inicio #carousel-banner img {
        height: calc(100vh - 157px);
    }
}

@media only screen and (max-width: 575px)
{
    /* ES */
    .navbar-toggler{display: none !important}
    #header-datos .btnStandard.btn-abre-reservas{display: none}

    .datos-banner {padding: 22px;}
    .datos-banner-titulo {font-size: 30px;}
    .datos-banner-titulo + .datos-banner-texto {
        margin-top: 20px;
    }
    .datos-banner-texto {
        font-size: 16px;
        line-height: 20px;
    }

    .datos-banner-btn {
        margin-top: 35px;
    }

    #items-sabores {
        display: flex;
        flex-direction: column;
    }

    .itemFaqTitle{font-size: 16px}

    #bloque-contacto #contiene-contacto {
        padding: 30px 15px;
    }

    footer {padding-bottom: 100px}

    #menu-movil
    {
        display: flex !important;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        text-align: center;
        font-size: 10px;
        color: #222;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    }
    .item-menu-mv
    {
        color: #222;
        flex: 1;
        padding: 8px 0;
    }
    .item-menu-mv-icono
    {
        width: 31px;
        height: 31px;
        margin: 0 auto 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .item-menu-mv:hover,
    .item-menu-mv.menu-seleccionado
    {
        color: #FFF;
        background-color: var(--secondary);
    }

    .item-menu-mv:hover path,
    .item-menu-mv.menu-seleccionado path
    {
        stroke: #FFF;
    }

    #btn-subir {
        right: 8px;
        bottom: 75px;
        padding: 2px;
    }
    #btn-subir-text{display: none}

    #container-contacto .pe-0 {padding-left: 0}

    @supports (-webkit-touch-callout: none) {
        /* CSS specific to iOS devices */

        #btn-subir {
            bottom: 100px;
        }
    }
}

/* Small devices (landscape phones, 576px and up) */
@media only screen and (min-width: 576px) and (max-width: 767px)
{
    /* SM */

    .btnStandard.btn-abre-reservas, .datos-localizacion{padding-left: 25px; padding-right: 25px}
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px)
{
    /* MD */
    .separacion-bloque
    {margin-top: 50px !important}

    .btnStandard.btn-abre-reservas {
        padding-left: 28px;
        padding-right: 28px;
    }

    .datos-localizacion {column-gap: 30px;}


    .alergeno {
        white-space: normal;
        font-size: 14px;
    }

    .alergeno-icono img {
        transform: scale(.95);
    }

}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px)
{
    /* LG */

    #bloque-contacto {
        grid-template-columns: 550px minmax(0, 1fr);
    }

    .datos-localizacion {
        column-gap: 25px;
    }

    #datos-localizacion{width: 350px}
    .item-dato-localizacion{gap: 10px}

    #menu-footer ul li + li::before{margin: 0 15px}

    .navbar-nav{gap: 16px}
    #menuNavbarCollapse li.nav-item > a{font-size: 15px}

    #menu-footer ul{font-size: 13px;}
}

@media only screen and (min-width: 992px) and (max-width: 1365px)
{
}

@media only screen and (min-width: 1366px)
{

}

@media only screen and (min-width: 1200px) and (max-width: 1599px)
{
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1365px)
{
    /* xl */
    .datos-localizacion {column-gap: 60px;}
}

/* Extra large devices (large desktops, 1366px and up) */
@media only screen and (min-width: 1366px) and (max-width: 1599px)
{
    /* xxl */

    .datos-localizacion {column-gap: 100px;}
}

/* Extra large devices (large desktops, 1366px and up) */
@media only screen and (min-width: 1600px) and (max-width: 1919px)
{
    /* hdp */
}

@media only screen and (min-width: 992px)
{
    .subTituloSeccion.text-lg-start {
        justify-content: flex-start;
    }

    .subTituloSeccion.text-lg-start::before {
        display: none;
    }
}

@media only screen and (min-width: 1200px)
{
    .subTituloSeccion.text-xl-start {
        justify-content: flex-start;
    }

    .subTituloSeccion.text-xl-start::before {
        display: none;
    }
}

@media only screen and (min-width: 1920px)
{
    /* FHD */
    #breve-qs {
        padding-right: calc(8.333333334% + 12px);
    }
}

.cke_panel_list .texto-titulo
{margin-bottom: 0 !important}


@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftSmall {
    -webkit-animation-name: fadeInLeftSmall;
    animation-name: fadeInLeftSmall;
}


@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}