/* Cart & Checkout pages */
#loyalty-reward-message {
	display: flex;
}
.loyalty-reward-message {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.loyalty-reward-message img {
	margin-right: 5px;
}

/* Product page */
.loyalty-earning-points-message-content {
	display: inline-flex;
	align-items: center;
    padding: 10px;
    margin: 20px 0;
    font-size: 14px;
}
.loyalty-earning-points-message-content img {
	margin-right: 5px;
}
.loyalty-shop-message-content {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
    margin: 0 0 16px 0;
}
.loyalty-shop-message-content img {
	margin: 0 4px 0 0 !important;
}

/* My account */
.loyalty-points-card {
	border: 1px solid #ccc;
	padding: 30px 40px;
	border-radius: 8px;
	background-color: #f9f9f9;
	max-width: 100%;
	margin: 0 auto 20px;
	display: flex;
	flex-direction: column;
}

.loyalty-points-card h3 {
	text-align: center;
	margin-bottom: 40px;
}

.loyalty-card-container {
	display: inline-flex;
	align-items: center;
    justify-content: space-between;
}

.loyalty-card-level {
	width: 36%;
	display: flex;
	flex: 1;
	margin-bottom: 15px;
}

.loyalty-card-details {
	width: 64%;
	display: block;
	margin-bottom: 15px;
}

.loyalty-card-level {
	font-weight: bold;
	margin-right: 10px;
	flex: 0.4;
}

.loyalty-card-points-details {
	display: flex;
	padding: 10px;
	margin-bottom: 30px;
	justify-content: space-between;
}

.loyalty-card-available-points, .loyalty-card-earning-points {
	width: 48%;
	display: grid;
}

.loyalty-card-available-points {
	border: solid;
	border-color: #eee;
	border-width: 0 4px 0 0;
}

.loyalty-card-points {
	font-size: 34px;
}

.loyalty-levels-bar {
	margin-top: 15px;
	width: 100%;
	padding: 10px;
	text-align: center;
	border-radius: 4px;
}

.circle-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0; /* Center the circle */
}

.circular-chart {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke: #FF6A6A;
    transition: stroke-dasharray 0.6s ease;
}

.level-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 20px;
    font-weight: bold;
    color: #333;
}

.progress-bar {
	background-color: #eee;
	border-radius: 5px;
	overflow: hidden;
	height: 10px;
	margin-top: 5px;
	margin-bottom: 26px;
}

.progress-bar-fill {
	background-color: #FF6A6A;
	height: 100%;
	width: 0;
	transition: width 0.6s ease;
}

.loyalty-level-notes {
	font-size: 12px;
	text-align: left;
}

.loyalty-points-table-button {
	text-align: right;
}

/*
** Mobile screen
*/
@media (max-width: 767px) {
	.loyalty-points-card {padding: 14px 20px 0;}
	.loyalty-card-container {justify-content: center; flex-wrap: wrap;}
	.loyalty-card-details {width: 100%; margin-top: 10px;}
}