/* PRODUCT VIEW (product.html.twig / order.html.twig) */
.mx_webshop_product_image {
    text-align: center;
    width: 100%;
}
.mx_webshop_product_thumbs {
    width: 100%;
}

.mx_webshop_product_images, .mx_webshop_product_properties {
    width: 300px;
    float: left;
    clear: left;
}

.mx_webshop_product_properties {
    margin-top: 20px;
}

.mx_webshop_product_properties strong {
    font-size: 16px;
}

.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) {
    background: #f9f9f9;
}

.mx_webshop_product_properties span:first-child {
    display: inline-block;
    min-width: 80px;
    padding-right: 10px;
}

.mx_webshop_product_properties, .mx_webshop_product_volume {
    margin-top: 20px;
}

.mx_webshop_product_properties strong, .mx_webshop_product_volume strong {
    font-size: 16px;
}

.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: 2px 8px;
}

.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_thumbs ul, .mx_webshop_product_thumbs li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx_webshop_product_thumbs li {
    float: left;
    margin: 0 10px 10px 0;
    height: 60px;
}

.mx_webshop_product_thumbs li img {
    max-height: 60px;
}

.mx_webshop_product_prices {
    font-size: 18px;
    margin: 0 0 10px;
}

.mx_webshop_product_old_price {
    text-decoration: line-through;
    font-size: 12px;
}

.mx_webshop_product_vat {
    font-size: 12px;
    display: block;
}

.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_prices, .mx_webshop_product_description, .mx_webshop_product_order, .mx_webshop_product_stock, .mx_webshop_product_volume {
    float: right;
    clear: right;
    width: 350px;
}

.mx_webshop_product_order #quantity {
    width: 50px;
}

.mx_webshop_product_order label {
    font-weight: bold;
}

.mx_webshop_product_order input[type=submit] {
    background: #f9f9f9;
    padding: 5px 15px;
    font-size: 16px;
    border: 1px #DDD solid;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    cursor: pointer;
    color: #000;
    height: auto;
}

.mx_webshop_product_related {
    float: left;
    margin-top: 20px;
    clear: both;
    width: 100%;
}

.mx_webshop_product_related strong {
    font-size: 16px;
    margin-bottom: 4px;
    clear: both;
    width: 100%;
    float: left;
}

.mx_webshop_related_product {
    float: left;
    width: 170px;
    height: 253px;
    border: 1px #DDD solid;
    text-align: center;
    margin: 0 10px 10px 0;
}

.mx_webshop_related_product_image {
    height: 150px;
    width: 150px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.mx_webshop_related_product a {
    display: block;
    padding: 10px;
    width: 150px;
    height: 240px;
    text-decoration: none;
    color: #333;
}

.mx_webshop_related_product h2 {
    font-size: 14px;
    color: #333;
    padding: 0;
    margin: 10px 0;
    height: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    font-weight: normal;
}

.mx_webshop_related_prices {
    font-size: 18px;
    margin: 10px 0;
    height: 20px;
}

.mx_webshop_related_old_price {
    text-decoration: line-through;
    font-size: 12px;
    font-weight: normal;
}

.mx_webshop_related_new_price {
    color: red;
}

.mx_webshop_related_product footer {
    background: #f9f9f9;
    width: 100%;
    height: 25px;
    line-height: 25px;
    margin: 10px -10px 0 -10px;
    padding: 0 10px 0 10px;
    font-weight: normal;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .mx_webshop_product_prices, .mx_webshop_product_description, .mx_webshop_product_order, .mx_webshop_product_stock, .mx_webshop_product_images, .mx_webshop_product_properties {
        width: 100%;
    }
    .mx_webshop_product_image span, .mx_webshop_product_image img[itemprop="image"] {
        width: 100%;
    }
    .mx_webshop_related_product {
        width: 48%;
        margin: 1%;
        box-sizing: border-box;
    }
    .mx_webshop_related_product_image {
        display: inline-block;
        width: 100%;
    }
    .mx_webshop_related_product_image img {
        max-width: 100%;
    }
    .mx_webshop_related_product a {
        box-sizing: border-box;
        width: 100%;
    }
}