@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');


:root {
    --primario: #262626;
    --secundario: #0350c5;
    --transparencia: #171717ab;
    --iconos: #0350c5;
    --light__e: #fff;
    --familia_fuente: 'Rajdhani', sans-serif;
    --titulo: 'Rajdhani', sans-serif;
    --texto: 'Open Sans', sans-serif;
}

body {
    /* font-family: var(--familia_fuente); */
}

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

h1 {
    color: #323232 !important;
    font-family: var(--familia_fuente);
}

.dropdown-menu>.active>a {
    background-color: var(--secundario) !important;
}

p {
    color: #696969;
    font-size: 16px;
    font-family: var(--texto);
}

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

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

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

.h-100 {
    height: 100%;
}

.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;
}

.m-auto {
    margin: auto;
}

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

.titulo {
    font-size: 50px;
    line-height: 60px;
    font-family: var(--titulo);
    font-weight: 700;
    color: #343434;
    margin-bottom: 0;
    margin-top: 0;
}

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

.titulo-sm {
    font-size: 30px;
    line-height: 35px;
}

.antetitulo {
    color: #0e55c7;
    font-family: var(--titulo);
    font-size: 19px;
    font-weight: 600;
}

.parrafo {
    font-size: 16px;
    line-height: 32px;
    color: #000;
    margin-bottom: 0;
}

.ventana_cookie p {
    color: #000 !important;
}

.btn.btn.btn-primary {
    border: 2px solid transparent;
}

.btn.btn-primary::before {
    background-color: var(--light__e);
    border-radius: inherit;
}

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

.text-secundario {
    color: #a3c5d9;
}

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

.text-shadow {
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.45));
}

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

.navbar-toggle {
    margin: 0;
    padding: 15px;
    border-radius: 0;
    border: unset;
    height: 52px;
    width: 52px;
}

.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;
}

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

.block {
    display: block;
}

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

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

.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;
}

.limitar {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-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;
}

.animation2 {
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms 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);
}

.custom-button {
    width: 320px;
    height: 70px;
    border-radius: 50px;
    background-color: transparent;
    font-size: 16px;
    border: 2px solid transparent;
    background-color: var(--secundario);
    color: #000;
    column-gap: 10px;
    z-index: 1;
}

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

.custom-button:hover img,
.custom-button:active img,
.custom-button:focus img {
    filter: brightness(0) saturate(100%) invert(29%) sepia(65%) saturate(1046%) hue-rotate(187deg) brightness(91%) contrast(95%);
}

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

.custom-button img {
    width: 25px;
    transition: filter 0.3s linear;
}

.custom-button-lg {
    width: 280px;
    height: 70px;
    border-color: var(--light__e);
    color: var(--light__e);
    border-radius: 35px;
}

.custom-button-lg::before {
    background-color: var(--light__e);
}

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

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

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

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

/* CABECERA */
.cabecera .img path {
    fill: #fff;
}

.cabecera .navbar-fixed-top {
    z-index: 4;
}

.cabecera .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    left: 42px;
}

.cabecera .logo_movil {
    display: none !important;
    z-index: 4;

}

.cabecera .logo_escritorio {
    width: 370px;
    display: flex !important;
    z-index: 4;
    top: 1;
}

.cabecera.barra_reducida .logo_escritorio {
    position: absolute;
    top: 13px;
}

.cabecera.barra_ampliada .navbar-brand {
    height: 101px;
}

.cabecera.barra_reducida .navbar-brand {
    height: 80px;
}

.cabecera .navbar-brand>img {
    height: 100%;
    object-fit: contain;
    object-position: left;
    width: 351px;
}

.cabecera.barra_ampliada .navbar-brand>img {
    height: 100%;
    object-fit: contain;
    object-position: left;
    width: 270px;
    position: relative;
    top: -15px;
}

.cabecera.barra_reducida .navbar-brand>img {
    width: 250px;
    position: relative;
    top: 0;
}

.cabecera .navbar-nav {
    margin-right: 15px;
}

.cabecera .navbar-nav>li>a {
    font-size: 16px;
    font-family: var(--titulo);
    color: #FFF;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    transition: height 0.3s;
}

.cabecera.barra_reducida .navbar-nav>li>a {
    height: 80px;
}

.cabecera.barra_ampliada .navbar-nav>li>a {
    height: 97px;
}

.nav>li>a:focus,
.nav>li>a:active,
.nav>li>a:hover,
.nav>li>a.active,
.nav>li.active>a {
    background-color: var(--primario);
    border-bottom: 5px solid #0350c5;
    transform: skewX(-5deg);
    transform-origin: center center;
}

.cabecera nav .navbar-nav>.active>a,
.cabecera nav .navbar-nav>.active>a:focus,
.cabecera nav .navbar-nav>.active>a:hover {
    font-weight: 700;
}

