﻿/*----------------------------- Body ----------------------*/
body {
    margin: 0px;
    font-family: 'Ravi';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

input[type=text], input[type=password], input[type=textarea], input[type=checkbox], input[type=radio], input[type=submit], select, textarea {
    outline: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.05);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0,0,0,1.0);
    }
/*----------------------------- Body ----------------------*/



/*--------------------------- Loading ---------------------*/
.SL_Loading {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 1000;
    -moz-transition: all 1.0s ease-out;
    -ms-transition: all 1.0s ease-out;
    -o-transition: all 1.0s ease-out;
    -webkit-transition: all 1.0s ease-out;
    transition: all 1.0s ease-out;
    -moz-transition-delay: 0.0s;
    -ms-transition-delay: 0.0s;
    -o-transition-delay: 0.0s;
    -webkit-transition-delay: 0.0s;
    transition-delay: 0.0s;
}

.SL_Loading_Text {
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 10;
    font-family: 'Ravi';
    font-size: 0.9em;
    font-style: normal;
    font-weight: normal;
    color: #0078FF;
    text-align: center;
    direction: rtl;
}

.SL_Loading_Rotate {
    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);
    }
}
/*--------------------------- Loading ---------------------*/



/*----------------------------- Main ----------------------*/
.SL_Main {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,1.0);
    font-family: 'Ravi';
}

.SL_Back {
    flex: 0 1 50%;
    width: 50%;
    height: 100%;
    background-color: rgba(230,230,230,1.0);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    filter: alpha(opacity=100);
    opacity: 1;
    -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);
}
.SL_Back_Border_1, .SL_Back_Border_2, .SL_Back_Border_3 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 10;
    -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: skewX(-4deg);
    -ms-transform: skewX(-4deg);
    -o-transform: skewX(-4deg);
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
    animation-name: anim_back_border_1;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.700, 0.000, 0.300, 1.000);
}
.SL_Back_Border_1 {
    right: -96.5%;
    background-color: rgba(240,245,245,1.0);
    animation-delay: 0s;
    animation-duration: 20.0s;
}
.SL_Back_Border_2 {
    right: -95.5%;
    background-color: rgba(240,245,245,0.5);
    animation-delay: 0.2s;
    animation-duration: 25.0s;
}
.SL_Back_Border_3 {
    right: -94.5%;
    background-color: rgba(240,245,245,0.5);
    animation-delay: 0.4s;
    animation-duration: 30.0s;
}
@keyframes anim_back_border_1 {
    0% {
        -moz-transform: skewX(-4deg);
        -ms-transform: skewX(-4deg);
        -o-transform: skewX(-4deg);
        -webkit-transform: skewX(-4deg);
        transform: skewX(-4deg);
    }

    100% {
        -moz-transform: skewX(4deg);
        -ms-transform: skewX(4deg);
        -o-transform: skewX(4deg);
        -webkit-transform: skewX(4deg);
        transform: skewX(4deg);
    }
}

.SL_Body {
    flex: 1 1 50%;
    width: 50%;
    height: 100%;
    background-color: rgba(240,245,245,1.0);
    background-repeat: no-repeat;
    background-position: right bottom;
    -webkit-background-size: 50%;
    -moz-background-size: 50%;
    -o-background-size: 50%;
    background-size: 50%;
    font-size: 1.0em;
    -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);
}

.SL_Sep_H_5, .SL_Sep_H_10, .SL_Sep_H_15, .SL_Sep_H_20, .SL_Sep_V_5, .SL_Sep_V_10, .SL_Sep_V_15, .SL_Sep_V_20 {
    flex: 0 1 auto;
    width: auto;
    height: auto;
}

.SL_Sep_H_5 {
    width: 5px;
}

.SL_Sep_H_10 {
    width: 10px;
}

.SL_Sep_H_15 {
    width: 15px;
}

.SL_Sep_H_20 {
    width: 20px;
}

.SL_Sep_V_5 {
    height: 5px;
}

.SL_Sep_V_10 {
    height: 10px;
}

.SL_Sep_V_15 {
    height: 15px;
}

