﻿

*{ box-sizing:border-box;
   margin:0px;
   padding:0px;
}
body {
    background-color:var(--BodyBackgroundColor);
    color:var(--DefaultTextColor);
}


html {
    font-size: 85%;
    font-family: sans-serif;
}

:root {--Am:#49a87c;
    --PrimaryColor: #09326a;
    --PrimaryColor3: #10284a;
    --BodyBackgroundColor: #eee;
    --PrimaryColor2: #OD6EFD;
    --SuccessColor: #198754;
    --SuccessHoverColor: #164e4b;
    --DangerColor: #DC3545;
    --DangerHoverColor: #eb3f50;
    --WarningColor: #FFC107;
    --WarningColorFade: #ddc57b;
    --WarningColorHover: #FFB007;
    --BasicColor: #fff;
    --BasicColorHover: #eee;
    --BasicColorHover2: #ddd;
    --DefaultTextColor: #404040;
    --DefaultWhiteColor: #ffffff;
    --BlackColor: #000;
    --TeleRed: #c31516;
    --TeleRedFade: #b47071;
    --AttColor: #003d78;
    --AttColorFade: #415e79;
    --AlertInfoColor: #CFF4FC;
    --AlertInfoColor2: #257c8a;
    --AlertDangerColor: #F8D7DA;
    --AlertDangerColor2: #58151C;
    --X-SmallText: 0.5rem;
    --XX-SmallText: 0.3rem;
    --MediumText: 0.9rem;
    --LargeText: 1rem;
    --LargerText: 1.2rem;
    --X-LargeText: 1.5rem;
    --XX-LargeText: 1.8rem;
    --XXX-LargeText: 2.0rem;
}
/*class for master page*/
.TopNavBar{
    width:100%;
    padding:10px;
    display:flex;
    background-color:var(--PrimaryColor);
    color:var(--DefaultWhiteColor);
    align-items:center;
    position:fixed;
    top:0px;
    z-index:98;
}

.TopNavBar > div:nth-child(1){
    cursor:pointer;
    padding:10px;

}

    .TopNavBar > div:nth-child(1):hover {
        color: var(--WarningColor);
    }

.DropdownMenu{
    position:relative;
    cursor:pointer;
}

.DropdownMenu .PhotoWraper {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2)
}
.DropdownMenu .PhotoWraper img {
    width:100%;
    height:100%;
    object-fit:fill;
    border-radius:50%;
}
.DropDownMenuItems {
    padding: 15px;
    background-color: var(--DefaultWhiteColor);
    position: absolute;
    right: 5px;
    color: var(--DefaultTextColor);
    border-radius: 5px;
    width: 190px;
    display: none;
    animation: AnimateDropdown 0.5s ease-out 1;
    transform-origin:top right;
}

.DropdownMenu:hover > .DropDownMenuItems {
    display: block;
    animation: AnimateDropdown 0.3s ease-out 1;
   
}

@keyframes AnimateDropdown{
    0%{opacity:0;transform:scale(0.5);}
    50%{opacity:1;}
    100%{transform:scale(1);}
}

.DropDownMenuItems a{
    text-decoration:none;    
}
.DropDownMenuItems a:hover {
    text-decoration: none;
    color:var(--DefaultWhiteColor);
}

.DropDownMenuItems > div {
    padding: 10px;
}
    .DropDownMenuItems > div:hover:not(.SignOut) {
        padding: 10px;
        background-color: var(--PrimaryColor);
        color: var(--DefaultWhiteColor);
        border-radius: 5px;
    }