.cabecera nav .navbar-nav>li.active .hover-effect:before,
.cabecera nav .navbar-nav>li .hover-effect:hover:before,
.cabecera nav .navbar-nav>li .hover-effect:focus:before,
.cabecera nav .navbar-nav>li .hover-effect:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.cabecera nav .navbar-nav>li>.hover-effect:before {
    border-bottom: 5px solid var(--primario_oscuro);
}

.nav .open>a {
    background-color: var(--primario);
    border-bottom: 5px solid #0350c5;
    transform: skewX(-5deg);
    transform-origin: center center;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: var(--primario);
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    background-color: #0350c5;
    color: #fff;
}

.dropdown-menu {
    padding: 0;
    border: none;
}

.cabecera .superior {
    height: 37px;
    width: 100%;
    background-color: var(--secundario);
    font-size: 14px;
    color: #c5c5c5;
}

.cabecera .superior li a span {
    display: flex;
}

.cabecera .superior li a span {
    display: flex;
}

.cabecera.barra_ampliada .superior {
    margin-top: 0;
}

.cabecera.barra_reducida .superior {
    margin-top: -37px;
}

.cabecera .superior .alineado {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    gap: 20px;
    padding: 0 30px;
    /* color: var(--primario); */
    color: #fff;
    background: #262626;
}

.cabecera .superior .alineado a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* color: #333; */
    color: #fff;
    gap: 7px;
    font-size: 14px;
}

.cabecera .superior .alineado a:hover {
    text-shadow: 0 0 1px;
    text-decoration: none;
}

