<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.order {
    margin-top: 50px;
    margin-bottom: 50px;
}

.order main {
    padding: 30px 30px 30px 50px;
}

.order .delivery-address {
    position: relative;
}
.order .delivery-address .location-marker-blue {
    position: absolute;
    width: 26px;
    left: -30px;
    top: 4px;
}
.order .delivery-address h3 {
    color: #0b1f8f;
}
.order .delivery-address ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.order .delivery-address ul li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}
.order .delivery-address ul li img.edit-pencil {
    width: 20px;
    cursor: pointer;
}

.order .delivery-time {
    color: #0b1f8f;
}
.order .delivery-time .clock-blue {
    width: 18px;
    position: absolute;
    left: 22px;
}

.order .your-order &gt; h5 {
    background-color: #D6D5E4;
    padding: 2px 30px;
    color: #0b1f8f;
}

.order .cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.order .cart-items li {
    display: flex;
    padding: 15px;
}
.order .cart-items li:not(:last-of-type) {
    border-bottom: 1px solid #B3B3B3;
}
.order .cart-items li .left {
    padding-right: 15px;
}
.order .cart-items li .left img {
    max-width: 100px;
}

.order .cart-items li .middle .product-name {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: Quicksand-Medium;
    color: #4D4D4D;
}
.order .cart-items li .middle .product-weight {
    font-size: 0.75rem;
    color: #0b1f8f;
}
.order .cart-items li .middle .product-price {
    color: #fcdb1e;
    font-family: Quicksand-Medium;
}
.order .cart-items li .middle .discount {
    font-size: 0.75rem;
    display: flex;
}
.order .cart-items li .middle .discount .price {
    text-decoration: line-through;
}
.order .cart-items li .middle .discount .percentage {
    margin-left: 8px;
}

/* Cart exptra */
.order .cart-extra {
    list-style: none;
    margin: 0;
    padding: 0;
}
.order .cart-extra li {
    font-family: Quicksand-Light;
    padding: 15px;
    border-top: 1px solid #B3B3B3;
    border-bottom: 1px solid #B3B3B3;
    display: flex;
    justify-content: space-between;
    color: #0b1f8f;
}
.order .cart-extra li:last-of-type {
    font-family: Quicksand-SemiBold;
}</pre></body></html>