﻿#opis {
    outline-style: solid;
    outline-width: thin;
    outline-color: #DDDDDD;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.product-item div {
    background: rgba(246, 246, 246, 0.75);
    z-index: 900 !important;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#opis:hover {
    outline-style: solid;
    outline-width: thin !important;
    outline-color: #F2AF07 !important;
}

.item-box .product-title {
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.2;
    font-weight: normal;
    color: #4ab2f1;
    height: 60px !important;
}
/*/*/
.product-item .zoom {
    transition: transform .2s;
}

.product-item:hover .zoom {
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