.cabecera .superior .alineado a:hover .img {
    filter: drop-shadow(0 0 1px #FFF);
}

.cabecera .superior .img {
    object-fit: cover;
    width: 20px;
}

.cabecera~.sidebar-wrapper {
    position: fixed;
    top: 0;
    width: 0;
    height: 100%;
    max-width: 250px;
    margin-top: 52px;
    overflow-y: auto;
    background-color: #171717fc;
}

.cabecera~.sidebar-wrapper.right {
    left: auto;
    margin-left: 0;
    right: 0%;
    margin-right: -50%;
    top: -1px;
}

.cabecera~.sidebar-nav {
    margin-bottom: 0;
}

.cabecera .transparent {
    position: absolute;
    background: var(--transparencia);
}

.cabecera.barra_ampliada .transparent {
    height: calc(100% - 40px);
    width: 100%;
    left: 0;
}

.cabecera.barra_reducida .transparent {
    height: 100%;
    width: 100%;
}

.cabecera .sin-fixed {
    z-index: 4;
    position: absolute;
    top: 0;
    width: 100%;
}

.cabecera.barra_ampliada .forma {
    background: #262626;
    background: linear-gradient(90deg, rgba(38, 38, 38, 1) 46%, rgba(34, 34, 34, 0) 100%);
    height: 98px;
    width: 351px;
    position: absolute;
    z-index: 1;
}

.cabecera.barra_reducida .forma {
    background: #262626;
    background: linear-gradient(90deg, rgba(38, 38, 38, 1) 46%, rgba(34, 34, 34, 0) 100%);
    height: 80px;
    width: 351px;
    position: absolute;
    z-index: 1;
}

/* BANNER */
.banner {
    height: 900px;
    z-index: 1;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner .degradado {
    background: #314776;
    background: linear-gradient(180deg, rgba(66, 95, 157, 1) 54%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
}

.banner-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    aspect-ratio: 16/9;
}

.banner .container {
    z-index: 6;
}

.banner .banner-row {
    column-gap: 30px;
}

.banner .banner-row-item {
    width: 93px;
    aspect-ratio: 1/1;
}

.banner .contenedores-banner {
    margin: 0 auto;
    width: 100%;
}

.banner .custom-container {
    position: absolute;
    width: 100%;
    background-color: #17171754;
    bottom: 0;
    padding: 31px 0px;
    font-family: var(--familia_fuente);
}

.banner .custom-container p {
    margin: 0;
    font-size: 24px;
}

.banner .contacto_banner {
    color: #fff;
    border: 1px solid #fff;
    padding: 14px 35px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    transition: 0.5s all linear;
    font-weight: 500;
    font-size: 15px;
}

.banner .contacto_banner:hover {
    color: #fff;
    border: 1px solid #141414;
    background-color: #141414;
}

.banner .contacto_banner2 {
    color: #fff;
    border: 1px solid #141414;
    background-color: #141414;
    padding: 14px 35px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 20px;
    transition: 0.5s all linear;
    font-weight: 500;
    font-size: 15px;
}

.banner .contacto_banner2:hover {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.banner .linea_inferior {
    gap: 20px;
}

.banner .linea_div {
    gap: 20px;
}

.banner .span_banner>img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* servicios */
.servicios {}

/* .servicios .fondo {
    opacity: 0.149;
} */

.servicios .splide__arrow {
    width: 70px;
    height: 70px;
    padding: 0 20px;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid var(--primario__e);
    opacity: 1;
}

.servicios .splide__arrow:hover {
    opacity: 0.8;
}

.servicios .splide__arrow img {
    width: 100%;
}

.servicios .splide__arrow--prev {
    left: calc(-70px - 40px);
}

.servicios .splide__arrow--next img {
    transform: scale(-1);
}

.servicios .splide__arrow--next {
    right: calc(-70px - 40px);
}

.splide__pagination {
    position: relative !important;
    top: 40px;
}

.servicios .caja_servicio {
    width: 100%;
    height: 100%;
    padding: 25px 30px;
    aspect-ratio: 8/11;
    border-radius: 5px;
    align-content: center;
    background-size: cover;
    transition: all 0.3s linear;
    filter: grayscale(1);
    background-position: center;
    font-family: var(--familia_fuente);
}

.servicios h3,
.div_icono {
    color: #fff;
    z-index: 1;
    position: relative;
    font-weight: 6 00;
    font-size: 22px;
}

.opacidad-servicios {
    background-color: #000000ad;
    opacity: 0.4;
    border-radius: 5px;
    transition: all linear 0.3s;
}

.servicios .caja_servicio:hover .opacidad-servicios {
    background: #0d4eb8;
    background: linear-gradient(180deg, rgba(13, 78, 184, 0.87) 54%, rgba(0, 0, 0, 0.73) 100%);
}

.servicios .caja_servicio:hover {
    filter: none;
}

.servicios .div_icono {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background-image: url("/template/estandar/images/Forma-icono-fondo.svg");
    background-position: center center;
    background-repeat: no-repeat;
}

.servicios .icono-img {
    width: 100%;
    aspect-ratio: 1/1;
    padding: 25px;
}

.servicios .text-primario {
    transition: all 0.2s linear;
}


.servicios .caja_servicio:hover .opacidad-servicios {
    opacity: 0.7;
}

.servicios .caja_servicio:hover .img-container img,
.servicios .caja_servicio:hover .img-container .img-background {
    filter: brightness(0) invert(1);
}

.servicios .caja_servicio:hover p.parrafo,
.servicios .caja_servicio:hover .titulo {
    color: var(--light__e);
}

.servicios .img-container {
    width: 146px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.servicios .img-container img {
    padding: 26px;
}

.servicios .img-container .img-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.047;
}

.servicios .forma1_servicios {
    position: absolute;
    z-index: 2;
    bottom: -2px;
    height: 101%;
    left: -2px;
}

.servicios .forma2_servicios {
    position: absolute;
    z-index: 2;
    bottom: -2px;
    height: 101%;
    right: -2px;
    transform: scaleX(-1) scaleY(-1);
}

.servicios .boton_servicios {
    color: var(--iconos);
    border: 1px solid var(--iconos);
    background-color: transparent;
    padding: 16px 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 210px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    /* font-weight: 500; */
    font-size: 12px;
}

.servicios .boton_servicios::before {
    background-color: var(--iconos);
    border: 1px solid var(--color_boton);
}

.servicios .hover-effect:focus:before,
.servicios .hover-effect:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.servicios .boton_servicios:focus,
.servicios .boton_servicios:active,
.servicios .boton_servicios:hover {
    color: #fff;
    background-color: var(--iconos);
}

/* PARALLAX */
.parallax {
    padding: 195px 0;
    position: relative;
    background-color: #232323;
}

.div-forma-parallax {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-80px, -50%);
    z-index: 2;
    height: 100%;
    overflow: hidden;
}

.div-forma-parallax img {
    width: auto;
    height: 100%;
}

.div-fondo-parallax {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-40px, -50%);
    z-index: 2;
    height: 90%;
    overflow: hidden;
}

.div-fondo-parallax img {
    width: auto;
    height: 100%;
}

.parallax .fondo {
    top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 50%;
}

.parallax .boton-primario {
    width: 170px;
    height: 54px;
    font-size: 13px;
    color: #FFF;
    /* font-weight: 500; */
    border: 1px solid #fff;
    background-color: var(--color_boton);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-family: var(--texto);
}

.parallax .boton-primario::before {
    background-color: #FFF;
    border: 1px solid var(--color_boton);
}

.parallax .hover-effect:focus:before,
.parallax .hover-effect:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.parallax .boton-primario:focus,
.parallax .boton-primario:active,
.parallax .boton-primario:hover {
    color: var(--color_boton);
}

.parallax .titulo {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--titulo);
    margin-bottom: 25px;
}

.parallax .parrafo {
    font-size: 15px;
    /* font-weight: 500; */
    font-family: var(--texto);
    width: 100%;
    margin-bottom: 40px;
    color: #cecece;
    line-height: 27px;
}


/* bloqueTexto */
.bloqueTexto {
    background-color: #f5f5f5;
}

.bloqueTexto .img-container {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 7px;
    aspect-ratio: 1/1;
}

