
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
:root{
    --green:#67c762;
    --grey:#707070;
    --white:#FFE3BB;
    --black:#132E35;
    --light-grey:#afb3b7;
    --dark-green:#2d4a53;
    --pure-white:#ffffff;
    --blue:#0058ff;
    --red:#F0142F;
    --red-white:#f55c6f;
    --green-white:#d4efd2;

}
*{
    box-sizing: border-box;
    margin: 0 ;
    padding: 0 ;
    font-family:  'Quicksand', sans-serif;
    /* color: var(--black) ; */
}
.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
a{
    text-decoration: none;
    color:black;

}
.usage_text{
    color: var(--black) !important;
}
.token-control{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.head-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.tickets-overview{
    width: 100%;
    height: 80px;
    /* background-color: var(--blue); */
    border-radius: 8px;
    padding: 10px;
    color: var(--pure-white);
    position: relative;
    display: flex;



}
.head-actions{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.archived{
    background-color: var(--white) !important;
    color: var(--black);
}
.archived .icon{
    background-color: var(--red);
    color: var(--pure-white);
}
.modal3-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* display: none;  */
}
  .modal3-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 10001; /* Set z-index lower than modal */
  }
  
  .modal3 {
    position: relative;
    width: 70%; /* Adjust width as needed */
    max-width: 500px;
    min-height: 150px;
    background-color: var(--black);
    border-radius: 8px;
    /* margin: 100px auto; */
    padding: 10px;
    z-index: 10002; /* Set z-index higher than backdrop */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
  }
  .modal3 form{
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .modal3 legend{
    font-size: 16px;
    text-align: center;
    margin: 0;
  }
  .modal3 .btn{
    font-size: 16px;
    font-weight: 600;
    background-color: var(--green);
    
  }
  .clientStats{

    background-color: transparent !important;
    display: flex;
    

  }
  .stats{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .base{
    width: 70%;
    height: 70%;
    border: 1px var(--pure-white) solid;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stat-label{
    width: 60px;
    height: 30px;
    /* border: 1px blue solid; */
    background-color: var(--white);
    position: absolute;
    top: -20px;
    right: -20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
  }
  .base i{
    font-size: 2em;
    color: var(--pure-white);
  }
.open-tickets{
    background-color: var(--blue);
}
.closed-tickets{
    background-color: var(--light-grey);
    color: var(--black) !important;
}
.ticket-container{
    width: 80%;
}
.closedTicketbtn{
    background-color: var(--green) !important;
}
.overdueTicketbtn{
    background-color: #996363 !important;

}
.closedTicket{
    background-color: var(--green) !important;
}
.overdueTicket{
    background-color: #996363 !important;

}
.ticket p:first-child{
    width: 40%;
}
.ticket p{
    width: 60%;
    font-size: .7em;
}
.info-section{
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.info-section h1{
    font-size: 1.5em;
    font-weight: 500;
    height: 50%;
    text-align: left;
    width: 100%;
}
.info-section h3{
    font-size: 1.5em;
    font-weight: 500;
    height: 50%;
    text-align: center;
}
.icon-section{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}
.icon-section i{
    font-size: 50px;
    transform: rotate(-45deg);
    
}
.btn{
    color: var(--pure-white);
    border-radius: 8px;
    background-color: var(--dark-green);
    display:flex;
    gap:3px;

}
.btn:hover{
    background-color: var(--light-grey) !important;
}
.bglight{
    background-color: var(--light-grey);
}
.br{
    border-radius: 8px;
}
.cancel-code{
    background-color: var(--dark-green);
    width: 90%;
    height: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px var(--light-grey) solid;
    border-radius: 8px;
    margin-top: 50px;
    gap: 10px;
}
.cancel-code h3{
    font-size: 16px;
    
}
.cancel-code form{
    width: 100%;
    height: 40px;
    display: flex;
    /* background-color:var(--light-grey); */
    border-radius: 8px;
    gap: 10px;


}
.cancel-code .btn{
    background-color: var(--red);
    font-size: 16px;
    border: none;

}
.cancel-code .form-input{
    padding-left: 10px;
    font-size: 14px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--light-grey);
    font-weight: 600;
    text-transform: uppercase;
}
.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:10s;
  }
  
  .bg3 {
    animation-duration:11s;
  }
  
  .content {
    background-color:rgba(255,255,255,.8);
    border-radius:.25em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-50%, -50%);
  }
  
  h1 {
    font-family:monospace;
  }
  
  @keyframes slide {
    0% {
      transform:translateX(-25%);
    }
    100% {
      transform:translateX(25%);
    }
  }
  
  
  
  
.dark{
    background-color: var(--black) !important;
    /* color: var(--white) !important; */
}
.dark-border{
    border: var(--white) 1px solid;
    border-radius: 8px;
    color: var(--white) !important;
}
.transparent-background{
    background-color: transparent !important;
    color: var(--white) !important;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0 !important;
    padding: 0 !important;
}
body{
    width: 100vw;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */
    background-color:var(--dark-green) ;
    position: relative;
    overflow-x: hidden;
    
    /* border: #0058ff solid; */
    
}
.active{
    width:50%;
    display: initial;
    


}
input[type="text"],input[type="password"],input[type="number"],input[type="datetime-local"] {
    padding-left: 10px !important;
  }
  
  /* Remove borders on focus */
  input[type="text"]:focus,select,input[type="datetime-local"] {
    outline: none;
    border: none;
    border-bottom:1px solid var(--light-grey) ;
  }

#profile_change{
    background-color: var(--light-grey) ;
}

.edit-profile-header{
    width: 100%;

    /* border: var(--green) solid; */
}
.offcanvas-body legend{
    color: var(--pure-white);
    text-align: center;
}
.edit-profile-body{
    width: 100%;
    
    /* border: var(--green) solid; */

}
.offcanvas-body form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-green);
    color: var(--pure-white);
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
}
.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed var(--white);
    color: var(--pure-white);
    cursor: pointer;
    
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: #eee;
    border-color: #111;
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  .edit-profile-body input{
    background-color: transparent;
    color: var(--pure-white);
    border: none !important;
    border-radius: 0 !important;
    outline: none;
    border-bottom: 1px solid var(--white) !important;
  }
  .drop-title {
    color: var(--pure-white);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
  }
  input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #444;
    /* padding: 5px; */
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
  }
  input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: var(--green);
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  }
  
  input[type=file]::file-selector-button:hover {
    background: var(--green);
  }
  .edit-profile-header .btn{
    background-color: var(--green) !important;
    color: var(--white) !important;
    border: none;
    font-size: 1.2em;
    font-weight:600;

  }
  .edit-profile-body .btn{
    background-color: var(--green) !important;
    color: var(--white) !important;
    border: none !important;
    font-size: 1.2em;
    font-weight:600;

  }
  .edit-profile-body .btn:hover{
    background-color: var(--light-grey) !important;
    color: var(--black) !important;
  }
  .edit-profile-header .btn:hover{
    background-color: var(--light-grey) !important;
    color: var(--black) !important;
  }
.nav-head{
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    /* padding:0 15px; */
    display: flex;
    z-index: 100;
    justify-content:center;
    align-items: center;
    background-color: var(--white);
    gap: 5px;
}
.brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: 40%;
    z-index: 100;

}

