﻿/* AUCTION DETAIL V1 */

/*---------------------- MAIN PANEL -----------------*/
.S_Auction_Detail_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 1500px;
    -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_Auction_Detail_Title_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #3CB4C3;
    border-radius: 20px;
    -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_Auction_Detail_Title_Slice
{
    position: relative;
    display: block;
    float: right;
    width: 50%;
    height: auto;
    font-family: 'Peyda';
    font-style: normal;
    font-weight: bold;
    font-size: 1.1em;
    vertical-align: top;
    color: #FFFFFF;
    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;
}
.S_Auction_Detail_Title_Slice_Sep
{
    position: relative;
    display: none;
    width: 100%;
    height: 10px;
    margin-top: 10px;
    border-top: solid 1px rgba(255,255,255,0.4);
}
.S_Auction_Detail_Clear
{
    width: 100%;
    clear: both;
}
/*---------------------- MAIN PANEL -----------------*/


/*-------------------- GALLERY SLIDE ----------------*/
.S_Auction_Detail_Slide_Main
{
    position: relative;
    display: block;
    width: auto;
    height: auto;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0px 10px 0px 10px;
    moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    overflow: visible;
}
.S_Auction_Detail_Slide_Item_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 80%;
    background-color: transparent;
    border: solid 1px #CCCCCC;
    border-radius: 3px;
}
.S_Auction_Detail_Slide_Key_Next, .S_Auction_Detail_Slide_Key_Back
{
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    top: 50%;
    margin-top: -9px;
    padding-top: 2px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 9px;
    font-family: 'AtrinWebSign1';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    z-index: 110;
    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_Auction_Detail_Slide_Key_Next
{
    right: 2px;
}
.S_Auction_Detail_Slide_Key_Back
{
    left: 2px;
}
.S_Auction_Detail_Slide_Item_Body
{
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    overflow: hidden;
    z-index: 100;
    cursor: pointer;
}
.S_Auction_Detail_Slide_Item
{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0%;
    z-index: 100;
    moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

    -moz-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-ms-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-o-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-webkit-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
}
.S_Auction_Detail_Slide_Item_Pic
{
    position:absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;

    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
/*-------------------- GALLERY SLIDE ----------------*/


/*------------------------- KEYS --------------------*/
.S_Auction_Detail_Key_Main_L, .S_Auction_Detail_Key_Main_R
{
    position: relative;
    display: table;
    width: 100%;
    height: auto;
    padding-top: 20px;
}
.S_Auction_Detail_Key_Item
{
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: 2px;
    background-color: rgba(200,200,200,0.2);
    border-radius: 15px;
    cursor: pointer;
    z-index: 100;
    -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_Auction_Detail_Key_Item:hover
{
    background-color: rgba(200,200,200,0.4);
}
.S_Auction_Detail_Key_Main_L .S_Auction_Detail_Key_Item
{
    float: left;
}
.S_Auction_Detail_Key_Main_R .S_Auction_Detail_Key_Item
{
    float: right;
}
.S_Auction_Detail_Key_Item_Sign
{
    position: relative;
    display: table-cell;
    width: inherit;
    height: inherit;
    font-family: 'AtrinWebSign1';
    font-style: normal;
    font-weight: normal;
    font-size: 2.0em;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    vertical-align: middle;
    color: #000000;
}
/*------------------------- KEYS --------------------*/


/*---------------------- SHARE ICONS ----------------*/
.S_Auction_Detail_Share_Icons_Main
{
    position: relative;
    display: block;
    height: auto;
    margin: 4px;
    z-index: 1;

    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);

    -moz-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-ms-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-o-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-webkit-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
}
.S_Auction_Detail_Key_Main_L .S_Auction_Detail_Share_Icons_Main
{
    float: left;
}
.S_Auction_Detail_Key_Main_R .S_Auction_Detail_Share_Icons_Main
{
    float: right;
}
.S_Auction_Detail_Share_Icons_Body
{
    position: relative;
    display: table;
    width: auto;
    height: auto;
}
.S_Auction_Detail_Share_Icons_Item
{
    position: relative;
    display: block;
    float: left;
    width: 28px;
    height: 28px;
    background-color: rgba(0,120,255,0.0);
    border-radius: 14px;
    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_Auction_Detail_Share_Icons_Item:hover
{
    background-color: rgba(0,120,255,0.05);
}
.S_Auction_Detail_Share_Icons_Item_Sign
{
    position: relative;
    display: table-cell;
    width: inherit;
    height: inherit;
    font-family: 'AtrinWebSign1';
    font-style: normal;
    font-weight: normal;
    font-size: 1.6em;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    vertical-align: middle;
    color: #787878;
}
.S_Auction_Detail_Share_Icons_Item:hover .S_Auction_Detail_Share_Icons_Item_Sign
{
    color: #000000;
}
/*---------------------- SHARE ICONS ----------------*/


/*------------------- OTHER INFORMATION -------------*/
.S_Auction_Other_Info_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 1500px;
    -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_Auction_Other_Info_Slice
{
    position: relative;
    display: block;
    float: right;
    width: 50%;
    height: auto;
    -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_Auction_Other_Info_Title_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 5px;
    -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_Auction_Other_Info_Title_1, .S_Auction_Other_Info_Title_2
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 4px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: right;
    vertical-align: top;
    color: #325A5A;
    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;
}
.S_Auction_Other_Info_Title_1
{
    background-color: rgba(0,150,20,0.15);
}
.S_Auction_Other_Info_Title_2
{
    background-color: transparent;
}
.S_Auction_Other_Info_Clear
{
    width: 100%;
    clear: both;
}
/*------------------- OTHER INFORMATION -------------*/


/*----------------------- PICTURES ------------------*/
.S_Auction_Pictures_Main
{
    position: relative;
    display: table;
    width: 100%;
    height: auto;
    max-width: 900px;
    -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_Auction_Pictures_Item
{
    position: relative;
    display: block;
    float: right;
    width: 25%;
    height: auto;
    padding: 20px;
    -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_Auction_Pictures_Item_Sep
{
    position: relative;
    display: none;
    width: 100%;
    height: 10px;
    margin-top: 10px;
}
.S_Auction_Pictures_Item_Sign_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-width: 150px;
}
.S_Auction_Pictures_Item_Sign_Body
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 100%;
    background-color: #3CB4C3;
    border-radius: 100%;
}
.S_Auction_Pictures_Item_Sign
{
    position: absolute;
    display: table-cell;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    font-family: 'AtrinWebSign1';
    font-style: normal;
    font-weight: normal;
    font-size: 6.6em;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.S_Auction_Pictures_Item_Title
{
    position: relative;
    display: block;
    float: right;
    width: 100%;
    height: auto;
    padding-top: 10px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 500;
    font-size: 1.0em;
    text-align: center;
    vertical-align: top;
    color: #325A5A;
    direction: rtl;
}
/*----------------------- PICTURES ------------------*/





@media screen and (min-width:0px) and (max-width:900px)
{
    .S_Auction_Detail_Slide_Main
    {
        margin-left: 10px;
        margin-right: 10px;
        padding: 0px 10px 0px 10px;
    }
    .S_Auction_Detail_Slide_Key_Next
    {
        right: 0px;
    }
    .S_Auction_Detail_Slide_Key_Back
    {
        left: 0px;
    }

    .S_Auction_Detail_Title_Slice
    {
        float: none;
        width: 100%;
        clear: both;
    }
    .S_Auction_Detail_Title_Slice_Sep
    {
        display: block;
    }
    .S_Auction_Other_Info_Slice
    {
        float: none;
        width: 100%;
        clear: both;
    }
}

@media screen and (min-width:0px) and (max-width:800px)
{
    .S_Auction_Pictures_Item
    {
        width: 50%;
        padding: 20px;
    }
    .S_Auction_Pictures_Item_Sep
    {
        display: block;
    }
}

@media screen and (min-width:0px) and (max-width:600px)
{
    .S_Auction_Detail_Slide_Main
    {
        margin-left: 0px;
        margin-right: 0px;
        padding: 0px 10px 0px 10px;
    }
}

@media screen and (min-width:0px) and (max-width:400px)
{
    .S_Auction_Pictures_Item_Sign
    {
        font-size: 6.0em;
    }
}