﻿/*----------------------------- MAIN ----------------------*/
.SPC_Main, .SPC_Main_N {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    padding: 0px 0px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Main {
    background-color: rgba(255,255,255,1.0);
    border: solid 1px rgba(220,220,220,1.0);
    border-radius: 7px;
}

.SPC_Main_N {
    margin-bottom: 20px;
}

.SPC_Body, .SPC_Body_Full, .SPC_Body_Show_Hide {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Body {
    max-width: 1400px;
}

.SPC_Body_Show_Hide {
    overflow: hidden;
    -moz-transition: all 0.5s cubic-bezier(0.000, 0.580, 0.320, 0.995);
    -ms-transition: all 0.5s cubic-bezier(0.000, 0.580, 0.320, 0.995);
    -o-transition: all 0.5s cubic-bezier(0.000, 0.580, 0.320, 0.995);
    -webkit-transition: all 0.5s cubic-bezier(0.000, 0.580, 0.320, 0.995);
    transition: all 0.5s cubic-bezier(0.000, 0.580, 0.320, 0.995);
}

.SPC_Keys_Main {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    padding: 15px 0px;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: 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;
}

.SPC_Keys_Item {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
}
/*----------------------------- MAIN ----------------------*/



/*----------------------------- MAIN ----------------------*/
.SPC_Home_Items_Main {
    position: relative;
    display: flex;
    width: auto;
    height: auto;
    min-height: 140px;
    padding: 10px;
    flex: 1 1 200px;
    -ms-flex: 1 1 200px;
    /*flex-basis: 25%;*/
    background-color: rgba(240,240,240,1.0);
    border-radius: 7px;
    gap: 5px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*----------------------------- MAIN ----------------------*/



/*---------------------------- TITLES ---------------------*/
.SPC_Title, .SPC_Title_Blue, .SPC_Title_Green, .SPC_Title_Red {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 20px 10px;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 1.1em;
    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;
}

.SPC_Title {
    background-color: rgba(0,110,130,0.1);
    color: rgba(0,110,130,1.0);
}

.SPC_Title_Blue {
    background-color: rgba(0,150,255,0.1);
    color: rgba(0,150,255,1.0);
}

.SPC_Title_Green {
    background-color: rgba(0,165,155,0.1);
    color: rgba(0,165,155,1.0);
}

.SPC_Title_Red {
    background-color: rgba(200,0,0,0.1);
    color: rgba(200,0,0,1.0);
}

.SPC_Title_Line, .SPC_Title_Line_Blue, .SPC_Title_Line_Green, .SPC_Title_Line_Red {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    font-style: normal;
    font-weight: 600;
    font-size: 1.1em;
    text-align: right;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Title_Line {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    color: rgba(0,0,0,1.0);
}

.SPC_Title_Line_Blue {
    border-bottom: solid 1px rgba(0,150,255,0.3);
    color: rgba(0,150,255,1.0);
}

.SPC_Title_Line_Green {
    border-bottom: solid 1px rgba(0,165,155,0.3);
    color: rgba(0,165,155,1.0);
}

.SPC_Title_Line_Red {
    border-bottom: solid 1px rgba(200,0,0,0.3);
    color: rgba(200,0,0,1.0);
}
/*---------------------------- TITLES ---------------------*/



/*---------------------------- ITEMS ----------------------*/
.SPC_Items_Main {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0px;
    clear: both;
    gap: 5px 0px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Items_Row_Main {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: stretch;
    align-content: stretch;
    padding: 15px 10px;
    background-color: rgba(150,160,170,0.15);
    border-radius: 7px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Items_Row_Title {
    position: relative;
    display: flex;
    flex: 0 1 100px;
    -ms-flex: 0 1 150px;
    width: 150px;
    height: auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 5px;
    font-style: normal;
    font-weight: 300;
    font-size: 1.0em;
    text-align: left;
    vertical-align: top;
    color: rgba(0,110,130,1.0);
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Items_Row_Text {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding-right: 5px;
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: right;
    vertical-align: top;
    color: rgba(0,0,0,1.0);
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*---------------------------- ITEMS ----------------------*/



/*--------------------------- MESSAGES --------------------*/
.SPC_Message_Error, .SPC_Message_Confirm {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    max-width: 600px;
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    background-color: rgba(230,230,230,1.0);
    border-radius: 4px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 600;
    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;
}

.SPC_Message_Error {
    /*
    background-color: rgba(200,0,0,0.15);
    */
    border-bottom: solid 5px rgba(200,0,0,0.5);
    color: rgba(200,0,0,1.0);
}

.SPC_Message_Confirm {
    /*
    background-color: rgba(0,165,155,0.15);
    */
    border-bottom: solid 5px rgba(0,165,155,0.5);
    color: rgba(0,165,155,1.0);
}

.SPC_Message_Icon {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    width: 35px;
    height: 35px;
    padding-bottom: 15px;
}

    .SPC_Message_Icon svg {
        width: 100%;
        height: 100%;
    }

.SPC_Message_Text {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 600;
    font-size: 1.0em;
    text-align: center;
}

.SPC_Sep_20, .SPC_Sep_50, .SPC_Sep_Line_20, .SPC_Sep_Line_50 {
    position: relative;
    display: block;
    width: 100%;
    clear: both;
}

.SPC_Sep_20 {
    height: 20px;
}

.SPC_Sep_50 {
    height: 50px;
}

.SPC_Sep_Line_20 {
    height: 20px;
    border-top: solid 1px #CCCCCC;
}

.SPC_Sep_Line_50 {
    height: 50px;
    border-top: solid 1px #CCCCCC;
}
/*--------------------------- MESSAGES --------------------*/



/*----------------------------- KEYS ----------------------*/
.SPC_Key_Main, .SPC_Key_Wide_Main, .SPC_Key_Min_Main {
    height: auto;
    min-height: 40px;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    outline: none;
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    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;
}

.SPC_Key_Main {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    width: auto;
    min-width: 100px;
}

.SPC_Key_Wide_Main {
    flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    width: 100%;
}

.SPC_Key_Min_Main {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    width: auto;
}

.SPC_Key_Bak_BK {
    background-color: rgba(0,0,0,1.0);
    color: rgba(255,255,255,1.0);
}

.SPC_Key_Bak_BU {
    background-color: rgba(95,180,190,1.0);
    color: rgba(255,255,255,1.0);
}

    .SPC_Key_Bak_BU:hover {
        background-color: rgba(70,165,175,1.0);
        color: rgba(255,255,255,1.0);
    }

.SPC_Key_Border_BK {
    border: solid 1px rgba(0,0,0,0.5);
    background-color: transparent;
}

.SPC_Key_Border_BU {
    border: solid 1px rgba(95,180,190,1.0);
    background-color: transparent;
}

    .SPC_Key_Border_BU:hover {
        border: solid 1px rgba(70,165,175,1.0);
    }

.SPC_Key_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;
}

.SPC_Key_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;
}

    .SPC_Key_Col_BU:hover {
        color: rgba(70,165,175,1.0);
        fill: rgba(70,165,175,1.0);
        stroke: rgba(70,165,175,1.0);
    }

.SPC_Key_Fw_Bld {
    font-weight: bold;
}
/*----------------------------- KEYS ----------------------*/



/*----------------------------- LABELS --------------------*/
.SPC_Label_Main {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    font-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: right;
    vertical-align: middle;
    text-decoration: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.SPC_Label_Text {
    display: inline-block;
}

.SPC_Label_Text_R {
    display: inline-block;
    padding-left: 4px;
}

.SPC_Label_Text_L {
    display: inline-block;
    padding-right: 4px;
}

.SPC_Label_Main svg {
    display: inline-block;
    width: auto;
    height: 16px;
    vertical-align: middle;
}

.SPC_Label_Border_GY {
    border: solid 1px rgba(150,150,150,1.0);
}

.SPC_Label_Border_BK {
    border: solid 1px rgba(0,0,0,1.0);
}

.SPC_Label_Border_BU {
    border: solid 1px rgba(95,180,190,1.0);
}

.SPC_Label_Border_GR {
    border: solid 1px rgba(0,165,155,1.0);
}

.SPC_Label_Text_Col_GY {
    color: rgba(120,120,120,1.0);
}

.SPC_Label_Text_Col_BK {
    color: rgba(0,0,0,1.0);
}

.SPC_Label_Text_Col_BU {
    color: rgba(95,180,190,1.0);
}

.SPC_Label_Text_Col_GR {
    color: rgba(0,165,155,1.0);
}

.SPC_Label_Icon_Col_GY {
    fill: rgba(120,120,120,1.0);
    stroke: rgba(120,120,120,1.0);
}

.SPC_Label_Icon_Col_BK {
    fill: rgba(0,0,0,1.0);
    stroke: rgba(0,0,0,1.0);
}

.SPC_Label_Icon_Col_BU {
    fill: rgba(95,180,190,1.0);
    stroke: rgba(95,180,190,1.0);
}

.SPC_Label_Icon_Col_GR {
    fill: rgba(0,165,155,1.0);
    stroke: rgba(0,165,155,1.0);
}

.SPC_Label_Text_Size_1 {
    font-size: 0.8em;
}

.SPC_Label_Text_Size_2 {
    font-size: 0.9em;
}

.SPC_Label_Text_Size_3 {
    font-size: 1.0em;
}

.SPC_Label_Text_Size_4 {
    font-size: 1.1em;
}

.SPC_Label_Text_Size_5 {
    font-size: 1.2em;
}

.SPC_Label_Text_Size_6 {
    font-size: 1.3em;
}

.SPC_Label_Text_Size_7 {
    font-size: 1.4em;
}

.SPC_Label_Text_Size_8 {
    font-size: 1.55em;
}

.SPC_Label_Text_Size_9 {
    font-size: 1.65em;
}

.SPC_Label_Text_Size_10 {
    font-size: 1.8em;
}

.SPC_Label_Text_Wgt_1 {
    font-weight: 100;
}

.SPC_Label_Text_Wgt_2 {
    font-weight: 200;
}

.SPC_Label_Text_Wgt_3 {
    font-weight: 300;
}

.SPC_Label_Text_Wgt_4 {
    font-weight: 400;
}

.SPC_Label_Text_Wgt_5 {
    font-weight: 500;
}

.SPC_Label_Text_Wgt_6 {
    font-weight: 600;
}

.SPC_Label_Text_Wgt_7 {
    font-weight: 700;
}

.SPC_Label_Text_Wgt_8 {
    font-weight: 800;
}

.SPC_Label_Text_Wgt_9 {
    font-weight: 900;
}

.SPC_Label_Icon_Size_1 svg {
    width: auto;
    height: 12px;
}

.SPC_Label_Icon_Size_2 svg {
    width: auto;
    height: 16px;
}

.SPC_Label_Icon_Size_3 svg {
    width: auto;
    height: 20px;
}

.SPC_Label_Icon_Size_4 svg {
    width: auto;
    height: 24px;
}

.SPC_Label_Icon_Size_5 svg {
    width: auto;
    height: 28px;
}

.SPC_Label_Icon_Size_6 svg {
    width: auto;
    height: 32px;
}
/*----------------------------- LABELS --------------------*/



/*----------------------------- LINKS ---------------------*/
.SPC_Link_Main {
    flex: 0 1 auto;
    -ms-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;
    text-decoration: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.SPC_Link_Text_R {
    display: inline-block;
    padding-left: 4px;
}

.SPC_Link_Text_L {
    display: inline-block;
    padding-right: 4px;
}

.SPC_Link_Main svg {
    display: inline-block;
    width: auto;
    height: 16px;
    vertical-align: middle;
}

.SPC_Link_Border_BK {
    border: solid 1px rgba(0,0,0,0.5);
}

.SPC_Link_Border_BU {
    border: solid 1px rgba(95,180,190,1.0);
}

    .SPC_Link_Border_BU:hover {
        border: solid 1px rgba(70,165,175,1.0);
    }

.SPC_Link_Col_BK {
    color: rgba(0,0,0,0.7);
    fill: rgba(0,0,0,0.7);
    stroke: rgba(0,0,0,0.7);
}

    .SPC_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);
    }

.SPC_Link_Col_BU {
    color: rgba(95,180,190,1.0);
    fill: rgba(95,180,190,1.0);
    stroke: rgba(95,180,190,1.0);
}

    .SPC_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 ---------------------*/



/*--------------------------- KEYLINKS --------------------*/
.SPC_Key_Link_Main, .SPC_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-style: normal;
    font-weight: normal;
    font-size: 1.0em;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    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;
}

.SPC_Key_Link_Main {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    width: auto;
}

.SPC_Key_Link_Wide_Main {
    flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    width: 100%;
}

.SPC_Key_Link_Bak_BK {
    background-color: rgba(0,0,0,1.0);
    color: rgba(255,255,255,1.0);
    min-height: 40px;
}

.SPC_Key_Link_Bak_BU {
    background-color: rgba(95,180,190,1.0);
    color: rgba(255,255,255,1.0);
    min-height: 40px;
}

    .SPC_Key_Link_Bak_BU:hover {
        background-color: rgba(70,165,175,1.0);
        color: rgba(255,255,255,1.0);
    }

.SPC_Key_Link_Border_BK {
    border: solid 1px rgba(0,0,0,0.5);
    background-color: transparent;
}

.SPC_Key_Link_Border_BU {
    border: solid 1px rgba(95,180,190,1.0);
    background-color: transparent;
}

    .SPC_Key_Link_Border_BU:hover {
        border: solid 1px rgba(70,165,175,1.0);
    }

.SPC_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;
}

.SPC_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;
}

    .SPC_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);
    }

.SPC_Key_Link_Fw_Bld {
    font-weight: bold;
}

.SPC_Key_Link_Text {
    flex: 1 1 auto;
    -ms-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;
}

.SPC_Key_Link_Icon {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    width: auto;
    height: auto;
    padding-right: 5px;
}

    .SPC_Key_Link_Icon svg {
        width: auto;
        height: 16px;
        fill: inherit;
        stroke: inherit;
    }
/*--------------------------- KEYLINKS --------------------*/



/*--------------------------- CONTROLLS -------------------*/
.SPC_Ctrl_Text_Box {
    width: 100%;
    height: 40px;
    max-width: 600px;
    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.0em;
    color: rgba(0,0,0,1.0);
    text-align: right;
    vertical-align: middle;
    letter-spacing: 0.0em;
    -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);
}