.SL_Sep_V_20 {
    height: 20px;
}
/*----------------------------- Main ----------------------*/


/*----------------------------- Body ----------------------*/
.SL_Body_Top {
    flex: 0 1 auto;
    width: 100%;
    height: auto;
    padding: 5px 20px;
}

.SL_Body_Main {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    padding: 0px;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
}

.SL_Body_Limit {
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
    padding: 5px;
}

.SL_Body_Logo {
    flex: 0 1 auto;
    width: auto;
    height: auto;
}

.SL_Body_Logo img {
    width: 100%;
    height: auto;
    max-width: 160px;
    padding: 10px 0px 0px 0px;
}

.SL_Body_Title {
    flex: 0 1 auto;
    font-style: normal;
    font-weight: normal;
    font-size: 1.2em;
    text-align: center;
    vertical-align: top;
    direction: rtl;
    line-height: 2em;
}
/*----------------------------- Body ----------------------*/

/*---------------------------- Panels ---------------------*/
.SL_Message_BK, .SL_Message_RD {
    padding: 10px;
    border-radius: 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    direction: rtl;
}

.SL_Message_BK {
    color: rgba(70,70,70,1.0);
}

.SL_Message_RD {
    color: rgba(200,0,0,1.0);
}

.SL_Message_Border {
    border: solid 1px rgba(200,200,200,1.0);
}

.SL_Message_Back_Gy {
    background-color: rgba(240,240,240,1.0);
}
/*---------------------------- Panels ---------------------*/

