/**
 * product-attributes-demo.css
 */

.pa-snippets {
	/* border:  1px solid blue; */
	/* margin-top: 2em; */
	margin-bottom: 2em;
	line-height: 2em;
}

.pa-snippets>ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
}

.pa-snippets>ul>li {
	text-align: center;
	background-color: darkblue;
	color: white;
	/* color:  silver; */
	border-radius: 1rem;
	/* padding: 1.5rem; */
	border: 2px solid lightblue;
	/* flex-grow: 1; */
	/* flex-basis: 0; */
	overflow: hidden;
}

@media(min-width: 768px) {
	.pa-snippets ul {
		flex-direction: row;
	}

	.pa-snippets ul li {
		flex-basis: 0;
		flex-grow: 1;
	}
}

.wptpas-attribute {
	/* font-weight: bold; */
	font-size: 12pt;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

.wptpas-attribute-icon,
.wptpas-attribute-label {
	display: block;
}

.wptpas-attribute-icon {
	font-size: 24pt;
	/* padding-bottom: 2rem; */
	margin-bottom: 0.1rem;
	/* border-bottom:  1px solid gold; */
}

.wptpas-attribute-label {
	color: silver;
	font-size: 11pt;
}

.wptpas-term {
	/* font-weight: bold; */
	font-size: 13pt;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	background-color: #0002;
	padding: 0.75rem;
}