:root {
    
    --PrimaryBGColor: #01877a;
    --PrimaryBGColorHover: #016961;
    --PrimaryBGColorOpac10: #86a61410;
    --PrimaryBGColorOpac20: #86a61420;
    --PrimaryBGColorOpac30: #86a61430;
    --PrimaryBGColorOpac40: #86a61440;
    --PrimaryTextColor:white;


/*3c586f*/
    --SecondaryBGColor: #335259;
    --SecondaryBGColorHover: #28454c;
    --SecondaryBGColorOpac20: #33525920;
    --SecondaryBGColorOpac30: #33525930;
    --SecondaryBGColorOpac40: #33525940;
    --SecondaryTextColor:white;



    --DarkBGColor:#1d1d1d;
    --DarkBGColorHover:#000000;




    --TextPrimary: #325259;




    








    --PalePrimaryBGColor:#fff1e7;/*#edf6ff*/
    --PalePrimaryBGColor2:#fae1e1;/*#e1e9fa;*/
    --PalePrimaryBGColor3:#ffcfb0;





    --PrimaryColorLightBG:#a1c21a;

    --PrimaryColorLightBGHover:#f3e7dc;

    --PrimaryColorLightBG2:rgba(134, 166, 20, 0.08);
    --PrimaryColorLightBG2Hover:#f0f0f0;

    --B1GreyBGColor:#f5f3f1/*#f1f3f5*/;
    --B2GreyBGColor: #e4ddcd;/*#e1e9fa*/



    --WhiteTxtColor:#ffffff;
    --WhiteTxtColorHover:#f1f1f1;



    --DarkTxtColor:#151a20;
    --DarkTxtColorHover:#151a20;










    --SuccessBGColor:#1b993c;
    --SuccessBGColorHover:#158733;
    --SuccessBGColorOpac10:#1b993c10;
    --SuccessBGColorOpac20:#1b993c20;
    --SuccessTxtColor: #fff;    
    /*--SuccessBGColor:#299764;
    --SuccessBGColorOpac10:#29976410;
    --SuccessBGColorOpac20:#29976420;
    --SuccessTxtColor: #fff;*/

    
    --FailedBGColor:#dc3d43;
    --FailedBGColorHover:#c93237;
    --FailedBGColorOpac10:#dc3d4310;
    --FailedBGColorOpac20:#dc3d4320;
    --FailedTxtColor: #fff;


    --WarningBGColor:#e1a428;
    --WarningBGColorOpac10:#e1a42810;
    --WarningBGColorOpac20:#e1a42820;
    --WarningTxtColor: #000;










}



::-moz-selection {
    color: white;
    background: var(--DarkBGColor);
}
::selection {
    color: white;
    background: var(--DarkBGColor);
}







*{
	outline: none !important;
    box-sizing: border-box;
}
*:not(input):not(textarea){
	-webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /*-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}



html,body {
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: unset;
    margin: 0;
    padding: 0;
    
    background-color: #ffffff;/*#edf5fa/*#eef0f0*/;
    background-color:#f9f9f9/*#f5f5f5*/;
}
/* body{
    padding: 70px 0 0px;
} */

body.NoTopNav{
    padding-top: 0;
}
/*
body.NoBottomNav{
    padding-bottom: 0;
}

body.NoNav{
    padding-top: 0;
    padding-bottom: 0;
}
*/

html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}




h1,h2,p,ul{
    margin: 0;
    padding: 0;
}
.FW700{
    font-weight:700;
}
.FW600{
    font-weight:600;
}
.FW500{
    font-weight:500;
}
.FW400{
    font-weight:400;
}


.FS16 {
    font-size:16px;
}
.FS15 {
    font-size:15px;
}
.FS14 {
    font-size:14px;
}

.hidden{
    display: none !important;
}

.FullWidth{
    width: 100%;
}



.Separator{
    width: 100%;
    height: 2px;
    margin: 10px 0;
    background-color: #f7f7f7;
}



.M0{
    margin:0 !important;
}
.MT0{
    margin-top:0 !important;
}
.MT5{
    margin-top:5px;
}
.MT10{
    margin-top:10px;
}
.MT15{
    margin-top:15px;
}
.MT20{
    margin-top:20px;
}
.MT25{
    margin-top:25px;
}
.MT30{
    margin-top:30px;
}
.MT40{
    margin-top:40px;
}
.MT50{
    margin-top:50px;
}
.MT70{
    margin-top:70px;
}
.MT100{
    margin-top:100px;
}







.MB0{
    margin-bottom:0;
}
.MB5{
    margin-bottom:5px;
}
.MB10{
    margin-bottom:10px;
}
.MB15{
    margin-bottom:15px;
}
.MB20{
    margin-bottom:20px;
}
.MB30{
    margin-bottom:30px;
}
.MB40{
    margin-bottom:40px;
}
.MB50{
    margin-bottom:50px;
}
















.dBlock{
    display: block;
}
.dIBlock{
    display: inline-block;
}
.dFlex,.FlexBox{
    display: flex;
}
.flexWrap{
    flex-wrap: wrap;
}
.SpaceBetween{
    justify-content: space-between;
}
.FlexEnd{
    justify-content: flex-end;
}
.FlexStart{
    justify-content: flex-start;
}
.FlexCenter{
    justify-content: center;
}
.FlexVCenter{
    align-items: center;
}
.FlexVStart{
    align-items: flex-start;
}
.FlexVEnd{
    align-items: flex-end;
}

.Gap0{
    gap: 0px !important;
}
.Gap5{
    gap: 5px;
}
.Gap10{
    gap: 10px;
}
.Gap15{
    gap: 15px;
}



/* Padding */
.PT0{
    padding-top: 0px !important;
}
.P5{
    padding: 5px;
}
.PT10{
    padding-top: 10px;
}
.P15{
    padding: 15px;
}
.P20{
    padding: 20px;
}
.P30{
    padding: 30px;
}
.P40{
    padding: 40px;
}
.P50{
    padding: 50px;
}
.P60{
    padding: 60px;
}
.P100{
    padding: 100px;
}











#PageLoader {
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    height: 100%;
    width: 100%;
}

.SVGLogo{
    height: 180px;
    width: 180px;align-self: center;
}
body.loading {
	overflow: hidden;
	height: 100vh;
    height: calc(var(--vh, 1vh) * 100);

}












/******************************* Buttons ***********************************/
.BrandBtn{
    border:0;
    outline:0;
    cursor: pointer;
    text-decoration:none;
    font-size: 14px;
    background-color: #125cbf;
    background-color: var(--PrimaryBGColor);
    border:2px solid #125cbf;
    border-color: var(--PrimaryBGColor);
    padding:12px 34px;
    color: white;
    color: var(--PrimaryTextColor);
    
    text-align:center;

    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
}
.BrandBtn:hover{
    background-color: #125cbf;
    background-color: var(--PrimaryBGColorHover);
}