.bloqueTexto .img-container>img {
    width: 97%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 auto;
}


.bloqueTexto_forma {
    width: 100%;
    aspect-ratio: 1/1;
    z-index: 1;
}

.bloqueTexto h2 {
    color: #323232;
}

.bloqueTexto .boton-primario {
    width: 180px;
    height: 54px;
    font-size: 12px;
    color: #fff;
    /* font-weight: 500; */
    border: 1px solid #0350c5;
    background-color: #0350c5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bloqueTexto .boton-primario::before {
    background-color: #FFF;
    border: 1px solid var(--color_boton);
}

.bloqueTexto .hover-effect:focus:before,
.bloqueTexto .hover-effect:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.bloqueTexto .boton-primario:focus,
.bloqueTexto .boton-primario:active,
.bloqueTexto .boton-primario:hover {
    color: var(--iconos);
    background-color: #fff;
    border: 1px solid var(--iconos);
}

.bloqueTexto .antetitulo2{
    color: #0e55c7;
    font-size: 17px;
    font-weight: 500;
    font-family: var(--texto);
}

.bloqueTexto .parrafo{
    color: #595959 !important;
    line-height: 28px;
    font-size: 15px;
}

/* PARALLAX B  */
.parallaxB {
    padding: 120px 0 120px 0;
    position: relative;
}

.parallaxB .fondo {
    top: 0;
    right: 0;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.parallaxB .opacidad {
    background: linear-gradient(270deg, rgb(39 70 137 / 97%) 20%, rgb(0 0 0) 100%);
    top: 0;
    opacity: 0.9;
}

.parallaxB .titulo {
    font-size: 55px;
    color: #FFF;
    font-weight: 700;
    font-family: var(--titulo);
    margin-bottom: 30px;
    filter: drop-shadow(0 2px 2.5px rgba(0, 0, 0, 0.45));
}

.parallaxB .parrafo {
    font-size: 16px;
    color: #FFF;
    font-weight: 500;
    width: 90%;
    margin: 0 auto;
    font-family: var(--texto);
}

.parallaxB .boton-primario {
    width: 215px;
    height: 54px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    border: 1px solid #fff;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-family: var(--texto);
}






.parallaxB .boton-primario {
    width: 170px;
    height: 54px;
    font-size: 13px;
    color: #FFF;
    /* font-weight: 500; */
    border: 1px solid #fff;
    background-color: var(--color_boton);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-family: var(--texto);
}

.parallaxB .boton-primario::before {
    background-color: #FFF;
    border: 1px solid var(--color_boton);
}

.parallaxB .hover-effect:focus:before,
.parallaxB .hover-effect:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.parallaxB .boton-primario:focus,
.parallaxB .boton-primario:active,
.parallaxB .boton-primario:hover {
    color: var(--color_boton);
}






.div-fondo-parallaxB {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(40px, -50%);
    z-index: 0;
    height: 90%;
    overflow: hidden;
}

.div-fondo-parallaxB img {
    width: auto;
    height: 100%;
}

/* Bloque de Preguntas Frecuentes */
#faq {
    padding-top: 150px;
    margin-top: -150px;
}

.faqAa .img-container {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 7px;
    aspect-ratio: 7/8;
}

.faqAa .img-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    border-radius: 20px;
}

.faqAa_forma {
    width: 100%;
    aspect-ratio: 7/8;
    z-index: 1;
}

.faqAa .cabecera_faqAa {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

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

.faqAa .titulo {
    text-align: left;
    padding-left: 30px;
}

.faqAa .panel-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px 20px;
    width: 100%;
}

.faqAa .panel-group .panel {
    /* background-color: transparent;
    filter: drop-shadow(0 2px 15px rgba(0, 0, 0, 0.06)); */
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border: unset;
    position: relative;
    /* width: calc(50% - 10px); */
}

.faqAa .panel-default>.panel-heading {
    background-color: #f8f8f8;
    padding: 0;
    border-radius: 7px;
    transition: ease 0.1s border-radius !important;
}

.faqAa .panel-group .panel:has(> .collapse.in) .panel-heading,
.faqAa .panel-group .panel:has(> .collapsing) .panel-heading {
    z-index: 1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: ease 0s border-radius;
}

.faqAa .panel-title {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--titulo);
    color: var(--primario);
}

.faqAa .panel-title a {
    border-radius: 10px;
    padding: 0 30px;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    gap: 0 10px;

    font-family: var(--texto);
    font-weight: 700;
    font-size: 16px;
}

.faqAa .panel-body p {
    color: var(--primario__e);
}

.faqAa .drop {
    width: 33px;
    height: 33px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: var(--iconos);
    flex-shrink: 0;
    transition: transform ease 0.3s;
}

.faqAa .drop img {
    width: 100%;
    padding: 10px;
    object-fit: contain;
    transform: rotate(180deg);
}

.faqAa .centrado.collapsed .drop>img {
    transform: rotate(0);
}


