/*Search zone*/
.searchZone{
    padding-left: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.searchZone li{
    width:auto;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}
.searchZone li img{
    max-height: 169px;
}

.searchZone li .categoryInfo{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 98%;
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.searchZone li .categoryInfo{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.searchZone li h2{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.searchZone li i{
    font-size: 0;
    opacity: 0;
    display: block;
    clear: both;
    padding-top: 0;
    transition: all .3s ease-in-out; 
}
.searchZone li:hover i{
    opacity: 1;
    font-size: 30px;
    margin-top: 10px;
    color: rgba(255,255,255,0.9);
}

/*Categories and Products*/
.products{
    padding-left: 0;
}
.noticeCategory{
    width:100%;
    background: #e5e5e5;
}
.noticeCategory h3{
    padding:12px;
    color:#444444;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}
.product{
    cursor: pointer;
}
.product .contentProduct{
    position: relative;
}
.product h4{
    font-size: 16px;
    font-weight: 600;
}
.product .overlay{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 96%;
    height: 96%;
    background: rgba(0,0,0,0.7);
    padding: 5px;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.product:hover .overlay{
    opacity: 1;
    z-index: 1 !important;
}
.product .overlay ul{
    list-style: none;
    line-height: 140%;
    padding: 5px;
}
.product .overlay ul li{
    margin-bottom: 10px;
    position:relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.product .overlay ul li,.product .overlay ul li a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.product .overlay ul li a{
    padding-left: 25px;
}
.product .overlay ul li a:hover{
    text-decoration: underline;
}
.product .overlay ul li.pdfLink i{
    font-size: 18.5px;;
}
.product .overlay ul li.videoLink:first-of-type{
    margin-top: 15px;
}
.product .overlay ul li.videoLink i{
    margin-right: 10px;
    position: absolute;
    font-size: 14px;
}

.product .productTitle i, .product .productTitle.tabletTitle i{
    display: none;
}