.Btn {
    padding: 10px 8px 10px 8px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.Btn-s {
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size:small;
}

.PrimaryColor{
    background-color:var(--PrimaryColor2);
}

.PrimaryColor1 {
    background-color: var(--PrimaryColor);
    color:var(--DefaultWhiteColor);
}

.PrimaryColor1:hover {
    background-color: var(--PrimaryColor3);
    
}

.WarningColor{
    background-color:var(--WarningColor);
}

.WarningColor:hover {
    background-color: var(--WarningColorHover);
}

.SuccessColor{
    background-color:var(--SuccessColor);
    color:var(--DefaultWhiteColor);
}

    .SuccessColor:hover{
        background-color:var(--SuccessHoverColor);
    }

    .BasicColor {
        background-color: var(--BasicColor)
    }

.BasicColor:hover {
    background-color:var(--BasicColorHover);
}

.DangerColor{
    background-color:var(--DangerColor);
    color:var(--DefaultWhiteColor);
}
.DangerColor:hover{
    background-color:var(--DangerHoverColor);
}

.mr-5 {
    margin-right: 5px;
}

.mr-10{
    margin-right:10px;
}
.fg-ColorDager{
    color:var(--DangerColor);
}

.TonavButtons{
    display:flex;
    gap:1.2rem;
    align-items:center;
   justify-content:flex-end;
   width:inherit;
}


.SideBar {
    width: 300px;
    height: 100vh;
    background: white;
    position: fixed;
    z-index: 99;
    top: 0px;
    border-right: solid 1px rgba(255,255,255,0.5);
    box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
    margin-left: 0px;
    transition: margin-left 0.5s ease-out;
}

.SideBar.Closeit {
    width: 300px;
    height: 100vh;
    background: white;
    position: fixed;
    z-index: 99;
    top: 0px;
    border-right: solid 1px rgba(255,255,255,0.5);
    box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
    margin-left:-400px;
    transition:margin-left 0.5s ease;
}

.SidbarTitleWraper{
    width:100%;
    height:150px;
    display:flex;
    justify-content:center;
    align-items:center;
    
    flex-direction:column;
    border-bottom:1px solid rgba(0,0,0,0.2);
}


.ClossSidebarWrapper {
   display:flex;
    padding: 15px;
    justify-content:flex-end;
}

.ClossSidebar {
    cursor: pointer;
    width:20px;
}

.ClossSidebar:hover {
    color:var(--PrimaryColor);
}



.CompanyName {
    font-size: x-large;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: var(--PrimaryColor);
}

.SidebarMenuWrapper{
    padding:15px;
    justify-content:center;
    display:flex;
   /* max-height:500px;
    background-color:antiquewhite;*/
    overflow-y:scroll;
}

.SidebarMenuWrapper ul{
    list-style-type:none;
    width:100%;

}

   

 .SidebarMenuWrapper ul li:hover { 
        background-color:var(--PrimaryColor);
        color:var(--DefaultWhiteColor);
        border-radius:10px;
    }


    .SidebarMenuWrapper ul li:hover a {
        
        color: var(--DefaultWhiteColor);
        text-decoration:none;
    }


 .SidebarMenuWrapper ul li a{
        
        text-decoration:none;
        color:var(--DefaultTextColor);
        width:100%;
        /*background-color:green;*/
        display:block;
        padding:15px;       
    }

.MainBodyContentPlaceholder {
    height:100vh;
 
    margin-left: 300px;
    margin-top:80px;
    transition: margin-left 0.5s ease;
    /*background-color:aquamarine;*/
}

    .MainBodyContentPlaceholder.RemoveMargin {
        height: 100vh;
        margin-left: 0px;
        transition: margin-left 0.5s ease;
    }
/*class for master page ends*/

/*class for maintelcodata list page */
.MainTelcoslistGridWrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-gap: 5rem;
    /*background-color:darkgreen;*/
   /* padding:20px;*/
    
}
.MainTelcoslistGridWrapper > div:hover  {
   /* border:1px solid rgba(0,0,0,0.2);*/
    transform:scale(0.9);
    transition:all 0.5s;
}
.MtnData {
    /* background: linear-gradient(90deg,var(--WarningColor),var(--WarningColor)),url("../images/appphtotos/New-mtn-logo3.jpg");*/
    background: linear-gradient(90deg,#ffcb01,#ffcb01),url("../images/appphtotos/mtnTr.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-blend-mode: soft-light;
    padding: 20px;
    border-radius: 10px;
    font-size: var(--XX-LargeText);
    cursor: pointer;
    color: var(--BlackColor);
    transition: all 0.5s;
    /*ffcb01*/
}

.ATdata {
    /*background: linear-gradient(90deg,#000,#eee),url("../images/appphtotos/AtLogo3.jpg");*/
    background: linear-gradient(180deg,#003d78,#c31516),url("../images/appphtotos/AtlogoTr.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-blend-mode: soft-light;
    padding: 20px;
    border-radius: 10px;
    font-size: var(--XX-LargeText);
    cursor: pointer;
    color: var(--DefaultWhiteColor);
    transition: all 0.5s;
    /*ff000e; 003d78*/
}
.Telecel {
    /*background: linear-gradient(90deg,#000,#eee),url("../images/appphtotos/telecel-logo.jpg");*/
    background: linear-gradient(90deg,#c31516,#c31516),url("../images/appphtotos/Telecellogtr.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-blend-mode: soft-light;
    padding: 20px;
    border-radius: 10px;
    font-size: var(--XX-LargeText);
    cursor: pointer;
    color: var(--DefaultWhiteColor);
    transition: all 0.5s;
    /*c31516*/
}

.HideMe{
    display:none;
}

.MtnDataOrderBackground {
    background-color: #ffcb01;
    border-radius:50px;
    height:10px!important;
    color:black;
}

.AtDataOrderBackground {
    background-color: #003d78;
    border-radius: 50px;
    height: 10px !important;
    color: white;
}

.TelecelDataOrderBackground {
    background-color: #c31516;
    border-radius: 50px;
    height: 10px !important;
    color: white;
}

/*for databundle page*/
.MainContentGridWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    grid-gap: var(--LargerText);
    padding: 20px;
}

.PlanContainer {
    background-color: var(--BodyBackgroundColor);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--BlackColor);
    transition: all 0.5s ease;
    animation: FadeCard 0.5s linear ease 1;
}

    .PlanContainer.MtnColor {
        background-color: var(--WarningColor);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--BlackColor);
        transition: all 0.5s ease;
        animation: FadeCard 0.5s linear ease 1;
    }


    .PlanContainer.TelcelColor {
        background-color: var(--TeleRed);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--DefaultWhiteColor);
        transition: all 0.5s ease;
        animation: FadeCard 0.5s linear ease 1;
    }

    .PlanContainer.ATColor {
        background-color: var(--AttColor);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--DefaultWhiteColor);
        transition: transform 0.5s ease;
    }

  @keyframes FadeCard{
      0%{opacity:0;}
      100%{opacity:1;}
    }

.PlanContainer:hover {
    transform: scale(0.95);
    transition: transform 0.5s ease;
    cursor: pointer;
}

    .PlanPhoto {
        width: 80px;
        height: 50px;
    }
    .PlanPhoto img{
        object-fit:contain;
        width:100%;
        height:100%;
    }

 .PlanName {
    font-size: var(--XX-LargeText);
   font-weight: bolder;
}

.PlanFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top:10px;
}

.PlanPrice{
    font-weight:bold;
    font-size:var(--X-LargeText);
    
}

.PlanButtons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
  gap:4px;
   
}

.DisablePlanButtons {
   
    user-select: none !important;
    color: silver !important;
    cursor: not-allowed !important;
    -webkit-user-select: none;
}


.AddToCartButton {
   
    padding: 5px;
    border-radius: 5px;
    background-color: var(--SuccessColor);
    color: var(--DefaultWhiteColor);
    width:100%;
    
}

.FinishingFooter {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: fixed;
    /* background-color:red;*/
    bottom: 0px;
    overflow: hidden;
    
}
.PayDiv {
    width:60px;
    height:60px;
    text-align:center;
    border-radius: 100%;
    background-color: var(--DefaultWhiteColor);
    padding: 10px;
    cursor:pointer;
    box-shadow:1px 1px 0.8px 2px rgba(128, 128, 128,0.3);
    display:none;
}

.PayDiv.Show {
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--DefaultWhiteColor);
    padding: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 0.8px 2px rgba(128, 128, 128,0.3);
    display: block;
    
   
}
.PayDiv a{
    text-decoration:none;
    color:black;
}

    .PayDiv a:hover {
        text-decoration: none;
        color: black;
    }

    .PayDiv:hover {
        background-color: var(--BasicColorHover2);
    }


    .CartDiv {
        width: 60px;
        height: 60px;
        text-align: center;
        border-radius: 100%;
        background-color: var(--SuccessColor);
        padding: 10px;
        color: white;
        cursor: pointer;
        box-shadow: 1px 1px 0.8px 1px rgba(128, 128, 128,0.3);
        

    }

    .CartDiv:hover{
        background-color:var(--SuccessHoverColor);
    }

        .CartDiv a, .CartDiv a:hover {
            color: white;
            text-decoration: none;
        }

        .CartNoPosition {
            position: absolute;
            top: -10px;        
        }

