.toast-box.toast-top.show {
    top: 0;
    z-index: 9999;
    font-size: 15px;
    padding: 15px 25px;
}
.toast-box.toast-top.show strong {
    font-weight: 900;
}

#appCapsule ~ .toast-box.toast-top.show {
    padding-top: 80px;
}

.appBottomMenu .action-button.bg-dark {
	opacity: 1;
}

.appBottomMenu.bg-danger .text-muted {
	color: #ff6868 !important;
}

.custom-control .custom-control-input:checked ~ .custom-control-label:before {
    background: #ed4434 !important;
    border-color: #ed4434 !important;
}

.accordion .item.transactions .accordion-header .btn {
    padding: 8px 35px 8px 16px;
    min-height: 60px;
}

.accordion .item.transactions .accordion-header .btn .transaction_amounts {
    text-align: right;
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.accordion .item.transactions .text-muted {
    color: #9c9c9c !important;
}

.accordion .item.transactions .accordion-content {
    padding: 0 16px 10px;
    line-height: 95%;
}

.accordion .item.transactions .accordion-content p{
    margin-bottom: 0.8rem;
}
.accordion .item.transactions .accordion-content p:last-child{
    margin-bottom: 0;
}

.accordion .item.transactions .accordion-header:has(+ .accordion-body.show) {
    background-color: #f0f0f0;
}
.accordion .item.transactions .accordion-body.show {
    background-color: #f0f0f0;
}

.card.product-card .price {
	color: #ed4434;
}

.card.product-card .card-body {
	padding: 0 0 8px 0;
}

.card.product-card .image {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.card.product-card .product-image-container {
  width: 100%;
}

.card.product-card .product-image-container img {
  width: 100%;
  aspect-ratio: 1 / 1;  /* defining the aspect ratio of the image */
  object-fit: cover;    /* making sure the image isn't distorted */
}

.modal.action-sheet .modal-content .modal-header .modal-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.cart-list-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid lightgray;
    align-items: center;
}

.cart-list-item-name {
    flex-grow: 1;
    text-align: left;
    line-height: 1.2rem;    
}

.cart-list-item-total {
    padding-right: 10px;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
    white-space: nowrap;
    text-align: right;
}

.action-button-list > li .cart-list-item .remove-item, .action-button-list > li .cart-list-item .decrease-qty {
    flex-basis: content;
    padding: 10px;
    margin-left: 5px;
    min-height: 32px;
    border-radius: 5px !important;
    justify-content: flex-end;
}