
html{
    min-height: 100vh;
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
}
body{
    min-height: 80vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
}

.dropdown-menu-scrollable{
    max-height: 500px;
    overflow-y: auto;
}
h2{
    font-weight: 600;
}

.credit_user_form_container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.send_and_claim_form{
    position: relative;
    height: 200px;
    width: 40%;
    /* border: 2px solid rgb(143, 200, 250); */
    background-color: aliceblue;
    box-shadow: 0px 3px 3px rgb(8, 9, 9);
    border-radius: 5px;
    margin-bottom: 20px;
}
.send_and_claim_form input{
    width: 90%;
    height: 40px;
    background-color: white;
    font-size: 18px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
}


#btn-back-to-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: none;
  }

/* CSS */
.button-85 {
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.button-86 {
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: white;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-86:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-86 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  border-left:none ;
}

@keyframes glowing-button-86 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-86:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  left: 0;
  top: 0;
 
  border-left:none ;
  
}
/* NAVBAR */
nav{
    background-color: aliceblue;
    box-shadow: 0px 3px 5px #888888;  
    position: relative;
    min-height: 90px;
}
.navbar-brand .logo{
    height: 90px;
    width: 90px;
    margin-right: 10px;
    margin-left: 20px;
    
}
.navbar-brand {
   font-size: 25px;
   font-weight: 700;
    margin-right: 30px;
    margin-left: 20px;
   
}
.nav-item{
   font-size: 20px;
   font-weight: 600;
    
}
.nav-link a{
    font-size: 20px;
    font-weight: 600;
    color:black;
 }
.nav-item :hover{
    background-color:blue;
}

.socials a{
    text-decoration: none;
    color: blue;  
}
.socials a:hover{
    color:rgb(143, 200, 250);
}
.active_nav{
    background-color:blue;
}






/* ALERTS */
.message_success{
    transition:opacity 1s ;
    transition-timing-function: linear;
    position: absolute; 
    width:100%;
    z-index:1000;
    top:0;
    left:0;
    right:0; 
    color:black;
    font-size: 17px;
}
.message_error{
    transition:opacity 1s ;
    transition-timing-function: linear;
    position: absolute; 
    width:100%;
    z-index:1000;
    top:0;
    left:0;
    right:0; 
    color:black;
    background-color:rgb(248, 99, 99);
    font-size: 17px;
}


/* CART & BASKET */
.cart{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    border-radius: 5px;
    color: white;
   background-color: blue;
    text-decoration: none;
}
.cart:hover{
    height: 45px;
    width: 130px;
}
.basket{
    position: fixed;
    bottom: 150px;
    right: 35px;
    border-radius: 50%;
    background-color: rgb(143, 200, 250);
    z-index: 100;
    text-decoration:none;
    color:black;
    border: 7px solid orange;
}
.basket:hover{
    color: white;
}

.sub-basket{
    position: relative;
}
.sub-basket .badge{
    font-size:16px; 
    position:absolute;
     
     top: -15px;
     left: 35px;
}
.basket_con{
    position: relative;
    min-height: 200px;
}
.mtn_basket_con{
    width: 35%;
    border: 2px solid rgb(119, 171, 216);
    border-radius: 3px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}
.mtn_basket_header{
    margin-top: 120px;
    font-weight: 700;
    text-shadow: 0px 2px 1px #000;

}
#basket_clear_all{
    width: 65%;
    height: 40px;
    border-radius: 3px;
    font-weight: 700;
    background-color: red;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    border: none;
    position: relative;
}
#clear_all_btn{
    font-weight: 700;
    background-color: red;
    color: white;
    font-size: 20px;
    border: none;
    width: 100%;
}
#basket{
    position: relative;
}
#basket{
    width: 100%;
    position: relative;
    display: flex;
}
#basket1{
    width: 40%;
    height: 40px;
    margin-left: 5px;
    background-color: white;
    border: 2px solid rgb(119, 171, 216);
}
#basket2{
    width: 20%;
    height: 40px;
    background-color: white;
    border: 2px solid rgb(119, 171, 216);
}
#basket3{
    width: 20%;
    height: 40px;
    color: red;
    margin-right: 5px;
    border: 2px solid rgb(119, 171, 216);
    border-bottom: 30px;
    background-color: white;
    font-weight: 700;
    position: relative;
}
#basket4{
    width: 20%;
    height: 40px;
    background-color: white;
    border: 2px solid rgb(119, 171, 216);
}
#basket1, #basket2, #basket3, #basket4{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 5px;
}
#basket_total{
    background-color: white;
    width: 50%;
    height: 30px;
    font-weight: 700;
    border: 2px solid rgb(119, 171, 216);
    border-bottom: none;
    margin-top: 5px;
    font-size: 20px;
    border-radius: 5px;
}
#basket_btn{
    background-color: green;
    width: 70%;
    height: 40px;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: white;
    
}

