/********** Template CSS **********/
:root {
    /* --primary: #4294E3;
    --secondary: #8F12FD; */
    --primary: #304259;
    --secondary: #6f9bbf;
    /* --primary: #6f9bbf;
    --secondary: #304259; */
    --light: #F0F6FF;
    /* --dark: #262B47; */
    --dark: #353434;

    --oscuro: #30425a;
    --claro: #6f9bbe;

    --amarillo: #f2bc00;
    --disabled: #919294;
}

.text-gray{
    color: #919294;
}

.info-dev {
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 9999;
    padding: 5px 10px;
    border-radius: 10px 0;
    font-size: 9px;
    color: #333;

    max-height: 50vh;
    overflow-y: scroll;
    max-width: 100%;
}

.info-dev.open{
    background: rgba(255, 255, 255, 0.8);
}

.info-dev code{
    font-size: 0.9rem;
    color: #333;
}

@media (min-width: 1200px) {
    h4,
    .h4 {
        font-size: 1.4rem;
    }
}

body {
    scrollbar-width: thin;
    font-size: 14px;
    /* padding-top: 48px; */
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    /* margin-bottom: 6rem; */
    margin-bottom: 1rem;
    /* padding: 16rem 0 0 0; */
    padding: 12rem 0 0 0;
    background:
        url(../img/bg-bottom.png),
        url(../img/portada.webp);
    /*background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom;*/
    background-position:
        center bottom,
        left 0px top 0px;
    background-size: contain, cover;
    background-repeat: no-repeat;
}

.btn-border-white {
    border: 3px solid #fff;
    color: white;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    /* background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary)); */
    background:
        url(../img/bg-top.png),
        url(../img/footer.webp),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        left 0px bottom 0px,
        center inherit;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    /* color: var(--light); */
    color: var(--dark);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.leaflet-popup-content p {
    margin: 0.3rem 0;
}

.iconos-un a {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 16px;
}

.item-card, .item-cat {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.5s;
    cursor: pointer;
}

.empresas .item-card:first-child,
.articulos .item-cat:first-child,
.ofertas .item-cat:first-child,
.oficios .item-card:first-child {
    border-top: 1px solid #ddd;
}

.fijo .btn {
    background-color: var(--oscuro);
}

.leaflet-popup-content .btn-primary {
    background-color: var(--oscuro);
}

.fijo #buscador {
    font-size: 14px;
    padding-bottom: 5px;
}

.item-card:hover {
    /* background: #ddd; */
    background-color: var(--claro);
}

.info-comunidad {
    scrollbar-width: thin;

}

.info-item{
    padding-left: 0;
    padding-right: 0;
}



/* .contenedor {
    margin-right: 15px;
    margin-left: 15px;
} */

.info-comunidad {
    height: 100vh;
    border-right: 1px solid #aaa;
    background-color: var(--oscuro);
    color: wheat;
    padding-left: 15px;
    padding-right: 0;
    transition: all 0.5s;
}

.info-comunidad h4,
.info-comunidad h6 {
    color: white
}


.info-mapa, .info-blog, .info-ofertas {
    height: 100vh;
    margin: 0;
    padding: 0;
}

.map-container {
    /* height: 100vh; */
    height: calc(100vh - 55px);
    
    transition: all 0.5s;
}

::-webkit-scrollbar {
    width: 7px;
}

.item-card img, .item-cat img {
    border-radius: 100%;
    background-color: #fff;
    width: 54px;
    max-width: 54px !important;
    height: 54px;
    object-fit: cover;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: #888; */
    /* background: #30425a */
    background-color: var(--claro);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #6f9bbe;
}

.contenido {
    overflow-y: scroll;
    /* height: 395px; */
    /* height: 100%; */
    height: calc(100vh - 50px);
    overflow-x: hidden;
    scrollbar-width: thin;
    padding: 0 15px;
}

.contenido h6 {
    font-size: 1.1rem;
}

