/* @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');
:root{
    --bg-white: #FFFFFF;
    --bg-ligh-blue: #748FFC;
    --shape-color: #D8D8D8;
    --bg-primary: rgb(255,129,123);
    --danger-col:#df4759;
    --primary-gradient: linear-gradient(90deg, rgba(255,129,123,1) 0%, rgba(254,94,163,1) 100%);
    --primary-gradient-2: linear-gradient(180deg, rgba(229,101,215,1) 0%, rgba(154,25,142,1) 100%);
    --button-gradient: linear-gradient(to left top, #d566f5, #e460e4, #ef5dd4, #f75bc4, #fc5bb5, #ff5ea5, #ff6397, #ff698a, #ff747b, #ff816e, #ff9062, #ff9f5a);
    --box-shadow-1: rgba(0, 0, 0, 0.16) 0px 1px 4px 0px;;
    --box-shadow-2:  rgba(67, 71, 85, 0.2) 0px 0px 5.6px 0px, rgba(90, 125, 188, 0.05) 0px 5.6px 8px 0px;
    --box-shadow-3:  rgba(0, 0, 0, 0.12) 0px 1px 3px 0px, rgba(0, 0, 0, 0.24) 0px 1px 2px 0px;
    --keypad-box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    --border-col-pri: #E3DFDF;
    --sec-color1:#FF7E7C;
    --sec-color2:#DA65EB;
    --sec-color3:#FF5EA1;
    --sec-color5:#206CEC;  
    --sec-color6:#E565D7; 
    --sec-color7:#666666;
    --primary-color2:#9A198E;
    --grey-1:#67677B;
    --grey-2:#4C4E52;
    --text-black:#040415;
    --bg-col-2:#748ffc18;
}

*{
    padding: 0;
    margin: 0;
    outline: none;
}

a{
    text-decoration: none;
    color: #1b1b1b;
}

body{
    /* font-family: 'Work Sans', sans-serif; */
    /* font-family: 'Barlow', sans-serif; */
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-black);
    
    background: #748ffc09;
}
input{
    font-family: 'Montserrat', sans-serif;
}

.img-notf-id{
    display: none;
}
/* Temporary CSS */
.soon-message{    
    display: none;
    width: fit-content;
    margin: 0 auto;    
}
.soon-message p{
    padding: 5px 10px;
    text-align: center;
    margin-top: 5px;
    background: var(--bg-col-2);
    color: #4C4E52;
    font-size: 0.8em;
}

/* Modal */
.modal {
    display: none; 
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.612); /* Black w/ opacity */
    transition: 0.5s;   
  }
  .modal.close{
    width: 0;
    height: 0;
    transition: .3s;
  }

  .modal-content {
    display: grid;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    /* margin-top: 50%; */
    padding:5px 20px;
    padding-bottom: 20px;
    border: 1px solid var(--border-col-pri);
    border-radius: 5px;
    width: 80%; /* Could be more or less, depending on screen size */
    transition: 0.5s;
  }
  .modal-content .info i{
    margin-right: 2px;
  }
  .modal-content .info .info-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .modal-content .info .info-item .head{
    font-size: 1.1em;
    font-weight: 500;
  }
  .modal-content .message{
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-col-pri);
  }

  #message-modal,
  #vps-modal{
    display: none;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.612); /* Black w/ opacity */
  }
  #vps-modal{
    display: block;
  }
  #message-modal .modal-content,
  #vps-modal .modal-content{
    height: 50vh;
    margin-top: 25vh;
  }
  #message-modal .image-content,
  #vps-modal .image-content{
    position: relative;
  }
  #message-modal .image-content .notf-imagebx,
  #vps-modal .image-content .notf-imagebx{
    height: calc((90vw/4) * 6);
    width: 85%;
    /* border-radius: 10px; */
    margin: 0 auto;
    margin-top: 15vh;
    overflow: hidden;
  }
  #message-modal .image-content .notf-imagebx img,
  #vps-modal .image-content .notf-imagebx img{
    width: 100%;
    border-radius: 10px;
  }
  
  #message-modal .image-content .image-close,
  #vps-modal .image-content .image-close{
    position: absolute;
    left: 49vw;
    top: -48;
  }

  #message-modal .image-content .image-close  path,
  #vps-modal .image-content .image-close  path{
    stroke: #d3d3d3d9;
  }
  #win-modal{
    display:block;
  }

  #win-modal .modal-content{
    height: 70%;
  }
  

  .close {
    color: #aaa;
    /* float: right; */
    font-size: 28px;
    font-weight: bold;
    text-align: right;
  }

  .close:hover,
  .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* Modal End */