.download_users_button{
    width:40%; 
    height:50px;
    background-image: linear-gradient(to right, black , orange);
    border: none;
    border-radius: 5px;
    color:white;
    font-weight: 600;
}

/* GREETINGS */

.welcome{
    box-shadow: 0px 3px 5px rgb(143, 200, 250); 
    background-color: aliceblue;
    color:black;
    width: 90%;
    
}
.greetings{
    position: relative;
    margin-top: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.compliment{
    padding-bottom: 7px;
}


/* BALANCE */
.balance_container{
    position:relative;
     width:100%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 50px;
    
}
.balance{
    position:relative;
    text-align: center;
    width: 40%;
    border-radius: 5px;
    /* border: 3px solid rgb(143, 200, 250); */
    background-color: aliceblue;
    color:black;
}
.balance_header h4{
    margin-top: 5px;
    margin-bottom: 0;
}
.balance_figure h4{
    margin-top: 0px;
}
.topup button{
    font-weight: 700;
    font-size: 18px;
    color:white;
}
.topup{
    margin-bottom: 10px;
    margin-top: 20px;
    
}
.daily_minus, .daily_plus{
    position: absolute;
}
.daily_minus{
    left: 10px;
    bottom: 0px;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.daily_minus svg{
    color: red;
    height: 30px;
    width: 30px;
}
.daily_plus{
    right: 10px;
    bottom: 0px;
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.daily_plus svg{
    color: green;
    height: 25px;
    width: 70px;
    font-weight: 700;
    font-size: 30px;
}
.balance_figure{
    min-height: 25px;
}
.balance_figure span{
    font-size: 19px;
    color:green;
    font-weight: 700;
    
}

/* OFFERS */
.services{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    font-weight: 700; 
    
}
.offers{
    position: relative;
    margin-bottom: 100px;
}
.package{
    position: relative;
    height: 220px;
    width: 30%;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 15px; 
    background-color: aliceblue;
    user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}


.package:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.package:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.package1{
    background-image: url("../images/mtn_logo.jpeg");
    background-size: 90% 85%;
    background-repeat: no-repeat;
    background-position: center;
    
}
.telecel{
    background-image: url("../images/telecel_logo.jpeg");
    background-size: 90% 85%;
    background-repeat: no-repeat;
    background-position: center;
}
.ishare{
    background-image: url("../images/airteltigo_logo.jpeg");
    background-size: 90% 85%;
    background-repeat: no-repeat;
    background-position: center;
}
.bigtime{
    background-image: url("../images/airteltigo_logo.jpeg");
    background-size: 90% 85%;
    background-repeat: no-repeat;
    background-position: center;
}
.afa{
    background-image: url("../images/afa_logo.jpeg");
    background-size: 90% 85%;
    background-repeat: no-repeat;
    background-position: center;
}
.oraquick{
    background-image: url("../images/oraquick.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.package:hover{
    border: 2px solid blue;
}
.package img{
   width:50%; 
    height:50%;
    border-radius: 45%;
}
 .afa img{
    width:200px; 
    height:90px;
}


/* MTN PORTAL */
.mtn_notice{
    min-height: 60px;
    display: flex;
    align-items: center;
    background-color: rgb(67, 60, 60);
    box-shadow: 0px 6px 5px rgb(8, 9, 9);
    border-left:10px solid red ;
    margin-top: 30px;
}
.portal_status{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.portal_status_container{
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;

}
.portal_status_cont1, .portal_status_cont2{
    display: flex;
    align-items: center;
    height: 50px;
}
.spinner-grow{
    height: 30px;
}

/* #phone_number_input:focus:invalid{
    border: 2px solid red;
    outline: none;
} */

/* #phone_number_input:focus:valid{
    border: 2px solid rgb(10, 254, 10);
    outline: none;
} */
#gh_id:focus:invalid{
    border: 2px solid red;
    outline: none;
}

#gh_id:focus:valid{
    border: 2px solid rgb(10, 254, 10);
    outline: none;
}
#profile_input:focus:invalid{
    border: 2px solid red;
    outline: none;
}

#profile_input:focus:valid{
    border: 2px solid rgb(10, 254, 10);
    outline: none;
}



/* .portal_status_cont2{
    width: 60%;   
} */
.download_refunded_mtn_orders{
    width: 40%;
    height: 50px;
    display: flex;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(143, 200, 250);
}
.download_refunded_mtn_orders a:focus{
    color: rgb(143, 143, 156);
}
.mtn_notice_message{
    color: white;
    margin-right: 1px;
}
.mtn_header{
    font-weight: 700;
    margin-top: 130px; 
    font-size: 35px;

}
.portal_form_container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.portal_form{
    position: relative;
    width: 40%;
    /* border: 2px solid rgb(143, 200, 250); */
    background-color: aliceblue;
    border-radius: 5px;
    box-shadow: 0px 6px 5px rgb(17, 19, 20);
}

.portal_form input{
    width: 90%;
    height: 40px;
    font-size: 20px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
}
.portal_form select{
    width: 90%;
    height: 40px;
    background-color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
}
.select_packge,.type_number{
    margin-top: 20px;
    margin-left: 20px;
    padding-left: 10px;
   
}
.type_number input,#type_number input{
    padding: 10px;
    border: 2px solid black;
}
.select_packge select{
    padding-left: 10px;
     border: 2px solid black;
}
.select_packge{
    margin-top: 20px;
}
.select_package_header{
    margin-top: 10px;
}
.order{
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.order button{
    width: 30%;
    padding: 5px;
}
/* when order button is clicked */
.order button:focus{
   background-color: grey;
}
.send_data{
    margin-top: 30px;
    text-align: center;
}

.load_file__form .choose_file{
    width: 80%;
    height: 32px;
    background-color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
   text-align: center;
}
.mtn_textarea{
    position: relative;
    width: 40%;
    min-height: 100px;
    background-color: aliceblue;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
    box-shadow: 0px 6px 5px rgb(17, 19, 20); 
   
}
.mtn_textarea textarea{
    width: 80%;
    height: 150px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid black;
    padding: 10px;
    margin-top: 20px;
}
.choose{
    margin-left: 20px;
}
.load_file_header{
    text-align: center;
    margin-top: 40px;
}
.choose_file_container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 30px;
    
    
}
.download_users{
    position: relative;
    height: 50px;
    width: 90%;
    border: 2px solid rgb(143, 200, 250);
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
}
.load_file__form{
    position: relative;
    width: 40%;
    /* border: 2px solid rgb(143, 200, 250); */
    background-color: aliceblue;
    border-radius: 5px;
    margin-bottom: 20px;
    padding-top: 10px;
    box-shadow: 0px 6px 5px rgb(17, 19, 20); 
}
.download_file h4 a{
    color: blue;
    margin-left: 5px;
}
.download_file h4 a:hover{
    color: violet;
    text-decoration: underline;
}

