/* para mi super compi */

:root{
    --primario: #85c5b2;
    --secundario: #2e6470;
    --transparencia: #f1f0f0;
    --familia_fuente: 'Exo', sans-serif;
}

/* ejemplo: var(--primario) */
/* ejemplo: var(--familia_fuente) */


@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');


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

p{

    color:#5f5f5f;
    font-size: 16px; 
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; 
    text-align: justify; 
    line-height: 26px;
}

body{ 
    color:#5f5f5f;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300; 
    font-weight: 400; 
    font-size: 16px; 
}

h1, h2, h3 {
    font-family: var(--familia_fuente);
    font-weight: 600;
    color: #333
}

.equal {
    display: flex;
    display: -webkit-flex;
    /* flex-wrap: wrap; */
    flex: 1 0 auto;
}

/* - -- - -- - -- - -- - -- 
-- - Estilo botones - --
- -- - -- - -- - -- - -- - */
/* Original */
.boton .btn{
    width: 200px;
    height: 50px;
    border: 0px solid #004a9d;
    color: #fff;
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border-radius: 24px;
    background: #ff3390;
}



/*
.boton.color_blanco {
text-align: center;
}

.boton.color_blanco .btn{
color: #fff;
border: 1px solid #fff;
}
*/

/* Botón Banner */
.banner .boton {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

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


/* Botón Menú */
.navbar .boton{
    margin-left: 34px;
    position: relative;
    /* z-index: 30; */
    float: right;
    height: 114px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.barra_reducida .navbar .boton {
    height: 104px;
}

.boton .btn img{
    height: 35px;
    margin-right: 12px;
}

.barra_reducida .boton .btn img{
    height: 30px;
    margin-right: 12px;
}


.boton.boton_menu .btn {
    width: 282px;
    height: 62px;
    color: #fff;
    background: #ff5837;
    border: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 20px;
    white-space: normal;
    text-align: left;
}

.barra_reducida .boton.boton_menu .btn {
    width: 270px;
    height: 57px;
    font-size: 13px;
}

/* Botón Parallax */
.zona_destacado .boton.boton_menu .btn {
    width: 405px;
    height: 48px;
}


.zona_destacado .boton .btn img {
    height: 25px;
}

/* Efecto del botón - Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0296d1;
    border-radius: 24px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.boton.boton_menu .hvr-shutter-out-horizontal:before {
    border-radius: 20px;
    background: #004a9d;
}

.zona_destacado .boton.boton_menu .hvr-shutter-out-horizontal:before {
    background: #5780bc;
}

.boton.color_blanco .hvr-shutter-out-horizontal:before{
    background: #fff;
}

/*
.banner .boton .hvr-shutter-out-horizontal:before {
background: #fff;
}
*/

.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus, 
.hvr-shutter-out-horizontal:active {
    color: #fff;
}

/*
.banner .boton .hvr-shutter-out-horizontal:hover,
.boton.color_blanco .hvr-shutter-out-horizontal:hover,
.banner .boton .hvr-shutter-out-horizontal:focus, 
.boton.color_blanco .hvr-shutter-out-horizontal:focus, 
.banner .boton .hvr-shutter-out-horizontal:active,
.boton.color_blanco .hvr-shutter-out-horizontal:active {
color: #004a9d;
}
*/

.hvr-shutter-out-horizontal:hover:before, 
.hvr-shutter-out-horizontal:focus:before, 
.hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* - -- - -- - -- - -- - -- 
-- - Fin Estilo botones - --
- -- - -- - -- - -- - -- - */



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

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


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

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



.separa-5{
    height: 5px;
}

.separa-10{
    height: 10px;
}

.separa-20{
    height: 20px;
}

.separa-40{
    height: 40px;
}

.separa-30{
    height: 30px;
}

.separa-50{
    height: 50px;
}


.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

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

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

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

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

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



/* --- --- --- 
--- HEADER ---
--- --- --- ---*/
/* -- -- -- -- -- -- -- Menú -- -- -- -- -- -- -- */

.btn-grande {
    padding: 15px 20px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
}
.btn-grande img {
    height: 32px;
    margin-right: 5px;
    margin-top: -4px;
}

.container-navbar {margin-left: 20px}

.nav .btn-grande{margin: 20px;}

.navbar-default {
    border: 0px;
    border-radius: 0px;
    background-color: #fff;
    margin-bottom: 0px;
    position: absolute;
    top: 0px;
    z-index: 10;
    width: calc( 100% - 20px );
    margin-left: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 1px 1px 15px 0px #777777;
}
.navbar-brand>img {height: 60px;}
.navbar-brand {height: auto; padding: 20px;}
.navbar-default .navbar-nav>li>a {border-radius: 10px; font-family: 'Poppins'; font-weight: 400; padding: 30px 20px; margin: 10px 0px}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    background-color: #f4f4f4; 
}
.navbar-nav .dropdown-menu>li>a{
    padding: 12px 21px;
    border-bottom: 1px dotted #e8e8e8;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover{
    background-color: var(--primario);
}



.navbar-right~.navbar-right {margin-bottom: 0px;}

.adorno_cabecera {
    width: 620px;
    height: 125px;
    background-color: #85c5b2;
    border-bottom-right-radius: 20px;

    position: absolute;
    top: 0px;
    z-index: 10;
}

.datos_cabecera {
    position: absolute;
    background-color: rgb(59 100 112 / 80%);
    z-index: 2;
    top: 100px;
    right: 0px;
    color: #fff;
    border-bottom-left-radius: 60px 85px;
    display: flex;
    justify-content: space-evenly;
    padding: 0px 30px;
}
.datos_cabecera img {height: 15px;
    margin-top: -2px;
    margin-right: 3px;}
.datos_cabecera .redes img {margin-left: 5px; margin-right: 5px;}
.datos_cabecera .elemento {padding: 10px;}

/* -- -- -- Section banner -- -- -- */
#banner-slider ul{
    padding: 0;
    margin: 0;
}