.contenido p {
    font-size: 12px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

span.badge.badge-secondary.borde {
    text-decoration: underline;
}

.fijo {
    padding: 5px 12px;
    background-color: var(--claro);
    color: white;
    transition: all 0.5s;
    border-radius: 10px 10px 0 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

.sin-resultados {
    margin-top: 10px;
}

.fijo a {
    /* color: var(--oscuro); */
    color: #1e7e86;
}


.fijo label {
    font-size: 12px;
    margin-top: -38px;
    position: absolute;
    color: var(--oscuro);
    margin-left: 13px;
}

.cambio-modo {
    /* width: 125px; */
    margin: 0;
    display: inline-block;
}

.resetear, .resetear-blog {
    /* width: 16px; */
    display: initial;
    padding-top: 10px;
    float: left;
}

.fijo .form-control {
    background: white;
    font-size: 12px;
    height: 38px;
    padding-bottom: 0;
}

.logo-flotante {
    z-index: 403;
    position: fixed;
    top: 260px;
    background: white;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    padding: 5px;
}

.logo-flotante img {
    width: 100%;
}

.cambio-modo, .resetear, .ayuda, .mostrar-globos, .mostar-noti, .resetear-blog{
    /* width: 33%;
    display: inline-block;
    text-align: center;
    float: left; */
    font-size: 20px;
    padding: 6px 0 0 0;
    margin: 0 auto;
}

.btn-select-tipo.selected, .btn-seccion.selected {
    border: 1px solid #ccc;
    width: 100%;
    box-shadow: 0px 0px 7px 0px;
}

.btn-select-tipo, .btn-seccion {
    padding: 16px 5px;
    color: var(--claro);
}

.btn-select-tipo i, .modal .btn-seccion i {
    font-size: 30px;
    color: var(--oscuro);
    padding-bottom: 15px;
}


.seleccionar-tipo {
    position: fixed;
   
    right: 20px;
    width: 45px;
    height: 45px;
    top: 310px;
    background: var(--amarillo);
    z-index: 404;
    color: var(--oscuro);
    border-radius: 100%;
    text-align: center;
    padding: 10px;
}

.seleccionar-tipo a{
    color: white;
}

.herramientas{
    background: var(--amarillo);
    margin-top: -10px;
    /* margin-bottom: -10px; */
    margin-bottom: -5px;
    padding-top: 10px;
}
#tbusqueda{
    color: var(--amarillo);
}

.suscribir-tarjeta {
    width: 30px;
    height: 30px;
    background: var(--claro);
    text-align: center;
    border-radius: 100%;
    position: sticky;
    font-size: 15px;
    padding-top: 3px;
    color: white;
}

.suscribir-tarjeta.suscrito{
    background: var(--amarillo);
}

.actualizacion-div{
    background: var(--claro);
    transition: all;
    cursor: pointer;
}

.articulo-item .container-fluid{
    border: 1px solid #aaa;
    border-radius: 5px;
    transition: all 0.5s;
}

.articulo-item:hover .container-fluid{
    background: #ddd;
    cursor: pointer;
}

.articulo-item img{
    /* max-height: 167px; */
    object-fit: cover;
    transition: all 0.5s;
}


.articulo-item:hover img{
    filter: brightness(0.9);
    
}
.articulo-item h6{
    height: 38px;
    text-overflow: ellipsis;
}


.articulo-item p{
    font-size: 0.9rem;
    line-height: 1.2;
    height: 52px;
    text-overflow: ellipsis;
}

#blog_area{
    height: calc(100vh - 65px);
    overflow-y: scroll;
    /* padding-right: 75px; */
}

.tachado{
    text-decoration: line-through;
}

.codigo-promocional{
    background: var(--light);
    color: #333;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-family: monospace;
    font-weight: 600;

    width: 60%;
    margin: 0 auto;
}

.btn-contact {
    width: 30px;
    height: 30px;
    color: white;
    display: inline-block;
    border-radius: 100%;
    padding-top: 5px;
    transition: all 0.5s;
}

.btn-contact.tel-fijo {
    background: orange;
}

.btn-contact.tel-celular {
    background: red;
}

.btn-contact.email {
    background: #DB4437;
}

.btn-contact:hover{
    color: white;
    filter: brightness(0.9);
}

.perfil-img{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0px 1px 1px 1px #aaa;
}

.p-48{
    padding-top: 48px;
}

#map{
    margin-top: 48px;
}

