.wrapper{
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #14151a;
}
.sidebar{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 200px;
    z-index: 100;
    transition: all 0.5s ease;
    transition-duration: 0.9s;
    background: #08090c;
    position: fixed;
    top: 0px;
}
.sidebar.close{
    width: 50px;
} 
.sidebar .logo-details{
    height: 75px;
    width: 100%;
    align-items: center;
    margin: 10px 5px;
    text-align:center;
}
.sidebar .logo-details img{
    width: 40px;
}
.sidebar .logo-details i{
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name{
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    transition-delay: 0.1s;
    padding: 12px 0px 0px 0px;
    text-transform: uppercase;
    display: block;
    color: #f2f2f2;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
    height: 100%;
    padding: 5px 0 15px 0;
    overflow: auto;
    border-top: 1px solid #12181f1c;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
    background: transparent;
    margin: 0px 0px;
    border-radius: 3px 0px 0px 3px;
    transition-duration: 1s;
    box-shadow: inset 0 0 0 0 #8f94e7;
    padding: 0px 20px;
}
.sidebar .nav-links li:hover{
    box-shadow: inset 350px 0 0 0 #14151a;
    transition-duration: 1s;
    transition-duration: 1s;
    color: #e7eef0;
    border-radius: 5px;
}
.sidebar .nav-links li:hover::before{
    content: "";
    background: #00f2fe;
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0px;
}
.sidebar .nav-links li:hover .link_name{
    color: #e7eef0;
}
.sidebar .nav-links li:hover i{
    color: #e7eef0;
    transition-duration:1s;
    -webkit-text-fill-color: unset;
}
.sidebar .nav-links li:hover a , .sidebar .nav-links li a:hover{
    color:#e7eef0;
}
.sidebar .nav-links li .icon-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar.close .nav-links li .icon-link{
    display: block
}
.sidebar .nav-links li i{
    height: 38px;
    min-width: 50px;
    text-align: center;
    line-height: 40px;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #565656;
    display:none;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}

.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.sidebar .nav-links li a .link_name{
    font-family: 'Figtree';
    font-size: 15px;
    font-weight: 400;
    color: #a6a8ad;
    transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
    padding: 6px 10px 10px 10px;
    margin-top: -10px;
    background: linear-gradient(84deg, #040a27, #040a27 );
    display: none;
}

.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 6px;
    white-space: nowrap;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 1s;
  box-shadow: inset 0 0 0 0 #b2b2b2;
}
.sidebar.close .nav-links li .sub-menu:hover{
    box-shadow: inset 350px 0 0 0 #343ff5;
    transition: 1s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
    font-size: 15px;
    opacity: 1;
    display: block;
    background: transparent;
    padding: 5px 0px 5px 0px;
    margin: 0px;
    border: none;
    background: none;
    color: #fff;
}
.sub-menu .blank:hover a{
    color:#000;
}
.sidebar .nav-links li .sub-menu.blank{
    opacity: 1;
    pointer-events: auto;
    padding: 2px 20px 2px 16px;
    opacity: 0;
    pointer-events: none;
    color: #fff;
    background: #232323;
}
.sidebar .nav-links li .sub-menu.blank li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
    background: none;
    margin: 0px;
    border-radius: 3px 0px 0px 3px;
    transition-duration: 1s;
    box-shadow: inset 0 0 0 0 #55ecff;
    padding: 0px 0px;
    border: 1px;
    border-top: 1px dashed #73ba3f30;
    border-bottom: 1px dashed #73ba3f30;
    color: #fff;
    border: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
    position: fixed;
    bottom: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00000054;
    padding: 14px 10px;
    transition: all 0.5s ease;
}


.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 10px;
}

