/* Styles of Shop */
/*-------------------------------------------------------------*/

/* Top Menu Cart */
.header_cart_content {
    display: inline-block;
    height: 100%;
    float: right;
    position: relative;
    padding: 0 0 0 16px;
}

.header_cart_content .pm_icon_top_cart {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("../img/icon-top-cart.png") no-repeat center;
    position: relative;
    top: 5px;
    margin-right: 5px;
}

.pm_sticky_header_on_start_transparent .header_cart_content a .total_price {
    color: #ffffff;
}

.pm_sticky_header_on_start_transparent .header_cart_content .pm_icon_top_cart {
    background: url("../img/icon-top-cart.png") no-repeat center;
}

.header_cart_content a {
    display: inline-block;
}

.header_cart_content a .total_price {
    display: inline-block;
    color: #ffffff;
    background: #a10000;
    font-size: 12px;
    font-weight: 400;
    text-shadow: 0 0 3px #fff;
    padding: 5px 7px;
    border-radius: 4px;
    position: relative;
}

.header_cart_content a .total_price:before {
    content: "";
    position: absolute;
    border: solid 5px transparent;
    border-right: solid 5px #a10000;
    top: 8px;
    left: -10px;
}

/* Products Listing Page */
.pm_shop_result_count {
    font-size: 13px;
    margin: 0 0 35px;
    float: left;
}

.pm_shop_ordering {
    float: right;
    margin: 0 0 35px;
}

.pm_shop_ordering .pm_shop_orderby {
    border: solid 2px #dcdcdc;
    border-radius: 4px 0 0 4px;
    color: #5a5a5a;
    vertical-align: top;
}

ul.pm_shop_products {
    margin: 0 0 0 -60px;
    padding: 0;
    list-style: none;
    clear: both;
    display: table;
}

ul.pm_shop_products li {
    width: 50%;
    margin: 0 0 7px 0;
    padding: 0;
    float: left;
    position: relative;
    clear: both;
}

ul.pm_shop_products li:nth-child(2n) {
    clear: none !important;
}

