.checkOut-transactions{
    background: var(--card-background-color);
    color: var(--card-color);
    /*border-radius: var(--border-radius);*/
    padding: 1rem;
    margin-bottom: 2rem;
    /*box-shadow: var(--box-shadow);*/
}


.transaction {
    display: grid;
    gap: 1rem;
    border-bottom: 2px solid var(--bg-secondary-colour);
    margin-bottom: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, .5fr));
    
}


.transaction-item {
    padding: 5px;
    width: 200px;
    height: 150px;
    margin-top: 10px;
    text-align: center;
}

.transaction-no-sales-items {
    margin: 5rem;
    font-weight: bold;
    font-size: x-large;
    text-align: center;
}


.transaction-item-quantity-price {
    padding: 5px;
    width: 200px;
    height: 150px;
    margin-top: 10px;
    text-align: right;
}
.transaction-item-buttons {
    font-weight: bold;
    text-align: right;
    font-size: 28px;
 
   

}
.transaction-email-container{
    
}
.transaction-email{
    
}

.transaction-re-enter-email{
    
}

.transaction-customer-name-email{
    text-align: left;
    color: black;
    font-weight: bold;
 
}

.transaction-title-customer-name-email{
    text-align: left;
    color: black;
    font-weight: bold;
    font-size: large;
}

.transaction-location-name{
    text-align: left;
    color: black;
    font-weight: bold;
    font-size: large;
}
.transaction-location-phone{
    text-align: left;
    color: black;
    font-weight: bold;
    font-size: large;
}

.transaction-totals-grid{
    display: grid;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--bg-secondary-colour);
    grid-template-columns: 1fr 1fr;
}
.transaction-subtotals-text{
    font-weight: bold;
    text-align: left;
    font-size: 20px;
}
.transaction-subtotals{
    font-weight: bold;
    text-align: right;
    font-size: 20px;
}
.transaction-totals-text{
    font-weight: bold;
    text-align: left;
    font-size: 28px;
}
.transaction-totals{
    font-weight: bold;
    text-align: right;
    font-size: 28px;
}


.infocorp-header-text{
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}

.image-page-header-text {
    position: var(--header-image-text-position);
    /*text-shadow: var(--header-image-text-text-shadow);*/
    font-family: var(--header-image-text-font-family);
    font-size: var(--header-image-text-font-size);
    color: black;
    margin: var(--header-image-text-margin);
    line-height: var(--header-image-text-line-height);
    font-weight: var(--header-image-text-font-weight);
    letter-spacing: var(--header-image-text-letter-spacing);
    padding: var(--header-image-text-padding);
    top: var(--header-image-text-top);
    left: var(--header-image-text-left);
    transform: var(--header-image-text-transform);
}

.loading-container {
    padding: 20px;
}


@media screen and (max-width: 700px){
    .image-page-header-text {
        padding: 0;
        top: 0;
        font-size: 2.5rem;
    }
}


