:root {
    --primario: #734a50 !important;
    --secundario: #e3bd52 !important;
    --gris: #dad1c6;
    --transparencia: #f5f5f5;
    --familia_fuente: "Montserrat", sans-serif;
}

:root {
    --primario__e: #734a50;
    --primario_oscuro__e: #5a2d30;
    --secundario__e: #e3bd52;
    --light__e: #fff;
    --titulo: "Montserrat", sans-serif;
    --color_textos__e: #b39790;
}

/* ESTILOS SIN RESPONSIVE MAQUETA AQUI */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #F1EFEA;
    color: #4b4b4b;
    overflow-x: hidden;
}

a,
a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

ul.list-unstyled {
    margin-bottom: 0;
}

/* Global */
.w-100 {
    width: 100%;
}

.m-auto {
    margin: auto;
}

.h-100 {
    height: 100%;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}

.z-4 {
    z-index: 4 !important;
}

.z-5 {
    z-index: 5 !important;
}

.separa-5 {
    height: 5px;
}

.separa-10 {
    height: 10px;
}

.separa-20 {
    height: 20px;
}

.separa-40 {
    height: 40px;
}

.separa-30 {
    height: 30px;
}

.separa-50 {
    height: 50px;
}

.separa-100 {
    height: 100px;
}

.space-between {
    justify-content: space-between;
}

.d-none {
    display: none;
}

.titulo {
    font-size: 40px;
    line-height: 50px;
    font-family: var(--titulo);
    font-weight: 200;
    color: var(--primario__e);
    margin-bottom: 0;
    margin-top: 0;
}

.titulo-lg {
    font-size: 65px;
    line-height: 65px;
}

.antetitulo {
    font-family: var(--titulo);
    font-size: 24px;
    font-weight: 500;
}

.parrafo {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #585858;
    margin-bottom: 0;
}

.text-light {
    color: var(--light__e);
}

.text-secundario {
    color: var(--secundario__e);
}

.text-primario {
    color: var(--primario__e);
}

.text-shadow {
    filter: drop-shadow(0.707px 1px 0.5px #000000);
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.corte-bottom {
    width: 100%;
    left: 0;
    bottom: -1px;
    position: absolute;
}

.corte-top {
    width: 100%;
    left: 0;
    top: -1px;
    position: absolute;
}

.full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.row-align-center::before,
.row-align-center::after {
    content: unset;
}

.flex {
    display: flex;
}

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

.flex-col {
    flex-direction: column;
}

.block {
    display: block;
}

.justify-center {
    justify-content: center;
}

.content-center {
    align-content: center;
}

.justify-start {
    justify-content: start;
}

.justify-between {
    justify-content: space-between;
}

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

.items-center {
    align-items: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

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

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.object-top {
    object-position: top;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overflow-hidden {
    overflow: hidden;
}

.modal-lg {
    width: 75%;
    margin-top: 120px;
}

.modal-content {
    height: 500px;
    background-color: #703b41;
    border-radius: 0 25px 0 25px;
}

.limitar {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.limitar_2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.limitar_3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.limitar_4 {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.animation {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.hover-effect {
    transform: perspective(1px) translateZ(0);
    position: relative;
    transition: all ease-out 0.3s;
    overflow: hidden;
}

.hover-effect::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all ease-out 0.3s;
    z-index: -1;
}

.hover-effect:hover:before,
.hover-effect:focus:before,
.hover-effect:active:before {
    transform: scaleX(1);
}

.button-group {
    gap: 33px;
    flex-wrap: wrap;
}

.custom-button {
    width: 100%;
    max-width: 337px;
    height: 75px;
    border-radius: 5px;
    background-color: var(--secundario__e);
    font-family: var(--titulo);
    /* border: 2px solid transparent; */
    color: var(--light__e);
    font-size: 16px;
    column-gap: 12px;
    z-index: 1;
    background-size: calc(100% + 4px);
    background-position-x: -2px;
}

.custom-button-lg {
    height: 90px;
    font-size: 22px;
}

.custom-button-primario {
    background-color: var(--primario__e);
    border-color: var(--secundario__e);
}

.custom-button-gradiente {
    background-image: linear-gradient(90deg,
            var(--primario__e) 0%,
            var(--secundario_oscuro__e) 50%,
            var(--secundario__e) 100%);
}

.custom-button-light {
    background-color: var(--light__e);
    color: var(--primario__e);
}

.custom-button:hover,
.custom-button:active,
.custom-button:focus {
    color: var(--primario__e);
}

.custom-button::before {
    background-color: var(--primario_oscuro__e);
    border-radius: inherit;
}

.modal-content .custom-button::before {
    background-color: var(--secundario__e);
}

.custom-button-light::before {
    background-color: var(--primario__e);
}

.custom-button-light:hover,
.custom-button-light:active,
.custom-button-light:focus {
    color: var(--light__e);
}

.custom-button img {
    width: 30px;
    transition: 0.3s ease filter;
}

.custom-button:hover img,
.custom-button:active img,
.custom-button:focus img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(14%) saturate(1876%) hue-rotate(161deg) brightness(94%) contrast(90%);
}

.custom-button-light:hover img,
.custom-button-light:active img,
.custom-button-light:focus img {
    filter: brightness(0) invert(1);
}

.custom-button-hidden-md {
    display: none;
}

.bg-primario {
    background-color: var(--primario__e);
}

.bg-secundario {
    background-color: var(--secundario__e);
}

.bg-secundario_oscuro {
    background-color: var(--secundario_oscuro__e);
}

/* Cabecera */
.navbar-fixed-top {
    z-index: 5;
    transition: opacity 0.3s linear;
}

.barra_reducida .navbar-fixed-top {
    /* visibility: hidden; */
    opacity: 0;
    z-index: 5;
}

.navbar-fixed-top .custom-button {
    right: 110px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 175px;
    height: 55px;
    font-size: 15px;
    border-radius: 10px;
    align-content: center;
    text-align: center;
}

.navbar-fixed-top .custom-button:before {
    background-color: #e6c15e;
}

.navbar-header {
    display: flex;
    float: none;
}

.flex1 {
    flex: 20%;
}

.flex2 {
    flex: 60%;
}

.flex3 {
    flex: 20%;
}

.modal-content .btn-default {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px !important;
    border-radius: 10px;
}

.modal-content .btn-default img {
    width: 26px;
}

.contenedor-modal .fondo_local {
    width: 125%;
    top: 0;
}

.contenedor-modal .contenedor-local:last-of-type {
    margin-bottom: 0;
}

.contenedor-modal {
    display: flex;
    width: 100%;
    height: 700px;
    background-color: #703b41;
    border-radius: 0 25px 0 25px;
    overflow: hidden;
}

.contenedor-modal .imagen {
    background-size: cover !important;
    background-position: center center !important;
    height: 100%;
}

.contenedor-modal .custom-button {
    max-width: 300px;
    height: 49px;
    font-size: 17px;
    border-radius: 10px;
    color: var(--primario__e);
    background-color: #dcd3c6;
    margin: 0 auto;
}

.contenedor-modal .imagen iframe {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 25px 0 0;
}

.contenedor-modal .padre_imagen {
    flex: 40%;
}

.contenedor-modal .texto {
    flex: 60%;
    align-content: center;
    overflow: hidden;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contenedor-modal .texto .logo {
    width: 60px;
    margin: 10px auto 45px;
}

.modal-body {
    padding: 0;
}

.contenedor-modal .antetitulo {
    font-family: var(--titulo);
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 200;
}

.contenedor-modal h3 {
    font-family: var(--titulo);
    margin: 0 60px 50px 60px;
    text-align: center;
    font-size: 45px;
    font-weight: 300;
    color: #fff;
    line-height: 54px;
    letter-spacing: 1px;
    transition: all 0.3s linear;
}

.contenedor-modal h3 span {
    font-weight: 700;
}

.barra_ampliada .navbar-fixed-top {
    visibility: visible;
    opacity: 15;
    z-index: 9;
    filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
}

.galeria-simple {
    display: flex;
    justify-content: center;
}

.galeria-simple a {
    display: inline-block;
}

.imagen.secundaria {
    position: relative;
}

.navbar-fixed-top {
    background: linear-gradient(to right, #5f262c, #7c4a51);
    height: 125px;
}

.navbar-brand {
    padding: 0;
    left: 45px;
    z-index: 2;
    height: 60px;
    top: 42px;
}

.carrito {
    position: absolute;
    width: 52px;
    height: 52px;
    left: 0;
    background-color: #79474e;
}

.carrito a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.carrito img {
    width: 29px;
}

.logo-navbar {
    width: 270px;
    margin-bottom: -30px;
    margin-top: -15px;
    margin-left: 0px;
}

.navbar-brand>img {
    height: 100%;
}

.navbar-nav>li {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav>li.active {
    background-color: #5a2e32;
    border-bottom: var(--secundario) 4px solid;
}

.navbar-nav>li:hover {
    background-color: #5a2e32;
    border-bottom: var(--secundario) 4px solid;
}

.navbar-nav>li>a {
    height: 100%;
    color: rgb(140, 140, 140);
    font-family: var(--titulo);
    font-size: 14px;
    display: inline-flex;
    text-transform: uppercase;
    padding: 0px 25px;
    white-space: nowrap;
    flex-wrap: wrap;
    align-content: center;
}

.navbar-collapse {
    height: 120px;
}

.navbar-nav {
    /* column-gap: 5px; */
    height: 125px;
    margin-right: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav::after,
.navbar-nav::before {
    content: unset;
}

.navbar-nav>li {
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.1s linear;
}

.navbar-nav>li>a {
    font-family: var(--titulo);
    color: #dbdbdb;
    font-size: 15px;
    font-weight: 300;
    padding: 0 20px;
    display: inline-flex;
    white-space: nowrap;
    text-transform: uppercase;
}

nav .navbar-nav>li>a:hover,
nav .navbar-nav>li>a:active,
nav .navbar-nav>li>a:focus,
nav .navbar-nav>.active>a,
nav .navbar-nav>.active>a:focus,
nav .navbar-nav>.active>a:hover {
    background-color: transparent;
    /* color: var(--primario__e); */
}

nav .navbar-nav>li.dropdown>a {
    gap: 7px;
}

nav .navbar-nav>li.dropdown .dropdown-toggle span img {
    width: 10px;
}

nav .navbar-nav>li.dropdown>a:hover span img,
nav .navbar-nav>li.dropdown>a:active span img,
nav .navbar-nav>li.dropdown>a:focus span img,
nav .navbar-nav>li.dropdown.active>a span img,
nav .navbar-nav>li.dropdown.active>a:focus span img,
nav .navbar-nav>li.dropdown.active>a:hover span img {
    filter: brightness(0) saturate(100%) invert(89%) sepia(27%) saturate(3786%) hue-rotate(335deg) brightness(108%) contrast(102%);
}

nav .navbar-nav>li.dropdown .dropdown-menu {
    border-radius: 0;
    overflow: hidden;
    top: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: var(--secundario__e);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 200px;
    border-top: 4px solid var(--primario__e);
}

nav .navbar-nav>li.dropdown .dropdown-menu>li>a {
    padding: 28px 0;
    font-weight: 300;
    font-family: var(--titulo);
    color: var(--light__e);
}

nav .navbar-nav>li.dropdown .dropdown-menu>li:nth-child(even)>a {
    background-color: var(--secundario_oscuro__e);
}

nav .navbar-nav>li.dropdown .dropdown-menu>li>a:focus,
nav .navbar-nav>li.dropdown .dropdown-menu>li>a:hover {
    background-color: transparent;
}

nav .navbar-nav>li.dropdown .dropdown-menu>li>a::before,
nav .navbar-nav>li.dropdown .dropdown-menu>li>a::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: transparent;
    transition: background-color linear 0.15s;
}

nav .navbar-nav>li.dropdown .dropdown-menu>li>a:focus::before,
nav .navbar-nav>li.dropdown .dropdown-menu>li>a:hover::before {
    background-color: rgba(155, 155, 155, 0.3);
}

nav .navbar-nav>li.dropdown.open>a {
    background-color: var(--light__e);
    position: relative;
}

nav .navbar-nav>li.dropdown.open>a,
nav .navbar-nav>li.dropdown.open>a:focus,
nav .navbar-nav>li.dropdown.open>a:hover {
    background-color: initial;
    border-color: transparent;
}

.nav-buttons {
    column-gap: 17px;
    right: 45px;
    height: 140px;
}

.nav-buttons a {
    width: 28px;
    height: 28px;
}

.nav-buttons a img {
    transition: transform ease-in-out 0.3s;
    width: 100%;
}

.nav-buttons a:hover img {
    transform: scale(1.15);
}

.popup {
    display: none;
    /* oculto por defecto */
    position: fixed;
    z-index: 99999;
    inset: 0;
    /* top/right/bottom/left = 0 */
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup.is-visible {
    display: flex;
}

.popup-content {
    position: relative;
    background: #ffffff;
    padding: 28px;
    border-radius: 10px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    z-index: 100000;
    /* encima del overlay */
    pointer-events: auto;
    /* se asegura que sea clicable */
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
    color: #333;
}

/* sidebar */
.banner .opacidad {
    opacity: 0.298;
    background-color: #000000;
}

.banner .menu {
    width: 456px;
    height: 100%;
    flex-shrink: 0;
}

.sidebar-banner-fondo {
    background-color: var(--primario_oscuro__e);
}

.sidebar-banner-gradiente {
    background-image: linear-gradient(47deg, rgba(100, 196, 196, 0.99) 0%, transparent 100%);
}

.sidebar-wrapper {
    position: fixed;
    top: 0;
    width: 33%;
    width: 100%;
    max-width: 485px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--primario_oscuro__e);
    right: 0;
    transform: translateX(100%);
    opacity: 0;
    z-index: 16;
}

.sidebar-wrapper .custom-button {
    width: 270px;
    height: 70px;
    border-radius: 20px;
    margin: 0 auto;
}

.sidebar-wrapper-button-container {
    justify-content: end;
    height: 95px;
    padding: 0 27px;
    flex-shrink: 0;
    z-index: 10;
}

.sidebar-wrapper-button-container .fondo {
    /* border-bottom: 1px solid #9e9e9e; */
    opacity: 0.4;
}

.sidebar-wrapper-button-container .navbar-free-toggle {
    right: 0;
    top: 0;
}

.text-menu {
    top: 40%;
    left: 33%;
    font-size: 21px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #dbdbdb;
    letter-spacing: 5px;
    font-weight: 400;
    cursor: pointer;
}

#banner-sidebar {
    display: flex;
    flex-flow: column;
    height: 100%;
}

#banner-sidebar .logo {
    margin-bottom: 114px;
    margin-top: 40px;
}

.contenedor-boton-nav {
    width: 100px;
    position: fixed;
    right: 0;
    background-color: var(--primario_oscuro__e);
    z-index: 10;
    opacity: 0.98;
}

.logo-container {
    margin: 35px;
    background: linear-gradient(to bottom left, #7B4950, #61292f);
    border-radius: 0 20px 0 20px;
    padding: 10px;
}

.logo-container-2 {
    position: absolute;
    margin-left: 25px;
    height: 100%;
}

.logo-img {
    padding: 15px;
    height: 100%;
    width: 235px;
    transition: all 0.3s ease;
}

#banner-sidebar .logo a {
    width: 380px;
}

#banner-sidebar .logo a img {
    width: 100%;
}

.sidebar-wrapper::-webkit-scrollbar {
    width: 0px;
    height: 0;
}

.left-toggle {
    left: 0;
}

.right-toggle {
    right: 0;
}

.navbar-toggle {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: unset;
    height: 110px;
    width: 110px;
    display: flex;
}

.navbar-toggle,
.navbar-toggle:focus,
.navbar-toggle:hover {
    background-color: var(--primario_oscuro__e);
}

.navbar-toggle img {
    width: 31px;
}

.navbar-free-toggle {
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 400ms linear;
    width: 70px;
    height: 70px;
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 1012;
    display: flex;
    background: transparent;
    /* box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px; */
    border: none;
    border-radius: 10px;
    justify-content: center;
    align-items: end;
    flex-direction: column;
}

/* .navbar-free-toggle, */
.navbar-free-toggle:focus,
.navbar-free-toggle:hover {}

.navbar-free-toggle img {
    width: 29px;
}

.sidebar-nav {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 10;
}

.sidebar-content img {
    width: 280px;
    margin: 55px auto;
    z-index: 10;
}

.sidebar-content .fondo {
    width: 145% !important;
    height: 103% !important;
    margin: 0;
    z-index: 1;
}

.sidebar-wrapper .iconos-hero img {
    margin: 0 15px;
    width: 33px !important;
}

.sidebar-wrapper .contenedor-redes {
    bottom: 65px;
    position: absolute;
}

.opacidad-sidebar {
    background-color: var(--primario_oscuro__e);
    z-index: 3;
    opacity: 0.8;
    border-radius: 0 0 50px 0;
}

.contenedor-sidebar {
    width: 420px;
    position: relative;
    top: 390px;
    left: 250px;
    color: #fff;
    z-index: 4;
}

.contenedor-sidebar img {
    width: 275px;
    margin: 60px auto;
}

.contenedor-sidebar p {
    font-size: 20px;
    font-weight: 200;
    margin: 0 0 0 5px;
}

.contenedor-sidebar h2 {
    font-size: 75px !important;
    font-weight: 400;
    line-height: 77px;
}

.contenedor-sidebar span {
    font-weight: 700;
}

.contenedor-sidebar .custom-button {
    max-width: 220px;
    height: 52px;
    font-size: 18px;
    border-radius: 10px;
    color: var(--primario__e);
    background-color: #dcd3c6;
}

.fondo-manto {
    width: 65%;
    opacity: 1;
    background-size: cover !important;
    position: relative;
    border-radius: 0 0 50px 0;
}

.sidebar-nav li a {
    color: var(--light__e);
    font-size: 18px;
    font-family: var(--titulo);
    font-family: var(--titulo);
    padding: 27px 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: block;
    text-align: center;
}

.sidebar-nav li~li a:before {
    content: "";
    position: absolute;
    width: 10%;
    height: 1px;
    left: 44.5%;
    opacity: 1;
    background-color: var(--secundario__e);
    top: 0;
}

.sidebar-nav li.active a,
.sidebar-nav li a:hover {
    color: var(--secundario__e);
}

.sidebar-nav li {
    display: flex;
    flex-flow: column;
}

.sidebar-nav li img {
    height: 26px;
    margin-left: 0;
}

.sidebar-nav .dropdown-menu {
    position: static;
    width: 100%;
    padding: 0;
    border: unset;
    border-radius: unset;
    margin: 0;
    background-color: var(--primario_oscuro__e);
    box-shadow: none;
}

.sidebar-nav li .dropdown-menu li.active a,
.sidebar-nav li .dropdown-menu li a:hover {
    color: var(--light__e);
}

.sidebar_rrss {
    margin-top: auto;
    padding-bottom: 50px;
}

.sidebar_rrss a {
    column-gap: 15px;
    color: var(--light__e);
    font-family: var(--titulo);
    font-weight: 300;
    font-size: 20px;
}

.sidebar_rrss a:hover {
    color: var(--primario_oscuro__e);
}

.sidebar_rrss a:hover img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(64%) saturate(421%) hue-rotate(160deg) brightness(95%) contrast(92%);
}

.sidebar_rrss img {
    width: 41px;
    height: 41px;
}

.sidebar-wrapper .sidebar-wrapper_rrss {
    margin-top: auto;
}

.sidebar-wrapper .sidebar-wrapper_rrss>div {
    column-gap: 15px;
    color: var(--light__e);
    font-family: var(--titulo);
    font-weight: 300;
    font-size: 20px;
    height: 90px;
    text-transform: none;
    background-color: rgba(100, 196, 196, 0.09);
}

.sidebar-wrapper .sidebar-wrapper_rrss>div:last-child {
    background-color: var(--secundario__e);
}

.sidebar-wrapper .sidebar-wrapper_rrss>div img {
    width: 31px;
}

#banner-sidebar ul {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    width: 100%;
    row-gap: 35px;
}

.sidebar-nav {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.sidebar-nav .dropdown-menu li a {
    background-color: transparent;
    font-size: 14px;
    padding: 20px 10px;
}

.sidebar-nav .dropdown-menu li a:hover {
    color: var(--primario__e);
}

.sidebar-nav .dropdown-toggle span {
    margin-left: 7px;
}

.sidebar-nav .dropdown-toggle span img {
    width: 12px;
}

.sidebar-nav li.dropdown>a:hover span img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(8%) saturate(1986%) hue-rotate(131deg) brightness(92%) contrast(92%);
}

.sidebar-nav .sidebar-redes {
    column-gap: 15px;
}

.sidebar-nav .sidebar-redes img {
    width: 25px;
    filter: brightness(0) invert(1);
}

.sidebar-nav .sidebar-redes a:hover img {
    filter: none;
}

#manto-movil {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
}

.linea-1 {
    margin-top: 5px;
}

.linea-1,
.linea-2 {
    width: 35px;
}

.linea-1,
.linea-2,
.linea-3 {
    height: 4px;
    background-color: #fff;
    margin-bottom: 8px;
    margin-right: 12px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    float: right;
    border-radius: 4px;
}

.right-toggle:hover .linea-3 {
    width: 35px;
    right: 0;
}

.linea-3 {
    position: relative;
    width: 25px;
    margin-bottom: 5px;
    right: 0;
}

.toggled .sidebar-wrapper {
    opacity: 1;
    transform: translateX(0%);
}

.sidebar_rrss {
    padding: 20px 0 40px;
}

.sidebar-content {
    flex-grow: 1;
    /* padding-top: 60px; */
}

#manto-movil.toogled {
    z-index: 15;
    opacity: 1;
    visibility: visible;
}

/* banner */
.banner {
    height: 1015px;
    z-index: 1;
    transition: all 0.3s linear;
}

#banner-slider {
    height: 100%;
    width: 100%;
}