.divider{
    margin: 60px 0;
}

/* Dashboard */
.top-bar{
    width: 100%;    
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px ;     
    padding: 0 40px;
}
.top-bar .img-box{
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--bg-col-2);
}
.top-bar .img-box svg{
    width: 16px;
    height: 16px;
}
.top-bar .img-box svg path{
    stroke: var(--bg-ligh-blue);
}
.top-bar a{
    color: var(--bg-ligh-blue);
}
.top-bar h3{
    font-size: 0.9em;
    font-weight: 600;
    color: #4C4E52;
}
/* Empty Box */
.top-bar .empty{
    width: 32px;
    height: 32px;
}
.main-content{
    overflow-x: hidden;  
}

.top-bar i{
    font-size: 1.3em;
    margin: 0 20px;
    color: var(--bg-ligh-blue);
}
.top-bar .secondary-menu{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-gradient);
    margin: 0 20px;
}
.dashboard-bar{
    box-sizing: border-box;
    width: 80%;
    margin: 0 auto;    
    margin-top: 40px;
}
.dashboard-bar .flex-bar{
    display: flex;
    align-items: center;
}
.dashboard-bar .flex-bar .img-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: var(--bg-col-2);
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}
.dashboard-bar .flex-bar .img-box svg{
    width: 18px;
    height: 18px;
}
.dashboard-bar .flex-bar .img-box svg path{
    /* stroke: var(--bg-ligh-blue); */
    stroke: #748ffc66;
}
.dashboard-bar .flex-bar .img-box.notification svg{
    width: 12px;
    height: 12px;
}
.dashboard-bar .flex-bar .details{
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dashboard-bar .flex-bar .details .greetings{
    font-size: 0.65em;
    color: #4C4E52;
}
/* user package here */
.dashboard-bar .flex-bar .details .user-badge p{
    font-size: 0.9em;
    color: #4C4E52;
    margin-right: 4px;
}
.dashboard-bar .flex-bar .user-badge{
    display: flex;
    align-items: center;
}
.dashboard-bar .flex-bar .user-badge .handle{
    font-weight: 1000;
}
.dashboard-bar .flex-bar .user-badge svg{
    width: 16px;
    height: 16px;
}
/* circular spinner/loader */

.loader {
    border: 1px solid #f3f3f3;
    border-radius: 50%;
    border-top: 1px solid var(--bg-gradient-bottom);
    width: 12px;
    height: 12px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  .preloader.support{
    width: 80%;
    /* display: none; */
    height: 140px;
    margin: 0 auto;
    margin-top: 30vh;
  }
  .preloader.support .loader{
    width: 94px;
    height:94px;
    margin: 0 auto;
    border: 1px solid #f3f3f3;
    border-top: 1px solid var(--bg-gradient-bottom);
  }
  .preloader.support p{
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .loader.funding {
    display: none;
  }
/* Slider with Image */
.message-btn{
    padding: 0;
    border-width: 100%;
    text-align: center;
    /* margin-bottom: 20px; */
}
/* .message-action{
    display: inline-block;
    width: 100%;
    padding: 13px 0;
    font-size: .9em;
    font-weight: 600;
    background: var(--bg-ligh-blue);
    border-radius: 15px;
    color: var(--bg-white);    
} */
.dash-slider{
    /* display: flex; */
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;

}

.dash-card{
    box-sizing: border-box;
    width: 95%;
    position: relative;       
    color: var(--bg-white);
    margin: 0 auto;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    /* background: var(--bg-ligh-blue); */
    background: linear-gradient(90deg, rgba(104,128,226,1) 0%, rgba(116,143,252,1) 35%, rgba(92,114,201,1) 100%);
    border-radius: 10px;
}
.raffle-card{
    box-sizing: border-box;
    width: 80%;
    margin: 0 auto;
    padding: 15px 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: white;
}
.raffle-card .info-block{
    font-size: 0.8em;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 15px;
    color: #4C4E52;
}
.raffle-card .details{
    font-size: 0.8em;
    color: #4C4E52;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.raffle-card .details .head{
    font-weight: 900;
}
.raffle-card .details .date{
    text-align: right;
}
/* .raffle-card .details .link a{
    background: var(--bg-ligh-blue);
    color: white;
    padding: 5px 8px;
    font-weight: 700;
    border-radius: 4px;
} */
/* Raffle Progress */
#progress {
    position: relative;
    margin-bottom: 10px;
  }
  #progress-bar {
    position: absolute;
    background: var(--bg-ligh-blue);
    height: 5px;
    width: 0%;
    top: 40%;
    left: 0;
    z-index: 1;
  }
  #progress-bar2 {
    position: absolute;
    background: rgb(206, 206, 206);
    height: 5px;
    width: 100%;
    top: 40%;
    left: 0;
  }
  #progress-num {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }
  #progress-num::before {
    content: "";
    background-color: lightgray;
    position: absolute;
    top: 50%;
    left: 0;
    height: 5px;
    width: 100%;
    z-index: -1;
  }
  #progress-num .step {
    border: 3px solid lightgray;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    line-height: 18px;
    text-align: center;
    background-color: rgb(218, 218, 218);
    font-family: sans-serif;
    font-size: 14px;  
    position: relative;
    z-index: 1;
  }
  #progress-num .step.active {
    border-color: var(--bg-ligh-blue);
    background-color: var(--bg-ligh-blue);
    color: #fff;
  }
  #progress-num .step .img-indicator{
    display: none;
    position: absolute;
    top: -13;
    left: -3;
    width: 22px;
    height: 22px;
  }
  .btn {
      background: lightgray;    
      border: none;
      border-radius: 3px;
      padding: 6px 12px;   
  }

