/* :root{
    --scrollbar_bgcolor: orange;
    --scrollbartrack-color:#eee;
} */
#operation-activated-indicator{
    position: absolute;
    z-index: 500;
    top: 30%;
    left: 50%;
    transform: translate(-30%, -50%);
    background-color: #fff;
    border-radius: 5px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.4);
    display: none;
}
#operation-activated-indicator>.in-progress-indicator{
    color: dodgerblue;
}
#stats-report-section{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #eee;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.1);
}

.stat-reports{
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    grid-template-rows: auto;
    place-content: center;
    gap: 1rem;
}
.stats-reports:first-child{
    margin-bottom: 1.5rem;
}
.stat-report{
    position: relative;
    background-color: #00cc00;
    padding: 1rem;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.stat-report.offline_trans_link{
   flex-direction: column;
   justify-content: center;
   gap: 0rem;
}
.stat-report.offline_trans_link>.stat-report-inner-cont{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
#stat-report1{
    background-color: #00cc00;
    border-left: 3px solid green;
}
#stat-report2{
    background-color: orange;
    border-left: 3px solid #002233;
}
#stat-report3{
    background-color: dodgerblue;
    border-right: 3px solid #002233;
}
#stat-report4{
    background-color: gold;
    border-right: 3px solid #002233;
}

.stat-report.rejection-stat{
    background-color: orangered;
    border-left: 3px solid #002233;
}

.stat-report.processed{
    background-color: #00cc00;
    border-right: 3px solid green;
}

.stat-icon{
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}
.stat-label-wrapper{
    position: relative;

}
.stat-label-wrapper>p{
    color: #002233;
    font-size: 12px;
    font-weight: 600;

}


.stat-label-wrapper>h3, .stat-label-wrapper>h3>.naira-icon{
    color: #f8f8f8;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;

}
.stat-label-wrapper.figure-show-box>h3{
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.7rem;
}
.stat-label-wrapper>h3>.figure{
    font-size: 1.1rem;
}
.trans-count-wrapper{
    position:relative;
    width: 100%;
    color: #f9f9f9;
    font-size:10px;
    font-weight: bold;
}
.link--to-page{
    font-size: 10px;
    color: #eee;
    text-decoration: none;
    transition: all 0.4s ease-in;
}
.link--to-page>.link--to-page-icon{
    font-size: 0.8rem;
    font-weight: bold;
}
.link--to-page:hover{
    color: #fff;
    
}
.stat-label-wrapper>p:last-child{
    position:relative;
    width: 100%;
    color: #eee;
    font-size:10px;
    font-weight: bold;
}
.trans-count{
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.recent-transactions-cont{
    position: relative;
    max-width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, auto));
    grid-template-rows: auto;
    place-content: center;
    gap: 2rem;
    overflow-x: auto;
}

.recent-credit-trans-cont, .recent-debit-trans-cont{
    position: relative;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.1);
    overflow-x: auto;
}

.recent-credit-trans-cont::-webkit-scrollbar, .recent-debit-trans-cont::-webkit-scrollbar{
    height: 6px;
}
.recent-credit-trans-cont::-webkit-scrollbar-thumb, .recent-debit-trans-cont::-webkit-scrollbar-thumb{
    background-color: lightblue;
    border-radius: 5px;
}

.recent-credit-trans-cont::-webkit-scrollbar-track, .recent-debit-trans-cont::-webkit-scrollbar-track{
    border: 5px solid #eee;
    box-shadow: inset 2px 2px 0 2px #eee;
}

.recent-credit-trans-cont::moz-scrollbar, .recent-debit-trans-cont::moz-scrollbar{
    height: 6px;
}
.recent-credit-trans-cont::moz-scrollbar-thumb, .recent-debit-trans-cont::moz-scrollbar-thumb{
    background-color: lightblue;
    border-radius: 5px;
}

.recent-credit-trans-cont::moz-scrollbar-track, .recent-debit-trans-cont::moz-scrollbar-track{
    border: 5px solid #eee;
    box-shadow: inset 2px 2px 0 2px #eee;
}

.recent-credit-trans-cont::ms-scrollbar, .recent-debit-trans-cont::ms-scrollbar{
    height: 6px;
}
.recent-credit-trans-cont::ms-scrollbar-thumb, .recent-debit-trans-cont::ms-scrollbar-thumb{
    background-color: lightblue;
    border-radius: 5px;
}

.recent-credit-trans-cont::ms-scrollbar-track, .recent-debit-trans-cont::ms-scrollbar-track{
    border: 5px solid #eee;
    box-shadow: inset 2px 2px 0 2px #eee;
}

.recent-credit-trans-cont::o-scrollbar, .recent-debit-trans-cont::o-scrollbar{
    height: 6px;
}
.recent-credit-trans-cont::o-scrollbar-thumb, .recent-debit-trans-cont::o-scrollbar-thumb{
    background-color: lightblue;
    border-radius: 5px;
}

