#legend_section table {
	margin: auto;
}

#legend_section .elements_line {
	float: left;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	border: 1px solid #535a5e;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#legend_section>h3 {
	font-size: 19px;
	margin-top: 30px;
}

.legend-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: flex-start;
}

.discount-info-txt {
	padding: 8px 0;
	font-size: 14px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 200px;
}

.legend-color {
	width: 24px;
	height: 24px;
	border-radius: unset;
	border: 1px solid #5F5F5F;
	flex-shrink: 0;
	background-color: var(--product-color, #ccc);
}

.legend-color:not([style*="background-color"]) {
  background-color: #ccc;
}

.legend-color.unavailable {
  background-color: var(--unavailable-color, #888);
}

.legend-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-color);
}

.legend-name,
.legend-price {
	font-size: 14px;
	color: var(--text-color);
}

.legend-unavailable {
	color: var(--text-color);
}

.info-button {
	font-size: 18px;
	background: none;
	border: none;
	padding: 0.25rem;
	color: var(--txt-color-secondary);
	cursor: pointer;
}

.legend-break {
	flex-basis: 100%;
	height: 0;
}

.legend_product {
	display: block;
	width: 100px;
	margin-bottom: 15px;
}

.legend_product.discount-product {
	width: unset;
}

#legend_section .legend-click-icon,
#legend_section .legend-unclick-icon {
	background-size: 28px;
	background-repeat: no-repeat;
	width: 34px;
	height: 34px;
	object-fit: contain;
	display: inline-block;
}

#legend_section .legend-click-icon {
	background-image: var(--img-legend-click-icon);
}

#legend_section .legend-unclick-icon {
	background-image: var(--img-legend-unclick-icon);
}

.legend-txt-info {
	background-color: var(--section-background-color);
}

.legend-txt-info p {
	font-size: 14px;
}

#discount_section .legend_price {
	margin-right: 20px;
}

.discount-info-txt>i {
	padding: 0 5px;
}

.legend_product,
.legend_price,
#legend_section .elements_line div,
#discount_section .elements_line div {
	color: var(--text-color);
	font-size: 14px;
	margin-left: 5px;
}

.legend_product.discount-product {
	margin-left: 0;
	margin-bottom: 0;
}

#legend_section .elements_line div i,
#discount_section .elements_line div i {
	color: var(--text-color);
	font-size: 11px;
}
@media (max-width: 768px) {
	.legend-container {
		gap: 0.8rem;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	#legend_section{
		padding: 0 0.8rem;
	}
}