.banner .degradado {
    opacity: 0.65;
    background-image: linear-gradient(270deg, var(--primario__e) 0%, var(--secundario__e) 100%);
}

.banner .degradado-menu {
    left: 0;
    top: 0;
    height: 100%;
    width: 100px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}

.banner .mouse-container {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    left: calc(50% - 20px);
    bottom: 15px;
    z-index: 2;
    cursor: pointer;
}

.banner .mouse-container .mouse {
    width: 100%;
    padding: 0;
    transition: transform 0.3s;
    animation: bounce 0.8s infinite;
}

@keyframes bounce {
    0% {
        transform: scale(1) translateY(0);
    }

    20% {
        transform: scale(1.1, 0.9) translateY(0);
    }

    40% {
        transform: scale(0.9, 1.1) translateY(-10px);
    }

    60% {
        transform: scale(1.05, 0.95) translateY(0);
    }

    80% {
        transform: scale(0.95, 1.05) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.banner .texto_slider {
    font-size: 80px;
    font-family: var(--titulo);
    top: 87.5%;
    transform: translateY(-50%);
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    column-gap: 100px;
    font-weight: 100;
}

.banner .texto_slider span {
    padding-right: 0.35em;
    animation: scrolling-left 20s linear infinite;
}

.banner-interiores {
    font-size: 90px;
    font-family: var(--titulo);
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    column-gap: 100px;
    font-weight: 100;
    border-bottom: 4px solid var(--secundario);
}

.banner-interiores .texto_slider {
    bottom: 10px;
    font-size: 60px;
}

.banner-interiores span {
    padding-right: 0.35em;
    animation: scrolling-left 20s linear infinite;
}

.interiores .titulo {
    font-weight: 700 !important;
    letter-spacing: 1px;
    color: #4b4b4b !important;
}

.interiores .antetitulo {
    font-size: 16px !important;
    color: var(--primario__e) !important;
    font-weight: 300 !important;
    font-family: var(--titulo) !important;
    margin-left: 5px !important;
    margin: 0 !important;
}

.cabecera .h1 {
    font-size: 40px;
    font-weight: 300;
}

.cabecera span {
    font-weight: 700;
}

@keyframes scrolling-left {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

/* servicio */
.servicio__degradado {
    z-index: 1;
    top: 0;
    width: 240px;
    height: 100%;
}

.servicio__degradado--left {
    left: 0;
    background-image: linear-gradient(-90deg, transparent 0%, rgba(255, 255, 255, 0.99) 100%);
}

.servicio__degradado--right {
    right: 0;
    background-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.99) 100%);
}

.servicios .splide__arrow {
    filter: drop-shadow(0 0 7.5px rgba(0, 0, 0, 0.15));
    background-color: var(--light__e);
    border-radius: 5px;
    width: 89px;
    height: 65px;
    opacity: 1;
}

.servicios .splide__arrow img {
    width: 100%;
    padding: 0 30px;
}

.servicios .splide__arrow--prev {
    transform: scaleX(-1);
    left: 54px;
}

.servicios .splide__arrow--next {
    right: 54px;
}

.caja_servicio {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 8;
}

.caja_servicio .forma_m {
    opacity: 0;
    object-position: left;
}

.caja_servicio:hover .forma_m {
    opacity: 1;
}

.caja_servicio:hover .caja_servicio-fondo {
    transform: scale(1.1);
}

.caja_servicio .degradado {
    top: auto;
    background-image: linear-gradient(332.5deg, var(--secundario__e) 10%, transparent 35%);
}

.caja_servicio .degradado_2 {
    background-image: linear-gradient(22.5deg, var(--primario__e) 10%, transparent 35%);
}

.caja_servicio .caption {
    padding: 0 80px;
    width: 100%;
    bottom: 40px;
}

.caja_servicio-titulo {
    font-size: 22px;
    line-height: 30px;
    font-family: var(--titulo);
    font-weight: 700;
}

/* Bloque Productos destacados */

.productos_destacados_lg {
    display: block;
}

.productos_destacados_sm {
    display: none;
}

.productos_destacados {
    background-size: cover;
    background-attachment: fixed;
    z-index: 2;
}

.productos_destacados .logo_container img {
    height: 95px !important;
}

.productos_destacados .titulo span {
    font-weight: 700;
}

.productos_destacados .container-texto-info {
    text-align: center;
    bottom: 55px;
    /* right: 7.5px; */
    position: relative;
    display: grid;
}

.productos_destacados .container-texto-info .custom-button {
    position: absolute;
    top: 455px;
    margin: auto;
    background-color: var(--primario_oscuro__e);
    justify-self: center;
    border-radius: 15px;
    height: 65px;
    max-width: 270px;
    font-weight: 400;
    font-size: 15px;
}

.productos_destacados .container-texto-info svg {
    width: 25px;
    margin-right: -7px;
    margin-bottom: 4px;
}

.productos_destacados svg {
    width: 26px;
    margin-right: -5px;
}

/* .productos_destacados svg path {
    stroke: #fff;
} */

.productos_destacados .logo_container {
    width: 10%;
    margin: 40px auto;
    transition: all 0.3s ease;
}

.productos_destacados .antetitulo {
    font-size: 20px;
    color: #4b4b4b;
    font-weight: 400;
    font-family: var(--titulo);
    margin-left: 5px;
}

.productos_destacados .titulo {
    font-size: 50px;
    line-height: normal;
    font-weight: 400;
    font-family: var(--titulo);
    color: var(--primario_oscuro__e);
    margin-top: 8px;
    margin-bottom: 20px;
}

.productos_destacados .galeria {
    background-color: #F1EFEA;
}

.productos_destacados .contenedor_imagen_sabores {
    background: #F1EFEA;
    padding-right: 0;
}

.productos_destacados .custom-button.boton2 {
    display: none;
}

.productos_destacados .imagen_sabores {
    height: 840px;
    object-fit: cover;
    border-radius: 0 40px 0 40px;
}

.productos_destacados .contenedor_galeria_sabores {
    background: none !important;
    transition: all 0.3s ease;
}

.productos_destacados .galeria_sabores {
    height: 550px;
    object-fit: cover;
    border-radius: 0 40px 0 40px;
}


.productos_destacados .parrafo {
    font-size: 20px;
    margin: 0px 50px 0 50px;
    font-weight: 300;
    line-height: 30px;
    color: #4b4b4b;
    font-family: var(--titulo);
}

.productos_destacados .contenedor-superior {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
    margin: 0 15px 0 0;
}

.productos_destacados .custom-button {
    margin: auto;
    background-color: var(--primario_oscuro__e);
    border-radius: 15px;
    height: 85px;
    max-width: 400px;
    font-weight: 400;
}

.productos_destacados .custom-button:before {
    background-color: var(--secundario__e);
}

.productos_destacados .custom-button svg path {
    transition: all 0.3s linear;
}

.productos_destacados .custom-button:hover svg path {
    fill: var(--primario__e) !important;
}

/* Bloque Informacion 1 */

.bloqueInformacionAf {
    border-top: var(--secundario__e) 5px solid;
    background-size: cover;
    background-attachment: fixed;
    z-index: 2;
    overflow: hidden;
}

.bloqueInformacionAf .titulo span {
    font-weight: 700;
}

.bloqueInformacionAf .antetitulo {
    font-size: 19px;
    color: var(--primario__e);
    font-weight: 400;
    font-family: var(--titulo);
    margin-left: 5px;
}

.bloqueInformacionAf .titulo {
    font-size: 45px;
    line-height: normal;
    font-weight: 300;
    font-family: var(--titulo);
    color: #4b4b4b;
    margin-top: 8px;
    margin-bottom: 20px;
}

.bloqueInformacionAf .parrafo {
    font-size: 14px;
    line-height: 26px;
    color: var(--primario__e);
    font-family: var(--titulo);
    font-weight: 400;
    margin-top: 20px;
}

.bloqueInformacionAf .custom-button {
    border: 1px solid transparent;
    padding: 10px 30px;
    font-size: 14px;
    color: #FFF;
    font-weight: 500;
    border-radius: 28px;
    background-color: var(--color_boton);
}

.bloqueInformacionAf .custom-button::before {
    background-color: #FFFFFF;
}

.bloqueInformacionAf .custom-button:focus,
.bloqueInformacionAf .custom-button:active,
.bloqueInformacionAf .custom-button:hover {
    color: var(--color_boton);
}

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

.bloqueInformacionAf .img-container {
    display: flex;
}

.bloqueInformacionAf .img-container .imagen_info1 {
    object-fit: cover;
    width: 355px;
    height: 405px;
    border-radius: 0 40px 0 30px;
}

.bloqueInformacionAf .container-texto-info {
    margin-right: 85px;
}

.bloqueInformacionAf .img-container .imagen2_info1 {
    object-fit: cover;
    width: 335px;
    height: 250px;
    top: 242px;
    left: 210px;
    border-radius: 0 15px 0 15px;
}

.bloqueInformacionAf .img-container .imagen3_info1 {
    object-fit: cover;
    width: 140px;
    top: 70px;
    left: 290px;
    border-radius: 0 15px 0 15px;
}

.bloqueInformacionAf .img-container .img-radius-md {
    border-radius: 150px;
}

.bloqueInformacionAf .img-container .img-radius-sm {
    border-radius: 25px;
}

.bloqueInformacionAf .img-container .img-radius {
    width: 477px;
    height: 477px;
    border-radius: 100%;
    max-width: calc(100vw - 86px);
    max-height: calc(100vw - 86px);
}

.fondo-bloque-informacion {
    top: 0;
}

.fondo-bloque-informacion img {
    width: 600px;
}

/* parallax */
.parallax {
    background-color: var(--light__e);
}

.parallax .fondo {
    opacity: 0.3;
}

.parallax .parrafo {
    max-width: 880px;
}

.parallax .custom-button {
    margin-left: auto;
}

.parallaxA-fondo-container {
    width: 60%;
    height: 100%;
    right: 0;
    top: 0;
}

.parallaxA-fondo-container img {
    opacity: 0.2;
}

.parallaxA .degradado {
    background-image: linear-gradient(-90deg, transparent 0%, rgba(255, 255, 255, 0.99) 100%);
}

.fondo-color {
    background-color: #eeedec;
    height: 555px;
}

.forma_fondo_1 {
    position: relative;
    height: 1000px;
    top: 0;
    left: 30%;
    z-index: 1;
    width: 100%;
}

.banner svg path {
    fill: #fff;
    fill-opacity: 0.4 !important;
}

.forma_fondo_2 {
    height: 1100px;
    top: 0;
    right: 0;
    z-index: 1;
}

/* reviews */
.caja_review {
    min-height: 315px;
    padding: 30px;
    border-radius: 4px;
    background-color: var(--light__e);
    border: 1px solid #f3f3f3;
    margin-bottom: 30px;
}

.caja_review .caja_review-title {
    margin: 0;
    font-family: var(--titulo);
    font-weight: 700;
    font-style: italic;
}

.caja_review .img-google {
    flex-shrink: 0;
    width: 50px;
}

.caja_review .caja_review-row_header {
    column-gap: 10px;
}

.caja_review .row-stars {
    column-gap: 8px;
}

.caja_review .row-stars img {
    width: 21px;
}

.productos.coleccion .caja {
    justify-content: space-between;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    display: none;
}

.bootstrap-select .dropdown-toggle .filter-option {
    color: #4b4b4b;
    font-weight: 500;
    padding: 10px;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    background-color: var(--primario);
}

.bootstrap-select .dropdown-menu {
    border-radius: 10px;
    padding: 0;
    margin: 3px 0;
    z-index: 1000;
}

.bootstrap-select .dropdown-menu li a span.text {
    font-weight: 600;
}

.filtros .btn-default.focus,
.btn-default:focus {
    background-color: #f9f9f9 !important;
}

.productos .dropdown-menu>li>a {
    padding: 13px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: #f6f6f6 1px solid;
}

.productos .btn-default {
    transition: all 0.2s linear;
}

.productos .btn-default .filter-option.pull-left {
    transition: all 0.2s linear;
    padding: 10px;
}

.open>.dropdown-toggle.btn-default {
    background-color: #f5f5f5;
}

.bootstrap-select .dropdown-toggle .bs-caret {
    background-color: var(--primario__e);
    height: 40px;
    width: 48px;
    border-radius: 0 7px 7px 0;
}

.bootstrap-select .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -2px;
    vertical-align: middle;
    color: #fff;
}