.choose_file, .download_file{
    margin-left: 5px;
    text-align: center;
    padding-left: 20px;
}
.export_file{
    margin-top: 30px;
    padding-bottom: 20px;
   
}

.choose_file input{
    width: 100%;
    padding-left: 0;
    box-shadow: 0px 3px 5px rgb(17, 19, 20);
}
.delete_user_container{
    box-shadow: 0px 3px 5px rgb(17, 19, 20);
    width: 50%;
}

/* TELECEL PORTAL */
.telecel_notice_message{
    color: white;
    margin-right: 1px;
    font-size: 17px;
}

/* ISHARE PORTAL */
.at_ishare_notice_message{
    color: white;
    margin-right: 1px;
}


/* BIGTIME */
.at_bigtime_notice_message{
    color: white;
    margin-right: 1px;
    font-size: 15px;
}

/* AFA REGISTRATION PORTAL */
.afa_portal_form{
    position: relative;
    width: 30%;
    /* border: 4px solid rgb(143, 200, 250); */
    background-color: aliceblue;
    border-radius: 5px;
    margin-bottom: 40px;
    box-shadow: 0px 6px 5px rgb(17, 19, 20);
}
.insert_details{
    margin-top: 10px;
    margin-left: 20px;  
}
.insert_details input{
    padding-left: 10px;
    font-weight: 700;
  
}
.afa_portal_form input, .afa_portal_form select{
    width: 90%;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid black;
    border-radius: 10px;
}
.afa_header{
    font-weight: 700;
}
.afa_notice_message{
    color: white;
    margin-right: 1px;
    font-size: 15px;
}



/* CREDIT USER */
.credit_user_header{
    margin-top: 130px;
    font-weight: 700; 
    color:green;
}
.debit_user_header{
    margin-top: 50px;
    color:red;
}
.update_user_header{
    margin-top: 30px;
    font-weight: 700; 
    color:green;
}

/* ORDER PAGES */






