﻿/******************************
   ConfirmationPage Stylesheet
 ******************************/

.confirmation-page {
    display: flex;
    flex-direction: column;

}

.confirmation-header {
    font-size: 28px;
    background-color: whitesmoke;
    width: 100%;
    padding: 20px;
    color: #00529b;
    font-weight: bold;
}

.confirmation-header img {
    max-height: 80px;
    padding-right: 10px;
}


.confirmation-body {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 20px;
    margin: auto;
    padding: 1rem;
    width: 65%;
}

.receipt-container {
    display: flex;
    flex-direction: column;
    margin: 3rem;
    justify-content: center;
    align-items: center;
}

.receipt-item {
    display: flex;
    flex-direction: row;
    background-color: rgba(201, 169, 166,0.2);
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 0.5rem;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    border-radius: 20px;
    margin-bottom: 1rem;
    width: 75%;
}

.receipt-item-info {
    width: 100%;
    font-size: 16px;
    
}

.receipt-item-image {
    margin-right: 1rem;
}

.receipt-item-info h3 {
    font-size: 20px;
    text-wrap: nowrap;
}

.receipt-item-info label { 
    padding: 0px 0.4rem 0px 0.4rem;
}

.confirmation-text {
    display: flex;
    align-items: center;
    padding: 2rem;
    justify-content: center;
}

.confirmation-text label {
    font-size: 24px;
}