        .manchetes-top > span{
            border-right: solid 2px #C7F3E9;
            border-left: solid 2px #C7F3E9;
        }

        /* css abaixo movido do res/app.css */

        .manchetes-top {
            width: 100%;
            display: flex;
            border-top: solid 2px;
            border-bottom: solid 1px #ccc;
            height: 42px;
            overflow:hidden;
            align-items: center;
            margin-bottom: 15px; }
        .manchetes-top > span {
            display: inline-block;
            padding: 0 5px;
            line-height: 1;
            font-size: 12px;
            text-transform: uppercase;
        }
        .manchetes-top > a {
            display: none;
            padding-left: 10px;
            flex: 1;
            font-size: 16px;
            text-decoration: none;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            opacity: 0;
            text-overflow: ellipsis;
            transition: all 900ms ease-in-out;
            transform: translateX(50%);
        }

        .manchetes-top a.ativo {
            display: block;
            opacity:1;
            transform: translateX(0px) translate3d(0, 0, 0);
        }

        
                
                