.SPC_Ctrl_Drop {
    position: relative;
    width: 100%;
    height: 40px;
    max-width: 600px;
    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.0em;
    color: rgba(0,0,0,1.0);
    text-align: right;
    letter-spacing: 0.0em;
    -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);
}
/*---------------------------- CONTROLLS --------------------*/



/*----------------------- CONTROLLS ADDITIVES ---------------*/
.SPC_Ctrl_Fnt_En {
    font-family: 'Lato';
    direction: ltr;
}

.SPC_Ctrl_Fnt_Fa {
    font-family: 'IRANSans';
    direction: rtl;
}

.SPC_Ctrl_Multiline {
    height: 100px;
    vertical-align: top;
}

.SPC_Ctrl_Text_Parts_Body {
    gap: 10px;
    max-width: 100%;
}

.SPC_Ctrl_Text_Parts {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    text-align: center;
}

.SPC_Ctrl_Text_Parts_Bs45 {
    flex-basis: 45px;
}

.SPC_Ctrl_Text_Parts_Bs90 {
    flex-basis: 90px;
}
/*----------------------- CONTROLLS ADDITIVES ---------------*/



/*--------------------------- DROP SEARCH -------------------*/
.SPC_Ctrl_Drop_Search_Main {
    position: absolute;
    display: block;
    height: 27px;
    padding: 1px;
    background-color: rgba(255,255,255,1.0);
    border: solid 1px rgba(0,120,255,1.0);
    border-radius: 3px;
    z-index: 10000;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.SPC_Ctrl_Drop_Search_Text {
    width: 100%;
    height: 100%;
    padding-right: 25px;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9em;
    text-align: right;
    vertical-align: middle;
    color: #000000;
    direction: rtl;
    z-index: 1;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .SPC_Ctrl_Drop_Search_Text:focus {
        border: none;
        outline: none;
    }

.SPC_Ctrl_Drop_Search_Icon {
    position: absolute;
    display: block;
    width: auto;
    height: 100%;
    aspect-ratio: 1/1;
    top: 0px;
    right: 0px;
    z-index: 10;
}

    .SPC_Ctrl_Drop_Search_Icon svg {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 15px;
        height: auto;
        fill: rgba(160,160,160,1.0);
        z-index: 1;
        -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%);
    }
/*--------------------------- DROP SEARCH -------------------*/



/*----------------------- TITLE OVER CONTROLS ---------------*/
.STextBox_TB_Title_Over_Title_Over_Main {
    position: relative;
    display: block;
    width: 100%;
    height: 0px;
}

.STextBox_TB_Title_Over_Title_Over {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    -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;
    z-index: 90;
    -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);
}

