.vd-product-attribute ul {
	list-style: none;
	width: 100%;
	display: flex;
	flex-direction: row;
	margin: 0;
	padding: 0;
	gap: 8px;
}
.vd-product-attribute.color ul button {
	width: 21px;
	height: 21px;
	border-radius: 50px;
	padding: 0;
	position: relative;
	border: none;
	border: 1px #ddd solid;
}
.vd-product-attribute.color ul button:before {
	position: absolute;
	content: "";
	border: 5px transparent; solid;
	width: 29px;
	height: 29px;
	top: -5px;
	left: -5px;
	border-radius: 50px;
	transition: all 0.3s ease;
}
.vd-product-attribute.color ul button:hover:before {
	border: 5px #D8DBDF solid;
}
.vd-product-attribute.size ul button {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 1.11;
    color: #222;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px #D8DBDF solid;
}
.vd-product-attribute.size ul button:hover {
	background-color: #D8DBDF;
}