.faqAa .panel-collapse {
    /* position: absolute; */
    background-color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.faqAa .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: unset;
    padding: 25px 30px;
    padding-top: 10px;
    max-height: 400px;
    height: fit-content;
    font-family: var(--texto);
    background-color: #f8f8f8;
}

.faqAa .custom-button {
    background-color: var(--secundario);
    font-weight: 500;
    height: 60px;
}

.faqAa .custom-button::before {
    background-color: var(--light__e);
}

.faqAa .custom-button:hover img {
    filter: none;
}

/* Responsive: columnas apiladas en móvil */
@media (max-width: 900px) {
    .info-flex {
        flex-direction: column;
        gap: 0;
    }

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

    .info-col {
        width: 100%;
        min-width: unset;
    }

    .contenedor-img-informativo {
        width: 90px;
        height: 90%;
    }

    .info-col-right {
        width: 80% !important;
        margin-top: 80px !important;
    }

    .contenedor-imagenes-informativo {
        justify-content: center;
    }
}

/* TARIFAS */
.consulta {
    padding: 30px;
    padding-top: 0px;
    padding-bottom: 60px
}

.consulta .caja_titulo {
    background-color: var(--iconos);
    padding: 20px 10px;
}

.consulta .proyecto-name {
    margin: 0px;
    color: #fff;
    font-family: var(--titulo);
    font-size: 24px;
    font-weight: 500;
    text-align: center
}

.consulta .caja_precio {
    background-color: #eeeeee;
    padding: 10px;
        text-align: center;
}

.consulta .caja_imagen img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.consulta .precio {
    margin: 0px;
    text-align: center;
    font-size: 41px;
    line-height: 35px;
}

.consulta .precio small {
    font-size: 14px
}

.consulta .caja_listado {
    /* padding: 10px 40px; */
    padding: 25px 30px;
    padding-bottom: 0;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0px !important;
        background: #eeeeee;
}

.consulta .caja_listado ul {
    list-style: none;
    padding: 0px;
    margin: 0px
}

.consulta .caja_listado li {
    margin: 7.5px 0px
}

.consulta .caja_listado li .fa-check {
    color: var(--primario);
}

.consulta .caja_pie {
    background-color: #eeeeee;
    padding: 25px
}

.consulta .caja_pie p {
    margin: 0px
}

/* FOOTER */
.boton-cerrar-reducido {
    display: none !important;
    opacity: 0;
}

.boton-cerrar-reducido img {
    height: 30px;
}

.aparece {
    display: block !important;
    position: absolute;
    right: 0px;
    bottom: 0px;
    opacity: 1;
    width: 100%;
    height: 100%;
    align-content: center;
    background-color: var(--primario);
    transition: all 400ms linear;
}

.desaparece {
    display: none;
    opacity: 0;
}

.sidebar-wrapper .open>.dropdown-menu {
    /* top: -2px !important; */
    background-color: var(--primario);
}

footer {
    background-color: #181818;
    color: #fff;

    height: 420px;
}

.color-fondo {
    background: #314776;
    /* background: linear-gradient(0deg, rgba(49, 71, 118, 0.87) 17%, rgba(0, 0, 0, 0.86) 100%); */
    background: linear-gradient(0deg, rgb(31 69 152 / 94%) 17%, rgba(0, 0, 0, 0.86) 100%);
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.footer-info {
    display: flex;
    align-items: center;
    /* gap: 35px 85px; */
    gap: 35px 70px;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 300px;
    align-content: center;
    flex-wrap: wrap;
}

.footer-info ul {
    align-self: self-start;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
    gap: 30px;
}

.footer-img {
    /* width: 180px; */
    width: 210px;
    height: auto;
    z-index: 1;
}

.footer-img img {
    width: 100%;
}

footer .linea_footer {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 0) 10%, rgba(3, 80, 197, 1) 50%, rgba(0, 212, 255, 0) 90%);
    height: 1.5px;
    z-index: 1;
    position: relative;
}

.footer-contactos span img {
    width: 20px;
}

footer li {
    /* padding: 10px; */
    padding: 20px;
}

.footer-grupo a {
    transition: transform 0.1s ease;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #a1d7ff !important;
}

.footer-grupo a img {
    width: 20px;
}

.footer-grupo a:hover {
    transform: scale(1.25);
}

footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    justify-content: center;
    z-index: 1;
    font-size: 15px;
    padding: 10px;
    font-family: var(--texto);
}

footer .footer-container {
    /* height: 430px; */
    height: auto;
    align-content: end;
    bottom: 0;
    position: relative;
}

footer .footer-links a {
    color: #fff;
}

footer .footer-copyright a:hover {
    color: #fff;
}

footer .footer-copyright {
    color: #fff;
    gap: 20px 60px;
    flex-flow: wrap;
    padding: 25px 5px;
    background-color: #181818;
    font-size: 13px;
    z-index: 2;
    top: 351px;
}

