.transactionList, templates{
    display: block;
    width: auto;
    margin: 10px 10px 5px 10px;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.30), 1px 1px 6px rgba(0,0,0,0.22);
    border-radius: 5px;
}
.transactionListDate{
    display: block;
    width: auto;
    padding: 15px;
    color: #009688;
    font-weight: 800;
    border-bottom: 1px solid #bbb;
}
.transactionListItem{
    display: block;
    width: auto;
    overflow: hidden;
    padding: 3px 10px 3px 10px;
    min-height: 30px;
    border-bottom: 1px solid #bbb;
}
.transactionListItem .sum{
    display: inline-block;
    width: 100px;
    white-space: nowrap;
    line-height: 30px;
    padding: 0px auto;
    text-align: right;
    vertical-align: center;
    font-weight: 800;
}
.transactionListItem.EXPENSE .sum{
    color: red;
}
.transactionListItem.INCOME .sum{
    color: green;
}
.transactionListItem.TRANSFER .sum{
    color: #428bca;
}

.transactionListItem .walletImg{
    display: inline-block;
    width: 30px;
    text-align: center;
    padding: 0px 0px 0px 20px;
}
.transactionListItem .category{
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    padding: 0px 10px 0px 20px;
    text-align: center;
    line-height: 30px;
    font-weight: 800;
    color: #888;
}
.transactionListItem .transactionList_name{
    overflow: hidden;
    display: inline-block;
    float: right;
    white-space: nowrap;
    line-height: 30px;
    margin-right: 15px;
    font-weight: 400;
    color: #777;
}
.transactionListItem.draft{
    background-color: #eee;
    opacity: 0.4;
}

.templates .transactionListItem.draft, .templates .transactionListItem{
    background-color: #fff;
    opacity: 1;
    padding: 15px;
}