.CartNoPositionCover{
    cursor:pointer;
}

.PhonModalCover {
    top: 0px;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(128, 128, 128,0.3);
    z-index: 150;
    left: 0px;
    display: none;
    align-items: center;
    justify-content: center;
}


.PhonModalCover.Show {
    top: 0px;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(128, 128, 128,0.3);
    z-index: 150;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.PhonModalBody {
    Max-width: 60%;
    max-height:90%;
    background-color: white;
    border-radius:10px;
    padding:20px;
}
.PhoneModalContent{
    height:150px;
    align-items:center;
    justify-content:center;
}

.PhoneModalTitle {
    height: 50px;
    border-bottom: solid 1px rgba(128, 128, 128,0.3);
}
.PhoneModalFooter {
    border-top: solid 1px rgba(0,0,0,0.2);
    height: 70px;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
}
/*for databundle page*/
.MainCheckoutWrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-auto-rows: auto;
    grid-gap: 5em;
}

.BeneficaryWrapper {
    background-color: var(--DefaultWhiteColor);
    grid-column: 1 / span 3;
    padding: 25px;
    border-radius: 5px;
    place-content: center;
    box-shadow: 1px 0.5px 3px 0.1px rgba(0,0,0,0.4);
}

.MainWalletWrapper {
    background-color: var(--DefaultWhiteColor);
    grid-column: 4 / span 2;
    padding: 25px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    box-shadow: 1px 0.5px 5px 0.1px rgba(0,0,0,0.4);
}
.WalletBalance{
   font-size:var(--XXX-LargeText);
   font-weight:bold;
}
.CurrencySymbol {
    font-size: var(--X-LargeText);
    font-weight: bold;
}

.MainPaymentWrapper {
    background-color: var(--DefaultWhiteColor);
    grid-column: 1 / span 3;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 1px 0.5px 3px 0.1px rgba(0,0,0,0.4);
}
.PaymentWrapperFooter{
    display:flex;
    justify-content:flex-end;
}

.PaymentApiButtonsFlex {
    width:100%;
    display: flex;
    justify-content: space-between; 
}

.PaymentNetworks{
    display:flex;
    justify-content:space-between;

}
    .PaymentNetworks > div{
        width:150px;
        cursor:pointer;
        transition:all 0.5s;

    }

    .PaymentNetworks > div img{
        width: 100%;
        object-fit:contain;
    }


        .PaymentNetworks > div label {
            cursor:pointer;
        }

.Telcocovers input[type="radio"]:checked + div{
    border:solid 2px red;
    transition:all 0.5s;
    box-shadow:1px 1.5px 8px 0.5px;
}

    .Telcocovers input[type="radio"]:checked + div[mytelcel="telecel"] {
        border: solid 2px blue;
        transition: all 0.5s;
        box-shadow: 1px 1.5px 8px 0.5px;
    }



input[type="text"], select, input[type="number"], input[type="date"], input[type="email"], input[type="password"], textarea {
    border: 1px solid rgba(0,0,0,0.2);
    width: 100%;
    padding: 10px;
    font-size: var(--LargeText)
}

 .PasswordCover {
        border: 1px solid rgba(0,0,0,0.2);
  }
.PasswordCover span {
    cursor:pointer;
}

input[type="text"]:not(.Mypass):focus, select:focus, input[type="number"]:focus,
input[type="date"]:focus, input[type="email"]:focus, input[type="password"]:not(.Mypass):focus, textarea:focus {
    outline: none;
    border-color: var(--PrimaryColor);
    box-shadow: 0.5px 0.5px 0.5px var(--PrimaryColor);
}

.Mypass{
    border:none!important;
    outline:none!important;
    width:90%!important;
}

.Mypass:focus {
    border: none !important;
    outline: none !important;
    border-color:none;
}

.addhilight {
    border-color: var(--PrimaryColor);
}

.WalletPayment, .DirectPayment {
    
    border-radius:5px;
}

 .WalletPayment label, .DirectPayment label {
        cursor: pointer;
        padding: 10px;
        background-color: var(--BodyBackgroundColor);
        border: 1px solid rgba(0,0,0,0.2);
        box-shadow: 1px 0.5px 0.2px rgba(0,0,0,0.2);
    }

 .WalletPayment label:hover {  
        background-color: var(--BasicColorHover2);     
 }

.DirectPayment label:hover {
    background-color: var(--BasicColorHover2);
}

.PaymentInfo {
    padding: 20px;
    border: solid 1px var(--AlertInfoColor2);
    background-color: var(--AlertInfoColor);
    border-radius: 5px;
    margin-top: 20px;
    color: var(--AlertInfoColor2)
}

.DangerAlert {
    padding: 15px;
    border: solid 1px var(--AlertDangerColor2);
    background-color: var(--AlertDangerColor);
    border-radius: 5px;
    color: var(--AlertDangerColor2);
    margin-bottom: 20px;
}

.SuccessAlert {
    padding: 15px;
    border: solid 1px var(--AlertInfoColor2);
    background-color: var(--AlertInfoColor);
    border-radius: 5px;
    color: var(--AlertInfoColor2);
    margin-bottom: 20px;
}




.WalletPayment input[type="radio"]:checked ~ label {
    background-color:var(--SuccessColor);
    color:var(--DefaultWhiteColor);
}

.DirectPayment input[type="radio"]:checked ~ label {
    background-color: var(--SuccessColor);
    color: var(--DefaultWhiteColor);
}

.AlertCover{
    height:100vh;
    width:100%;
    background-color:rgba(0,0,0,0.2);
    position:fixed;
    top:0;
    left:0;
    z-index:101;
    display:flex;
    align-items:center;
    justify-content:center;
}
.AlertSuccessBody {
    max-width: 450px;
    background-color: white;
    min-height: 250px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    animation: AnimateAlert 0.15s ease-out 1;
    
}
.AlertIcon{
    width:80px;
    
}

.AlertIcon img{
    width:100%;
    height:100%;
}

.ALerText {
    font-size: var(--X-LargeText);
    text-align: center;
}
.AlertButtons{
    width:100%;
    display:flex;
    justify-content:space-around;
}

.posi-fixed{
    position:fixed;
    bottom:40px;
    left:0px;
}

