/**
 * Product variation switches style
 *
 * @version 1.0.0
 */

.efw_pvs_attr_items_html{
	display: flex;
	flex-wrap: wrap;
	margin: 0!important;
	padding: 0;
	list-style: none;
}
.efw_pvs_attr_items_html .variable-item{
	border-radius: 2px;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 0 0 1px black;
	padding: 2px;
	margin: 4px 8px 4px 0px;
}
.efw_pvs_attr_items_html .variable-item.efw_pvs_color-variable-item,.variable-item.efw_pvs_image-variable-item{
	width: 40px;
	height: 40px;
}
.efw_pvs_attr_items_html .variable-item.selected, .efw_pvs_attr_items_html .variable-item.selected:hover{
	box-shadow: 0 0 0 2px black;
}
.efw_pvs_attr_items_html .variable-item .variable-item-contents{
	display: contents;
	display: flex;
	width: 100%;
	height: 100%;
}
.efw_pvs_attr_items_html .variable-item.efw_pvs_color-variable-item .variable-item-span-efw_pvs_color {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
}
.efw_pvs_attr_items_html.rounded .variable-item{
	border-radius: 100%;
}
.efw_pvs_attr_items_html.rounded .variable-item span{
	border-radius: 100%;
}
.efw_pvs_attr_items_html.rounded .variable-item img{
	border-radius: 100%;
}
.efw_pvs_attr_tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
}
.efw_pvs_attr_tooltip .efw_pvs_attr_tooltiptext {
	visibility: hidden;
	width: auto;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 3px 15px;
	/* Position the tooltip */
	position: absolute;
	z-index: 1;
	top: 110%;
}
.efw_pvs_attr_tooltip:hover .efw_pvs_attr_tooltiptext {
	visibility: visible;
}
.efw_pvs_attr_items_html .variable-item .variable-item-span-efw_pvs_button{
	padding: 5px;
}
.efw_pvs_attr_items_html .variable-item .variable-item-span-button{
	padding: 5px;
}
