.aui{

    .topo-entrega{
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
        padding: 20px 0 15px 0;
        border-bottom: 1px solid #ddd;
        margin: 0;
        flex-direction: row;
    }

    .busca{
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .topo-entrega{
            flex-direction: column;
            align-items: stretch;
        }

        .busca{
            width: 100%;
            box-sizing: border-box !important;
        }
    }

    .titulo-casa-entrega, .titulo-casa-entrega:hover, .titulo-casa-entrega:active, .titulo-casa-entrega:visited, .titulo-casa-entrega:focus{
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        padding: 5px 10px;
    }

    .titulo-camara-entrega{
        background-color: rgb(25, 135, 84);
    }

    .titulo-senado-entrega{
        background-color: rgb(22, 140, 205);
    }

    .grid-entrega{
        column-count: 6;
        column-gap: 10px;
        padding: 0 10px;
        margin-bottom: 2em;
    }
    @media (max-width: 1024px) {
        .grid-entrega {
            column-count: 4;
        }
    }
    @media (max-width: 768px) {
        .grid-entrega {
            column-count: 2;
        }
    }

    .grid-partido-entrega{
        font-weight: bold;
        display: flex;
        align-items: center;
        text-align: center;
        gap: 5px;
        margin-bottom: 5px;
    }

    .grid-partido-camara-entrega{
        color: rgb(25, 135, 84);
    }

    .grid-partido-senado-entrega{
        color: rgb(22, 140, 205);
    }

    .grid-texto-entrega{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 5px;
    }

    .aviso{
        padding: 10px 0;
    }

    .seta{
        padding-left: 15px;
    }

}