.btn-default:hover {
    background-color: #f7f7f7;
}

.open>.dropdown-toggle.btn-default:hover,
.open>.dropdown-toggle.btn-default:active,
.open>.dropdown-toggle.btn-default:focus {
    background-color: #eeeeee;
}

.productos .btn-default:hover .filter-option.pull-left {
    color: #bababa;
}

.productos .form-group {
    margin-bottom: 0;
}

:not(.input-group)>.bootstrap-select.form-control:not([class*="col-"]) {
    border-radius: 10px !important;
}

.btn-group>.btn:first-child {
    border-radius: 10px !important;
    padding: 0;
    border: 1px solid #e8e8e8;
}

.productos .filtro-prod {
    align-content: center;
    width: 350px;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    height: 30px;
    align-content: center;
}

.bootstrap-select>.dropdown-toggle {
    border-color: transparent;
}

.productos .dropdown-menu>li>a {
    text-transform: capitalize;
}

/* Productos */

.productos.relative {
    border-top: var(--secundario__e) 5px solid;
    width: calc(100% - 100px);
}

#productos {
    margin: auto;
    z-index: 2;
}

#productos a {
    color: #93777b !important;
}

#productos h2 {
    font-size: 40px;
    font-weight: 300;
}

#productos span {
    font-weight: 600;
}

#productos p {
    color: #93777b;
    font-size: 18px;
}

.caja_producto {
    height: 640px;
    /* width: 450px; */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    border-radius: 0 20px 0 20px;
    border: 1px solid #e6e6e6;
}


#productos .caja_producto {
    height: 640px;
    /* width: 450px; */
    border-radius: 0 20px 0 20px;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    /* importante para que el scale no sobresalga */
    display: flex;
    justify-content: center;
    align-items: center;
}

#productos .caja_producto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* equivalente a background-size: cover */
    transition: transform 0.3s linear;
    border-radius: 0 20px 0 20px;
    /* para que coincida con el contenedor */
}

#productos .caja_producto:hover img {
    transform: scale(1.03);
    /* efecto hover */
}


.splide__arrows {
    position: relative;
    top: 25px;
    height: 100%;
}

.splide__arrow:hover {
    background-color: var(--primario_oscuro__e);
}

.splide__arrow {
    top: 21px;
    left: 3%;
    width: 88px !important;
    height: 31px !important;
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.2s linear;
    border: 1px solid var(--primario_oscuro__e) !important;
}

.splide__arrow img {
    width: 37px;
}

.splide__arrow--prev {
    left: calc(50% - 100px);
}

.splide__arrow--next {
    left: calc(50% + 5px);
}

.caja_producto .titulo-container {
    height: 130px;
    flex-flow: column;
}

.caja_producto-titulo {
    font-size: 24px;
    font-weight: 700;
    top: -9px;
}

/* Productos 2 */

.productos2 {
    width: calc(100% - 100px);
}

.productos2 .productos-grid {
    display: grid;
    gap: 18px;
    row-gap: 35px;
    grid-template-columns: repeat(4, 1fr);
}

.productos2 .productos {
    border-top: none;
}

.productos2 .titulo {
    color: #4b4b4b;
}

.productos2 .titulo span {
    font-weight: 700;
}

.productos2 .productos .producto {
    margin-bottom: 30px;
    text-align: center;
}

.productos2 .productos .img-container {
    overflow: hidden;
    border-radius: 10px;
    height: fit-content;
    overflow: hidden;
    border-radius: 0 15px 0 15px;
}

.productos2 .productos .producto .img-container img {
    width: 100%;
    border-radius: 0 20px 0 20px;
    transition: all 0.2s linear;
}

.productos2 .productos .producto .img-container img:hover {
    scale: 1.03;
}

.productos2 .productos .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productos2 .productos .producto .titulo {
    line-height: 25px;
    font-size: 18px;
    font-weight: 400;
    color: #93777b;
}

.productos2 .custom-button {
    max-width: 305px;
    font-size: 18px;
    font-weight: 400;
    padding: 0 25px;
    height: 57px;
    border-radius: 10px;
    color: var(--primario__e);
    background-color: #f5f5f5;
    margin: auto;
}

.productos2 .custom-button:hover {
    color: #fff;
}

/* Productos interior */

.productos-interior .producto {
    margin-bottom: 60px;
    text-align: center;
}

.lista_productos>div {
    padding: 10px;
    margin-bottom: 30px;
}

.productos-interior .img-container {
    overflow: hidden;
    border-radius: 10px;
    height: fit-content;
    overflow: hidden;
    border-radius: 0 15px 0 15px;
}

.productos-interior .producto .img-container img {
    width: 100%;
    height: 500px;
    border-radius: 0 20px 0 20px;
    transition: all 0.3s linear;
}

.productos-interior .producto .img-container img:hover {
    scale: 1.03;
}


.productos-interior .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productos-interior .producto .titulo {
    position: absolute;
    width: 100%;
    line-height: 25px;
    font-size: 18px;
    font-weight: 400 !important;
    color: #93777b !important;
}

/* Opiniones */

.opiniones {
    border-top: var(--secundario__e) 5px solid;
    background-color: #f1efeb;
    overflow: hidden;
}


.opiniones hr {
    height: 2px;
    background: linear-gradient(to right,
            #34a853 0%, #34a853 25%,
            /* Verde */
            #ea4335 25%, #ea4335 50%,
            /* Rojo */
            #4285f4 50%, #4285f4 75%,
            /* Azul */
            #fbbc05 75%, #fbbc05 100%
            /* Amarillo */
        );
}

.contenedor-opinion {
    padding: 25px 28px 0 28px;
}

.contenedor-opinion .google-logo {
    width: 32px;
    background-color: #fff;
    top: 95px;
    left: 97px;
    padding: 3px;
    border-radius: 50%;
}

.contenedor-opinion2 {
    padding: 0 25px;
}

.contenedor-opinion2 p {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
    color: #9d9d9d;
}

.contenedor-opinion .autor-opiniones {
    font-size: 19px;
    color: var(--primario_oscuro__e);
    font-weight: 700;
}

.contenedor-opinion span img {
    width: 15px;
    margin: 0 6px 0 0;
}

.contenedor-opinion p:first-child {
    font-size: 13px;
    color: #8e8e8e;
    margin: 0 0 4px;
}

.opiniones .col-md-1 {
    width: 8%;
}

.opiniones .caja_producto {
    height: 340px;
    width: 100%;
    margin: auto;
    background-color: #fff;
}

.opinion .profile_pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 30px;
}

/* faq */
.faq {
    background-color: var(--primario__e);
    min-height: 1080px;
}

.faq .panel-group .panel+.panel {
    margin-top: 30px;
}

.faq .panel-group .panel {
    background-color: transparent;
    border: unset;
    border-radius: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    position: relative;
}

.faq .panel-default>.panel-heading {
    background-image: linear-gradient(270deg, var(--primario__e) 0%, var(--secundario__e) 100%);
    border-radius: 5px;
    padding: 0;
}

.faq .panel-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--titulo);
}

.faq .panel-title a {
    padding: 0 30px;
    height: 125px;
    justify-content: space-between;
    column-gap: 10px;
}

.faq .drop {
    width: 40px;
    height: 55px;
    border-radius: 5px;
    filter: drop-shadow(0 0 7.5px rgba(0, 0, 0, 0.15));
    border: 1px solid var(--secundario__e);
    background-color: var(--primario__e);
    flex-shrink: 0;
}

.faq .drop img {
    width: 100%;
    padding: 5px;
    transition: transform ease 0.3s;
    transform: rotate(90deg);
}

.faq .panel-title a[aria-expanded="true"] .drop img {
    transform: rotate(270deg);
}

.faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: unset;
}

/* Footer */
footer {
    font-family: "Open Sans", sans-serif;
}

footer .info__content {
    column-gap: 40px;
    margin: 70px auto;
}

footer .item span {
    color: #fff;
    align-content: center;
    margin: 0 5px;
}

footer .redes-contacto {
    position: relative;
    width: 100%;
    height: 120px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 2;
}

footer .redes-contacto .vl {
    opacity: 0.3;
    width: 2px;
    height: 50%;
    margin: 0 40px;
    background-color: var(--primario__e);
}

footer .iconos-hero a {
    margin: 0 9px;
    width: 40px;
}

footer .iconos-hero a .svg path {
    transition: 0.2s linear all;
}

footer .iconos-hero a:hover .svg path {
    fill: var(--primario_oscuro__e) !important;
}

footer .redes-contacto p {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 2px;
}

footer .redes-contacto b {
    letter-spacing: normal;
}

footer .info__content>ul {
    padding: 0;
    row-gap: 20px;
    margin-bottom: 0;
}

footer .ul_footer h3 {
    text-wrap: nowrap;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--titulo);
    margin: 0;
}

footer .vl {
    opacity: 0.3;
    width: 1px;
    height: 150px;
    background-color: var(--primario_oscuro__e);
}

footer .ul_footer span {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background-color: var(--primario__e);
    flex-shrink: 0;
    margin-right: 12px;
}

footer .row_contact {
    gap: 20px 60px;
    flex-wrap: wrap;
}

footer .ul_footer span img {
    width: 100%;
    padding: 0 13px;
}

/* footer a:has(.footer__img) {
    flex-grow: 1;
} */

footer .footer__img {
    width: 175px;
}

.footer_parrafo {
    font-size: 18px;
    font-family: var(--titulo);
    font-weight: 300;
    text-wrap: nowrap;
}

a:has(.footer_parrafo):hover {
    color: var(--primario_oscuro__e);
}

a:has(.footer_parrafo):hover span {
    background-color: var(--light__e);
}

a:has(.footer_parrafo):hover img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(64%) saturate(421%) hue-rotate(160deg) brightness(95%) contrast(92%);
}

footer {
    background-size: cover !important;
}

footer .links {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-weight: 300;
    z-index: 1;
    border-top: 1px solid #9a6c72;
}

footer .links a,
footer .links span {
    color: var(--light__e);
}

footer .container_footer {
    padding: 32px 0;
    width: 100%;
    font-family: var(--titulo);
    column-gap: 5px;
    margin: 0 15px;
    color: #fff;
}

footer .links a {
    color: var(--light__e);
    font-size: 13px;
}

footer .links a:hover {
    color: var(--secundario);
}

footer .footer-final {
    display: flex;
    justify-content: center;
    font-family: var(--titulo);
    column-gap: 60px;
    row-gap: 10px;
    flex-flow: wrap;
    padding: 30px 20px;
    opacity: 0.8;
    z-index: 1;
    background-color: rgba(115, 74, 80, 0.8);
}

footer .opacidad-footer {
    background-color: var(--primario_oscuro__e);
    opacity: 0.9;
}

footer .footer-final p {
    margin-bottom: 0;
}

footer .footer-final a {
    color: var(--light__e);
}

footer .footer-copyright {
    font-size: 12px;
}

footer .footer-copyright a {
    font-weight: 500;
}

footer .grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 2 columnas iguales */
    grid-template-rows: auto auto;
    /* 2 filas automáticas */
    gap: 10px;
    /* espacio entre celdas */
    /* max-width: 700px; */
    /* opcional, para centrar en la pantalla */
    margin: 0;
}


footer .grid-2x2 .item {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 8px;
    width: 400px;
}

footer .grid-2x2 .item p {
    font-size: 16px;
    margin-left: 8px !important;
    margin-bottom: 0;
}

footer .grid-2x2 .item p:nth-of-type(2) {
    margin: 0;
}

footer .bloque2 img {
    width: 43px;
    padding: 10px 10px;
    background-color: rgba(90, 45, 48, 0.6);
}

footer .bloque2 .col1 img {
    border-radius: 10px;
}

footer .bloque2 .col1 {
    padding: 0 5px;
    border-radius: 5px;
}

footer .bloque2 .col1.telefono{
    width: 100%;
}

footer .bloque2 .col2 {
    padding: 5px;
    color: #fff;
}

footer .bloque1 {
    width: 15%;
    justify-content: center;
    display: flex;
}

footer .bloque2 {
    width: 85%;
}

footer .web_laspalmas {
    font-weight: 600;
}

footer .web_laspalmas:hover {
    color: var(--secundario__e);
}

.custom-container {
    margin: auto;
}

@media (max-width: 1500px) {

footer .grid-2x2{
    grid-template-columns: 1fr 1fr;
}

footer .bloque1{
    width: 30%;
}

footer .bloque2{
    width: 60%;
}

footer .grid-2x2 .item{
    width: auto;
}
}

/*********************************
*        MENU DESPLEGABLE        *
*********************************/
.dropdown-menu>li>a {
    color: var(--blue);
    font-size: 15px;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 20px;
    width: 100%;
}

.filtros .dropdown-menu>li>a {
    text-transform: capitalize !important;
}

/* menu doble */

.el-menu {
    height: 140px;
    transition: all .2s ease-in-out;
}

.barra_reducida .el-menu {
    height: 110px;
}

.el-menu {
    position: relative;
}

.primera-menu,
.segunda-menu {
    display: flex;
    position: absolute;
    width: calc(50vw - (90px + 35px));
    height: 100%;
}

.primera-menu {
    right: 155px;
    justify-content: flex-end;
}

.segunda-menu {
    left: 155px;
}

.navbar-nav .logo {
    position: absolute;
}

.navbar-nav .logo {
    position: absolute;
    left: -160px;
    height: 100%;
}

.navbar-nav .logo>a {
    padding: 0;
    height: inherit;
}

.navbar-nav .logo img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 180px;
    z-index: 2;
}

