/* Tabela de Portais */
.tabcont{
    width:100%;
    height:auto;
    overflow-x:scroll;
}

/* Linhas de Portais */
table.portais tr{
    transition:0.2s;
}

/* Cores Diferentes a Cada Linha */

/* Efeito Hover nas Linhas da Tabela */
table.portais tr:hover td{
    cursor:pointer;
    background-color:rgba(1,1,1,0.1);
    transition:0.2s;
}

/* Linhas de Portais Desativados */
table.portais tr.desativadas{
    background-color:#A4A4A4;
}

/* Células Título da Tabela */
table.portais th{
    font-family: 'Roboto', sans-serif;
    font-size:14px;
    font-weight:500;
    color:#555;
    text-transform:uppercase;
    padding:15px 0;
}

/* Última Célula Título de Cada Linha */
table.portais tr th:last-child{
    border-right:0;
}

/* Células da Tabela */
table.portais td{
    font-family: 'Open Sans', sans-serif;
    font-size:13px;
    font-weight:500;
    padding:0 10px;
    border-right:1px solid rgba(1,1,1,0.1);
}

/* Username do Portal */
table.portais td:nth-child(3) a{
    font-weight:600;
    text-transform:uppercase;
    color:#4baba9;
}

/* Última Célula de Cada Linha */
table.portais tr td:last-child{
    border-right:0;
}

/* Selects da Tabela */
table.portais td select{
    padding:0;
    margin:0;
    margin-top:15px;
    border:0;
    border-bottom:1px solid rgba(1,1,1,0.1);
    background-color:rgba(1,1,1,0);
}

/* Link Check do Portal */
table.portais a.check{
    color:#ccc;
    transition:0.2s;
}

/* Hover Link Check */
table.portais a.check:hover{
    color:green;
    transition:0.2s;
}

/* Link Times do Portal */
table.portais a.times{
    color:#ccc;
    transition:0.2s;
}

/* Hover Link Times */
table.portais a.times:hover{
    color:red;
    transition:0.2s;
}