﻿/****** Product ******/
.product-box {
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

    .product-box:hover {
        -webkit-box-shadow: 0 3px 30px rgba(0,0,0,0.5);
        box-shadow: 0 3px 30px rgba(0,0,0,0.5);
        z-index: 5;
    }

.product {
    -webkit-box-shadow: 0 3px 2px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    box-shadow: 0 3px 2px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 15px;
    background: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.product-img-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
    margin: 20px;
    margin-bottom: 10px;
}

.product-img-banner,
.product-img-alt-banner,
.product-banner-alt-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.product-img-primary,
.product-img-alt,
.product-img {
    width: 100%;
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}

.product-img-alt {
    position: absolute;
    right: 0;
    top: 0;
}

.product-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 4;
    text-indent: 99999;
}

.product-img-alt {
    -webkit-transform: translate3d(101%, 0, 0);
    -moz-transform: translate3d(101%, 0, 0);
    -o-transform: translate3d(101%, 0, 0);
    -ms-transform: translate3d(101%, 0, 0);
    transform: translate3d(101%, 0, 0);
    z-index: 2;
}

.product-title {
    -webkit-box-shadow: 0 1px 8px rgba(0,0,0,0.2);
    box-shadow: 0 1px 8px rgba(0,0,0,0.2);
    display: table;
    z-index: 2;
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    background: #fff;
    color: #000;
    padding: 7px;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
}

.product-icon-quick-view {
    position: absolute;
    z-index: 5;
    display: block;
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background: #486d97;
    color: #fff;
    bottom: 20px;
    right: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(0, -10px, 0) scale(0.8);
    -moz-transform: translate3d(0, -10px, 0) scale(0.8);
    -o-transform: translate3d(0, -10px, 0) scale(0.8);
    -ms-transform: translate3d(0, -10px, 0) scale(0.8);
    transform: translate3d(0, -10px, 0) scale(0.8);
}

    .product-icon-quick-view:hover {
        background: #44688f;
        color: #fff;
        text-decoration: none;
        -webkit-transform: translate3d(0, 0, 0) scale(1.2);
        -moz-transform: translate3d(0, 0, 0) scale(1.2);
        -o-transform: translate3d(0, 0, 0) scale(1.2);
        -ms-transform: translate3d(0, 0, 0) scale(1.2);
        transform: translate3d(0, 0, 0) scale(1.2);
    }

    .product-icon-quick-view:focus {
        color: #fff;
    }

.product-left:after {
    content: '';
    display: table;
    clear: both;
}

.product-left .product-img-wrap {
    float: left;
    width: 25%;
    margin-right: 20px;
}

.product-left .product-caption {
    float: left;
    width: 50%;
}

.product-left .product-caption-feature-list {
    position: static;
    font-size: 14px;
}

.product-left .product-caption-title {
    font-size: 18px;
    height: auto;
}

.product-left .product-caption-price > span {
    font-size: 25px;
    margin-bottom: 10px;
}

.product-left .product-caption-rating {
    font-size: 12px;
}

@media (max-width:992px) {
    .product-left .product-img-wrap {
        float: none;
        width: 100%;
        margin: 0;
    }

    .product-left .product-caption {
        float: none;
        width: 100%;
    }

    .product-left .product-actions {
        display: none;
    }
}

.product-actions {
    position: absolute;
    top: 42px;
    right: 15px;
    z-index: 5;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .product-actions > li {
        margin-bottom: 10px;
    }

.product-info-block-rating,
.product-caption-rating {
    list-style: none;
    margin-bottom: 3px;
    padding: 0;
    overflow: hidden;
    font-size: 9px;
}

    .product-info-block-rating > li,
    .product-caption-rating > li {
        float: left;
        margin-right: 3px;
        color: #d9d9d9;
    }

        .product-info-block-rating > li.rated,
        .product-caption-rating > li.rated {
            color: #ffc120;
        }

.product-info-block-sm .product-info-block-title {
    font-size: 15px;
}

.product-info-block-sm .product-info-block-price {
    font-size: 17px;
}

.product-plus {
    position: absolute;
    bottom: 80px;
    left: -80px;
    display: block;
    text-align: center;
    height: 40px;
    line-height: 40px;
    width: 40px;
    background: #486d97;
    z-index: 5;
    color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translate(0, -50px);
    -moz-transform: translate(0, -50px);
    -o-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    font-size: 18px;
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.25);
    box-shadow: 0 0 2px rgba(0,0,0,0.25);
}

    .product-plus:hover {
        color: #fff;
        background: #3d5d80;
        text-decoration: none;
    }