.sidebar .profile-details .profile_name{
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: capitalize;
    background: linear-gradient(180deg, #fed221 20%, #ffac11 ,#ff8601 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0);
    margin: 0px;
}

.profile-details i{
    font-size: 28px !important;
    color: #ffc019 !important;
}


.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding: 0px;
    margin: 0px;
}
.side_log{
    border-top: 1px solid #14151a;
    margin: 20px 0px 0px;
    padding: 17px;
}
.side_log .link_name{
    font-size: 15px;
    font-weight: 400;
    color: #00f2fe;
}
.side_log .link_name i{
    margin: 0px 8px 0px 0px;
}
.home-section{
    left: 0px;
    width: calc(100% - 200px);
    transition: all 0.5s ease;
    background: #14151a;
    margin: 0px 0px 0px 200px;
}
.sidebar.close ~ .home-section{
  left: 0px;
  width: calc(100% - 50px);
}
.home-section .home-content{
    height: 60px;
    display: flex;
    align-items: center;
    background: #14151a;
    margin: 0px 0px 0px 0px;
    gap: 23%;
    border-bottom: 1px solid #2a2f41;
}
.home-section .home-content .ri-menu-line{
    border-radius: 5px;
    transition-duration: inherit;
    margin: 0px 10px;
    cursor: pointer;
    padding: 1px 10px;
    display: none;
    background: #202431;
    border: 4px double #0e9ca8;
    color: #ffffff;
}
.home-section .home-content .ri-menu-line:hover{
    transition-duration:1s;
}
.home-section .home-content .head{
    font-size: 30px;
    font-weight: 800;
    padding: 0px;
    margin: 7px 0px 10px 0px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(360deg, #0bb7fe 35%, #5052ee 65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.home-section .home-content .bx-menu{
    margin: 0 15px;
    cursor: pointer;
    color: #fe5959;
    border: 1px solid #fe5959;
    border-radius: 6px;
    padding: 0px 4px;
}

.home-section .home-content .text1{
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
    float:right;
    background: url(../images/but_bg.html);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.home-section .home-content1{
    float: right;
    margin: -55px 0px 0px 0px;
    width: 55%;
}
.home-section .headerall_top{
    background: url(../images/refer_bg.html);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 0px 0px 0px;
    position: relative;
}
.home-section .home-content1 .top_detail{
    margin: 0px 0px 0px 0px;
}
.home-section .home-content1 .top_detail li{
    display: inline-block;
    width: 40%;
    text-align: right;
}
.home-section .home-content1 .top_detail li:nth-child(1){
    width: 95%;
}
.home-section .home-content1 .top_detail li:nth-child(2){
    width: 10%;
}
.home-section .home-content1 .top_detail li .acc_img1{
    max-width: 52px;
    float: right;
    margin: 0px 0px 0px 18px;
}
.home-section .home-content1 .top_detail li h3{
    background: #1d1d1d;
    padding: 8px;
    border-radius: 5px;
    font-size: 17px;
    max-width: 148px;
    text-align: center;
    display:inline-block;
}
.home-section .home-content1 .top_detail li h3 i{
    margin: 0px 5px 0px 0px;
    font-size: 30px;
    vertical-align: middle;
}
.home-section .home-content1 .top_detail li h3 span{
    color: #fff;
    font-size: 15px;
}
.home-section .home-content1 .top_detail .details{
    position: relative;
    top: 7px;
}
.home-section .home-content1 .top_detail .details i{
    margin: 10px 0px 0px 10px !important;
    transition: 1s;
    font-size: 23px;
    padding: 5px;
    font-weight: 200;
    border-radius: 5px;
    color: #565656;
    background: #202431;
}
.home-section .home-content1 .top_detail .details i:hover{
    transform: translateY(-8px);
    transition: 1s;
    color: #e7eecd;
    background: #343ff5;
}
.home-section .log_detail{
    position: relative;
    display: none;
}
.home-section .log_detail button{
    border-radius: 50%;
    background: none;
    border: none;
    outline: none;
    box-shadow: unset !important;
}
.home-section .log_detail .img1{
    max-width: 38px;
    border-radius: 50%;
}
.home-section .log_detail .log_list{
    position: absolute;
    background: #172132;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    right: 0px;
    width: 145px;
    display: none;
    z-index: 1;
}
.home-section .log_detail .log_list li{
    display: block !important;
    width: 90% !important;
    text-align: start;
    margin: 5px;
}
.home-section .log_detail .log_list a{
    font-size: 13px;
    font-weight: 600;
    color: #e0e3f8;
    display: block;
    background: #040b17;
    padding: 5px;
    border-radius: 5px;
}
.home-section .log_detail .log_list a i{
    float: left;
    color: #205fed;
    position: relative;
    top: 3px;
    margin: 0px 7px 0px 0px;
}
.home-section .log_detail .log_list a:hover{
    background:#2a2d36;
    filter: drop-shadow(2px 4px 6px black);
    transition: 1s;
    color:#fff;
}
.home-section .home-content1 .dropdown-toggle::after{
    content:unset;
}
.acc_balance{
    padding: 15px 5px 15px 10px;
    border-top: 1px solid #12181f17;
}
.acc_balance h3{
    font-size: 18px;
    font-weight: 700;
    color: #242424;
}
.acc_balance h3 i{
    float: right;
    font-size: 12px;
    color: #343ff5;
    padding: 10px;
}
.acc_balance h3 span{
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #343ff5;
    padding: 4px 0px 0px;
}
.acc_balancelist{
    background: #e9f2f9;
    margin: 10px 0px 0px;
    padding: 5px;
    border-radius: 10px;
    display:none;
}
.acc_balancelist h2{
    font-size: 13px;
    font-weight: 600;
    color: #1d222b;
    padding: 5px 0px;
    border-bottom: 1px solid #b9b9b936;
    line-height: 22px;
}
.acc_balancelist h2 span{
    float: right;
    color: #343ff5;
    font-weight: 700;
}
.user_deti{
    padding: 0px 0px 0px 45px;
    position: relative;
    margin: 0px 0px 0px 10px;
}
.user_deti h3{
    font-size: 16px;
    font-weight: 600;
    color: #f2f2f2;
    margin: 0;
}
.user_deti h3 span{
    color: #5c606e;
    font-size: 14px;
    display: block;
    padding: 2px 0px;
    font-family: 'Figtree';
}
.user_deti i{
    float: left;
    font-size: 18px;
    position: absolute;
    left: 0px;
    background-color: #202431 !important;
    color: #565656 !important;
    border: 1px solid #202431;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9px;
    border-radius: 5px;
}
@media (max-width: 991px) {
    .sidebar.close {
        width: 0;
        overflow: hidden;
    }
    .sidebar.close.small-screen{
        width: 50px;
       overflow: initial;
    }
    .admin2_bg .table-responsive table {
        width:100% !IMPORTANT;
        min-width: 500px;
    }
    .home-section{
        margin:0px;
    }
}
/******=====HEADERALL CSS PART=====*****/ 

/******=====ACCOUNT CSS PART=====*****/ 
.admin1_bg{
    padding: 30px 0px;
}
.admin1_bg .head1 h2{
    color: #f2f2f2;
}
.admin1_bg .head1 h2 span{
    color: #5c606e;
}
.dash_bg{
    
}
.head1{
    margin: 20px 0px 0px;
}
.head1 img{
    float: left;
    margin: 4px 10px 0px 0px;
    max-width: 45px;
}
.head1 h2{
    font-family: var(--font-family-1);
    font-size: 21px;
    font-weight: 600;
}
.head1 h2 span{
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #343ff5;
}
.head1 b{
    font-size: 38px;
    color: #0004ff;
}
.user_grp{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0px 0px 25px;
}
.user_grp li{
    display: inline-block;
    width: 24%;
    vertical-align: middle;
}
.user_txt{
    background: #14151a;
    padding: 15px;
    border-radius: 10px;
    margin:10px 0px 0px;
    filter: drop-shadow(2px 2px 6px black);
}
.user_txt i{
    float: left;
    height: 45px;
    width: 45px;
    background: #202431;
    color: #4e4e50;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: -3px 10px 0px 0px;
}
.user_txt h2{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #737373;
    margin: 0px;
}
.user_txt h2 span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #dfdfdf;
    margin: 10px 0px 0px;
}
.twofact{
    background: #202431;
    border-radius: 5px;
    max-width: 100%;
    margin: 4px 0px 0px;
    padding: 10px;
}
.twofact p{
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 11px 0px;
    color: #5c606e;
}
.twofact p a{
    color: #dfdfdf;
    font-weight: 600;
}
.twofact p a:hover{
    color: #262626;
}
.refer_copy{
    background: #14151a;
    padding: 10px;
    border: 1px solid #14151a;
    border-radius: 5px;
    margin: 0px auto;
    position: relative;
}
.refer_copy input{
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    color: #5c606e;
    font-size: 15px;
    font-weight: 500;
}
.refer_copy button{
    position: absolute;
    right: 1px;
    top: 9px;
}
.refer_copy button i{
    background: #202431;
    color: #565656;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #202431;
}
.refer_copy button i:hover{
    background: transparent;
    color: #343ff5;
}

.status_box{
    background: #fff;
    padding: 10px;
    max-width: 100%;
    border-radius: 5px;
    position:relative;
    overflow:hidden;
}
.status_box::before{
    content: "";
    position: absolute;
    height: 255px;
    width: 355px;
    background: radial-gradient(#d7f1f9, #d7f1f9d4, transparent 74%);
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    animation: color 4s infinite;
}
@keyframes color{
    0% {
        background: radial-gradient(#d7f1f9c9, #d7f1f9d4, transparent 74%);
        transform: translate(-66px, -48px);
    }
    50% {
        background: radial-gradient(#e0e6f6de, #e0e6f699, transparent 74%);
        transform: translate(32px, 57px);
    }
    100% {
        background: radial-gradient(#d7f1f9c2, #d7f1f9bf, transparent 74%);
        transform: translate(-66px, -48px);
    }
}
.status_box p{
    margin: 10px 0px;
    padding: 7px;
    font-size: 16px;
    background: #eaf3fa54;
    border: 1px solid #e4e4e4;
    color: #242424;
    font-weight: 400;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}
.status_box p img{
    margin: -3px 5px 0px 0px;
    max-width: 18px;
}
.status_box p span{
    float: right;
    font-weight: 600;
    color: #343ff5;
}


.acc_pay_bal_bg{
    width: 100%;
    background: #14151a;
    border:none;
    border-radius: 10px;
    max-height: 222px;
    overflow-y: scroll;
}
.acc_pay_bal_bg .acc_pay_bal:nth-child(odd){
    background: #14151a;
}
.acc_pay_bal_bg .acc_pay_bal_top{
    padding: 10px;
    justify-content: space-between;
    background: #232324 !important;
}
.acc_pay_bal_bg .acc_pay_bal_top li{
    display: inline-block;
}
.acc_pay_bal_bg .acc_pay_bal_top li h4{
    font-size: 17px;
    color: #5c606e;
    margin: 0;
    font-weight: 600;
}
.acc_pay_bal_bg .acc_pay_bal{
    padding: 12px 19px;
    border-radius: 5px;
    width: 100%;
}
.acc_pay_bal_bg .acc_pay_bal li{
    display: inline-block;
    width: 32%;
}
.acc_pay_bal_bg .acc_pay_bal li:nth-child(1){
    
}
.acc_pay_bal_bg .acc_pay_bal li:nth-child(2){
    text-align:center;
}
.acc_pay_bal_bg .acc_pay_bal li:nth-child(3){
    text-align:end;
}
.acc_pay_bal_bg .acc_pay_bal img{
    max-width: 30px;
    margin: 0px 5px 0px 0px
}
.acc_pay_bal_bg .acc_pay_bal h3{
    font-size: 15px;
    font-weight: 500;
    margin: 0px;
    color: #5c606e;
}
.acc_pay_bal_bg .acc_pay_bal h3 span{
    color: #dfdfdf;
    font-weight: 500;
    font-size: 16px;
}

.acc_pay_bal_bg .acc_pay_bal .btns{
    max-width: 105px;
    margin: 0px 0px 0px auto;
}
.acc_pay_bal_bg .acc_pay_bal .btns span{
    padding: 6px 11px;
    font-size: 14px;
}

.acc_calci{
    background: #202431;
    border-radius: 5px;
    padding: 10px;
}
.cal_text{
    margin: 14px 0px 0px;
    display: inline-block;
    width: 49%;
}
.cal_text h3{
    font-size: 13px;
    font-weight: 500;
    color: #737373;
    text-transform: uppercase;
}
.cal_text .inpts{
    border-radius: 5px;
    background: #14151a;
    border: none;
    padding: 10px 10px !important;
    color: #dfdfdf;
}
.acc_calci .sub_btn{
    margin: 45px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.acc_calci .sub_btn .btns{
    max-width: 150px;
}
.acc_calci .sub_btn .btns span{
    font-size: 15px;
}
.acc_text{
    background: #202431;
    padding: 20px;
    border-radius: 10px;
    position:relative;
    overflow: hidden;
}
.acc_text .reward{
    float: right;
    width: 135px;
    height: 135px;
    text-align: center;
    border: 2px solid #00f2fead;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0px 0px 10px 2px #00f2fe;
}
.acc_text .reward h3{
    font-size: 14px;
    font-weight: 500;
    color: #5c606e;
}
.acc_text .reward h3 span{
    color: #dfdfdf;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 0px 0px;
    display: block;
}
.acc_text h4{
    font-size: 22px;
    font-weight: 600;
    color: #f2f2f2; 
}
.acc_text p{
    font-size: 14px;
    font-weight: 400;
    color: #5c606e;
    padding: 5px 0px;
}
.acc_text video{
    max-width: 160px;
    float: right;
}
.acc_text .img2{ 
    position: absolute;
    right: -127px;
    top: 2px;
    max-width: 327px;
}
.acc_text .text2{
    width: 61%;
}
.text_but{
    
    
}
.user_detail1{
    margin: 30px 0px 0px;
    text-align: center;
}
.user_detail1 li{
    display: inline-block;
    width: 24%;
}
/******=====ACCOUNT CSS PART=====*****/ 

/******=====DEPOSIT CSS PART=====*****/ 
.deposit_bg{
    
}
.deposit_bg .plan_con{
    margin: 0px 0px 25px;
    position: relative;
    border:none;
}
.deposit_bg .plan_con li{
    width: 100%;
}
.deposit_bg .plan_left h1{
    height: unset;
    width: unset;
    margin: 0px 0px 20px;
    background: none;
    border: unset;
    outline: unset;
    display: unset;
    font-size: 47px;
    font-weight: 800;
    color: #343ff5;
}
.deposit_bg .plan_left h1 span{
    color: #5b5b5b;
    font-weight: 600;
    font-size: 18px;
}
.deposit_bg .plan_left h6 span{
    margin: -1px 0px 0px;
}
.plan_ryt{
    gap: 11px;
}
.deposit_bg .plan_ryt p{
    line-height: 18px;
    font-size: 16px;
}
.deposit_bg .plan_ryt .sub_btn {
    margin: 0px;
    padding: 0px;
}
.deposit_bg .plan_con .btn_part input{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity:0;
    cursor:pointer;
    z-index: 1 !important;
}
.deposit_bg .plan_con .btn_part .checkmark{
    font-size: 20px;
    font-weight: 700;
    border-radius: 95px;
    position: absolute;
    top: 15px;
    right: 15px;
    margin: auto;
    height: 20px;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b2b2b2;
}
.deposit_bg .plan_con .btn_part input:checked ~ .checkmark:before{
    background: #343ff5;
    height: 20px;
    width: 20px;
    content: '\2713';
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}
.deposit_bg .plan_con .btn_part .checkmark:after{
    position: absolute;
    top: -3px;
    right: -5px;
    margin: auto;
    font-size: 16px;
    font-weight: 500;
}
.deposit_bg .plan_con .btn_part input:checked ~ .checkmark:after{
    content: 'Select';
    background: #b2b2b2;
    color: #000000;
    border-radius: 50px;
    width: 85px;
    height: 26px;
    text-align: start;
    padding: 1px 0px 0px 5px;
}


.deposit_bg .tab_2 .nav-link{
    font-weight: 600;
    padding: 12px 30px;
    font-family: var(--font-family-2);
}
.popup_bg .modal-dialog {
    max-width: 1000px;
    margin: 1.75rem auto;
    z-index:111;
}

.popup_bg .modal-content{
    background: #eaf3fa;
    border: 1px solid #2263f866;
}
.popup_bg .modal-header{
    border-bottom: 1px solid #2263f866;
}
.popup_bg .modal-title{
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px;
}
.btn-close {
    color: #f5f5f5 !important;
    font-size: 19px;
    font-weight: 800;
    outline: none;
    background: #343ff5 !important;
    border: 1px solid #2263f8 !important;
    border-radius: 5px !important;
    opacity: 1 !IMPORTANT;
    padding: 5px 5px 5px ! IMPORTANT;
    width: 21px ! IMPORTANT;
    height: 20px ! IMPORTANT;
    line-height: 21px;
    position: relative;
    top: 5px;
    box-shadow: unset !important;
}
.popup_bg .nav-tabs{
    border-bottom:none !IMPORTANT;
}

.popup_bg .form_2 .sub_btn{
  
}

.paysys-bg {
    text-align: center;
    padding: 0px;
    margin: 30px 0px 0px;
}
.paysys-bg .pay-part {
    position: relative;
    width: 32%;
    display: inline-block;
}
.paysys-bg .pay-part input{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0;
    cursor: pointer;  
    z-index:1;
}
.paysys-bg .pay-part input:checked ~ .spend_check{
    background: linear-gradient(271deg, #343ff5, transparent);
    border: 1px solid #0000;
}
.paysys-bg .pay-part .spend_check::before{
    content: "";
    position: absolute;
    right: 4px;
    top: 3px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    font-size: 20px;
    z-index: -1;
}
/*.paysys-bg .pay-part input:checked ~ .spend_check::before{*/
/*    content: "\2713";*/
/*    color: #343ff5;*/
/*    background: #f6f8fa;*/
/*    border: 1px solid #2867f8;*/
/*    right: -11px;*/
/*    top: -18px;*/
/*    height: 35px;*/
/*    width: 35px;*/
/*    z-index: 1;*/
/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: 1s;*/
/*    border-radius: 10px;*/
/*}*/
.paysys-bg .pay-part .spend_check{
    display: inline-block;
    width: 100%;
    max-width: 160px;
    position: relative;
    padding: 9px 5px;
    margin: 10px auto;
    text-align: left;
    background: #000000;
    border: 1px solid #98989800;
    border-radius: 5px;
}
.paysys-bg .pay-part .spend_check img{
    float: left;
    max-width: 40px ! IMPORTANT;
    border-radius: 5px;
    margin: 1px 8px 0px 0px;
    z-index: 0;
    position: relative;
    transition: 0.5s;
}
.paysys-bg .pay-part .spend_check p{
    padding: unset;
    margin: unset;
    color: #737373;
    font-weight: 500;
    font-size: 13px;
    filter: none;
}
.paysys-bg .pay-part .spend_check span{
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
.paysys-bg .pay-part input:checked ~ .spend_check p{
    color: #ffffff;
}
.paysys-bg .pay-part input:checked ~ .spend_check p span{
    color: #ffffff;
}
.paysys-bg .pay-part input:checked ~ .spend_check img{
    filter: drop-shadow(0px 2px 2px #7a7a7a);
}

.tabs-bg .form_block{
    max-width: 600px;
    margin: 40px auto 0px;
}
.tabs-bg .sbm_btn{
    margin: 25px 0px 0px;
}

.popup_bg .tab2 {
    align-items: center;
    margin: 10px auto;
    max-width: 600px;
    justify-content: space-around;
}
.dep_amt .tab2 .nav-link{
    padding: 10px 35px;
    border-radius: 5px;
    border: 1px solid #242424;
    color: #242424;
    font-weight: 500;
}
.dep_amt .tab2 .nav-link:hover{
    color:#fff;
}
.deposit_bg .sup_form{
    max-width: 600px;
    margin: auto;
}
.admin1_bg .form_1{
    background: #14151a;
}
.dep_amt, .dep_spent{
    background: #08090c;
    border-radius: 15px;
    padding: 20px 10px 10px;
}
.dep_amt .tab2 {
    margin: 0px !important;
    gap: 15px;
    justify-content: space-around;
    border: none !important;
}
.dep_spent{
    padding: 10px;
}
.dep_spent_mid{
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 20px 0px 0px;
}
.dep_spent_mid p{
    color: #8f8f8f;
    margin: 0px;
    font-size: 15px;
}
.dep_spent_mid p span{
    font-weight: 600;
    color: #414141;
    font-size: 16px;
}
.dep_spent .sbm_btn{
    margin: 30px 0px 0px;
}
.dep_spent .sbm_btn .sbmt{
    width: 100%;
}
.dep_spent .sbm_btn .sbmt:hover{
    box-shadow: inset 1000px 0 0 0 #ffffff;
}
.deposit_bg .form_1{
    max-width: 600px;
    margin: 0px auto;
    border: 1px solid #c6c4d92b;
    z-index: 1;
}

.dep_spent_bot{
    display: flex;
    justify-content: space-between;
    margin: 25px 0px 0px;
}
.dep_spent_bot li{
    width: 24%;
    display: inline-block;
    background: #eaf3fa;
    padding: 10px;
    border-radius: 5px;
}
.dep_spent_bot .dep_spent_mid{
    display: unset;
}
.dep_spent_bot .dep_spent_mid p{
    font-size: 14px;
}
.dep_spent_bot .dep_spent_mid p span{
    display: block;
}
/******=====DEPOSIT CSS PART=====*****/ 

/******=====WITHDRAW CSS PART=====*****/
.withdraw_bg{
    
}
.withdraw_bg .user_grp{
    margin: 30px auto 25px;
}
.withdraw_bg .user_grp li{
    width: 28%;
}
.withdraw_bg .user_txt h2 span{
    font-size: 20px;
    margin: 5px 0px 0px;
}
.withdraw_bg .user_txt i{
    margin: 0px 10px 0px 0px;
}
.withdraw_bg .plans{
    background: #202431;
    padding: 10px;
    border-radius: 10px;
    margin: 0px auto 25px;
    max-width: 270px;
}
.withdraw_bg .plans h2{
    margin: 5px 0px 0px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: #dfdfdf;
    background: #000000;
    padding: 10px !important;
    border-radius: 5px;
}
.withdraw_bg .plan_ryt p span {
    color: #dfdfdf;
}
.withdraw_bg .plans .pay{
    max-width: 50px;
    filter: drop-shadow(0px 2px 2px #7a7a7a);
    margin: 15px 0px;
}
.withdraw_bg .plan_but{
    margin: 25px 0px 10px;
}

.withdraw_bg .checkmark_bg{
    width: 100%;
    position: relative;
    cursor: pointer !important;
}
.withdraw_bg .checkmark_bg input{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    inset: 0;
    z-index: 1;
}
.withdraw_bg .checkmark_bg .checkmark{
    background: #e9f2f9;
    border: 1px solid #404040;
    color: #404040;
    padding: 10px 70px; 
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    border-radius: 10px;
}
.withdraw_bg .checkmark_bg input:checked ~ .checkmark{
    border: 1px solid #aa59e9;
}
.withdraw_bg .checkmark_bg input:checked ~ .checkmark::before{
    content: "\2713";
    font-weight: 900;
    position: absolute;
    color: #aa59e9;
    background: #fff;
    border: 2px solid #c6d1d8;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    right: 5px;
    top: 5px;
    z-index: 1;
    transition: 1s;
}
.withdraw_bg .checkmark_bg input:checked ~ .checkmark::after{
    content: "Invest Now";
    font-weight: 600;
    font-size: 17px;
    position: absolute;
    background: #aa59e9;
    border-radius: 7px;
    color: #ffffd8;
    inset: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/******=====WITHDRAW CSS PART=====*****/

/************ D-LIST PART START ************/
.dep_list{
    background: #202431;
    border: 1px solid #8888887a;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    width: 98%;
    color: #fff;
}
.list_item{
    margin:20px 0px 0px;
}
.list_item .text-dark{
    font-size: 14px;
    color: #001549 !important;
}
.list_item .sbmt{
    padding: 5px 10px;
}
.dep_list h2{
    background: #08090c;
    border: 1px solid #08090c;
    color: #dfdfdf;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 5px !important;
    border-radius: 5px;
}
.dep_list h2 span{
    float: right;
    color: #757987;
}
.dep_list h3{
    color: #757987;
    font-size: 15px;
    font-family: 'Figtree';
    font-weight: 400;
    line-height: 40px;
    border-bottom: 1px solid #9af1c71a;
}
.dep_list h3 span{
    float: right;
    color: #dfdfdf;
    font-weight: 600;
}
.dep_list h3 i{
    color: #343ff5;
    font-size: 16px;
    font-family: 'Figtree';
    font-weight: 400;
    line-height: 40px;
    position: relative;
    top: 2px;
}
.dep_list h3 a{
    color: #1e1e1e;
}
.dep_list h3 a:hover{
    color: #343ff5;
}
.dep_list .error{
    border: 1px solid #000000 !important;
    background: #000000;
    padding: 10px;
    text-align: center;
    color: #343ff5;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px auto 10px;
    max-width: 650px !important;
}
.error{
    border: 1px solid #e4e4e4 !important;
    background: #eaf3fa;
    padding: 10px;
    text-align: center;
    color: #343ff5;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px auto 10px;
    max-width: 650px !important;
}
.dep_list img{
    max-width: 25px;
    margin: 0px 5px 0px 0px;
}
.pagination {
    display: block !important;
    padding-left: 0;
    list-style: none;
    text-align: center;
    align-items: center;
    margin: 8px auto;
    width: fit-content !important;
    border-radius: 6px;
    padding:0px !important;
}
.pagination li{
    display:inline-block;
}
.pagination li .disabled{
    color:#ff8a01;
    background: #454658;
    font-size: 16px;
    font-weight: 600;
}
.page-item.active .page-link {
    z-index: 3;
    color: #ffffff !important;
    background: #343ff5 !important;
    border: none !important;
    font-size: 16px;
}
.page-item .page-link:hover {
    z-index: 2;
    color: #ffffff !important;
    background: #343ff5 !important;
}
.page-item .page-link {
    position: relative;
    display: block;
    color: #dfdfdf;
    text-decoration: none;
    background: #202431;
    border: none;
    box-shadow: unset !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.page-item:first-child .page-link {
    color: #dfdfdf;
    background: #202431;
}
.page-item:last-child .page-link {
    color: #dfdfdf;
    background: #202431;
}
.earning_bg .form_1 form{
}
.earning_bg .form_block{
    margin: 20px 0px 30px;
}
.earning_bg .earn_error{
    line-height: 30px!important;
}
.earning_bg  option{
   
}
/************ D-LIST PART END ************/

/************ REFER PART START ************/
.referal_bg{
    
}
.referal_bg .user_txt h2 span{
    font-size: 20px;
    margin: 5px 0px 0px;
}
.referal_bg .user_txt i{
    margin: 0px 10px 0px 0px;
}

table {
    width: 100%;
    background: #fff;
    border: 1px solid #b5b5b5;
    margin: 30px 0px;
}
table img {
    max-width: 30px !important;
}
table th:last-child {
    border-right: unset;
}

table th, table .inheader {
    background: #e8f1fb;
    color: #343ff5;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    padding: 10px;
    border-right: 1px dashed #03275a;
}
table td {
    background: unset;
    color: #252525;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    padding: 10px;
    border-right: 1px dashed #343ff5;
    border-bottom: 1px dashed #343ff5;
}
 table .tdata1 td {
    background: #f2f1f1;
}
.table a{
    color:#01304b;
}

.reflink_bg  .tab2{
   max-width: 100%; 
  
}
.reflink_bg .tab2 .nav-link{
    
}
.ban .head1 h2{
    position: relative;
    z-index: 1;
}
.ban{
    position: relative;
    margin: 55px 0px 0px;
    padding: 20px;
    background: #202431;
    backdrop-filter: blur(16px);
    border-radius: 10px;
    border: 1px solid #70707059;
}
.ban button{
    position: absolute;
    top: 25px;
    right: 30px;
    background: #343ff5;
    color: #e4e4e4;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 19px;
    transition: 0.7s;
    z-index: 1;
}
.ban button:hover{
    color: #2762e7;
    background: #fff0;
    border: 1px solid #2762e7;
}
.ban .inpts{
    padding:30px;
}
/************ REFER PART END ************/

/************ SECURITY PART START ************/
.security_bg{
    
}
.sec_part{
    background: #000;
    border: 1px solid #82828200;
    padding: 20px 15px;
    border-radius: 10px;
}
.sec_part .sec_head{
    margin: 15px 0px 0px;
}
.sec_1{
    background: #202431;
    border: 1px solid #202431;
    padding: 10px 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin: 15px auto 0px;
    position: relative;
}
.sec_1 p{
    margin: 0;
    line-height: 40px;
    position: relative;
    padding: 0px 0px 0px 32px;
    display: block;
    color: #dfdfdf;
}
.sec_2 a{
    color: #343ff5;
    font-weight: 600;
}
.sec_2 a:hover{
    color: #262525;
}
.sec_1 input {
    position: absolute;
    width: 90%;
    height: 100%;
    top: 0px;
    opacity: 0;
    cursor:pointer;
    left: 0;
    z-index: 1;
}
.sec_1 .check-click {
    background: #c5cae7;
    border-radius: 50px;
    position: absolute;
    height: 25px;
    width: 25px;
    left: 0px;
    top: 8px;
}
.sec_1 input:checked ~ .check-click {
    border: 1px solid #343ff5;
    background: #343ff5;
    transition: 1s;
}
.sec_1 input:checked ~ .check-click:before {
    content: "\2713";
    position: absolute;
    inset: 0px;
    line-height: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_2{
    text-align:center;
}
.sec_2 .form_block {
    margin: 20px 0px 38px;
}
.sec_2 p{
    font-size: 15px;
    color: #dfdfdf;
    text-align: center;
    margin: 0px 0px 13px;
}
.sec_2 .form_block input{
    width:100%;
}
.qr_img{
    max-width: 150px;
    margin: 0px 0px 15px;
}

.edit_bg .tab2{
    max-width: 100%;
    justify-content: space-around;
}
.edit_bg .tab2 .nav-link{
  padding: 13px 50px 11px;
  max-width: 230px;
}
.edit_bg .form_1{
    max-width: 750px;
}
.edit_bg .form_block {
    margin: 20px 0px;
}
/************ SECURITY PART END ************/



@media  (max-width:1199px){
    .home-section .home-content{
        gap: 10%;
    }
    .user_grp{
        gap: 10px;
    }
    .user_txt{
        text-align: center;
    }
    .user_txt i{
        float: unset;
        margin: 0px auto 5px;
    }
    .deposit_bg .plan_ryt p{
        font-size: 13px;
    }
    .deposit_bg .plan_con .btn_part .checkmark{
        padding: 0px;
    }
    .checkmark_bg input:checked ~ .checkmark::before{
        right: -3px;
        top: 5px;  
    }
    .withdraw_bg .user_txt i, .referal_bg .user_txt i {
        margin: 0px auto 10px;
    }
    .withdraw_bg .checkmark_bg .checkmark {
        padding: 10px 58px;
    }
    .dep_list h2{
        font-size: 16px;
    }
    .reflink_bg .tra_sec .tab2 .nav-item{
        max-width: 140px;
        margin: 0px 0px 0px 0px;
    }
    .dep_amt .tab2 .nav-link {
        padding: 10px 30px;
    }
    .dep_spent_bot{
        display: unset;
    }
    .dep_spent_bot li {
        width: 49%;
        margin: 6px 0px;
    }
    .paysys-bg .pay-part .spend_check img{
        max-width: 26px ! IMPORTANT;
        margin: 7px 5px 0px 0px;
    }
    .paysys-bg .pay-part .spend_check span{
        font-size: 14px;
    }
}

@media  (max-width:991px){
    .sidebar{
        margin: 0px;
        border-radius: 0px 15px 15px 0px;
    }
    .sidebar.close ~ .home-section {
        width: calc(100% - 0px);
    }
    .home-section{
        width: calc(100% - 0px);
    }
    .home-section .home-content{
        border-radius: 0px;
        margin: 0px;
    }
    .home-section .home-content1 .top_detail .details{
        top: 10px;
    }
    .user_detail {
        margin: 15px 0px 0px;
    }
    .home-section .home-content .ri-menu-line {
        position: absolute;
        right: 0px;
        display:block;
    }
    .home-section .home-content1 {
        float: right;
        margin: -58px 65px 0px 0px;
    }
    .sidebar{
        position: absolute;
    }
    .acc_balance {
        padding: 15px 6px 15px;
        border-top: 1px solid #12181f17;
    }
    .home-section .headerall_top {
        padding: 0px 0px 0px 0px;
    }
    
    .user_grp{
        margin: 0px 0px 15px;
    }
    .user_txt{
        padding: 25px 2px 22px;
    }
    .twofact{
        margin: 8px 0px;
    }
    .acc_pay_bal_bg{
        margin: 0px 0px 25px;
    }
    .deposit_bg .plan_con li{
        width: 100%;
    }
    .deposit_bg .plan_left p{
        text-align: center;
    }
    .deposit_bg .plan_left{
        gap: 10px;
        margin: 0px 0px 20px;
    }
    .deposit_bg .plan_ryt p {
        font-size: 15px;
    }
    .checkmark_bg .checkmark {
        padding: 10px 75px;
    }
    .checkmark_bg input:checked ~ .checkmark::before {
        right: 5px;
    }
    .dep_spent{
        margin: 20px 0px 0px;
    }
    .withdraw_bg .plan_but{
        text-align: center;
    }
    .dep_list{
        padding: 12px;
    }
    .earning_bg .form_block {
        margin: 10px 0px;
    }
    .reflink_bg .tra_sec .tab2 .nav-item{
        max-width: 100%;
        width: 18%;
    }
    .security_bg .row{
        flex-direction: column-reverse;
    }
    .sec_part{
        margin: 0px 0px 25px;
    }
    .acc_text{
        margin:10px 0px;
    }
    .acc_text1{
        text-align:center;
    }
    .acc_text1 .user_txt{
        display: inline-block;
        width: 24%;
    }
    .acc_text .text2 {
        width: 84%;
    }
    .acc_text .img2 {
        display: none;
    }
    
    
    
}

@media  (max-width:767px){
    .home-section .home-content1 .top_detail{
        margin: 0px 25px 0px 0px;
    }
    .home-section .home-content1 .top_detail .details{
        display: none;
    }
    .acc_details li{
        width: 49%;
        margin: 10px 0px;
    }
    .user_grp {
        display: unset;
    }
    .user_grp li{
        width: 49%;
        margin: 5px 0px;
    }
    .user_txt{
        max-width: 200px;
        margin: auto;
    }
    .withdraw_bg .user_grp li {
        width: 49%;
    }
    .referal_bg .user_grp li {
        width: 32%;
    }
    .reflink_bg .tab2{
        gap: 5px;
    }
}

@media  (max-width:576px){
    .sidebar{
        overflow: hidden;
        width: 200px;
        position: absolute;
    }
    .sidebar .logo-details{
        margin: 10px 0px;
    }
    .sidebar .logo-details .logo_name{
        font-size: 13px;
    }
    .sidebar.close.small-screen{
        width: 50px;
        overflow: initial;
    }
    .sidebar.close {
        width: 0;
    }
    
    .home-section .home-content1{
        width: 100%;
    }
    .home-section .home-content1 .top_detail .details{
        display: none;
    }
    .home-section .log_detail{
        top: 2px;
    }
    .home-section .home-content .head{
        display: none;
    }
    .acc_text {
        text-align: center;
    }
    .acc_text .reward {
        float: unset;
        margin: 0px auto 10px;
    }
    .acc_pay_bal_bg {
        text-align: start;
    }
    .user_detail1 {
        margin: 15px 0px 0px;
    }
    .user_detail1 li {
        width: 49%;
    }
    .user_txt {
        margin: 5px 0px;
    }
    .acc_text1 .user_txt {
        width: 100%;
    }
    .admin1_bg {
        padding: 15px 0px;
    }
    .head1 img {
        margin: 2px 10px 0px 0px;
        max-width: 38px;
    }
    .head1 h2{
        font-size: 18px;
    }
    .head1 h2 span{
        font-size: 13px;
    }
    .user_grp li {
        width: 100%;
    }
    .user_txt {
        max-width: 100%;
        padding: 10px;
    }
    .user_txt i {
        float: left;
        margin: 2px auto 5px;
        height: 35px;
        width: 35px;
        font-size: 16px;
    }
    .user_txt h2{
        font-size: 11px;
    }
    .user_txt h2 span{
        font-size: 13px;
    }
    .twofact{
        padding: 6px;
    }
    .twofact p {
        margin: 0px;
        font-size: 12px;
    }
    .refer_copy{
        padding: 4px;
    }
    .refer_copy input{
        font-size: 11px;
    }
    .refer_copy button {
        right: -3px;
        top: 3px;
    }
    .refer_copy button i{
        padding: 4px;
    }
    .status_box p {
        margin: 5px 0px;
        padding: 5px;
        font-size: 12px;
    }
    .acc_pay_bal_bg{
        overflow-x: scroll;
    }
    .acc_pay_bal_bg .acc_pay_bal{
        min-width: 470px;
    }
    .acc_calci .sub_btn {
        margin: 25px 0px 0px;
    }
    .acc_calci .sub_btn .btns {
        max-width: 105px;
    }
    
    .checkmark_bg .checkmark {
        padding: 10px 58px;
    }
    .popup_bg .modal-title {
        font-size: 17px;
    }
    .btn-close{
        top: 0px;
    }
    .popup_bg .tab2 .nav-link {
        padding: 7px 12px;
        font-size: 13px;
    }
    .paysys-bg .pay-part{
        width: 49%;
    }
    .tabs-bg .form_block{
        margin: 10px auto 0px;
    }
    .paysys-bg .pay-part .spend_check{
        text-align: center;
        padding: 6px 8px;
    }
    .paysys-bg .pay-part .spend_check img{
        float: unset;
        margin: 0px 0px 6px;
    }
    .paysys-bg .pay-part .spend_check p{
        font-size: 13px;
    }
    .paysys-bg .pay-part .spend_check span{
        font-size: 15px;
    }
    
    .withdraw_bg .user_txt i, .referal_bg .user_txt i{
        float: unset;
    }
    .withdraw_bg .plans{
        margin: 0px auto 10px;
    }
    
    .dep_list{
        padding: 5px;
        margin: 10px auto;
    }
    .dep_list h2{
        font-size: 11px;
    }
    .list_item {
        margin: 10px 0px 0px;
    }
    .dep_list h3 {
        font-size: 11px;
        line-height: 15px;
        margin: 0px;
    }
    .dep_list h3 span{
        margin: 16px 0px 0px;
    }
    .dep_list .error{
        padding: 6px;
        font-size: 13px;
    }
    .error{
        padding: 6px;
        font-size: 13px;
    }
    .earning_bg .form_block .inpts {
        font-size: 13px;
        padding: 10px 2px;
    }
    .page-item:first-child .page-link, .page-item:last-child .page-link{
        font-size: 12px;
    }
    .page-item .page-link, .page-item.active .page-link {
        font-size: 12px;
    }
    .referal_bg .user_grp li {
        width: 100%;
    }
    .referal_bg .user_txt i {
        float: left;
    }
    .reflink_bg .tra_sec .tab2 .nav-item {
        width: 49%;
        margin: 5px auto;
    }
    .ban .inpts {
        padding: 10px;
        font-size: 11px;
    }
    .sec_2 p {
        font-size: 12px;
    }
    .edit_bg .tab2 .nav-item {
        width: 46%;
    }
    .edit_bg .tab2 .nav-link {
        font-size: 12px;
        padding: 7px 5px !important;
    }
    
    .dep_amt .tab2 .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    .dep_spent .p-3 {
        padding: 0rem !important;
    }
    .dep_spent_mid p{
        font-size: 13px;
    }
    .dep_spent_mid p span{
        font-size: 15px;
    }
    .dep_spent_bot .dep_spent_mid p {
        font-size: 13px;
    }
    .dep_spent .sbm_btn {
        margin: 10px 0px 0px;
    }
    .dep_amt .tab2 .nav-link {
        padding: 7px 11px;
        width: 47%;
    }
}