.BrandBtn.Dark{
    background-color:#1d1d1d;
    background-color: var(--DarkBGColor);
    border-color: #1d1d1d;
    border-color: var(--DarkBGColor);
}
.BrandBtn.Dark:hover{
    background-color:#000000;
    background-color: var(--DarkBGColorHover);
    border-color: #000000;
    border-color: var(--DarkBGColorHover);
}


.BrandBtn.Primary{
    color: black;
    background-color: #125cbf20;
    background-color: var(--PrimaryBGColorOpac20);

    border-color: transparent;
}
.BrandBtn.Primary:hover{
    background-color: #125cbf30;
    background-color: var(--PrimaryBGColorOpac30);
}





.BrandBtn.Success{
    color: white;
    background-color: #125cbf20;
    background-color: var(--SuccessBGColor);
    border-color: transparent;
}
.BrandBtn.Success:hover{
    background-color: #125cbf30;
    background-color: var(--SuccessBGColorHover);
}
.BrandBtn.Failed{
    color: white;
    background-color: #125cbf20;
    background-color: var(--FailedBGColor);
    border-color: transparent;
}
.BrandBtn.Failed:hover{
    background-color: #125cbf30;
    background-color: var(--FailedBGColorHover);
}


.BrandBtn.Outline{
    color:#636578;
    border:2px solid #dddee4;
    background-color:transparent;
}
.BrandBtn.Outline:hover{
    background-color: #00000005;
}

.BrandBtn.Outline.Dark{
    color:#000;
    border:2px solid #dddee4;
    background-color:transparent;
}
.BrandBtn.Outline.Dark:hover{
    background-color: #f3f3f3;
}


.BrandBtn.Disabled,.BrandBtn:disabled{

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;    
    pointer-events: none;
}

.BrandBtn.Rounded{
    -moz-border-radius: 120px;
    -khtml-border-radius: 120px;
    -webkit-border-radius: 120px;
    -o-border-radius: 120px;
    -ms-border-radius: 120px;
    border-radius: 120px;
}






.BrandBtn.SmallBtn{
    padding: 8px 12px;
    min-width: 100px;
    
}














#LoadingMenu{
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#00000030;
}
#LoadingMenu .WhiteMenuCont{
    width:unset;
    z-index: 102;
    padding: 10px;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 55px -7px rgb(0 0 0 / 33%);
    -moz-box-shadow: 0px 0px 55px -7px rgba(0, 0, 0, 0.33);
    box-shadow: 0 0px 55px -7px rgb(0 0 0 / 33%);
}
#LoadingMenu svg{
    width: 100px;
    height: 100px;
}










/******************************* Badges ***********************************/
.Badge{
    display: inline-block;
    padding:3px 10px;
    font-size:14px;font-weight: 400;
    color:white;
    color:var(--PrimaryTextColor);
    background-color: #125cbf;
    background-color:var(--PrimaryBGColor);

    -moz-border-radius: 6px;
    -khtml-border-radius: 6px;
    -webkit-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;

    vertical-align: middle;

}
.Badge.WithCircle::before{
    content:'';
    display: inline-block;
    position: relative;
    top:0;left:0;
    width:8px;height:8px;
    margin-right:5px;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;

    background-color: white;
    background-color:var(--PrimaryTextColor);
}
html[dir="rtl"] .Badge.WithCircle::before{
    margin-left:5px;
    margin-right:unset;
}
.Badge.Success{
    background-color:#259800;
    background-color:var(--SuccessBGColor);
}
.Badge.Fail{
    background-color:#dc2626;
    background-color:var(--FailedBGColor);
}
.Badge.Warning{
    background-color:#e1a428;
    background-color:var(--WarningBGColor);
}
.Badge.Secondary{
    background-color: white;
    background-color:var(--SecondaryBGColor);
    color: white;
    color:var(--SecondaryTextColor);
}




.Badge.Alt{
    background-color: #125cbf10;
    background-color: var(--PrimaryBGColorOpac10);
    color:#191919;
    /*color: #125cbf;
    color: var(--PrimaryBGColor);*/
}
.Badge.Alt.WithCircle::before{
    background-color: #125cbf;
    background-color: var(--PrimaryBGColor);
}





.Badge.Success.Alt{
    background-color:#25980010;
    background-color:var(--SuccessBGColorOpac10);
    color:#259800;
    color:var(--SuccessBGColor);
}
.Badge.Success.Alt.WithCircle::before{
    background-color:#259800;
    background-color:var(--SuccessBGColor);
}





.Badge.Failed.Alt{
    background-color:#dc262610;
    background-color:var(--FailedBGColorOpac10);
    color:#dc2626;
    color:var(--FailedBGColor);
}
.Badge.Failed.Alt.WithCircle::before{
    background-color:#dc2626;
    background-color:var(--FailedBGColor);
}




.Badge.Warning.Alt{
    background-color:#e1a42810;
    background-color:var(--WarningBGColorOpac10);
    color:#e1a428;
    color:var(--WarningBGColor);
}
.Badge.Warning.Alt.WithCircle::before{
    background-color:#e1a428;
    background-color:var(--WarningBGColor);
}










.Badge.Rounded{
    -moz-border-radius: 100px;
    -khtml-border-radius: 100px;
    -webkit-border-radius: 100px;
    -o-border-radius: 100px;
    -ms-border-radius: 100px;
    border-radius: 100px;
}




































/******************************* Pop up Window Start ***********************************/
.Popup,.ClosePopup{
        position: fixed;
        width:100%;
        height: 100%;
        z-index: 1000;
        background-color: #00000040;
        padding: 20px;
        top:0;
        left:0;
        display: flex;
        overflow: auto;
        overscroll-behavior: contain;
        
}
.ClosePopup{
    cursor: pointer;
}
.PopupCont{
    background-color: white;
    width: 100%;
    max-width:550px;
    max-height:90vh;overflow-y:auto;
    margin:auto;
    z-index: 1001;
    padding:26px;

    -moz-border-radius: 16px;
    -khtml-border-radius: 16px;
    -webkit-border-radius: 16px;
    -o-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
}
.PopupCont.Wide{
    max-width:800px;
}



.PopupIconCont{
    width: 120px;
    height: 120px;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color:#125cbf;
    background-color:var(--PrimaryBGColor);
}
.PopupIconCont.NoCircle{
    width:185px;
    height:185px;
    -moz-border-radius: unset;
    -khtml-border-radius: unset;
    -webkit-border-radius: unset;
    -o-border-radius: unset;
    -ms-border-radius: unset;
    border-radius: unset;
    background-color:unset;
}
.PopupIconCont.NoCircle img{
    padding:0;
}
.PopupIconCont.Secondary{
    background-color:#5ec13a;
    background-color: var(--SecondaryBGColor);
}
.PopupIconCont.Success{
    background-color:#299764;
    background-color: var(--SuccessBGColor);
}
.PopupIconCont.Failed{
    background-color:#dc3d43;
    background-color: var(--FailedBGColor);
}
.PopupIconCont.Warning{
    background-color:#e1a428;
    background-color: var(--WarningBGColor);
}