.table{
    overflow-x:auto;
    margin-top: 50px;
    position:relative;
    overflow-y: unset;  
    min-height: 75vh;
}
td{
    font-size: 18px;
}
.at_ishare_orders_header{
    font-weight: 700;
    margin-top:130px; 
    color:blue;
}
.mtn_orders_header{
    font-weight: 700;
    margin-top:130px; 
}
.at_bigtime_orders_header{
    font-weight: 700;
    margin-top:120px; 
    color:blue;
}
.telecel_orders_header{
    font-weight: 700;
    margin-top:110px; 
    color:rgb(120, 28, 28);
}
.afa_orders_header{
    font-weight: 700;
    margin-top:110px; 
}
.afa_status_btn_c{
    height: 35px;
    width: 100%;
    background-color: green;
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    text-align: center;
}
.afa_status_btn_p{
    height: 35px;
    width: 100%;
    background-color: red;
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    text-align: center;
}
.afa_status_btn_pr{
    height: 35px;
    width: 100%;
    background-color: orange;
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    text-align: center;
}
.afa_status_btn_n{
    height: 35px;
    width: 100%;
    background-color:grey;
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    text-align: center;
}

/* ADMIN */
.mtn_orders_header{
    font-weight: 700;
    margin-top:130px; 
}
.actions_container {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.actions_container a{
    height: 70px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    font-weight: 700;
    font-size: 18px;
}


.actions_container button{
   width: 20%;
   margin: 20px;
}
.pending_btn{
   border: 2px solid rgb(203, 41, 41);
   
}
.active_pending_btn{
    background-color: rgb(203, 41, 41);
}
.active_processing_btn{
    background-color: orange;
}
.active_completed_btn{
    background-color: green;
}
.processing_btn{
    border: 2px solid yellow;
   
}
.completed_btn{
   width: 20%;
   border: 2px solid green;
}
.action{
    height: 50px;
    margin: 20px;
    width: 20%;
}
.admin_orders_table{
    margin-top: 20px;
 }
 .export{
    position: relative;
    margin-top: 20px;
 }
 .export button{
    background-color: blue;
    color: white;
    height: 50px;
    width: 30%;
    border: none;
    border-radius: 5px;
 }

.change_status_container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.change_status_container form{
    width: 30%;
}
.change_status_container button{
    background-color: transparent;
    border: none;
    color: white;
    font-weight: 600;
    width: 100%;
}
.change_status{
    width: 90%;
    height: 50px;
    color: white;
    font-weight: 700;
    display: flex;
    font-size: 17px;
    justify-content: center;
    align-items: center;
}

.change_status1{
    margin-right: 70px;
    background-color: orange;
}

.change_status2{
    background-color: green;
}

.afa_price{
    position: relative;
    width: 30%;
    border: 2px solid rgb(143, 200, 250);
    background-color: aliceblue;
    border-radius: 5px;
    margin-bottom: 20px;
}
.total_amount_owing_agents{
    width: 30%;
    border: 2px solid rgb(143, 200, 250); 
}



/* REGISTRATION AND LOGIN */
.register{
    font-weight: 700;
}
.quick_links{
    height: 60px;
    font-size: 18px;
    font-weight: 600;
    
}
.login_header{
    font-weight: 700;
    text-align: center;
    margin-top: -50px;
    
}
.login_button{
    margin-top: 20px;
    padding-bottom: 10px;
}
.login_logo_container img{
    height: 160px;
    width: 160px;
}
.login_logo_container{
    height: 160px;
}
.login_page_container{
   width: 100%;
}
.pwd_input{
    width: 90%;
    height: 40px;
    border: 2px solid black;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-right: 5px;
}
.pwd_input input{
    border: none;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}
.pwd_input svg{
    cursor: pointer;
}
.pwd_input .bi-eye-slash{
    display: none;
}
.pwd_input .bi-eye-slash2{
    display: none;
}
.pwd_input .bi-eye-slash3{
    display: none;
}
.register_logo_container img{
    height: 160px;
    width: 160px;
    margin-top: 150px;
}
.register_logo_container{
    height: 120px;
}

.login_form, .register_form{
    margin-bottom: 10px;
    border: 4px solid rgb(143, 200, 250);
    box-shadow: none;
}
.quick_links a{
   color: #041a85;
}

.register_header{
    margin-top: 40px;
    font-weight: 700;
    text-align: center;
    
}
/* .login_logo_container img{
    margin-top: 50px;
} */
.register_logo_container img{
    margin-top: 20px;
}

 .back_to_login {
    color: white;
    width: 30%;
    background-color: red;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
 }
 .back_to_login_container {
    position:relative; 
    height:60px; 
    
}
.back_to_login_container a{
    text-decoration: none;
}

/* PAYSTACK */
.type_amount_con{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 40%;
}
.type_amount{
    width: 40%;
    border: 2px solid rgb(143, 200, 250);
    background-color: aliceblue;
    border-radius: 5px;
   
    justify-content: center;
    align-items: center;
    display: flex;
    height: 150px;
    position: relative;
}
.p_amount{
    width: 60%;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    border: 2px solid black;
}
.enter_amount_header{
    margin-top: 200px;
}
.t_amount_body{
    position: relative;
}



/* ADMIN INFOs */
.ishare_api select{
    width: 90%;
    height: 40px;
    background-color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
}


/* TRANSACTIONS HISTORY */
.transaction_history_header{
    margin-top:130px; 
}
.credit_head{
    position: relative;
}
.credit_type{
    width:75%; 
    height: 30px;
    background-color: green;
    border-radius: 40%;
    font-weight: 500;

}
.debit_type{
    width:75%;
    height: 30px;
    background-color: red;
    border-radius: 40%;
    font-weight: 500;
}


/* PROFILE PAGE */
.insert_profile_details{
    margin-top: 20px;
    margin-left: 20px;
}
.insert_profile_details input,.insert_profile_details select{
    background-color: white;
    padding-left: 10px;
    font-weight: 700;
}



/* PRICES */
.create_prices_header{
    margin-top: 120px;
}
.agent_prices_container{
    position: relative;
    width: 40%;
    border: 2px solid rgb(143, 200, 250);
    background-color: aliceblue;
    border-radius: 5px;
    margin-bottom: 20px;
    height: auto;
}
.agent_prices_box{
    position: relative;
    width: 90%;
    margin: 15px;
    height: 45px;
    display: flex;
    
}
.agent_prices_box div{
    position: relative;
    border: 2px solid rgb(143, 200, 250);
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.agent_prices_box div input,.agent_prices_box div form button{
    width: 100%;
    height: 100%;
    border: none;
    font-weight: 600;
}
.agent_prices_button{
    margin-top: 120px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.agent_prices_button a{
    text-decoration: none;
    position: relative;
    width: 25%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn_insider{
    width: 100%;
    margin: 15px;
    height: 70px;
    text-align: center;
}
.telecel_price_button, .ishare_price_button, .bigtime_price_button{
    margin-top: 10px;
}
.custom_prices_table{
    overflow-x:auto;
    margin-top: 20px;
    position: relative;
    overflow-y: unset;  
    min-height: 75vh;
}

/* DELETE USER */
.delete2{
    width: 100%;
}

.go_back ,.con_delete {
    position: relative;
    width: 35%;
    margin: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.delete_header{
    margin-top: 180px;
}
.go_back a,.con_delete button{
    width: 100%;
    height: 50px;
    display: flex;
    color:white;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
} 



/* CREDIT USER AND UPDATE USER */
.credit_user_form_container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.credit_user_form{
    position: relative;
    height: 200px;
    width: 30%;
    /* border: 2px solid rgb(143, 200, 250); */
    background-color: aliceblue;
    box-shadow: 0px 3px 3px rgb(8, 9, 9);
    border-radius: 5px;
    margin-bottom: 20px;
}
.credit_user_form input{
    width: 90%;
    height: 40px;
    background-color: white;
    font-size: 18px;
    font-weight: 600;
    border: 0;
    border-radius: 10px;
}
 .delete{
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
 }
 .delete button{
    color: white;
    width: 30%;
 }



 /* OTP */
 .enter_otp_comment_cont, .enter_otp_cont{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
 }
  .reset_logo_container{
    height: 160px;
    width: 160px;
 }

 #otp_comment{
    width: 40%;
    min-height: 80px;
    color: white;
    background-color: rgb(61, 48, 57);
     box-shadow: 0px 5px 2px #000; 
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;


 }
 .reset_logo{
     margin-top:0;
 }

 .type_otp{
    width: 40%;
 }
 .otp_input{
    width: 100%;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
}
.reset_back_to_login {
    color: white;
    width: 40%;
    background-color: red;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
 }

.reset_back_to_login_container a{
    text-decoration: none;
}
.proceed{
    width:100%;
    height: 45px;
}
.reset_pwd_input{
    width: 40%;
    height: 40px;
    border: 2px solid black;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-right: 5px;
}
.reset_pwd_input input{
    border: none;
    width: 70%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

/* FOOTER */
.footer_container{
    border: 2px solid rgb(143, 200, 250);
    width:100%;

}
.ft-boss{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.large_screen_footer{
    height: 50px;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}
.small_screen_footer{
    height: 50px;
    width: 100%;
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: black;
}


#daily_chart_div, #weekly_chart_div, #monthly_chart_div{
    width: 50%;
    min-height: 300px;
    margin-bottom: 20px;
}

/* .footer_socials a{
    position: fixed;
    left: 0;
    bottom: 60px;
    
}
.footer_socials a:first-of-type{
    padding-bottom: 50px;
}
.footer_socials a:nth-of-type(2){
    padding-left: 5px;
  
} */













/* MEDIA QUERY */

/* SMALLER SCREEN MEDIA QUERY */

  @media screen and (min-width: 100px) and (max-width: 530px) {
   .navbar-brand .logo{
    height: 85px;
    width: 95px;
    margin-left: 5px;
  }
   .navbar-brand {
     font-size: 15px;
     font-weight: 700;
      margin-right: 10px;
      margin-left: 10px;
  
  }
   .services{
       margin-top: 50px;
   }
   .download_refunded_mtn_orders{
    width: 90%;
    font-size: 16px;
   }
   .basket{
       bottom: 100px;
    }
    .package{
       width: 90%;
       margin: 20px;
   }
   .balance{
       width: 90%;
   }
    .send_and_claim_form{
       width: 90%;
   }
   .balance h4{
    margin-top: 0;
   }
   .balance_figure{
    padding-top: 0;
   }
   .balance_header h4{
    margin-bottom: 0;
   }
   .balance_header{
    margin-top: 5px;
   }
   .package img{
       width:100px; 
       height:50px;
       border-radius: 45%;
   }
   .footer h5{
       font-size: 18px;
   }
   .compliment{
       font-size: 16px;
   }
   .mtn_notice_message{
       color: white;
       font-size: 14px;
   }
   .mtn_notice{
       min-height: 90px;
   }
   .portal_form{
       width: 90%;  
   }
   .load_file__form{
       width: 90%;
   }
   .mtn_textarea{
    width: 90%;  
    }
.mtn_textarea textarea{
    width: 80%;
    padding-top: 5px;
}
   .download_file h4{
    font-size: 16px;
   }
   .order button{
    width: 40%;

   }
   .export_file{
    margin-top: 15px;
    margin-bottom: 0;
   }
   .choose_file input{
    font-size: 16px;
   }
   .order{
    margin-top: 20px;
   }
   .topup button{
    margin-top: 5px;
    font-weight: 700;
    margin-bottom: 8px;
}
   .type_number input, .select_packge select{
    font-size: 14px;
    
   }
   .afa_portal_form{
       width: 80%;
   }
   .afa_notice_message{
       font-size: 14px;
   }
   .at_ishare_notice_message{
    font-size: 13px;
    }
    .afa_orders_header{
        margin-top:130px; 
    }
    .at_bigtime_orders_header{
        font-weight: 700;
        margin-top:130px; 
    }
    .at_ishare_orders_header{
        font-weight: 700;
        margin-top:130px; 
    }
    .mtn_orders_header{
        font-weight: 700;
        margin-top:130px; 
    }
    .telecel_orders_header{
        font-weight: 700;
        margin-top:130px; 
    }
    .footer h5{
        font-size: 15px;
    }
    .transaction_history_header{
        margin-top:130px; 
    }
    .actions_container {
        margin-top: 30px;
       position: relative;
       
    }

    .actions_container a{
        height: 70px;
        width: 30%;
        margin: 5px;
        font-size: 13px;  
     }
     .export button{
        background-color: blue;
        color: white;
        width: 70%;
        height:50px;
        font-size: 12px;
     }
     .credit_user_form{
        width: 70%;
    }

     .delete{
        margin-top: 20px;
     }
     .delete button{
        color: white;
        width: 70%;
     }
    .ishare_api_btn{
        margin-top: 20px;
    }
    .telecel_api_btn{
        margin-top: 20px;
    }
    .telecel_api_header{
        margin-top: 20px;
    }
    .footer h5{
        font-size: 14px;
     }
     .agent_prices_button{
        width: 100%;
    }
    .agent_prices_button a{
        height: 30px;
        
    }
    .btn_insider{
        margin: 2px;
        font-size: 8px;
        width: 100%;
    }
    .sales_container{
        width: 70%;
  
    }
    .mtn_price_button{
        margin-top: 160px;
    }
    .agent_prices_button a{
        width: 30%;
    }
    .btn_insider{
        width: 100%;
        margin: 5px;
        height: 70px;
        font-size: 14px;
        text-align: center;
    }
    .telecel_price_button, .ishare_price_button, .bigtime_price_button{
        margin-top: 60px;
    }
    td{
        font-size: 20px;
    }
    .credit_type{
        width:100%; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .debit_type{
        width:100%;
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .t_table{
        width: 1000px;
    }
    .mtn_basket_con{
        width: 90%;
        border: 2px solid rgb(119, 171, 216);
        border-radius: 3px;
        position: relative;
    }
    .mtn_basket_header{
        margin-top: 70px;
        
    }#basket1{
        width: 40%;
    }
    #basket2{
        width: 20%;
    }
    #basket3{
        width: 20%;
    }
    #basket4{
        width: 20%;
    }
    #basket4, #basket3, #basket2, #basket1{
        font-size: 16px;
    }
    .basket_svg{
        width: 20px;
        height: 20px;
    }#basket_total{   
        width: 70%;
        font-weight: 600;
        border: 2px solid rgb(119, 171, 216);
    }
    #basket_btn{
        width: 80%;
        font-size: 18px;
    }
    #basket_clear_all{
        width: 75%;
        font-weight: 600;
    }
    .mtn_basket_header{
        margin-top: 130px;
        
    }
    .change_status{
        width: 90%;
        height: 50px;
        font-weight: 700;
        font-size: 12px;
        margin-top: 20px;
      
    }
    .change_status_container form{
        width: 48%;
    }
    /* PAYSTACK */
