:root {
	--star-rating-size: medium;
	--star-rating-color: #eee;
	--star-rating-background: orangered;
}

.addng-star-ratings {
	--percent: calc(var(--actual-rating) / 5 * 100%);
	display: inline-block;
	font-size: var(--star-rating-size);
	font-family: 'Times New Roman', Times, serif;
	line-height: 1;
}

.addng-star-ratings::before {
	content: "★★★★★";
	letter-spacing: 1px;
	background: linear-gradient(90deg, var(--star-rating-background) var(--percent), var(--star-rating-color) var(--percent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.addng-star-ratings span {
	font-size: x-small;
	font-family: sans-serif;
	color: #444;
}

.addng-star-ratings span:first-of-type {
	background-color: #444;
	padding: 1px 3px;
	color: white;
	border-radius: 2px;
	font-weight: bold;
}

.addng-product-list {
	margin: 20px 10px;
}

.addng-product-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.addng-product-list li {
	margin-bottom: 1em;
	border-bottom: 1px solid #dddddd;
	padding-bottom: 15px;
}

.addng-product-list li:last-of-type {
	border: 0;
}

.addng-product-image {
	width: 15%;
	text-align: center;
	padding: 0 10px 0 5px;
	max-width: 75px;
	min-width: 50px;
}

.addng-product-image>img {
	max-width: 100%;
	max-height: 75px;
	margin: auto;
}

.addng-product-name {
	font-size: small;
	font-weight: bold;
	text-transform: capitalize;
	color: #222;
}

.addng-product-name-english {
	font-size: smaller;
	color: #666666;
}

.addng-product-sku-labels span {
	font-weight: bold;
	font-size: 12px;
	text-transform: capitalize;
	margin: 0 5px;
	cursor: pointer;
	border-radius: 5px;
	border: 1px solid #dddddd;
	background-color: #eeeeee;
	padding: 1px 4px;
}

.addng-product-content {
	display: flex;
	justify-content: left;
}

.addng-product-content p {
	display: none;
	font-size: smaller;
	margin: 5px 0;
	color: #666666;
}

.addng-product-price {
	font-size: .85em;
	letter-spacing: .5px;
}

.addng-shop-name {
	font-weight: normal;
	font-size: x-small;
}

.addng-shop-logo {
	margin: 1px 5px 0 0;
	width: 16px;
}

.addng-shop-logo>img {
	width: 100%;
}

.addng-shop-name-price {
	display: flex;
	justify-content: center;
}

.addng-product-name-sub {
	font-size: medium;
	font-weight: bold;
}

.addng-product-name-sub>span {
	font-size: small;
	color: #666666;
	font-weight: normal;
}

.addng-list-cta-button {
	font-size: small;
	text-align: center;
	padding: 1px;
	display: block;
	margin-right: 10px;
	min-width: 75px;
	text-transform: lowercase;
	margin-top: 8px;
	background-color: white;
	color: black;
	border: 1px solid var(--brand-border-color, #666);
	box-shadow: 0px 1px 1px #999;
}

.addng-list-cta-button:hover {
	box-shadow: unset;
	border: 1px solid var(--brand-color, #444);
}

.addng-list-cta-button a {
	text-decoration: none;
}

.addng-product-sku {
	font-size: small;
}

.shopify-store {
	cursor: pointer;
}

.addng-discount-code {
	font-size: small;
	margin-top: 0.5em;
	background-color: #ffe;
	padding: 4px;
	display: none;
}

.addng-discount-code>span {
	font-weight: bold;
	letter-spacing: 1px;
}

.addng-listing-section-heading {
	background-color: var(--brand-color, #f5f5f5);
	text-align: center;
	padding: 5px 0;
	font-weight: bold;
	margin: 1em 0;
	font-size: small;
}

@media (max-width : 800px) {
	.addng-list-cta-button {
		margin-right: 8px;
	}
}