.PopupIconCont.Secondary g,.PopupIconCont.Success g,.PopupIconCont.Failed g,.PopupIconCont.Warning g{
    display: none;
}
.PopupIconCont.Secondary .Secondary,.PopupIconCont.Success .Success,.PopupIconCont.Failed .Failed,.PopupIconCont.Warning .Warning{
    display: unset;
}



.PopUpIcon{
    width:100%;
    height:100%;
    padding: 30px;
    -webkit-object-fit: contain;
    -moz-object-fit: contain;
    object-fit: contain;
}

.PopUpIcon path,.PopUpIcon line{
    fill:transparent;
    stroke:#ffffff;
    stroke-width:25;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
}


.PopupIconCont.Success path,.PopupIconCont.Success line,
.PopupIconCont.Failed path,.PopupIconCont.Failed line,
.PopupIconCont.Warning path,.PopupIconCont.Warning line{
    stroke-dasharray: 0px 287px;
    -webkit-animation: strokeDraw 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    -moz-animation: strokeDraw 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    -o-animation: strokeDraw 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    animation: strokeDraw 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}
.PopupIconCont.Failed line:nth-child(1){
    stroke-dasharray: 0px 287px;
    -webkit-animation: strokeDraw 2s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
    -moz-animation: strokeDraw 2s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
    -o-animation: strokeDraw 2s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
    animation: strokeDraw 2s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
}



.PopupIconCont.Warning line{
    stroke-width: 26px;
}
.PopupIconCont.Warning line:nth-child(1){
    stroke-dasharray: 0px 287px;
    -webkit-animation: strokeDraw 4s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
    -moz-animation: strokeDraw 4s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
    -o-animation: strokeDraw 4s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
    animation: strokeDraw 4s cubic-bezier(0.1, 0.4, 0.2, 1) forwards;
}
.PopupIconCont.Warning line:nth-child(2){

    -webkit-animation: fadeShowDown 0.4s ease both;
    -moz-animation: fadeShowDown 0.4s ease both;
    -o-animation: fadeShowDown 0.4s ease both;
    animation: fadeShowDown 0.4s ease both;
}
@keyframes strokeDraw {
    from {
        stroke-dasharray: 0 287;
    }
    to {
        stroke-dasharray: 287 0;
    }
}

@keyframes fadeShowDown {
    from {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;


        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
        
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}




.PopupIconCont svg.PopUpIcon, .PopupIconCont.Secondary img.PopUpIcon, .PopupIconCont.Success img.PopUpIcon, .PopupIconCont.Failed img.PopUpIcon, .PopupIconCont.Warning img.PopUpIcon{
    display: none;
}
.PopupIconCont img.PopUpIcon, .PopupIconCont.Secondary svg.PopUpIcon, .PopupIconCont.Success svg.PopUpIcon, .PopupIconCont.Failed svg.PopUpIcon, .PopupIconCont.Warning svg.PopUpIcon{
    display: block;
}
/*
.PopUpIcon:not(.PopUpWidow .PopUpIcon){
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -khtml-opacity: 0.6;
    opacity: 0.6;
}
*/
.PopupTitle{    
    font-size:26px;
    font-weight: 700;
    color: var(--DarkBGColorHover);
    margin-top:16px;
}
.PopupSubTitle{
    font-size:22px;
    font-weight: 600;
    color: var(--DarkTxtColor);
}
.PopupBodyTxt{
    font-size:16px;
    font-weight: 500;
    color: #767676;
    margin-top:6px;
}


/******************************* Pop up Window End ***********************************/























/* BreadCrumb */
.Breadcrumb {
    padding: 0 20px;
    background-color: white;
    
    display: flex;
    width: 100%;
    
    flex-direction: row;
    align-items: center;
    /*height: 60px;
    max-width: 825px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0px 15px 23px rgba(3, 7, 18, 0.02),
    0px 60px 91px rgba(3, 7, 18, 0.04);*/
}

.Breadcrumb ul {
    list-style: none;
    display: inline-block;
}

.Breadcrumb li {
    display: inline-block;
}

.Breadcrumb a {
    color: black;
    color:var(--DarkTxtColor);
    text-decoration: none;
    padding: 24px 4px;
    display: inline-block;
    text-decoration: underline;
    font-weight:400;
}
.Breadcrumb li:not(:last-child):after {
    content: "";
    margin: 0 10px;
    height: 5px;
    width: 5px;
    display: inline-flex;
    color: #374151;
    border-style: solid;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.Breadcrumb .Active{
    color: #125cbf;
    color: var(--PrimaryBGColor);
    font-weight: 500;
    pointer-events: none;
    text-decoration: none;
}


















/******************************* Container ***********************************/
.Container{
    width:100%;
    margin-right:auto;margin-left:auto;
    padding-right:15px;padding-left:15px;
}
@media only screen and (max-width: 600px) {
    
}
@media only screen and (min-width: 600px) {
    .Container{
        max-width:560px;
    }
}
@media only screen and (min-width: 768px) {
    .Container{
        max-width:768px;
    }
}
@media only screen and (min-width: 992px) {
    .Container{
        max-width:960px;
    }
}
@media only screen and (min-width: 1200px) {
    .Container{
        max-width:1140px;
    }
}

@media only screen and (min-width: 1400px) {
    .Container{
        max-width:1340px;
    }
}








/******************************* Pagination ***********************************/

.PaginationCont {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding:10px;
}
.Pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width:38px;
    height:38px;
    text-decoration: none;
    color: #333;
    border: 2px solid #ededed;
    -moz-border-radius: 5px;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
}
.Pagination:hover {
    background-color: #f3f3f3;
}
.Pagination.active {
    background-color: #007bff;
    background-color: var(--PrimaryBGColor);
    color: white;
    border-color: #007bff;
    border-color: var(--PrimaryBGColor);
    pointer-events: none;
}





.Chevron {
    position: relative;
    width: 24px;
    height: 24px;
}

/* Right Chevron (Next) */
.Chevron.Next::before,
.Chevron.Next::after,.Chevron.Prev::before,
.Chevron.Prev::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background-color: #3c3c3c;
    border-radius: 3px;
    left: 10px;
    left:calc(50% - 1px);
}
.Chevron.Next::before,html[dir="rtl"] .Chevron.Prev::before {
    top: 4px;
    top: calc(50% - 6px);
    transform: rotate(-45deg);
}
.Chevron.Next::after ,html[dir="rtl"] .Chevron.Prev::after{
    bottom: 4px;
    bottom: calc(50% - 6px);
    transform: rotate(45deg);
}
.Chevron.Prev::before,html[dir="rtl"] .Chevron.Next::before {
    top: 4px;
    top: calc(50% - 6px);
    left:calc(50% - 2px);
    transform: rotate(45deg);
}
.Chevron.Prev::after,html[dir="rtl"] .Chevron.Next::after {
    bottom: 4px;
    bottom: calc(50% - 6px);
    left:calc(50% - 2px);
    transform: rotate(-45deg);
}



