/* widget de noticias mais lidas */
#widget-mais-lidas{
    padding: 0 15px;
    padding-bottom:30px;
    width:100%;
}

#widget-mais-lidas .widget-mais-lidas-list{
    list-style: none;
    counter-reset: mais-lidas-counter;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    width: 100%;
}

#widget-mais-lidas .widget-mais-lidas-item{
    counter-increment: my-awesome-counter;
    position: relative;
    display: block;
    width: 100%;
    margin-bottom:15px;
}

#widget-mais-lidas .widget-mais-lidas-item:last-of-type{
    margin-bottom:0;
}

#widget-mais-lidas .widget-mais-lidas-item::after {
    content: "0" counter(my-awesome-counter);
    font-weight: bold;
    font-family: 'Roboto' , 'Arial' , 'Arial', 'sans-serif';
    line-height: 1;
    display: block;
    width: 60px;
    height: 60px;
    font-size: 60px;
    text-align: center;
    letter-spacing: -5px;
    color:var(--nd-azul);
    position: absolute;
    left:0;
    top:0;
}

#widget-mais-lidas .widget-mais-lidas-item .mais-lida{
    position: relative;
    width: 100%;
    display: block;
    padding-left: 75px;
    left:0;
    top:0;
    padding-top:5px;
    min-height: 60px;
    margin:0;
    font-size: 14px;
    color:#444;
    font-family: 'Merriweather' , 'Lucida Sans Unicode', 'serif';
    font-weight: 700;
    line-height: 1.2;
}

@media only screen and (min-width:768px) {

    #widget-mais-lidas{
        padding: 0;
        padding-bottom: 0;
    }

}

