<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(style.css);

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

div#carrinho {
    padding: 30px 60px;
}

div#carrinho .titulo {
    display: block;
    padding: 20px;
    width: 100%;
    background: var(--azul-escuro);
    border-radius: 10px;
    font-size: 23px;
    color: #fff;
}

div#carrinho .sem-produto {
    margin-top: 40px;
    border-top: 2px solid #cecece;
    width: 100%;
}
div#carrinho .sem-produto p {
    margin: 10px 20px;
    font-size: 17pt;
}

/*###################################*/

div#carrinho .produtos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}
div#carrinho .produtos table {
    width: 100%;
    border: 1px solid #cecece;
    border-collapse: collapse;
}
div#carrinho .produtos table :is(tr, td, th) {
    border: 1px solid #cecece;
}
div#carrinho .produtos table :is(td, th) {
    text-align: center;
}

div#carrinho .produtos table tr td:nth-child(1) {
    width: 75px;
    height: 75px;
}
div#carrinho .produtos table tr td:nth-child(2),
div#carrinho .produtos table tr th:nth-child(2) {
    text-align: left;
    padding-left: 15px;
}
div#carrinho .produtos table tr td:nth-child(3) {
    width: 130px;
}
div#carrinho .produtos table tr td:nth-child(4) {
    width: 150px;
    padding: 0px 10px;
}
div#carrinho .produtos table tr td:nth-child(4) form input {
    border-radius: 3px 0px 0px 3px;
    -webkit-appearance: none !important;
    -moz-appearance: textfield;
    appearance: textfield;
}
div#carrinho .produtos table tr td:nth-child(4) form button {
    border: none;
    outline: none;
    background: #43b155;
    color: #fff;
    border-radius: 0px 3px 3px 0px;
    cursor: pointer;
}
div#carrinho .produtos table tr td:nth-child(5) {
    width: 65px;
}

div#carrinho .produtos table form {
    display: flex;
    justify-content: center;
}
div#carrinho .produtos .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
div#carrinho .produtos .buttons a {
    display: block;
    color: #fff;
    padding: 5px;
    font-weight: bold;
    width: 250px;
    text-align: center;
    font-size: 9pt;
    border-radius: 3px;
}
div#carrinho .produtos .buttons a:nth-child(1) {
    background-color: var(--vermelho);
}
div#carrinho .produtos .buttons a:nth-child(2) {
    background-color: var(--azul-escuro);
}</pre></body></html>