* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    background: #eceef1;
    font-weight: 500;
}
img {
    max-width: 100%;
}
.receipt-container {
    width: 320px;
    margin: 20px auto;
    position: relative;
    background: #fff;
    box-shadow: 0 2.4px 2.4px 0px rgba(31, 22, 22, 0.1)
}
.receipt-header {
    text-align: center;
    padding: 10px 20px;
}
.receipt-header .receipt-logo strong {
    display: block;
    text-transform: uppercase;
    margin-top: 5px;
}
.receipt-header .receipt-address {
    margin: 5px 0;
}
.receipt-body {
    padding: 10px 20px;
}
    .receipt-body .cashier-name {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        /*margin-bottom: 5px;*/
        margin-bottom: 20px;
    }
.receipt-body .cashier-name span:last-child {
    text-transform: capitalize;
}
.receipt-body .receipt-details > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.receipt-body .reciept-amounts > div,
.receipt-body .reciept-extra-details > div,
.receipt-body .receipt-details > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.receipt-body .receipt-items {
    margin: 25px 0;
}
.receipt-body .reciept-amounts {
    margin-bottom: 25px;
}
.reciept-extra-details {
    margin-bottom: 40px;
}
.reciept-url {
    text-align: center;
    word-break: break-all;
    padding: 0 20px;
    margin-bottom: 25px;
}
.receipt-footer {
    text-align: center;
}
.receipt-footer p {
    padding: 15px 0;
    font-size: 15px;
}

.receipt-body .receipt-items .receipt-item-inner {
    margin-bottom: 30px;
}
.receipt-body .receipt-items .receipt-item-inner .receipt-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.receipt-body .receipt-items .receipt-item-inner .receipt-item-bottom {
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
    flex-direction: column;
}