.title {
    font-size: 2rem;
}

.receipts{
    margin-top: 10px;
    margin-bottom: 10px;
    border-width: 1px;
    border-color: #BBB;
    border-style: solid;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #FFF;
    border-radius: 18px;
    min-height: 100px;
}

.receipt-item {
    padding-top: 3px;
    padding-bottom: 3px;
    align-items: center;
    display: flex;
}

.receipt-item label {
    margin-bottom: 0;
    margin-left: .5rem;
    min-width: 110px;
}

.receipt-status {
    background-repeat: no-repeat;
    width: 34px;
    height: 21px;
    float: right;
    background-position-x: center;
    background-position-y: 2px;
}

.receipt-status-pending-authorization {
   	background-image: url(/images/icons/receipts/round_warning_circle.png);
}

.receipt-status-authorized {
   	background-image: url(/images/icons/receipts/round_check_circle.png);
}

.receipt-status-in-review {
   	background-image: url(/images/icons/receipts/round_search_circle.png);
}

.receipt-status-cancelled {
   	background-image: url(/images/icons/receipts/round_close_circle.png);
}

.tracing-chat-modal .title {
	font-size: 1rem;
}

.chat-area .chat-messages-area {
	background-color: #EFE9DD;
}

.chat-area .chat-messages-area .chat-messages {
    height: 47vh;
	background-color: #EFE9DD;
	overflow-y: auto;
}

.chat-area .chat-input {
	min-height: 60px;
	background-color: #E9E7DF;
	display:flex;
	align-items:center;
}

.chat-area .chat-input input {
	border-width: 0;
}

.chat-area .chat-input button {
	background-color: #F0F0F0;
	border-width: 0;
    padding: 4px 5px;
}

.chat-area .chat-input button img {
	height: 28px;
}

.message-right {
	display:flex;
	justify-content:flex-end;
	align-items:center;
}

.message {
	padding: 6px;
	border-radius: 6px;
	font-size: 12px;
	margin-bottom: 6px;
}

.admin-message {
	background-color: #FEFEFE;
	position: relative;
    margin-left: 12px;
    margin-right: 12px;
	box-shadow: -0 2px #D7D2CB;
}

.admin-message:before {
	content: '';
    position: absolute;
    left: 0;
    top: 0%;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-right-color: #FEFEFE;
    border-left: 0;
    margin-top: 0;
    margin-left: -8px;
    border-top: 0;
}

.user-message {
	background-color: #E2FEC4;
	position: relative;
    margin-right: 12px;
    margin-left: 12px;
	box-shadow: 0 2px #D7D2CB;
}

.user-message:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0%;
	width: 0;
	height: 0;
	border: 11px solid transparent;
	border-left-color: #E2FEC4;
	border-right: 0;
	margin-top: 0;
	margin-right: -8px;
    border-top: 0;
}

.message-date {
    font-size: .5rem;
    color: #888585;
}

.admin-message-date {
    float: right;
}

.authorize-receipt-modal .modal-header {
	display: flex;
	justify-content: center;
	align-items: center;
}

.authorize-receipt-modal .modal-title {
	font-size: 1rem;
	color: #545454;
}

.authorize-receipt-modal .modal-body {
	padding-top: 0;
}

.authorize-receipt-modal .modal-body hr {
	margin-top: 0;
}

.authorize-receipt-modal .modal-body .employee-name-title {
	font-size: 1rem;
    text-align: center;
	color: #545454;
}

.authorize-receipt-modal .pdf-viewer {
    width: 100%;
    height: calc(100vh - 260px);
    overflow: scroll;
}

.authorize-receipt-modal .pdf-viewer-canvas {
    width: 175%;
    background-color: #E1E1DF;
}

.disclaimer {
	font-size: .65rem;
    color: #888888;
}

.authorize-receipt-modal-footer {
	width: 100%;
}

.authorize-receipt-modal-footer .buttons-container {
    margin-left: auto;
	margin-right: auto;
}