.lista-de-itens ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
}

.lista-de-itens ul li:last-child {
    border: none;
}

.lista-de-itens ul {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.lista-participantes img {
    max-width: 60px !important;
}

.lista-participantes {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

input[type="number"] {
    border: 2px solid #000;
    border-radius: 20px;
    text-align: center;
    padding: 5px 10px;
    color: #000;
}

.churrasco-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
}

.churrasco-list .item {}

.item {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1.1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 100px;
}

/* On mouse-over, add a grey background color */
.item:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.item input:checked~.checkmark {
    background-color: #dc1b24;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.item input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.item .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.botoes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 10px;
}

.botoes button {
    flex: 1;
}

.mostrar-resultado {
    margin: 5% 0;
}

.mostrar-resultado h3 {
    text-align: center;
}

button#js-calc-bbq,
button#js-calc-recalcular {
    background: #dc1b24;
}

button#js-calc-print {
    background: #333;
}

.lista-de-itens {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}