.type_amount_con{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 80%;
}
.type_amount{
    width: 80%;
    border: 2px solid rgb(143, 200, 250);
    background-color: aliceblue;
    border-radius: 5px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 150px;

}
.p_amount{
    width: 60%;
    height: 40px;
    border-radius: 5px;
}
.enter_amount_header{
    margin-top: 200px;
}
.welcome{
    width: 90%;
}
.register_header{
    margin-top: 40px;
    margin-bottom: 10px;
}
.register_form{
    margin-bottom: 10px;
}
.register_btn button{
    width: 70%;
    height: 40px;
    font-weight: 600;
    font-size: 18px;
}
.back_to_login{
    width: 80%;
    margin-top: 10px;
}
.table{
    margin-top: 20px;
}
.footer_socials{ 
    bottom: 50px;
}
 /* OTP */
 #otp_comment{
    width: 90%;
    min-height: 80px;
 }
 .type_otp{
    width: 100%;
 }
 .otp_input{
    width: 70%;
 }
 .reset_back_to_login {
    width: 70%;
    height: 45px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
 }
.proceed{
    width:70%;
    height: 45px;
}
.conf{
    font-size: 20px;
}
#daily_chart_div, #weekly_chart_div, #monthly_chart_div{
    width: 95%;
}
.total_amount_owing_agents{
    width: 70%;
}