/* End Of Raffle Progress */

.dash-card a{
    color: white;
}


.dash-card .wallet-info{    
    
    top: 20px;
    left: 30px;
    text-align: left;
}
.dash-card .wallet-info .header{
    font-size: 0.9em;
    font-weight: 300;
    text-align: left;
    margin-bottom: 3px;
}
.dash-card .wallet-info .flex-group{
    display: flex;
    justify-content: left;  
    margin-top: 10px;      
}
.dash-card .wallet-info .flex-group img{
    margin-right: 2px;
    transform: translateX(-10%);
}
.dash-card .wallet-info .balance{
    font-size: 2em;
    font-weight: 800;
    margin-left: 5px;
}
.dash-card .wallet-info .account-details{
    line-height: 1;
    font-size: 0.8em;
    margin-top: 20px;
}
.dash-card .fund-methods,
.message-action,
.marketing-action{
    box-sizing: border-box;
    width: 100%;
    height: 49px;
    display: flex;
    justify-content: center;
    padding: 15px 10px;    
    margin-top: 20px;
    align-items: center;
    column-gap: 5px;
    border-radius: 8px;
    background: var(--primary-gradient-2);
}
.dash-card .fund-methods svg{
    width: 18px;
    height: 18px;
}
.dash-card .fund-methods svg path{
    stroke: white;
}
.dash-card .fund-methods p,
.message-action,
.marketing-action {
    font-size: 0.9em;
    color: white;
}
.marketing-action{
    width: 80%;
    margin: 0 auto;
    margin-bottom:40px;
}
.dash-card .shield-box{
    width: 32px;
    height: 32px;
    position: absolute;
    top: 28;
    right: 30;
}
.dash-card .shield-box img{
    width: 100%;
}




/* Message Board */
.message-board{
    box-sizing: border-box;
    width: 80%;
    margin: 0 auto;    
    height: 80px;
    margin-top: 40px;
    color: #546dcf;
    font-size: 0.8em;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(104,128,226,0.5) 0%, rgba(116,143,252,0.5) 35%, rgba(92,114,201,0.5) 100%);

}
.message-board img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}




.dash-card .message{
    position: absolute;
    padding: 10px;
    
    top: 20px;
    left:10px;
}

.la-angle-left,
.la-angle-right{
    position: absolute;
    top: 160;
    font-size: 1.4em;
}