ul.pm_shop_products li .pm_shop_product_wrapper {
    padding: 0 0 44px 60px;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_thunbmail a {
    display: block;
    position: relative;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_thunbmail a img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 1em;
    border-radius: 4px;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_thunbmail a img.image_by_hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 10;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_thunbmail a:hover img.image_by_hover {
    opacity: 1;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_title {
    display: block;
    text-align: center;
    margin-top: 36px;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_title a {
    font-size: 25px;
    line-height: 25px;
    font-weight: 300;
    color: #333333;
    padding: .5em 0;
}

ul.pm_shop_products li .pm_shop_product_wrapper .pm_shop_product_title a:hover,
.pm_shop_product_meta .pm_product_category a:hover,
.pm_shop_product_meta .pm_add_to_cart_button:hover,
.pm_shop_pagination .pm_shop_page_numbers li .page-numbers:hover {
    color: #a10000;
}

.pm_shop_product_meta {
    text-align: center;
    margin-top: 9px;
}

.pm_shop_product_meta .pm_product_category {
    margin-right: 21px;
}

.pm_shop_product_meta .pm_product_category a {
    font-size: 15px;
    line-height: 30px;
    color: #5a5a5a;
    margin-right: 5px;
}

.pm_shop_product_meta .pm_product_price {
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
    color: #5a5a5a;
    margin: 0 30px .5em 0;
}

.pm_shop_product_meta .pm_add_to_cart_button {
    font-size: 15px;
    line-height: 30px;
    color: #515151;
    margin: 0;
    padding: 0;
}

.pm_shop_pagination {
    text-align: left;
}

.pm_shop_pagination .pm_shop_page_numbers {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pm_shop_pagination .pm_shop_page_numbers li {
    display: inline-block;
    margin-right: 23px;
}

.pm_shop_pagination .pm_shop_page_numbers li .page-numbers {
    color: #333333;
    font-weight: 400;
}

.pm_shop_pagination .pm_shop_page_numbers li .page-numbers.current {
    color: #5a5a5a;
}

/* Single Product */
.pm_product {
    margin-bottom: 0;
    position: relative;
}

.pm_product .pm_product_images {
    width: 48%;
    border-radius: 4px;
    overflow: hidden;
    float: left;
}

.pm_product .pm_product_images .pm_prod_thumbs {
    padding-top: 2px;
    margin-left: -4px;
}

.pm_product .pm_product_images .pm_prod_thumbs div {
    display: inline-block;
    width: 32.5%;
}

.pm_product .pm_product_images .pm_prod_thumbs span {
    padding-left: 5px;
    display: inline-block;
}

.pm_product .pm_product_images .pm_prod_thumbs div:first-child img {
    border-radius: 0 0 0 4px;
}

.pm_product .pm_product_images .pm_prod_thumbs div:last-child img {
    border-radius: 0 0 4px 0;
}

.pm_product .pm_product_images .pm_prod_thumbs span img {
    width: 100%;
    opacity: .7;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.pm_product .pm_product_images .pm_prod_thumbs span img:hover {
    opacity: 1;
}

.pm_product .pm_product_description {
    width: 44%;
    float: right;
    margin-bottom: 90px;
}

.pm_product .pm_product_description .pm_prod_title {
    font-size: 36px;
    line-height: 36px;
    font-weight: 300;
    color: #333333;
    margin: 4px 0 29px;
    padding: 0;
}

.pm_product .pm_product_description .pm_prod_price {
    margin-bottom: 28px;
}

.pm_product .pm_product_description .pm_prod_price del {
    font-size: 20px;
    line-height: 25px;
    margin-right: 25px;
}

.pm_product .pm_product_description .pm_prod_price ins {
    text-decoration: none;
    font-size: 20px;
    line-height: 25px;
    color: #a10000;
}

.pm_product .pm_product_description form.pm_prod_cart {
    margin: 32px 0;
}

.pm_product .pm_product_description form.pm_prod_cart .pm_quantity {
    margin-right: 15px;
    float: left;
}

.pm_product .pm_product_description form.pm_prod_cart .pm_quantity input[type="text"] {
    width: 40px;
    height: 40px;
    border: solid 2px #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 40px;
    font-weight: 300;
    color: #5a5a5a;
    text-align: center;
}

.pm_product .pm_product_description form.pm_prod_cart .pm_prod_add_to_cart {
    background: #333333;
    border: none;
    border-radius: 3px;
    margin: 0;
    padding: 4px 12px 8px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    color: #ffffff;
    vertical-align: middle;
    cursor: pointer;
    float: left;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.pm_product .pm_product_description form.pm_prod_cart .pm_prod_add_to_cart:hover {
    background: #a10000;
}

.pm_product .pm_product_description .pm_prod_meta .pm_prod_article_wrapper,
.pm_product .pm_product_description .pm_prod_meta .pm_prod_category,
.pm_product .pm_product_description .pm_prod_meta .pm_prod_tags {
    display: block;
    font-size: 13px;
    line-height: 26px;
}

.pm_product .pm_product_description .pm_prod_meta a {
    color: #5a5a5a;
}

.pm_product .pm_product_description .pm_prod_meta a:hover {
    color: #a10000;
}

.pm_product_tabs ul.pm_prod_tabs_title {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pm_product_tabs ul.pm_prod_tabs_title li {
    display: inline-block;
    background: #ececec;
    border: none;
    border-radius: 4px 4px 0 0;
    padding: 0 15px;
    margin: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.pm_product_tabs ul.pm_prod_tabs_title li:hover,
.pm_product_tabs ul.pm_prod_tabs_title li.active {
    background: #f6f6f6;
}

.pm_product_tabs ul.pm_prod_tabs_title li a {
    font-size: 18px;
    color: #333333;
    display: inline-block;
    padding: 13px 2px 12px;
}

.pm_product_tabs .pm_tabs_desc {
    display: none;
    background: #f6f6f6;
    padding: 25px 30px 23px;
    margin-bottom: 30px;
}

#pm_tab_description {
    display: block;
}

.pm_product_tabs .pm_tabs_desc h2 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #333333;
    margin: 0;
}

.pm_product_tabs .pm_tabs_desc p {
    margin: 8px 0 0;
}

.pm_product_tabs .pm_tabs_desc .pm_shop_attributes {
    text-align: left;
}

.pm_product_tabs .pm_tabs_desc .pm_shop_attributes th {
    width: 118px;
    padding: 10px 0 0;
    font-weight: 300;
}

.pm_product_tabs .pm_tabs_desc .pm_shop_attributes td {
    padding: 10px 0 0;
}

.pm_product_tabs .pm_tabs_desc #comments {
    margin-top: 0;
    position: relative;
}

.pm_product_tabs .pm_tabs_desc #comments .pm_summary_product_rating {
    color: #a10000;
    position: absolute;
    top: 1px;
    right: 2px;
}

.pm_product_tabs .pm_tabs_desc #comments .pm_summary_product_rating i {
    margin: 0 -2.1px;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment {
    margin: 0 0 26px;
    position: relative;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_avatar {
    width: 72px;
    height: 72px;
    display: inline-block;
    position: absolute;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_avatar img {
    border-radius: 50%;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_avatar .pm_ava_mask {
    width: 72px;
    height: 72px;
    background: url("../img/wc-ava-mask.png") no-repeat center;
    position: absolute;
    top: 0;
    left: 0;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text {
    min-height: 72px;
    margin-left: 100px;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text .meta {
    margin: 13px 0 3px;
    padding: 6px 0 0;
    font-size: 13px;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text .meta .pm_comment_author {
    margin-right: 26px;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text .meta .pm_comment_author a {
    color: #5a5a5a;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text .meta .pm_comment_date {
    margin-right: 24px;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text .meta .star-rating {
    display: inline-block;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text .meta .star-rating i {
    margin: 0 -1.5px;
}

.pm_product_tabs .pm_tabs_desc #comments .commentlist li.comment .pm_comment_text p {
    margin-top: 3px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond h3.pm_comment_reply_title {
    font-size: 18px;
    font-weight: 300;
    color: #333333;
    margin: 0 0 15px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .comment-form-author,
.pm_product_tabs .pm_tabs_desc .pm_comment_respond .comment-form-email,
.pm_product_tabs .pm_tabs_desc .pm_comment_respond .comment-form-rating {
    margin: 0 0 14px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond input[type="text"],
.pm_product_tabs .pm_tabs_desc .pm_comment_respond textarea {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 100;
    color: #5a5a5a;
    border: solid 2px #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0;
    padding: 9px 10px 11px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond input[type="text"]::-moz-placeholder,
.pm_product_tabs .pm_tabs_desc .pm_comment_respond textarea::-moz-placeholder {
    color: #5a5a5a;
    opacity: 1;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond input[type="text"]::-webkit-input-placeholder,
.pm_product_tabs .pm_tabs_desc .pm_comment_respond textarea::-webkit-input-placeholder {
    color: #5a5a5a;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond textarea {
    height: 75px;
    resize: none;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .comment-form-rating a {
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    color: #5a5a5a;
    border-right: solid 1px #cccccc;
    margin-right: 15px;
    padding-right: 10px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .comment-form-rating a:hover {
    color: #a10000;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .comment-form-comment {
    margin-bottom: 11px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .form-submit {
    margin-bottom: 10px;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .form-submit input[type="submit"] {
    background: #333333;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    border: none;
    border-radius: 4px;
    padding: 3px 15px 4px;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.pm_product_tabs .pm_tabs_desc .pm_comment_respond .form-submit input[type="submit"]:hover {
    background: #a10000;
}

.pm_related_products {
    margin-bottom: 15px;
}

.pm_related_products h2 {
    font-size: 36px;
    line-height: 25px;
    font-weight: 300;
    color: #333333;
    margin: 85px 0 50px;
}

.pm_related_products .pm_related_product_wrapper {
    padding-left: 60px;
}

.pm_related_products .pm_related_product_wrapper a {
    display: block;
    position: relative;
}

.pm_related_products .pm_related_product_wrapper a img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.pm_related_products .pm_related_product_wrapper a img.image_by_hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    z-index: 10;
}

.pm_related_products .pm_related_product_wrapper a:hover img.image_by_hover {
    opacity: 1;
}

/* Shop Cart Page */
.pm_cart_table_wrapper ul.pm_cart_table_header {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.pm_cart_table_wrapper ul.pm_cart_table_header li {
    display: inline-block;
    background: #f6f6f6;
    border-radius: 4px 4px 0 0;
    margin-right: 5px;
    padding: 5px 0 6px;
    font-size: 18px;
    line-height: 40px;
    font-weight: 300;
    color: #333333;
    text-align: center;
    float: left;
}

.pm_cart_table_wrapper ul.pm_cart_table_header li:last-child {
    margin-right: 0;
}

.pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_name {
    width: 310px;
}

.pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_price {
    width: 115px;
}

.pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_quantity {
    width: 146px;
}

.pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_subtotal {
    width: 137px;
}

.pm_cart_table_wrapper .pm_shop_cart_table {
    width: 100%;
    background: #f6f6f6;
    border: none;
    margin: 0;
    text-align: left;
    vertical-align: middle;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-remove {
    padding: 48px 0 0 18px;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-remove a {
    width: auto;
    height: auto;
    display: block;
    font-size: 32px;
    line-height: 30px;
    color: #c8c8c8;
    text-align: center;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-remove a:hover {
    color: #333333;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-thumbnail {
    width: 66px;
    padding: 34px 0 0 15px;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-thumbnail img {
    width: 66px;
    height: 66px;
    display: block;
    border-radius: 50%;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-name {
    width: 135px;
    padding: 45px 0 0 34px;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-name a {
    font-size: 15px;
    line-height: 30px;
    color: #5a5a5a;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-name a:hover {
    color: #a10000;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-price {
    padding: 46px 12px 6px;
    text-align: center;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-quantity {
    padding: 48px 12px 6px;
    text-align: center;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-quantity input[type="text"] {
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    border: solid 2px #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 40px;
    font-weight: 300;
    color: #5a5a5a;
    text-align: center;
}

.pm_cart_table_wrapper .pm_shop_cart_table .product-subtotal {
    padding: 52px 12px 6px;
    text-align: center;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions {
    text-align: right;
    padding: 42px 30px 28px 28px;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon {
    float: left;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="text"] {
    width: 201px;
    height: 40px;
    background: #f6f6f6;
    border: solid 2px #dcdcdc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    margin-right: 10px;
    padding: 6px 6px 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    color: #5a5a5a;
    vertical-align: middle;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="text"]::-moz-placeholder {
    color: #5a5a5a;
    opacity: 1;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="text"]::-webkit-input-placeholder {
    color: #5a5a5a;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="submit"] {
    background: #cccccc;
    border: none;
    border-radius: 4px;
    padding: 5px 13px 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    vertical-align: middle;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="submit"]:hover {
    background: #333333;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions input[type="submit"] {
    background: #333333;
    border: none;
    border-radius: 4px;
    padding: 5px 16px 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    vertical-align: middle;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.pm_cart_table_wrapper .pm_shop_cart_table .pm_actions input[type="submit"]:hover {
    background: #a10000;
}

.pm_cart_collaterals {
    width: 100%;
    margin-top: 41px;
    display: table;
}

.pm_cart_collaterals .pm_cart_totals {
    width: 48%;
}

.pm_cart_collaterals .pm_cart_totals h2 {
    margin-bottom: 25px;
    font-size: 36px;
    line-height: 25px;
    font-weight: 300;
    color: #333333;
}

.pm_cart_collaterals .pm_cart_totals table {
    width: 100%;
    margin: 0 0 6px;
    text-align: left;
}

.pm_cart_collaterals .pm_cart_totals table th {
    width: 25%;
    font-size: 15px;
    line-height: 30px;
    font-weight: 300;
    padding: 2px 0 0;
}

.pm_cart_collaterals .pm_cart_totals table.pm_order_subtotal {
    margin-bottom: 15px;
}

.pm_cart_collaterals .pm_cart_totals table.pm_order_subtotal,
.pm_cart_collaterals .pm_cart_totals table.pm_order_subtotal th {
    font-size: 20px;
}

.pm_cart_collaterals .pm_cart_totals table.pm_order_subtotal td {
    color: #a10000;
}

.pm_cart_collaterals .pm_checkout_button_wrapper {
    padding: 15px 0;
}

.pm_cart_collaterals .pm_checkout_button_wrapper a {
    display: inline-block;
    background: #333333;
    border-radius: 3px;
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    padding: 12px 20px 12px 21px;
    margin-bottom: 15px;
}

.pm_cart_collaterals .pm_checkout_button_wrapper a:hover {
    background: #a10000;
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
    .header_cart_content .pm_icon_top_cart,
    .pm_sticky_header_on_start_transparent .header_cart_content .pm_icon_top_cart {
        background: url("../img/retina/icon-top-cart.png") no-repeat center;
        background-size: 20px 20px;
    }
}

/* Responsive */
@media only screen and (max-width: 1025px) {
    ul.pm_shop_products {
        margin-left: -44px;
    }

    ul.pm_shop_products li .pm_shop_product_wrapper {
        padding-left: 44px;
    }

    .pm_shop_product_meta .pm_product_category {
        margin-right: 5px;
    }

    .pm_shop_product_meta .pm_product_price {
        margin-right: 12px;
    }

    .pm_prod_thumbs div {
        width: 32.3333%;
    }

    .pm_related_products .pm_shop_products {
        margin-left: -30px;
    }

    .pm_related_products .pm_shop_products .pm_related_product_wrapper {
        padding-left: 30px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_name {
        width: 296px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_price {
        width: 90px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_quantity {
        width: 100px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_subtotal {
        width: 84px;
    }
}

@media only screen and (max-width: 769px) {
    .pm_prod_thumbs div {
        width: 32.7%;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_name {
        width: 182px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_price {
        width: 80px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_quantity {
        width: 90px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_subtotal {
        width: 82px;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .pm_actions {
        text-align: left;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon {
        padding-bottom: 22px;
    }
}

@media only screen and (max-width: 737px) {
    .pm_container {
        width: auto;
        margin: 0 22px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_name {
        width: 233px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_price {
        width: 160px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_quantity {
        width: 147px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_subtotal {
        width: 137px;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .product-thumbnail {
        display: none;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon {
        width: 100%;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="submit"] {
        float: right;
    }
}

@media only screen and (max-width: 668px) {
    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_name {
        width: 231px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_price {
        width: 130px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_quantity {
        width: 140px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_subtotal {
        width: 107px;
    }
}

@media only screen and (max-width: 569px) {
    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_name {
        width: 220px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_price {
        width: 90px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_quantity {
        width: 110px;
    }

    .pm_cart_table_wrapper ul.pm_cart_table_header li.pm_product_subtotal {
        width: 89px;
    }
}

@media only screen and (max-width: 415px) {
    .pm_cart_table_wrapper ul.pm_cart_table_header {
        display: none;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="text"] {
        width: 100%;
        margin-bottom: 22px;
    }

    .pm_cart_table_wrapper .pm_shop_cart_table .pm_actions .pm_coupon input[type="submit"] {
        float: left;
    }

    .pm_cart_collaterals .pm_cart_totals {
        width: 100%;
    }

    .pm_product .pm_product_images {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 376px) {
    .pm_product .pm_product_images .pm_prod_thumbs div {
        width: 32.4%;
    }
}

@media only screen and (max-width: 321px) {
    .pm_product .pm_product_images .pm_prod_thumbs div {
        width: 32.3%;
    }
}