.contacto-container {
    width: 370px;
    height: 270px;
    position: fixed;
    right: -285px;
    background: linear-gradient(to bottom, #5f262c 0%, #7c4a51 100%);
    z-index: 10;
    top: 28%;
    border-radius: 20px 0 0 20px;
    transition: all 0.4s linear;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.contacto-2 ul a:nth-child(even) li {
    background-color: #f0f0ec;
}

.contacto-2 li .iconos-hero {
    width: 100%;
    height: 100%;
    background-color: #f0f0ec;
    padding-left: 35px;
}

.contacto-2 li .iconos-hero .svg {
    margin: 0;
}

.contacto-2 .iconos-hero a {
    margin: 0 6px;
    width: 40px;
}

.contacto-2 .iconos-hero a .svg path {
    transition: 0.2s linear all;
}

.contacto-2 .iconos-hero a:hover .svg path {
    fill: var(--secundario) !important;
}

.contacto-container:hover {
    right: 0;
}

.contacto-1 {
    flex: 23%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;

}

.contacto-1 p {
    position: relative;
    font-size: 15px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #dbdbdb;
    letter-spacing: 6px;
    font-weight: 300;
    margin-bottom: 0;
}

.contacto-2 {
    flex: 77%;
    background-color: #fff;
}

.contacto-2 ul {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    align-content: center;
}

.contacto-2 li {
    font-size: 15px;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
}

.contacto-2 li p {
    margin: 0;
    align-self: center;
}

.contacto-2 a {
    color: var(--primario__e);
}

.contacto-2 a:hover {
    color: var(--secundario);
}

.contacto-2 ul svg {
    width: 27px;
    margin: 20px 13px 20px 35px;
}

.contacto-2 ul .svg.especial {
    width: 35px;
    height: auto;
    margin: 20px 9px 20px 31px;
}

.contacto-2 .iconos-hero li:first-child img {
    margin: 16px 20px 16px 35px;
}

.contacto-2 .iconos-hero svg {
    margin: 16px 0 16px 16px;
}

.contacto-2 .iconos-hero svg {
    width: 30px;
    margin: 16px 20px 16px 0;
}

/* -- circulos -- */
.wrapper-flex,
.wrapper-flex-mobile {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-box;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;

    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}


/* -- row -- */
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height.container:before,
.row-eq-height.container:after,
.row-eq-height.row:before,
.row-eq-height.row:after {
    content: normal;
}



.separa-5 {
    height: 5px;
}

.separa-10 {
    height: 10px;
}

.separa-20 {
    height: 20px;
}

.separa-40 {
    height: 40px;
}

.separa-30 {
    height: 30px;
}

.separa-50 {
    height: 50px;
}


.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.centrado {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.centrado.izquierda {
    justify-content: flex-start;
}

.centrado.derecha {
    justify-content: flex-end;
}

.animacion {
    transition: all 300ms linear !important;
    -webkit-transition: all 300ms linear !important;
    -moz-transition: all 300ms linear !important;
    -ms-transition: all 300ms linear !important;
    -o-transition: all 300ms linear !important;
}

.limitar {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.limitar_1 {
    -webkit-line-clamp: 1;
    /* number of lines to show */
}

.limitar_2 {
    -webkit-line-clamp: 2;
    /* number of lines to show */
}

.limitar_3 {
    -webkit-line-clamp: 3;
    /* number of lines to show */
}

.limitar_4 {
    -webkit-line-clamp: 4;
    /* number of lines to show */
}

.limitar_5 {
    -webkit-line-clamp: 5;
    /* number of lines to show */
}

.limitar_6 {
    -webkit-line-clamp: 6;
    /* number of lines to show */
}

.limitar_7 {
    -webkit-line-clamp: 7;
    /* number of lines to show */
}

.limitar_8 {
    -webkit-line-clamp: 8;
    /* number of lines to show */
}

.limitar_9 {
    -webkit-line-clamp: 9;
    /* number of lines to show */
}

.limitar_10 {
    -webkit-line-clamp: 10;
    /* number of lines to show */
}

/* .caja {
    overflow: hidden;
} */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*********************************
*            INTERIORES          *
*********************************/

.interiores {
    /* background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%); */
    background-color: #f0efeb;
}

/* ESTILOS CKEDITOR */

/*
 * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */

.textaco {
    & .image {
        display: table;
        clear: both;
        text-align: center;

        /* Make sure there is some space between the content and the image. Center image by default. */
        /* The first value should be equal to --ck-spacing-large variable if used in the editor context
	 	to avoid the content jumping (See https://github.com/ckeditor/ckeditor5/issues/9825). */
        margin: 0.9em auto;

        /* Make sure the caption will be displayed properly (See: https://github.com/ckeditor/ckeditor5/issues/1870). */
        min-width: 50px;

        & img {
            /* Prevent unnecessary margins caused by line-height (see #44). */
            display: block;

            /* Center the image if its width is smaller than the content's width. */
            margin: 0 auto;

            /* Make sure the image never exceeds the size of the parent container (ckeditor/ckeditor5-ui#67). */
            max-width: 100%;

            /* Make sure the image is never smaller than the parent container (See: https://github.com/ckeditor/ckeditor5/issues/9300). */
            min-width: 100%;

            /* Keep proportions of the block image if the height is set and the image is wider than the editor width.
			See https://github.com/ckeditor/ckeditor5/issues/14542. */
            height: auto;

            border-radius: 20px;
        }
    }

    & .image-inline {
        /*
		 * Normally, the .image-inline would have "display: inline-block" and "img { width: 100% }" (to follow the wrapper while resizing).
		 * Unfortunately, together with "srcset", it gets automatically stretched up to the width of the editing root.
		 * This strange behavior does not happen with inline-flex.
		 */
        display: inline-flex;

        /* While being resized, don't allow the image to exceed the width of the editing root. */
        max-width: 100%;

        /* This is required by Safari to resize images in a sensible way. Without this, the browser breaks the ratio. */
        align-items: flex-start;

        /* When the picture is present it must act as a flex container to let the img resize properly */
        & picture {
            display: flex;
        }

        /* When the picture is present, it must act like a resizable img. */
        & picture,
        & img {
            /* This is necessary for the img to span the entire .image-inline wrapper and to resize properly. */
            flex-grow: 1;
            flex-shrink: 1;

            /* Prevents overflowing the editing root boundaries when an inline image is very wide. */
            max-width: 100%;
        }
    }
}

.ck.ck-editor__editable {

    /*
	 * Inhertit the content styles padding of the <figcaption> in case the integration overrides `text-align: center`
	 * of `.image` (e.g. to the left/right). This ensures the placeholder stays at the padding just like the native
	 * caret does, and not at the edge of <figcaption>.
	 */
    & .image>figcaption.ck-placeholder::before {
        padding-left: inherit;
        padding-right: inherit;

        /*
		 * Make sure the image caption placeholder doesn't overflow the placeholder area.
		 * See https://github.com/ckeditor/ckeditor5/issues/9162.
		 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /*
	 * See https://github.com/ckeditor/ckeditor5/issues/15115.
	 */
    & .image {
        z-index: 1;

        /*
		 * Make sure the selected image always stays on top of its siblings.
		 * See https://github.com/ckeditor/ckeditor5/issues/9108.
		 */
        &.ck-widget_selected {
            z-index: 2;
        }
    }

    /*
	 * See https://github.com/ckeditor/ckeditor5/issues/15115.
	 */
    & .image-inline {
        z-index: 1;

        /*
		 * Make sure the selected inline image always stays on top of its siblings.
		 * See https://github.com/ckeditor/ckeditor5/issues/9108.
		 */
        &.ck-widget_selected {
            z-index: 2;

            /*
			 * Make sure the native browser selection style is not displayed.
			 * Inline image widgets have their own styles for the selected state and
			 * leaving this up to the browser is asking for a visual collision.
			 */
            & ::selection {
                display: none;
            }
        }
    }

    /* Keep proportions of the inline image if the height is set and the image is wider than the editor width.
	See https://github.com/ckeditor/ckeditor5/issues/14542. */
    & .image-inline img {
        height: auto;
    }

    /* The inline image nested in the table should have its original size if not resized.
	See https://github.com/ckeditor/ckeditor5/issues/9117. */
    & td,
    & th {
        & .image-inline img {
            max-width: none;
        }
    }
}

@import "@ckeditor/ckeditor5-ui/theme/mixins/_mediacolors.css";

:root {
    --ck-color-image-caption-background: hsl(0, 0%, 97%);
    --ck-color-image-caption-text: hsl(0, 0%, 20%);
    --ck-color-image-caption-highlighted-background: hsl(52deg 100% 50%);
}

/* Content styles */
.textaco .image>figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: var(--ck-color-image-caption-text);
    background-color: var(--ck-color-image-caption-background);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;

    /* Improve placeholder rendering in high-constrast mode (https://github.com/ckeditor/ckeditor5/issues/14907). */
    @media (forced-colors: active) {
        background-color: unset;
        color: unset;
    }
}

/* Editing styles */
.ck.ck-editor__editable .image>figcaption.image__caption_highlighted {
    @mixin ck-media-default-colors {
        animation: ck-image-caption-highlight .6s ease-out;
    }

    @media (prefers-reduced-motion: reduce) {
        animation: none;
    }
}

@keyframes ck-image-caption-highlight {
    0% {
        background-color: var(--ck-color-image-caption-highlighted-background);
    }

    100% {
        background-color: var(--ck-color-image-caption-background);
    }
}

.ck.ck-image-insert-url {
    width: 400px;
    padding: var(--ck-spacing-large) var(--ck-spacing-large) 0;

    & .ck-image-insert-url__action-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.ck.ck-editor__editable {
    & img.image_placeholder {
        background-size: 100% 100%;
    }
}

/* Preserve aspect ratio of the resized image after introducing image height attribute. */
.textaco img.image_resized {
    height: auto;
}

.textaco .image.image_resized {
    max-width: 100%;
    /*
	The `<figure>` element for resized images must not use `display:table` as browsers do not support `max-width` for it well.
	See https://stackoverflow.com/questions/4019604/chrome-safari-ignoring-max-width-in-table/14420691#14420691 for more.
	Fortunately, since we control the width, there is no risk that the image will look bad.
	*/
    display: block;
    box-sizing: border-box;

    & img {
        /* For resized images it is the `<figure>` element that determines the image width. */
        width: 100%;
    }

    &>figcaption {
        /* The `<figure>` element uses `display:block`, so `<figcaption>` also has to. */
        display: block;
    }
}

.ck.ck-editor__editable {

    /* The resized inline image nested in the table should respect its parent size.
	See https://github.com/ckeditor/ckeditor5/issues/9117. */
    & td,
    & th {
        & .image-inline.image_resized img {
            max-width: 100%;
        }
    }
}

[dir="ltr"] .ck.ck-button.ck-button_with-text.ck-resize-image-button .ck-button__icon {
    margin-right: var(--ck-spacing-standard);
}

[dir="rtl"] .ck.ck-button.ck-button_with-text.ck-resize-image-button .ck-button__icon {
    margin-left: var(--ck-spacing-standard);
}

.ck.ck-dropdown .ck-button.ck-resize-image-button .ck-button__label {
    width: 4em;
}

:root {
    --ck-image-style-spacing: 1.5em;
    --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
}

.textaco {

    /* See: https://github.com/ckeditor/ckeditor5/issues/16317 */
    & .image {

        /* Provides a minimal side margin for the left and right aligned images, so that the user has a visual feedback
		confirming successful application of the style if image width exceeds the editor's size.
		See https://github.com/ckeditor/ckeditor5/issues/9342 */
        &.image-style-block-align-left,
        &.image-style-block-align-right {
            max-width: calc(100% - var(--ck-image-style-spacing));
        }

        /* Allows displaying multiple floating images in the same line.
		See https://github.com/ckeditor/ckeditor5/issues/9183#issuecomment-804988132 */
        &.image-style-align-left,
        &.image-style-align-right {
            clear: none;
        }

        &.image-style-side {
            float: right;
            margin-left: var(--ck-image-style-spacing);
            max-width: 50%;
        }

        &.image-style-align-left {
            float: left;
            margin-right: var(--ck-image-style-spacing);
        }

        &.image-style-align-right {
            float: right;
            margin-left: var(--ck-image-style-spacing);
        }

        &.image-style-block-align-right {
            margin-right: 0;
            margin-left: auto;
        }

        &.image-style-block-align-left {
            margin-left: 0;
            margin-right: auto;
        }
    }

    & .image-style-align-center {
        margin-left: auto;
        margin-right: auto;
    }

    & .image-style-align-left {
        float: left;
        margin-right: var(--ck-image-style-spacing);
    }

    & .image-style-align-right {
        float: right;
        margin-left: var(--ck-image-style-spacing);
    }

    /* Simulates margin collapsing with the preceding paragraph, which does not work for the floating elements. */
    & p+.image.image-style-align-left,
    & p+.image.image-style-align-right,
    & p+.image.image-style-side {
        margin-top: 0;
    }

    & .image-inline {

        &.image-style-align-left,
        &.image-style-align-right {
            margin-top: var(--ck-inline-image-style-spacing);
            margin-bottom: var(--ck-inline-image-style-spacing);
        }

        &.image-style-align-left {
            margin-right: var(--ck-inline-image-style-spacing);
        }

        &.image-style-align-right {
            margin-left: var(--ck-inline-image-style-spacing);
        }
    }
}

.ck.ck-splitbutton {

    /* The button should display as a regular drop-down if the action button
	is forced to fire the same action as the arrow button. */
    &.ck-splitbutton_flatten {

        &:hover,
        &.ck-splitbutton_open {

            &>.ck-splitbutton__action:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
                background-color: var(--ck-color-button-on-background);

                &::after {
                    display: none;
                }
            }
        }

        &.ck-splitbutton_open:hover {

            &>.ck-splitbutton__action:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
                background-color: var(--ck-color-button-on-hover-background);
            }
        }
    }
}

.textaco figure.media iframe.youtube {
    width: 100% !important;
    aspect-ratio: 16/9;
    height: auto;
}

/* ZONA RESERVAS */

.reservador {
    top: 125px;
    left: calc(65% - 370px);
    height: fit-content;
    min-height: 780px;
    /* width: 765px; */
    width: 642px;
    background-color: #FFFFFF;
    z-index: 2;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 90px;
    padding-bottom: 60px;
}

.contenedor-formulario {
    width: 540px;
}

.imagen-formulario {
    position: relative;
    width: 20px;
    bottom: 3px;
    margin-right: 11px;
}

.contenedor-formulario h2 {
    margin-top: 0;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 400;
    /* font-size: 27px; */
    font-size: 49px;
    color: var(--primario);
}

.contenedor-formulario h2 span {
    font-weight: 700;
}

.caja-formulario {
    border: var(--gris) solid 1px;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--primario);
}

.caja-formulario input {
    width: 100%;
    height: 28px;
    color: var(--primario);
    border: 0;
    outline: none;
}

.caja-formulario input::placeholder {
    color: var(--primario);
    opacity: 0.5;
}

.caja-formulario.deshabilitado {
    opacity: 0.5;
}

.titulo-caja-formulario {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.datos-caja-formulario {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.datos-caja-formulario.active {
    max-height: 600px;
}

.datos-caja-formulario>div {
    display: flex;
    align-items: center;
}

.datos-caja-formulario>hr {
    margin-bottom: 30px;
    border-top-color: var(--gris);
}

.dato-caja-formulario {
    justify-content: space-between;
    margin-bottom: 30px;
}

.dato-caja-formulario-tipo {
    font-weight: 600;
    color: #333333;
}

.dato-caja-formulario-precio {
    font-size: 12px;
}

.dato-caja-formulario .caja-tienda,
.dato-cajita-formulario .cajita-hora {
    width: 100%;
    border: 2px solid var(--gris);
    color: var(--primario);
    border-radius: 5px;
    padding: 20px;
    cursor: pointer;
    text-align: center;
}

.dato-caja-formulario .caja-tienda.active,
.dato-cajita-formulario .cajita-hora.active {
    background-color: var(--primario);
    color: #FFFFFF;
}

.dato-caja-formulario:last-child {
    margin-bottom: 10px;
}

.dato-caja-precio-formulario {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.dato-caja-precio-formulario>div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dato-caja-precio-formulario input {
    width: 40px;
    height: 25px;
    border-radius: 5px;
    border: lightgray solid 1px;
}

.datos-caja-formulario .datos-cajita-formulario {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.datos-caja-formulario .datos-cajita-formulario .dato-cajita-formulario {
    display: flex;
    flex: 1;
    border-radius: 5px;
    border: lightgray solid 1px;
    min-width: calc((100% / 3) - (40px / 3));
    max-width: calc((100% / 3) - (40px / 3));
}

.dato-caja-precio-formulario .cajita {
    width: 25px;
    height: 25px;
    background-color: #dad1c666;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primario);
    font-size: 20px;
}

.dato-caja-precio-formulario .input-cantidad {
    text-align: center;
    font-size: 14px;
}

.despegar {
    background-color: var(--primario);
    height: 28px;
    width: 28px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.resultado-caja-formulario {
    margin-top: 20px;
    font-size: 14px;
    color: var(--primario);
}

.resultado-caja-formulario>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resultado-caja-formulario hr {
    margin-top: 8px;
    margin-bottom: 12px;
    border-top-color: var(--gris);
}

.realizar-pedido-formulario {
    display: flex;
    justify-content: center;
}

.realizar-pedido-formulario button {
    height: 70px;
    width: 315px;
    border-radius: 10px;
    background-color: var(--primario);
    margin-top: 70px;
    color: #FFFFFF !important;
    opacity: 1;
    font-size: 16px;
}

.realizar-pedido-formulario button:hover {
    background-color: #e3bd52;
    color: var(--primario) !important;
}

.resultado-caja-formulario-total {
    font-weight: 700;
}

.precio-total {
    font-size: 28px;
    color: #333333;
}

.cantidad-total {
    font-weight: 700;
    color: #333333;
}

.no-disponible {
    cursor: default !important;
    opacity: 0.4;
}

/* CALENDARIO */

.responsive-calendar .day.active.selected a {
    background-color: darkred !important;
}

.responsive-calendar .btn-primary {
    background-color: var(--primario);
}

.responsive-calendar .btn-primary:hover {
    background-color: var(--secundario);
    color: var(--primario);
}

.responsive-calendar hr {
    border-top-color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 10px;
}

.responsive-calendar .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.responsive-calendar .day.header {
    background-color: var(--primario);
    color: #FFFFFF;
    border-color: var(--gris);
}

.responsive-calendar .day.active.selected a {
    background-color: var(--secundario) !important;
    color: var(--primario);
}

.responsive-calendar .day a {
    font-size: 14px;
}

.responsive-calendar .day.header {
    font-size: 14px;
    min-height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.responsive-calendar .day.header:first-child {
    border-top-left-radius: 10px;
}

.responsive-calendar .day.header:last-child {
    border-top-right-radius: 10px;
}

.responsive-calendar .day.mon a {
    border-left: solid 1px #ddd;
}

.responsive-calendar .day:last-child a {
    border-bottom-right-radius: 10px;
}

.responsive-calendar .day:nth-child(36) a {
    border-bottom-left-radius: 10px;
}

@media (max-width: 767px) {
    .textaco figure.image {
        width: 100% !important;
    }

    .textaco .image_resized,
    .textaco img {
        height: auto;
        max-width: 100%;
    }

    .productos2 .productos .producto .titulo {
        font-size: 16px;
    }

    #productos p {
        font-size: 16px;
    }

    .modal-lg {
        margin: 40px auto !important;
    }

    #productos .custom-container>div {
        justify-content: center !important;
    }

    #productos h2 {
        text-align: center;
    }

    #productos .splide__arrows {
        display: none;
    }

    footer .redes-contacto p {
        font-size: 28px;
    }

    footer .iconos-hero img {
        margin: 0 7px;
        width: 37px;
    }
}

/*FIN ESTILOS CKEDITOR*/

#swipebox-overlay {
    background: #0d0d0ddb;
}

.swipebox .imagen.secundaria {
    background-size: contain;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
    background: transparent;
}

.ug-lightbox .ug-lightbox-overlay {
    background: #0d0d0ddb;
}

/*Detalle producto*/
.breadcrumb>li {
    font-size: 13px;
}

.tag_option {
    margin: 5px;
    color: var(--primario)
}

.tag-circle {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    display: inline-block;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    overflow: hidden;
    border: 2px solid #f5f5f5;
}

.tag-circle img {
    height: 40px;
    width: 40px;
    border-radius: 40px;
    object-fit: contain;
}

.tag_bloque {
    height: 40px;
    width: 70px;
    display: inline-flex;
    background-color: var(--transparencia);
    justify-content: center;
    align-items: center
}

.tag-circle.active {
    border: 2px solid #000;
}

.tag_bloque.active {
    background-color: var(--primario);
}

.tag_option.active a {
    color: #fff;
}

.foto_principal .imagen {
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid #f5f5f5;
    border-radius: 0 25px 0 25px;
}

.foto_principal.mini .imagen {
    height: 444px;
    background-size: cover;
}

.foto_principal .lupa {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 300ms all linear;
    color: #fff;
    font-size: 40px;
    border-radius: 0 25px 0 25px;
}

.foto_principal .lupa:hover {
    opacity: 1;
}

.quantity {
    border: 2px solid var(--primario);
    display: inline-block;
    position: relative;
    vertical-align: middle;
    border-radius: 10px;
}

.quantity label {
    display: inline-block;
    padding: 0 20px;
    color: var(--primario__e);
}

.quantity-controls .fa {
    color: var(--primario__e);
}

.quantity-controls {
    display: inline-block;
    position: relative;
}

.quantity-controls span {
    color: #888;
    cursor: pointer;
    height: 48px;
    line-height: 48px;
    position: absolute;
    top: 0;
    width: 26px;
    -webkit-transition: color .15s ease-in-out;
    -moz-transition: color .15s ease-in-out;
    transition: color .15s ease-in-out;

    color: #171717;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.quantity-controls span.right {
    right: 0;
    text-align: left;
}

.lista_productos_sin_stock {
    border: 2px solid red;
    padding: 20px 20px;
    list-style-type: none;
}

.lista_productos_sin_stock li {
    color: #f4573a;
    font-weight: 600;
}

#productos>div {
    /* padding-right: 23px;
    padding-left: 23px; */
}

#cantidad {
    border: 0;
    font-family: inherit;
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    margin: 0 26px;
    outline: 0;
    padding: 0;
    position: relative;
    width: 40px;
    -webkit-appearance: none;
    background-color: #f0efeb;
    color: var(--primario_oscuro__e);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.otros_productos h2,
.otros_productos h3 {
    color: var(--primario);
    font-weight: 500;
    font-family: var(--familia_fuente)
}

.botones_carro {
    width: calc(100% - 225px);
    float: right;
}

.botones_carro.grande {
    width: 100%;
}

.btn_love img {
    height: 30px;
    width: 30px
}

.btn-filtro {
    height: 40px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
}

.botones_carro .btn-tam {
    height: 52px;
    width: 100%;
}

.descarga.uno:hover .btn {
    color: #fff;
    background-color: var(--secundario);
}

.descarga.dos:hover .btn {
    color: var(--secundario);
    background-color: #e8d6fb;
}

.mayorista {
    color: var(--secundario);
    background-color: #e8d6fb;
    border: 2px solid var(--secundario);
    padding: 16px 14px;
    text-align: center;
    font-weight: 600;
}

.btn-corporativo {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-lg.btn-corporativo {
    padding: 18px 30px;
    transition: 0.3s linear all;
}

.btn-corporativo .btn-carro_portada img {
    height: 20px;
    width: 20px;
    margin-right: 15px;
    border-radius: 0;
}

.btn-comprar {
    border: 0;
}

.btn-grandotes {
    padding: 15px
}

.btn-corporativo2 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px !important;
    transition: 0.3s linear all;
}

.btn-corporativo3 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s linear all;
}

/*MENU VIEJO
.navbar-nav>li>.dropdown-menu {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
width: 213px;
left: -15px;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
color: #fff;
background-color: rgb(255 255 255 / 10%);
border-radius: 14px;
}
*/
.btn-corporativo:hover,
.btn-corporativo:focus,
.btn-corporativo:active {
    /* background-color: #5c5b5b; */
    background-color: var(--primario_oscuro__e);
    color: #fff
}

.btn-corporativo2:hover,
.btn-corporativo2:focus,
.btn-corporativo2:active {
    background-color: var(--primario_oscuro__e);
    color: #fff
}

.btn-corporativo3:hover,
.btn-corporativo3:focus,
.btn-corporativo3:active {
    background-color: #5c5b5b;
    color: #fff
}

.desactivado {
    opacity: 0.6;
}

.acceso a {
    color: #fff;
}

.lista_productos .btn_love img,
.bienvenida .btn_love img {
    filter: brightness(0) invert(1);
    height: 22px;
    width: 22px;
}

.left .caja_redes a {
    width: 45px;
    height: 45px;
}

.btn-corp {
    background-color: var(--primario);
    color: #fff !important;
    border: 0;
}

.btn-default-formulario {
    background-color: #c6c6c6;
    color: #fff !important
}

.nav-botones {
    border: none;
}

.nav-botones>li>a {
    background-color: #fff;
    border-radius: 0px;
    margin: 0px 10px;
    color: #78c74a;
    border: 2px solid var(--primario);
}

.nav-botones>li>a:focus,
.nav-botones>li>a:hover {
    background-color: #f5f5f5;
    color: #78c74a;
    border: 2px solid var(--primario);
}

.nav-botones>li.active>a,
.nav-botones>li.active>a:focus,
.nav-botones>li.active>a:hover {
    background-color: var(--primario);
    color: #fff;
    border: 2px solid var(--primario);
}

#title_prod {
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primario);
    font-size: 24px;
    margin-top: 0px
}