/*----------------------------- Links ---------------------*/
.SL_Link {
    flex: 0 1 auto;
    padding: 5px;
    border-radius: 4px;
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: right;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    direction: rtl;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

    .SL_Link svg {
        display: inline-block;
        width: auto;
        height: 16px;
        vertical-align: middle;
    }

.SL_Link_Col_BK {
    color: rgba(0,0,0,0.7);
    fill: rgba(0,0,0,0.7);
    stroke: rgba(0,0,0,0.7);
}

    .SL_Link_Col_BK:hover {
        color: rgba(0,0,0,1.0);
        fill: rgba(0,0,0,1.0);
        stroke: rgba(0,0,0,1.0);
    }

.SL_Link_Col_BU {
    color: rgba(95,180,190,1.0);
    fill: rgba(95,180,190,1.0);
    stroke: rgba(95,180,190,1.0);
}

    .SL_Link_Col_BU:hover {
        color: rgba(70,165,175,1.0);
        fill: rgba(70,165,175,1.0);
        stroke: rgba(70,165,175,1.0);
    }
/*----------------------------- Links ---------------------*/

/*----------------------------- Keys ----------------------*/
.SL_Key_Main, .SL_Key_Wide_Main, .SL_Key_Min_Main {
    width: auto;
    height: auto;
    min-height: 40px;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    outline: none;
    font-family: 'Ravi';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    direction: rtl;
    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;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.SL_Key_Main {
    min-width: 100px;
}

.SL_Key_Wide_Main {
    min-width: 100%;
}

.SL_Key_Col_BK {
    background-color: rgba(0,0,0,1.0);
    color: rgba(255,255,255,1.0);
}

.SL_Key_Col_BU {
    background-color: rgba(95,180,190,1.0);
    color: rgba(255,255,255,1.0);
}

    .SL_Key_Col_BU:hover {
        background-color: rgba(70,165,175,1.0);
    }
/*----------------------------- Keys ----------------------*/

/*--------------------------- KeyLinks --------------------*/
.SL_Key_Link_Main, .SL_Key_Link_Wide_Main {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: stretch;
    align-items: center;
    height: auto;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    font-family: 'Ravi';
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    direction: rtl;
    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;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.SL_Key_Link_Main {
    flex: 0 1 auto;
    width: auto;
}

.SL_Key_Link_Wide_Main {
    flex: 1 1 100%;
    width: 100%;
}

.SL_Key_Link_Bak_BK {
    background-color: rgba(0,0,0,1.0);
    color: rgba(255,255,255,1.0);
    min-height: 40px;
}

.SL_Key_Link_Bak_BU {
    background-color: rgba(95,180,190,1.0);
    color: rgba(255,255,255,1.0);
    min-height: 40px;
}

    .SL_Key_Link_Bak_BU:hover {
        background-color: rgba(70,165,175,1.0);
        color: rgba(255,255,255,1.0);
    }

.SL_Key_Link_Col_BK {
    color: rgba(0,0,0,1.0);
    fill: rgba(0,0,0,1.0);
    stroke: rgba(0,0,0,1.0);
    background-color: transparent;
}

.SL_Key_Link_Col_BU {
    color: rgba(95,180,190,1.0);
    fill: rgba(95,180,190,1.0);
    stroke: rgba(95,180,190,1.0);
    background-color: transparent;
}

    .SL_Key_Link_Col_BU:hover {
        color: rgba(70,165,175,1.0);
        fill: rgba(70,165,175,1.0);
        stroke: rgba(70,165,175,1.0);
        background-color: transparent;
    }

.SL_Key_Link_Fw_Bld {
    font-weight: bold;
}

.SL_Key_Link_Text {
    flex: 1 1 auto;
    width: auto;
    height: auto;
    font-style: inherit;
    font-weight: inherit;
    font-size: inherit;
    text-align: inherit;
    vertical-align: inherit;
    white-space: inherit;
    overflow: inherit;
    direction: inherit;
    color: inherit;
}

.SL_Key_Link_Icon {
    flex: 0 1 auto;
    width: auto;
    height: auto;
    padding-right: 5px;
}

    .SL_Key_Link_Icon svg {
        width: auto;
        height: 16px;
        fill: inherit;
        stroke: inherit;
    }
/*--------------------------- KeyLinks --------------------*/

/*--------------------------- Controlls -------------------*/
.SL_Cnt_Main {
    position: relative;
    flex: 0 1 auto;
    width: 100%;
    height: auto;
    padding: 10px 0px;
    text-align: center;
}

.SL_Cnt_Sub {
    position: relative;
    flex: 0 1 auto;
    width: auto;
    height: auto;
}
.SL_Cnt_Fnt_En {
    font-family: 'Lato';
    direction: ltr;
}
.SL_Cnt_Fnt_Fa {
    font-family: 'Ravi';
    direction: rtl;
}
/*--------------------------- Controlls -------------------*/

/*---------------------------- TextBox --------------------*/
.SL_Cnt_Text {
    position: relative;
    width: 100%;
    height: 40px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: rgba(255,255,255,1.0);
    /*box-shadow: 0px 0px 0px 1px rgba(180,180,180,1.0);*/
    border: solid 1px rgba(210,210,210,1.0);
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 1.3em;
    color: rgba(0,0,0,1.0);
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.2em;
    -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.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);
}
/*---------------------------- TextBox --------------------*/





@media screen and (min-height:0px) and (max-height:1000px) {
}

@media screen and (min-width:0px) and (max-width:1000px) {

    .SL_Back {
        flex: 0 1 0%;
        width: 0%;
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .SL_Body {
        flex: 1 1 50%;
        width: 50%;
        height: 100%;
        background-color: rgba(248,248,248,1.0);
    }

    .SL_Body_Logo img {
        max-width: 120px;
    }
}

@media screen and (min-width:0px) and (max-width:800px) {

    .SL_Body {
        font-size: 1.15em;
    }

    .SL_Body_Title {
        font-size: 1.1em;
    }

    .SL_Body_Logo img {
        max-width: 100px;
        padding: 10px 0px 0px 0px;
    }

    .SL_Key_Main, .SL_Key_Wide_Main, .SL_Key_Min_Main {
        min-height: 50px;
    }

    .SL_Key_Link_Bak_BK {
        min-height: 50px;
    }

    .SL_Key_Link_Bak_BU {
        min-height: 50px;
    }

    .SL_Cnt_Text {
        height: 50px;
    }
}

@media screen and (min-width:0px) and (max-width:700px) {

    .SL_Body_Top {
        padding: 5px 20px;
    }

    .SL_Body_Limit {
        max-width: 100%;
        padding: 20px;
    }
}
