body {
    font-family: 'Gabarito', sans-serif;
    background-color: #2c2c2c;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    text-align: center;
    color: #fff;
    margin: 20px 0;
}

.v4 {
    color: #3cb882;
}

table {
    padding: 5px;
    width: 90%;
    border-collapse: separate;
    margin: auto;
    background-color: #23272a;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

tr {
    height: 40px;
}

td {
    padding: 5px;
    padding-left: 20px;
}

table.items td:first-child, 
table.items td:nth-child(3) {
    width: 100px;
}

table.items td:nth-child(2), 
table.items td:nth-child(4) {
    width: 100px;
}

.input-td {
    max-width: 55px;
}

.row {
    display: flex;
    align-items: center;
}

.spanmargin {
    margin: 0 10px;
}

img {
    width: 40px;
    height: auto;
}

input[type=number] {
    border-radius: 5px;
    border: 1px solid #000;
    background: #444;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    width: 90px;
}

input[type=number].price-percentage {
    width: 60px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #000;
    background: #444;
    color: #fff;
    padding: 5px;
    box-sizing: border-box;
}

.price {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.trash-icon {
    text-align: right;
    cursor: pointer;
}