footer .footer-web {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    margin: 0 auto;
    color: #b8b8b8;
}

footer .web_laspalmas a {
    color: #b8b8b8;
    font-weight: 500;
}

footer .logo_footer {
    position: relative;
}

footer .span_pie {
    padding: 10px;
    margin-right: 15px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: var(--iconos);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
}

footer .datos_pie {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-family: var(--texto);
    font-weight: 600;
}

footer .footer-clip {
    /* clip-path: polygon(0 0, 93% 0, 98% 100%, 0% 100%); */
    clip-path: polygon(0 0, 92% 0, 98% 87%, 0% 100%);
    background-image: url(/template/estandar/images/img-pie.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    bottom: 0;
    width: 100%;
    /* height: 500px; */
    height: 465px;
}

footer .p_pie {
    padding-left: 48px;
    font-size: 24px;
    color: #fff;
    font-family: var(--familia_fuente);
}

/*********************************
*        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%;
}

/* 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;
}

/* -- 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;
    font-family: var(--texto);
    font-size: 12px;
    color: #cecece;
}

.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%);
}

/* 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;
        }
    }

    & .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;
}

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

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

/*FIN ESTILOS CKEDITOR*/

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

#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
}

.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
}

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

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

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

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

.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;

    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: 34px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
}

.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;
    width: 210px;
    height: 54px;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--texto);
    text-transform: uppercase;
    border: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all linear;
}

.btn-lg.btn-corporativo {
    padding: 18px 30px;

}

.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
}

.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;
}

/*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: var(--iconos);
    color: #fff
}

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

.btn-corporativo3:hover,
.btn-corporativo3:focus,
.btn-corporativo3:active {
    background-color: var(--iconos);
    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
}

.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;
}

/***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: contain;
}

.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;
}

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

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

.resumen-cesta {
    padding: 20px
}

.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
}

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

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

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

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

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

.menu-cesta {
    position: fixed;
    top: 0;
    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: 30px;
    font-family: var(--familia_fuente);
    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
}

.articulo {
    position: relative
}

.articulo img {
    width: 100%;
    height: 115px;
    object-fit: contain
}

.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-cesta.toogled,
#manto-movil.toogled {
    z-index: 30
}

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 {
    transform: translate(0px, 0px);
}

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

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

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

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

    .cerrar-cesta {
        top: 10px;
        right: 10px
    }

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

    .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: #073d95;
}

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

.bloque_cabecera .bloque_interior {
    background-color: #0d4eb80f;
    padding: 30px 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%
}

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

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

.bloque_imagen_lista h4 {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--familia_fuente);
    color: #073d95;
    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: #073d95;
}

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

.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: #0d4eb80f;
    padding: 20px;
    margin-bottom: 40px
}

.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: #073d95;
}

.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: #073d95;
}

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

.bloque_imagenes img {
    width: 100%
}

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


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

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

/************************************
*              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;
    position: relative;
    overflow: hidden;
}

.bloque.principal.noticia .imagen {
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.bloque.principal.noticia:hover .imagen {
    transform: scale(1.1);
}


.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 #272727;
    background-color: #272727;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    z-index: 2;
}

.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: #fff;
    font-family: var(--familia_fuente);
    padding-left: 5px;
}

.noticia .post_details {
    color: #fff;
    background-color: var(--transparencia);
    padding: 10px;
    text-align: right;
    font-size: 13px;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.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: #f4f6fb;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    z-index: 2;
}

.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: #0d4eb80f;
    max-width: 400px;
    float: left;
    margin: 0px 20px 12px 0px;
    border-radius: 10px;
}

.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: #0d4eb80f;
    padding: 20px;
    border-radius: 10px;
}

.marco-contacto h3 {
    margin-top: 0px
}

.widget-noticias {
    background-color: #0d4eb80f;
    border-radius: 10px;
}

.marco-contacto .input-group-addon {
    background-color: var(--primario);
    border-color: var(--primario);
    color: #fff
}

.marco-contacto .form-control {
    border-color: #0d4eb83b;
}

.input-group .form-control {
    z-index: 0;
}

.zona-mapa iframe {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.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;
    background-size: cover;
    overflow: hidden;
    background-position: 0px 40%;
}

.banner-interiores .degradado {
    background: #314776;
    background: linear-gradient(180deg, rgba(66, 95, 157, 1) 54%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
}

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

.banner-interiores .linea_blanca{
    position: absolute;
    width: 100%;
    background-color: #17171754;
    bottom: 0;
    padding: 5px 0px;
}

.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: 112px;
    background-color: var(--transparencia);
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    padding: 0;
}

.producto-detalle .filtros {
    height: 44px;
}

.filtros.interiores {
    background: #f9f9f9;
}

.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;
}

/************************************
*             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
}

.modal-header {
    background-color: var(--primario);
    color: #fff;
}

.modal-content {
    border: 0;
}

.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;
}

/************************************
*         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);
}

/* WEB RESPONSIVE */
@media (min-width: 1395px) {
    .parallax .container-parallax {
        left: 3pc;
    }
}