.la-angle-left{
    left: 8;
}
.la-angle-right{
    right: 8;
}

.button-group.card{
    position: absolute;
    top:130;
    left: 25;
}
.button-group.card .button-primary{
    padding: 5px 10px;
    border-radius: 4px;
}
/* End of Slider with image */

.indicator{
    width: 8px;
    height: 8px;
    background-color: rgb(128, 122, 122);
    border-radius: 50%;
    margin-right: 3px;
}
.indicator.active{
    width: 15px;
    border-radius: 5px;
    background-color: black;
    transition: .3s;
}
.indicator.menu{
    width: 6px;
    height: 6px;
    background-color: black;
}
.dashboard-navigations{
    width: 100%; 
    margin-top: 30px; 
    text-align: center; 
    /* padding-bottom: 40px;  */
    
}
.dashboard-navigations .nav-menu{
    box-sizing: border-box;
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-items: center;
    /* padding: 0 32px; */
    margin-top: 20px;
    /* column-gap: 10px; */
}
.dashboard-navigations .nav-menu .nav-group{
    display: flex;
    flex-direction: column;         
    justify-content: center;  
    align-items: center;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: var(--bg-col-2);
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}
.dashboard-navigations .nav-menu .nav-group .icon-box{        
    width: 48px;
    height: 48px;  
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-col-2);
    /* text-align: center; */
    border-radius: 50%;
}
.dashboard-navigations .nav-menu .nav-group .icon-box.var1 svg path{
    stroke: var(--sec-color1);
}
.dashboard-navigations .nav-menu .nav-group .icon-box.var2 svg path{
    stroke: var(--sec-color2);
}
.dashboard-navigations .nav-menu .nav-group .icon-box.var3 svg path{
    stroke: var(--sec-color3);
}
.dashboard-navigations .nav-menu .nav-group .icon-box svg{
    
    height: 24px;
    width: 24px;        
}
.dashboard-navigations .nav-menu .nav-group p{
    font-size: 0.9em;
    /* font-weight: 300; */
    color: #4C4E52;
    transform: translateY(20%);
}





/* Analytics Start */
.transaction-history{
    display: flex; 
    flex-direction: column;
    /* justify-content: space-around;        */
    
    margin-top: 40px;
    padding: 10px 20px;
    margin-bottom: 40px;
    /* margin: 0 auto; */
}
.transaction-history .card-header{
    display: flex;
    justify-content: space-between;
}
.transaction-history .transaction{
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-col-pri);
    border-radius: 15px;
    padding: 10px;
    margin-top: 15px;
}
.transaction-history .transaction .icon-box{
    width: 40px;
    height: 40px;
    border: none;
    box-shadow: var(--box-shadow-1);
    border-radius: 10px;
    text-align: center;
}
.transaction-history .transaction .icon-box.airtime{
    color: var(--sec-color1);
}
.transaction-history .transaction .icon-box.data{
    color: var(--sec-color2);
}
.transaction-history .transaction .icon-box i{
    transform: translateY(65%);
    font-size: 1.2em;
    
}
.transaction-history .transaction .transaction-type .date{
    font-size: 0.7em;
    color: gray;
    margin-top: 3px;
}
.transaction-history .transaction .transaction-type{
    width: 33%;
}
.transaction-history .transaction .transaction-amount{
    width: 33%;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}
.bottom-nav{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--bg-white);
    position: fixed;
    bottom: 0;
}
.bottom-nav a{
    padding: 10px 5px;
    /* color: var(--sec-color3); */
    /* color: var(--primary-color2); */
    color: var(--sec-color6);
}
.bottom-nav a.active{
    height: 100%;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--grey-2); */
    background-color: var(--primary-color2);
    color: var(--bg-white);
    /* text-align: center; */
    border: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transition: .3s;   
}
.bottom-nav a .nav-icon{
    text-align: center;
}


.bottom-nav a .nav-icon svg{
    width: 20px;
    height: 20px;
}
.bottom-nav a .nav-icon svg path{
    /* stroke: var(--sec-color3); */
    /* stroke: var(--primary-color2); */
    stroke: var(--sec-color6);
}

.bottom-nav a.active .nav-icon svg path{
    stroke: var(--bg-white);
}

.bottom-nav a .nav-icon p{
    font-size: 0.7em;
}