h3.categoria {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--familia_fuente);
    margin-top: 0px
}

span.precio {
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    color: var(--primario);
    font-weight: 400;
    margin-right: 5px;
}

.titulotag {
    font-weight: 400
}

.videos_responsive {
    width: 600px;
    float: left;
    margin-right: 20px;
    margin-bottom: 30px;
}

ul.columnas-detalle {
    list-style-type: disc;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    list-style-position: inside;
}

.otras_fotos .imagen {
    height: 150px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.breadcrumb {
    margin: 0;
    background-color: transparent
}

.breadcrumb li a {
    text-transform: capitalize;
    color: #000
}

.precios .tachado {
    text-decoration-line: line-through;
    color: var(--color_textos__e);
}

/***PROGRAMAS***/
/*
.cabecera {
background-color: #78c74a;
border: solid 0px #fff;
color: #fff;
padding: 5px;
font-size: 14px;
}
*/

.fila1 {
    background-color: #d9ebd9;
    border: solid 2px #fff;
    padding: 8px;
}

.fila2 {
    background-color: #fff;
    border: solid 2px #fff;
    padding: 8px;
}

.mini_icono_text {
    margin-top: 4px;
    font-size: 24px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}


.lista_productos .fa {
    color: var(--secundario);
}

.mini_icono_text .fa-download {
    color: var(--secundario);
}


.fecha_archivos {
    font-size: 14px;
    margin: 5px;
}

.elementos_desc>div:nth-child(even) {
    background-color: #d9ebd9
}

.elementos_desc .text_content {
    margin: 10px 0px
}

.elementos_desc .text_content p {
    margin: 0px
}

.elementos_desc p.fecha_archivos {
    text-align: center
}

/**************************
SWIPEBOX
**************************/

.cuadro_fotos {
    padding-top: 15px;
    background-color: #f5f5f5;
    border: 1px solid #efefef;
}

.cuadro_fotos .foto_principal {
    background-color: #fff;
    margin-bottom: 15px
}

.cuadro_fotos .galeria {
    padding: 30px 15px;
    background-color: #3b3b3b
}

.swipebox .imagen {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

/*.swipebox .imagen:after{content:'';padding-top:66.66%;display:block}*/
.swipebox .imagen:after {
    content: '';
    padding-top: 100%;
    display: block
}

.swipebox .padre_imagen .imagen {
    content: '';
    padding-top: 100%;
    display: block
}

.btn-precio {
    padding: 0
}

.foto_color .imagen {
    float: left;
    height: 75px;
    width: 75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 15px 30px 0
}

.swipebox .imagen.secundaria {
    background-size: cover;
    border-radius: 20px;

}

.galeria_mini .swipebox {
    background-color: #f0efeb;
}

.zona_galeria_mini .bx-wrapper .bx-prev {
    left: -45px;
}

.zona_galeria_mini .bx-wrapper .bx-next {
    right: -45px;
}


.bx-wrapper .bx-controls-direction a {
    z-index: 1000;
}

.bx-wrapper .bx-viewport {
    box-shadow: none;
    border: none;
    background-color: #f0efeb;
}

/**************************
NUEVA CESTA
**************************/

#cesta .articulo .padding {
    padding-right: 30px
}

.resumen-cesta {
    padding: 20px
}

#configurar-cesta .form-control {
    border-radius: 10px !important;
    -webkit-appearance: none;
    /* Safari/Chrome */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    padding-right: 2.5em;
    /* espacio para la flecha */

    /* Fondo */
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2010%2010'%3E%3Cpolygon%20points='0,0%2010,0%205,5'%20fill='%23666'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px top 17px;
    background-size: 20px 11px;

    border: 1px solid #ccc;
}


.resumen-cesta .ancho-resumen {}

.resumen-cesta .label-resumen {
    float: right
}

.resumen-cesta .label-resumen .cesta-bono {
    font-size: 24px;
    margin-right: 10px
}

.resumen-cesta .label-resumen .precio_descuento {
    font-size: 24px;
    margin-left: 10px
}

.resumen-cesta .label-resumen .bigger {
    font-size: 24px;
}

.resumen-cesta .label-resumen p {
    margin: 0
}

.resumen-cesta .aplicar_codigo {
    height: 52px;
    border-radius: 0;
    border-right: none
}

.resumen-cesta .input-group-btn {
    border: 1px solid #ccc;
    border-radius: 0;
    border-left: none
}

.resumen-cesta .btn-codigo {
    color: #fff;
    border: 2px solid #fff;
    height: 48px;
    cursor: pointer;
    display: flex;
    min-width: 48px;
    align-items: center;
    justify-content: center;
    background-color: var(--primario)
}

#gastos .radio,
#gastos label {
    margin: 0
}

#gastos label {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

#gastos .radio .colocar {
    width: 0px;
    margin-bottom: 5px
}

.marco-gasto {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px 0px
}

.resumen-total strong {
    text-transform: uppercase;
    position: relative;
    top: 10px;
}

.metodos-pago .radio-inline {
    font-size: 18px;
    margin-left: 20px;
}

.btn-borrartodo {
    border-radius: 0px;
    background-color: var(--secundario);
    color: #fff !important;
    border-radius: 5px;
}

.swal2-popup {
    font-size: 1.6rem !important;
}

.condiciones a {
    color: var(--primario);
}

/************************************
*  Cesta Lateral  *
************************************/

.titulares-resumen {
    color: var(--primario);
}

.resumen-cesta hr {
    border-top: 1px solid #d2d2d2;
}

#configurar-cesta h4 {
    color: var(--primario);
}

.menu-cesta {
    position: fixed;
    top: 0;
    visibility: hidden;
    right: 0px;
    height: 100vh;
    width: 480px;
    background-color: #fff;
    z-index: 1000;
    transition: 400ms all linear;
    box-shadow: 0px 8px 10px -5px rgba(51, 51, 51, 0.2), 0px 16px 24px 2px rgba(51, 51, 51, 0.14), 0px 6px 30px 5px rgba(51, 51, 51, 0.12)
}

.menu-cesta .cabecera-cesta {
    padding-top: 35px;
    background-color: #d9d9d9;
    height: 90px;
    position: relative
}

.fondo-cesta {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fondo-cesta .overlay-cesta {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primario)
}

.menu-cesta .cabecera-cesta h3 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    bottom: 6px;
    font-family: var(--titulo);
    text-align: center;
}

.cerrar-cesta {
    position: absolute;
    top: 25px;
    right: 20px;
    transition: 200ms all linear;
    border-radius: 50%;
    cursor: pointer
}

.cerrar-cesta img {
    height: 40px;
    width: 40px
}

.cuerpo-cesta {
    height: calc(100vh - 260px);
    padding: 30px;
    overflow: scroll
}

.pagar-cesta {
    height: 120px;
    padding: 0px 30px;
}

.pagar-cesta p {
    text-align: center
}

.pagar-cesta p span {
    font-size: 30px;
    font-weight: 400;
}

.pie-cesta {
    height: 50px;
    background-color: #f7f7f7
}

.cesta-pie {
    width: 26px !important;
    margin: 0 4px 7px 0 !important;
}

.articulo {
    position: relative
}

.articulo img {
    /* width: 100%;
    height: 115px;
    object-fit: contain */
    width: 100%;
    height: 180px !important;
    object-fit: cover;
    border-radius: 0 20px 0 20px;
}

#configurar-cesta #zona {
    height: 40px;
}

.articulo h4 {
    font-size: 16px;
    font-family: var(--familia_fuente);
    color: #6a6a6a;
}

.articulo .precio-articulo {}

.articulo .controles-articulo {
    height: 30px
}

.articulo .controles-articulo .operators {
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start
}

.articulo .btn-circle {
    border: 1px solid #353535;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    float: right;
    color: #353535;
    cursor: pointer;
}

.menu-cesta .icono-cesta {
    width: auto;
    height: 25px;
    margin: 0 6px
}

.btn-operator {
    color: #272727
}

.btn-operator:hover,
.btn-operator:focus,
.btn-operator:active {
    color: #626062
}

#precio_label {
    text-align: center;
}

#manto-cesta,
#manto-movil {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: -1
}

#manto-movil .custom-button::before {
    background-color: var(--secundario__e);
}

.sidebar-content .custom-button::before {
    background-color: #e6c15e;
}


#manto-cesta.toogled,
#manto-movil.toogled {
    z-index: 15
}

span.cesta-bono {
    color: #3c763d
}

.btn-cesta {
    height: 48px;
    background-color: #272727;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    color: #fff;
}

.btn-cesta:hover,
.btn-cesta:focus,
.btn-cesta:active {
    color: #fff;
    background: #272727
}

.boton-cesta-real {
    cursor: pointer;
}

/* Animaciones */

.menu-cesta {
    transform: translate(530px, 0px);
}

.mostrarCesta .menu-cesta {
    visibility: visible;
    transform: translate(0px, 0px);
}

a.cerrar-cesta:hover {
    background-color: #626062
}

@media (max-width: 767px) {
    .menu-cesta {
        width: 100vw;
        transform: translate(-110vw, 0px) !important;
    }

    .mostrarCesta .menu-cesta {
        transform: translate(0vw, 0px) !important;
    }

    .menu-cesta .cabecera-cesta {
        padding-top: 15px;
        height: 50px
    }

    .menu-cesta .cabecera-cesta h3 {
        font-size: 20px
    }

    .cerrar-cesta {
        top: 10px;
        left: 10px !important;
        right: auto;
    }

    .cerrar-cesta img {
        height: 30px;
        width: 30px;
    }

    .menu-cesta .cabecera-cesta h3 {
        bottom: 0;
    }

    .cuerpo-cesta {
        height: calc(100vh - 225px);
        padding: 30px;
        overflow: scroll
    }

    #manto-cesta.toogled,
    #manto-movil.toogled {
        z-index: 9;
        opacity: 0.6;
        background-color: #0d0d0d;
    }
}


/************************************
*  Archivos adjuntos y tipografias  *
************************************/

.tipografia,
.titulo-contenido {
    text-align: left;
    color: #505050;
    text-transform: uppercase;
    font-family: var(--familia_fuente);
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
}

.titulo-contenido {
    color: #000;
}

.tipografia i {
    color: var(--secundario)
}

.listado {
    text-align: justify;
}

.listado ul,
.listado li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.listado li {
    padding: 20px;
    background-color: var(--transparencia);
}

.listado li a,
.listado li.alt a {
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.listado li.alt {
    background-color: transparent;
}

.listado li.alt a {
    color: #000;
    text-decoration: none;
}

.listado a {
    color: #000;
    text-decoration: none;
}

.listado a:hover,
.listado li.alt a:hover {
    color: var(--secundario);
    text-decoration: none;
}

.btn-gris {
    color: #333;
    background-color: #fafafa
}

.btn-gris:hover,
.btn-gris:focus,
.btn-gris:active {
    color: #333;
    background-color: #dedede
}


/************************************
*            MULTIFORMA             *
************************************/

.bloque_imagen_lista ul {
    list-style: none;
    padding: 0
}

.bloque_imagen_lista i {
    color: var(--secundario)
}

.bloque_cabecera .bloque_titulo {
    background-color: var(--primario);
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

.bloque_cabecera .bloque_interior {
    background-color: var(--transparencia);
    padding: 30px 15px;
    border-radius: 0 0 15px 15px;
}

.bloque_cabecera .bloque_titulo h3 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--familia_fuente);
    font-weight: 300
}

.bloque_cabecera .imagen {
    width: 100%;
    border-radius: 0 20px 0 20px;
}

.bloque_cabecera h4 {
    text-transform: uppercase;
    font-size: 22px;
    font-family: var(--familia_fuente);
    color: var(--secundario)
}

