.barra-icones {
    background: url('/assets/images/barra_de_icones.png') repeat-x top left;
    background-size: auto 40px;
    height: 40px;
}

/* Paginação */
ul.pagination {
    display: flex;
    justify-content: center;
    margin: 50px auto;

    li {
        border: 1px solid #E1E7EF;
        margin-right: 4px;
        border-radius: 8px;

        a,
        &.active span,
        &.disabled span {
            display: block;
            padding: 7px 15px;
            text-decoration: none;
            color: #333;
        }

        &.active {
            background: var(--pv-blue);
            border-color: var(--pv-blue);

            span {
                color: white;
            }
        }

        &:not(.active, .disabled):hover {
            border-color: #bbb;
        }

        &.disabled {
            border-color: transparent;
            cursor: default;
        }
    }
}

/* Notícia */
article.noticia .prose {
    p {
        margin-bottom: 15px;
        text-align: justify;
    }

    img[style*="float"]{
        width: 400px !important;
        height: auto !important;
        margin: 0 !important;
    }

    img[style*='float:right'],
    img[style*='float: right'] {
        margin-left: 15px !important;
    }

    img[style*='float:left'],
    img[style*='float: left'] {
        margin-right: 15px !important;
    }

    /* Legenda de fotos na notícia */

    .legenda {
        text-align: center;
        margin-top: 10px;
        color: var(--pv-blue);
    }

    .artigo-img-wrap {
        display: inline-flex;
        flex-direction: column;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .artigo-img-wrap[style*='float:none'] img ,
    .artigo-img-wrap[style*='float: none'] img ,
    .artigo-img-wrap:not([style*='float']) img {
        width: 100% !important;
        height: auto !important;
    }

    .artigo-img-wrap[style*=left] .legenda {
        padding-right: 15px;
        max-width: 400px !important;
        width: unset;
    }

    .artigo-img-wrap[style*=right] .legenda {
        padding-left: 15px;
        max-width: 400px !important;
        width: unset;
    }
}