.name-section{
    display: none;
}

.brand i{
    
    font-size: 24px;
    font-weight: 700;
    /* margin-right: 5px; */
}
.toggle{
    background-color: transparent !important;
    border: none;

}
.toggle:hover{
    color: var(--white);
    background-color: transparent !important;
    transform: scale(1.5);
    transition: .5s all;
}
/* .client-card:hover{
    color: var(--white);
    background-color: transparent !important;
    transform: scale(.9);
    transition: .5s all;
} */
.profile{
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* border: #0058ff solid; */
    gap: 5px;

}
.avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    
}
.avatar img{
    width: 90%;
    height: 90%;
    border-radius: 50%;
}
.profile p{
    font-size: 10px;
}
.profile-name{
    display: none;
    justify-content: center;
    align-items: center;
}
.bi{
    font-size: var(--black);
}
.offcanvas-body{
    height: 90%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white) !important;
}
.offcanvas-body ul{
    width: 100%;
    /* gap: 5px; */
    /* align-items: center; */
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.offcanvas-body li{
    list-style: none;
    width: 100%;
    height: 50px;
     align-items: center;
     justify-content: flex-start;
     display: flex;
     gap: 10px;
     padding: 10px;
     font-size: 14px;
     border-radius: 8px;
     /* background-color: var(--light-grey); */
}

.offcanvas-body li:hover{
     background-color: var(--dark-green);
}
.offcanvas-body a{
    color: var(--white) !important;
}
.offcanvas-body a:hover{
    text-decoration: none;
}

.active-links{
    background-color: var(--light-grey);

}

.chat-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.analytics-header{
    width: 100%;
    margin-top: 10px;
    /* border:red solid; */
    display: flex;
    flex-direction: column;
    gap: 10px;
   
    

}
.analytics{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.analytic{
    margin: 0;
    gap: 10px;
    flex-direction: column;
    display: flex;

}
.analytic-container{
    display: flex !important;

    justify-content: center !important;

}
.analytics-header h3{
    color: var(--pure-white);
    font-weight: 400;
    margin-left: 5px;
}
.controls{
    width: 100%;
    /* height: 40px; */
    /* border:rgb(0, 255, 72) solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    gap: 10px;



}
.duration-control{
    display: flex;
    height: 60px;
    width: 100%;
    flex-direction: column;
    background-color: white;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    /* border:rgb(0, 255, 72) solid; */

    

}
.controls p{
    margin: 0;
    padding: 0;
    height: 30%;
    font-size: .9em;
}
.datePicker{
    width: 100%;
    height: 70%;
    border: none;
    background-color: transparent;
    /* padding: 10px; */

}
.datePicker:focus{
    border: none;
    background-color: none;

}

.today-date{
    width: 100%;
    display: flex;
    gap: 5px;
    height:60px ;
    flex-direction: column;

    background-color: white;
    /* border: var(--grey)1px solid; */
    border-radius: 8px;
    padding: 10px;
   


}
.range{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px var(--white) solid;
    /* background-color: var(--white); */
    font-size: 1.5em;
    font-weight: 700;

}
#checkCode{
    background-color: transparent;
    padding: 20px;
    font-size: .8em;
}
.glass-container {
    background: var(--white) !important; /* Adjust transparency as needed */
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px) !important; /* Adjust blur effect as needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 10px;

}
.glass-container h4{
    color: var(--black);
}
#updateProfileForm{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

  #updateProfileForm label {
    display: block;
    color: var(--black);
    font-weight: 600;
  }
  
  #updateProfileForm input[type="text"],
  select {
    width: 100%;
    padding: 10px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    transition: border-color 0.3s;
  }
  
 
  select:focus {
    border-color: dodgerblue;
  }
  
  #updateProfileForm button {
    background-color: dodgerblue;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    width: 70%;
    font-weight: 700;
  }
  
  #updateProfileForm button:hover {
    background-color: var(--black);
    color: var(--white) !important;
  }
  #updateProfileForm input:focus{
    outline: none;
    border: none;
}
.analytics-body{
    width: 100%;
    margin-top: 10px;
    /* border:red solid; */
    display: flex;
    flex-direction: column;
    gap: 10px;
}
canvas{
    width: 90% !important;
}
.overview{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
    
}
.check-code{
    background-color: var(--black);
   
    padding: 20px;
    display: flex;
    height: 60vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 8px;
    width: 100%;
    /* height: 300px; */

}
.check-code-header{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    gap: 10px;
}
.check-code h3{
    width: 30%;
    padding: 5px;
    text-align: left;
    /* font-size: 18px; */
}

.check-code-body{
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    /* border: 1px solid var(--grey); */
}

.data-usage{
    width: 80%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.data-usage p{
    text-align: center;

}
.codes{
    background-color: var(--black);
   
    padding: 20px;
    display: flex;
    min-height: 60vh;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 8px;
    width: 100%;
    
}
.code-section{
    width: 90%;
    height: 60%;
    /* border: 1px solid var(--grey); */
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    gap: 10px;
}
.usage-container{
    width: 100%;
    height: 80px;
    background-color: var(--dark-green);
    border-radius: 16px;
}
.usage-header{
    padding: 0 !important;
    margin-top: 10px;


}
.usage-header .search-bar{
    width: 100%;
    border-radius: 8px;
}
.usage-header .search-bar #getCode{
    border-radius: 8px !important;
    background-color: transparent !important;
}
.usage-header #getCodeBtn{
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    /* border-radius: 8px !important; */
}
.usage-body{
    justify-content:flex-start !important;
    overflow-y: scroll;

}
.top-section{
    width: 100%;
    height: 50%;
    padding-top: 10px;    
    padding-left: 10px;   
    padding-right: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    
}
.bottom-section{
    width: 100%;
    height: 50%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#codes{
    height: 100%;
    /* border: 1px solid var(--grey); */
    /* background-color: #0058ff; */
    width: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    /* padding: 20px; */

}
.input_section{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}
.input_group{
    width: 100%;
    height: 40px;
    /* border: var(--black) solid; */
    border-radius: 8px;

}
.input_group select{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--black);
    padding: 10px;

}
.input_group select:focus{
    outline: none;
    border: none;
    border: 1px solid var(--black);
}
.code-wrapper{
    width: 100%;
    height: 100%;
    gap: 10px;
    display: flex;
    justify-content:center ;
    flex-direction: column;


}
.text-white{
    color: var(--pure-white) !important;
}
.text-black{
    color: var(--black) !important;
}
#code_display{
    background-color: #808080;
    
    border: none;
    text-align: center;
    font-weight: 700;
    color: var(--white) !important;
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--light-grey);

}
.input_group input{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid var(--black);

}
.data_section{
    width: 90%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 10px;
}
/* .data_section{
    width: 70%;
} */
.data_section .input_group{
    width: 50%;
}
.getCode{
    background-color: #0058ff;
    outline: none !important;
    border: none !important;
    color: var(--pure-white);
    font-weight: 700;
}
.getCode:hover{
    border: #0058ff 1px solid !important;
    color: #0058ff;
    background-color: var(--white);
}
.animate{
    animation: animate 2s linear;

}
@keyframes animate {
    0%{
        transform: translateY(50px);
        opacity: 0;
        animation-delay: 1s;

    }
    100%{

    }    
}
.details{
    /* border:red solid; */
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    padding-left: 10px;
    gap: 5px;
    


}
.graph{
    /* border:red solid; */
    width: 50%;
    height: 100%;
    display: flex;

    justify-content: flex-end;
    align-items: flex-end;
    object-fit: contain;


}
.graph img{
    width: 70%;
    height: 60%;
    margin-right:30px ;
    margin-bottom: 20px;
}