@keyframes AnimateAlert {
    0%{opacity:0;transform:scale(0.5)}

    50%{opacity:1}

    100%{
        transform:scale(1);
    }
}
/*for checkout page*/
/*for chechout page ends*/

/*for order receipt*/
.MainReceiptWrapper{
    display:flex;
    width:100%;
    height:100vh;
    align-items:center;
    justify-content:center;
    background-color:#eee;
    font-size:small;
    position:fixed;
    top:0;
    left:0;
    z-index:105;
}
.ReciptInner{
    width:350px;
    background-color:var(--DefaultWhiteColor);
    padding:20px;
    display:flex;
    justify-content:center;
    flex-direction:column;

}
.OrderInfoHeader{
    display:flex;
    justify-content:space-between;
}

.InvoceTile{
    text-align:center;
        font-family:Calibri;
}

    .InvoceTile:first-child {
        font-weight:bolder;
        font-size:var(--X-LargeText)
    }
    .InvoceTile:nth-child(2) {
        font-weight: bold;
        font-size: var(--LargeText)
    }

.TableWrapper table{   
    table-layout:auto;
    width:100%;
}
.TableWrapper table tr {
    outline: 1px solid rgba(0,0,0,0.2);  
}
.TableWrapper table td {
    padding: 5px;
    border-right: solid 1px rgba(0,0,0,0.2);
}
    .TableWrapper table th{
        padding:10px;
        text-align:center;
        width:100%;
    }
.backgcolor{
    background-color:white;
    padding:20px;
}

.cartTbrow td:nth-child(){
   width:20px;
    background:green;
}

/*for order reciept ends*/
/*class for ordered transaction starts*/
.ReportDateFlex {
    display: flex;
    align-items:center;
    gap: 2em;
}

.MainContentWrapper {
    padding: 20px;
}
.panel_body {
    width: 100%;
    border: 1px solid rgba(128, 128, 128,0.3);
    min-height: 350px;
}

.panel_head {
    width: 100%;
    min-height: 40px;
    padding: 10px;
    border-bottom: 1px solid rgba(128, 128, 128,0.3);
    background-color: ghostwhite;
}
.pannel_Title {
    font-size: var(--MediumText);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:wrap;
}

.panel_content {
    width: 100%;
    padding: 10px 20px 10px 20px;
    background-color: white;
    min-height: 350px;
}

.SearchBox {
    display: flex;
}


/*for gridview*/
.actiondropmenu {
    display: block;
    cursor: pointer;
    text-align: center;
    align-items: center;
    background-color: var(--PrimaryColor);
    color: white;
    padding: 10px;
}

.actions_droplist {
    width: 200px;
    border: 1px solid rgba(128, 128, 128,0.3);
    box-shadow: 1px 1px 25px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: 30px;
    border-radius: 10px;
    display: none;
    z-index: 2;
    background-color:var(--DefaultWhiteColor);
    text-align:center;
}


.actiondropmenu:hover .actions_droplist {
    width: 200px;
    border: 1px solid rgba(128, 128, 128,0.3);
    box-shadow: 1px 1px 25px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: 30px;
    border-radius: 10px;
    display: block;
    z-index: 2;
}

.actions_droplist.active {
    width: 200px;
    border: 1px solid rgba(128, 128, 128,0.3);
    box-shadow: 1px 1px 25px 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: 50px;
    border-radius: 10px;
    display: block;
    z-index: 2;
}

.actions_droplist > div {
   /* padding: 10px;*/
    border-bottom: 1px solid rgba(128, 128, 128,0.3);
}

    .actions_droplist > div:hover {
        background-color: var(--PrimaryColor);
        color: white;
    }

    .actions_droplist > div:hover .link_btn {
       
        color: white;
    }


.link_btn {
    position:relative;
    text-decoration: none;
    color: var(--DefaultTextColor);
    width: inherit;
    height:inherit;  
    display:flex;
    padding:15px;
    text-align:center!important;
}

.Mviewlink_btn {
   
    text-decoration: none;
    color: white;
    width: inherit;
    height: inherit;
    padding: 10px;
    font-size:smaller;
    font-family:"Calibri";
}

    

.link_btn_display {
    display: none;
}

.ActionMenuText {
    font-weight: normal;
    font-family: 'Tahoma', Segoe UI, Geneva, Verdana, sans-serif;
}

.ActionMenuTextCover {
    width: 100%;
    height: 100%;
}

/*for grid view ends*/

.MainMobileViewWrapper {
    display: grid;
    background-color: var(--DefaultWhiteColor);
    grid-template-columns: repeat(auto-fit, minmax(50px,1fr));
    grid-gap: 2em;
    padding: 20px;
    border-radius: 10px;
    font-size: small;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
}

.MviewGrid {
    display: none;
}

.PcViewGrid{
    display:block;
}


.PendingStatus {
    cursor: pointer;
    padding: 5px;
    height: 5px !important;
    background-color: goldenrod;
    color: white;
    border-radius: 360px;
}

.PaymentConfirmed {
    cursor: pointer;
    padding: 5px;
    height: 5px !important;
    background-color: darkgreen;
    color: white;
    border-radius: 360px;
}

.CompletedStatus {
    background-color: #0366D6;
    color: white;
    cursor: pointer;
    padding: 5px;
    height: 5px !important;
    border-radius: 360px;
}

.ProcesingStatus {
    cursor: pointer;
    padding: 5px;
    height: 5px !important;
    background-color:mediumpurple;
    color: white;
    border-radius: 360px;
    margin-top: 10px;
}

.CanceledStatus {
    cursor: pointer;
    padding: 5px;
    height: 5px !important;
    background-color: var(--AlertDangerColor);
    color: var(--AlertDangerColor2);
    border-radius: 360px;
    margin-top: 10px;
}



.PaymentReveresed {
    cursor: pointer;
    padding: 10px;
    height: 5px !important;
    background-color: var(--AlertDangerColor);
    color: var(--AlertDangerColor2);
    border-radius: 360px;
}
/*class for mdal starts*/
.MyModalCover {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    /*animation: FadeMyModalBackdrop 0.5s ease-in-out 1 alternate;*/
}



.MyCustomModalBody{
    min-width:650px;
    min-height:350px;
    background-color:white;
    border-radius:10px;
}
.MycustomModaHeader{
    border-bottom:solid 1px rgba(0,0,0,0.2);
    height:70px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}