.STextBox_TB_Title_Over_Title_Over_Non_Sel {
    color: rgba(180,180,180,1.0);
    font-size: 1.0em;
    -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%);
}

.STextBox_TB_Title_Over_Title_Over_Sel {
    color: rgba(0, 165, 185, 1.0);
    font-size: 0.7em;
    -moz-transform: translateX(-100%) translateY(-100%);
    -ms-transform: translateX(-100%) translateY(-100%);
    -o-transform: translateX(-100%) translateY(-100%);
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
}
/*----------------------- TITLE OVER CONTROLS ---------------*/


/*------------------------ PASSWORD CONTROLS ----------------*/
.STextBox_Password_Eye_Main {
    position: relative;
    display: block;
    width: 100%;
    height: 0px;
}

.STextBox_Password_Eye {
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background-color: rgba(0,165,155,0.0);
    border-radius: 16px;
    text-align: center;
    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;
    cursor: pointer;
    z-index: 100;
}

    .STextBox_Password_Eye:hover {
        background-color: rgba(0,165,155,0.08);
    }

    .STextBox_Password_Eye svg {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22px;
        height: auto;
        z-index: 1;
        -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%);
    }

.STextBox_Password_Str_Meter_Main {
    position: relative;
    display: flex;
    width: 300px;
    height: auto;
    padding: 5px 0px 5px 0px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.STextBox_Password_Str_Meter_Body {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 2px;
    /*
    border-radius: 1px;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.3);
    */
    max-width: 300px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.STextBox_Password_Str_Meter_Check_List {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    overflow: hidden;
    filter: alpha(opacity=100);
    opacity: 1;
    background-color: rgba(255,255,255,1.0);
    /*
    border-bottom: solid 1px rgba(220,220,220,1.0);
    */
    -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);
}

.STextBox_Password_Str_Meter_Check_List_Item {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    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;
}

.STextBox_Password_Str_Meter_Check_List_Item_Icon {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .STextBox_Password_Str_Meter_Check_List_Item_Icon svg {
        width: 14px;
        height: 14px;
    }

.STextBox_Password_Str_Meter_Check_List_Item_Text {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    padding: 3px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 300;
    font-size: 0.85em;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    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;
}

.STextBox_Password_Str_Meter_Status {
    position: relative;
    /*
    display: flex;
    */
    display: none;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 24px;
    background-color: rgba(255,255,255,1.0);
    border-radius: 3px;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.STextBox_Password_Str_Meter_Status_Info {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    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;
}

    .STextBox_Password_Str_Meter_Status_Info svg {
        width: 15px;
        height: auto;
    }

.STextBox_Password_Str_Meter_Status_PBar_Main {
    position: relative;
    flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    width: 100%;
    height: 20px;
    max-width: 200px;
    background-color: rgba(230,230,230,1.0);
    border-radius: 3px;
    overflow: hidden;
    -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;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    */
}

.STextBox_Password_Str_Meter_Status_PBar_Line {
    position: absolute;
    display: block;
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    border-radius: 3px;
    overflow: hidden;
    z-index: 10;
    -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);
}

.STextBox_Password_Str_Meter_Status_PBar_Text {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    right: 10px;
    top: 50%;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 500;
    font-size: 0.9em;
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    direction: rtl;
    z-index: 1;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.STextBox_Password_Str_Meter_Status_PBar_Main .STextBox_Password_Str_Meter_Status_PBar_Text {
    color: rgba(50,50,50,1.0);
}

.STextBox_Password_Str_Meter_Status_PBar_Line .STextBox_Password_Str_Meter_Status_PBar_Text {
    color: rgba(255,255,255,1.0);
}
/*------------------------ PASSWORD CONTROLS ----------------*/



/*---------------------- RADIO LIST STYLE TEXTS -------------*/
.SRadiolist_Style_Texts input[type=radio] {
    display: none;
}

.SRadiolist_Style_Texts td {
    padding-bottom: 10px;
}

.SRadiolist_Style_Texts label {
    position: relative;
    display: inline;
    width: auto;
    height: 20px;
    padding: 3px 25px 3px 5px;
    margin: 0px;
    background-color: rgba(250,250,250,1.0);
    border: 1px solid rgba(220,220,220,1.0);
    border-radius: 14px;
    font-family: 'IRANSans';
    font-style: normal;
    font-weight: 300;
    font-size: 0.9em;
    text-align: center;
    vertical-align: middle;
    color: #999999;
    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;
}

    .SRadiolist_Style_Texts label:hover {
        border: 1px solid rgba(160,160,160,1.0);
        color: #000000;
    }

    .SRadiolist_Style_Texts label:before {
        position: absolute;
        display: block;
        width: 6px;
        height: 6px;
        right: 5px;
        top: 50%;
        margin-top: -6px;
        background-color: rgba(255,255,255,1.0);
        border: 3px solid rgba(255,255,255,1.0);
        box-shadow: 0px 0px 0px 2px rgba(200,200,200,1.0);
        border-radius: 6px;
        content: "";
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

.SRadiolist_Style_Texts input[type=radio]:checked + label:before {
    background-color: rgba(50,50,50,1.0);
}

.SRadiolist_Style_Texts input[type=radio]:checked + label {
    background-color: rgba(0,120,255,0.05);
    border: 1px solid rgba(0,120,255,1.0);
    color: #0078FF;
}

.SRadiolist_Style_Texts_Item_Green input[type=radio] + label, .SRadiolist_Style_Texts_Item_Blue input[type=radio] + label, .SRadiolist_Style_Texts_Item_Gray input[type=radio] + label, .SRadiolist_Style_Texts_Item_Red input[type=radio] + label, .SRadiolist_Style_Texts_Item_Yellow input[type=radio] + label, .SRadiolist_Style_Texts_Item_Magenta input[type=radio] + label {
    display: block;
    width: auto;
    height: inherit;
}

.SRadiolist_Style_Texts_Item_Green input[type=radio]:checked + label {
    background-color: rgba(0,180,30,0.05);
    border: 1px solid rgba(0,180,30,1.0);
    color: #00B41E;
}

.SRadiolist_Style_Texts_Item_Blue input[type=radio]:checked + label {
    background-color: rgba(0,120,255,0.05);
    border: 1px solid rgba(0,120,255,1.0);
    color: #0078FF;
}

.SRadiolist_Style_Texts_Item_Gray input[type=radio]:checked + label {
    background-color: rgba(220,220,220,0.05);
    border: 1px solid rgba(220,220,220,1.0);
    color: #CCCCCC;
}

.SRadiolist_Style_Texts_Item_Red input[type=radio]:checked + label {
    background-color: rgba(200,0,0,0.05);
    border: 1px solid rgba(200,0,0,1.0);
    color: #C80000;
}

.SRadiolist_Style_Texts_Item_Yellow input[type=radio]:checked + label {
    background-color: rgba(255,140,0,0.05);
    border: 1px solid rgba(255,140,0,1.0);
    color: #FF8C00;
}

.SRadiolist_Style_Texts_Item_Magenta input[type=radio]:checked + label {
    background-color: rgba(180,0,180,0.05);
    border: 1px solid rgba(180,0,180,1.0);
    color: #B400B4;
}
/*-------------------------- RADIO LIST STYLE TEXTS -----*/


/*----------------------------- RADIO STYLE TEXTS -------*/
.SRadio_Style_Texts input[type=radio] {
    display: none;
}

.SRadio_Style_Texts, .SRadio_Style_Texts_Green, .SRadio_Style_Texts_Blue, .SRadio_Style_Texts_Gray, .SRadio_Style_Texts_Red, .SRadio_Style_Texts_Yellow, .SRadio_Style_Texts_Magenta {
    position: relative;
    display: table;
    width: auto;
    height: 26px;
    margin: 3px 0px 3px 0px;
}

    .SRadio_Style_Texts label {
        position: relative;
        display: inline;
        width: auto;
        height: 20px;
        padding: 3px 25px 3px 5px;
        margin: 0px;
        background-color: rgba(250,250,250,1.0);
        border: 1px solid rgba(220,220,220,1.0);
        border-radius: 14px;
        font-family: 'IRANSans';
        font-style: normal;
        font-weight: 300;
        font-size: 0.9em;
        text-align: center;
        vertical-align: middle;
        color: #999999;
        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;
    }

        .SRadio_Style_Texts label:hover {
            border: 1px solid rgba(160,160,160,1.0);
            color: #000000;
        }

        .SRadio_Style_Texts label:before {
            position: absolute;
            display: block;
            width: 6px;
            height: 6px;
            right: 5px;
            top: 50%;
            margin-top: -6px;
            background-color: rgba(255,255,255,1.0);
            border: 3px solid rgba(255,255,255,1.0);
            box-shadow: 0px 0px 0px 2px rgba(200,200,200,1.0);
            border-radius: 6px;
            content: "";
            -moz-transition: all 0.2s ease-out;
            -ms-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            -webkit-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
        }

    .SRadio_Style_Texts input[type=radio]:checked + label:before {
        background-color: rgba(50,50,50,1.0);
    }

    .SRadio_Style_Texts input[type=radio]:checked + label {
        background-color: rgba(0,120,255,0.05);
        border: 1px solid rgba(0,120,255,1.0);
        color: #0078FF;
    }

.SRadio_Style_Texts_Item_Green input[type=radio] + label, .SRadio_Style_Texts_Item_Blue input[type=radio] + label, .SRadio_Style_Texts_Item_Gray input[type=radio] + label, .SRadio_Style_Texts_Item_Red input[type=radio] + label, .SRadio_Style_Texts_Item_Yellow input[type=radio] + label, .SRadio_Style_Texts_Item_Magenta input[type=radio] + label {
    display: block;
    width: auto;
    height: inherit;
}

.SRadio_Style_Texts_Item_Green input[type=radio]:checked + label {
    background-color: rgba(0,180,30,0.05);
    border: 1px solid rgba(0,180,30,1.0);
    color: #00B41E;
}

.SRadio_Style_Texts_Item_Blue input[type=radio]:checked + label {
    background-color: rgba(0,120,255,0.05);
    border: 1px solid rgba(0,120,255,1.0);
    color: #0078FF;
}

.SRadio_Style_Texts_Item_Gray input[type=radio]:checked + label {
    background-color: rgba(220,220,220,0.05);
    border: 1px solid rgba(220,220,220,1.0);
    color: #CCCCCC;
}

.SRadio_Style_Texts_Item_Red input[type=radio]:checked + label {
    background-color: rgba(200,0,0,0.05);
    border: 1px solid rgba(200,0,0,1.0);
    color: #C80000;
}

.SRadio_Style_Texts_Item_Yellow input[type=radio]:checked + label {
    background-color: rgba(255,140,0,0.05);
    border: 1px solid rgba(255,140,0,1.0);
    color: #FF8C00;
}

.SRadio_Style_Texts_Item_Magenta input[type=radio]:checked + label {
    background-color: rgba(180,0,180,0.05);
    border: 1px solid rgba(180,0,180,1.0);
    color: #B400B4;
}
/*----------------------------- RADIO STYLE TEXTS -------*/


/*-------------------------- CHECK LIST STYLE TEXTS -----*/
.SCheck_List_Style_Texts {
    min-width: 250px;
}

    .SCheck_List_Style_Texts input[type=checkbox] {
        display: none;
    }

    .SCheck_List_Style_Texts label {
        position: relative;
        display: inline;
        width: auto;
        height: 50px;
        min-width: 0px;
        padding: 3px 55px 3px 5px;
        margin: 0px;
        background-color: rgba(250,250,250,0.0);
        border-radius: 14px;
        font-family: 'IRANSans';
        font-style: normal;
        font-weight: 300;
        font-size: 0.9em;
        text-align: right;
        vertical-align: middle;
        color: #000000;
        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;
    }

        .SCheck_List_Style_Texts label:hover {
            background-color: rgba(250,250,250,1.0);
        }

    .SCheck_List_Style_Texts input[type=checkbox] + label {
        position: relative;
        display: block;
        width: auto;
        height: auto;
    }

    .SCheck_List_Style_Texts label:before {
        position: absolute;
        display: block;
        width: 40px;
        height: 22px;
        right: 2px;
        top: 50%;
        margin-top: -12px;
        border-radius: 12px;
        background-color: rgba(200,200,200,1.0);
        border: 1px solid rgba(200,200,200,0.4);
        content: "";
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        z-index: 10;
    }

    .SCheck_List_Style_Texts input[type=checkbox]:checked + label:before {
        background-color: rgba(0,120,255,1.0);
        border-color: rgba(0,120,255,1.0);
    }

.SCheck_List_Style_Texts_Green input[type=checkbox]:checked + label:before {
    background-color: rgba(0,180,30,1.0);
    border-color: rgba(0,180,30,1.0);
}

.SCheck_List_Style_Texts_Blue input[type=checkbox]:checked + label:before {
    background-color: rgba(0,120,255,1.0);
    border-color: rgba(0,120,255,1.0);
}

.SCheck_List_Style_Texts_Gray input[type=checkbox]:checked + label:before {
    background-color: rgba(220,220,220,1.0);
    border-color: rgba(220,220,220,1.0);
}

.SCheck_List_Style_Texts_Red input[type=checkbox]:checked + label:before {
    background-color: rgba(200,0,0,1.0);
    border-color: rgba(200,0,0,1.0);
}

.SCheck_List_Style_Texts_Yellow input[type=checkbox]:checked + label:before {
    background-color: rgba(255,140,0,1.0);
    border-color: rgba(255,140,0,1.0);
}

.SCheck_List_Style_Texts_Magenta input[type=checkbox]:checked + label:before {
    background-color: rgba(180,0,180,1.0);
    border-color: rgba(180,0,180,1.0);
}

.SCheck_List_Style_Texts label:after {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    right: 23px;
    top: 50%;
    margin-top: -9px;
    border-radius: 9px;
    background-color: rgba(255,255,255,1.0);
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.2);
    content: "";
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 20;
}

.SCheck_List_Style_Texts input[type=checkbox]:checked + label:after {
    right: 5px;
    background-color: rgba(255,255,255,1.0);
}
/*-------------------------- CHECK LIST STYLE TEXTS -----*/


/*----------------------------- CHECK STYLE TEXTS -------*/
.SCheck_Style_Texts input[type=checkbox], .SCheck_Style_Texts_Green input[type=checkbox], .SCheck_Style_Texts_Blue input[type=checkbox], .SCheck_Style_Texts_Gray input[type=checkbox], .SCheck_Style_Texts_Red input[type=checkbox], .SCheck_Style_Texts_Yellow input[type=checkbox], .SCheck_Style_Texts_Magenta input[type=checkbox] {
    display: none;
}

.SCheck_Style_Texts, .SCheck_Style_Texts_Green, .SCheck_Style_Texts_Blue, .SCheck_Style_Texts_Gray, .SCheck_Style_Texts_Red, .SCheck_Style_Texts_Yellow, .SCheck_Style_Texts_Magenta {
    position: relative;
    display: table;
    width: auto;
    height: 26px;
    margin: 3px 0px 3px 0px;
}

    .SCheck_Style_Texts label, .SCheck_Style_Texts_Green label, .SCheck_Style_Texts_Blue label, .SCheck_Style_Texts_Gray label, .SCheck_Style_Texts_Red label, .SCheck_Style_Texts_Yellow label, .SCheck_Style_Texts_Magenta label {
        position: relative;
        display: inline;
        width: auto;
        height: 50px;
        padding: 3px 55px 3px 5px;
        margin: 0px;
        background-color: rgba(250,250,250,0.0);
        border-radius: 14px;
        font-family: 'IRANSans';
        font-style: normal;
        font-weight: 300;
        font-size: 0.9em;
        text-align: right;
        vertical-align: middle;
        color: #000000;
        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;
    }

        .SCheck_Style_Texts label:hover, .SCheck_Style_Texts_Green label:hover, .SCheck_Style_Texts_Blue label:hover, .SCheck_Style_Texts_Gray label:hover, .SCheck_Style_Texts_Red label:hover, .SCheck_Style_Texts_Yellow label:hover, .SCheck_Style_Texts_Magenta label:hover {
            background-color: rgba(250,250,250,1.0);
        }

    .SCheck_Style_Texts input[type=checkbox] + label, .SCheck_Style_Texts_Green input[type=checkbox] + label, .SCheck_Style_Texts_Blue input[type=checkbox] + label, .SCheck_Style_Texts_Gray input[type=checkbox] + label, .SCheck_Style_Texts_Red input[type=checkbox] + label, .SCheck_Style_Texts_Yellow input[type=checkbox] + label, .SCheck_Style_Texts_Magenta input[type=checkbox] + label {
        display: block;
        width: auto;
        height: inherit;
    }

    .SCheck_Style_Texts label:before, .SCheck_Style_Texts_Green label:before, .SCheck_Style_Texts_Blue label:before, .SCheck_Style_Texts_Gray label:before, .SCheck_Style_Texts_Red label:before, .SCheck_Style_Texts_Yellow label:before, .SCheck_Style_Texts_Magenta label:before {
        position: absolute;
        display: block;
        width: 40px;
        height: 22px;
        right: 2px;
        top: 50%;
        margin-top: -12px;
        border-radius: 12px;
        background-color: rgba(200,200,200,1.0);
        border: 1px solid rgba(200,200,200,0.4);
        content: "";
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        z-index: 10;
    }

    .SCheck_Style_Texts input[type=checkbox]:checked + label:before {
        background-color: rgba(0,120,255,1.0);
        border-color: rgba(0,120,255,1.0);
    }

    .SCheck_Style_Texts_Green input[type=checkbox]:checked + label:before {
        background-color: rgba(0,180,30,1.0);
        border-color: rgba(0,180,30,1.0);
    }

    .SCheck_Style_Texts_Blue input[type=checkbox]:checked + label:before {
        background-color: rgba(0,120,255,1.0);
        border-color: rgba(0,120,255,1.0);
    }

    .SCheck_Style_Texts_Gray input[type=checkbox]:checked + label:before {
        background-color: rgba(220,220,220,1.0);
        border-color: rgba(220,220,220,1.0);
    }

    .SCheck_Style_Texts_Red input[type=checkbox]:checked + label:before {
        background-color: rgba(200,0,0,1.0);
        border-color: rgba(200,0,0,1.0);
    }

    .SCheck_Style_Texts_Yellow input[type=checkbox]:checked + label:before {
        background-color: rgba(255,140,0,1.0);
        border-color: rgba(255,140,0,1.0);
    }

    .SCheck_Style_Texts_Magenta input[type=checkbox]:checked + label:before {
        background-color: rgba(180,0,180,1.0);
        border-color: rgba(180,0,180,1.0);
    }

    .SCheck_Style_Texts label:after, .SCheck_Style_Texts_Green label:after, .SCheck_Style_Texts_Blue label:after, .SCheck_Style_Texts_Gray label:after, .SCheck_Style_Texts_Red label:after, .SCheck_Style_Texts_Yellow label:after, .SCheck_Style_Texts_Magenta label:after {
        position: absolute;
        display: block;
        width: 18px;
        height: 18px;
        right: 23px;
        top: 50%;
        margin-top: -9px;
        border-radius: 9px;
        background-color: rgba(255,255,255,1.0);
        box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.2);
        content: "";
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        z-index: 20;
    }

    .SCheck_Style_Texts input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }

    .SCheck_Style_Texts_Green input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }

    .SCheck_Style_Texts_Blue input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }

    .SCheck_Style_Texts_Gray input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }

    .SCheck_Style_Texts_Red input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }

    .SCheck_Style_Texts_Yellow input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }

    .SCheck_Style_Texts_Magenta input[type=checkbox]:checked + label:after {
        right: 5px;
        background-color: rgba(255,255,255,1.0);
    }
