﻿.breadcrumb-bg {
    background-image: url("/images/common/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.product-box {
    border-radius: 10px;
    overflow: hidden;
    margin: 40px auto auto;
    text-align: center;
    position: relative;
    background-color: #fff;
}

.product-box:hover {
     box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.product-box::after {
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    margin: auto;
    vertical-align: middle;
    width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-65px);
    -webkit-transform: translateX(-65px);
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    background-color: var(--them-gradient-2);
}

.product-box:hover:after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

.product-media {
    background-color: #f7f6f2;
    height: 260px;
    position: relative;
}

.product-media > .prod-img {
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}


.product-media > img.shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

.product-caption {
    text-align: center;
    padding: 10px 0 30px;
}

.product-title { font-size: 20px; }

.light-font { font-weight: 300; }



.divider-full-1 {
    border: 1px dashed #e9e9e9;
    display: inline-block;
    height: 1px;
    margin: 10px auto;
    width: 100%;
    vertical-align: middle;
}


.product-class { }

.product-class .product-class-title { }

.product-class ul { padding-left: 0px; }

.product-class ul li { padding: 10px 0px 10px 0px; }

.product-class-items li { color: #666666; }

.product-class-items .product-class-items-active {
    color: var(--theme-primary);
    font-weight: bold;
}

.product-class-items > li:hover { color: var(--theme-primary); }
