.tables {
    display: flex;
    align-items: flex-start;
}
.cardtable {
    display: none;
}

.clickable {
    cursor: pointer;
}

.hide {
    display: none;
}

.linha-categoria {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.linha-categoria img{
    height: auto;
    width: 15px;
}

table {
    margin: 10px;
}

@media screen and (max-width: 700px) {
    table {
        margin: 10px 0;
    }
    .tables {
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .desktop {
        display: none;
    }
    .cardtable {
        display: flex;
        width: 100%;
    }
    .cardtable .module {
        width: 100%;
    }
    .cardtable .module{
        width: 100%;
    }
    .cardtable .module .itensrow {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 3px 0;
    }
    .cardtable .module .itensrow span {
        text-align: center;
        margin: 1px 2px;
    }
    .cardtable .module .opcoes {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cardtable .module .opcoes #btn {
        font-size: 15px;
        height: 10px;
        width: 10px;
        line-height: 9px;
        text-align: center;
    }
}