﻿/* PRODUCTS LIST */

/*---------------------- MAIN PANEL -----------------*/
.S_Products_List_Main {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 1500px;
    direction: rtl;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
}
.S_Products_List_Clear
{
    width: 100%;
    clear: both;
}
/*---------------------- MAIN PANEL -----------------*/


/*---------------------- ITEM MAIN ------------------*/
.S_Products_List_Items {
    position: relative;
    display: inline-block;
    width: 25.0%;
    height: auto;
    padding: 20px;
    cursor: pointer;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.S_Products_List_Pic_Main {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 100%;
    clear: both;
}
.S_Products_List_Pic_Body
{
    position: absolute;
    width: auto;
    height: auto;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    background-color: #FFFFFF;
    overflow: hidden;
    z-index: 100;
}
.S_Products_List_Pic
{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 10;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.S_Products_List_Pic_Over
{
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    background-color: rgba(255,255,255,0.0);
    box-shadow: 0px 0px 0px 10px rgba(240,240,240,0.5);
    z-index: 20;
    -moz-transition: all 0.6s cubic-bezier(0.000, 0.580, 0.320, 0.995);
	-ms-transition: all 0.6s cubic-bezier(0.000, 0.580, 0.320, 0.995);
	-o-transition: all 0.6s cubic-bezier(0.000, 0.580, 0.320, 0.995);
	-webkit-transition: all 0.6s cubic-bezier(0.000, 0.580, 0.320, 0.995);
	transition: all 0.6s cubic-bezier(0.000, 0.580, 0.320, 0.995);
}
.S_Products_List_Title_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 10px 0px 5px 0px;
    font-family: 'Peyda';
    font-style: normal;
    font-weight: normal;
    clear: both;
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.S_Products_List_Title
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 5px 0px 5px 0px;
    border-bottom: solid 1px #CCCCCC;
    font-size: 0.9em;
    text-align: right;
    direction: rtl;
    color: #000000;
}
.S_Products_List_Code
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 5px 0px 5px 0px;
    font-size: 0.85em;
    text-align: right;
    direction: rtl;
    color: #787878;
}
.S_Products_List_Items:hover .S_Products_List_Pic_Over
{
    background-color: rgba(255,255,255,0.3);
}
.S_Products_List_Items_Finish
{
    width: 100%;
    clear: both;
}
/*---------------------- ITEM MAIN ------------------*/





@media screen and (min-width:0px) and (max-width:1000px)
{
    .S_Products_List_Items
    {
        width: 33.3333%;
        padding: 15px; 
    }
}

@media screen and (min-width:0px) and (max-width:700px)
{
    .S_Products_List_Items
    {
        width: 50.0%;
    }
}

@media screen and (min-width:0px) and (max-width:500px)
{
    .S_Products_List_Pic_Body {
        left: 5px;
        right: 5px;
        top: 5px;
        bottom: 5px;
    }
    .S_Products_List_Title
    {
        min-height: 60px;
        padding: 5px 10px 5px 10px;
    }
}

@media screen and (min-width:0px) and (max-width:400px)
{
    .S_Products_List_Pic_Body
    {
        left: 1px;
        right: 1px;
        top: 1px;
        bottom: 1px;
    }
    .S_Products_List_Title
    {
        padding: 5px 5px 5px 5px;
    }
}