.recent-credit-trans-cont::o-scrollbar-track, .recent-debit-trans-cont::o-scrollbar-track{
    border: 5px solid #eee;
    box-shadow: inset 2px 2px 0 2px #eee;
}

.recent-credit-trans-cont::scrollbar, .recent-debit-trans-cont::scrollbar{
    height: 6px;
}
.recent-credit-trans-cont::scrollbar-thumb, .recent-debit-trans-cont::scrollbar-thumb{
    background-color: lightblue;
    border-radius: 5px;
}

.recent-credit-trans-cont::scrollbar-track, .recent-debit-trans-cont::scrollbar-track{
    border: 5px solid #eee;
    box-shadow: inset 2px 2px 0 2px #eee;
}

.recent-credit-trans-cont>h4, .recent-debit-trans-cont>h4{
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.trans-label{
    font-size: 1.2rem;
    font-weight: bold;
    color: dodgerblue;
    text-align: center;
    text-transform: capitalize;
}
.see-all-trans-link{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #f9f9f9;
    padding: 0.3rem;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.4s ease-in;
}
.see-all-trans-link>span:first-child{
    font-size: 1rem;
    font-weight: bold;
    color: dodgerblue;
    text-transform: capitalize;
}
.see-all-trans-link>span:last-child{
    font-size: 1.8rem;
    font-weight: bold;
    color: dodgerblue;
}
.see-all-trans-link:hover, .see-all-trans-link:focus{
    background-color: #e9e9e9;
    text-decoration: none;
}

.credit-transaction-display-table, .debit-transaction-display-table{
    position: relative;
    max-width: 100%;
    border-collapse: collapse;
    
}
.credit-transaction-display-table th, .debit-transaction-display-table th{
    text-align: left;
}
.credit-transaction-display-table th, .credit-transaction-display-table td, .debit-transaction-display-table th, .debit-transaction-display-table td{
    padding: 0.5rem 0.7rem;
    font-size: 14px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

}
.credit-transaction-display-table th, .debit-transaction-display-table th{
    background-color: dodgerblue;
    color: #f8f8f8;
}
.credit-transaction-display-table td, .debit-transaction-display-table td{
    color: #002233;
    font-size: 12px;
}

.credit-transaction-display-table tbody tr:nth-child(even), .debit-transaction-display-table tbody tr:nth-child(even){
    background-color: #f8f8f8;
}

.credit-transaction-display-table tbody tr:hover, .debit-transaction-display-table tbody tr:hover{
    background-color: #fff;
}


.status_indicator{
    display: inline-block;
    background-color: #f8f8f8;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;

}
.status_indicator.processed{
    background-color: rgba(0,255,0,0.2);
    color: forestgreen;
}
.status_indicator.pending{
    background-color: rgba(235, 235, 5, 0.862);
    color: #002233;
}
.status_indicator.rejected{
    background-color: rgba(255,0,0,0.2);
    color: #f00;
}
.trans-status{
    display: inline-block;
    background-color: #f8f8f8;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
}
.trans-status.successful{
    background-color: rgba(0,255,0,0.2);
    color: forestgreen;
}
.trans-status.failed{
    background-color: rgba(255,0,0,0.2);
    color: #f00;
}
.acctBal{
    display: inline-block;
    font-weight: bold;
    background-color: #00cc00;
    color: #fff;
    padding: 0.5rem 0.7rem;
    border-radius: 5px;
    text-align: center;
}
.trans-type-pointer{
    display: inline-block;
    padding: 0.3rem 0.5rem;
    font-size: 10px;
    border-radius: 5px;
    text-align: center;
    text-transform: capitalize;
    font-weight: bold;
}
.trans-type-pointer.credit{
    background-color: rgba(0,255,0,0.2);
    color: forestgreen;
    border: 2px solid forestgreen;
}
.trans-type-pointer.debit{
    background-color: rgba(255,0,0,0.1);
    color: tomato;
    border: 2px solid tomato;
}

.fund-acct-cont{
    position: relative;
    max-width: 100%;

}
.btns-wrapper{
    position: relative;
    width: 100%;
    margin: 1.5rem 0;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 0.7rem;
}
.fund-acct-btn{
    position: relative;
    background-color: #00cc00;
    color: #f8f8f8;
    font-size: 14px;
    font-weight: bold;
    padding: 0.7rem 1rem;
    outline: none;
    border: 1px solid #00cc00;
    border-radius: 30px;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.4s ease-in;
    cursor: pointer;
}

.fund-acct-btn:hover{
    background-color: #f8f8f8;
    border: 2px solid #00cc00;
    color:#00cc00
}
.acct-details-cont{
    position: relative;
    width: 95%;
    margin: auto;
    margin-bottom: 2rem;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: none;
}
.acct-details-cont>p{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    border-bottom: 1px solid #eee;
    padding: 1rem;

}
.acct-details-cont>.account-details{
    position: relative;
    max-width: 100%;
    border-collapse: collapse;
    padding: 1rem;
}
.account-details td{
    padding: 0.5rem;
}
.account-details td:first-child{
    color: dodgerblue;
    font-weight: bold;
    text-transform: capitalize;
}

.account-details td:last-child{
    text-transform: capitalize;
}
.make-request-to-admin-btn-cont{
    position: relative;
}
#request-error-msg{
    color: tomato;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 0.3rem;
    display: none;
}
.make-request-to-admin-btn{
    position: relative;
    background-color: #f8f8f8;
    color: #00cc00;
    font-size: 14px;
    font-weight: bold;
    padding: 0.7rem 1rem;
    outline: none;
    border: 2px solid #00cc00;
    border-radius: 30px;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.4s ease-in;
    cursor: pointer;
}
.request-options{
    width: 100%;
    display: none;
    outline: none;
    background-color: #fff;
    padding: 0.5rem 0.7rem;
    border-radius: 5px 5px 0 0;
    border: 1px solid #eee;
    margin: 1rem 0;
    margin-top: 0.7rem;
    font-size: 12px;
    color: #002233;
    cursor: pointer;
}
.request-options>option{
    font-size: 12px;
    color: #002233;
    cursor: pointer;
}
.make-request-to-admin-btn:hover{
    background-color: #fff;
}