/*----------------------------- CHECK STYLE TEXTS -------*/



/*----------------------------- OTP -----------------------*/
.SOTP_Container {
    gap: 10px;
}

.SOTP_Text {
    flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    width: 40px;
    height: 40px;
    border: solid 1px rgba(210,210,210,1.0);
    border-radius: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 1.3em;
    color: rgba(0,0,0,1.0);
    text-align: center;
    vertical-align: middle;
}
/*----------------------------- OTP -----------------------*/





@media screen and (min-width:0px) and (max-width:1000px) {

    .SPC_Ctrl_Text_Parts_Body {
        gap: 5px;
    }
}

@media screen and (min-width:0px) and (max-width:800px) {


    .SPC_Key_Main, .SPC_Key_Wide_Main, .SPC_Key_Min_Main {
        min-height: 40px;
    }

    .SPC_Key_Link_Bak_BK {
        min-height: 40px;
    }

    .SPC_Key_Link_Bak_BU {
        min-height: 40px;
    }

    .SPC_Ctrl_Text_Box {
        height: 40px;
        max-width: 100%;
    }

    .SPC_Ctrl_Drop {
        height: 40px;
        max-width: 100%;
    }
}

@media screen and (min-width:0px) and (max-width:800px) {
    .SPC_Items_Main {
        padding: 5px 0px;
        gap: 5px 0px;
    }

    .SPC_Items_Row_Main {
        flex-wrap: nowrap;
        flex-direction: column;
        align-content: stretch;
        justify-content: flex-start;
        padding: 10px 8px;
        border-radius: 5px;
    }

    .SPC_Items_Row_Title {
        flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 0px;
        padding-bottom: 5px;
        font-size: 0.85em;
        text-align: right;
    }

    .SPC_Items_Row_Text {
        flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        width: 100%;
        height: auto;
        padding-right: 0px;
    }
}