/* Dashboard End */
/* Airtime Page */
.networkGroup{
    margin-top: 20px;
}
.networkGroup p{
    text-align: center;
    margin-bottom: 10px;
    
}
.networkGroup .networks{
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.networkGroup .networks .network img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;    
}
.input-group.recepient{
    margin-top:10px;
    padding: 15px 25px;
}

.input-group.recepient i{
    position: absolute;
    font-size: 1.8em;
    color: var(--border-col-pri);
    margin-top: 8px;
    margin-left: 5px;
}
.input-group.recepient input{
    width: 100%;
    font-size: 0.9em;
    padding: 12px 40px;
    border: 1px solid var(--border-col-pri);
    border-radius: 12px;
}
.input-group.amount{
    margin-top: 20px;
    padding: 0 25px;
}
.input-group.amount .flex-group{
    display: flex;
    justify-content: left;        
}
.input-group.amount .flex-group img{
    margin-right: 5px;
}
.input-group.amount input{
    /* font-family: 'Barlow', sans-serif; */
    font-size: 1.9em;
    width: 60%;
    font-weight: 700;
    border: none;
}
.input-group.amount p{
    color: var(--grey-1);
    font-size: 0.7em;
}
#discount-currency i{
    font-size: 0.9em;
}

/* Keyboard */
.keyboard-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 0 20px;
}
.keypad{
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-radius: 10px;   
    margin: 10px auto;     
}
.keypad p{
    transform: translateY(30%);
    font-size: 1.3em;
    font-weight: 900;
    color: var(--grey-2);
}
.keypad.backspace p{
    transform: translateY(45%);
}
.keypad:hover{
    background-color: var(--bg-white);
    color: var(--sec-color3);
    box-shadow: var(--keypad-box-shadow);     
}
 /* Keyboard End */

.button-group{
    padding: 0 60px;
    margin-bottom: 30px;
    text-align: center;
}
.button-group.data-page{
    margin-top: 60px;
}
.button-group .button-primary{
    padding:15px;
    color: var(--bg-white);
    background-image: var(--primary-gradient-2);
    border-radius: 25px;
    font-weight: 600;
}


/* Airtime Page End */
/* Data Page */
.input-group.recepient.data-page{
    margin-top: 60px;
}
.input-group.recepient select{
    width: 100%;
    font-size: 0.9em;
    padding: 12px 15px;
    border: 1px solid var(--border-col-pri);
    background-color: var(--bg-white);
    border-radius: 12px;
}
.input-group.button{
    text-align: center;
    margin-top: 20px;
}
.input-group input[type=submit]{
    width: 60%;
    padding: 10px 15px;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--bg-white);
    background-image: var(--primary-gradient-2);
    border: none;
    border-radius: 8px; 
}
.messages{
    text-align: center;
    list-style: none;
}
.messages .error{
    color: var(--danger-col);
}
/* Premium Page */
.top-spacer{
    height: 40px;
}
.emoji-container{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 6em;
    margin-top: 40px;
}
.bottom-spacer{
    height: 100px;
    width: 60%;
    margin: 0 auto;
}
.referral-counter{
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    color: var(--grey-2);
}
.referral-counter strong{
    font-size: 0.9em;
}
.referral-counter i{
    font-size: 1.3em;
    margin-right: 5px;
    color: var(--sec-color3);
}
.task-info{
    box-sizing: border-box;
    margin: 0 auto;
    /* margin-top: 50px; */
    /* margin-bottom: 50px; */
    width: 80%;
    padding: 0 20px;
    text-align: left;
    
    /* line-height: 1.5; */
    font-size: .9em;
}
.task-info .referral{
    margin-top: 10px;
    margin-bottom: 10px;
}
.section{
    padding: 0 20px;
    margin-bottom: 40px;
}
.section .section-content{
    box-sizing: border-box;
    width: 90%;
    height: fit-content;
    font-size: 0.8em;
    border-radius: 8px;
    margin: 0 auto;
    padding: 20px 30px;
    /* padding-top: 20px; */
    text-align: justify;
    /* background: var(--bg-col-2); */
    background: #babfc649;
}
.section .section-content p{
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 300;
}
.section .section-content .message-btn{
    font-size: 1.4em;
    font-weight: 500;
}
.addAccount-container {
    width: 100%;
    background: rgba(246, 246, 246, 0.915);
    border-radius: 10px;
    margin-top: 20px;
    display: none;
}
.addAccount-container form{
    width: 100%;
}