@media (max-width: 1550px) {
    .cabecera.barra_ampliada .forma img {
        position: absolute;
        top: 0px;
        /* margin-left: -100px; */
        margin-left: -256px;
        width: 530px;
    }

    .cabecera.barra_ampliada .navbar-brand>img {
        width: 270px;
    }

    .cabecera.barra_reducida .navbar-brand>img {
        width: 250px;
    }

    .forma img {
        position: absolute;
        width: 444px;
        top: -30px;
    }

    .cabecera .navbar-nav {
        margin-right: 0;
    }

    .cabecera .navbar-nav>li>a {
        padding: 20px 12.5px;
        font-size: 15px;
    }
}


/*//ESTILOS GENERALES//*/
@media (max-width: 1200px) {

    .cabecera .sin-fixed{
        position: fixed;
    }

    .dropdown-menu {
        width: 100%;
        position: relative;
    }

    .dropdown-backdrop{
        display: none;
    }

    /* CABECERA */
    

    .cabecera .logo_escritorio {
        display: none !important;

    }

    .cabecera .logo_movil {
        display: flex !important;
    }

    .cabecera .forma {
        display: none;
    }

    .cabecera.barra_ampliada .navbar-brand>img {
        top: 0;
    }

    .cabecera.barra_reducida .navbar-brand,
    .cabecera.barra_ampliada .navbar-brand {
        height: 52px;
        left: 20px;
    }

    .cabecera.barra_reducida .navbar-brand>img,
    .cabecera.barra_ampliada .navbar-brand>img {
        width: auto;
        height: 70%;
    }

    .cabecera .navbar-header {
        background: var(--transparencia);
        position: relative;
        float: none;
    }

    .cabecera .navbar-toggle {
        display: block;
        margin: 0;
        padding: 19px 15px;
        background-color: var(--primario);
        border-radius: 0;
        border: unset;
    }

    .cabecera .navbar-toggle:focus,
    .cabecera .navbar-toggle:hover {
        background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), var(--primario);
    }

    .cabecera .navbar-toggle {
        position: absolute;
    }

    .cabecera .left-toggle {
        left: 0
    }

    .cabecera .right-toggle {
        right: 0
    }

    .toggled .cabecera .right-toggle:focus,
    .toggled .cabecera .right-toggle:hover,
    .toggled .cabecera .right-toggle {
        background-color: var(--primario);
    }

    .cabecera .navbar-toggle .icon-bar {
        background-color: #FFF;
    }

    .toggled .cabecera .navbar-toggle .icon-bar {
        background-color: #FFF;
    }

    .cabecera .navbar-collapse.collapse {
        display: none !important;
    }

    .cabecera .navbar-nav>li {
        float: none;
    }

    #menu-lateral.toggled .cabecera~.sidebar-wrapper {
        display: block;
        width: 33%
    }

    #menu-lateral.toggled.toggle-right .cabecera~.sidebar-wrapper.right {
        right: 50%;
    }

    #menu-lateral.toggled.toggle-left .cabecera~.sidebar-wrapper.left {
        left: 50%
    }

    .cabecera~.sidebar-wrapper.left {
        right: 0;
        margin-left: -50%;
    }

    .sidebar-nav {
        padding-left: 0;
    }

    .cabecera~.sidebar-wrapper {
        margin-top: 52px;
        opacity: 1;
        z-index: 4;
    }

    .cabecera~.sidebar-wrapper .sidebar-nav li a {
        display: block;
        text-indent: 20px;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        font-family: var(--titulo);
        padding: 20px 10px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        transition: all .2s ease-in-out;
    }

    .cabecera~.sidebar-wrapper.left .sidebar-nav li a {
        text-align: right;
        padding-right: 25px
    }

    .cabecera~.sidebar-wrapper .sidebar-nav li.active a,
    .cabecera~.sidebar-wrapper .sidebar-nav li a:hover {
        background-color: rgba(255, 255, 255, 0.15);
        color: #fff !important;
    }

    .cabecera~.sidebar-wrapper .sidebar-nav>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }

    .cabecera~.sidebar-wrapper .sidebar-nav>li:last-child {
        border-bottom: none;
    }

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

    .cabecera~.sidebar-wrapper .sidebar-nav li span {
        margin-right: 10px;
    }

    /* BANNER */

    /* ----- */
    .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%;
    }

    /* PARALLAX */
    .parallax .div-fondo-parallax {
        transform: translate(-5px, -50%);
        height: 100%;
    }

    .parallax .div-fondo-parallax img {
        /* width: 90%; */
        width: 73%;
        float: right;
        padding-right: 20px;
    }

    .parallax .container-parallax {
        left: 1pc;
    }

    /* FOOTER */
    footer .footer-web {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    footer .footer-container {
        /* height: 410px; */
        height: auto;
    }

    footer .footer-clip {
        height: 460px;
    }

    /* EXTRAS */
    .consulta .caja_listado{
        height: 250px;
        padding: 25px 17px;
    }
}

