.shipping-bar-container {
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.shipping-bar-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.total-bar-message {
    font-size: 13px;
    color: #333;
    margin-top: 8px;
}

.progress-bar-container {
    width: 80%;
    margin: 0 auto;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;	
}

.progress-bar {
	width: 80%;
    height: 20px;
    background-color: #4CAF50; /* Green color for progress */
    text-align: center;
    line-height: 20px;
    color: white;
    transition: width 0.4s ease;
}

.icon-bar-container {
	display: flex; 
	width: 80%;
	margin: 0 auto;
	align-items: center;
	justify-content: flex-end;
}

.progress-shipping-icon {
	width: 75%;
	text-align: right;
	font-size: x-small;
}

.progress-shipping-icon img {
	display: inline;
}

.progress-gift-icon {
	width: 25%;
	text-align: right;
	font-size: x-small;
}

.progress-gift-icon img {
	display: inline;
}