.catego-ofertas {
    background-color: var(--oscuro);
    padding: 10px 40px;
    overflow-x: scroll;
    display: flex;
    scrollbar-width: none;
    position: fixed;
    top: 48px;
    width: 100%;
    z-index: 2;
}

.cat-item-top{
    background: var(--claro);
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}

#img_portada_miembro {
    max-height: 173px;
    object-fit: cover;
    filter: brightness(0.6);
    border-radius: 4px;
    width: 100%;
}

#img_perfil_miembro {
    width: 40%;
    border: 1px solid #eee;
    border-radius: 100%;
    background-color: #fff;
}

.portada-miembro{
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.perfil-miembro {
    position: relative;
    margin-top: -100px;
}

#profile-zone {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 1px 2px 3px 1px #ddd;
}

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

.selector-orden.activo{
    text-decoration: underline;
}

.info-oferta h5{
    line-height: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.herramientas .btn-seccion{
    padding: 2px 0 0 0;
    font-size: 20px;
    margin: 0 auto;
}

.herramientas  .btn-seccion i {
    /* font-size: 26px; */
    font-size: 24px;
    line-height: 1;
    padding-bottom: 9px;
}

.herramientas .item-h{
    padding: 6px 0 0 0;
}

.catego-prev{
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    width: 28px;
    height: 28px;
    text-align: center;
    margin-top: 5px;
    border-radius: 4px;
    font-size: 21px;
}

.catego-prev{
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    text-align: center;
    margin-top: 5px;
    border-radius: 4px;
    font-size: 21px;
}


.catego-next{
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    text-align: center;
    margin-top: 5px;
    border-radius: 4px;
    font-size: 21px;
    right: 0;
}

#search_blog {
    font-size: 14px;
}

.fijo a[disabled] {
    color: var(--disabled) !important;
}

#slide-ofertas {
    margin-top: 89px;
}

.btn-xs, .btn-group-xs>.btn {
    padding: .15rem .25rem;
    font-size: .875rem;
    border-radius: .2rem;
}

@media (max-width: 480px) {
    .p-48{
        padding-top: 0;
    }
    body{
        padding-top: 0;
        font-size: 12px;
    }

    #map{
        margin-top: 0;
    }


    .oferta-heading {
        font-size: 9px;
    }

    /* #blog_area{
        padding-right: 60px;
    } */

    .hero-header {
        background-position: center bottom, center center;
        background: url(../img/bg-bottom.png), url(../img/portada-cel.jpg);
        background-size: cover, 100% auto;
        background-repeat: no-repeat;
        padding: 6rem 0 6rem 0;
    }
    .logo-blanco {
        display: none;
    }

    .noti{
        display: none;
    }

    .navbar img.logo-normal {
        display: block !important;
    }

    .text-info-pr {
        top: 170px;
        position: relative;
        margin-bottom: 50px;
    }

    .pricing .nav-link{
        padding: 10px 10px;
        font-size: 13px;
    }

    /* COMUNIDAD */

    .info-comunidad {
        height: 65vh;
        position: fixed;
        top: 0;
        z-index: 402;
    }

    .map-container, .info-mapa{
        height: 65vh;
    }

    .fijo{
        height: 33vh;
        position: fixed;
        bottom: 0 !important;
        top:auto;
        z-index: 402;
        width: 100%;
        padding: 0 10px;
    }

    .cambiar-tipo {
        position: fixed;
        width: 45px;
        height: 45px;
        top: 150px;
        right: 20px;
        background: var(--claro);
        z-index: 403;
        color: white;
        border-radius: 100%;
        text-align: center;
        padding-top: 10px;
    }

    .cambiar-tipo a{
        color: white;
    }


    .seleccionar-tipo{
        top: 260px;
        font-size: 15px;
    }

    /* .resetear, .cambio-modo, .ayuda{
        width: 25%;
        float: left;
        padding: 10px 0;
    } */

    .cambio-modo p{
        font-size: 27px !important;
        margin-top: 3px;
    }


    .resetear{
        font-size: 18px;
    }

    .resetear a{
        margin-top: 8px;
    }

    .leaflet-popup-content{
        max-width: 300px;
    }

    .leaflet-popup-content h5{
        max-width: 250px;
    }

    .leaflet-popup-content p{
        max-width: 250px;
    }

    .herramientas{
        margin-top: 10px;
        padding-top: 5px;
        /* padding-bottom: 5px; */
        padding-bottom: 0px;
    }

    .foto-item{
        width: 58px;
        padding: 0;
    }
    
    .logo-flotante, .seleccionar-tipo, .cambiar-tipo{
        /* right: 10px; */
        right: 20px;
    }

    .logo-flotante{
        top: 205px;
    }
    
    #modal-busqueda .modal-dialog{
        max-width: 95% !important;
        margin-left: auto;
        margin-right: auto;
    }
    .info-item{
        padding-left: 10px;
        padding-right: 10px;
    }
    .suscribir-tarjeta.foto.d-md-none {
        position: relative;
        margin-left: auto;
        margin-top: -23px;
    }
    .switch-ocultar {
        font-size: 12px;
    }

    .articulo-item p{
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .articulo-item img {
        height: 108px;
        object-fit: cover;
        transition: all 0.5s;
    }

    

    h4, .h4{
        font-size: 15px;
    }
    

    #blog_area .container-fluid{
        padding-left: 15px;
        padding-right: 15px;
    }

    .cambio-modo, .resetear, .mostrar-globos, .mostar-noti, .resetear-blog {
        padding: 2px 0 0 0;
        font-size: 25px;
    }

    .catego-ofertas{
        padding: 10px 30px;
        position: static;
    }

    .catego-prev{
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        width: 28px;
        height: 28px;
        text-align: center;
        margin-top: 5px;
        border-radius: 4px;
        font-size: 21px;
    }

    
    .catego-next{
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        width: 28px;
        height: 28px;
        text-align: center;
        margin-top: 5px;
        border-radius: 4px;
        font-size: 21px;
        right: 0;
    }

    
    .herramientas  .btn-seccion i {
        /* font-size: 26px; */
        font-size: 31px;
        line-height: 1;
        padding-bottom: 9px;
    }

    .herramientas .item-h{
        padding: 3px 0 0 0;
    }

    
    #slide-ofertas {
        top: 0;
        width: 100%;
        position: fixed;
        margin-top: 0;
    }

    #blog_area{
        margin-top: 90px;
    }
}

