﻿.SMainBody {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 40px;
    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: relative;
    width: 440px;
    height: auto;
    max-width: 100%;
    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: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    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: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    100% {
        filter: alpha(opacity=100);
        opacity: 1;
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}


/*---------------------------- TOP LINKS -----------*/
.STopLinks_Main {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0px;
    top: 0px;
    padding: 5px 50px 5px 50px;
    background-color: rgba(0,0,0,0.8);
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    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;
    }
}

.STopLinks_Main .SLink_Item_R, .STopLinks_Main .SLink_Item_L {
    position: relative;
    display: table;
    width: auto;
    height: 30px;
    padding: 0px 7px 0px 7px;
    background-color: rgba(0,0,0,0.0);
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
}

.STopLinks_Main .SLink_Item_R {
    float: right;
    font-size: 0.9em;
    direction: rtl;
}

.STopLinks_Main .SLink_Item_L {
    float: left;
    font-size: 0.9em;
    direction: rtl;
}

    .STopLinks_Main .SLink_Item_R:hover, .STopLinks_Main .SLink_Item_L:hover {
        background-color: rgba(0,0,0,0.8);
    }

.STopLinks_Main .SLink_Sep_R, .STopLinks_Main .SLink_Sep_L {
    position: relative;
    display: table;
    width: 1px;
    height: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-right: solid 1px #A0A0A0;
}

.STopLinks_Main .SLink_Sep_R {
    float: right;
}

.STopLinks_Main .SLink_Sep_L {
    float: left;
}
/*---------------------------- TOP LINKS -----------*/



.SPanel_Tab_Main {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    height: 50px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
}

.SPanel_Tab, .SPanel_Tab_Sel {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
}

.SPanel_Tab {
    background-color: rgba(255,255,255,0.7);
    color: #555555;
    font-weight: normal;
    cursor: pointer;
}

    .SPanel_Tab:hover {
        background-color: rgba(255,255,255,0.8);
    }

.SPanel_Tab_Sel {
    background-color: rgba(255,255,255,1.0);
    color: #0078FF;
    font-weight: 500;
}

.SPanel_Tab_Text {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: inherit;
    font-size: 1.1em;
    text-align: center;
    color: inherit;
    direction: rtl;
}


.SPanel_Title_Body {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: rgba(0,0,0,0.8);
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.1em;
    text-align: center;
    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;
}

.SPanel_Links_Body {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 7px;
    margin-top: 10px;
    background-color: rgba(0,0,0,0.8);
    text-align: center;
    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;
}

.SPanel_Links_Item {
    position: relative;
    display: table;
    width: auto;
    height: 30px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    direction: rtl;
    cursor: pointer;
}

.SPanel_Links_Sep {
    position: relative;
    display: block;
    width: 100%;
    height: 5px;
    margin-bottom: 5px;
    border-bottom: solid 1px rgba(255,255,255,0.5);
    clear: both;
}

.SPanel_Items_Body_W_T, .SPanel_Items_Body_W_S {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 30px 15px 30px 15px;
    border-radius: 0px;
    box-shadow: 0px 1px 8px 1px rgba(0,0,0,0.5);
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 90;
}

.SPanel_Items_Body_W_T {
    background-color: rgba(255,255,255,0.7);
}

.SPanel_Items_Body_W_S {
    background-color: rgba(255,255,255,1.0);
}

.SPanel_Items {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 10px 8px 10px;
    /*
    border-radius: 3px;
    */
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    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_Message, .SPanel_Error {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 3px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: center;
    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;
}

.SPanel_Message {
    background-color: rgba(120,255,0,0.1);
    color: #000000;
}

.SPanel_Error {
    background-color: rgba(200,0,0,1.0);
    color: #FFFFFF;
}

.SPanel_Items .STitle {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 5px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    color: #787878;
    direction: rtl;
    text-align: right;
    vertical-align: middle;
}

.SPanel_Items .SText_Main {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.SPanel_Items .SText_FA, .SPanel_Items .SText_EN, .SPanel_Items .SText_Code {
    position: relative;
    width: 100%;
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    /*
    box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.1);
    */
    border-radius: 3px;
    color: #000000;
    vertical-align: middle;
    -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.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    -webkit-transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    transition: all 0.3s cubic-bezier(0.700, 0.000, 0.300, 1.000);
}

    .SPanel_Items .SText_FA:focus, .SPanel_Items .SText_EN:focus, .SPanel_Items .SText_Code:focus {
        border: solid 1px #0078FF;
        /*
    box-shadow: 0px 0px 0px 2px rgba(0,120,255,0.5);
    */
    }

.SPanel_Items .SText_FA {
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    direction: rtl;
    text-align: right;
}

.SPanel_Items .SText_EN {
    font-family: 'HelveticaLt';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    direction: ltr;
    text-align: left;
}

.SPanel_Items .SText_Code {
    width: 260px;
    height: 35px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 500;
    font-size: 1.8em;
    direction: ltr;
    text-align: left;
    letter-spacing: 25px;
    color: #004696;
}

.SSep {
    width: 100%;
    clear: both;
}

.SSep_Line {
    width: 100%;
    height: 10px;
    margin-top: 10px;
    border-top: solid 1px rgba(0,0,0,0.3);
    clear: both;
}

.SPanel_Items .SKeys_Main {
    position: relative;
    display: table;
    float: right;
    width: auto;
    height: auto;
    margin-left: 5px;
    margin-right: 5px;
}

.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;
    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;
}




@media screen and (min-width:0px) and (max-width:600px) {
    .SPanel_Main {
        position: absolute;
        width: auto;
        height: auto;
        left: 5px;
        right: 5px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0px;
        margin-top: 0px;
        border-radius: 0px;
    }
}

@media screen and (min-width:0px) and (max-width:600px) {
    .SPanel_Items {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .SPanel_Message {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .SPanel_Items .STitle {
        float: right;
        width: 100%;
        height: auto;
        padding-bottom: 5px;
        clear: both;
    }

    .SPanel_Items .SText_Main {
        float: right;
        width: 100%;
        height: auto;
        clear: both;
    }
}
