<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.table_cart {
    width: 100%;
    overflow: scroll;
    font-size: 14px;
    margin-top: 60px;
}

.table_cart table {
    width: 100%;
    text-align: center;
    border-spacing: 4px;
    min-height: 240px;
}

.table_cart table tr:not(tr.head){
    height: 110px;

}

.table_cart table thead {
    background-color: var(--main--color);
    color: white;
}

.table_cart table thead th {
    padding: 15px;
}

.table_cart table tbody td {
    height: 110px;
    padding: 15px;
    border: 1px solid white;
    width: max-content;
    background-color: var(--ground--color);
}

.table_cart table tbody td:first-of-type {
    width: 100px;
    padding: 1px;
}

.table_cart table td img {
    height: 100%;
    width: 100%;
}

.table_cart table td input {
    text-align: center;
    font-size: 19px;
    width: 75px;
    font-weight: bold;
    height: 58px;
    border-radius: 7px;
    background-color: #eee;
    border: 1px solid;
}

.title:hover {
    color: var(--main--color);
}

.remove {
    cursor: pointer;
}

.remove:hover {
    background-color: black;
    color: var(--second--color);
}

.total {
    width: 106px;
}

.button {
    margin-top: 40px;
}

.button button,
.button a {
    text-decoration: none;
    margin-right: 10px;
    background-color: var(--main--color);
    color: white;
    border: none;
    padding: 12px;
    width: 162px;
    font-weight: bold;
    cursor: pointer;
}

.button button:hover,
.button a:hover {
    background-color: black;
    color: var(--second--color);
}

.data {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.data&gt;div {
    flex-basis: 48%;
}

.delivery_date,
.instructions,
.cart_totals {
    background-color: var(--ground--color);
    padding: 20px;
}

.additional .delivery_date p:first-of-type {
    display: inline-block;
}

.data h2 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 18px;
}

.data input {
    width: 40%;
    height: 33px;
    border: 1px solid #bbb8b8;
    font-size: 16px;
    padding: 5px;
    margin-bottom: 10px;
}

.data textarea {
    width: 100%;
    overflow: auto;
    height: 150px;
    border: 1px solid #bbb8b8;
}

.instructions {
    margin-top: 40px;
}

.cart_totals table {
    width: 100%;
    border: 1px solid #bbb8b8;
    border-spacing: 0px;
    margin-bottom: 10px;
}

.cart_totals table td {
    padding: 10px;
    height: 60px;
    border: 1px solid #bbb8b8;
}

.cart_totals {
    height: max-content;
}

.cart_totals button {
    text-decoration: none;
    margin-right: 10px;
    background-color: var(--main--color);
    color: white;
    border: none;
    padding: 12px;
    width: 162px;
    font-weight: bold;
    cursor: pointer;
}

.cart_totals button:hover {
    background-color: black;
    color: var(--second--color);
}

@media (max-width: 900px) {
    .data {
        display: block;
    }
}</pre></body></html>