.MyCustomModalContent{
    min-height:200px;
    overflow-y:auto;
    padding:20px;

}
.MyCustomModalFooter {
    border-top: solid 1px rgba(0,0,0,0.2);
    height: 70px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding:20px;
}

.close_btn {   
    right: 0px;
    padding: 5px;
    cursor: pointer;
    z-index: 6;
}
    .close_btn a{
        text-decoration:none;
        color:var(--DefaultTextColor);
    }

    .close_btn a:hover {
        color: #9b2a2a;
    }

.close_btninfo {
    cursor: pointer;
    
    padding: 5px;
    right:0px;    
}
.bringforward {
    z-index: 6;
}

    .close_btninfo a{
        color: var(--DefaultTextColor);
    }
        .close_btninfo a:hover {
            color: orangered;
            
        }

    .close_btninfo:hover {
        color: orangered;
    }

    @keyframes FadeMyModalBackdrop {
        0% {
        opacity: 0;
    }

    50% {
        opacity: 1
    }
}
/*class for modalends*/
/*clas for ordered transcations ends*/

/*class for wallet page starts*/
.WalletMainContentWrapper {
    display: flex;
   /* padding: 20px;*/
    gap: 2em;
    flex-direction: row;
    flex-wrap: wrap;
}
.WalletBalanceWrapper {
    background-color: var(--DefaultWhiteColor);  
    padding: 25px;
    border-radius: 5px;  
    flex:0.4;
    max-height:350px

}
.WalletInnerWrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap:wrap;
    text-align:center;
    
    
}

.CartInnerWrapper {
    display: flex;
    justify-content:space-between;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.WalletHistoryGridsWrapper {
    flex: 1;
    background-color: white;
    padding: 20px;
    
}

.WalletHistoryHeader{
    display:flex;
    justify-content:space-between
}

.WalletText{
    font-size:var(--XXX-LargeText);
    font-weight:bold;
}
.WalletText2 {
    font-size: var(--XX-LargeText);
}
.LoadWalletButton{
    margin-top:100px;
    bottom:0px;
    width:100%;

}

.DepositReciptInner {
    
}

.DepositReciptWrapper {
    background-color: white;
    padding: 20px;
}

.DepositReciptDetailTop{
    display:flex;
    gap:2em;
    justify-content:space-between;

}

.DepositReciptGg {
    height: 100vh;
    width: 100%;
    background-color: #eee; /*rgba(0,0,0,0.2);*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*class for wallet page ends*/
/*class for grid pagination starts*/
.gridview-numeric-pager a {
    background-color: var(--BasicColor);
    padding: 10px;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
    color: var(--PrimaryColor2);
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: small;
    min-width: 30px;
    text-align: center;
}

    /* Style the selected page item differently */
    .gridview-numeric-pager a:hover {
        background-color:var(--BasicColorHover); /* Adjust color as needed #337ab7*/
        color: black; /* Adjust color as needed */
        text-decoration:none;
    }

    /* Style the currently selected page number */
    .gridview-numeric-pager a:visited {
        background-color: #007bff;
        color: red;
    }

.gridview-numeric-pager input {
    min-width: 35px;
    min-height: 35px;
    padding: 5px;
    background-color: #eee;
    object-fit: cover;
}
.SetPagestyle {
    line-height: 5px !important;
    height: 5px !important;
    padding: 0px !important;
    margin: 0px !important;
    border: 1px solid rgba(128, 128, 128,0.3);
    /*class for grid pagination ends*/
}

.CustomGridButtons{
    padding:5px;
}

.MytopNav{
    width:100%;
   /* padding:30px;*/
    background-color:white;
    display:flex;
    position:fixed;
    top:0px;
    justify-content:center;
}
.MybottomNav {
    width: 100%;
    padding:20px;
    background-color: #eee;
   display: flex;
    position: fixed;
    bottom: 0px;
    justify-content:space-between;
}

.MainGettingStartedWrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,#1f3543,#9ccf46)
}
.SessionendWrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    text-align:center;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,#1f3543,#9ccf46)
}

.SessionendInner h4{
    font-size:xx-large;
}


@keyframes Showsignup {
    0% {opacity:0; }

    50%{opacity:1;}
}
.MainLoginWrapper {
    width: 400px;
    background-color: white;
    padding: 20px;
    min-height: 420px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 1px 0.5px 0.5px rgba(0,0,0,0.2);
   /* animation: Showsignup 0.5s linear 1;*/
}

.AddAnimationFade {
    animation: Showsignup 0.5s linear 1
}



.LoginInner {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    min-height: 420px;
    width: 100%;
    position: relative;
    /*background-color:red;*/
}

    .LoginInner input{
        padding:15px;
    }
    .LoginInner div {
        width: 100%;
    }
.Fullwidth{
    width:100%;
}
.LoginFooter {
    display: flex;
    align-items:center;
    justify-content:space-between;   
    padding: 10px;
    width:100%;
    text-align:center;
    border-top:groove;
    flex-wrap:wrap;
}
.Complogo{
    width:80px;
    height:80px;
}

.Complogo img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.Logodiv{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    padding:25px;
}


/*styeles for dashboard*/
/*class for admin dashboard*/
.MainDashBoardyPageWrapper{
    padding:20px;
}