#whatsapp-link{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.5s ease-in;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid #eee;
}
#whatsapp-link>i{
    color: #11ff11;
    font-size: 1.7rem;
    font-weight: bold;
}

#whatsapp-link:hover{
    border-radius: 10px;
}

#make-request-form-cont{
    position: relative;
    max-width: 100%;
    min-height: 400px;
    background-image: linear-gradient(to bottom right, deepskyblue 30%, #002233 90%);
    background-image: url(../images/request-bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
    display: none;
}
#make-request-form{
    position: relative;
    width: 50%;
    margin: 3rem auto;
    /* background-image: linear-gradient(to bottom right, darkblue 40%, #002233 90%); */
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #fff;
    border: 2px solid rgba(255, 255, 255);
    border-radius: 0 30px 0px 30px;
    padding: 1rem;
    /* box-shadow: 0 0 5px 0 rgba(0,0,0,0.1); */
}
.inner--cont{
    position: relative;
    width: 100%;
}
#credit-request-page>h4, #debit-request-page>h4{
    position: relative;
    max-width: 100%;
    color: #fff;
    font-weight: bolder;
    font-size: 1.7rem;
    text-align: center;
    text-transform: capitalize;
    border-bottom: 2px solid rgba(255, 255, 255);
    padding-bottom: 1rem;
    margin-bottom: 2.2rem;
}
.request-page-link{
    position: relative;
    max-width: 100%;
    margin: 1rem 0;
}
.request-page-link>p{
    color: #f8f8f8;
    font-size: 12px;
    font-weight: bolder;
    padding-top: 1rem;
}
#debit-request-page-link, #credit-request-page-link{
    position: absolute;
    top: -1.5rem;
    right: 0rem;
    outline: none;
    padding: 0.3rem 0.5rem;
    background-color: darkblue;
    border: 1px solid darkblue;
    color: #f8f8f8;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    border-radius: 25px;
    transition: all 0.4s ease-in;
    cursor: pointer;
}
#debit-request-page-link:focus, #credit-request-page-link:focus{
    background-color: deepskyblue;
}
.request_options{
    /* display: none; */
    width: 100%;
    outline: none;
    border: 1px solid #ccc;
    padding: 0.7rem 0.7rem;
    background-color: #f8f8f8;
    border-radius: 10px 10px 0 0;
    color: #aaa;
    font-size: 12px;
    margin-top: 1rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: all 0.4s ease-in;
}
.request_options>option{
    font-size: 12px;
}

.request_options:focus{
    border-color: dodgerblue;
    background-color: #e9e9e9;
}


.data-row{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0.2rem 0;
    margin-bottom: 0.7rem;
    margin-top: 0;
}
.data-row-wrapper{
    position: relative;
    width: 100%;
}
.data-row>label{
    display: inline-block;
    color: #002233;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    align-self: flex-start;
}
.request-acct-err-msg{
    color: tomato;
    font-size: 10px;
    font-weight: bold;
    margin-top: 0.3rem;
    align-self: flex-start;
    display: none;
}

.make_request_error_msg_box{
    position: relative;
    max-width: 100%;
    height: auto;
    opacity: 1;
    background-color: #fff;
    padding: 1rem;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    border: 3px solid tomato;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.2);
    margin-bottom: 1.2rem;
    transition: all 1500ms ease-in;
}