.usage{
    width: 100%;
    min-height: 200px;
    background-color: var(--white);
    border-radius: 8px;
}

.analytics-chart{
    min-width: 100%;
    min-height: 50vh !important;
    margin-top: 10px; 
    margin-bottom: 20px;
    /* border:red solid; */
     display: flex;
     position: relative;
     align-items: center;
     justify-content: center;
    flex-direction: column;
    /* background-color: var(--white); */
    gap: 10px;
   border-radius: 8px;
} 
.line-chart{
    /* height: 50%;
    width: 800%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px; */

}
#myChart{
    height: 100% !important;
}

.line-chart .programming-stats{
    height: 100% !important;
}
.donought-chart p{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.profile-control{
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;

}
.profile-control button{
    width: 50%;
    height: 100%;
    background-color: var(--white);
    color: var(--black);
    font-size: 1em;
    font-weight: 700;
}
.donought-chart{
    width: 100%;
    border-radius: 8px;
    background-color: var(--white);
    padding: 8px;
}
.donought-chart ul li{
    font-size: 12px !important;
}
.chart-heading {
    font-family: "Rubik", sans-serif;
    color: #023047;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
  }
  
  .chart-container {
    width: 60%;
    /* height: 50%; */
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  
  .programming-stats {
    
    font-family: "Rubik", sans-serif;
    display: flex;
    align-items: center;
    gap: 24px;
    /* margin: 0 auto; */
    width:100%;
    flex-direction: column;
    border-radius: 20px;
    /* padding: 8px 32px; */
    color: #023047;
    transition: all 400ms ease;
    background-color: var(--white);
  }
  
  .programming-stats .details{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .programming-stats .details ul {

    list-style: none;
    padding: 0;
  }
  
  .programming-stats .details ul li {
    font-size: 16px;
    margin: 12px 0;
    text-transform: uppercase;
  }
  
  .programming-stats .details .percentage {
    font-weight: 700;
    color: #e63946;
  }

.full{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    
}
.welcome-banner{
    width: 100vw;
    /* border:red solid; */
    height: 30vh;
    background-color: #ffffff;

}
.banner-head{
    width: 100%;
    height: 16%;
    display: flex;
    /* border:red solid; */
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;


}
.banner-head a{
    width: 30%;
    height: 100%;
    font-size: 20px;
    /* border:rgb(15, 150, 56) solid; */
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
    margin-left: -10px !important;



}
.banner-head h2{
    font-size: 24px;
    font-weight: 300;
    text-align: center;
  
    /* border:red solid; */
    width: 70%;
    height: 100%;
    color: var(--green);
    display: flex;
    /* justify-content: center; */
    align-content: center;
    text-align: left;
    padding: 10px;


}
.banner-body{
    width: 100%;
    height: 70% ;
    display: flex;
    /* border:red solid; */
    justify-content: center;
    align-items: center;
    object-fit: contain;
    /* background-image: url(); */
    background-image: url('../img/world.png');
    background-size: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;



}
.banner-body img{
    width: 100%;
    height: 100%;

}
.login {
    width: 100%;
    height: 70vh;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    
    /* border:red solid; */


}
.login-form{
    width: 90%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    /* border: white solid; */
    gap: 10px;
}
legend{
    margin-top: 30px;
    font-size: 24px;
    font-weight: 400;
    color: var(--pure-white);
}
.form-group{
    width: 90%;
    /* height: 50px; */
    /* border: #0058ff solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--green);
    gap: 10px;

}
/* Apply the styles to the select element */
select {
    width: 100%;
    height: 50px;
    background-color: var(--dark-green);
    border:none;
    border-bottom: var(--light-grey) solid 1px;
    /* border-radius: 8px; */
    color: white;
    padding: 10px; /* Adjust padding as needed */
    box-sizing: border-box; /* Ensure padding and border are included in the width and height */
}

/* Style the dropdown arrow */
select::-ms-expand {
    display: none;
}

select::after {
    content: '\25BC'; /* Unicode character for the dropdown arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: white;
    pointer-events: none; /* Ensure the arrow doesn't interfere with the select */
}

.form-group input{
    width: 100%;
    height:50px;
    background-color: var(--black);
    border: var(--green) 1px solid;
    border-radius: 8px;
    color: white;
    /* padding: 2px; */
}
.error{
    border: var(--red) solid 1px !important;
    color: var(--red);
}
.subBtn{
    width: 100%;
    height: 100%;
    /* background-color: var(--black); */
    /* border: var(--green) 1px solid; */
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    padding: 10px;
    background-color: var(--green) !important;

}
.subBtn:hover{
    background-color: var(--white) !important;
    color: var(--green);
}
.login-form a{
    color: white;
    text-decoration: underline;
    text-align: left;
    width: 90%;

}

.purchases{
    background-color: var(--black);
    margin-top: 10px !important;

    display: flex;
    /* height: 85vh; */
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-radius: 8px;
    /* overflow-y: scroll; */
    color: var(--pure-white);
    width: 100%;
    height: 100%;
    

}
.payments{
    width: 100%;
    height: 100%;
}
.employees{
    width: 100%;
    height: 100%;
}
.payments-header{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    


}
.search-bar{
    /* width: 180px; */
    width: 100%;
    height: 40px;
    border: var(--grey) solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;



}
.floating-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    background-color: #2d4a53;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-weight: 600;
    font-size: 18px;
    border: 1px solid #b2cae2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .floating-btn:hover{
    color: #24393f !important;
    background-color: #b2cae2 !important;
  }

.search{
    width: 80%;
    height: 100%;
    padding: 10px;
    border-radius: 8px;
    /* margin-left:; */
    border: none;
    font-size: 12px;
    background-color: transparent;
    color: var(--pure-white);
        /* border: var(--green) 1px solid; */



}
.search-bar i{
    width: 20%;

}
.search:active{
    border: none;
}
.payment-card{
    width: 100%;
    height: 90%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    /* border: var(--green) 1px solid; */


}
.payment-card ul{
    display: flex;
    min-height: 60px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /* height: 100%; */
    width: 100%;
    /* border: var(--green) 1px solid; */
    margin: 0;
    padding: 10px;


}
.header{
    background-color: #0d1f23;
    color: var(--pure-white);
    font-size: 0.7em;
    border-top-right-radius:8px ;
    border-top-left-radius:8px ;



}
.data-card{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    gap: 5px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    /* background-color: var(--black); */
   

}
.payment-card li{
    width: 25%;
    justify-content: left;
    align-items: center;
    list-style: none;
    font-weight: 500;
    /* border: var(--green) 1px solid; */
    
    
}
.data{
    /* border: var(--light-grey) solid 1px; */
    background-color: var(--dark-green);
    
    border-radius: 8px;
    font-size: 0.7em;
    /* height: 100% !important; */
}
.prof_main{
    min-height: 60px;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
    background-color: transparent !important;
}
.prof_content{
    width: 100%;
    background-color: var(--dark-green);
    height: 60px;
    /* background-color: blue; */
  
}
.drawer{
    width: 50% !important;
    height: 40px;
    background-color:var(--white) !important;
    display:none;
    border-radius: 0px 0px 8px 8px;

  }
  .open_drawer{
    display: flex;

  }
  .drawer button{
    width: 50%;
    height: 100%;
    border: none;
    outline: none;
    color: var(--black) !important;
    font-size: 16px;
    background-color: transparent;
    border-radius: 0px 0px 8px 8px;


  }
  .drawer button:hover{
    color: var(--white) !important;
    background-color: var(--black);
  }
/* display  */
.action{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* border: var(--green) 1px solid; */


}
.action button{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border: none;
    background-color: transparent;

}
.action button:hover{
    background-color: var(--light-grey);
    
}
.coming-soon{
    background-color: var(--white);
    margin-top: 10px;
    padding: 10px;
    display: flex;
    height: 85vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    /* width: 100%; */
    /* border: var(--green) 1px solid;  */

    /* overflow-y: scroll; */
    

}
/* .profiles{
    background-color: var(--white);
    margin-top: 10px;
    padding: 10px;
    display: flex;
    height: 85vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;

} */
.prof-name{
    width: 40% !important;
    /* text-align: left !important; */
    display: flex;
    justify-content: flex-start !important;
}
.others{
    width: 15% !important;
    /* text-align: left !important; */
    display: flex;
    justify-content: flex-start !important;
    align-items: flex-start;

}
.image{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: var(--green) 1px solid; */


}
.image img{
    width: 50%;
    height: 100%;
}
.fixed-clients{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: 100%;
}
.container{
    margin: 0 !important;
}
.fixed{
    /* background-color: var(--black); */
    color: var(--pure-white);
    /* margin-top: 30px; */
    /* padding: 10px; */
    display: flex;
    /* height: 85vh; */
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 15px;
    height:100%;
    border-radius: 8px;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 1;

}
.dropdown{
    width: 100%;
    border-radius: 8px;
    /* border: 1px solid ; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  .dropdown-content{
    width: 90%;
    display: none;
   padding: 10px;
    border-radius: 8px;
   
    
  }
  .dropdown-content li{
    background-color: #b2cae2;
    color: #24393f;
  }
  .dropdown-content li:hover{
    /* background-color: #b2cae2; */
    color: #fff;
  }
  .show_dropdown{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 400;
  
  }
  .dropdown button{
       width: 100%;
      height: 50px;
       align-items: center;
       justify-content: flex-start;
       display: flex;
       gap: 10px;
       padding: 10px;
       font-size: 14px;
       border-radius: 8px;
       background-color: transparent;
       border: none;
  
  
  }
  .dropdown button:hover{
    background-color: #2d4a53;
  }
  .buttn-sec{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  .indicator{
    width: 20%;
    height: 100%;
    justify-content: flex-end;
    display: flex;
    align-items: center;
  }
  .indicator-down{
    /* animation: rotateme .2s ; */
    transform-origin: center;
    transition:2s ease-in linear;
    transform: rotate(90deg);
  
  }
.btn-k-secondary{
    background-color: var(--light-grey);
    color: var(--black);
    font-size: .8em;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-k-secondary:hover{
    border: var(--dark-green) 1px solid !important;
    color: var(--dark-green) !important;
}
.clients{
    width: 100%;
    /* border: var(--light-grey) 1px solid; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
    overflow-x: hidden;
    /* padding-top: 320px; */
    gap: 10px;

}
.fixed-client-card{
    width: 100%;
    /* border: var(--light-grey) 1px solid; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    /* overflow-y: scroll; */
    /* padding-top: 320px; */
    gap: 10px;

}

.client-card{
    width: 100%;
    /* min-height:70px ; */
    /* border: var(--light-grey) 1px solid; */
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
    padding: 10px;
    position: relative;
    border-radius: 8px;
    background-color:var(--black);
    gap: 5px;
    font-size: 1.6rem !important;
    transform: translateX(10%);
    transition: transform 1s ease-in-out;


}
.stop{
    transform: translateX(0%) !important;

}
.sendsmsoption{
    flex-direction: row;
}

.stagger{
    transform: scale(1);
}
.fixed-client-card:nth-child(5){
    padding: 15px;
}

.client-card-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    /* border: 1px red solid; */
    min-height: 30px;
}
.client-usage{
    width: 100%;
    height: 200px;
    /* background-color: white; */
    border-radius: 8px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    /* gap: 10px; */
}
.client-card-col-1{
    width: 100% ;
    /* height: 100%; */
    justify-content: center;
    display: flex;
    align-items: center;
}
.fx-b{
    justify-content: space-between !important;
    padding: 10px;
    flex-direction: column;
    /* box-shadow: 1px 1px 4px var(--light-grey); */

}
.fx-b .client-card-col-2{
    width: 100%;
    
}
.client-card-col-2{
    width: 50% ;
    height: 100%;
    /* justify-content: center; */
    display: flex;
    gap: 10px;
    align-items: center;

    /* border: 1px rgb(0, 255, 157) solid; */


}
.client-card-col-2 p{
    font-size: .8em;
}
.client-card-col-3{
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    /* border: 1px rgb(25, 143, 197) solid; */

}
.icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--green);
    border: 1px solid var(--white);
    align-items: center;
    justify-content: center;
    display: flex;
}
.icon-expired{
    background-color: var(--red);

}
.loader{
    width: 100vw;
    height: 100vh;
    justify-content: center;
    /* border: red 1px solid; */
    background-color: var(--white);
    align-items: center;
    display: flex;  
    position: fixed;
    top: 0;
    z-index: 100;

}
.loader-image{
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    object-fit: cover;
}
.loader-image img{
    width: 100%;
    height: 100%;
}
.loader2{
    width: 100%;
    height: 100%;
    justify-content: center;
    /* border: red 1px solid; */
    background-color: var(--white);
    align-items: center;
    display: flex; 

}
.loader-image2{
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    object-fit: cover;
}
.loader-image2 img{
    width: 100%;
    height: 100%;
}
.history-card{
    width: 90%;
    height: 40px;
    border: var(--light-grey) 1px solid;
     display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.history-card p{
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.client-card-header{
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    /* border: var(--light-grey) solid 1px; */
    margin: 0;
    padding: 0;
    font-size: .8em;
    


}
.client-card-header th{
    width: 30%;
    padding: 7px;
    text-align: left;
}
.client-card-header td{
    text-align: left;
}
.client-card-header li{
    font-weight: bold;
    padding: 10px;
    font-size: .8em;
}


.client-card-actions{
    width: 20%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* border: var(--light-grey) solid 1px; */
    margin: 0;
    gap: 5px;


}
.client-card-actions button{
    width: 90%;
    font-size: .9em;
    margin: 0;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.errored{
    background-color: var(--red) !important;
    color: var(--pure-white);
}
.errored_container{
    background-color: var(--red-white) !important;
    
}
.online{
    background-color: var(--green) !important;
    color: var(--black) !important;
}
.online_card{
    background-color: var(--green-white) !important;
}
.success{
    background-color: var(--green);
    color: var(--pure-white);
}
.landing_page{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    overflow: hidden;
    /* border: red solid; */
    z-index: 12;




}
.landing-header{
    width: 100%;
    height: 50px;
    /* position: relative; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:transparent ;
    position: fixed;
    z-index: 12;
   
        /* border: red solid; */

}
.name{
    width: 90%;
    /* border: red solid; */


}
.landing-header h2{
    font-size: 16px;
    color: var(--green);
    font-weight: 700;
    /* border: red solid; */


}
.hide_overflow{
    overflow: hidden !important;
}
.circles{
    width: 250px;
    height: 250px;
    position: absolute;
    /* border: red solid; */
    top: 0px;
    right: 0px;
    z-index: 1;
    display: none;


}
.messages{
    width: 104%;
    height: 100%;
    margin-top: -5px;
    /* border:  red solid ; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.messages_header_container{
    width: 100%;
    min-height: 150px;
    /* background-color: var(--black); */
    /* border-bottom-right-radius: 36px; */
    /* border-bottom: var(--light-grey) .1px  solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.messages_header{
    width: 90%;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.messages_header ul{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    gap: 20px;

}
.messages_header h3{
    color: var(--pure-white) !important;
}
.messages_header ul li{
    list-style:none;
    min-width: 10%;
    height: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--pure-white);
    font-size:1.5rem;
    font-weight: 500;
    padding: 5px 0;


}
.messages_body{
    /* border: red solid;   */
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    align-items: center;
    /* justify-content: flex-start; */
}
.messages_body-container{
    overflow: hidden;
    width: 90%;
    display: flex;
    border-radius: 8px;
    align-items: center;
    position: relative;
    height: 100%;

}
.messages_body form{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    align-items: center;
    gap: 20px;
}
.messages_body legend{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.messages_body textarea{
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background-color: transparent;
    outline: none;
    padding: 20px;
    color: var(--pure-white);
}
.messages_body .form-group{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.messages_body input{
    background-color: transparent;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid var(--light-grey) !important;
}
.send_sms{
    width: 100%;
    height: 50px;
    outline: none;
    border: none;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--black);

}


.circles img{
    width: 100%;
    height: 100%;
}
.transacion_section{
    flex-direction: column;
    justify-content:safe;
}
.all_transactions{
    justify-content: flex-end;
}
.all_transactions p{
    font-weight: 100 !important;
    text-decoration: underline;
    
}
.all_transactions p:hover{
    color: #0058ff;
    cursor: pointer;
    
}
.hero{
    /* border: red solid; */
    width: 90%;
    display: flex;
    flex-direction: column;
    color: var(--pure-white);
    gap: 10px;
    /* height: 300px; */


}
.hero h1{
    font-size: 20px;
    color: var(--green);
    font-weight: 700;
}
.hero h3{
    font-size: 18px;
    font-weight:600;
}
.hand_image{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 300px; */
    /* border: red solid; */


}
.getstartedBtn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;

}
.getstartedBtn a{
    background-color: var(--green);
    height: 100%;
    width: 250px;
    border-radius: 24px;
    color: var(--pure-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;



}

.getstartedBtn a:hover{
    text-decoration: none;
    background-color: var(--white);
    color: var(--green);
}
.title {
    margin: 16px 0;
  }
  
  .main {
    border: 8px solid #dddddd;
    border-radius: 24px;
    overflow: hidden;
    width: 400px;
    
  }
  
  .name {
    display: flex;
    font-size: 32px;
    font-weight: 700;
    padding: 8px 16px;
    color: #7e7e7e;
    background-color: #ebebeb;
  }
  
  .name > span {
    color: #bbb;
  }
  
  .name-input {
    font-size: 24px;
    font-weight: 700;
    color: #7e7e7e;
    flex-grow: 1;
    border: none;
    margin: 0px 12px;
    outline: none;
    background-color: #ebebeb;
  }
  
  .message-container {
    display: flex;
    flex-direction: column;
    background-color: #f6f6f6;
    width: 400px;
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  
  .message-left,
  .message-right {
    list-style: none;
    padding: 8px 12px;
    margin: 12px;
    max-width: 250px;
    font-size: 18px;
    word-wrap: break-word;
  }
  
  .message-left {
    border-radius: 20px 20px 20px 0px;
    align-self: flex-start;
    background-color: #fff;
    box-shadow: -2px 2px 4px #dcdcdc;
  }
  
  .message-right {
    border-radius: 20px 20px 0px 20px;
    align-self: flex-end;
    background-color: #2d2d2d;
    box-shadow: 2px 2px 4px #dcdcdc;
    color: #f6f6f6;
  }
  
  .message-left > p > span,
  .message-right > p > span {
    display: block;
    font-style: italic;
    font-size: 12px;
    margin-top: 4px;
  }
  
  .feedback {
    font-style: italic;
    font-size: 14px;
    padding: 0px 16px 16px 16px;
    color: #2d2d2d;
    text-align: center;
  }
  
  .message-form {
    display: flex;
    justify-content: space-between;
    width: 400px;
  }
  
  .message-input {
    flex-grow: 1;
    height: 48px;
    font-size: 16px;
    border: none;
    outline: none;
    padding: 0 12px;
    background-color: #fff;
  }
  
  .send-button {
    height: 48px;
    font-size: 16px;
    border: none;
    padding: 0px 20px;
    outline: none;
    background-color: #fff;
    cursor: pointer;
  }
  
  .v-divider {
    height: 48px;
    width: 2px;
    background-color: #f6f6f6;
  }
  
  .clients-total {
    margin: 20px 0;
    color: #7e7e7e;
  }
  .loading-container{
    position: absolute;
    width: 100vw;
    height: 90vh;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    display: flex;

    background-color: var(--black);

  }
  .loading {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: var(--pure-white);
    
  }
    .loading:before,
    .loading:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: inherit;
      height: inherit;
      border-radius: 50%;
      transform: rotateX(70deg);
      animation: 1s spin linear infinite;
    }
    .loading:after {
      color: var(--green);
      transform: rotateY(70deg);
      animation-delay: .4s;
    }
    /* Styling for the custom modal container */
.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 100001;
  }
  
  /* Styling for the modal content */
  .modal1-content {
    background-color: var(--black);
    padding: 20px;
    border-radius: 8px;
    color: var(--pure-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
  }
  
  /* Styling for the close button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    cursor: pointer;
  }
  
  /* Styling for the modal backdrop */
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  /* Styling for the trigger button */


.modal-content-body{
    width: 100%;
    min-height: 70%;
    background-color: var(--dark-green);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;

}
.modal1-content form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.container-fluid{
    padding: 5px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.modal-container input{
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--light-grey);

}
.modal-content-body .form-group{
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    color: var(--pure-white);
}
.modal1-content button{
    background-color: var(--light-grey);
    width: 80%;
    border-radius: 8px;
    color: var(--dark-green) !important;
    font-weight: 600;
    height: 40px;
    border: none;
    margin: 10px;

}
.modal-content-body input[type='radio']{
    width: 12px !important;
    height: 12px !important;
   
    display: flex;
    justify-content: center;
    align-items: center;
}
.eType-selector{
    font-size: .8em;
}

.modal1-content button:hover{
    background-color: var(--black);
    color: var(--white) !important;
}
.mdc-snackbar {
    width: 100%;
    position: fixed;
    z-index: 10011;
    bottom: 6em;
    visibility: hidden;
}

.mdc-snackbar__bg {
    display: flex;
    justify-content: center;
    text-align: center;
    place-items: center;
    background-color: rgba(158, 255, 218, 0.793);
    width: 70%;
    color: var(--grey);
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    padding: 0.75em 1.25em;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2) !important;
}

.mdc-button__label {
    color: var(--mdc-theme-primary);
    font-weight: bold;
    letter-spacing: 0.05em;
}

.mdc-snackbar__actions {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    margin-left: 1em;
    width: 20%;
    height: 80%;
}

.mdc-snackbar__actions:hover {
    background-color: var(--mdc-theme-secondary);
}

.mdc-snackbar__actions:hover .mdc-button__label {
    color: #000000;
}

.mdc-snackbar.show {
    visibility: visible;
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
              However, delay the fade out process for 4 seconds */
    -webkit-animation: fadeinSnack 0.5s, fadeoutSnack 0.5s 6s;
    animation: fadeinSnack 0.5s, fadeoutSnack 0.5s 6s;
}
  @keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
  }

  @keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
  }

  @keyframes spin {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.2em 0 0 currentcolor;
    }
  }
.offcanvas-header .btn-close{
    background-color: var(--white) !important;
}
.offcanvas-header{
    width: 90%;
    height: 10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px solid #000; */
    gap: 10px;
}
.offcanvas-header .logo{
    width: 40px;
    height: 40px;
    /* border: red solid; */
    border-radius: 50px;

}
.offcanvas-header h3{
    color: var(--pure-white) !important;
    font-size: 16px;
    
}
.offcanvas-header .logo{
    width: 40px;
    height: 40px;
    border: 3px solid var(--pure-white);
    border-radius: 360px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.offcanvas-header .logo i{
    font-size:1.5em;
    font-weight: 700px;
    transform: rotate(45deg);
    color: var(--pure-white);
}
.locCard{
    width: 100%;
    min-height: 60px;
    /* border: 1px solid; */
    border-radius: 8px;
    font-size: 1em;
    padding: 10px;
    background-color: var(--dark-green);
}
.locCard-header{
    width:90%;
    height: 50%;
    padding-left: 10px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--pure-white);
    font-size: .8em;


}
.locCard-header p{
    width:28%;
    text-align: left;
}
.locCard-body{
    width:100%;
    height: 50%;
    padding-left: 10px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--pure-white);
    font-size: .8em;
}
.record-checkbox-container {
    position: relative;
   width: 20%;
    /* border: 1px solid; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Actual checkbox style */
.record-checkbox {
    opacity: 0;
    position: absolute;
}

/* Style the custom checkbox */
.record-checkbox-custom {
    position: absolute;
    top: -10px;
    left: 0;
    width: 15px; /* Adjust as needed based on your design */
    height: 15px; /* Adjust as needed based on your design */
    background-color: var(--black);
    border: 1px solid #fff;
    border-radius: 3px;
    cursor: pointer;
}

/* Style the tick mark inside the checkbox */
.record-checkbox-custom:after {
    content: '\2713'; /* Unicode character for checkmark */
    font-size: 14px; /* Adjust as needed based on your design */
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* Show the tick mark when the checkbox is checked */
.record-checkbox:checked + .record-checkbox-custom:after {
    display: block;
}
.profile-container{
  width: 100%;
  height: 0;
  /* border: 1px solid red; */
  position: fixed;
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  padding: 10px;
  bottom: 0;
  right: 0;
  background-color: var(--black);
  z-index: 99;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all ease-in-out;
  animation:showAnimation .5s linear;
}
.show-modal{
  height: 80vh;
  display: flex;
}
@keyframes showAnimation {
  0%{
    transform: translateY(100%);
  }
  100%{
    transform: translateY(0%);
  }
  
}

.profile-container::after{
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: black;
  backdrop-filter: blur(10px);
  opacity: .3;
  position: absolute;
  top: -120px;
  /* left: -350px; */
  z-index:-10;

}
.profile-header{
  /* border: grey solid 1px; */
  height: 100px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.main-title{
  width: 100%;
  height: 50%;
  border-bottom: var(--green) 2px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;


}
.main-title h4{
  font-weight: 500;
  width: 80%;
}
.main-title i{
  width: 50px;
  height: 50px;
  font-size: 1.5em;
  text-align: center;
}
.profile-type{
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;

}
.profile-type-selector{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.type-selector{
  width:50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap:5px;
  color: var(--pure-white);

}
.type-selector:last-child{
  justify-content: center;
}
input[type='radio'] {
    appearance: none;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: transparent;
    outline: none;
    transition: box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease;  /* Add transition for background color */
}

input[type='radio']:checked:before {
    background: #fff;
}
.expiry-selector {
 color: var(--pure-white);
 display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;

}

.profile-body{
  width: 90%;
  height: 70%;
  /* border: 1px solid ; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;

}
.profile-body form{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap:10px;
}
.profile-input-group{
  width: 100%;
  height: 40px;
  /* border: 1px solid red; */
  display: flex;
  padding-left: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;


}
.profile-input-group label{
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-align: left;
  
}
.profile-input{
  width: 70%;
  height: 70%;
  padding-left: 20px;
  color: white;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid ;

}
.profile-input:focus{
  border-bottom: 1px solid ;

}
.profile-input-group:last-child{
  justify-content: center;
  height: 70px;
}
.allocateBtn{
    background-color:var(--black) ;
}
#addProfileBtn{
  width: 40%;
  height: 60%;
  border-radius: 8px;
  border: none;
  background-color: var(--green);
  color: white;
  font-size: 16px;
  font-weight: 600;
  /* margin-top: 50px; */
}
#addProfileBtn:hover{
  background-color: var(--black);
  border:1px solid var(--green);
  color:var(--green);
}

.nav-controls-section{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pulse {
    position: relative;
    overflow: hidden;
    background-color: transparent !important;
  }
  
  .pulse:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    animation: shine 2s infinite;
  }
  
  @keyframes shine {
    to {
      left: 100%;
    }
  }
  .otp-wrapper{
    width: 90%;
    height: 100vh;
    /* border: 1px solid red; */
    margin: 20px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 20px;
  }
  .otp-wrapper-header{
    width: 100%;
    height: 80px;

  }
  .otp-wrapper-body{
    width: 100%;
    height: 70vh;
    /* border:#0058ff solid; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    align-items: center;
    color: var(--pure-white);
    gap:150px;
  }
.otp-wrapper-header h3{
    color: var(--pure-white);
    font-size: 1.8rem;
}
.otp-wrapper-body form{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    
}
.form-floating{
    height: 50% !important;
    color: var(--pure-white);

}
.form-floating input{
    height: 100% !important;
    border-radius: 8px;
    background-color: transparent;
    border: var(--pure-white) solid 1px;
    color: var(--pure-white);
    font-size: 1.8rem;
}
.form-floating input:focus{
    background-color: transparent;
    color: var(--pure-white);
    font-size: 1.5rem;

}
.btn-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.otp-btn{
    width: 50%;
    height: 80%;
    background-color: var(--white);
    border: none;
    border-radius: 8px;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.send-opt{
    background-color: transparent;
    color: var(--green);
    width: 100%;
    justify-content: left;
}
.verify{
    height: 80% !important;
    justify-content: flex-end !important;
    gap: 20px !important;
}
.verify .form-floating{
    height: 20% !important;
}
.verify input{
    border: none;
    border-radius: none !important;
    border-bottom: 1px solid var(--light-grey) !important;
}
.verify-btn{
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}
.verify-btn i{
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}
.otp-main{
    width: 100%;
    display: flex;
    flex-direction: column;

}
.verify-illustrator{
    display: none;
}
#hotspotForm{
    transform: translateX(1300px);
    transform-origin: left;
}
#ppoeForm{
    transform-origin: right;
    transition: transform 0.3s ease;
    transform: translateX(-1000px);
}
#individualForm{
    transform-origin: right;
    transition: transform 0.3s ease;
    transform: translateX(-2000px);
}
.active-panel{
    transform: translateX(0) !important;
    position: absolute;
    top: 0;
    left: 0;
}
.line{
    font-weight: 600;
    cursor: pointer;
    height: 50%;
    position: relative;
    /* padding-bottom: 5px; */
}
.line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.line:hover::after{
    border-bottom:var(--light-grey) 3px solid;
    transform: scaleX(1);
    transform-origin: bottom left;
    /* transition:  all 2s; */
    /* animation: borderAnimation all 2s; */

}
.main-wrapper{
    width: 100%;
}
.main-panel{
    width: 100%;
    /* border: red solid; */
    background-color: var(--black);
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}
.nav-section{
    height: 100%;
    width: 20%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
.nav-section-header{
    width: 90%;
    height: 10%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px solid #000; */
    gap: 10px;
}
.nav-section .logo{
    width: 40px;
    height: 40px;
    /* border: red solid; */
    border-radius: 50px;

}
.nav-section-header h3{
    color: var(--pure-white) !important;
    font-size: 16px;
    
}
.nav-section .logo{
    width: 40px;
    height: 40px;
    border: 3px solid var(--pure-white);
    border-radius: 360px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.nav-section .logo i{
    font-size:1.5em;
    font-weight: 700px;
    transform: rotate(45deg);
    color: var(--pure-white);
}
.nav-section-body{
    height: 90%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white) !important;
}
.nav-section-body ul{
    width: 100%;
    height: 50%;
    /* gap: 5px; */
    /* align-items: center; */
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.nav-section-body li{
    list-style: none;
    width: 100%;
    height: 50px;
     align-items: center;
     justify-content: flex-start;
     display: flex;
     gap: 10px;
     padding: 10px;
     font-size: 14px;
     border-radius: 8px;
     /* background-color: var(--light-grey); */
}

.nav-section-body li:hover{
     background-color: var(--dark-green);
}
.nav-section-body a{
    color: var(--white) !important;
}
.nav-section-body a:hover{
    text-decoration: none;
}
.admin-panel{
    min-height: 100vh;
    width: 100%;
    border-radius: 8px;
    background-color: var(--dark-green);
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 20px !important;
    gap: 10px;

}
.container{
    /* padding: 0 !important; */
    margin: 0 !important;
}
.panel-banner{
    width: 100%;
    height: 10%;
    color: var(--light-grey);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.panel-stats{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 10px;
    flex-wrap: wrap;
}
.stat{
    width: 48%;
    height: 80px;
    display: flex;
    justify-content: center;
    color: var(--pure-white);
    border-radius: 8px;
    border: 1px var(--light-grey) solid;
}
.stat-icon{
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon i{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
    background-color: var(--black);

}
.stat-desc{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.stat-desc h5{
    font-size: 2rem;
}
.panel-analytics{
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.analytics-actions{
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color:var(--black);
    border-radius: 8px;
    
}
.analytics-actions ul{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 10px;
    color: var(--light-grey);
}
.analytics-actions li{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 10px;
    padding: 10px;
}
.analytics-details{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}
.purchase-analytics{
    height: 100%;
    width: 100%;
    /* border: #000000 solid 1px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subtotals{
    height: 20%;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    

}
.subtotals img{
    padding: 0;
    margin: 0;

}
.subtotals .overview{
    width: 100% !important;
    height: 100% !important;
    background-color: var(--light-grey);
}
.subtotals .details{
    padding: 0;
}
.payment-graph{
  height: 36vh;
   width: 100%;
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   flex-direction: column;
   gap: 10px;
}
.graph-header{
    width: 100%;
    height: 10%; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
}
.graph-body{
    height: 100% ;
    width: 100% !important;
    display: flex;
   align-items: center;
   justify-content: center; 
   background-color:var(--black);
   padding: 10px;
   border-radius: 8px;
}
.purchase-history{
    height: 100%;
    width: 100%;
}
.purchase-history-body{
    height: 50vh;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    color: var(--light-grey);
    overflow-y: scroll;

}
.purchase-history-body p{
    font-size: 1.5rem;
    padding: 10px !important;
}
.purchase-history a{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--green) !important;
}
.purchase-history-header{
    width: 100%;
    height: 10%;
    padding: 10px;
    font-size: 1.3rem;
    color:var(--white);
}
.resend-section {
    width: 100%;
border-top: 1px solid var(--light-grey);    
display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.show-resend {
    display: flex !important;
    transform-origin: top;
    animation: resendanime 0.3s ease-out forwards; 
    flex-direction: column;
}
.show-resend .top-section{
    height: 33% !important;
}
.show-resend .bottom-section{
    height: 33% !important;
    
}
.show-resend .resend-section{
    height: 33% !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding-left: 20px;
}
.resend_code{
    border: none;
    background-color: transparent;
    color: var(--pure-white);
}
.resend_code i{
    font-size: 18px;
}
.resend_code p{
    font-size: 12px;
    font-weight: 500;
}
.confirm{
    display: flex;
    width: 50% !important;
    align-items: center;
    justify-content: center;

}
.confirm p{
    font-size: 16px;

}
.confirm i{
    font-size: 24px;

}
@keyframes resendanime {
    0% {
        height: 80px;
    }
    100% {
        height: 150px;
    }
}


.open-resend{
    background-color: white;
    color: var(--dark-green);
    box-shadow: 1px 1px 3px var(--dark-green);
}
@media screen and (min-width:768px) {
    .main-menu{
        width: 20vw !important;
        visibility: visible !important;
        transform: none;
        border: none !important;
    }
     .analytics-details{
        flex-direction: row;
     }
     .graph-body{
        width: 100% !important;
        height: 90%;

     }
     .purchase-history{
        width: 48%;
     }
     .payment-graph{
        height: 50vh;
     }
     .subtotals .overview{
        width: 40%;
     }
     .subtotals{
        flex-direction: row;
        width: 100%;
     }
     .panel-stats{
        flex-direction: row;
        height: 10% !important;
        flex-wrap: nowrap;

     }
     .stat{
        height: 100%;
     }
     .purchase-analytics{
        height: 100%;
        width: 50% !important;
     }
     /* .panel-analytics{
        padding-top: 80px;
     } */

     .nav-head{
        display: none;
     }
     .main-panel{
        margin-top: 0;
        height: 100vh;

     }
     .nav-section{
        display: flex;
     }
     .admin-panel{
        width: 79%;
        height: 99%;
        padding: 20px;
     }
    .otp-main{
        flex-direction: row;
    }
    .otp-wrapper{
        width: 50%;
    }
    .verify-illustrator{
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .illustrator{
        width:60%;
        height: 60%;
        
    }
    .illustrator img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .modal2-content{
        width: 100% !important;

    }
    .transacion_section{
        height: 80%;
        overflow-y: scroll;
    }
    .fixed-client-card{
      flex-direction: row ;
      flex-wrap: wrap;
      justify-content: center;
      font-size: 1.2rem !important;
    }
    .code_bar{
        width: 80% !important;
    }
    .fixed-client-card .btn{
        height: 100%;
        font-size: 1.5rem !important;
        font-weight: 600;
    }
    .modal-card{
        width: 30% !important;
       height: 300px;
        align-items: center;
        font-size:1.7rem !important;
    }
    .messages_body-container{
        width: 50%;
    }
    .modal-card h6{
        font-size: 2rem;
    }
    .actionbuttons{
        flex-direction: column;
        height: 70%;

    }
    .actBtn{
        width: 100%;
    }
    .allocateBtn{
        left: 37.4%;
        bottom: 55%;
        width: 220px;
        right: 10px !important;


    }
    .programming-stats{
        flex-direction: row;
    }
    .search-bar{
        width: 20%;
    }
    .nav-head {
        flex-direction: column;
        height: 95px;
       
        
    }
    .name-section{
        width: 100%;
        height: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--dark-green);
    }
    .nav-controls-section{
        height: 50%;

        width: 90%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .line-chart{
        width: 50%;
    }
    .donought-chart{
        width: 50%;
    }
    .today-date{
        width: 40%;

    }
    .profile-control{
        width: 30%;
    }
    .range{
        width: 10%;
    }
    .duration-control{
        width: 40%;
    }
    .profile-name{
        display: flex;
    }
 
    .data{
        font-size: 14px;
    }
    .header{
        font-size: 16px;
        font-weight: 700;
        /* background-color: var(--dark-green) !important; */
    }
    /* LOGINPAGE CSS */
    .full{
        flex-direction:row;
    }
    .welcome-banner{
        width: 40%;
        height: 100vh;
    }
    .banner-head{
        height: 30px;
    }
    .banner-body{
        height: 92%;
        background-size: 70%;
    }
    .analytics-chart{
        background-color: var(--white);
        margin-bottom: 0;
        flex-direction: row;
    }
    .login{
        width: 60%;
        height: 100vh;
    }
    .form-group{
        width: 50%;
    }
    .head-actions{
        width: 20%;
    }
    #updateProfileForm .form-group{
        width: 100%;
    }
    .eType-selector{
        font-size: 1em;
    }
    .login-form a{
        width: 50%;
    }

    .analytic-container{
        display: flex !important;
    
        justify-content: center !important;
    
    }
    header{
        width: 18% !important;
        /* border: red solid; */

    }
    
    
    /* #togglebtn{
        display: none;
    } */
    .brand h4{
        display: initial;
        font-weight: bold;
    }
    /* .container{
        /* border: red solid; */
        /* margin-right: 60px; */
        /* background-color: var(--white); */
   /* } */
    .analytics-header{
        flex-direction: row;
        justify-content: space-between;
        /* border: red solid; */

    }
    .analytics-header h3{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;

    }
    .controls{
        flex-direction: row;
        /* border: red solid; */
        width: 50%;

    }
    .analytics-body{
        flex-direction: row;

    }
    .modal1-content{
        width: 50%;
        height: 80%;
        left: 25%;
        top:8%;
    }
    .payments-header
    {

        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero{
        /* border: red solid; */
        gap: 20px;
        position: absolute;
        z-index: 12;
       


    }
    .circles{
        width: 500px;
        height: 500px;
        display: initial;
    }
    .hero h1{
        font-size: 32px;
    }
    .hero h3{
        font-size:24px ;
    }
    .hero{
        font-size: 16px;
    }
    .getstartedBtn{
        justify-content: flex-start;
    }
    
    .hand_image{
        position: absolute;
        /* border: red solid; */
        bottom: -280px;
        /* width: 50%; */
        z-index: -1;
    
    }
    .hand_image img{
        width: 30%;
    }
    .landing-header{
        font-size: 18px;
    }
    .code-wrapper{
        flex-direction: row;
        height: 80vh;
    }
    .codes{
        width: 50%;
        height: 100%;
    }
    .check-code{
        width: 50%;
        height: 100%;
    }
    .profile-container{
        width: 78% !important;
        /* right: 0 !important; */
    }
    .profile-container::after{
        left: -350px;
    }
    .token-control{
        width: 40%;
    }
    .head-section{
        flex-direction: row;
    }
    .tickets-overview{
        width: 50%;
    }
    .ticket p{
        font-size: 1em;
    }
    .clients{
        flex-direction: row;
        flex-wrap: wrap;

    }
    .client-card{
        width: 32.7%;
    }
    .profile-header{
        width: 40%;
    }
    .profile-body{
      width: 60%;
    
    }
    .profile-body form{
    
      flex-direction: row;
      flex-wrap: wrap;
    }
    .profile-input-group{
      width: 46%;
      
    }
    .profile-input-group label{
      width:30%;
    }
    .profile-input-group:last-child{
      width: 100%;
    }
    .modal2-content .clients{
        flex-direction: column;
    }
    .mdc-snackbar{
        width: 30%;
    }

}
/* @media (min-width: 992px) { */
    /* Override Bootstrap offcanvas behavior to make it always open */
    /* .offcanvas { */
      /* visibility: visible; */
      /* transform: none !important; */
      /* z-index: 99; */
    /* } */
  
    /* Adjust the width of the offcanvas for larger screens if needed */
    /* .offcanvas-start { */
      /* width: 350px; Adjust width as needed */
    /* } */
  /* } */
@media screen and (min-width:1100px) {
 
    .org{
        /* display: flex; */
        width: 25%;
        height: 85vh;
        /* border: var(--green) 1px solid; */
        /* margin-top: 30px !important; */
        /* background-image: url(../img/ww.png);
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat; */
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);  /* Adjust transparency as needed */
        border-radius: 10px;
        padding: 20px;
        backdrop-filter: blur(10px) !important; /* Adjust blur effect as needed */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    
    
    }
    .allocateBtn{
        left: 35.7%;
        bottom: 55%;
        width: 427px;
        


    }
    
}
.modal2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black backdrop */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    visibility: hidden;
    z-index: 10001;
    gap: 10px;
}

.modal2-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-width: 100vw;
    overflow-y: scroll;
    background: var(--black);
    color: var(--pure-white);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.modal2-header{
   
    z-index: 1001;
    display: flex;
    width: 90%;
    justify-content: space-between;
    align-items: center;
}
.close-btn2 {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    cursor: pointer;
    color: var(--pure-white);
    font-size: 24px !important;
    z-index: 10002;

}

@media screen and (min-width: 768px) {
    .modal2 {
        width: 100vw;
        
    }

    .close-btn2 {
        display: block;
    }
}