/*
Customização de layout para cadastro de cheque
*/
/* 
    Created on : 25/05/2016, 10:48:30
    Author     : Alex V-F
*/
/* Bolinha do status*/
.statusTrocaCheque:after {
    content:"";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    float: left;
    border: 0.1px #272727 solid;
}

.statusChequeEmitente:after {
    content:"";
    display: block;
    margin-top: 22px; 
    width: 28px;   
    height: 28px;
    position: absolute;
} 

/* cores de status referente aos cheques de cada emitente*/
.LIBERADO:after {
    background: #04B404; /*verde*/
}

.COMPENSADO:after {
    background: #1578C9; /*alzul*/
}

.DEVOLVIDO:after {
    background: #8d24aa; /*roxo*/
}

.RESTRICAO:after {
    background: #fa3b39; /*vermelho*/
}


/* cores de cada status*/
.SIMULACAO:after {
    background: #C7D1D7; /*cinza*/
}

.PENDENTE:after {
    background: #f77014; /*laranja*/
}

.EFETUADA:after {
    background: #1578C9; /*alzul*/
}

.CANCELADA:after {
    background: #fa3b39; /*vermelho*/
}