.product-quick-view {
    display: inline-block;
    background: #262626;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 5;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    padding: 2px 5px;
    -webkit-transform: translate3d(105%, 0, 0);
    -moz-transform: translate3d(105%, 0, 0);
    -o-transform: translate3d(105%, 0, 0);
    -ms-transform: translate3d(105%, 0, 0);
    transform: translate3d(105%, 0, 0);
}

    .product-quick-view:hover {
        text-decoration: none;
        background: #486d97;
        color: #fff;
    }

.product:hover {
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.3), 0 0 15px rgba(158,182,209,0.2);
    box-shadow: 0 3px 6px rgba(0,0,0,0.3), 0 0 1px rgba(0,0,0,0.3), 0 0 15px rgba(158,182,209,0.2);
}

    .product:hover .product-img-alt,
    .product:hover .product-more-info-link,
    .product:hover .product-hover-block,
    .product:hover .product-to-cart,
    .product:hover .product-plus,
    .product:hover .product-quick-view {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .product:hover .product-img-primary {
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .product:hover .product-title {
        bottom: -50px;
    }

    .product:hover .product-to-cart,
    .product:hover .product-plus {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    .product:hover .product-img-wrap-single .product-img-primary {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.product-info-active .product-info-block-hide {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.product-info-active .product-info-block {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-box-shadow: -1px 0 3px rgba(0,0,0,0.2);
    box-shadow: -1px 0 3px rgba(0,0,0,0.2);
}

.product-info-active .product-info-block-wrap-inner {
    -webkit-animation-name: infoBlock;
    -moz-animation-name: infoBlock;
    -o-animation-name: infoBlock;
    -ms-animation-name: infoBlock;
    animation-name: infoBlock;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -o-animation-duration: 0.7s;
    -ms-animation-duration: 0.7s;
    animation-duration: 0.7s;
}

.product-info-active .product-img-alt {
    -webkit-transform: translate3d(-30%, 0, 0) scale(1.1);
    -moz-transform: translate3d(-30%, 0, 0) scale(1.1);
    -o-transform: translate3d(-30%, 0, 0) scale(1.1);
    -ms-transform: translate3d(-30%, 0, 0) scale(1.1);
    transform: translate3d(-30%, 0, 0) scale(1.1);
}

.product-info-active .product-hover-block {
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.product-info-active .product-plus {
    left: -20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.product-info-active .product-quick-view {
    right: 70%;
}

    .product-info-active .product-quick-view > span {
        display: none;
    }

.product-info-active .product-img-wrap-single .product-img-primary {
    -webkit-transform: translate3d(-30%, 0, 0) scale(1.1);
    -moz-transform: translate3d(-30%, 0, 0) scale(1.1);
    -o-transform: translate3d(-30%, 0, 0) scale(1.1);
    -ms-transform: translate3d(-30%, 0, 0) scale(1.1);
    transform: translate3d(-30%, 0, 0) scale(1.1);
}

.product-img-banner,
.product-img-alt-banner {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

.product-banner-contents {
    padding: 0 50px;
    position: absolute;
    top: 350px;
    left: 0;
    text-align: center;
    z-index: 3;
    color: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 100%;
}

.product-banner-title {
    font-family: 'Open Sans', arial, helvetica, sans-serif;
    font-weight: normal;
    font-size: 45px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.85);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.product-banner-caption {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    -o-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    font-weight: 300;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.5);
}

.product-banner-desc {
    font-size: 18px;
}

.product-banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: #000;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;
}

.product-banner-btn {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

    .product-banner-btn:hover {
        -webkit-border-radius: 7px;
        border-radius: 7px;
        background: #486d97;
        border-color: #486d97;
        color: #fff;
        text-decoration: none;
    }

.product-banner-logo {
    position: absolute;
    top: 20px;
    left: 0;
    display: block;
    width: 100%;
    z-index: 3;
    text-align: center;
}

    .product-banner-logo > img {
        width: 25px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -ms-transition: 0.3s;
        transition: 0.3s;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 0.7;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
        filter: alpha(opacity=70);
    }

.product-banner-img-wrap {
    position: relative;
    z-index: 1;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0) scale(1.1);
    -moz-transform: translate3d(0, 0, 0) scale(1.1);
    -o-transform: translate3d(0, 0, 0) scale(1.1);
    -ms-transform: translate3d(0, 0, 0) scale(1.1);
    transform: translate3d(0, 0, 0) scale(1.1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: grayscale(50%);
}

.product-banner-alt-mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.product-banner-alt-title {
    position: absolute;
    z-index: 3;
    color: #fff;
    font-family: 'Open Sans', arial, helvetica, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 3px;
    left: 50%;
    top: 50%;
    display: table;
    padding: 15px 18px;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.4);
    text-align: center;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

.product-banner-alt-btn {
    position: absolute;
    z-index: 3;
    color: #fff;
    padding: 15px 25px;
    background: rgba(72,109,151,0.85);
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    font-size: 16px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.product-hover .product-banner-mask {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    filter: alpha(opacity=75);
    -webkit-box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
}

.product-hover .product-banner-contents {
    top: 200px;
}

.product-hover .product-banner-caption {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.product-hover .product-img-banner {
    -webkit-transition: 10s;
    -moz-transition: 10s;
    -o-transition: 10s;
    -ms-transition: 10s;
    transition: 10s;
    -webkit-transform: scale(1.5) translate3d(0, 0, 0);
    -moz-transform: scale(1.5) translate3d(0, 0, 0);
    -o-transform: scale(1.5) translate3d(0, 0, 0);
    -ms-transform: scale(1.5) translate3d(0, 0, 0);
    transform: scale(1.5) translate3d(0, 0, 0);
}

.product-hover .product-banner-logo > img {
    -webkit-transform: scale(1.6) translate3d(0, 80px, 0);
    -moz-transform: scale(1.6) translate3d(0, 80px, 0);
    -o-transform: scale(1.6) translate3d(0, 80px, 0);
    -ms-transform: scale(1.6) translate3d(0, 80px, 0);
    transform: scale(1.6) translate3d(0, 80px, 0);
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

.product-hover .product-banner-title {
    background: none;
}

.product-hover .product-banner-img-wrap {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -moz-transform: translate3d(0, 0, 0) scale(1);
    -o-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-filter: grayscale(0);
}

.product-hover .product-banner-alt-mask {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.product-hover .product-banner-alt-title {
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.product-hover .product-banner-alt-btn {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    margin-top: 0;
}

.product-slide {
    margin: 5px;
}

.product-caption {
    padding: 10px 15px;
    position: relative;
}

.product-caption-feature-list {
    font-size: 11px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 10px;
    bottom: 11px;
}

    .product-caption-feature-list > li {
        margin-left: 5px;
        padding-left: 5px;
        border-left: 1px solid #d9d9d9;
        display: inline-block;
        color: #8c8c8c;
    }

        .product-caption-feature-list > li:first-child {
            border: none;
            margin: 0;
            padding: 0;
        }

.product-caption-title {
    font-weight: 400;
    font-family: 'Open Sans', arial, helvetica, sans-serif;
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: 1px;
    height: 40px;
    overflow: hidden;
    line-height: 1.3em;
    color: #0d0d0d;
}

    .product-caption-title > a {
        color: #000;
    }

.product-caption-title-sm {
    font-size: 11px;
}

.product-caption-price {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 12px;
}

    .product-caption-price > span {
        display: inline-block;
        font-size: 18px;
        line-height: 1em;
    }

        .product-caption-price > span.product-caption-price-new {
            color: #000;
            font-weight: 700;
        }

        .product-caption-price > span.product-caption-price-old {
            margin-right: 7px;
            color: #727272;
            text-decoration: line-through;
        }

.product-labels {
    position: absolute;
    top: 10px;
    left: -3px;
    z-index: 3;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
}

    .product-labels > li {
        background: #486d97;
        color: #fff;
        -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.4);
        box-shadow: 0 1px 2px rgba(0,0,0,0.4);
        padding: 3px 7px;
        line-height: 1em;
        margin-bottom: 5px;
        display: table;
    }

.product-sm-left {
    padding: 10px;
}

    .product-sm-left:after {
        content: '.';
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

    .product-sm-left .product-img-wrap {
        float: left;
        width: 40%;
        padding: 7px;
        margin: 0;
    }

    .product-sm-left .product-caption {
        float: left;
        width: 60%;
        padding: 0 15px;
    }

    .product-sm-left .product-caption-feature-list {
        margin-top: 5px;
        display: relative;
        right: auto;
        bottom: auto;
    }

    .product-sm-left .product-caption-title {
        height: 55px;
        font-size: 14px;
    }

    .product-sm-left .product-caption-price {
        margin-top: 6px;
    }

    .product-sm-left .product-caption-title {
        font-size: 13px;
        height: 35px;
    }

    .product-sm-left .product-caption-price > span {
        font-size: 15px;
    }

.product-sm {
    padding: 10px;
}

    .product-sm .product-caption {
        margin-top: 7px;
        padding: 0 5px;
    }

    .product-sm .product-caption-title {
        line-height: 1.25em;
        font-size: 13px;
        height: 32px;
    }

    .product-sm .product-caption-price {
        margin-top: 5px;
    }

        .product-sm .product-caption-price > span {
            font-size: 14px;
        }

    .product-sm .product-img-wrap {
        padding: 7px;
        margin: 0;
    }

.product-tabs .tab-content {
    background: #fff;
    padding: 20px 25px;
    border: 1px solid #ddd;
    border-top: none;
}

.product-tabs .nav-tab-icon {
    margin-right: 3px;
}

.product-tabs .nav > li > a {
    color: #595959;
    font-weight: 500;
    margin-right: 5px;
    font-size: #5b5b5b;
}

.product-tabs .nav > li.active > a {
    -webkit-box-shadow: 0 -3px 5px rgba(0,0,0,0.08);
    box-shadow: 0 -3px 5px rgba(0,0,0,0.08);
}

.product-tab-rating-title {
    margin-bottom: 3px;
}

.product-overview-text {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 30px;
}

@media (max-width:992px) {
    .product-overview-text {
        position: static;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
        top: 0;
        padding: 15px;
    }
}

.product-overview-section {
    padding: 20px 0;
}

.product-overview-title {
    font-size: 25px;
    line-height: 1.4em;
}

.product-overview-desc {
    font-size: 17px;
    line-height: 1.6em;
    color: #838383;
}

.product-overview-img {
    width: 100%;
    padding: 0 30px;
}

.product-page-product-wrap {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

    .product-page-product-wrap:before {
        content: '';
        z-index: -1;
        position: absolute;
        bottom: 15px;
        left: 10px;
        width: 50%;
        height: 20%;
        max-width: 300px;
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        transform: rotate(-3deg);
        -webkit-box-shadow: 0 15px 10px rgba(0,0,0,0.7);
        box-shadow: 0 15px 10px rgba(0,0,0,0.7);
    }

    .product-page-product-wrap > img {
        -webkit-border-radius: 5px;
        border-radius: 5px;
        width: 100%;
    }

.product-page-product-rating {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .product-page-product-rating > li {
        display: inline-block;
        margin-right: 5px;
        font-size: 17px;
        color: #7a7a7a;
    }

        .product-page-product-rating > li.rated {
            color: #ffc120;
        }

.product-page-product-rating-sign {
    font-size: 12px;
    margin-bottom: 5px;
}

    .product-page-product-rating-sign a {
        color: #7a7a7a;
    }

        .product-page-product-rating-sign a:hover {
            text-decoration: none;
            color: #595959;
        }

.product-page-product-rating.product-rating-big > li {
    font-size: 38px;
}

    .product-page-product-rating.product-rating-big > li.count {
        margin-left: 7px;
        font-weight: 700;
        color: #486d97;
    }

.product-page-desc,
.product-page-desc-lg {
    font-size: 16px;
    color: #727272;
}

.product-page-desc-lg {
    font-size: 20px;
    line-height: 1.6em;
    margin-bottom: 20px;
}

.product-page-features-table {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 500;
}

.product-page-features-table-specs,
.product-page-features-table-details {
    width: 25%;
}

.product-page-price {
    font-size: 40px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 1px;
}

.product-page-price-list {
    font-size: 25px;
    font-weight: 400;
    line-height: 1em;
    text-decoration: line-through;
    color: #838383;
    margin-bottom: 5px;
}

.product-page-price-sign {
    font-size: 13px;
    color: #a6a6a6;
    margin-bottom: 1px;
}

.product-page-side-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #d9d9d9;
}

.product-page-side-title {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 7px;
}

.product-page-side-text {
    font-size: 11px;
    color: #939393;
    margin-bottom: 5px;
}

.product-page-share-item {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 14px;
}

    .product-page-share-item > li {
        float: left;
        margin-right: 5px;
    }

        .product-page-share-item > li .fa {
            display: block;
            width: 26px;
            height: 26px;
            line-height: 26px;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            text-align: center;
            color: #fff;
        }

            .product-page-share-item > li .fa.fa-facebook {
                background: #46629e;
            }

            .product-page-share-item > li .fa.fa-twitter {
                background: #55acee;
            }

            .product-page-share-item > li .fa.fa-pinterest {
                background: #cd2129;
            }

            .product-page-share-item > li .fa.fa-instagram {
                background: #457399;
            }

            .product-page-share-item > li .fa.fa-google-plus {
                background: #dd4b39;
            }

            .product-page-share-item > li .fa:hover {
                text-decoration: none;
            }

.product-page-area {
    background: #fff;
    padding: 30px 0;
}

.product-rate-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .product-rate-list > li {
        height: 26px;
        overview: hidden;
        margin-bottom: 7px;
    }

.product-rate-list-item {
    margin: 0;
    font-size: 13px;
    height: 26px;
    line-height: 26px;
    float: left;
    width: 25%;
}

.product-rate-list-bar {
    width: 65%;
    float: left;
    background: #d9d9d9;
    height: 20px;
    margin-top: 3px;
}

    .product-rate-list-bar > div {
        background: #ffc120;
        height: 20px;
    }

.product-rate-list-count {
    float: left;
    width: 10%;
    text-alighn: right;
    padding-left: 7px;
    height: 26px;
    line-height: 26px;
    margin: 0;
    font-size: 11px;
    color: #7a7a7a;
}

.product-review {
    margin-bottom: 15px;
    padding-bottom: 15px;
    overflow: hidden;
    border-bottom: 1px dashed #d9d9d9;
}

.product-review-author {
    float: left;
    margin-right: 20px;
}

.product-review-author-img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.product-review-content,
.product-review-content-full {
    display: table;
    width: 70%;
    float: left;
    border-right: 1px dashed #d9d9d9;
    padding-right: 15px;
}

.product-review-content-full {
    padding-right: 0;
    border-right: none;
    width: 85%;
}

.product-review-title {
    margin-bottom: 5px;
    font-size: 18px;
}

.product-review-meta {
    font-style: italic;
    color: #838383;
    margin-bottom: 3px;
    margin-top: 2px;
    font-size: 13px;
}

.product-review-body {
    font-size: 14px;
}

.product-review-side {
    float: left;
    width: 15%;
    margin-left: 15px;
}

.product-review-side-sign {
    margin-bottom: 3px;
    font-size: 14px;
    color: #727272;
}

.product-review-rate {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 10px;
    background: #737373;
    color: #fff;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

    .product-review-rate:hover {
        background: #486d97;
        color: #fff;
        text-decoration: none;
    }

    .product-review-rate .fa {
        margin-right: 3px;
    }

.product-review-actions {
    margin-bottom: 0;
}

    .product-review-actions > li > a {
        font-size: 12px;
        color: #8b8b8b;
    }

        .product-review-actions > li > a:hover {
            color: #595959;
            text-decoration: none;
        }

.product-accessory-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.product-accessory {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.product-accessory-img {
    width: 100%;
}

.product-accessory-title {
    font-size: 15px;
    margin-top: 4px;
    line-height: 1.4em;
}

    .product-accessory-title > a {
        color: #595959;
    }

.product-accessory-price {
    margin-bottom: 7px;
    font-size: 27px;
    font-weight: 500;
}

.product-accessory-included-list {
    padding-left: 17px;
    margin-top: 15px;
    font-size: 16px;
}

    .product-accessory-included-list > li {
        margin-bottom: 7px;
    }

.product-page-qa {
    margin-bottom: 15px;
    border-bottom: 1px dashed #e6e6e6;
}

.product-page-qa-form {
    margin: 15px 0;
}

.product-page-qa-question {
    font-weight: 500;
}

.product-page-qa-question,
.product-page-qa-answer {
    min-height: 35px;
    position: relative;
    padding-left: 35px;
    font-size: 17px;
    margin-bottom: 15px;
}

    .product-page-qa-question:before,
    .product-page-qa-answer:before {
        opacity: 0.75;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
        filter: alpha(opacity=75);
        content: 'Q:';
        position: absolute;
        top: 0;
        left: 0;
        line-height: 1em;
        font-size: 25px;
        font-weight: 700;
        color: #486d97;
    }

.product-page-qa-answer {
    margin-left: 30px;
    font-size: 16px;
}

    .product-page-qa-answer:before {
        content: 'A:';
    }

.product-page-qa-text {
    margin-bottom: 3px;
}

.product-page-qa-meta {
    font-size: 12px;
    font-style: italic;
    color: #838383;
    margin-bottom: 0;
}

.product-page-option-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .product-page-option-list > li {
        margin-bottom: 15px;
    }

.product-page-option-title {
    width: 45px;
    font-size: 16px;
    margin-bottom: 0;
    float: left;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
}

.product-page-option-select {
    font-size: 14px;
    height: 40px;
    padding: 0 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #b3b3b3;
    float: left;
}

    .product-page-option-select:focus {
        outline: none;
    }

.product-page-actions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

    .product-page-actions-list > li {
        float: left;
        margin-right: 10px;
    }

.product-page-qty-item {
    border: 1px solid #ccc;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
}

.product-page-qty {
    background: #fff;
    height: 39px;
    width: 39px;
    line-height: 39px;
    float: left;
    display: block;
    text-align: center;
    padding: 0;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

    .product-page-qty:focus {
        outline: none;
    }

.product-page-qty-input {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    width: 50px;
}

.product-list {
    list-style: none;
    padding: 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    overflow: hidden;
}

    .product-list > li {
        border-bottom: 1px solid #e6e6e6;
    }

        .product-list > li:last-child {
            border-bottom: none;
        }

    .product-list .product {
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .product-list .product-left .product-img-wrap {
        width: 30%;
    }

    .product-list .product-left .product-caption {
        width: 70%;
    }

.product-review-thumb {
    padding: 15px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    background: #fff;
}

.product-review-thumb-header {
    overflow: hidden;
    margin-bottom: 10px;
}

.product-review-thumb-reviewer-img {
    width: 20% !important;
    float: left;
    margin-right: 5%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.product-review-thumb-reviewer-name {
    font-size: 13px;
    margin-bottom: 0;
}

.product-review-thumb-header-side {
    float: left;
    width: 75%;
    display: table;
    padding-top: 2px;
}

.product-review-thumb-rating {
    list-style: none;
    margin-bottom: 4px;
    padding: 0;
    overflow: hidden;
}

    .product-review-thumb-rating > li {
        line-height: 1em;
        color: #808080;
        float: left;
        margin-right: 2px;
    }

        .product-review-thumb-rating > li.rated {
            color: #ffc120;
        }

.product-review-thumb-body {
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.3em;
    font-style: italic;
    margin-bottom: 2px;
    height: 60px;
    overflow: hidden;
}

.product-review-thumb-link {
    margin-left: 10px;
    font-size: 13px;
}

.product-review-thumb-product {
    overflow: hidden;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.product-review-thumb-product-img {
    float: left;
    width: 20% !important;
    margin-right: 5%;
}

.product-review-thumb-product-title {
    height: 55px;
    overflow: hidden;
    float: left;
    width: 75%;
    font-weight: 400;
    line-height: 1.4em;
}

    .product-review-thumb-product-title > a {
        color: #595959;
    }

        .product-review-thumb-product-title > a:hover {
            color: #486d97;
            text-decoration: none;
        }

@-moz-keyframes infoBlock {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(30px, 0, 0);
        -moz-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(-7px, 0, 0);
        -moz-transform: translate3d(-7px, 0, 0);
        -o-transform: translate3d(-7px, 0, 0);
        -ms-transform: translate3d(-7px, 0, 0);
        transform: translate3d(-7px, 0, 0);
    }

    100% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes infoBlock {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(30px, 0, 0);
        -moz-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(-7px, 0, 0);
        -moz-transform: translate3d(-7px, 0, 0);
        -o-transform: translate3d(-7px, 0, 0);
        -ms-transform: translate3d(-7px, 0, 0);
        transform: translate3d(-7px, 0, 0);
    }

    100% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-o-keyframes infoBlock {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(30px, 0, 0);
        -moz-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(-7px, 0, 0);
        -moz-transform: translate3d(-7px, 0, 0);
        -o-transform: translate3d(-7px, 0, 0);
        -ms-transform: translate3d(-7px, 0, 0);
        transform: translate3d(-7px, 0, 0);
    }

    100% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-ms-keyframes infoBlock {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(30px, 0, 0);
        -moz-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(-7px, 0, 0);
        -moz-transform: translate3d(-7px, 0, 0);
        -o-transform: translate3d(-7px, 0, 0);
        -ms-transform: translate3d(-7px, 0, 0);
        transform: translate3d(-7px, 0, 0);
    }

    100% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes infoBlock {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translate3d(30px, 0, 0);
        -moz-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(-7px, 0, 0);
        -moz-transform: translate3d(-7px, 0, 0);
        -o-transform: translate3d(-7px, 0, 0);
        -ms-transform: translate3d(-7px, 0, 0);
        transform: translate3d(-7px, 0, 0);
    }

    100% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width:992px){
.product-left .product-actions {
display: block;
}
}
@media screen and (max-width:767px){
.product-img-wrap div {
margin: 0!important;
}
}
@media screen and (max-width:767px){

.profile-userpic img {
float: none;
margin: 0 auto;
max-width: 100%;
height: auto;
}
.product-left .product-actions {
display: block;
width: 100%!important;
margin: 0!important;
}
.product.product-left {
width: 100%;
margin: 0;
padding: 0;
}
.product-left .product-actions {
display: block;
width: 100%!important;
margin: 0!important;
position: relative!important;
right: 0;
}
.product-left .product-caption-feature-list {
position: relative;
width: 100%!important;
right: 0;
display: block;
}
.product-left .product-caption-feature-list li {
display: block;
border-left: 0;
text-align: center;
border-top: 1px solid #ddd;
margin: 7px 0 0;
padding: 7px 0 0;
}

}


@media screen and (max-width:767px){
.product-details-short {
float: none;
width: 100%;
}
.product-details {
float: none;
width: 100%;
}
.product-details-short {
float: none;
width: 100%;
text-align: center;
}
.product-page-side-section {
text-align: center;
}
.product-page-share-item {
text-align: center;
}
.product-page-share-item > li {
float: none;
margin-right: 5px;
display: inline-block!important;
vertical-align: top;
}
.product-left .product-caption {
float: none;
width: 100%;
text-align: center;
}
.profile-userpic img {
margin: 0 auto!important;
height: auto!important;
}
.clearfix~div {
margin: 10px 0;
display: block;
}
.clearfix~div a.btn.btn-primary {
width: 100%!important;
max-width: 100%!important;
flex-direction: column;
margin: 3px 0;
}

ul.product-caption-feature-list {
width: 100%!important;
}
.product-details-short ul.product-caption-feature-list > li {
display: inline-block;
width: 50%;
}
.product-left .product-caption-feature-list li {
display: inline-block;
border-left: 0;
text-align: center;
border-top: 1px solid #ddd;
margin: 7px 0 0;
padding: 7px 0 0;
width: 50%;
vertical-align: top;
font-size: 12px;
}
}
@media screen and (max-width:767px){
.profile-userpic img {
width: auto!important;
height: 165px!important;
}
.product-left .product-img-wrap {
text-align: center;
padding: 10px 0;
font-size: 14px;
}
.product-img-wrap li span {
font-size: 15px;
}
.product.product-left {
width: 100%;
margin: 30px 0 20px;
padding: 0;
}
.product-left .product-actions {
padding: 0 15px;
}
}
@media screen and (max-width:767px){
.profile-userpic img {
width: auto!important;
height: 100px!important;
}

}
@media screen and (max-width:767px){
.product-left .product-caption-feature-list li {
display: inline-block;
border-left: 0;
text-align: center;
border-top: 0px;
margin: 7px 0 0;
padding: 7px 0 0;
width: 50%;
vertical-align: top;
font-size: 12px;
border-bottom: 1px solid #ddd;
}
.product-left .product-caption-feature-list {
position: relative;
width: 100%!important;
right: 0;
display: block;
margin: 0;
bottom: -1px;
}
.product-left .product-caption-feature-list li:nth-child(1), .product-left .product-caption-feature-list li:nth-child(2) {
border-top: 1px solid #ddd;
}
}
@media screen and (max-width:767px){
.product-caption-price li {
border-bottom: 0!important;
}
}

@media screen and (max-width:484px){
.shop-container iframe {
position: relative!important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 1440vh!important;
border: none !important;
}
.shop-container {
position: relative !important;
padding-bottom: 0 !important;
padding-top: 35px !important;
height: 100% !important;
overflow: hidden !important;
}
.profile-userpic img {
min-height: auto!important;
height: auto!important;
}
.product-left .product-img-wrap, .product-left .product-img-wrap img {
margin: 0!important;
padding-bottom: 0px!important;
}
.product-actions li div {
width: 100%;
}
.product-caption {
display: block;
margin: 20px 0 0;
}
.product-left .product-caption-feature-list {
margin: 0;
width: 100%;
display: block;
}
.product-left .product-caption-feature-list li {
display: inline-block;
width: 100%;
border-left: 0!important;
margin: 0!important;
}
.product-caption-feature-list li {
padding: 0!important;
margin: 0!important;
}
.product-left .product-caption-price .product-caption-feature-list li {
display: none;
}
.product-left .product-caption-feature-list li:nth-child(1) {
border-bottom: 0;
}
}










.product-left .product-caption-price > span.postage {
    font-size: 12px;
}
@media screen and (max-width: 767px){
section.car-details.page-section-ptb .col-md-9 .row[data-gutter="15"]{
    display: inline-block;
    width: 49%;
    padding: 0 5px;
    margin: 0;
    vertical-align: top;
}
section.car-details.page-section-ptb .col-md-9 .row .col-md-12 {
    padding: 0;
}
.clearfix~div a.btn.btn-primary {
    width: 100%!important;
    max-width: 100%!important;
    flex-direction: column;
    margin: 3px 0;
    min-width: 100%;
    font-size: 11px;
    padding: 10px 0;
}	
.product-left .product-caption-title {
    font-size: 13px;
    height: auto;
}
.product-actions li div img {
    min-width: 100%;
}
.clearfix~div {
    margin: 0px 0;
}
.product.product-left {
    width: 100%;
    margin: 10px 0 0px;
    padding: 0;
}
.product-left .product-img-wrap, .product-left .product-img-wrap img {
    margin: 0!important;
    padding-bottom: 0px!important;
    padding-top: 0px;
    border-radius: 5px 5px 0px 0;
    height: 100%;
}
.product-left .product-img-wrap img {
    height: 165px;
    min-height: 100px;
}
.product-img-wrap.product-options-available img {
    height: 115px;
    min-height: 115px;
}
.product-img-wrap img {
    max-height: 200px;
    margin-top: 0;
    min-height: 160px;
    object-fit: cover;
    object-position: center;
}

.product-img-wrap div {
    margin: 0!important;
    display: none;
}

.product-page-desc, .product-page-desc-lg {
    font-size: 14px;
}
.product-actions li div img {
    min-width: 50%;
    padding: 5px;
    height: 50px!important;
    max-width: 100%;
}
.product-img-wrap li {
    margin-top: 0!important;
}
.product-img-wrap li span {
    font-size: 12px;
}
.product-img-wrap img {
    max-height: 210px!important;
}
.product-actions li div a {
    min-width: 60px!important;
}
.product-left .product-caption-price > span {
    font-size: 15px;
	display:block;
}
.product-left .product-caption {
    margin-bottom: 0;
}
.product-page-desc {
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-caption-feature-list li:nth-child(2) {
    line-height: 20px;
    min-height: 30px;
    text-align: center;
}
.product-left .product-caption-title {
    font-size: 13px;
    height: auto;
    max-height: 50px;
    min-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-caption-price span strike {
    display: none;
}
.product-left .product-caption-price > span.postage {
    font-size: 12px;
	display:block;
}
}




@media screen and (max-width: 767px){
a#dnn_ctr15266_View_ListProducts_btnCheckout {
    width: 100%!important;
    min-width: 100%!important;
    margin: 0 -15px!important;
    position: relative;
    display: block;
}
section.inner-intro.bg-1.bg-overlay-black-70.bg-shop {
    height: 220px;
    background-position: center!important;
}
section.inner-intro.bg-1.bg-overlay-black-70.bg-shop ul.page-breadcrumb {
    padding-top: 0;
    padding-bottom: 0!important;
}
section.inner-intro.bg-1.bg-overlay-black-70.bg-shop .intro-title {
    vertical-align: middle!important;
}
}



@media screen and (max-width: 767px){
.table-shopping-cart > thead > tr > th, .table-shopping-cart > tbody > tr > th, .table-shopping-cart > tfoot > tr > th, .table-shopping-cart > thead > tr > td, .table-shopping-cart > tbody > tr > td, .table-shopping-cart > tfoot > tr > td {
    vertical-align: middle;
    padding: 10px 4px;
}
.table-shopping-cart > thead > tr > th {
    font-size: 10px;
    padding: 10px 0;
}
.table-shopping-cart-img img {
    width: 50px;
}
.table-shopping-cart-title a {
    font-size: 12px;
    line-height: 20px!important;
    padding: 0;
    margin: 0;
}
.table-shopping-qty {
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
}
.table-shopping-cart > thead > tr > th {
    font-size: 10px;
}
.table-shopping-remove {
    display: block;
    width: 28px;
    height: 28px;
    line-height: 28px;
}
.table-responsive {
    margin: 20px 0 0;
}
}

@media screen and (max-width:767px){
    .product-details {
        float: none;
        width: 100%;
    }	
    .product-details-short {
        float: none;
        width: 100%;
    }
    .form-action.pull-right {
        width: 100%!important;
    }
    .product-details-short .clearfix~div {
        display: block!important;
    }	
    .product-caption-price span strike {
        display: block;
    }
    .product-left .product-caption-price > span.product-caption-price-new:nth-child(1) {
        height: 50px;
        position: relative;
    }
    .product-left .product-caption-price > span.product-caption-price-new:nth-child(2) {
        position: absolute;
        top: 30px;
        width: 100%;
        text-align: center;
    }
    .product-caption-price {
        position: relative;
    }
    }

    @media screen and (max-width:767px){
        .product-details {
            float: none!important;
            width: 100%!important;
        }	
        .product-details-short {
            float: none!important;
            width: 100%!important;
        }
        .form-action.pull-right {
            width: 100%!important;
        }
        .product-details-short .clearfix~div {
            display: block!important;
        }
        .product-details-short ul.product-caption-feature-list > li {
            width: 100%!important;
        }
        .clearfix~div a.btn.btn-primary{
            display:block!important;
        }	
        .product-page-side-section{
            padding-top:0px;
        }
        .clearfix~div a.btn.btn-primary {
            margin: 8px 0;
        }
        }
        @media screen and (max-width:767px){
            .nav > li {
                position: relative!important;
                display: block!important;
                float: none!important;
                margin-bottom: 5px!important;
            }
            .product-tabs .nav > li > a.active.show {
                padding: 10px 15px;
                border-radius: 4px 4px 0 0;
                box-shadow: none!important;
                border: 1px solid #ddd;
            }
            .product-tabs .nav > li > a {
                border: 1px solid #ddd;
                margin: 0;
            }
            .gap {
                margin: 10px 0 20px 0!important;
            }
            .product-caption-feature-list li {
                display: block;
                width: 100%;
                text-align: left!important;
                margin: 0!important;
                padding: 0 0px 0 12px!important;
                border: none!important;
            }
            .product .product-caption .product-caption-feature-list {
                position: relative !important;
                margin: 10px 0 0 0;
            }
            .product .product-caption .product-caption-feature-list {
                position: relative !important;
                margin: 12px 0 0!important;
            }
            h3.widget-title~.row .col-md-3 {
                width: 47%;
                padding: 0!important;
                margin: 0 5px;
            }
            h3.widget-title~.row .col-md-3 .product {
                padding: 0;
            }
            .product-img-wrap {
                margin: 10px;
            }
            }



















































/****** End of Product ******/
