/* PRODUCT VIEW (product.html.twig / order.html.twig) */

#mx_webshop_product_left {
	float:left;
	width:40%;
}

.mx_webshop_product_image {
    text-align: center;
    width: 100%;
    margin-bottom:15px;
}

.mx_webshop_product_image img {
	width:100%;
	height:auto;
	display:block;
}

.mx_webshop_product_thumbs {
    width: 100%;
}


.mx_webshop_product_thumbs ul, .mx_webshop_product_thumbs li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx_webshop_product_thumbs li {
    float: left;
    width:23.5%;
    margin: 0 2% 15px 0;
    height: auto;
}

.mx_webshop_product_thumbs li:nth-of-type(4n){
	margin-right:0;
}

.mx_webshop_product_thumbs li img {
    width:100%;
    height: auto;
}

#mx_webshop_product_right {
	float:left;
	width:60%;
	padding-left:40px;
}

#mx_webshop_product_right h1 {
	text-align:left;
}

.mx_webshop_product_properties {
    width: 100%;
    float: left;
    clear: left;
    margin-bottom: 20px;
}

.mx_webshop_product_properties strong {

}

.mx_webshop_product_properties ul, .mx_webshop_product_properties li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx_webshop_product_properties li {
    padding: 2px 8px;
}

.mx_webshop_product_properties li:nth-child(2n+1) {
    background: #f9f9f9;
    margin-top: 5px;
}

.mx_webshop_product_properties span:first-child {
    display: inline-block;
    min-width: 80px;
    padding-right: 10px;
}

.mx_webshop_product_volume {
    margin-top: 20px;
}

.mx_webshop_product_volume strong {

}

.mx_webshop_product_properties ul, .mx_webshop_product_properties li, .mx_webshop_product_volume ul, .mx_webshop_product_volume li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx_webshop_product_properties li, .mx_webshop_product_volume li {
    padding: 4px 8px;
}

.mx_webshop_product_volume li:first-of-type {
	display:none;
}

.mx_webshop_product_properties li:nth-child(2n), .mx_webshop_product_volume li:nth-child(2n) {
    background: #f9f9f9;
}

.mx_webshop_product_properties span:first-child, .mx_webshop_product_volume span:first-child {
    display: inline-block;
    min-width: 80px;
    padding-right: 10px;
}

.mx_webshop_product_prices {
    margin: 0 0 15px;
}

.mx_webshop_product_price, .mx_webshop_product_new_price {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight:bold !important;
}

.mx_webshop_product_new_price {
	color:red;
}

.mx_webshop_product_old_price {
    text-decoration: line-through;
    font-size: 12px;
}

.mx_webshop_product_vat {
    font-size: 12px;
    display: block;
    font-weight:normal;
}

.mx_webshop_product_stock {
    margin: 0 0 10px;
}

.mx_webshop_product_in_stock {
    color: green;
    font-weight: bold;
}

.mx_webshop_product_days, .mx_webshop_product_weeks {
    color: orange;
}

.mx_webshop_product_not_in_stock {
    color: red;
}

.mx_webshop_product_order #quantity {
    width: 50px;
}

.mx_webshop_product_order label {
    font-weight: bold;
}

#mx_webshop_product_description {
	padding-top:25px;
	padding-bottom:15px;
	border-bottom:solid 1px #DDD;
	margin-bottom:25px;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {

#mx_webshop_product_left {
	width:100%;
}

#mx_webshop_product_right {
	width:100%;
	padding-left:0;
}
    
}