.delete_user_container{
    width: 90%;
}
.greetings{
    margin-top: 130px; 
    margin-bottom: 30px;
}
.download_users_button{
    width:90%; 
}
 }










 @media screen and (min-width: 531px) and (max-width: 900px) {
    .package{
        width: 43%;
    }
    .navbar-brand .logo{
        height: 85px;
        width: 95px;
        margin-left: 5px;
    }
      .download_refunded_mtn_orders{
    width: 60%;
    font-size: 16px;
   }
      .balance{
        width: 60%;
    }
    .send_and_claim_form{
       width: 60%;
   }
    .portal_form{
        width: 60%;  
    }
    .load_file__form{
        width: 60%;  
    }
       .mtn_textarea{
    width: 60%;  
    }
    .mtn_textarea textarea{
        width: 90%;
        padding-top: 5px;
    }
    .mtn_notice_message{
        color: white;
        font-size: 15px;
    }
    .basket{
        bottom: 100px;
    }
    .at_ishare_notice_message{
       font-size: 15px;
    }
    .afa_notice_message{
        font-size: 12px;
    }
    .afa_portal_form{
        width: 60%;
    }
    .actions_container a{
        height: 70px;
        width: 30%;
        margin: 10px;
        font-size: 15px;  
     }
     .export button{
        background-color: blue;
        color: white;
        width: 50%;
        height:50px;
        font-size: 16px;
    }
     .credit_user_form{
        width: 60%;
    }
    .agent_prices_button a{
        width: 30%;
    }
    .btn_insider{
        font-size: 16px;
        text-align: center;
    }
    .telecel_price_button, .ishare_price_button, .bigtime_price_button{
        margin-top: 70px;
    }
    .mtn_price_button{
        margin-top: 200px;
    }


     .delete{
        margin-top: 20px;
     }
     .delete button{
        color: white;
        width: 60%;
     }
     .footer h5{
        font-size: 14px;
     }
    .agent_prices_button a{
        height: 30px;
        width: 35%;
        
    }
    .agent_prices_button{
        width: 100%;
    }
    .agent_prices_button a{
        height: 30px;
        
    }
    .btn_insider{
        margin: 10px;
        font-size: 13px;
        width: 100%;
    }
    .sales_container{
        width: 60%;
    
    }
    .credit_type{
        width:100%; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .debit_type{
        width:100%;
        display: flex;
        justify-content: center;
        align-items: center;

    }    
    .mtn_basket_header{
        margin-top: 130px;
        
    }#basket1{
        width: 55%;
    }
    #basket2{

        width: 35%;
    }
    #basket3{
        width: 15%;
    }
    #basket3, #basket2, #basket1{
        font-size: 17px;
    }
    .basket_svg{
        width: 25px;
        height: 25px;
    }
    .mtn_basket_con{
        width: 70%;
       
    }
    .change_status{
        width: 90%;
        height: 50px;
        font-weight: 700;
        font-size: 15px;
        margin-top: 20px;
      
    }
    .change_status_container form{
        width: 48%;
    }
