* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: black;
    color: white;
}

img {
    width: 60px;
}

button {
    background-color: white;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    color: black;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

.msgBox {
    position: absolute;
    top: 20%;
    left: 50%;
    border: 2px solid white;
    background-color: blue;
    width: 360px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    padding: 5px;
}

.msgBox input {
    border: 1px solid white;
    padding: 5px;
    margin: 5px;
}

.msgBox button {
    width: 20%;
    margin: 5px 0;
    color: white;
    background-color: rgb(0, 255, 0);
}

.msgBoxName {
    position: absolute;
    top: 20%;
    left: 50%;
    border: 2px solid white;
    background-color: blue;
    width: 360px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    padding: 5px;
}

.msgBoxName input {
    border: 1px solid white;
    padding: 5px;
    margin: 5px;
}

.msgBoxName button {
    width: 20%;
    margin: 5px 0;
    color: white;
    background-color: rgb(0, 255, 0);
}

.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    padding: 0 5px;
}

.mid {
    width: 100%;
    margin: 5px 0;
}

.mid ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    border-top: 2px solid white;
    padding: 5px;
    border-bottom: 2px solid white;
}

.mid ul li {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.mid ul li:nth-child(2) {
    border-right: 2px solid white;
    border-left: 2px solid white;
}

.opts {
    margin: 5px 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.opts button {
    background-color: #3fbbc0;
    color: white;
    padding: 10px;
    margin: 0 3px;
}

.inps {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

.inps button {
    background-color: rgb(0, 255, 0);
    color: white;
    border-radius: 50%;
    padding: 3px;
}

input {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid white;
}

#qtde::-webkit-outer-spin-button,
#qtde::-webkit-inner-spin-button,
#limitMoney::-webkit-outer-spin-button,
#limitMoney::-webkit-inner-spin-button,
#valor::-webkit-outer-spin-button,
#valor::-webkit-inner-spin-button {
    display: none;
}

#item {
    width: 190px;
    margin: 0 0 0 5px;
}

#qtde {
    width: 55px;
}

#valor {
    width: 60px;
}

.box {
    width: 100%;
    height: 65vh;
    margin: 3px 0;
}

#tituloLC {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(0, 255, 0);
    border-radius: 18px;
    width: 100%;
    margin: 0 auto;
}

#tituloLC span {
    margin: 0 20px;
}

.box button {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 3px;
}

.box ul {
    padding: 5px 0;
    list-style: none;
    overflow-y: scroll;
    height: 100%;
}

.box ul::-webkit-scrollbar {
    display: none;
}

.box ul li {
    border: 2px solid white;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: -2px 0;
    font-size: 0.9rem;
}

.box ul li span:nth-child(1) {
    width: 130px;
    text-align: center;
}

.box ul li span:nth-child(2) {
    width: 80px;
    text-align: center;
    border-left: 2px solid white;
    border-right: 2px solid white;
}

.box ul li span:nth-child(3) {
    width: 80px;
    text-align: right;
}

.box ul li button {
    text-align: center;
    width: 35px;
}

footer {
    padding: 10px;
    text-align: center;
    font-size: .9rem;
    border-radius: 12px;
    color: rgb(0, 255, 0);
    /*#3fbbc0*/
}

.some {
    display: none;
}

/*.material-symbols-outlined {
    padding: 5px;
    border-radius: 50%;
}*/