﻿.product-box {
    text-align: left;
    /* margin-bottom: 10px; */
    /* background: #fff; */
    position: relative;
    overflow: hidden;
    /* padding: 10px; */
    /* margin: 10px; */
}

.product-box:before {
    content: "";
    width: 100%;
    height: 100%;
    /* background: #fff; */
    position: absolute;
    top: 0;
    left: 0;
}

.product-box .product-thumbnail {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    /* width: 103%; */
    /* float: left; */
}

.product-box .product-thumbnail>a {
    display: block;
    width: 100%;
    text-align: center
}

.product-box .product-thumbnail a img {
    height: 100%;
    min-height: 160px;
    max-height: 260px;
    max-width: 100%;
    padding: 5px;
}
.documents .product-box .product-thumbnail a img {
    height: 100%;
    min-height: 160px;
    max-height: 398px;
    max-width: 100%;
    padding: 5px;
}
@media (max-width: 480px){
    .product-box .product-thumbnail a img {
    height: auto;
    min-height: 235px;
    max-height: 235px;
    max-width: 352px;
}
    .product-box .product-thumbnail {
max-width: 352px;
margin: 0 auto;
    }
    .documents .product-box .product-thumbnail a img {
    height: auto;
    min-height: 235px;
    max-height: 398px;
    max-width: 352px;
}
}
.product-box .product-thumbnail .img-size {
    border: 50px solid rgba(255, 255, 255, 0);
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    border-radius: 0;
    line-height: 1;
    color: #fff;
    transition: all ease 0.5s;
    width: 100%;
    height: 100%;
}

.product-box .product-thumbnail .img-size:hover {
    background: rgba(0, 0, 0, 0.33);
    border: 5px solid rgba(255, 255, 255, 0.5);
}
.documents .product-box .product-thumbnail .img-size:hover {
    background: rgba(46, 141, 181, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.product-box .product-thumbnail .img-size:hover .fa {
    opacity: 1
}

.product-box .product-thumbnail .img-size .fa {
    position: absolute;
    top: calc(50% - 15px);
    border-radius: 5px;
    background: #fb9b20;
    font-size: 20px;
    line-height: 34px;
    width: 34px;
    height: 34px;
    left: calc(50% - 17px);
    text-align: center;
    transition: all ease 0.5s;
    opacity: 0;
}

.product-box .product-thumbnail .tooltip {
    text-align: center
}

.product-box .product-info {
    z-index: 10;
    position: relative;
    padding-bottom: 10px
}

.product-box .product-info .inline-list li {
    margin-right: 3px;
    font-size: 14px;
    color: #aaa
}

.product-box .product-info .inline-list li .fa {
    color: #4CAF50
}

.product-box .product-name {
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    font-weight: 300;
    margin-top: 5px;
    text-align: center
}

.product-box .product-name a {
    color: #333;
    text-decoration: none
}

.product-box .product-name a:hover {
    color: #085ee9
}

.product-box .product-price {
    color: #323c3f;
    font-size: 1.28571em;
    line-height: 1.71429em;
    display: block;
    font-weight: 700
}

.product-box .product-price-old {
    text-decoration: line-through;
    font-size: 1.14286em;
    margin: 0 0 0 10px;
    display: inline-block;
    color: #adadad
}

.product-box .sale-flash {
    position: absolute;
    font-size: .92857em;
    color: #FFF;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: 700;
    top: 0;
    left: 10px;
    text-align: center;
    z-index: 99;
    background-color: #faca00
}

.product-box .sale-flash:before {
    border-top: 10px solid #faca00;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    content: "";
    position: absolute;
    bottom: 100%;
    margin: 0;
    left: 0%;
    top: 100%;
    z-index: 100
}

.product-box .product-summary {
    font-size: 1em;
    color: #acacac;
    line-height: 20px
}

.product-box form {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.product-price {
    color: #323c3f;
    font-size: 1.42857em;
    line-height: 24px;
    display: block;
    font-weight: 700
}

.products-view-list .product-box .product-thumbnail {
    text-align: center;
    margin-bottom: 0;
    width: calc(100% / 3);
    float: left
}

.products-view-list .product-box .product-info {
    text-align: left;
    margin-left: 30px;
    float: left;
    width: calc(100% / 3 * 2 - 30px);
    background: transparent;
    border-top: none
}
.img-title{
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    padding-left: 18px;
    font-size: 16px;
    font-weight: 600;
    bottom: -60px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
}
.product-box .product-thumbnail:hover .img-title{
    bottom: 10px;
}
.img-title p
{
    font-size: 10px;
    font-weight: normal;
    border-top: 1px solid #eee;
}
@media (min-width: 600px){
    .col-600 {
    max-width: 50%;
}
}
.or-gallery .product-box .product-thumbnail a img{
    min-height:234px;
    padding:0px;
}
.or-gallery .block-3 .owl-dots{
    padding-top:10px;
}