.barra_sup {
    background-color: rgb(194, 38, 17);
    font-size: 15px;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
}

.barra_sup.sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}
 
.header--public.sticky {
    position: sticky;
    top: 60px;
    z-index: 999;
    width: 100%;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.container-barra {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1200px;
}

.row-barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-gn {
    width: 9.375rem;
}

.logo-comunidad {
    height: 2.875rem;
}

.iconos-texto {
    display: flex;
    align-items: center;
}

.iconos-texto a {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
    color: inherit !important;
    text-decoration: none !important;
}

.separador {
    margin: 0 10px;
}

img {
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .container-barra {
        width: 1155px;
    }
}

@media (max-width: 768px) {
    .barra_sup {
        font-size: 12px;
    }

    .iconos-texto {
        margin-bottom: 1px;
    }

    .iconos-texto a {
        margin-left: 3px;
        margin-right: 3px;
    }

    .iconos-texto a svg {
        width: 16px;
        height: 16px;
    }

    .logo-gn {
        width: 100px;
        height: auto;
    }

    .logo-comunidad {
        width: 100px;
        height: auto;
    }
}