.MainDashBoardWrapper {
    
    display: grid;
    grid-gap: 3em;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

.dashelement {
    min-height: 150px;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor:pointer;
}



.DashTextDetail {
    display: flex;
    align-items: flex-end;
    justify-content: right;
    width: 100%;
    color: white;
}

.DachLogoColor {
    color: rgba(225, 225, 225,0.6)
}

.dashcolor1 {
    background-color: var(--PrimaryColor);
}

.dashcolor2 {
    background-color: var(--AlertInfoColor2) /*#2196F3*/;
}

.dashcolor3 {
    background-color: var(--DangerHoverColor) /*#009688;*/
}

.dashcolor4 {
    background-color: #b95dc1 /*#d5a8f3*/ /*#E91E63*/;
}

.dashcolorinner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.dashtext {
    text-align: right;
}

.DashTextFigure {
    font-size: x-large;
    font-weight: bold;
    color: white;
}

.DashTextDiscription {
    font-size: large;
    color: #d0cbcb;
    font-weight: bold;
}

.TaskBox {
    background-color: white;
    min-height: 500px;
    border: 1px solid rgba(128, 128, 128,0.3);
    border-radius: 10px;
    overflow-y: hidden;
}

.TaskBoxHead {
    padding: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: x-large;
    color: white;
    display: flex;
    align-items: center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.TaskBoxHeadItem1{
    flex:1;
}


.TaskBoxBody {
    padding: 10px;
    overflow-y: auto;
    height: 500px;
    position: relative;
}

.ProgressBg {
    height: 100vh;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(128, 128, 128,0.2);
  /* background-color: rgba(255, 0, 0,0.5);*/
    position: fixed;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
}
.ProgressBg div {
    color:var(--PrimaryColor);
}
.LoadWritings {
    background-color:rgba(255,255,255,0.8);
    padding:5px;
    border-radius:10px;
}

.FooterTotalSalesCalculator{
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:larger;
}
.MainPageTitle{
    font-size:large;
    padding:10px;
    border-bottom:1px solid rgba(128, 128, 128,0.3);
    cursor:pointer;
}

.CompanyLogo{
    width:100px;
    height:100px;
}
.CompanyLogo img{
    width:100%;
    height:100%;
    object-fit:contain;
}
/*styels for dashboard ends*/

/*class for profile*/
.ProfilePanel{
   /* background-color:var(--DefaultWhiteColor);*/
    min-height:300px;
    border:solid, 1px rgba(128, 128, 128,0.3);
    padding:20px;
}

.ProfileInner{
    display:flex;
    justify-content:space-between;
    gap:3em;    
}
.ProfileDetail {
    display: flex;
    gap: 5em;
    flex-wrap: wrap;
    flex: 0.4;
    padding:10px;
    border: 1px solid rgba(128, 128, 128,0.3);
}

.ProfileVerifyDetails {
    width:100%;
    flex:0.6;
    padding:20px;
    border:1px solid rgba(128, 128, 128,0.3);
}

.ProfileVerifyDetails input{
    width: 100%;

}

.ProfilePicWrapper {
    width: 150px;
    height: 150px;
    border: 1px solid rgba(128, 128, 128,0.3);
}
    .ProfilePicWrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
.ProfileInfoLabelInfos{
    flex:1;
   
}

/*class for profile ends*/

/*announcment*/
.AnnouncementWrapper{
    width:95%;
    display:flex;
    align-items:center;
    height:100%;  
    overflow-x:hidden;
    
}

.AnnouncementInner {
    flex: 1;
    padding: 5px;
    min-width: 100%;
    animation: AnimateAnnouncement 30s infinite ease-in;
}

.Horncover{
    background-color:#eee;
    /*height:100%;*/
    padding:15px;
    z-index:1;
   
}

.AnnouncInner {
    display: flex;
    justify-content: space-between;
    gap: 3em;
}

.AnnouncInner div{
    width:100%;
}

/*announcement*/
@keyframes AnimateAnnouncement {
    0%{transform:translate(110%, 0px); }

    100% {transform: translate(-100%, 0px);}
}

/*main anouncemet */
.MainAnnouncementWraper {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
    z-index: 150;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: FadeMyModalBackdrop 0.5s ease-in-out 1 alternate;
}
.MainAnnouncemntInner{
    max-width:40%;
    max-height:95%;
    background-color:white;
    padding:20px;
   
}
.MainAnnounceTitleWrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align:center;
    border-bottom:solid 1px rgba(128, 128, 128,0.3);
}
.MainAnnounceTitleWrapper > div:nth-child(1){
    font-size:x-large
}
.MainAnnouncementBody {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); 
    overflow-y: auto;
    max-height: 95%;
}

.MainAnnouncePhoto {
    border-right:1px solid rgba(128, 128, 128,0.3);
}

.MainAnnouncePhoto img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.MainAnnouncmentText{
    font-size:large;
    padding:20px;
}
@font-face {
    font-family: "18";
    src: url('/css/18.TTF') format('truetype');
    font-weight: normal; /* Can be set to bold or other weights */
    font-style: normal; /* Can be set to italic or other styles */
}

.Mysecuritypin {
    display:flex;
    align-items:center;
    gap:2em;
}
.PinLabel{
    font-size:x-large;
    font-family:"18";
    color:red;
}
/*main anouncemet ends*/

.DeliveryStatusDiv{
    display:flex;
    align-items:center;
    gap:1em;
}
.MainAcrionsMenusDiv {
    display: flex;
    align-items: center;
    gap: 2em;
}

/*class for fees and announcment page*/

.setpanerlborder{
    border:solid 1px rgba(128, 128, 128,0.3);
    padding:20px;
    background-color:var(--DefaultWhiteColor);
}


.chekcover input[type="checkbox"] {
    display: none;
}

.chekcover {
    width: 40px!important;
    
    background-color: #bbbbbc;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .chekcover::before {
        content: "On";
        width: 20px;
        height: inherit;
        font-size: x-small;
        position: absolute;
        color: rgb(11, 106, 55);
    }

    .chekcover::after {
        content: "Off";
        width: 20px;
        position: absolute;
        font-size: x-small;
        color: red;
        right: 0px;
    }

.toglebylabel {
    width: 20px;
    height: 20px;
    display: block;
    background-color: rgb(247, 243, 243);
    position: relative;
    border-radius: 50%;
    box-shadow: rgba(154, 153, 153, 0.5) 1px 1px 2px 1px;
    top: 0px;
    transition: all 0.3s ease;
    z-index: 2;
}

    .toglebylabel:hover {
        cursor: pointer;
    }

.chekcover input[type="checkbox"]:checked + .toglebylabel {
    transform: translateX(20px);
    transition: all 0.2s ease;
}

.toglebylabel span::before {
    content: "";
    position: absolute;
    display: block;
    margin: -18px;
    width: 56px;
    height: 56px;
    background: rgba(79, 46, 220, 0.5);
    border-radius: 50%;
    transform: scale(0);
    opacity: 1;
    pointer-events: none;
}

.chekcover input[type="checkbox"]:checked + .toglebylabel span::before {
    transform: scale(1);
    opacity: 0;
    transition: all 0.4s ease;
    background-color: #947ada;
}