/*.bloque_cabecera .texto{font-size:18px;font-weight:300}*/
.bloque_imagen_lista .imagen {
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 0 20px 0 20px;
}

.bloque_imagen_lista h4 {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--familia_fuente);
    color: var(--primario);
    font-size: 22px
}

.bloque_puntos ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.bloque_puntos ul li {
    margin-bottom: 15px
}

.bloque_puntos ul li>p>.fa {
    font-size: 20px;
    color: var(--secundario)
}

.bloque_contenido .titulo {
    background-color: var(--primario);
    padding: 15px 10px;
    border-radius: 15px;
}

.bloque_contenido .titulo h4 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--familia_fuente);
    font-weight: 300
}

.bloque_contenido .bloque {
    padding: 0 10px
}

.bloque_desplegable .fondo,
.bloque_documentos .fondo {
    background-color: var(--transparencia);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 15px;
}

.bloque_desplegable .panel-group,
.bloque_documentos .panel-group {
    margin: 0
}

.bloque_desplegable h2,
.bloque_documentos h2 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--familia_fuente);
    color: var(--secundario)
}

.bloque_desplegable .panel-default {
    border-color: var(--primario)
}

.bloque_desplegable .panel-default>.panel-heading {
    background-color: var(--primario);
    color: #fff;
    border-color: var(--primario)
}

.bloque_desplegable h2 .fa {
    color: var(--secundario)
}

.bloque_desplegable .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--primario)
}

.bloque_imagenes img {
    width: 100%;
    border-radius: 0 20px 0 20px;
}

.bloque_imagenes .flexible {
    display: flex;
    align-items: center
}


.panel-body .btn-corporativo2 {
    padding: 8px 15px
}

.bloque_imagenes img {
    width: 100%;
    object-fit: cover
}

.ug-thumb-wrapper .ug-thumb-overlay {
    border-radius: 0 20px 0 20px;
}

.ug-thumb-wrapper.ug-tile.ug-tile-clickable {
    border-radius: 0 20px 0 20px;
}

/************************************
*              IDIOMAS              *
************************************/

#idiomasside {
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 900;
}

#idiomasside li {
    padding: 10px;
    list-style-type: none;
}

#idiomasside img {
    height: 40px;
}

#idiomasside font {
    display: none;
}

.zona-idiomas-movil {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    margin-top: 25px;
}

.zona-idiomas-movil .flag {
    height: 50px;
    width: 30px;
}

/************************************
*               BLOG                *
************************************/
.alergenos {
    display: flex;
    justify-content: space-evenly;
    align-content: space-evenly;
    flex-wrap: wrap
}

.alergenos .padre_fondo {
    margin: 0
}

.alergenos .caja_alergenos {
    padding: 0 10px
}

.alergenos .caja_alergenos:hover {
    transform: translateY(0)
}

.bloque.principal.noticia {
    display: inherit
}

.noticias,
.post_details ul,
.popular {
    list-style: none;
    padding: 0;
    margin: 0
}

.noticia a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #333333
}

.noticias .imagen {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

.noticias .imagen:after {
    content: "";
    padding-top: 50%;
    display: block
}

.not-imagen {
    background-color: #ededed
}

#modal-cita .form-control {
    color: var(--primario);
    border-radius: 10px !important;
    background: #f8fbff;
    padding: 6px 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    border: 1px solid var(--primario);
}

#modal-cita input::-webkit-input-placeholder,
#modal-cita textarea::-webkit-input-placeholder {
    color: var(--primario);
}

#modal-cita input:-moz-placeholder,
/* Firefox 18- */
#modal-cita textarea:-moz-placeholder {
    /* Firefox 18- */
    color: var(--primario);
}

#modal-cita input::-moz-placeholder,
/* Firefox 19+ */
#modal-cita textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--primario);
}

#modal-cita input:-ms-input-placeholder,
#modal-cita textarea:-ms-input-placeholder {
    color: var(--primario);
}

#modal-cita input::placeholder,
#modal-cita textarea::placeholder {
    color: var(--primario);
}

#modal-cita .form-control {
    height: 50px;
}

#modal-cita p {
    color: var(--primario);
}

#modal-cita textarea.form-control {
    height: 120px;
}

.full-width {
    width: 100%
}

.noticia .titular {
    margin-bottom: 0;
    border-bottom: solid 1px #f3f3f3
}

.noticia .titular h1 {
    color: #1e1f1d;
    margin-bottom: 10px
}

.noticia .titular a>h3 {
    margin-bottom: 17px;
    font-size: 24px;
    text-transform: uppercase;
    text-align: left;
    color: #333333;
    font-family: var(--familia_fuente);
}

.noticia .post_details {
    color: #fff;
    background-color: var(--primario);
    padding: 10px;
    border-bottom: solid 5px var(--primario);
    text-align: right;
    font-size: 13px
}

.post_details li {
    font-family: var(--familia_fuente);
    font-size: 13px;
    font-weight: 300;
    color: #fff
}

.noticia-detalle-fecha small {
    font-family: var(--familia_fuente);
    font-weight: 300;
    color: #302224
}

.post_details i {
    color: #fff
}

.noticia-detalle-fecha i {
    color: #2f3668
}

.noticia .contenido {
    padding: 5px 15px 10px;
    background-color: #fff;
    border: 1px solid #ffefcc
}

.contenido_noticia_lista {
    padding: 0 20px;
    background-color: var(--transparencia)
}

.noticia-detalle-fecha {
    text-align: right;
    color: #2b2b2b
}

.widget-noticias {
    background-color: #f3f3f3;
    padding: 15px
}

.widget-noticias h5 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primario);
    font-family: var(--familia_fuente);
}

.widget-noticias .input-group-btn {
    height: 100%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.widget-noticias .input-group-btn button {
    height: 100%;
    border: 1px solid var(--primario);
    background-color: var(--primario);
    color: #fff
}

.widget-noticias .input-group-btn i {
    font-size: 16px
}

.widget-noticias2 {
    position: sticky;
    position: -webkit-sticky;
    top: 20px;
}

.popular {
    font-size: 13px
}

.mini-noticia {
    float: none;
}

.mini-noticia a {
    font-family: var(--familia_fuente);
    font-weight: 400;
    font-size: 14px
}

.popular li {
    padding: 10px 0;
    border-bottom: dotted 1px rgb(129, 97, 159)
}

.popular .imagen {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 10px;
    border-radius: 3px;
    background-size: cover;
    background-position: center center
}

.popular a.title {
    color: #070707;
}

.popular a.texto-breve {
    color: #707070;
    font-weight: 300;
    font-family: "Lato", sans-serif;
    font-size: 12px
}

.popular a.title:hover,
.popular a.title:focus,
.popular a.title:active {
    color: #070707
}

.bloque.noticia {
    margin-bottom: 40px
}

.cuadro_noticia {
    background-color: var(--transparencia);
    max-width: 400px;
    float: left;
    margin: 0px 20px 12px 0px;
}

.titulo_noticia {
    color: var(--primario);
    font-size: 30px;
    text-transform: uppercase;
    font-family: var(--familia_fuente);
    margin: 0;
}

#busqueda {
    border-color: var(--primario);
}

.marco-contacto {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 20px;
}

.marco-contacto h3 {
    margin-top: 0px
}

.widget-noticias {
    background-color: var(--transparencia)
}

.marco-contacto .input-group-addon {
    background-color: var(--primario);
    border-color: var(--primario);
    color: #fff
}

.marco-contacto .form-control,
#datos-cliente .form-control {
    /* border-color: var(--primario_oscuro__e); */
    border-color: #ccc;
    border-radius: 15px !important;
}

#datos-cliente .enlace-otros span {
    margin: 0 5px;
}

.form-control:focus {
    box-shadow: inset 0 0px 1px rgba(0, 0, 0, .1), 0 0 3px rgba(142, 70, 75, 1);
}

.input-group {
    width: 100%;
}

.input-group .form-control {
    z-index: 0;
}

.form-control {
    padding: 10px 12px;
}


center {
    display: flex;
    justify-content: center;
    align-items: center;
}

center p {
    margin: 0;
}

center input[type=checkbox] {
    margin: 0 10px 0 0;
}

.marco-contacto input,
#datos-cliente input {
    height: 45px;
}

.zona-mapa iframe {
    height: 100%;
    width: 100%;
}

.ocultorobots {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
}

/* TABLA MIS PEDIOS*/

.tabla_cabecera .row {
    font-weight: 400;
    background-color: var(--primario);
    color: #fff
}

#tabla_stocks_resultados .row:nth-child(even) {
    background-color: var(--transparencia)
}

.tabla_stocks .cell {
    padding: 15px
}

.tabla_stocks .cell-btn {
    padding: 10px
}

.avisono {
    margin: 10px 0px;
    font-size: 18px
}

textarea {
    resize: vertical;
}

/*+++++++++++++++++++*/
/************************************
*             INTERIOR              *
************************************/
.fa-angle-down {
    padding-left: 5px;
}

/*MENU VIEJO
.navbar-default .dropdown-menu{
background-color: #fff;
color: #000;
top: 99%;
}

.navbar-default .dropdown-menu>li>a {
padding: 18px 20px;
color: #fff;
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
background-color: var(--primario);
border-bottom: 1px dotted #4b4a4a;
}

.superior .dropdown-menu>li>a {
padding: 18px 20px;
color: #000;
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
border-bottom: 1px dotted #c6c6c6;
border-right:  1px dotted #c6c6c6;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
background-color: var(--transparencia);
color: #2c2c2c
}
.dropdown-menu {
padding: 0;
}
.superior .open>.dropdown-menu {
width: 185px;
top: 32px;
}
.superior .dropdown-menu>.active>a, .superior .dropdown-menu>.active>a:focus, .superior .dropdown-menu>.active>a:hover, .superior .dropdown-menu>li>a:focus, .superior .dropdown-menu>li>a:hover {
background-color: #dddddd;;
color: #09090c;
font-weight: 700;
}
.navbar-default .dropdown-menu>.active>a, .navbar-default .dropdown-menu>.active>a:focus, .navbar-default .dropdown-menu>.active>a:hover, .navbar-default .dropdown-menu>li>a:focus, .navbar-default .dropdown-menu>li>a:hover {
background-color: #000;
color: #fff;
font-weight: 700;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
background-color: transparent;
}
.superior .open>a, .superior .open>a:focus, .superior .open>a:hover {
background-color: transparent;
}
*/
.acceso a p {
    color: var(--primario);
    font-weight: 600;
    margin: 0;
}

.noestavisibleparapersonas {
    display: none;
}

.banner_interior {
    width: 100%;
    height: 500px !important;
    background-size: cover;
    background-position: center center !important;
    overflow: hidden;
    background-position: 0px 50%;
}

.corte_banner_interior {
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0px;
    z-index: 1;
}

.banner_interior .imagen {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(4px);
}

.banner_interior .texto {
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
}

.banner_interior .texto img {
    margin-top: 20px;
}

.banner_interior.interior_azul .texto {
    background-color: rgba(69, 183, 245, 0.5);
}

.banner_interior.interior_amarillo .texto {
    background-color: rgba(247, 201, 110, 0.5);
}

.banner_interior.interior_rojo .texto {
    background-color: rgba(245, 104, 78, 0.5);
}

.banner_interior p {
    margin-top: 0;
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0px;
    font-family: 'Open Sans';
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}

.banner_interior h1 {
    margin-top: 0;
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0px;
    font-family: 'Open Sans';
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #fff;
    background-color: var(--primario);
}

.nav-pills>li>a {
    color: #000;
    font-family: 'Open Sans';
    font-weight: 400;
    text-transform: uppercase;
}

/************************************
*              FILTROS              *
************************************/

.filtros {
    height: 120px;
    background-color: var(--transparencia);
    /* border-bottom: 2px solid #e8e8e8; */
    margin: 0;
    padding: 0;
}

.producto-detalle .filtros {
    height: 44px;
}

.filtros .dropdown-toggle:focus {
    outline: transparent !important;
}

.filtros .form-control {
    height: 42px;
    border-radius: 10px;
    color: #4b4b4b;
    font-weight: 500;
    border: none;
}

.filtros .form-control::placeholder {
    color: #cbcbcb;
}

.filtros.interiores {
    /* background: #f9f9f9; */
    /* background-color: #f0efeb; */
    background-color: #e7e7e7;
}

.filtros.gestion {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filtros.gestion>div {
    width: 100%;
    margin-top: 15px;
}


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

.input-container i {
    position: absolute;
    top: 33%;
    left: 24px;
    transform: translateY(-50%);
    color: #4b4b4b;
}

.input-search {
    padding-left: 30px;
}

/************************************
*             BUSCADOR              *
************************************/

#buscador_emergente {
    position: absolute;
    top: 195px;
    width: 100%;
    z-index: 1000;
    transition: 300ms all ease
}

#buscador_emergente.oculto {
    visibility: hidden;
    opacity: 0;
    top: 0
}

.buscador_emergente>div {
    background: #fff;
    border-bottom: 1px solid #e4e9ef;
    box-shadow: 0 0 3px #ccc;
    padding: 15px
}

.input_buscador {
    border-right: 0;
    box-shadow: none;
    border-radius: 0
}

.boton_input_buscador {
    border-radius: 0;
    padding: 10px;
    border-left: 0;
    border-right: 0;
    color: rgba(0, 0, 0, .3);
    background-color: #fff !important
}

.cerrar_input_buscador {
    border-right: 0;
    border-right: 1px #ccc solid;
    color: rgba(0, 0, 0, .3);
    padding: 10px;
    border-radius: 0;
    background-color: #fff !important
}

#buscador {
    position: fixed;
    z-index: 99999;
    height: 100%;
    width: 100%;
    display: flex;
    pointer-events: none
}

#buscador.search-active {
    overflow: hidden;
    pointer-events: auto
}

#buscador.search-active .search-input {
    opacity: 1;
    transform: none;
    pointer-events: all
}

#buscador.search-active .icon-close {
    opacity: 1;
    transform: rotate(-90deg)
}

#buscador.search-active .control {
    cursor: default
}

#buscador.search-active .control .btn-material {
    transform: scale(70);
    right: 1000px;
    top: 0
}

#buscador.search-active .control .icon-material-search {
    opacity: 0
}

.icon-close {
    position: fixed;
    top: 30px;
    right: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 70px;
    opacity: 0;
    transition: all .3s ease-in-out
}

.icon-close:hover {
    transform: rotate(0)
}

.search-input {
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50px;
    margin-top: -40px;
    pointer-events: none;
    opacity: 0;
    transform: translate(40px, 0);
    transition: all .3s ease-in-out
}

.search-input input {
    color: #fff;
    font-size: 54px;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: 0;
    font-weight: 200;
    font-family: 'Open Sans';
}

.search-input i {
    color: #fff;
    font-size: 50px;
    margin-right: 15px
}

.search-input ::-webkit-input-placeholder {
    color: #eee
}

.search-input :-moz-placeholder {
    color: #eee;
    opacity: 1
}

.search-input ::-moz-placeholder {
    color: #eee;
    opacity: 1
}

.search-input :-ms-input-placeholder {
    color: #eee
}

.wow {
    visibility: hidden;
}

.full-width {
    width: 100%
}

.control {
    cursor: pointer
}

.control .btn-material {
    position: absolute;
    top: -100px;
    width: 60px;
    height: 60px;
    right: 0;
    border-radius: 100%;
    box-sizing: border-box;
    background: var(--primario);
    outline: 0;
    opacity: .9;
    transform-origin: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all .7s cubic-bezier(0.4, 0, 0.2, 1)
}

.control .btn-material:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23)
}

.control .icon-material-search {
    color: #fff;
    position: absolute;
    top: -10px;
    right: 78px;
    transition: opacity .3s ease-in-out
}

.navbar-img {
    display: none
}

.carrito-interiores {
    width: 65px;
    border-radius: 0 12px 0 12px;
    right: 30px;
    align-self: center;
    background-color: var(--primario_oscuro__e);
    transition: 0.2s linear all;
}

.carrito-interiores img {
    padding: 18px;
    transition: 0.2s linear all;
}

.carrito-interiores img:hover {
    scale: 1.1;
}

.modal-header {
    background-color: var(--primario);
    color: #fff;
}

.modal-content {
    border: 0;
    height: fit-content;
}

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

/************************************
*             PAGINACION            *
************************************/


.btn-pagination {
    color: #FFFFFF;
    background-color: #565656;
    border-color: #565656;
}

.btn-pagination:hover,
.btn-pagination:focus,
.btn-pagination:active,
.btn-pagination.active,
.open .dropdown-toggle.btn-pagination {
    color: #FFFFFF;
    background-color: var(--primario);
    border-color: var(--primario);
}

.btn-pagination:active,
.btn-pagination.active,
.open .dropdown-toggle.btn-pagination {
    background-image: none;
}