/* 
.modal.deposit{
    display: none;
}
.modal.deposit.active{
    display: block;
}

#deposit-modal .modal-content{
    margin-top: 260px;
} */

/* USSD PAGE */
.page-header{
    padding-left: 42px;
}

.fund-menu{
    display:flex;
}
/* Paginator */
.paginator{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.page-header{
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 60px;
    box-sizing: border-box;
    text-align: center;
    margin-top: 60px;
    font-size: 1.3em;
    font-weight: 500;
}

.reset-notf{
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.page-busy{
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.612);
}
.page-busy .preloader{
    margin-top: 40vh;
    
}

.page-busy .preloader .loader{
    width: 64px;
    height: 64px;
    border: 0.5px solid #595959cc;
    border-top: .5px solid #f1f1f1;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    margin: auto;
}
#addBank{
    color: var(--sec-color3);
}
.withdrawal-loader {
    margin-top: 20px;
}
#withdrawalFeedback{
    text-align: center;
    font-size: 0.9em;
    display: none;
    margin-top: 10px;
}
.withdrawal-loader .preloader .loader{
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
}

.user-package{
    position: absolute;
    top: 24;
    right: 0;
    margin: 0;
    padding: 0;
}
.user-package .user-plan p {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    padding: 2px 8px;
    border-radius:24px;
    color: #FFF;
    font-size: 0.65em;
    /* margin-left: -10px; */
    transform: translateX(-40%);
    font-weight: 600;
}
.user-package .user-plan .premium{
    background: #4AFF93;
    color: #0e7939;
    /* background: #FF6B6B; */    
}
.user-package a{
    background: yellow;
}
.user-package .user-plan .trial-countdown{
    background: #3498db;
}
/* .user-package */
.user-package .user-plan .basic{
    background: rgba(255,129,123,1);
    color: rgb(140, 57, 53);
}
.user-package .trial-countdown {
    font-size: 0.6em;
    transform: translateX(-40%);
   
    margin-top: 4px;
}

/* COnfetti */
.confetti-container{
    position: relative;
    height: 65vh;
    width: 100%;
    overflow: hidden;
}
.win-details .alert{
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 900;
    color: var(--sec-color3);
}
.win-details .message{
    text-align: center;
}
.win-details .info{
    padding: 0 50px;
    font-size: 0.9em;
    text-align: center;
    /* line-height: 1.5em; */
}
.win-details .button{
    display: flex;
    justify-content: center;
    width: 40%;
    margin: 20px auto;
    padding: 16px 40px;
    background: var(--bg-ligh-blue);
    color: #FFF;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

/* Marketing Popup */

#marketing-modal .modal-content{
    background: #f6f8fffc;
    padding: 0 5px;
}
.settings-content{
    box-sizing: border-box;
    width: 90%;
    margin: 40px auto;
    /* margin-top: 20px; */
    padding: 30px 20px;
    padding-right: 0;
    text-align: left;
    background: var(--bg-white);
    height: fit-content;
    border-radius: 20px;
    box-shadow: var(--box-shadow-5);
    overflow-x: hidden;
}
.settings-content .info-item{
    display: flex;
    align-items: center;
    color: inherit;
    font-size: 1.3em;
}
.settings-content .info-item .action .event{
    font-size: 0.7em;    
    font-weight: 1000; 
    color: green;
}
.settings-content .info-item .action .tips{
    font-size: 0.6em; 
    margin-top: 5px; 
    color: var(--sec-color3);   
}
.settings-content .divider{
    box-sizing: border-box;
    width: 85%;
    border-bottom: 1px solid rgba(142, 141, 141, 0.385);
    margin: 10px 0;
    margin-left: 0px;
    margin-right: 15px;    
}