@media (max-width: 350px) {
    .leaflet-popup-content .btn{
        font-size: 12px;
    }

    .fijo label{
        font-size: 10px;
    }

    .empresas h6, .oficios h6{
        font-size: 1rem;
    }

    .empresas p, .oficios p{
        font-size: 11px;
    }

    
    .info-comunidad h4 {
        font-size: calc(1.1rem + .3vw);
    }

    #modal-busqueda .modal-dialog{
        max-width: 80% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-select-tipo{
        font-size: 12px;
    }

    .btn-select-tipo i{
        padding-bottom: 10px;
        font-size: 24px;
    }

    .modal-title{
        font-size: 1.1rem;
    }

    .suscribir-tarjeta{
        width: 25px;
        height: 25px;
        font-size: 13px;
    }

}


@media (max-width: 340px) {

    .fijo label{
        font-size: 10px !important;
    }

    .leaflet-popup-content{
        max-width: 280px !important;
    }

    .leaflet-popup-content h5{
        max-width: 230px !important;
    }

    .leaflet-popup-content p{
        max-width: 230px !important;
    }
    .btn-select-tipo{
        font-size: 11px;
        line-height: 1.2;
    }

    .foto-item{
        width: 51px;
    }

    .item-card img, .item-cat img{
        width: 50px;
        height: 50px;
    }

    .articulo-item h6{
        font-size: 0.9rem;
        
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 35px;
    }

    .articulo-item p {
        font-size: 0.8rem;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 47px;
        margin-bottom: 0.5rem;
    }

    .logo-flotante, .seleccionar-tipo, .cambiar-tipo, .ayuda {
        right: 5px;
    }

    .ayuda {
        right: 5px !important;
        padding: 7px !important;
    }

    .cambiar-tipo, .seleccionar-tipo, .logo-flotante, .ayuda {
        width: 40px;
        height: 40px;
    }

    .ayuda {
        width: 40px !important;
        height: 40px !important;
    }

    .contenido h6 {
        font-size: 0.9rem;
    }
}