﻿input[type=text], input[type=password], input[type=textarea], input[type=checkbox], input[type=radio], input[type=submit], select, textarea
{
    outline:none;
}
.SSpan_Middle
{
    display: table-cell;
    width: inherit;
    height: inherit;
    vertical-align: middle;
}




.SMainBody
{
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #282828;
}
.SMainBody_Loading
{
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 1;
}
.SMainBody_Loading .SText
{
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 10;
    font-family: 'IRANSans';
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    color: #0078FF;
    text-align: center;
    direction: rtl;
}
.SMainBody_Loading .SRotate
{
    position: absolute;
    width: 100px;
    height: 100px;
    left: 0px;
    top: 0px;
    z-index: 20;

    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);

    animation-name: anim_loading;
    animation-duration: 0.7s;
    animation-delay: 0s;
    animation-direction: normal;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}
@keyframes anim_loading {
    0%
    {
        -moz-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    100%
    {
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}


.SMainBody_Back
{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;

    filter: alpha(opacity=0);
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -moz-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);

    animation-name: anim_back;
    animation-duration: 1s;
    animation-delay: 0.0s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
@keyframes anim_back {
    0%
    {
        filter: alpha(opacity=0);
        opacity: 0;
        -moz-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
        -o-transform: scale(1.1,1.1);
        -webkit-transform: scale(1.1,1.1);
        transform: scale(1.1,1.1);
    }
    100%
    {
        filter: alpha(opacity=100);
        opacity: 1;
        -moz-transform: scale(1.0,1.0);
        -ms-transform: scale(1.0,1.0);
        -o-transform: scale(1.0,1.0);
        -webkit-transform: scale(1.0,1.0);
        transform: scale(1.0,1.0);
    }
}

.SPanel_Main
{
    position: absolute;
    width: 430px;
    height: auto;
    left: 50%;
    top: 50%;
    padding: 5px;
    margin-left: -220px;
    margin-top: 0px;
    background-color: rgba(255,255,255,0.91);
    border-radius: 0px;
    box-shadow: 0px 0px 0px 5px rgba(255,255,255,0.2);

    z-index: 100;

    filter: alpha(opacity=0);
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -moz-transform: scale(1.05,1.05) translateY(-40%);
    -ms-transform: scale(1.05,1.05) translateY(-40%);
    -o-transform: scale(1.05,1.05) translateY(-40%);
    -webkit-transform: scale(1.05,1.05) translateY(-40%);
    transform: scale(1.05,1.05) translateY(-40%);

    animation-name: anim_panel;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
@keyframes anim_panel {
    0%
    {
        filter: alpha(opacity=0);
        opacity: 0;
        -moz-transform: scale(1.05,1.05) translateY(-40%);
        -ms-transform: scale(1.05,1.05) translateY(-40%);
        -o-transform: scale(1.05,1.05) translateY(-40%);
        -webkit-transform: scale(1.05,1.05) translateY(-40%);
        transform: scale(1.05,1.05) translateY(-40%);
    }
    100%
    {
        filter: alpha(opacity=100);
        opacity: 1;
        -moz-transform: scale(1.0,1.0) translateY(-50%);
        -ms-transform: scale(1.0,1.0) translateY(-50%);
        -o-transform: scale(1.0,1.0) translateY(-50%);
        -webkit-transform: scale(1.0,1.0) translateY(-50%);
        transform: scale(1.0,1.0) translateY(-50%);
    }
}


.SProvider_Main
{
    position: absolute;
    width: 100%;
    height: auto;
    left: 0px;
    bottom: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(0,0,0,0.8);
    box-shadow: 0px -5px 0px 0px rgba(0,0,0,0.4);
    z-index: 11;
    filter: alpha(opacity=0);
    opacity: 0;
    animation-name: anim_provider;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-direction: normal;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}
@keyframes anim_provider {
    0%
    {
        filter: alpha(opacity=0);
        opacity: 0;
    }
    100%
    {
        filter: alpha(opacity=100);
        opacity: 1;
    }
}
.SProvider_Logo
{
    position: absolute;
    display: table;
    width: auto;
    height: auto;
    left: 20px;
    top: 10px;
    z-index: 11;
}
.SProvider_Logo_Pic
{
    width: auto;
    height: auto;
    border: none;
}
.SProvider_Title
{
    position: relative;
    display: table;
    float: left;
    width: auto;
    height: auto;
    min-height: 40px;
    margin-left: 20px;
    padding-left: 48px;
    clear: both;
    font-family: 'HelveticaLt';
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    color: #FFFFFF;
    direction: ltr;
    text-align: left;
}
.SProvider_Version
{
    position: absolute;
    display: table;
    width: auto;
    height: auto;
    right: 20px;
    top: 20px;
    font-family: 'HelveticaLt';
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    color: #FFFFFF;
    direction: ltr;
    text-align: right;
    z-index: 10;
}

.SPanel_Company_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: rgba(150,150,150,0.1);
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    
    -moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.SPanel_Company
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.SPanel_Company .SCompany_Title
{
    position: relative;
    display: block;
    width: auto;
    height: auto;
    margin-left: 0px;
    margin-right: 80px;
    padding-right: 10px;
    border-right: solid 1px #D0D0D0;
    clear: both;
}
.SPanel_Company .SCompany_Title_Text
{
    position: relative;
    display: table;
    width: 100%;
    height: auto;
    min-height: 50px;
    font-size: 1.0em;
    color: #004696;
    text-align: right;
    vertical-align: middle;
    direction: rtl;
    clear: both;
}
.SPanel_Company .SCompany_Logo
{
    position: absolute;
    display: block;
    width: 70px;
    height: 100%;
    right: 0px;
    top: 0px;
    padding: 0px;
    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;
}
.SPanel_Company .SCompany_Logo_Pic
{
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    z-index: 10;
    -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%);
}

.SPanel_Items_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 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;
}
.SPanel_Items
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
}
.SPanel_Items_Title
{
    position: relative;
    float: right;
    width: 60px;
    height: 26px;
    font-size: 0.9em;
    color: #000000;
    direction: rtl;
    text-align: right;
    vertical-align: middle;
}
.SPanel_Items_Text_Main
{
    position: relative;
    float: left;
    width: 315px;
    height: 26px;
}
.SPanel_Items_Text
{
    position: relative;
    width: 96%;
    height: 26px;
    padding-left: 2%;
    padding-right: 2%;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 0px 1px rgba(180,180,180,1.0);
    border: none;
    border-radius: 2px;
    font-family: 'HelveticaLt';
    font-size: 1.0em;
    color: #000000;
    direction: ltr;
    text-align: left;
    vertical-align: middle;

    -moz-transition: all 0.15s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-ms-transition: all 0.15s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-o-transition: all 0.15s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-webkit-transition: all 0.15s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.15s cubic-bezier(0.700, 0.000, 0.300, 1.000);
}
.SPanel_Items_Text:focus 
{
    box-shadow: 0px 0px 0px 1px rgba(0,120,255,1.0);
}
.SSep
{
    width: 100%;
    clear: both;
}
.SSep_Line
{
    width: 100%;
    height: 10px;
    margin-top: 10px;
    border-top: solid 1px #CCCCCC;
    clear: both;
}
.SPanel_Items .SKeys_Main
{
    position: relative;
    display: table;
    float: right;
    width: auto;
    height: auto;
}
.SPanel_Items .SKey_Ok, .SPanel_Items .SKey_Cancel
{
    position: relative;
    width: 130px;
    height: 30px;
    border: none;
    border-radius: 0px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    color: #FFFFFF;
    direction: rtl;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.SPanel_Items .SKey_Ok
{
    background-color: #0078FF;
}
.SPanel_Items .SKey_Cancel
{
    background-color: #999999;
}
.SKey_ReCaptcha
{
    position: relative;
    width: 40px;
    height: 35px;
    border: none;
    background-color: #E0E0E0;
    border-radius: 2px;
    border: solid 1px #0078FF;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.8em;
    color: #0078FF;
    direction: rtl;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.SPanel_Message
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    text-align: center;
    color: #C80000;
    direction: rtl;
}




@media screen and (min-width:0px) and (max-width:540px)
{
    .SPanel_Main
    {
        position: absolute;
        width: auto;
        height: auto;
        left: 20px;
        right: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 0px;
        margin-top: 0px;
        border-radius: 0px;
    }
}

@media screen and (min-width:0px) and (max-width:540px)
{
    .SPanel_Items
    {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .SPanel_Message
    {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .SPanel_Items_Title
    {
        float: right;
        width: 100%;
        height: auto;
        padding-bottom: 5px;
        clear: both;
    }
    .SPanel_Items_Text_Main
    {
        float: right;
        width: 100%;
        height: auto;
        clear: both;
    }
}