.superpuesto {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 940px;
    z-index: 1;

    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2e6470+0,2e6470+100&0.5+0,1+100 */
    background: -moz-linear-gradient(top,  rgba(46,100,112,0.5) 0%, rgba(46,100,112,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(46,100,112,0.5) 0%,rgba(46,100,112,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(46,100,112,0.5) 0%,rgba(46,100,112,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#802e6470', endColorstr='#2e6470',GradientType=0 ); /* IE6-9 */

}

.superpuesto .container {
    height: 100%;

}

.banner {
    width: 100%;
    height: 940px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 940px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* - -- texto banner -- -*/
.texto_banner {
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.texto_banner>div {

}

.texto_banner p {
    color: #85c5b2;
    font-size: 32px;
    font-family: var(--familia_fuente);
    text-align: left;
    font-weight: 200;
    line-height: 28px;
    margin-bottom: 15px;
    font-style: italic;
}

.texto_banner p.enunciado {
    color: #000;
    font-size: 53px;
    font-family: var(--familia_fuente);
    text-align: left;
    font-weight: 900;
    line-height: 80px;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 59px;
    color: #fff;
    font-style: normal;

    text-shadow: 2px 2px 1px #2E2E2E;
}

.texto_banner .caja_descarga p{
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-family: 'Open Sans';
    margin-top: 20px;
    font-style: normal;
}

.texto_banner .boton .btn:hover,
.texto_banner .boton .btn:focus,
.texto_banner .boton .btn:active {
    color: #000;
}

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

    width: 50%;
}

.esquina_cabecero {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 210px;
    z-index: 1;
}

.descarga .btn {
    padding: 6px 12px;
    color: #81619f;
    font-size: 16px;
    margin-bottom: 0px;
    font-family: 'Josefin Sans', sans-serif;
    width: 212px;
    height: 60px;
    border: 2px solid #8465a1;
    border-radius: 0px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;

}

.descarga.dos .btn{
    width: 238px;
    background-color: #81619f;
    color: #fff;
}

.descarga.uno .btn{
    margin-right: 20px;
}


.descarga img{
    height: 36px;
    padding-right: 14px;
    transition: all .2s ease;
}

.descarga:hover .btn{
    transform: translateY(-10px);
}

.descarga.uno:hover .btn{
    color: #fff;
    background-color: #81619f;
}

.descarga.dos:hover .btn{
    color: #81619f;
    background-color: #e8d6fb;
}


/* - -- fin texto banner -- -*/


/* - -- estilo de las flechas -- -*/
.splide__slide img {
    vertical-align: bottom;
    height: 250px;
}

.splide__arrows {
    position: absolute;
    top: calc(50%);
    right: 0px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    /*    border: 1px solid red;*/
    z-index: 2;
    width: 100%;
}


.splide__arrow--prev {
    left: 0;
}

.splide__arrow--next {
    right: 0;
}

.splide__arrow {
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    border-radius: 0px;
    border: none;
    padding: 0;
    height: 50px;
    width: 50px;
    margin: 0px 13px;
    position: relative;
    background-color: transparent;
    top: -40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* left: -25px; */
}
.splide__arrow--prev {
    left: -50px;
}
.splide__arrow--next {
    right: -50px;
}

.crece_svg svg {
    height: 26px;
    width: 26px;
    fill: var(--secundario);
}
/* - -- estilo de las flechas -- -*/

/* -- -- -- fin Section banner -- -- -- */

.bloque_portada_1 {position: relative}
.bloque_portada_1 .adorno_derecho {position: absolute; right: 0px; height: 100%; width: 320px; background-size: cover;     z-index: 1;}
.bloque_portada_1 h1 { font-size: 38px; }
.bloque_portada_1 .linea { width: 100vw; height: 1px; background-color: var(--primario); position: absolute; right: 0px;  }
.btn-mediano {
    padding: 10px 40px;
    font-size: 16px;
    border-radius: 6px;
}
.bloque_portada_1 .imagen_gente {
    position: absolute;
    left: 50px;
    bottom: 296px;
    bottom: 200px;
    width: 560px;
}

.bloque_portada_2 {position: relative;     top: -2px; }
.bloque_portada_2 .fondo{
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bloque_portada_2 .cristal{
    position: absolute;
    width: 100%;
    height: 100%;


    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2e6470+0,2e6470+100&0+0,1+50 */
    background: -moz-linear-gradient(left, rgba(46,100,112,0) 0%, rgba(46,100,112,1) 50%, rgba(46,100,112,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(46,100,112,0) 0%,rgba(46,100,112,1) 50%,rgba(46,100,112,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(46,100,112,0) 0%,rgba(46,100,112,1) 50%,rgba(46,100,112,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002e6470', endColorstr='#2e6470',GradientType=1 ); /* IE6-9 */

}

.bloque_portada_2 { 
    overflow: hidden
}

.bloque_portada_2 .bloque_derecho p{
    color: #fff;
}
.bloque_portada_2 .bloque_derecho h2{
    color: #fff;
    font-size: 34px;
}
.bloque_portada_2 .bloque_derecho .contenedor_btn{
    text-align: right;
}
.bloque_portada_2 .linea {
    left: 0px;
    right: auto;
    background-color: #fff;
    width: 100vw; 
    height: 1px;
}

.bloque_titulo_centrado {
    overflow: hidden;
}

.bloque_titulo_centrado .titulo {
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    background-color: #fff;
    padding: 0px 15px;
    margin: 0px;
    z-index: 1;
}

.bloque_titulo_centrado .linea_central {
    width: 100%;
    height: 1px;
    background-color: var(--primario);
    position: absolute;
}

.caja_especialidad {border: 1px solid #dedede; background-color: #fff;; border-radius: 20px; width: 300px; height: 340px; text-align: center; padding: 25px; -webkit-box-shadow: 0 0 4px 3px #dedede;
    box-shadow: 0 0 4px 3px #dedede;     margin: 5px auto;}
.caja_especialidad img{ height: 70px;  margin-top: 10px;  margin-bottom: 5px; }
.caja_especialidad p {text-align: center}
.caja_especialidad p.titulo {font-size: 20px;     font-family: var(--familia_fuente); font-weight: 600; margin-top: 0px; position: relative;     bottom: 10px;}
.caja_especialidad .adorno_cuadro {height: 25px; width: 100%; background-color: #f1f0f0; border-radius: 5px;   position: relative; top: 27px;}
.contenedor_especialidades {padding: 0px 10%}


.seccion_destacada {
    position: relative;
    z-index: 1;
    z-index: 1;
    border-radius: 60px;
    overflow: hidden;
}
.seccion_destacada .fondo_destacado {   position: absolute; width: 100%; height: 100%; background-position: center; background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.seccion_destacada .transparencia_destacada { position: absolute; width: 100%; height: 100%; background-color: var(--secundario); opacity: 0.8}
.seccion_destacada .adorno_arriba { position: absolute; top: 0px; width: 100%;}
.seccion_destacada .adorno_arriba img {width: 100%;}
.seccion_destacada .adorno_abajo { position: absolute; bottom: 0px; width: 100%;}
.seccion_destacada .adorno_abajo img {width: 100%;}
.seccion_destacada .contenido_destacado { position: relative}

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

.seccion_destacada h2 {
    font-family: var(--familia_fuente);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 5px;
}

.seccion_destacada p {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    padding: 0px 10%;
}

.seccion_destacada .antetitulo { margin: 0px; font-style: italic; font-weight: 300; font-size: 22px}


.seccion_noticias {background-color: var(--transparencia); position: relative}
.seccion_noticias .contenedor_total {width: 100%; position: relative; overflow: hidden}
.seccion_noticias .color_arriba{position: absolute; width: 100%; height: 60px; background-color: var(--transparencia);; bottom: 100%;}
.titulo_normal .titulo {text-transform: uppercase; font-size: 34px;}
.titulo_normal .linea_larga {height: 1px; width: 100vw; background-color: var(--primario);}
.caja_noticia .zona_foto {height: 430px; width: calc(100% - 30px); background-position: center; background-size: cover; border-radius: 5px; position: relative}
.caja_noticia .zona_foto .fecha {background-color: rgb(59 100 112 / 80%); position: absolute; right: 15px; top: 15px; padding: 5px 7px; border-radius: 5px;     width: 55px;}
.caja_noticia .zona_foto .fecha p{
    color: #fff;
    font-family: var(--familia_fuente);
    font-weight: 400;
    text-align: center;
    margin: 5px 0px;
    font-size: 22px;
    line-height: 21px;
}
.caja_noticia .zona_foto .fecha .linea{background-color: #fff; height: 2px; width: 100%;}
.caja_noticia .zona_texto {
    background-color: #fff;
    padding: 40px 25px;
    box-shadow: 1px 1px 15px 0px #bfbfbf;
    border-radius: 5px;
    width: calc(100% - 45px);
    position: relative;
    bottom: 80px;
    left: 30px;
}
.caja_noticia .zona_texto p{
    font-size: 14px;
    text-align: left; margin: 0px;
}
.caja_noticia .zona_texto .titulo{
    color: var(--secundario);
    font-size: 20px;
    line-height: 30px;
    margin: 0px;
    margin-bottom: 15px;
}

footer .esquinero_superior { 
    right: 0px;
    width: 200px;
    position: absolute;
    z-index: 1;
    bottom: 0px;
}
footer .esquinero_inferior { 
    left: 0px;
    width: 200px;
    position: absolute;
    z-index: 1;
    top: 0px;
}
footer .gris {
    background-color: var(--transparencia);
}
footer .logo_pie {
    width: calc(100% - 400px);
    position: relative;
    bottom: -2px;
}
footer .seccion_superior {     text-align: center; position: relative;}
footer .seccion_inferior { background-color: var(--primario); position: relative;
    z-index: 1; }

footer .redes_inferiores {border-left: 1px solid rgba(0, 0, 0, 0.1)}
footer .redes_inferiores img {height: 35px;     margin-right: 30px;}

footer .contenedor_informacion {display: flex; padding: 70px; padding: 30px 70px; text-align: center}
footer .contenedor_informacion .logo_inferior {width: 380px; margin-bottom: 40px;}
footer .contenedor_informacion p {color: #fff; font-size: 14px}
footer .contenedor_informacion>div {width: 50%; padding: 40px; padding-bottom: 0px;}
footer .contenedor_informacion .linea_con_icono {display: flex;     margin-bottom: 30px;}

footer .menu_pie {padding: 15px 0px; border-top: 1px solid rgba(255, 255, 255, 0.25)}
footer .menu_pie p{text-align: center; color: #fff; margin: 0px; font-size: 14px; }
footer .menu_pie a{color: #fff;}

footer .textos_copy {background-color: var(--secundario);}

footer .textos_copy .caja_textos {display: flex; justify-content: space-evenly; padding: 20px 0px;}
footer .textos_copy .caja_textos p{ margin: 0px; color: #fff; font-size: 12px; color: var(--primario)}
footer .textos_copy .caja_textos a{ margin: 0px; color: #fff; font-size: 12px; color: var(--primario)}

/***header especial***/
header.primera_fase .navbar { margin: 0px; width: 100%; border-radius: 0px; position: fixed; width: 100%; top: -200px;

}
header.primera_fase .adorno_cabecera { top: -30px; }
header.primera_fase .datos_cabecera { top: 0px; }

header.segunda_fase .navbar {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

header.barra_reducida .navbar { top: 0px; }

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

#manto-movil.toogled {
    z-index: 30;
}
.btn-verde { 
    color: #ffffff; 
    background-color: #85C5B2; 
    border-color: #85C5B2; 
} 

.btn-verde:hover, 
.btn-verde:focus, 
.btn-verde:active, 
.btn-verde.active, 
.open .dropdown-toggle.btn-verde { 
    color: #ffffff; 
    background-color: #489E84; 
    border-color: #85C5B2; 
} 

.btn-verde:active, 
.btn-verde.active, 
.open .dropdown-toggle.btn-verde { 
    background-image: none; 
} 

.btn-verde.disabled, 
.btn-verde[disabled], 
fieldset[disabled] .btn-verde, 
.btn-verde.disabled:hover, 
.btn-verde[disabled]:hover, 
fieldset[disabled] .btn-verde:hover, 
.btn-verde.disabled:focus, 
.btn-verde[disabled]:focus, 
fieldset[disabled] .btn-verde:focus, 
.btn-verde.disabled:active, 
.btn-verde[disabled]:active, 
fieldset[disabled] .btn-verde:active, 
.btn-verde.disabled.active, 
.btn-verde[disabled].active, 
fieldset[disabled] .btn-verde.active { 
    background-color: #85C5B2; 
    border-color: #85C5B2; 
} 

.btn-verde .badge { 
    color: #85C5B2; 
    background-color: #ffffff; 
}

.btn-blanco { 
    color: #333333; 
    background-color: #FFFFFF; 
    border-color: transparent;
} 

.btn-blanco:hover, 
.btn-blanco:focus, 
.btn-blanco:active, 
.btn-blanco.active, 
.open .dropdown-toggle.btn-blanco { 
    color: #333333; 
    background-color: #AFDED0; 
    border-color: transparent;
} 

.btn-blanco:active, 
.btn-blanco.active, 
.open .dropdown-toggle.btn-blanco { 
    background-image: none; 
} 

.btn-blanco.disabled, 
.btn-blanco[disabled], 
fieldset[disabled] .btn-blanco, 
.btn-blanco.disabled:hover, 
.btn-blanco[disabled]:hover, 
fieldset[disabled] .btn-blanco:hover, 
.btn-blanco.disabled:focus, 
.btn-blanco[disabled]:focus, 
fieldset[disabled] .btn-blanco:focus, 
.btn-blanco.disabled:active, 
.btn-blanco[disabled]:active, 
fieldset[disabled] .btn-blanco:active, 
.btn-blanco.disabled.active, 
.btn-blanco[disabled].active, 
fieldset[disabled] .btn-blanco.active { 
    background-color: #FFFFFF; 
    border-color: #FFFFFF; 
} 

.btn-blanco .badge { 
    color: #FFFFFF; 
    background-color: #333333; 
}


/*********************************
*        MENU DESPLEGABLE        *
*********************************/

.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(180deg, rgba(241,240,240,1) 0%, rgba(241,240,240,1) 90%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(241,240,240,1) 0%, rgba(241,240,240,1) 90%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 90%, rgba(241,240,240,1) 100%);
}
.ocultorobots{
    display: none;
}
.textaco img{max-width: 100%;}

#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 var(--primario);
    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%;}
transform: translateY(-10px);
}

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

.descarga.dos:hover .btn{
    color: var(--secundario);
    background-color: #e8d6fb;
}
.mayorista{
    color: var(--secundario);background-color: #e8d6fb;border: 2px solid var(--secundario);padding: 16px 14px;
    text-align: center;font-weight: 600;
}
.btn-corporativo{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    text-transform: uppercase;
    border: 0px;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn-lg.btn-corporativo{
    padding: 18px 30px;

}
.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{color: #ffffff;
    background-color: #489E84;
    border-color: #85C5B2;}

.btn-corporativo2:hover, .btn-corporativo2:focus, .btn-corporativo2:active{color: #ffffff;
    background-color: #489E84;
    border-color: #85C5B2;}
.btn-corporativo3:hover, .btn-corporativo3:focus, .btn-corporativo3:active{color: #ffffff;
    background-color: #489E84;
    border-color: #85C5B2;}
.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);
}

h1#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{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:var(--secundario)}
.bloque_cabecera .bloque_titulo{background-color:var(--primario);padding:15px}
.bloque_cabecera .bloque_interior{background-color:var(--transparencia);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:var(--secundario)}
.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:var(--primario);font-size:22px}
.bloque_puntos ul{margin:0;padding:0;list-style:none}
.bloque_puntos ul li{margin-bottom:15px}
.bloque_puntos ul li>p>.fa{font-size:20px;color:var(--secundario)}
.bloque_contenido .titulo{background-color:var(--primario);padding:15px 10px}
.bloque_contenido .titulo h4{color:#fff;margin:0;text-transform:uppercase;font-size:16px;font-family:var(--familia_fuente);font-weight:300}
.bloque_contenido .bloque{padding:0 10px}
.bloque_desplegable .fondo,.bloque_documentos .fondo{background-color:var(--transparencia);padding:20px;margin-bottom:40px}
.bloque_desplegable .panel-group,.bloque_documentos .panel-group{margin:0}
.bloque_desplegable h2,.bloque_documentos h2{margin:0;margin-bottom:20px;font-size:23px;text-transform:uppercase;font-weight:400;font-family:var(--familia_fuente);color:var(--secundario)}
.bloque_desplegable .panel-default{border-color:var(--primario)}
.bloque_desplegable .panel-default>.panel-heading{background-color:var(--primario);color:#fff;border-color:var(--primario)}
.bloque_desplegable h2 .fa{color:var(--secundario)}
.bloque_desplegable .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:var(--primario)}
.bloque_imagenes img{width:100%}
.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}
.noticias,.post_details ul,.popular{list-style:none;padding:0;margin:0}
.noticia a{font-family:'Lato',sans-serif;text-decoration:none;text-transform:uppercase;color:#333333}
.noticias .imagen{background-size:cover;background-position:center center;background-repeat:no-repeat}
.noticias .imagen:after{content:"";padding-top:50%;display:block}
.not-imagen{background-color:#ededed}
#modal-cita .form-control{
    color: var(--primario);
    border-radius: 10px!important;
    background: #f8fbff;
    padding: 6px 20px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    border: 1px solid var(--primario);
}
#modal-cita input::-webkit-input-placeholder,
#modal-cita textarea::-webkit-input-placeholder { 
    color: var(--primario); 
} 

#modal-cita input:-moz-placeholder, /* Firefox 18- */ 
#modal-cita textarea:-moz-placeholder { /* Firefox 18- */ 
    color: var(--primario); 
} 

#modal-cita input::-moz-placeholder, /* Firefox 19+ */ 
#modal-cita textarea::-moz-placeholder { /* Firefox 19+ */ 
    color: var(--primario);
} 

#modal-cita input:-ms-input-placeholder, 
#modal-cita textarea:-ms-input-placeholder { 
    color: var(--primario); 
}

#modal-cita input::placeholder, #modal-cita textarea::placeholder{
    color: var(--primario);
}

#modal-cita .form-control{
    height: 50px;
}

#modal-cita p{
    color: var(--primario);
}

#modal-cita textarea.form-control{
    height: 120px;
}
.full-width{width:100%}
.noticia .titular{margin-bottom:0;border-bottom:solid 1px #f3f3f3}
.noticia .titular h1{color:#1e1f1d;margin-bottom:10px}
.noticia .titular a>h3{margin-bottom:17px;font-size:24px;text-transform:uppercase;text-align:left;color:#333333;font-family:var(--familia_fuente);}
.noticia .post_details{color:#fff;background-color:var(--primario);padding:10px;border-bottom:solid 5px var(--primario);text-align:right;font-size:13px}
.post_details li{font-family:var(--familia_fuente);font-size:13px;font-weight:300;color:#fff}
.noticia-detalle-fecha small{font-family:var(--familia_fuente);font-weight:300;color:#302224}
.post_details i{color:#fff}
.noticia-detalle-fecha i{color:#2f3668}
.noticia .contenido{padding:5px 15px 10px;background-color:#fff;border:1px solid #ffefcc}
.contenido_noticia_lista{padding:0 20px;background-color:var(--transparencia)}
.noticia-detalle-fecha{text-align:right;color:#2b2b2b}
.widget-noticias{background-color:#f3f3f3;padding:15px}
.widget-noticias h5{font-size:18px;text-transform:uppercase;color:var(--primario);font-family:var(--familia_fuente);}
.widget-noticias .input-group-btn{height:100%;border-top-right-radius:4px;border-bottom-right-radius:4px}
.widget-noticias .input-group-btn button{height:100%;border:1px solid var(--primario);background-color:var(--primario);color:#fff}
.widget-noticias .input-group-btn i{font-size:16px}
.widget-noticias2{  position: sticky;
    position: -webkit-sticky;top: 20px;}
.popular{font-size:13px}
.mini-noticia a{font-family:var(--familia_fuente);font-weight:400;font-size:14px}
.popular li{padding:10px 0;border-bottom:dotted 1px rgb(129, 97, 159)}
.popular .imagen{width:50px;height:50px;float:left;margin-right:10px;border-radius:3px;background-size:cover;background-position:center center}
.popular a.title{color:#070707;}
.popular a.texto-breve{color:#707070;font-weight:300;font-family:"Lato",sans-serif;font-size: 12px}
.popular a.title:hover,.popular a.title:focus,.popular a.title:active{color:#070707}
.bloque.noticia{margin-bottom:40px}

.cuadro_noticia{background-color:var(--transparencia); max-width:400px;float:left;margin: 0px 20px 12px 0px;}

.titulo_noticia {color: var(--primario);font-size: 30px;text-transform: uppercase;font-family: var(--familia_fuente);margin: 0; }

#busqueda{border-color: var(--primario);}

.marco-contacto{
    background-color: var(--transparencia);padding: 20px;}
.marco-contacto h3{margin-top: 0px}
.widget-noticias{background-color: var(--transparencia)}
.marco-contacto .input-group-addon{background-color: var(--primario); border-color: var(--primario);color: #fff}
.marco-contacto .form-control{border-color: var(--primario);}
.input-group .form-control {
    z-index: 0;
}

.zona-mapa iframe{height: 100%; width: 100%;}

/* 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%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

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

.banner_interior .imagen{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(4px);
}

.banner_interior .texto{
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
}
.banner_interior .texto img{
    margin-top: 20px;
}
.banner_interior.interior_azul .texto{
    background-color: rgba(69,183,245,0.5);
}
.banner_interior.interior_amarillo .texto{
    background-color: rgba(247,201,110,0.5);
}
.banner_interior.interior_rojo .texto{
    background-color: rgba(245,104,78,0.5);
}

.banner_interior p {
    margin-top: 0;
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0px;
    font-family: 'Open Sans'; 
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}

.banner_interior h1{
    margin-top: 0;
    font-size: 60px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0px;
    font-family: 'Open Sans'; 
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
    color: #fff;
    background-color: var(--primario);
}

.nav-pills>li>a{
    color:  #000;
    font-family: 'Open Sans'; 
    font-weight: 400;text-transform: uppercase;
}

/************************************
*              FILTROS              *
************************************/

.filtros{
    height: 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{
    opacity: 0;
}
.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);
}

.splide__arrow {display: none}

/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- --  -- -- -- -- -- -- -- Responsive  -- -- -- -- -- -- -- -- -- -- -- -- 
-- --  -- -- -- -- -- -- -- -- -- -- --  -- -- -- -- -- -- -- -- -- -- --*/
@media (max-height: 768px){ /* alto portatil */

    /* -- -- -- ESTILOS COMPARTIDOS -- -- -- */

    /* -- -- -- FIN ESTILOS COMPARTIDOS -- -- -- */


    /* -- -- -- HEADER -- -- -- */
    /* -- -- -- Menú -- -- -- */
    .navbar-brand>img {
        height: 40px;
    }
    /* -- -- -- MAIN -- -- -- */
    /* -- -- -- Banner -- -- -- */
    /* -- -- -- Bienvenida -- -- -- */

    /* -- -- -- FOOTER -- -- -- */

}


@media (max-width: 1600px){
    .splide__arrow {display: flex}
}

@media (max-width: 1498px){
    .navbar-brand>img {
        height: 44px;
    }
}



/*  Ipad Pro horizontal */
@media only screen 
    and (max-width: 1367px) 
    and (max-height: 1024px) 
    and (orientation: landscape) 
    and (-webkit-min-device-pixel-ratio: 1.5){

        /* -- -- -- ESTILOS COMPARTIDOS -- -- -- */

        /* -- -- -- FIN ESTILOS COMPARTIDOS -- -- -- */

        /* -- -- -- HEADER -- -- -- */
        /* -- -- -- Menú -- -- -- */
        .navbar-brand>img {
            height: 42px;
        }
        .navbar-default .navbar-nav>li>a {
            padding: 30px 16px;
        }
        /* -- -- -- MAIN -- -- -- */
        /* -- -- -- Banner -- -- -- */
        /* -- -- -- Bienvenida -- -- -- */

        /* -- -- -- FOOTER -- -- -- */

}
@media (max-width: 1350px){
    .navbar-default .navbar-nav>li>a {
        padding: 30px 10px;
    }
    .btn-grande {
        padding: 15px 15px;
        font-size: 14px;
    }
    .navbar-brand>img {
        height: 40px;
    }

}


@media (max-width: 1200px){ /* monitores normales y tablet horizontal */
    .btn-grande img {
        height: 25px;
        margin-right: 5px;
        margin-top: -4px;
    }
    .btn-verde.btn-grande{
        font-size: 12px;
    }
    .navbar-brand>img {
        height: 30px;
    }
    .navbar-brand {
        height: auto;
        padding: 20px;
        margin-top: 20px;
    }
    .adorno_cabecera {
        width: 394px;
    }


    /* -- -- -- ESTILOS COMPARTIDOS -- -- -- */

    /* -- -- -- FIN ESTILOS COMPARTIDOS -- -- -- */


    /* -- -- -- HEADER -- -- -- */
    /* -- -- -- Menú -- -- -- */

    /* -- -- -- MAIN -- -- -- */
    /* -- -- -- Banner -- -- -- */
    /* -- -- -- Bienvenida -- -- -- */

    /* -- -- -- FOOTER -- -- -- */

}

@media (max-width: 1100px){
    .navbar-brand>img {
        height: 20px;
    }
    .navbar-brand {
        height: auto;
        padding: 20px;
        margin-top: 20px;
    }
    .adorno_cabecera {
        width: 286px;
    }
}

/*  Ipad Pro vertical */
@media only screen 
    and (min-device-width: 1024px) 
    and (max-device-width: 1366px) 
    and (-webkit-min-device-pixel-ratio: 2) 
    and (orientation: portrait){

        /* -- -- -- ESTILOS COMPARTIDOS -- -- -- */

        /* -- -- -- FIN ESTILOS COMPARTIDOS -- -- -- */


        /* -- -- -- HEADER -- -- -- */
        /* -- -- -- Menú -- -- -- */

        /* -- -- -- MAIN -- -- -- */
        /* -- -- -- Banner -- -- -- */
        /* -- -- -- Bienvenida -- -- -- */

        /* -- -- -- FOOTER -- -- -- */

}


@media (max-width: 992px){ /* tablet vertical */

    /* -- -- -- ESTILOS COMPARTIDOS -- -- -- */
    .navbar-default{
        position: fixed;
        z-index: 1030;
        box-shadow: none;
    }
    /* -- -- -- FIN ESTILOS COMPARTIDOS -- -- -- */
    .navbar-brand>img {
        position: absolute;
        height: 24px;
        top: 15px;
    }
    .adorno_cabecera {
        height: 75px;
        position: fixed;
        z-index: 1030;
    }

    .bloque_portada_1 .imagen_gente {
        position: relative;
        left: 0;
        bottom: 80px;
        width: 599px;
    }

    .caja_descarga {
        width: 100%;
    }
    
    .zona-mapa iframe {height: 350px;}

    footer .contenedor_informacion .logo_inferior {
        width: 280px;
        margin-bottom: 40px;
    }

    footer .contenedor_informacion {
        display: flex;
        padding: 70px 0;
    }

    /* -- -- -- HEADER -- -- -- */
    /* -- -- -- Menú -- -- -- */
    header .container-fluid {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar-header {float: none; height: 52px;border-bottom: 0px solid #002ba6;}
    .navbar-toggle {display: block;}
    .navbar-toggle {margin: 0px; padding: 19px 15px; border: 0px;    background-color: var(--primario); border-radius: 0;}
    .navbar-collapse {border-top: 0px solid transparent;box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);}
    .navbar-default .navbar-toggle .icon-bar {background-color:#fff;}
    .navbar-collapse.collapse {display: none!important;}
    .navbar-nav {float: none!important;margin: 7.5px 15px;}
    .navbar-nav>li {float: none;}
    .navbar-nav>li>a {padding-top: 10px;padding-bottom: 10px;}

    .navbar-text {float: none;margin: 15px 0;}
    .navbar-collapse.collapse.in {display: block!important;}
    .collapsing {overflow: hidden!important;}


    /* menu_despegale */

    .sidebar-wrapper{opacity: 1}
    /*    .sidebar-nav .dropdown-backdrop{z-index: -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: right;
        /* padding: 0; */
        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 .dropaco .dropdown-menu>li.active>a {
        text-align: right;
        /* padding: 0; */
        padding: 8px 20px;
        background-color: rgba(0, 0, 0, 0.35);
        white-space: initial;
        color: #ffffff;
        font-size: 15px;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 300;
    }


    /* menu_despegale */

    /* botón menú */
    .caja_boton {
        position: relative;
        bottom: 0px;
        left: 0px;
        width: 100%;
        text-align: center;
        margin: 50px 0px 20px;
    }
    .boton.boton_menu .btn {
        width: 230px;
        height: 50px;
        font-size: 17px;
        font-weight: 600;
        margin-left: 0px;
    }
    .boton .btn img {
        height: 30px;
        margin-right: 10px;
    }

    /* fin botón menú */


    .sidebar-nav li a {
        color: #fff;
        font-size: 15px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        text-align: right; 
        padding: 10px 15px;
        text-transform: initial;

    }

    .sidebar-nav li a .fa {
        margin-right: 12px;
    }

    .sidebar-nav li a:hover {
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.15);
    }

    .sidebar-nav li.active a {
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.15);
    }

    .sidebar-nav li {
        border-bottom: 1px dotted rgb(194 199 221);
    }

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

    .sidebar-wrapper.right {
        background-color: var(--primario);
        height: calc(100% - 52px);
    }

    .equal {
        display: flex;
        /* display: -webkit-flex; */
        flex-wrap: nowrap;
        flex: 1 0 auto;
        flex-direction: column;
    }



}

@media (max-width: 767px){ /* móviles */

    /* -- -- -- ESTILOS COMPARTIDOS -- -- -- */

    /* -- -- -- FIN ESTILOS COMPARTIDOS -- -- -- */
    .adorno_cabecera {
        width: 245px;
        height: 70px;
    }
    .texto_banner p {
        color: #85c5b2;
        font-size: 22px;
    }
    .texto_banner p.enunciado {
        font-size: 40px;
    }

    .bloque_portada_1 .imagen_gente {
        position: relative;
        left: 0;
        bottom: 75px;
        width: 100%;
    }



    .row{
        margin: 0;
    }

    .caja_descarga {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .wow{
        opacity: 1;
    }

    footer .contenedor_informacion>div {
        width: 100%;
        padding: 40px;
    }

    footer .contenedor_informacion {
        display: flex;
        padding: 70px 0 0 0;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }

    footer .redes_inferiores {
        border-left: 0px;
    }

    .caja_noticia .zona_texto {
        padding: 25px 15px;
    }

    footer .textos_copy .caja_textos {
        display: flex;
        justify-content: center;
        padding: 20px 0px;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }

    footer .textos_copy .caja_textos p {
        text-align: center;
    }


    /* -- -- -- HEADER -- -- -- */
    /* -- -- -- Menú -- -- -- */
    .sidebar-nav li a img {
        margin-left: 0px;
        height: 20px;
        margin-right: 10px;
    }


    /* -- -- -- MAIN -- -- -- */
    /* -- -- -- Banner -- -- -- */
    /* -- -- -- Bienvenida -- -- -- */









    /* -- -- -- FOOTER -- -- -- */

}


/*//ESTILOS GENERALES//*/
@media (max-width: 1200px){
    .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%;
    }
}
@media (max-width: 992px){ /* móviles */
    /* 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;}
}
@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;}
}