.defaultTable {
    width: auto;
    background: #ffffff0d;
    padding: 15px;
    font-size: 14px;
    display: inline-block;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    max-width: 655px;
}

.rowItem {
    display: flex;
    border-bottom: 1px solid #ffffff14;
    align-items: center;
}

.rowItem>div:first-of-type {
    width: 220px;
    border-right: 1px solid #ffffff14;
    padding: 8px;
}

.rowItem input {
    border: none;
    padding: 5px;
    margin-left: 5px;
    border-radius: 4px;
    width: 50px;
    transition: all .5s;
    background: none;
    color: #999;
}

.rowItem:last-of-type {
    border: none;
}

.rowItem input:focus {
    border: none;
    background: #2196f330;
    box-shadow: none;
    outline: none;
}

.defaultTable>div {
    margin-right: 25px;
}