/* PAYSTACK */
.type_amount_con{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 60%;
}
.type_amount{
    width: 60%;
    border: 2px solid rgb(143, 200, 250);
     background-color: aliceblue;
    border-radius: 5px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 150px;

}
.p_amount{
    width: 40%;
    height: 40px;
    border-radius: 5px;

}
.enter_amount_header{
    margin-top: 200px;
}
 /* OTP */
 #otp_comment{
    width: 80%;
    min-height: 80px;
 }
 .type_otp{
    width: 100%;
 }
 .otp_input{
    width: 50%;
 }
 .reset_back_to_login {
    width: 50%;
 }
.proceed{
    width:50%;
}
.conf{
    font-size: 20px;
}
#daily_chart_div, #weekly_chart_div, #monthly_chart_div{
    width: 80%;
}
.total_amount_owing_agents{
    width: 60%;
}
.delete_user_container{
    width: 80%;
}
.greetings{
    margin-top: 130px; 
    margin-bottom: 30px;
}
.download_users_button{
    width:60%; 
}
 }











 @media screen and (min-width: 901px) and (max-width: 1040px) {
    .package{
        width: 29%;
    }
    .balance{
        width: 50%;
    }
    .send_and_claim_form{
       width: 50%;
   }
    .portal_form{
        width: 50%;  
    }
    .load_file__form{
        width: 50%;  
    }
       .mtn_textarea{
    width: 50%;  
    }
.mtn_textarea textarea{
    width: 90%;
    padding-top: 5px;
}
    .credit_user_form{
        width: 40%;
    }

     .delete{
        margin-top: 20px;
     }
     .delete button{
        color: white;
        width: 40%;
     }
     .afa_portal_form{
        width: 40%;
    }
    .agent_prices_button a{
        height: 30px;
        
    }
    .btn_insider{
        margin: 15px;
        font-size: 13px;
        width: 100%;
    }
    .agent_prices_button a{
        width: 30%;
    }
    .btn_insider{
        font-size: 16px;
        text-align: center;
    }
    .telecel_price_button, .ishare_price_button, .bigtime_price_button{
        margin-top: 70px;
    }
    .mtn_price_button{
        margin-top: 200px;
    }

    .credit_type{
        width:100%; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .debit_type{
        width:100%;
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .mtn_basket_header{
        margin-top: 90px;
        
    }#basket1{
        width: 55%;
    }
    #basket2{
        width: 35%;
    }
    #basket3{
        width: 15%;
    }
    #basket3, #basket2, #basket1{
        font-size: 17px;
    }
    .basket_svg{
        width: 20px;
        height: 20px;
    }
    .mtn_basket_con{
        width: 50%;
       
    }.mtn_basket_header{
        margin-top: 140px;
       
    }
    .enter_amount_header{
    margin-top: 200px;
 }
  /* OTP */
  #otp_comment{
    width: 60%;
 }
 .type_otp{
    width: 100%;
 }
 .otp_input{
    width: 40%;
 }
 .reset_back_to_login {
    width: 40%;
 }
.proceed{
    width:40%;
}
.conf{
    font-size: 20px;
}
.total_amount_owing_agents{
    width: 40%;
}
.delete_user_container{
    width: 60%;
}
.greetings{
    margin-top: 130px; 
    margin-bottom: 30px;
}
.download_users_button{
    width:50%; 
}
 }