.make_request_error_msg_box>.make_request_error_msg_inner_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.make_request_error_msg_inner_box>.make_request_error_icon{
    color: tomato;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    
}
.make_request_error_msg_inner_box>#make_request_error_msg{
    color: tomato;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 1.2rem;
    line-height: 1.2;
}

#make_request_error_msg>h3{
    color: tomato;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;

}
#make_request_error_msg>p{
    font-size: 10px;
    font-weight: bold;
}

.make_request_success_msg_box{
    position: relative;
    max-width: 100%;
    height: auto;
    opacity: 1;
    background-color: #fff;
    padding: 1rem;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    border: 3px solid forestgreen;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.2);
    margin-bottom: 1.2rem;
    transition: all 1500ms ease-in;
}

.make_request_success_msg_box>.make_request_success_msg_inner_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.make_request_success_msg_inner_box>.make_request_success_icon{
    color: forestgreen;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    
}
.make_request_success_msg_inner_box>#make_request_success_msg{
    color: forestgreen;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 1.2rem;
    line-height: 1.2;
}
#make_request_success_msg>h3{
    color: forestgreen;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;

}

#make_request_success_msg>p{
    font-size: 10px;
    font-weight: bold;
}

.operation_error_msg_box{
    position: absolute;
    z-index: 10;
    top: 27%;
    left: 27%;
    transform: translate(-27%, -27%);
    width: 90%;
    height: auto;
    opacity: 1;
    background-color: #fff;
    padding: 1rem;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    border: 3px solid tomato;
    border-radius: 0px 5px 5px 0px;
    box-shadow: 0px 0px 10px 0 rgba(0,0,0,0.2);
    margin: 0.5rem 1rem;
    margin-bottom: 1.2rem;
    transition: all 1500ms ease-in;
}

.operation_error_msg_box>.operation_error_msg_inner_box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operation_error_msg_inner_box>.operation_error_icon{
    color: tomato;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    
}
.operation_error_msg_inner_box>#operation_error_msg{
    color: tomato;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding: 1.2rem;
    line-height: 1.2;
}

#operation_error_msg>h3{
    color: tomato;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;

}
#operation_error_msg>p{
    font-size: 10px;
    font-weight: bold;
}



.inner-row{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.request-acct-icon{
    position: absolute;
    z-index: 2;
    top: 50%;
    transform:  translateY(-50%);
    left: 3%;
    font-size: 1.7rem;
    font-weight: bold;
    color: dodgerblue;
    margin-right: -2.3rem;
}
.data-row-field{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0.7rem;
    padding-left: 12%;
    background-color: #f8f8f8;
    outline: none;
    border: 1px solid #f8f8f8;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 30px;
    transition: all 0.4s ease-in;
}
.data-row-field::placeholder{
    font-size: 12px;
    color: #aaa;
}
.data-row-field:focus{
    border-color: dodgerblue;
    background-color: #e9e9e9;
}
#request-submit-btn, #dbt-request-submit-btn{
    position: relative;
    width: 100%;
    outline: none;
    background-color: #002233;
    padding: 0.7rem;
    border: 1px solid #002233;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    transition: all 0.4s ease-in;
    cursor: pointer;
}

.request-submit-icon{
    font-size: 1.7rem;
    font-weight: bold;
    color: #f8f8f8;
}
#request-submit-btn>span, #dbt-request-submit-btn>span{
    color: orange;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
#request-submit-btn:hover, #dbt-request-submit-btn:hover{
    background-color: darkblue;
    border-color: darkblue;
}

#credit-request-page{
    margin-bottom: 3rem;
    /* display: none; */
}
#debit-request-page{
    display: none;
}

@media (max-width:950px){
    #make-request-form{
        width: 70%;
    }

}

@media (max-width:650px){
    #make-request-form{
        width: 80%;
    }
   
    #credit-request-page>h4, #debit-request-page>h4{
        font-size: 1.7rem;
    }


}

@media (max-width:350px){
    #make-request-form{
        width: 90%;
    }
   
    #credit-request-page>h4, #debit-request-page>h4{
        font-size: 1.5rem;
    }

    .request-acct-icon{
        font-size: 1.3rem;
    }
}

@media (max-width:320px){
    .make_request_success_msg_inner_box, .make_request_error_msg_inner_box{
        flex-direction: column;
    }
}


@media (max-width:250px){
    .request-acct-icon{
        font-size: 1.3rem;
    }

    .operation_error_msg_inner_box{
        flex-direction: column;
        justify-content: center;
    }
    

}

@media (max-width:229px){
    .request-submit-icon{
        font-size: 1.3rem;
    }

    #request-submit-btn>span, #dbt-request-submit-btn>span{
        font-size: 12px;
    }

}