/******************************* Pagination ***********************************/









/******************************* Inputs ***********************************/

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
    display: block;
}
legend {
    display: contents;
    font-weight:500;
}

input[type="password"]::-ms-reveal {
    display: none;
}






.ModalForm{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.FormFullW {
  flex: 1 1 100%;
  min-width: 0;
}
.FormHalfW {
  flex: 1 1 calc(50% - 10px);
  min-width: 0;
}
@media (max-width: 600px) {
  .ModalForm{
    gap: 14px;
  }
  .FormHalfW {
    flex: 1 1 100%;
  }
}

.InputGroup+.InputGroup{
    margin-top:15px;
}
/*.InputGroup label,.InputGroup legend*/
.InputGroup > label:first-child:not(.CustomRadio):not(.RoundedCheckbox),.InputGroup > legend:first-child:not(.CustomRadio):not(.RoundedCheckbox){
    font-size:14px;
    font-weight:500;
    margin-bottom:6px;
    display:inline-block;
    width:100%;
    text-align: start;
}
.InputGroup input,.InputGroup textarea,.TextArea textarea {
    padding: 10px 11px 10px 11px;
    border: 2px solid #DFE4EA;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    resize: none;
    /*width: calc(100% - 52px);*/
    
    
    
    height:unset !important;
    line-height:unset !important;
}






.InputGroup input::placeholder,.InputGroup textarea::placeholder,.TextArea textarea::placeholder{
    font-size:inherit !important;
}

.TextArea {
    padding: 10px 48px 10px 11px;
    border: 2px solid #DFE4EA;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    resize: none;
    /*width: calc(100% - 52px);*/
}


.InputGroup input.InvalidInput,.InputGroup textarea.InvalidInput,.InputGroup textarea.InvalidInput
,select.InvalidInput+ .DropdownMenuCont .DropdownButton,.InputGroup .DatePickerWrapper:has(.InvalidInput) input {
    border-color: #dc2626;
    border-color: var(--FailedBGColor);
}

.InputWithIcon{
    position: relative;
}
.InputWithIcon input{
    position: relative;
    padding: 10px 14px 10px 44px;
}
.InputWithIcon input+img,.InputWithIcon input+svg{
    position: absolute;
    top:10px;
    top:calc(50% - 10px);
    left:14px;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.InputWithIcon.IconAfter input+img,.InputWithIcon.IconAfter input+svg{
    right:14px;left:unset;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2;
}
html[dir="rtl"] .InputWithIcon.IconAfter input+img , html[dir="rtl"] .InputWithIcon.IconAfter input+svg{
    left:14px;right:unset;
}
.InputWithIcon.IconAfter input{
    position: relative;
    padding: 11px 44px 11px 14px;
}







.InputWithIcon.IconBefore input+img,.InputWithIcon.IconBefore input+svg{
    left:14px;right:unset;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2;
}
html[dir="rtl"] .InputWithIcon.IconBefore input+img,html[dir="rtl"] .InputWithIcon.IconBefore input+svg{
    right:14px;left:unset;
}
.InputWithIcon.IconBefore input{
    position: relative;
    padding: 11px 14px 11px 44px;
}
html[dir="rtl"] .InputWithIcon.IconBefore input{
    position: relative;
    padding: 11px 44px 11px 14px;
}



.FormHint {
    color: #666666;
    font-size: 12px;
    margin: 0 0 12px;
    text-align: start;
    padding: 0 !important;
}

html[dir="rtl"] .InputGroup input, html[dir="rtl"] .InputGroup textarea,html[dir="rtl"] .TextArea textarea{
    padding: 11px 11px 11px 48px;
    direction: rtl;
}


.InputGroup input[type="number"]{
    padding: 11px 11px 11px 11px;
}




.InputGroup p{
    padding-left: 5px;
}
.InputGroup input::placeholder,textarea::placeholder{
    color: #c7c7c7;
    font-weight: 500;
}

.InputGroup.Error input,.TextArea.Error textarea{
    border: 2px solid #F23030;
}

.FieldError{
    font-size: 14px;
}
.FieldError>p {
    text-align: start;
    color: #F23030;

    margin: 6px 0 8px;
    

}
/******************************* Inputs ***********************************/






/******************* Checkbox *******************************/
.RoundedCheckbox {
  display: flex;
  align-items: center;
  
  position: relative;
  padding: 4px;
  padding-left: 34px;
  cursor: pointer;
  font-size:15px;

}
.RoundedCheckbox+.RoundedCheckbox{
    margin-top:8px;
}
html[dir="rtl"] .RoundedCheckbox {
    padding-left: 4px;
    padding-right: 34px;
}

.RoundedCheckbox a{
    margin: 0 2px;
}

.RoundedCheckbox input {
  position: absolute;
  height: 0;
  width: 0;
  display:none;
}

.RoundedCheckmark {
  position: absolute;
  top: 0;
  left: 0;
  top: calc(50% - 12px);
  height: 24px;
  width: 24px;
  flex-shrink:0;
  /*background-color: #eee;*/
  transition: all 0.3s;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;

  border:2px solid #e9e9e9;

}

html[dir="rtl"] .RoundedCheckmark {
    left:unset;
    right:0;
}

.RoundedCheckbox:hover input ~ .RoundedCheckmark {
  background-color: #f3f3f3;
}

.RoundedCheckbox input:checked ~ .RoundedCheckmark {
  background-color: #2196F3;
  background-color:var(--PrimaryBGColor);
  border-color: #2196F3;
  border-color: var(--PrimaryBGColor);

}

.RoundedCheckmark:after, .RoundedCheckmark::before {
    content: "";
    position: absolute;
    display: none;
    -moz-border-radius: 2px;
    -khtml-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    background-color: white;
}

.RoundedCheckbox input:checked ~ .RoundedCheckmark:after,
.RoundedCheckbox input:checked ~ .RoundedCheckmark::before {
    display: block;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* First line (longer diagonal) */
.RoundedCheckbox .RoundedCheckmark:after {
    width: 3px;
    height: 6px;
    left: 6px;
    top: 10px;
    left: calc(50% - 5px);
    top: calc(50% - 1px);
}
.RoundedCheckbox .RoundedCheckmark::before {
    width: 10px;
    height: 3px;
    left: 7px;
    top: 10px;
    left: calc(50% - 4px);
    top: calc(50% - 1px);
    
}


/******************* Checkbox *******************************/





/******************* Radio Buttons *******************************/
.CustomRadio {
  display: flex;
  align-items: center;
  position: relative;
  padding: 4px;
  padding-left: 34px;
  cursor: pointer;
  font-size:15px;
}
html[dir="rtl"] .CustomRadio {
    padding-left: 4px;
    padding-right: 34px;

}

.CustomRadio+.CustomRadio{
    margin-top:6px;
}
.CustomRadio input {
  position: absolute;
  height: 0;
  width: 0;
  display: none;
}

.RadioCheckmark {
    position: absolute;
    top: 0;
    top: calc(50% - 11px);
    left: 0;
    height: 22px;
    width: 22px;
    flex-shrink:0;
    flex-grow: 0;
    border:2px solid #e9e9e9;
    /*background-color: #eee;*/
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    
}
html[dir="rtl"] .RadioCheckmark {
    left:unset;
    right:0;
}


.CustomRadio:hover input ~ .RadioCheckmark {
  background-color: #f3f3f3;
}
.CustomRadio input:checked ~ .RadioCheckmark {
  background-color: #2196F3;
  background-color:var(--PrimaryBGColor);
  border-color: #2196F3;
  border-color: var(--PrimaryBGColor);
}
.RadioCheckmark:after {
    content: "";
    position: absolute;
    display: none;
    border:none;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.CustomRadio input:checked ~ .RadioCheckmark:after {
  display: block;
}
.CustomRadio .RadioCheckmark:after {
  top: 6px;
  left: 6px;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background-color: white;
}
/******************* Radio Buttons *******************************/


















/******************* Calendar Date Picker Start *******************************/
    .DatePickerWrapper,.CalendarCont{
        position: relative;
    }
    .DatePickerWrapper input[readonly=""]{
        cursor: pointer;
    }
    .CalendarHide {
        position: fixed;
        top: 0;
        left:0;
        width: 100%;
        height: 100%;
        background-color: #00000030;
        cursor: pointer;
        z-index: 10;
    }
    .CalendarPopup {
        position: absolute;
        background: #fcfcfc;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        -moz-border-radius: 12px;
        -khtml-border-radius: 12px;
        -webkit-border-radius: 12px;
        -o-border-radius: 12px;
        -ms-border-radius: 12px;
        border-radius: 12px;
        padding: 14px;
        width: 300px;
        z-index: 1000;
        font-family: sans-serif;
        user-select: none;

        margin:0 auto;
    }
    .CalendarHeader {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align:center;
        font-weight: bold;
        margin-bottom: 8px;
        padding-bottom: 10px;
        border-bottom: 1px solid #aaa9ab;
    }
    .CalendarTitle{
        cursor: pointer;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        width: 100%;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #1a1a1a;
        padding: 0 10px;
    }
    .CalendarNav {
        flex-shrink: 0;
        
        background: #f7f7f7;
        cursor: pointer;
        position: relative;
        width:34px;
        height: 34px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        -moz-border-radius: 10px;
        -khtml-border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
    }
    .CalendarNav:hover{
        background: #f3f3f3;
    }
    .CalendarNav.PrevMonth::before , .CalendarNav.NextMonth::before {
        content:"";
        display:block;
        position: relative;
        top:0;left:0;
    }
    .PrevMonth::before,.NextMonth::before,html[dir="rtl"] .NextMonth::before {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        border: 3px solid #939393;
        border-width: 0 0 2px 2px;
        margin: 0 0 0 3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -khtml-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .NextMonth::before,html[dir="rtl"] .PrevMonth::before {
        border-width: 2px 2px 0 0;
        margin: 0 3px 0 0;
    }
    .CalendarGrid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
        text-align: center;
    }
    .CalendarDay {
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align:center;
        -moz-border-radius: 6px;
        -khtml-border-radius: 6px;
        -webkit-border-radius: 6px;
        -o-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        color: #888;        
    }
    .CalendarDay[datalang="AR"] {
        font-weight: bold;
    }
    html[dir="rtl"] .CalendarDay{
        font-size: 14px;
    }
    .CalendarDate {
        cursor: pointer;
        width:32px;height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        font-weight: 500;
        color: #1c1c1c;
        -moz-border-radius: 10px;
        -khtml-border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
    }
    html[dir="rtl"] .CalendarDate {
        font-size: 15px;
    }



    .CalendarDate.OtherMonth {
        color:#1c1c1c30;
        /*background:#c5c5c5;*/
    }
    .CalendarDate.Disabled {
        color:#1c1c1c30;
        background-color:#f3f3f3;
        pointer-events: none;
    }
    .CalendarDate.Today {
        border: 2px solid #6681ee;        
        border-color: #e5e5e5;
        color: #6681ee;
        color: var(--PrimaryBGColor);
        font-weight: 600;
        
    }
    .CalendarDate.Today.Selected{
        border-color: #465fc2 !important;
        background-color:#6681ee;

        border-color: var(--PrimaryBGColor) !important;
        background-color: var(--PrimaryBGColor);;
    }
    .CalendarDate.Selected,.CalendarDate.Selected:hover {
        background: #6681ee !important;
        background-color:var(--PrimaryBGColor) !important;
        color: white;
        color: var(--PrimaryTextColor);
    }
    .CalendarDate.Range {
        background: #cce5ff;
        background:#e8ecfa;
        background: var(--PrimaryBGColorOpac30);
    }
    .CalendarDate:hover {
        background: #dbe1f9;
        background: var(--PrimaryBGColorOpac30);

        color: #1c1c1c;
    }
    .CalendarDate.Today:hover{
        border-color: #dbe1f9;
        border-color: var(--PrimaryBGColorOpac30);
    }
    .CalendarFooter {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 10px;
    }
    .CalendarFooter button {
        background: #6681ee;
        background:var(--PrimaryBGColor);
        color: white;
        font-size: 14px;
        padding: 8px 24px;
        border: none;
        -moz-border-radius: 6px;
        -khtml-border-radius: 6px;
        -webkit-border-radius: 6px;
        -o-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px;
        cursor: pointer;
    }
    .YearSelector {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-top: 10px;
        max-height: 200px;
        overflow-y: auto;
    }
    .YearSelector div {
        display:flex;
        justify-content: center;
        align-items: center;
        padding: 6px;
        font-size:15px;
        -moz-border-radius: 6px;
        -khtml-border-radius: 6px;
        -webkit-border-radius: 6px;
        -o-border-radius: 6px;
        -ms-border-radius: 6px;
        border-radius: 6px;
        background: #f5f5f5;
        text-align: center;
        cursor: pointer;
    }
    .YearSelector div:hover {
        background: #6681ee;
        background-color:var(--PrimaryBGColor);
        color: white;
    }
    .YearSelector div.CurrentYear{
        border:3px solid #6681ee;
        border-color: var(--PrimaryBGColor);
    }

/******************* Calendar Date Picker End *******************************/






/******************* Toggle Button Start *******************************/
.ToggleSwitch .ToggleInput {
  position: absolute;
  display: none;
}
.ToggleSwitch {
  display: inline-block;
  width: 50px !important;
  height: 26px;
  position: relative;
  cursor: pointer;
  flex-shrink:0;
}
.ToggleSlider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #434257;
    -moz-border-radius: 15px;
    -khtml-border-radius: 15px;
    -webkit-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}
.ToggleSlider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 2px;
    top: 2px;
    background-color: #e8e9ed;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

.ToggleSlider .icon {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 12px;
    height: 12px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
}

.ToggleSlider .icon::before,
.ToggleSlider .icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: white;
    -moz-border-radius: 1px;
    -khtml-border-radius: 1px;
    -webkit-border-radius: 1px;
    -o-border-radius: 1px;
    -ms-border-radius: 1px;
    border-radius: 1px;
    top: 5px;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ToggleSlider .icon::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ToggleSlider .icon::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.ToggleInput:checked + .ToggleSlider {
  background-color: #55a146;
}

.ToggleInput:checked + .ToggleSlider::before {
    -webkit-transform: translateX(24px);
    -moz-transform: translateX(24px);
    -o-transform: translateX(24px);
    -khtml-transform: translateX(24px);
    transform: translateX(24px);
}

.ToggleInput:checked + .ToggleSlider .icon {
  left: 8px;
  right: auto;
}

.ToggleInput:checked + .ToggleSlider .icon::before {
    width: 6px;
    top: 6px;
    left: 1px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ToggleInput:checked + .ToggleSlider .icon::after {
    width: 10px;
    top: 5px;
    left: 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -khtml-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/******************* Toggle Button End *******************************/











































































/******************* Custom Select Start *******************************/
.BrandSelect{
    display: none !important;
}
.DropdownWrapper {
    position: relative;
    display: inline-block;
    display: block;
    width: 300px;
    width: 100%;
}


.DropdownWrapper[data-seltype="profile"]{
    display: flex;
    flex-direction: column-reverse;
    align-items:flex-start;
    justify-content:flex-start;
}
.DropdownWrapper[data-seltype="profile"] .DropdownMenuCont{
    width:100%;
}



.DropdownButton {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #DFE4EA;
    background: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #637381;
    
    
    font-size: 12px;
    font-weight:500;
    /*color: var(--GreyColor);
    border: 1px solid var(--GreyColor);*/
  
  
  

    -khtml-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    
    
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    
}
html[dir="rtl"] .DropdownButton{
    padding: 12px 15px 12px 40px;
}


.Rounded .DropdownButton{
    -khtml-border-radius: 150px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    border-radius: 150px;
}

.DropdownButton.HasValue{
    color:black;
}


.DropdownButton::after{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 17px;
    width: 5px;
    height: 5px;
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: #DFE4EA /*#637381*/;
    transform: rotate(-45deg);
}

html[dir="rtl"] .DropdownButton::after{
    right: unset;
    left: 20px;
}


.DropdownMenu {
    position: fixed;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0px 24px -15px rgba(0, 0, 0, 0.62);
    z-index: 998;
    
    
    -khtml-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow:hidden;
    overflow-y:auto;
    
    
    
    
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    
    
    
    
    
}
.DropdownMenuInnerCont{
    width: 100%;
    height: 100%;
    overflow:hidden;
    overflow-y:auto;
    position:relative;
    z-index: 999;
    padding:4px;
}


.DropdownMenu.DropdownAbove {
    bottom: 45px;
    top:unset;
}



.DropdownMenu .CloseBGLayer,.DropdownMenuCont .CloseBGLayer{
    position: fixed;
    top: 0;
    left:0;
    height: 100%;
    width: 100%;
    background-color: #00000008;
    cursor: pointer;
}










.DropdownMenuItem {
    width:100%;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap:10px;
    position: relative;
    z-index: 2;
    background-color:white;
    
    
    color:black;
    font-size: 14px;
    -khtml-border-radius: 9px 9px 0 0;
    -webkit-border-radius: 9px 9px 0 0;
    -moz-border-radius: 9px 9px 0 0;
    border-radius: 9px 9px 0 0;
    
    

}


.DropdownMenuItem+.DropdownMenuItem{
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.DropdownMenuItem:last-child{
    -khtml-border-radius: 0 0 9px 9px;
    -webkit-border-radius: 0 0 9px 9px;
    -moz-border-radius: 0 0 9px 9px;
    border-radius: 0 0 9px 9px;
}



.DropdownMenuItem:hover {
    background-color: #f5f5f5;
    /*background-color:var(--PrimaryHover);*/
}


.DropdownMenuItem>img.TextIcon{
    width:38px;
    height:38px;
    -khtml-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    pointer-events: none;
    object-fit:cover;
    
}

.DropdownMenuItem>div{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    text-align:left;
    width:100%;
    
}
.DropdownWrapper[data-seltype="profile"] .DropdownMenuItem>div{
    width:calc(100% - 40px);
}


.DropdownWrapper:not([data-seltype]) .DropdownMenuItem>div{
    min-height: 28px;
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}





html[dir="rtl"] .DropdownMenuItem>div{
    text-align:right;
}


.DropdownMenuItem>span{
    padding:4px 0;
    text-align:left;
    display:block;
}

html[dir="rtl"] .DropdownMenuItem>span{
    text-align:right;
}

.HideSearch .DropdownMenuSearchInput,.HideSearch .DropdownMenusearchInputClear{
    display: none;
}

.DropdownMenuSearchInput {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 3;
    margin-bottom:5px;
    -khtml-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
}

.DropdownMenusearchInputClear {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 42px;
    height: 42px;
    z-index: 4;
    cursor:pointer;
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=23)";
    filter: alpha(opacity=23);
    -moz-opacity: 0.23;
    -khtml-opacity: 0.23;
    opacity: 0.23;
}
html[dir="rtl"] .DropdownMenusearchInputClear {
    left: 5px;
    right: unset;
}


.DropdownMenusearchInputClear::before,.DropdownMenusearchInputClear::after{
    content:'';
    display: inline-block;
    position: absolute;
    top:0;left:0;
    top:calc(50% - 5px);left:calc(50% - 1px);
    width:1.5px;height:10px;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-color:black;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.DropdownMenusearchInputClear::after{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.DropdownMenusearchInputClear:hover{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.50;
    -khtml-opacity: 0.50;
    opacity: 0.50;
}


.DropdownMenuEmpty{
    position: relative;
    z-index: 3;
    background-color:white;
    color: var(--GreyColor);
    margin: 0;
    padding: 15px 10px !important;
    font-size:14px;
    font-weight:500;
    pointer-events:none;
    text-align: center;

    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}
.DropdownMenuEmpty img{
    width: 90px;
    height:90px;
    margin:auto;
    display: block;
    object-fit: contain;
    -o-object-fit: contain;
}
.DropdownMenuHighlight {
    color: #007bff;
    font-weight: bold;
}

.CollectedCont {    
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.CollectedItem {
    color:white;
    color:var(--PrimaryTextColor);
    padding: 3px 8px;
    /*border: 1px solid #ededed;
    text-decoration: underline;
    border: 0;*/
    
    background: #f7f7f7;
    background: #125cbf;
    background: var(--PrimaryBGColor);
    
    -khtml-border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    
    margin-top: 10px;
}



.CollectedItem .RemoveIcon {
    cursor: pointer;
    position: relative;
    width: 12px;
    height: 12px;
    text-decoration: none;
    /*background-image: url(../img/Icons/Close_round.svg);
    background-position: center;
    background-size: contain;*/
    flex-shrink: 0;
}

.CollectedItem .RemoveIcon::before,.CollectedItem .RemoveIcon::after{
    content:'';
    display: inline-block;
    position: absolute;
    top:0;left:0;
    top:calc(50% - 5px);left:calc(50% - 1px);
    width:1.5px;height:10px;
    -khtml-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-color:black;
    background-color:white;
    background-color:var(--PrimaryTextColor);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.CollectedItem .RemoveIcon::after{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.CollectedItem .RemoveIcon:hover::before,.CollectedItem .RemoveIcon:hover::after{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.70;
    -khtml-opacity: 0.70;
    opacity: 0.70;
}









/* Specific styles for seltype */
.DropdownWrapper .Flag {
    margin-right: 0px;
    width: 20px;
    height: 15px;
}

.DropdownWrapper .ProfileImage {
    /*margin-right: 10px;*/
    pointer-events: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}


.DropdownWrapper .UserId {
    font-size: 12px;
    color: #5e5e5e;
    width:100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}








/******************* Custom Select End *******************************/











































/******************* Target File Upload *******************************/
.UploadContainer {
    margin: 10px 0 10px;
    border: 2px dashed #dbdbdb;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
    position: relative;
    width: 100%;
    max-width: 350px;
    min-height: 200px;

    display: flex;
    flex-direction: column;
}
.UploadContainer .UploadInstructionsIcon{
    margin-top:auto;
    pointer-events: none;
}
.UploadContainer .UploadInstructionsIcon svg{
    width:40px;
    height:40px;
    margin-bottom: 10px;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=7)";
    filter: alpha(opacity=7);
    -moz-opacity: 0.07;
    -khtml-opacity: 0.07;
    opacity: 0.07;    

}
.UploadContainer:hover {
    border-color: #8c8c8c;
    background-color: #f9f9f9;
}
.UploadContainer.DragOver {
    border-color: #4CAF50;
    background-color: #e8f5e9;
}
.UploadInstructions {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}
.UploadInstructions span{
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: #6a6a6a;
}
.UploadPreview {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    margin-bottom: auto;
}

.UploadPreview img {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 10px;
}

.UploadPreview span {
    font-size: 13px;
    margin-top: 8px;
    color: #444;
    word-break: break-all;
}
/******************* Target File Upload *******************************/
















/******************* Circle Progress Start *******************************/
.CircleProgress {
    width: 136px;
    height: 136px;
    position: relative;
    margin: 20px;
}

.CircleProgress svg {
    width:100%;
    height: 100%;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.CircleProgress circle {
    fill: none;
    stroke-linecap: round;
}

.CircleProgress .background {
    stroke: #f3f3f3;
    stroke-width: 10;
}

.CircleProgress .progress {
    stroke: #125cbf;
    stroke: var(--PrimaryBGColor);
    stroke-width: 10;
    transition: stroke-dashoffset 0.5s ease;
}

.CircleProgress .text {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.CircleProgress .percentage {
    font-size: 22px;
    line-height: 20px;
    font-weight: 700;
    color: #333;
}

.CircleProgress .completed {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
/******************* Circle Progress End *******************************/









/******************* Linear Progress End *******************************/

        
        .LinearProgress {
            display: flex;
            align-items: center;
            justify-content:space-between;
            gap:10px;
            width: 100%;
            max-width: 400px;
            margin: 10px 0;
            
            
        }        
        .LinearProgressTrack {
            flex-grow: 1;
            height: 20px;
            background-color: #f3f3f3;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }       
        .LinearProgressFill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: var(--LinearProgressWidth, 0%);
            background-color:#125cbf;
            background-color: var(--PrimaryBGColor);
            border-radius: 10px;
            transition: width 0.3s ease;
        }
        html[dir="rtl"] .LinearProgressFill {
            left: unset;
            right: 0;
        }
        
        .LinearProgressText {
            min-width: 40px;
            display: flex;
            justify-content: flex-end;
            font-weight: 700;
            color: #333;
        }
        
        .LinearProgress.WithoutTxt .LinearProgressText{
            display:none;
        }

/******************* Linear Progress End *******************************/















/************************* Draggable Table Start *******************************/
    .TableWrapper {
        width: 100%;
        position: relative;
        margin-top: 20px;
    }
    .TableWrapper.MH70{
        max-height: 70vh;
        max-height: calc(var(--vh, 1vh) * 70);
        /*overflow-x: hidden;
        overflow-y: auto;*/
        overflow: auto;
    }
    .TableContainer {
        width: 100%;
        position: relative;        
        border-radius: 4px;
        cursor: grab;
        overflow: auto;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    .TableContainer::-webkit-scrollbar {
        display: none;
    }
    .TableShadow {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 30px;
        pointer-events: none;
        z-index: 1;
        transition: opacity 0.2s ease;
    }
    .TableShadow.Left, html[dir="rtl"] .TableShadow.Right{
        position: absolute;
        left: 0;
        right: unset;
        background: linear-gradient(to right, rgba(0,0,0,0.08), transparent);
        opacity: 0;
    }
    .TableShadow.Right, html[dir="rtl"] .TableShadow.Left{
        position: absolute;
        left: unset;
        right: 0;
        background: linear-gradient(to left, rgba(0,0,0,0.08), transparent);
        opacity: 0;
    }
    .TableContainer.Grabbing {
        cursor: grabbing;
    }
    .DraggableTable {
        display: table;
        min-width: 100%;
        transform: translateX(0px);
        will-change: transform;
        user-select: none;
        border-collapse: collapse;

        white-space: nowrap;

        background-color:#ffffff;
        -moz-border-radius: 10px;
        -khtml-border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
    }
    .DraggableTable th,
    .DraggableTable td {
        padding: 12px 16px;
        border: 1px solid #f3f3f3;
        white-space: nowrap;
        text-align: left;
    }
    html[dir="rtl"] .DraggableTable th,html[dir="rtl"] .DraggableTable td {
        text-align: right;
    }
    .DraggableTable th {
        background: #fff;
        position: sticky;
        top: 0;
        border-bottom: 2px solid #7e7e7e;
        color:#5d5d5d;
        font-weight:500;
        font-size: 15px;
    }
    .DraggableTable td {
        color: #00060c;
        background-color: #f5f5f5;
        background-color: var(--PrimaryBGColorOpac10);
        font-size: 15px;
        font-weight:400;
    }
    .DraggableTable tr:nth-child(even) td{
        background-color: #ffffff;
        
    }
    .DraggableTable thead th:first-child {
        border-color: transparent #f3f3f3 #7e7e7e transparent ;
        border-radius: 10px 0 0 0;
        overflow:hidden;
    }
    .DraggableTable thead th:last-child {
        border-color: transparent transparent #7e7e7e #f3f3f3;
        border-radius: 0 10px 0 0;
        overflow:hidden;
    }




/************************* Draggable Table End *******************************/








/************************* Custom Context menu Start *******************************/
    .ContextMenu{
        position: absolute;
        z-index:999;
    }
    .ContextMenuCont{
        position:relative;
        padding:8px 0;
        -khtml-border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
        background: white;
        border: 1px solid #ccc;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        list-style: none;
        width: 150px;
        z-index: 1003;
    }
    .ContextMenu .CloseBGLayer {
        position:fixed;
        z-index:1000;
        background-color:#00000020;
    }
    .ContextMenu .ContextItem {
        text-decoration: none;
        position:relative;
        z-index:1001;
        font-size: 13px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap:8px;
        width: 100%;
        cursor: pointer;
        align-items: center;
        margin-bottom: 2px;
        padding: 10px;
        
    }
    html[dir="rtl"] .ContextMenu .ContextItem{
        font-weight: 500;
    }
    .ContextMenu .ContextItem .SVGOrigIcon{
        stroke: #202020;
    }
    .ContextMenu .ContextItem:hover {
        background-color: #125cbf20;
        background-color: var(--PrimaryBGColorOpac20);
        background-color: #f6f6f6;
    }
    .ContextIcon{
        width:20px;height:20px;
        object-fit:contain;
    }



    .ContextMenu .CloseBGLayer {
        position: fixed;
        z-index: 1000;
        background-color: #00000020;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        cursor: pointer;

    }
    .ShowContextMenu {
        position:relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        cursor:pointer;

    }
    .ShowContextMenu svg,.ShowContextMenu img{
        width: 100%;
        height: 100%;
        padding: 7px;
        object-fit: contain;
        -webkit-object-fit: contain;
        -moz-object-fit: contain;
        -o-object-fit: contain;
        -ms-object-fit: contain;
    }


    
    







    .ShowContextMenu:hover>.DotsMenuIcon{
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
        filter: alpha(opacity=80);
        -moz-opacity: 0.8;
        -khtml-opacity: 0.8;
        opacity: 0.8;
    }
/*
    .DotsMenuIcon,.DotsMenuIcon::before, .DotsMenuIcon::after {
        width: 5px;
        height: 5px;
        flex-shrink: 0;
        background-color: #181818;
        -moz-border-radius: 50%;
        -khtml-border-radius: 50%;
        -webkit-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        position: relative;
        left:0;
    }
    .DotsMenuIcon::before, .DotsMenuIcon::after {
        content: '';
        position: absolute;
        left: 0;
        top: -7px;
    }
    .DotsMenuIcon::before {
        top: 7px;
    }
*/












    .SVGOrigIcon{
        width:24px;
        height:24px;
        flex-shrink: 0;
        fill:none;
        stroke:black;
        stroke-width:2;
        stroke-linecap:round;
        stroke-linejoin:round;
    }



/************************* Custom Context menu End *******************************/

















































/**************************************************** Navbar Start ****************************************************/





/****************** Navbar Top Nav Language Popup ***********************/
.LangSelector{
    height: 100%;
    display: flex;
    position: relative;
}
.LangMainCont {
  position: absolute;
  top: 0;
  left: 0;
  top:100%;
  width:100%;
  height: unset;
  background-color: transparent;
  overflow: visible;
}
html[dir="rtl"] .LangMainCont {
  right: 0;
  left: unset;
}
.LangBtn {
  height: 46px;
  margin: auto;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  border: none;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 24px 10px 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  
  
  -webkit-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.01);
  -moz-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.01);
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.01);
}
html[dir="rtl"] .LangBtn {
  padding: 10px 10px 10px 24px;
}
.LangBtn img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}
.LangBtn span {
  position: relative;
  font-weight: 500;
  color: #727272;  
}
.LangBtn span::after {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: -16px;
  width: 5px;
  height: 5px;
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: #DFE4EA /*#637381*/;
  transform: rotate(-45deg);
}
html[dir="rtl"] .LangBtn span::after {
  right: unset;
  left: -15px;
}
.LangMenu {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  min-width:110px;
  padding: 0;
  z-index: 1002;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
html[dir="rtl"] .LangMenu {
    left: 0;
    right: unset;
}
@media screen and (max-width: 768px) {
  /*.LangMenu {
    min-width: 100px;
  }*/
}

@media(min-width: 768px) and (max-width: 992px) {
  /*.LangMenu {
    min-width: 110px;
  }*/
}

.LangMenu span {
  padding-top: 2px;
  font-weight: 500;
}
.LangMenu img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
}
.LangMenu a {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.LangMenu a:hover {
  background-color: #f0f0f0;
}







/**************************************************** Navbar End ****************************************************/







































.ShowPass,.HidePass{
  pointer-events: unset !important;
  cursor: pointer;

  width: 42px !important;
  height: 46px !important;
  padding: 11px !important;
  top:2px !important;
  right:2px !important;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)" !important;
  filter: alpha(opacity=60) !important;
  -moz-opacity: 0.6 !important;
  -khtml-opacity: 0.6 !important;
  opacity: 0.6 !important;
}
html[dir="rtl"] .ShowPass,html[dir="rtl"] .HidePass{
    left:2px !important;
    right:unset !important;
}

.ShowPass .ShowIcon,.ShowPass.HidePass .HideIcon{
  display: block !important;
}
.ShowPass .HideIcon,.ShowPass.HidePass .ShowIcon{
  display: none !important;
}

















.EmptyState{
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin:auto;
}
.EmptyStateImage{
  width: 200px;
  height: 200px;
  margin: 20px auto 0;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  -khtml-opacity: 0.65;
  opacity: 0.65;
}
.EmptyStateText{
  font-weight: 400;
  font-size: 15px;
  color: #6c6c6c;
  text-align: center;
  margin: 0 auto auto;
  
}


















































/* Stepper (Multi-Step forms) */
.Stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.Step {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.Step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #efefef;
    z-index: 1;
}

[dir="rtl"] .Step:not(:last-child)::after {
    left: auto;
    right: 50%;
}

.StepNum {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #efefef;
    color: var(--SecondaryBGColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.Step.active .StepNum {
    background: var(--PrimaryBGColor);
    color: var(--PrimaryTextColor);
}

.Step.Completed .StepNum {
    background: var(--SuccessBGColor);
    color: white;
}

.StepTitle {
    font-size: 0.875rem;
    color: var(--SecondaryBGColor);
}

.Step.active .StepTitle {
    color: var(--PrimaryBGColor);
    font-weight: bold;
    text-decoration: none;
}















































































.MobileNCC{
    display: flex;
    gap: 10px;
}
.MobileNCC .InputGroup .DropdownWrapper{
    width: 170px;
}


.MobileNCC .InputGroup .DropdownWrapper .HasValue{
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: start;
}

.MobileNCC .InputGroup:first-child{
    width: auto;
    white-space: nowrap;
}
.MobileNCC .InputGroup .DropdownMenuItem{
    white-space: wrap;
}
.MobileNCC .InputGroup+.InputGroup{
    margin-top: 0;
    width: 100%;
}