.variation-product-list { clear: both;padding: 40px 0; }

/* Responsive */
.dvo-row { display: flex;flex-direction: row;flex-wrap: wrap;margin-right: -15px;margin-left: -15px; }
.dvo-col { flex: 0 0 auto;width: 100%;box-sizing: border-box;padding: 0 15px; }
@media (min-width: 768px) {
	.dvo-col { flex: 0 0 auto;width: 50%; }
}
@media (min-width: 992px) {
	.dvo-col { flex: 0 0 auto;width: 33.333%; }
}
@media (min-width: 1200px) {
	.dvo-col { flex: 0 0 auto;width: 25%; }
}


/* Variation Product Box */
.var-product-box {
	background: white;
	border: 1px solid #aaa;
	border-radius: 5px;
	height: calc(100% - 25px);
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
}
.var-product-box .thumb {
	padding: 20px;
	text-align: center;
}
.var-product-box .thumb img {
	max-width: 100%;
	height: auto;
}
.var-product-box .title {
	padding: 5px 15px;
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	text-align: center;
	line-height: 1.618;
}
.var-product-box .price {
	padding: 5px 15px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: green !important;
	min-height: 55px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.var-product-box .price .amount { color: green !important; }
.var-product-box .price ins { text-decoration: none;display: block; }
.var-product-box .price ins .amount { color: green !important; }
.var-product-box .price del { font-size: 0.85em;display: block; }
.var-product-box .price del .amount { color: red !important; }
.var-product-box .add-to-cart-btn {
	padding: 5px 15px;
}
.var-product-box .add-to-cart-btn > * {
	border-radius: 5px;
	background: #0074D9;
	color: white !important;
	font-size: 15px;
	font-weight: bold;
	padding: 8px;
	display: block;
	text-align: center;
}
.var-product-box .add-to-cart-btn > .out-of-stock {
	background: #FF4136;
}
.var-product-box .attributes {
	padding-top: 20px;
}
.var-product-box .attributes ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.var-product-box .attributes ul li {
	padding: 8px 15px;
	font-size: 14px;
	margin-bottom: 0 !important;
}
.var-product-box .attributes ul li:nth-child(odd) {
	background: #f1f1f1;
}
.var-product-box .more {
	padding: 15px;
}
.var-product-box .more .toggle-attribute {
	font-size: 14px;
	color: blue;
	display: inline-block;
	cursor: pointer;
}
.var-product-box .more .toggle-attribute .icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='blue' d='M360.5 217.5l-152 143.1C203.9 365.8 197.9 368 192 368s-11.88-2.188-16.5-6.562L23.5 217.5C13.87 208.3 13.47 193.1 22.56 183.5C31.69 173.8 46.94 173.5 56.5 182.6L192 310.9l135.5-128.4c9.562-9.094 24.75-8.75 33.94 .9375C370.5 193.1 370.1 208.3 360.5 217.5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
}
.var-product-box .more .toggle-attribute .icon.toggle {
	transform: rotate(180deg);
}


.dvo-buy-product {
	border-radius: 5px;
	background: #0074D9;
	color: white !important;
	font-size: 16px;
	font-weight: bold;
	padding: 8px 30px;
	display: inline-block;
	text-align: center;
}