.btn-pagination.disabled,
.btn-pagination[disabled],
fieldset[disabled] .btn-pagination,
.btn-pagination.disabled:hover,
.btn-pagination[disabled]:hover,
fieldset[disabled] .btn-pagination:hover,
.btn-pagination.disabled:focus,
.btn-pagination[disabled]:focus,
fieldset[disabled] .btn-pagination:focus,
.btn-pagination.disabled:active,
.btn-pagination[disabled]:active,
fieldset[disabled] .btn-pagination:active,
.btn-pagination.disabled.active,
.btn-pagination[disabled].active,
fieldset[disabled] .btn-pagination.active {
    background-color: #3a39367a;
    border-color: #3A3936;
}

.btn-pagination .badge {
    color: #0977b2;
    background-color: #FFFFFF;
}

.btn-pagination {
    padding: 10px 20px;
    font-size: 14px;
    margin: 0 15px;
    border: 1px solid;
}

.proyecto .imagen {
    background-size: cover;
}

.proyecto h3 {
    font-family: var(--familia_fuente);
    margin-bottom: 40px;
    text-align: center;
}

.contenedor-local {
    margin-bottom: 100px;
}

.local .fondo_local {
    width: 125%;
    top: 0;
}

.contenedor-local:last-of-type {
    margin-bottom: 0;
}

.local {
    display: flex;
    width: 100%;
    height: 450px;
    background-color: #703b41;
    border-radius: 0 25px 0 25px;
}

.local .imagen {
    background-size: cover;
    height: 100%;
}

.local .telefono {
    width: 100%;
    font-size: 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    z-index: 10;
}

.local a {
    color: #fff;
}

.local .custom-button {
    max-width: 275px;
    height: 52px;
    font-size: 18px;
    border-radius: 10px;
    color: var(--primario__e);
    background-color: #dcd3c6;
    margin: 0 auto;
}

.local .custom-button:before {
    background-color: var(--secundario);
}

.local .imagen iframe {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 25px 0 0;
}

.local .padre_imagen {
    flex: 60%;
}

.local .texto {
    flex: 40%;
    /* align-content: center; */
    overflow: hidden;
    justify-content: center;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
}

.local .texto .logo {
    width: 55px;
    margin: 0 auto;
}

.local h3 {
    font-family: var(--titulo);
    margin: 0 30px 20px 30px;
    text-align: center;
    font-size: 35px;
    font-weight: 400;
    color: #fff;
    line-height: 43px;
    letter-spacing: 0;
    transition: all 0.3s linear;
}

.local h3 span {
    font-weight: 700;
}

/************************************
*         INSTAGRAM WIDGET          *
************************************/

.instagram-widget>div {
    position: relative;
    padding-top: calc(100vw / 6);
    width: 100%;
    overflow: hidden;
}

.instagram-widget iframe {
    border: none !important;
    overflow: hidden !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/************************************
*           SELECT BONITO           *
************************************/

.selectbonito {
    position: relative;
}

.selectbonito:after {
    content: '\f078';
    font: normal normal normal 10px/1 FontAwesome;
    color: #ffffff;
    right: 0;
    position: absolute;
    pointer-events: none;

    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
    display: none;
}

.selectbonito select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Add some styling */

    display: block;
    width: 100%;
    float: right;
    background-image: none;
    -ms-word-break: normal;
    word-break: normal;
}

/* whatsapp */
.floating-icons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
}

.floating-icons a {
    display: inline-block;
    transition: all .2s ease-in-out;
}

a:hover,
a:visited,
a:link,
a:active {
    text-decoration: none;
}

.floating-icons img {
    max-width: 48px;
    height: auto;
}

.floating-icons a:hover {
    transform: scale(0.9);
}

.fondo_producto_texto {
    display: none;
}

/* ESTILOS RESPONSIVE MAQUETA AQUI */

@media (min-width: 2200px) {
    .contenedor-modal {
        height: 800px;
    }

    .contenedor-modal .texto .logo {
        width: 95px;
    }

    .contenedor-modal .antetitulo {
        font-size: 26px;
    }

    .forma_fondo_1 {
        height: 1340px;
        top: -170px;
        left: 33%;
    }

    .contenedor-modal h3 {
        font-size: 53px;
    }

    .banner .texto_slider {
        top: 86%;
        font-size: 100px;
    }

    .contenedor-modal .custom-button {
        max-width: 305px;
        height: 60px;
        font-size: 19px;
    }
}

@media (max-width: 1600px) {
    .contenedor-sidebar h2 {
        font-size: 60px !important;
        margin-left: 59px;
    }

    .contenedor-sidebar span {
        display: block;
    }

    .contenedor-sidebar {
        width: 420px;
        left: 200px;
    }

    .reservador {
        left: calc(65% - 270px);
        width: 640px;
    }
}

@media (max-width: 1500px) {
    .contenedor-sidebar {
        width: 420px;
        left: 100px;
    }
}

@media (min-width: 1300px) {
    .container {
        width: 1300px;
    }
}

@media (min-width: 1200px) {
    .custom-container {
        width: 100%;
        max-width: 1450px;
        padding: 0 35px;
    }

    .productos .custom-container {
        max-width: 1600px;
    }

    .container-lg {
        max-width: 1650px;
    }
}

@media (max-width: 1500px) {
    .caja_producto {
        height: 480px;
    }
}

@media (max-width: 1300px) {
    .splide__arrow--prev {
        left: calc(50% - 101px);
    }

    .productos_destacados .logo_container img {
        position: relative;
        top: 40px;
    }

    .contenedor-sidebar {
        left: 0;
    }

    .splide__arrow--next {
        left: calc(50% + 18px);
    }

    .productos_destacados_lg {
        display: none;
    }

    .productos_destacados_sm {
        display: block;
    }

    .productos_destacados .contenedor-superior {
        background: unset;
    }

    .productos_destacados .contenedor_galeria_sabores {
        gap: 30px;
        margin-top: -40px;
    }

    .productos_destacados .logo_container {
        width: 7%;
    }

    .productos_destacados .logo_container img {
        height: 155px !important;
    }

    .productos_destacados .galeria_sabores {
        height: 475px;
    }

    .productos_destacados .custom-button {
        margin-top: 20px;
    }

    .splide__track {
        overflow: unset !important;
    }

    .fondo_producto_texto {
        display: block;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
        /* width: 100vw; */
        width: 200%;
        left: -50%;
        margin: auto;
        height: 440px;
        top: 0px;
    }

    .productos_destacados .parrafo {
        margin: 0 50px;
    }

    .productos_destacados .custom-button.boton1 {
        display: none;
    }

    .productos_destacados .custom-button.boton2 {
        display: block;
        position: relative;
        text-align: center;
        align-content: center;
        font-size: 18px;
        max-width: 320px;
    }

    .productos_destacados .custom-button.boton2 svg {
        width: 26px;
        margin-right: 3px;
    }
}