@media (min-width: 993px) {

    /* móviles */
    .desfijar {
        position: absolute !important;
        width: 100%;
    }
}

@media (max-width: 992px) {
        /* EXTRAS */
    .consulta .caja_listado{
        height: 390px;
        padding: 25px 17px;
    }

    .faqAa .titulo{
        text-align: center;
        padding-left: 0;
    }
    /* 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 */

    footer {
        height: 450px !important;
    }

    .footer-clip {
        height: 530px !important;
    }

    .footer-container {
        height: 440px !important;
    }



    /* 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;
    }

    /* WEB */
    /* BLOQUE DE TEXTO */
    .bloqueTexto .columnaA {
        text-align: center;
    }

    .bloqueTexto .columnaB {
        display: flex;
        justify-content: center;
    }

    .bloqueTexto .bloqueTexto_forma {
        width: 75%;
    }

    .bloqueTexto .img-container {
        width: 75%;
        left: -2px;
    }

    /* PARALLAX */
    .parallax .div-forma-parallax {
        display: none;
    }

    .parallax .fondo {
        width: 100%;
        position: absolute;
        z-index: -1;
        height: auto;
    }

    .parallax .div-fondo-parallax {
        transform: translate(0, -50%);
        height: 100%;
    }

    .parallax .div-fondo-parallax img {
        width: auto;
    }

    .parallax {
        padding: 150px 0;
        background-color: #232323c7;
    }

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

    .parallax .parrafo {
        margin: 0 auto;
    }

    /* PARALLAX B */
    .parallaxB {
        padding: 150px 0 150px 0;
    }

    /* FAQ */
    .faqAa .columnaA {
        order: 2;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .faqAa .columnaB {
        order: 1;
    }

    .faqAa .faqAa_forma {
        width: 75%;
    }

    .faqAa .img-container {
        width: 75%;
    }

    /* FOOTER */
    .footer-info {
        text-align: center;
    }

    footer .p_pie {
        padding-left: 0;
    }
    .footer-img img{
        width: 90%;
    }

    /* EXTRA */
    .row.row-align-center {
        flex-direction: column !important;
    }

    .row.row-align-center>[class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {

    /* móviles */
    .marco-izq .col-xs-10 {
        margin-left: 0px;
    }

    .filtros {
        height: 260px;
    }

    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;
    }

    .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;
    }


    #menu-lateral.toggled .cabecera~.sidebar-wrapper {
        width: 80%;
    }

    /* BANNER */
    .banner {
        height: 100vh;
    }

    .banner .linea_inferior {
        flex-direction: column;
        gap: 15px;
    }

    .banner .custom-container {
        padding-top: 0;
    }

    /* SERVICIOS */
    .servicios .div_icono {
        height: 100px;
        width: 100px;
    }

    .servicios .icono-img {
        padding: 20px;
    }

    /* PARALLAX */
    .parallax .container-parallax {
        left: 0;
    }

    /* PARALLAX B */
    .div-fondo-parallaxB {
        transform: translate(0PX, -50%);
        width: 100%;
        height: 100%;
    }

    .div-fondo-parallaxB img {
        width: auto;
    }

    /* FOOTER */
    footer .footer-clip {
        clip-path: none;
    }

    footer .footer-clip {
        height: 550px !important;
    }

    /* TARIFAS */
    .consulta .caja_listado {
        height: auto;
    }
}

@media (max-width: 678px){
        /* FOOTER */
    footer .footer-info ul {
        display: block;
    }

    footer li{
        padding: 10px;
    }

    footer .footer-info {
        height: auto;
        padding: 40px 0px;
        flex-direction: column;
    }

    footer .footer-clip {
        height: 700px !important;
    }

    footer .linea_footer{
        height: 2.5px;
    }
}

@media (max-width: 540px) {

    /* BANNER */
    .banner .linea_inferior {
        flex-direction: column;
    }

    .banner .custom-container {
        padding: 0;
    }

    .banner .linea_div {
        flex-direction: column;
    }

    /* SERVICIOS */
    .servicios .div_icono {
        height: 85px;
        width: 85px;
    }

    .servicios .icono-img {
        padding: 15px;
    }

    /* FOOTER */
    footer .footer-info ul {
        display: block;
    }

    footer .footer-info {
        height: auto;
        padding: 40px 0px;
    }

    footer .footer-clip {
        height: 660px !important;
    }

    .footer-img img{
        width: 80%;
    }
}

.dropdown-menu {
    background-color: #272727;
    color: #fff;
}

.dropdown-menu>.active>a {
    background-color: #363636 !important;
}