@keyframes firework {
    0% { transform: translate(var(--x), var(--initialY)); width: var(--initialSize); opacity: 1; }
    50% { width: 0.5vmin; opacity: 1; }
    100% { width: var(--finalSize); opacity: 0; }
  }
  
  /* @keyframes fireworkPseudo {
    0% { transform: translate(-50%, -50%); width: var(--initialSize); opacity: 1; }
    50% { width: 0.5vmin; opacity: 1; }
    100% { width: var(--finalSize); opacity: 0; }
  }
   */
  .firework,
  .firework::before,
  .firework::after
  {
    --initialSize: 0.5vmin;
    --finalSize: 40vmin;
    --particleSize: 2vmin;
    --color1: var(--sec-color3);
    --color2: var(--sec-color3);
    --color3: white;
    --color4: lime;
    --color5: var(--sec-color2);
    --color6: mediumseagreen;
    --y: -30vmin;
    --x: -50%;
    --initialY: 60vmin;
    content: "";
    animation: firework 4s infinite;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, var(--y));
    width: var(--initialSize);
    aspect-ratio: 1;
    background: 
      /*
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 0% 0%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 100% 0%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 100% 100%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 0% 100%,
      */
      
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 50% 0%,
      radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 50%,
      radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 50% 100%,
      radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 0% 50%,
      
      /* bottom right */
      radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 80% 90%,
      radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 95% 90%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 90% 70%,
      radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 60%,
      radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 55% 80%,
      radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 70% 77%,
      
      /* bottom left */
      radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 22% 90%,
      radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 45% 90%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 70%,
      radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 10% 60%,
      radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 31% 80%,
      radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 28% 77%,
      radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 13% 72%,
      
      /* top left */
      radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 80% 10%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 95% 14%,
      radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 90% 23%,
      radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 100% 43%,
      radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 85% 27%,
      radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 77% 37%,
      radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 60% 7%,
      
      /* top right */
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 22% 14%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 45% 20%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 34%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 10% 29%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 31% 37%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 28% 7%,
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 13% 42%
      ;
    background-size: var(--initialSize) var(--initialSize);
    background-repeat: no-repeat;
  }
  
  .firework::before {
    --x: -50%;
    --y: -50%;
    --initialY: -50%;
  /*   transform: translate(-20vmin, -2vmin) rotate(40deg) scale(1.3) rotateY(40deg); */
    transform: translate(-50%, -50%) rotate(40deg) scale(3.3) rotateY(40deg);
  /*   animation: fireworkPseudo 2s infinite; */
  }
  
  .firework::after {
    --x: -50%;
    --y: -50%;
    --initialY: -50%;
  /*   transform: translate(44vmin, -50%) rotate(170deg) scale(1.15) rotateY(-30deg); */
    transform: translate(-50%, -50%) rotate(170deg) scale(3.15) rotateY(-30deg);
  /*   animation: fireworkPseudo 2s infinite; */
  }
  
  .firework:nth-child(2) {
    --x: 30vmin;
  }
  
  .firework:nth-child(2),
  .firework:nth-child(2)::before,
  .firework:nth-child(2)::after {
    --color1: pink;
    --color2: violet;
    --color3: fuchsia;
    --color4: orchid;
    --color5: plum;
    --color6: lavender;  
    --finalSize: 40vmin;
    left: 50%;
    top: 48%;
    animation-delay: -0.25s;
  }
  
  .firework:nth-child(3) {
    --x: -30vmin;
    --y: -50vmin;
  }
  
  .firework:nth-child(3),
  .firework:nth-child(3)::before,
  .firework:nth-child(3)::after {
    --color1: cyan;
    --color2: lightcyan;
    --color3: lightblue;
    --color4: PaleTurquoise;
    --color5: SkyBlue;
    --color6: lavender;
    --finalSize: 35vmin;
    left: 55%;
    top: 55%;
    animation-delay: -0.4s;
  }
  
  /* confetti End  */

  /* KYC PAGE */
  /* .kyc-modal{
    width: 1005;
  } */
  



/* Responsive Design */
@media only screen and (max-width: 576px){
    
    
    /* Data Page End */
    
}
@media only screen and (min-width:578px){
    .main-content{
        position: relative;
        max-width: 578px;
        margin: 0 auto;
    }
    .input-group.recepient{
        text-align: center;
    }
    .input-group.recepient input,
    .input-group.recepient select{
        width: 80%;
    }
    .bottom-nav{
        max-width: 578px;
    }

}