﻿body {
}

.div-product-image {
    align-items: inherit;
    position: relative;
    padding: 0.7rem 0;
}
    .div-product-image > .div-bg-cover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center center;
        filter: grayscale(100%) contrast(50%) opacity(0.1);
        box-shadow: 0 1px 7px #d1d1d1;
        transition: all 0.5s;
    }
    .div-product-image:hover > .div-bg-cover {
        filter: grayscale(10%) contrast(100%) opacity(0.15);
        box-shadow: 0 1px 7px #adadad;
    }
    

.magnifire-buttons {
    padding: 1rem;
    position: relative;
    z-index: 2;
}
    .magnifire-buttons > button {
        border: 0 none;
        position: relative;
        background-color: #f2f2f2;
        border-radius: 0.3rem;
        width: 50px;
        height: 50px;
        box-shadow: 0 1px 5px #c2c2c2;
        transition: all 0.2s;
    }
        .magnifire-buttons > button:not(:last-child) {
            margin-bottom: 0.6rem;
        }
    .magnifire-buttons > button > span[rel="zoomx"] {
        position: absolute;
        top: 2px;
        right: 2px;
    }
        .magnifire-buttons > button:hover {
            background-color: #e9e9e9;
        }
        .magnifire-buttons > button:active {
            background-color: #dedede;
        }

.product-image {
    border-radius: 0.5rem;
    max-width: 500px;
    max-height: 400px;
    border: 1px solid #fff;
    margin: 0 1.4rem;
    box-shadow: 0 1px 7px #ddd;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.product-thumbnails {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    padding: 0.8rem 1.3rem;
    max-height: 400px;
}
    .product-thumbnails > div {
        width: 120px;
        min-width: 120px;
        height: 120px;
        min-height: 120px;
        margin-bottom: 0.7rem;
        border-radius: 0.3rem;
        box-shadow: 0 1px 4px #c8c8c8;
        background-color: rgba(255, 255, 255, 0.7);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        cursor: pointer;
        transform: scale(1);
        transition: transform 0.15s, box-shadow 0.3s;
    }
        .product-thumbnails > div:hover {
            transform: scale(1.1);
            box-shadow: 0 1px 9px #b6b6b6;
        }

.div-product-image:hover .product-image {
    background-color: #fff;
}
.div-product-image:hover .product-thumbnails > div {
    background-color: #fff;
}

@media only screen and (max-width: 740px) {
    .div-product-image {
        flex-direction: column;
        padding: 1.3rem 0.8rem;
    }
        .div-product-image > .div-bg-cover {
            background-size: cover
        }
        .div-product-image > .magnifire-buttons {
            flex-direction: row;
            margin: 0 auto;
        }
            .div-product-image > .magnifire-buttons > button:not(:last-child) {
                margin-bottom: 0;
                margin-left: 0.6rem;
            }
        .div-product-image > .product-image {
            margin: 0 auto;
            max-width: 85%;
        }
        .div-product-image > .product-thumbnails {
            flex-direction: row;
            margin: 0 auto;
            overflow-y: hidden;
            overflow-x: auto;
            max-width: 100%;
        }
            .div-product-image > .product-thumbnails > div {
                margin-bottom: 0;
                margin-left: 0.7rem;
            }
}

.product-title {
}
    .product-title .h1-product-title {
        text-align: center;
        font-size: 1.7rem;
        color: #333;
    }
    .product-title > div[rel="category"] {
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translate(0, -50%);
        font-size: 0.95rem;
    }

@media only screen and (max-width: 950px) {
    .product-title {
    }

        .product-title > div[rel="category"] {
            position: inherit;
            left: inherit;
            top: inherit;
            transform: inherit;
            text-align: center;
        }
}

.product-little-desc {
    font-size: 1rem;
    text-indent: 0.7rem;
    line-height: 1.8rem;
    border: 1px solid #f2f2f2;
    background-color: #fbfbfb;
    border-radius: 0.7rem;
    padding: 0.7rem 1.2rem;
}

.product-desc {
    font-size: 1rem;
    text-indent: 0.7rem;
    line-height: 1.8rem;
    border: 1px solid #f2f2f2;
    border-radius: 0.7rem;
    padding: 0.7rem 1.2rem;
}

.ul-tab {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #dfdfdf;
    text-indent: 0;
}
    .ul-tab > li {
        margin-left: 0.5rem;
        border-radius: 0.6rem 0.6rem 0 0;
        background-color: #dfdfdf;
        padding: 0.4rem 0.9rem;
        transition: all 0.2s;
        cursor: pointer;
        font-size: 0.95rem;
    }
        .ul-tab > li:hover {
            background-color: #c2c2c2;
        }
        .ul-tab > li:active {
            background-color: #aeaeae;
        }
    .ul-tab > li.current {
        background-color: #ed2027;
        color: #fff;
    }


.div-content {
    padding: 0.7rem;
}
    .div-content > div {
        display: none;
    }
    .div-content > div.current {
        display: inherit;
    }