@media (max-width: 1200px) {
    .menu-cesta {
        transform: translate(-60vw, 0px);
        left: 0;
        right: auto;
    }

    .cerrar-cesta {
        top: 10px;
        left: 10px !important;
        right: auto;
    }

    .banner:has(#primer-caja-formulario + .datos-caja-formulario.active) {
        margin-bottom: 280px;
    }

    .banner:has(#segunda-caja-formulario .datos-caja-formulario.active) {
        margin-bottom: 325px;
    }

    .banner:has(#tercer-caja-formulario .datos-caja-formulario.active) {
        margin-bottom: 130px;
    }

    .banner:has(#cuarta-caja-formulario .datos-caja-formulario.active) {
        margin-bottom: 105px;
    }

    .forma_fondo_1 {
        display: none;
    }

    .productos_destacados {
        margin-top: -150px;
    }

    .productos_destacados .contenedor_galeria_sabores {
        position: relative;
        top: -40px;
    }

    .cerrar-cesta img {
        height: 30px;
        width: 30px;
    }

    .menu-cesta .cabecera-cesta h3 {
        font-size: 20px;
        bottom: 0;
    }

    .mostrarCesta .menu-cesta {
        transform: translate(0vw, 0px);
    }

    .menu-cesta .cabecera-cesta {
        padding-top: 15px;
        height: 50px
    }

    footer {
        width: 100% !important;
    }

    .custom-container {
        padding: 0 45px;
    }

    .contenedor-modal {
        height: 600px;
    }

    .barra_ampliada .navbar-fixed-top {
        position: fixed !important;
    }

    .galeria-simple .imagen.secundaria {
        left: 115% !important;
    }

    .logo-navbar {
        margin-top: 25px;
    }

    .contenedor-modal h3 {
        font-size: 42px;
    }

    .contenedor-modal .texto .logo {
        margin: 0 auto 20px;
    }

    footer .bloque1 {
        width: 170px;
    }

    .logo-container {
        justify-self: center;
    }

    .logo-container-2 {
        margin: 0;
    }

    .navbar-header {
        justify-content: center;
    }

    .opiniones .caja_producto {
        width: 100%;
    }

    .opiniones .primera-col {
        order: 1;
    }

    footer .bloque2 {
        margin-top: 40px;
        width: 100% !important;
    }

    .productos.relative {
        width: 100% !important;
    }

    .productos2 {
        width: 100% !important;
    }

    .bloqueInformacionAf2 {
        width: 100% !important;
    }

    .opiniones {
        width: 100% !important;
    }

    footer .bloque2 {
        justify-content: center;
    }

    footer .grid-2x2 .item {
        width: 100%;
    }

    .opiniones .titulo {
        margin: 0;
    }

    footer .redes-contacto {
        flex-direction: column;
        height: 150px;
    }

    .opiniones .splide__arrows {
        right: 0;
        left: 50%;
        top: 450px;
    }

    .contenedor-opinion .google-logo {
        width: 32px;
        background-color: #fff;
        top: 94px;
        left: 97px;
        padding: 3px;
        border-radius: 50%;
    }

    .opiniones .container-texto-info {
        margin: 0;
    }

    .productos2 .productos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bloqueInformacionAf .row-align-center {
        flex-direction: column;
    }

    .bloqueInformacionAf .container-texto-info {
        margin-right: 0;
        text-align: center;
    }

    .bloqueInformacionAf2 .row-align-center {
        flex-direction: column;
    }

    .bloqueInformacionAf2 .container-texto-info {
        margin-right: 0;
        margin-left: 0;
        text-align: center;
    }

    .opiniones .row-align-center {
        flex-direction: column;
    }

    .opiniones .container-texto-info {
        margin-right: 0;
        text-align: center;
    }

    .primera-col {
        order: 2;
    }

    .segunda-col {
        order: 1;
        margin-bottom: 160px;
    }

    .antetitulo,
    .titulo {
        text-align: center;
    }

    .custom-button-hidden-md {
        display: flex;
    }

    .custom-button-visible-md {
        display: none;
    }

    .button-centred-md {
        margin: 0 auto;
    }

    .row-align-center {
        display: block;
    }

    .barra_reducida .navbar-fixed-top,
    .navbar-fixed-top {
        visibility: visible;
        opacity: 1;
    }

    .navbar-fixed-top {
        height: 52px;
        background-color: var(--light__e);
        filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
    }

    .navbar-brand {
        height: 52px;
        padding: 12px 0;
        left: 20px;
        top: 0;
    }

    .navbar-brand>img {
        height: 100%;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-toggle {
        display: block;
        align-content: center;
    }

    /* .navbar-header {
        float: left;
    } */

    /* .sidebar-wrapper-button-container {
        height: 52px;
        padding: 0;
        display: none;
    } */

    /* .sidebar-wrapper {
        margin-top: 52px;
        height: calc(100% - 52px);
    } */

    .navbar-toggle {
        height: 52px;
        width: 52px;
    }

    .navbar-toggle img {
        width: 25px;
    }

    .navbar-free-toggle {
        height: 52px;
        width: 52px;
        /* display: none; */
    }

    /* .banner {
        height: 50vh;
    } */

    #banner-slider {
        width: 100%;
    }

    .bloqueInformacion .figura {
        width: 100%;
        height: 465px;
        position: relative;
    }

    .bloqueInformacion .custom-container {
        position: relative;
    }

    .bloqueInformacion .forma_m {
        transform: translateX(-50%);
        left: 50%;
        top: auto;
        right: auto;
        max-width: none;
        /* width: auto; */
        /* height: 100%; */
        width: 100%;
        height: auto;
    }

    .faq .panel-title {
        font-size: 16px;
    }

    footer .info__content {
        flex-direction: column;
        row-gap: 20px;
    }

    footer .info__content>ul {
        max-width: 320px;
        width: 100%;
    }

    footer .info__content>ul li {
        display: flex;
        flex-direction: column;
    }

    footer .info__content>ul li div {
        justify-content: start;
    }

    footer .footer-copyright {
        column-gap: 20px;
    }

    .footer-info {
        column-gap: 20px;
    }

    footer .vl {
        height: 1px;
        width: 100%;
        max-width: 150px;
    }

    .contenedor-sidebar {
        text-align: center !important;
    }

    .contenedor-sidebar h2 {
        margin: auto 20px;
        text-align: start !important;
        font-size: 70px !important;
    }

    /* .zona_galeria_mini .bx-wrapper {
        max-width: 330px !important;
    } */

    .productos .cabecera .h1 {
        text-align: start;
    }

    .dropdown-submenu>a:after {
        display: none;
    }

    .sidebar-wrapper.left .form-control {
        height: 43px;
        padding: 6px 12px;
        color: var(--secundario);
        font-style: italic;
        background-color: #ffffff;
        border: 1px solid #91a22f;
        border-radius: 4px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sidebar-nav li a.favorito {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .caja_favorito,
    .caja_redes {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

    .caja_favorito a,
    .caja_redes a {
        padding: 0 10px !important;
        margin: 10px 0 !important;
    }

    .caja_acceso a {
        padding: 0 20px !important;
    }

    .caja_favorito a img {
        margin-left: 0 !important;
    }

    .sidebar-wrapper li img,
    .caja_redes a img {
        height: 20px;
        transition: all .2s ease-in-out;
    }

    .sidebar-wrapper.left .btn {
        padding: 6px 11px;
        height: 43px;
        border-radius: 4px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        background-color: var(--primario);
        border: 1px solid var(--primario);
    }

    .sidebar-wrapper.left .sidebar-nav li:first-child {
        padding: 10px 20px;
        text-indent: 0px;
        padding-top: 25px;
    }

    .left .sidebar-nav .multi-level li:first-child {
        padding: 0;
    }

    .left .sidebar-nav .multi-level li:last-child a {
        text-indent: 0;
    }

    .banner_interior {
        height: 250px;
    }

    .fijar {
        position: fixed;
        width: 100%;
    }

    .logo-img {
        width: 210px;
    }


    /* BANNER RESERVA */
    .banner {
        min-height: 100vh;
        height: calc(765px + 154px + (70px * 2));
    }

    .fondo-manto {
        width: 100%;
        height: 65%;
        position: absolute;
        top: 0;
        border-radius: 0;
    }

    .contenedor-sidebar {
        top: 70px;
        width: 100%;
        text-align: center;
    }

    .contenedor-sidebar h2 {
        text-align: center !important;
    }

    .opacidad-sidebar {
        border-radius: 0;
    }

    .reservador {
        width: 765px;
        top: 200px;
        left: calc(50% - 765px / 2);
    }
}

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

    .titulo {
        font-size: 45px;
        line-height: 50px;
    }

    #slider-sabores1,
    #slider-sabores1 .splide__slide {
        /* o el alto adecuado */
        width: 100%;
        overflow-x: hidden;
    }

    .productos_destacados .logo_container img {
        top: unset;
    }

    .productos_destacados .contenedor_galeria_sabores {
        position: unset;
        margin-top: -40px;
    }

    .forma_fondo_1 {
        display: none;
    }

    .productos_destacados .parrafo {
        font-size: 18px !important;
        margin: 0 !important;
    }

    .contenedor-modal {
        flex-direction: column;
        height: 700px;
    }

    .productos .cabecera .caja.flex {
        flex-direction: column;
    }

    .productos .cabecera .caja.flex .filtro-prod {
        align-self: center;
        margin: 20px 0 30px;
    }

    .cabecera .h1 {
        font-size: 40px !important;
    }

    .logo-img {
        width: 190px;
    }

    .contenedor-modal .texto {
        flex: 60%;
    }

    h3.categoria {
        margin-top: 30px;
    }

    .contenedor-modal .fondo_local {
        width: 100%;
    }

    .contenedor-modal .padre_imagen {
        flex: 40%;
    }

    .contenedor-modal h3 {
        margin: 0 60px 25px 60px;
        text-align: center;
        font-size: 35px;
    }

    .contenedor-sidebar {
        top: 30%;
    }

    .contenedor-sidebar h2 {
        text-align: center !important;
    }

    .banner {
        height: 100vh;
    }

    .fondo-manto {
        width: 100%;
        height: 65%;
        position: absolute;
        top: 0;
        border-radius: 0;
    }

    .opacidad-sidebar {
        border-radius: 0;
    }

    .contenedor-modal .texto .logo {
        margin: 10px auto 20px;
    }

    .segunda-col {
        right: 90px;
    }

    .local .custom-button {
        max-width: 190px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .local .imagen iframe {
        border-radius: 0 0 0 25px;
    }

    .local {
        flex-direction: column;
    }

    .local h3 {
        font-size: 30px;
        margin: 15px 30px 10px 30px;
    }

    .contenedor-local {
        margin-bottom: 75px;
    }

    .opiniones .segunda-col {
        right: 0;
    }

    .bloqueInformacionAf2 .segunda-col {
        right: 0;
    }

    .titulo-lg {
        font-size: 50px;
        line-height: 55px;
    }

    .parrafo {
        /* text-align: justify; */
        text-align-last: center;
    }

    .banner {
        height: 100svh;
    }

    .banner .texto_slider {
        font-size: 70px !important;
        top: 83% !important;
    }

    .banner .mouse-container {
        display: block;
    }

    .banner .texto_slider {
        font-size: 75px;
    }

    .caja_review p.parrafo {
        text-align-last: auto;
    }

    footer .links a {
        font-size: 14px;
    }

    footer .container_footer {
        flex-wrap: wrap;
    }

    .productos_destacados .logo_container {
        width: 75px;
        margin-bottom: 25px;
        top: 15px;
    }

    /* BANNER RESERVA */
    .banner {
        min-height: 100vh;
        height: calc(765px + 154px + (70px + 150px));
    }

    .fondo-manto {
        width: 100%;
        height: 65%;
        position: absolute;
        top: 0;
        border-radius: 0;
    }

    .contenedor-sidebar {
        top: 150px;
        width: 100%;
        text-align: center;
    }

    .contenedor-sidebar h2 {
        font-size: 60px !important;
        text-align: center !important;
    }

    .opacidad-sidebar {
        border-radius: 0;
    }

    .reservador {
        width: 640px;
        top: 180px;
        left: calc(50% - 640px / 2);
    }
}

@media (max-width: 767px) {
    .custom-container {
        padding: 0 25px;
    }

    .productos_destacados .galeria_sabores {
        height: 300px;
        margin-top: 0;
    }

    .antetitulo {
        font-size: 20px;
    }

    .local .texto {
        flex: 50%;
    }

    .productos_destacados .custom-button {
        max-width: 310px !important;
        height: 75px !important;
    }

    .fondo_producto_texto {
        height: 440px !important;
        top: -10px;
    }

    .productos_destacados .logo_container img {
        height: 145px !important;
    }

    .productos_destacados .logo_container {
        width: 75px;
    }

    .productos_destacados .galeria {
        margin-top: 15px !important;
    }

    .local .padre_imagen {
        flex: 50%;
    }

    .banner_interior {
        height: 300px !important;
    }

    .productos2 .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contenedor-modal h3 {
        margin: 0 20px 25px 20px;
        text-align: center;
        font-size: 26px;
        font-weight: 400;
        line-height: 42px;
    }

    .modal-content .btn-default img {
        width: 23px;
    }

    .contenedor-modal {
        flex-direction: column;
        height: 575px;
    }


    .productos .cabecera .caja.flex .filtro-prod {
        margin: 30px 0 65px;
    }

    .modal-lg {
        margin: auto;
        width: 80%;
    }

    .contenedor-modal .texto .logo {
        width: 65px;
        margin: 0 auto 20px;
    }

    .contenedor-modal .custom-button {
        max-width: 243px;
        height: 45px;
        font-size: 17px;
        border-radius: 10px;
        color: var(--primario__e);
        background-color: #dcd3c6;
        margin: 0 auto;
    }

    .contenedor-modal .antetitulo {
        font-family: var(--titulo);
        color: #fff;
        text-align: center;
        font-size: 18px;
        margin-bottom: 15px;
        margin-top: 10px;
        font-weight: 200;
    }

    .titulo {
        font-size: 35px;
        line-height: 40px;
    }

    .titulo-lg {
        font-size: 40px;
        line-height: 45px;
    }

    /* .banner .texto_slider {
        font-size: 30px;
    } */

    .eventos .project__arrow {
        padding: 0 20px;
        width: 70px;
        height: 70px;
    }

    .caja_servicio .caption {
        padding: 0 15px;
    }

    .caja_servicio-titulo {
        font-size: 18px;
        line-height: 24px;
    }

    .faq .panel-title a {
        height: 100px;
    }

    .faq .panel-title {
        font-size: 14px;
    }

    .caja_review {
        min-height: 225px;
    }

    .toggled .sidebar-wrapper {
        width: 80%;
    }

    /* .contenedor_galeria_sabores {
        margin-top: -40px !important;
    } */

    footer .footer__img {
        width: 280px;
    }

    .caja_producto {
        height: 450px !important;
    }

    .productos_destacados .antetitulo {
        font-size: 18px;
    }

    .productos_destacados .titulo {
        font-size: 40px;
    }

    .productos_destacados .parrafo {
        font-size: 18px;
        margin: 0 80px;
    }

    /* BANNER RESERVA */
    .banner {
        min-height: 100vh;
        height: calc(700px + 180px + (70px + 170px));
    }

    .fondo-manto {
        width: 100%;
        height: 65%;
        position: absolute;
        top: 0;
        border-radius: 0;
    }

    .contenedor-sidebar {
        top: 170px;
        width: 100%;
        text-align: center;
    }

    .contenedor-sidebar h2 {
        font-size: 60px !important;
        text-align: center !important;
    }

    .opacidad-sidebar {
        border-radius: 0;
    }

    .reservador {
        width: calc(100vw - (15px * 2));
        top: 180px;
        left: calc(50% - (100vw - (15px * 2)) / 2);
        padding-top: 35px;
        padding-bottom: 40px;
        min-height: 700px;
    }

    .caja-formulario {
        width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
    }

    .resultado-caja-formulario {
        width: calc(100% - 30px);
        margin: auto;
    }

    .realizar-pedido-formulario button {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .titulo-lg {
        font-size: 40px;
        line-height: 45px;
    }

    .sidebar-content img {
        width: 250px;
    }

    .fondo_producto_texto {
        height: 400px !important;
    }

    .contenedor-formulario h2 {
        font-size: 45px !important;
        margin-bottom: 30px !important;
    }

    .productos_destacados {
        margin-top: -100px;
    }

    .contenedor_galeria_sabores {
        gap: 20px !important;
    }

    .contenedor_galeria_sabores .col-xs-6 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .splide__arrows {
        position: absolute;
        top: 424px;
        width: 100%;
        height: 100%;
    }

    .splide__arrow {
        background: #fff;
    }

    .productos_destacados .titulo {
        margin: 0 20px 12px 20px;
    }

    .contenedor-sidebar h2 {
        font-size: 50px !important;
        line-height: 60px;
    }

    .productos_destacados .custom-button:before {
        background-color: var(--primario_oscuro__e);
    }

    .custom-button:hover {
        color: var(--light__e);
    }

    .productos_destacados .custom-button:hover svg path {
        fill: var(--light__e) !important;
    }

    .productos_destacados .parrafo {
        font-size: 16px !important;
        line-height: 28px !important;
        top: 330px;
        width: 100%;
        position: absolute;
    }

    .contenedor-superior .col-md-12 {
        padding-right: 0;
    }

    .productos_destacados .logo_container img {
        height: 130px !important;
    }

    .productos_destacados .logo_container {
        width: 65px;
    }

    .sidebar-wrapper .custom-button {
        width: 280px;
    }

    .segunda-col {
        right: 35px;
    }

    .contenedor-modal .texto .logo {
        width: 55px;
        margin: 0 auto 20px;
    }

    footer .grid-2x2 {
        grid-template-columns: 1fr !important;
    }

    footer .bloque2 {
        width: 75% !important;
    }

    .productos_destacados .galeria_sabores {
        height: 340px;
        margin-top: 50px;
    }

    .contenedor_galeria_sabores {
        margin-top: -40px !important;
    }

    .bloqueInformacionAf .img-container .imagen_info1 {
        object-fit: cover;
        width: 300px;
        height: 337px;
        border-radius: 0 40px 0 30px;
    }

    .bloqueInformacionAf .img-container .imagen2_info1 {
        object-fit: cover;
        width: 283px;
        height: 205px;
        top: 242px;
        left: 100px;
        border-radius: 0 15px 0 15px;
    }

    .bloqueInformacionAf .img-container .imagen3_info1 {
        object-fit: cover;
        width: 110px;
        top: 100px;
        left: 252px;
        border-radius: 0 15px 0 15px;
    }

    .bloqueInformacionAf2 .img-container .imagen_info1 {
        object-fit: cover;
        width: auto !important;
        height: 337px;
        border-radius: 0 40px 0 30px;
    }

    .segunda-col .fondo {
        width: 115% !important;
        left: -45px !important;
        top: -15px !important;
    }

    .bloqueInformacionAf2 .img-container .imagen2_info1 {
        object-fit: cover;
        width: 283px;
        height: 205px;
        top: 242px;
        left: 100px;
        border-radius: 0 15px 0 15px;
    }

    .bloqueInformacionAf2 .img-container .imagen3_info1 {
        object-fit: cover;
        width: 110px;
        top: 100px;
        left: 252px;
        border-radius: 0 15px 0 15px;
    }

    .opiniones .img-container .imagen_info1 {
        object-fit: cover;
        width: 300px;
        height: 337px;
        border-radius: 0 40px 0 30px;
    }

    .opiniones .img-container .imagen2_info1 {
        object-fit: cover;
        width: 283px;
        height: 205px;
        top: 242px;
        left: 100px;
        border-radius: 0 15px 0 15px;
    }

    .opiniones .img-container .imagen3_info1 {
        object-fit: cover;
        width: 110px;
        top: 100px;
        left: 252px;
        border-radius: 0 15px 0 15px;
    }

    .parrafo {
        font-size: 14px;
        line-height: 20px;
    }

    .sidebar-wrapper .sidebar-wrapper_rrss>div {
        font-size: 16px;
    }

    footer {
        border-top-right-radius: 0;
    }

    .footer-contactos .row-redes .red {
        font-size: 16px;
    }

    footer .info__content>ul {
        width: 90%;
    }
}

/*//ESTILOS GENERALES//*/

@media (min-width: 993px) {

    /* móviles */
    .desfijar {
        position: absolute !important;
        width: 100%;
    }
}

@media (max-width: 992px) {
    /* móviles */

    /* menu_desplegable, descomentar si es necesario para el menu de movil */

    /*
    .sidebar-nav .multi-level li a{
        text-indent: 0;
        padding-left: 40px !important;
    }
    .sidebar-nav .multi-level li:first-child{
        padding: 0;
    }
    .sidebar-nav .multi-level li:last-child a{
        text-indent: 0;
    }
    .sidebar-nav .multi-level li.active a{background-color: rgba(0, 0, 0, 0.45);}
    .sidebar-nav .multi-level li:first-child{
        padding: 0;
    }
    .sidebar-nav .multi-level li:last-child a{
        text-indent: 0;
    }
    .sidebar-nav .multi-level li.active a{
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.30);
        font-weight: 400;
    }

	.sidebar-wrapper{opacity: 1}

	.sidebar-nav .open>.dropdown-menu {
		position: static;
		background-color: transparent;
		border: none;
		box-shadow: none;
		margin: 0;
		padding: 0;
	}

	.sidebar-nav .dropaco .dropdown-menu>li>a {
		text-align: left;
		padding: 8px 20px;
		background-color: rgba(0, 0, 0, 0.25);
		white-space: initial;
		color: #ffffff;
		font-size: 15px;
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 300;
	}
    
    .sidebar-nav .multi-level li.active a {
        background-color: rgba(0, 0, 0, 0.45);
    }
*/

    /* menu_desplegable */

    /* whatsapp */

    .floating-icons {
        bottom: 1rem;
        right: 1rem;
    }

    .videos_responsive {
        width: 100%;
        float: none
    }

    .marco-contacto {
        margin-top: 40px;
    }

    .botones_carro {
        width: 100%;
        margin-top: 20px
    }

    .otras_fotos .imagen {
        height: 100px;
    }

    .foto_principal .imagen {
        width: 100%
    }

    .zona_galeria_mini .bx-wrapper .bx-prev {
        display: none;
    }

    .zona_galeria_mini .bx-wrapper .bx-next {
        display: none;
    }


    .instagram-widget>div {
        position: relative;
        padding-top: calc(100vw / 3);
    }

    .instagram-widget iframe {
        width: 200% !important;
    }

    .padre_imagen .imagen {
        background-size: contain;
    }

    .sidebar-wrapper.left .form-control {
        height: 43px;
        padding: 6px 12px;
        color: var(--secundario);
        font-style: italic;
        background-color: #ffffff;
        border: 1px solid var(--primario);
        border-radius: 4px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sidebar-nav li a.favorito {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .caja_favorito,
    .caja_redes {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .caja_favorito a,
    .caja_redes a {
        padding: 0 10px !important;
        margin: 10px 0 !important;
    }

    .caja_acceso a {
        padding: 0 20px !important;
    }

    .caja_favorito a img {
        margin-left: 0 !important;
    }

    .sidebar-wrapper li img,
    .caja_redes a img {
        height: 25px;
        transition: all .2s ease-in-out;
    }

    .sidebar-wrapper.left .sidebar-nav li:first-child {
        padding: 10px 20px;
        text-indent: 0px;
        padding-top: 25px;
    }

    .left .sidebar-nav .multi-level li:first-child {
        padding: 0;
    }

    .left .sidebar-nav .multi-level li:last-child a {
        text-indent: 0;
    }

    .left .sidebar-nav .multi-level li.active a {
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.30);
        font-weight: 400;
    }

    .quantity {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .quantity label {
        margin-bottom: 0;
    }

    .zona-mapa iframe {
        height: 350px;
    }

    .bloqueInformacionAf2 .img-container .imagen_info1 {
        width: 70%;
        margin: auto;
    }

    .segunda-col .fondo {
        top: -30px;
        width: 80%;
        z-index: 1;
        left: 65px;
    }

    .fondo_producto_texto {
        height: 430px !important;
    }
}

@media (max-width: 767px) {

    /* móviles */
    .marco-izq .col-xs-10 {
        margin-left: 0px;
    }

    .filtros {
        height: 260px;
    }

    .banner .texto_slider {
        font-size: 55px;
    }

    .banner .mouse-container {
        width: 35px;
        height: 35px;
    }

    h3.categoria {
        text-align: center;
    }

    span.precio {
        font-size: 48px;
        font-family: var(--familia_fuente);
        font-weight: 400;
    }

    span.tachado {
        font-size: 24px;
        font-family: var(--familia_fuente);
        font-weight: 400;
    }

    .precios_estilos {
        text-align: center;
        width: 100%;
    }

    .banner_interior {
        height: 200px;
    }

    .otras_fotos {
        margin-bottom: 30px
    }

    .nav-botones>li {
        float: none;
        width: 100%;
        margin-bottom: 10px
    }

    .nav-botones>li>a {
        margin: 0;
    }

    .btn-pagination {
        padding: 6px 12px;
        font-size: 12px;
        margin: 0 7px;
        border: 1px solid;
    }

    h3 {
        font-size: 20px;
    }

    .proyecto .imagen {
        background-size: cover;
    }

    .local .imagen {
        background-size: cover;
    }

    .cuadro_noticia {
        float: none;
        position: relative;
        width: 100%;
        margin: 0 auto 30px;
    }

    .instagram-widget>div {
        position: relative;
        padding-top: calc(100vw / 2);
    }

    .instagram-widget iframe {
        width: 300% !important;
    }
}

@media (max-width: 767px) {
    footer .redes-contacto {
        height: 170px;
    }
}

@media (max-width: 675px) {
    .local h3 {
        font-size: 26px;
    }

    .contenedor-opinion2 p {
        font-size: 13px !important;
    }

    .opiniones .caja_producto {
        height: 410px;
    }

    .opiniones .splide__arrows {
        top: 520px;
    }
}

@media (max-width: 500px) {
    .local h3 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .resumen-cesta .label-resumen {
        margin-top: 14px;
    }

    #productos h2 {
        margin-top: 0;
    }

    .local h3 {
        margin: 15px 30px 5px 30px;
    }

    .local .telefono {
        margin-bottom: 15px;
    }

    .local .custom-button {
        font-size: 14px;
        height: 44px;
        max-width: 180px;
    }

    .sidebar-content .fondo {
        width: 185% !important;
        height: 103% !important;
        left: -70px;
        margin: 0;
        z-index: 1;
    }

    .lista_productos>div {
        margin-bottom: 20px;
    }

    .sidebar-content img {
        width: 235px !important;
        margin: 30px 0 20px;
    }

    .sidebar-wrapper-button-container {
        height: 70px;
    }

    .sidebar-nav li a {
        font-size: 17px;
    }

    footer .footer__img {
        width: 220px;
    }

    .sidebar-wrapper .custom-button {
        height: 65px !important;
    }

    .sidebar-wrapper .contenedor-redes {
        position: relative;
        bottom: 0;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .caja_producto {
        height: 375px !important;
    }

    #opiniones .caja_producto {
        height: 420px !important;
    }

    .productos1 .caja_producto {
        height: 350px !important;
    }

    .productos-interior .producto .img-container img {
        width: 100%;
        height: 275px;
        border-radius: 0 20px 0 20px;
        transition: all 0.3s linear;
    }

    .productos2 .productos-grid {
        row-gap: 15px;
    }
}