/* Product */
#ns_product-summary .ns_form.variations_form .ns_product-attribute-actions a.ns_link-line{
	font-size: 12px;
	line-height: 18px;
	color: var(--hipnos-color-neutral-3);
}

/* Woo variation swatches */
ul.variable-items-wrapper.image-variable-items-wrapper{
	list-style: none;
	display: flex;
	margin-left: -4px;
	margin-right: -4px;
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item{
	margin-left: 4px;
	margin-right: 4px;
	cursor: pointer;
	overflow: hidden;
	display: block;
	border-radius: var(--hipnos-border-radius);
	transition: box-shadow var(--hipnos-transition-ease);
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item:hover{
	box-shadow: var(--hipnos-box-shadow-style-1);
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item > .variable-item-contents{
	position: relative;
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item > .variable-item-contents:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 4px solid var(--hipnos-color-secondary-1);
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;

	opacity: 0;
	-webkit-transition: opacity var(--hipnos-transition-ease);
	-o-transition: opacity var(--hipnos-transition-ease);
	transition: opacity var(--hipnos-transition-ease);
}

ul.variable-items-wrapper.image-variable-items-wrapper > li.variable-item.image-variable-item.selected > .variable-item-contents:after{
	opacity: 1;
}