@keyframes rad {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/*class for fees and announcment page*/
@media screen and (max-width: 1400px) {
    .SideBar {
            width: 300px;
            height: 100vh;
            background: white;
            position: fixed;
            z-index: 99;
            top: 0px;
            border-right: solid 1px rgba(255,255,255,0.5);
            box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
            margin-left: -400px;
            transition: margin-left 0.5s ease-out;
        }

            .SideBar.Closeit {
                width: 300px;
                height: 100vh;
                background: white;
                position: fixed;
                z-index: 99;
                top: 0px;
                border-right: solid 1px rgba(255,255,255,0.5);
                box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
                margin-left: 0px;
                transition: margin-left 0.5s ease;
            }


        .MainBodyContentPlaceholder {
            height: 100vh;
            margin-left: 0px;
            margin-top: 80px;
            transition: margin-left 0.5s ease;
        }

            .MainBodyContentPlaceholder.RemoveMargin {
                height: 100vh;
                margin-left: 0px;
                transition: margin-left 0.5s ease;
            }



        .MainTelcoslistGridWrapper {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 200px;
            grid-gap: 2rem;
            /*padding: 20px;*/
        }
    }

    @media screen and (max-width: 800px) {
        .WalletBalanceWrapper {
            order:1;
        }

        .WalletHistoryGridsWrapper {
            order: 2;
        }


        .Btn {
            padding: 10px 8px 10px 8px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: small;
        }
        .FinishingFooter {
            width: 100%;
            padding: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            position: fixed;
             background-color:transparent;
            bottom: 0px;
            overflow:hidden;
          
            
        }

        .PayDiv {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size:smaller;
            border-radius: 100%;
            background-color: var(--DefaultWhiteColor);
            padding: 10px;
            cursor: pointer;
            box-shadow: 1px 1px 0.8px 2px rgba(128, 128, 128,0.3);
            display:none;

        }

        .PayDiv.Show {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: smaller;
            border-radius: 100%;
            background-color: var(--DefaultWhiteColor);
            padding: 10px;
            cursor: pointer;
            box-shadow: 1px 1px 0.8px 2px rgba(128, 128, 128,0.3);
            display: block;
            
        }


        .CartDiv {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: smaller;
            border-radius: 100%;
            background-color: var(--SuccessColor);
            padding: 10px;
            color: white;
            cursor: pointer;
            box-shadow: 1px 1px 0.8px 1px rgba(128, 128, 128,0.3);
            
           
            
            
        }

            

        .SidebarMenuWrapper {
            padding: 15px;
            justify-content: center;
            display: flex;
            max-height: 500px;
            /* background-color:antiquewhite;*/
            overflow-y: scroll;
        }

        .MainTelcoslistGridWrapper {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-auto-rows: 200px;
            grid-gap: 2rem;
            /*padding: 20px;*/
        }

        .MainCheckoutWrapper {
            width: 95%;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-auto-rows: auto;
            grid-gap: 2em;
        }

        .BeneficaryWrapper {
            background-color: var(--DefaultWhiteColor);
            grid-column: 1 / span 5;
            padding: 25px;
            border-radius: 5px;
            place-content: center;
        }

        .MainWalletWrapper {
            background-color: var(--DefaultWhiteColor);
            grid-column: 1 / span 5;
            padding: 25px;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
        }

        .WalletBalance {
            font-size: var(--XXX-LargeText);
            font-weight: bold;
        }


        .MainPaymentWrapper {
            background-color: var(--DefaultWhiteColor);
            grid-column: 1 / span 5;
            padding: 25px;
            border-radius: 5px;
        }

        .AlertSuccessBody {
            min-width: 95%;
            background-color: white;
            min-height: 250px;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        /*for mobile grid view starts*/
        .MainMobileViewWrapper {
            display: grid;
            background-color: var(--DefaultWhiteColor);
            grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
            grid-gap: 2em;
            padding: 20px;
            border-radius: 10px;
            font-size: small;
            border: 1px solid rgba(0,0,0,0.2);
            box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
        }

        .M-ViewSection {
        }

        .MviewGrid {
            display: block;
        }

        .PendingStatus {
            cursor: pointer;
            padding: 5px;
            height: 5px !important;
            background-color: goldenrod;
            color: white;
            border-radius: 360px;
            margin-top: 10px;
        }

        .ProcesingStatus {
            cursor: pointer;
            padding: 5px;
            height: 5px !important;
            background-color: mediumpurple;
            color: white;
            border-radius: 360px;
            margin-top: 10px;
        }

        .CanceledStatus {
            cursor: pointer;
            padding: 5px;
            height: 5px !important;
            background-color: var(--AlertDangerColor);
            color: white;
            border-radius: 360px;
            margin-top: 10px;
        }


        .PaymentConfirmed {
            cursor: pointer;
            padding: 5px;
            height: 5px !important;
            background-color: darkgreen;
            color: white;
            border-radius: 360px;
            margin-top: 10px;
        }

        .CompletedStatus {
            background-color: #0366D6;
            color: white;
            cursor: pointer;
            padding: 5px;
            height: 5px !important;
            border-radius: 360px;
            margin-top: 10px;
        }
        /*for mobile grid view ends*/

        .PcViewGrid {
            display: none;
        }

        /*class for modal*/
        .MyCustomModalBody {
            min-width: 98%;
            min-height: 350px;
            background-color: white;
            border-radius: 10px;
        }


        /*class for modal*/

        .pannel_Title .SearchBox {
            width: 100%;
            flex-grow: 1;
            background-color: red;
        }

        .pannel_Title {
            gap: 2em;
        }

        .ReportDateFlex {
            display: flex;
            justify-content: space-between;
            flex-grow: 1;
            flex-wrap:wrap;
            width:100%;
        }

        .ExtendWidth{
            width:100%;
        }

        .MainDashBoardWrapper {
            padding: 0px;
            display: grid;
            grid-gap: 3em;
            grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
        }

        .TaskBoxHead {
            padding: 20px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            font-size: large;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .TaskBoxHeadItem1 {
            flex: 1;
        }

        .TaskBoxHeadItem2 {
            width: 100%;
        }

        .ProfileInner {
            display: flex;
            justify-content: center;
            flex-direction:column;
            gap:3em;
        }

        .ProfileDetail {
            justify-content: center;
            display: flex;
            flex-wrap: wrap;
            flex: 1;
            gap: 3em;
        }

        .ProfileVerifyDetails {
            width: 100%;
            flex: 1;
            padding: 20px;
            border: 1px solid rgba(128, 128, 128,0.3);
        }

            .ProfileVerifyDetails input {
                width: 100%;
            }

        .AnnouncementInner {
            flex: 1;
            padding: 5px;
            flex-wrap:nowrap;
            animation: AnimateAnnouncement 30s infinite ease-in;
           min-width:1000px;
           

        }


        .MainAnnouncemntInner {
            max-width: 95%;
            max-height: 95%;
            background-color: white;
            padding: 20px;
        }

        .MainAnnounceTitleWrapper {
            display: flex;
            justify-content: space-between;
            width: 100%;
            text-align: center;
            border-bottom: solid 1px rgba(128, 128, 128,0.3);
        }

            .MainAnnounceTitleWrapper > div:nth-child(1) {
                font-size: x-large
            }

        .MainAnnouncementBody {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
            overflow-y: auto;
            max-height: 95%;
            
        }

        .MainAnnouncePhoto {
            border-right:none;
        }
            .MybottomNav {
            width: 100%;
            padding: 10px;
            background-color: #eee;
            display: flex;
            position: fixed;
            bottom: 0px;
            align-items:center;
            justify-content: space-between;
            text-align:center;
            font-size:smaller;
        }
        .AnnouncInner {
            display: flex;
           flex-direction:column;
            gap: 3em;
        }

        .FooterTotalSalesCalculator {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: smaller;
            text-align:center;
        }

        .MainAcrionsMenusDiv {
            display: none;
            
        }
    }


    /*class for maintelcodata list */
    @media screen and (max-width: 640px) {
        .SideBar {
            width: 300px;
            height: 100vh;
            background: white;
            position: fixed;
            z-index: 99;
            top: 0px;
            border-right: solid 1px rgba(255,255,255,0.5);
            box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
            margin-left: -400px;
            transition: margin-left 0.5s ease-out;
        }

            .SideBar.Closeit {
                width: 300px;
                height: 100vh;
                background: white;
                position: fixed;
                z-index: 99;
                top: 0px;
                border-right: solid 1px rgba(255,255,255,0.5);
                box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
                margin-left: 0px;
                transition: margin-left 0.5s ease;
            }


        .MainBodyContentPlaceholder {
            height: 100vh;
            margin-left: 0px;
            margin-top: 80px;
            transition: margin-left 0.5s ease;
        }

            .MainBodyContentPlaceholder.RemoveMargin {
                height: 100vh;
                margin-left: 0px;
                transition: margin-left 0.5s ease;
            }

        .MainTelcoslistGridWrapper {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-auto-rows: 200px;
            grid-gap: 2rem;
           /* padding: 20px;*/
        }

        .AlertSuccessBody {
            min-width: 95%;
            background-color: white;
            min-height: 250px;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .MainMobileViewWrapper {
            display: grid;
            background-color: var(--DefaultWhiteColor);
            grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
            grid-gap: 2em;
            padding: 20px;
            border-radius: 10px;
            font-size: small;
            border: 1px solid rgba(0,0,0,0.2);
            box-shadow: 1px 0.5px 5px rgba(0,0,0,0.2);
        }

        .MviewGrid {
            display: block;
        }

        /*class for modal*/
        .MyCustomModalBody {
            min-width: 98%;
            min-height: 350px;
            background-color: white;
            border-radius: 10px;
        }
        /*class for modal*/

        .WalletMainContentWrapper {
            display: flex;
            /*padding: 20px;*/
            gap: 2em;
            flex-direction:column;
            flex-wrap: wrap;
        }

        .WalletText {
            font-size: var(--XX-LargeText);
            font-weight: bold;
        }

        .WalletText2 {
            font-size: var(--X-LargeText);
        }

        .MainLoginWrapper {
            width: 98%;
            background-color: white;
            padding: 20px;
            min-height: 420px;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(0,0,0,0.2);
            box-shadow: 1px 0.5px 0.5px rgba(0,0,0,0.2);
        }

        .ProfileDetail {
            display: flex;
            gap: 5em;
            flex-wrap: wrap;
            flex: 0.4;
            padding: 10px;
            border: 1px solid rgba(128, 128, 128,0.3);
            text-align:center;
        }

        .PaymentNetworks {
            display: flex;
            gap:2em;
        }

        
    }

.dontshow {
    display: none;
}

/*define scrobar width*/
::-webkit-scrollbar {
    width: 8px;
    
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 5px;
    
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--PrimaryColor); /*#b2b0b0;*/
    border-radius: 3px;
    
    cursor:grab;
}
/**/

.mydisbled {
    user-select: none;
    cursor: not-allowed !important;
    -webkit-user-select:none;
    padding:5px;
    border:none;
    border-radius:5px;
    background-color:silver;
}

[MyAttribut="mydisbled"] {
    user-select: none !important;
    color: red !important;
    cursor: not-allowed !important;
    
}

.MtnDataOutofStock {
    background-color: var(--WarningColorFade);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    /* animation: FadeCard 0.5s linear ease 1;*/
    user-select: none !important;
    color: var(--DefaultTextColor) !important;
    cursor: not-allowed !important;
    -webkit-user-select:none;
}

.TelcelColorOutOfStock {
    background-color: var(--TeleRedFade);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--DefaultWhiteColor);
    transition: all 0.5s ease;
    /* animation: FadeCard 0.5s linear ease 1;*/
    user-select: none !important;
    color: silver !important;
    cursor: not-allowed !important;
    -webkit-user-select: none;
}

.ATDataOutofStock {
    background-color: var(--AttColorFade);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 0.9px 2px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--DefaultWhiteColor);
    /* animation: FadeCard 0.5s linear ease 1;*/
    user-select: none !important;
    color: silver !important;
    cursor: not-allowed !important;
    -webkit-user-select: none;
}
.Planfooter{
    display:flex;
    justify-content:space-between;
    width:100%;
    font-size:small;
    align-items:center;
}


.Hideit {
    display: none !important;
}
.Hideit.show {
    display: block !important;
    
}

.no-select {
    user-select: none;
    -moz-user-select: none;
   
    -webkit-user-select: none;
    -ms-user-select: none;
}

.TopupHint{
    background-color:white;
    padding:15px;
    border-radius:5px;
    position:absolute;
    max-width:70%;
    border:solid 1px rgba(0,0,0,0.2);
    bottom:50px;
    display:none;
}
.TopupHintCover:hover > div{
    display:block;
}





