:root{
	--Primary_font:'Degular';
	--primary_color:1f1f1f;
   --Primary_color:#04091b;
   --secondary_color:linear-gradient(to right, #f6851b, #fea82e);
   --text_color:#181818;
   --secondary_text_color:#11d1c1;
  --bg-color: #e1e1e1;
  --bg-secondary-color:#f6f6f6;
  --secondary-bg-color:#ececec;
  --primary-text-color:#000;
  --secondary-text-color:#000000b3;
  --box-shadow-value: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --secondary_box-shadow-value:rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  --box-color: #ffff;
  --secondary_box-color: #fbfbfb;
  --secondary_inner_box-color:#fff;
  --secondary-text: #232738;
  --base-variant:#d4d4d4;
  --head_bgcolor:#dddd;
}
.darkmode{
  --primary_color:#ffffff;
  --Primary_color:#ffff;
  --secondary_color:linear-gradient(to right, #f6851b, #fea82e);
  --text_color:#585858;
  --secondary_text_color:#11d1c1;
  --bg-color: #000000;
  --bg-secondary-color:#111111;
  --secondary-bg-color:#1b1c22;
  --primary-text-color:#fff;
  --box-shadow-value: 0px 4px 8px rgba(0, 0, 0, 0.5);
  --secondary_box-shadow-value:rgb(0 0 0) 3px 3px 6px 0px inset, rgb(27 27 27) -3px -3px 6px 1px inset;
  --secondary-text-color:#ffffffc9;
  --box-color: #0f0f0f;
  --secondary_inner_box-color:#171717;
  --secondary_box-color: #0F0F0F;
  --secondary-text:#ffffffc9;
  --img-fliter:invert(1);
  --img-fliter-1:invert(1) hue-rotate(169deg);
  --base-variant:#3e3e42;
  --head_bgcolor:#3f3f3f;
}
button{
  border: none;
  padding: .8em 2em;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  font: inherit;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

#theme-switch{
	height: 45px;
    width: 45px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--base-variant);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 2px;
    right: 18px;
}

#theme-switch svg{
    fill: var(--Primary_color);
}
#theme-switch svg:last-child{
  display: none;
}
.darkmode #theme-switch svg:first-child{
  display: none;
}
.darkmode #theme-switch svg:last-child{
  display: block;
}



/***************Theme swithcher***************/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body a{
    text-decoration: none !important;
}

.wrapper{
    display: flex;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background: var(--bg-color);
}
.wrapper .logo img{
    max-width: 100px;
    margin: 15px auto;
    width: 100%;
    display: block;
}
.welcome_txt {
    border-bottom: 1px solid #dddddd40;
    padding: 10px;
}
.welcome_txt h3{
    font-size: 18px;
    font-weight: 400;
    color: #777f8e;
    text-align: center;
}
.welcome_txt h3 span{
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}
.welcome_txt p{
    font-size: 12px;
    font-weight: 300;
    color: #dddd;
    text-align: center;
}
.user_icon{
}
.sidebar{
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    min-height: 100vh;
    width: 280px;
    z-index: 100;
    transition: all 0.5s ease;
    transition-duration: 0.9s;
    background: var(--bg-color);
    background-size: cover;
    /* position: fixed; */
    /* margin: 10px; */
}
.sidebar.close{
    width: 50px;
}
.sidebar .logo-details{
    height: 50px;
    width: 100%;
    align-items: center;
    margin: 10px 5px;
    text-align: center;
}
.sidebar .logo-details img{
    width: 165px;
    margin: 17px 0px 0px;
	filter:var(--img-fliter-1);
}
.home-section .log_detail button:hover {
    transition: 1s;
    background: #9C27B0;
}
.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: 700;
    transition: 0.3s ease;
    transition-delay: 0.1s;
    padding: 12px 0px 0px 0px;
    text-transform: uppercase;
    display: none;
    color: #121212;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
    height: 100%;
    padding: 15px 0 15px 0 !important;
    overflow: auto;
    border-top: unset;
    margin: 40px 0px 0px !important;
}
.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: 2px 0px;
    border-radius: 3px 0px 0px 3px;
    transition-duration: 1s;
    box-shadow: inset 0 0 0 0 #302e3b;
    padding: 0px 0px;
}
.sidebar .nav-links li:hover{
    transition-duration: 1s;
    color: var(--secondary_color) !important;
    border-radius: 1px;
    background: #ffff;
    border-radius: 0px 10px 10px 0px;
}
.sidebar .nav-links li:hover .link_name{
  color: var(--secondary_color) !important
   width: 100%;
}
.sidebar .nav-links li:hover i{
  	color: var(--secondary_color) !important
    transition-duration:1s;
    -webkit-text-fill-color: unset;
}
.sidebar .nav-links li:hover a , .sidebar .nav-links li a:hover{
     color: var(--secondary_color) !important
}
.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: #838486;
}
.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: #838486;
    font-size: 14px;
    font-weight: 500;
}
.sidebar .nav-links li a .link_name{
    font-size: 14px;
    font-weight: 500;
    color: #838486;
    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 #55ecff;
}
.sidebar.close .nav-links li .sub-menu:hover{
    box-shadow: inset 350px 0 0 0 #ac37a6;
    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 !important;
}
.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: 5px 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;
}


.home-section{
    position: relative;
    background: url(../images/admin2_bg.png) no-repeat top center;
    background-size: 100% 100%;
    background-attachment: fixed !IMPORTANT;
    min-height: 100%;
    left: 0px;
    width: calc(115% - 200px);
    transition: all 0.5s ease;
}
.sidebar.close ~ .home-section{
  left: 0px;
  width: calc(100% - 50px);
}
.home-section .header1_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:var(--bg-color);
    position: relative;
    padding: 10px;
    height: 80px;
}
.header1_top .side_btn i{
    position: absolute;
    right: 0px;
    font-size: 25px;
    font-weight: 600;
    display: none;
}
.link_list h3 i{
    display: none;
    cursor: pointer;
    padding: 6px 9px;
    color: #ddd;
    font-size: 20px;
    border-radius: 22px;
    background: var(--base-variant);
    color: var(--text_color);
}
.top_icons{
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_icons h3{
    color: #dddd;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Open Sans';
    padding: 9px 15px 9px 10px;
    background: #3e3e42;
    border-radius: 27px;
    margin-right: 15px;
}
.dash_icon{
    max-width: 22px;
    width: 100%;
    padding: 5px;
    border-radius: 25px;
    background: #ffd900;
    margin-right: 7px;
}
.link_list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.link_list a {
    color: #dddd;
    font-size: 20px;
    padding: 4px 11px;
    background: var(--base-variant);
    border-radius: 27px;
    margin-right: 13px;
    color: var(--Primary_color);
}
.link_list a:hover{
    background: #fdb74f;
    color: #fff;
    transform: translateY(-10px);
    transition: .5s;
}
.user_list{
    padding: 10px;
    text-align: center;
    margin: 14px 0px 0px;
}
.user_list h3{
    font-size: 22px;
    font-weight: 700;
    padding: 13px 0px 0px;
    color: #dfdfdf;
    text-align: start;
}
.user_list h3 span{
    display: block;
    font-size: 14px;
    font-weight: 400;
   padding: 0px 0px 0px;
    float: right;
}
.acc_user{
   max-width: 45px;
    float: left;
    margin-right: 10px;
}
.menu_txt{
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans';
    color: #dddd;
    margin: 10px 0;
    padding-left: 15px;
}

.home-section {
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    background: var(--secondary-bg-color);
}
.header1_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-content a{
    display: inline-block;
    background: #1a1b20;
    padding: 7px 36px;
    border-radius: 25px;
    color: #ddd;
    margin: 0px 10px;
}
.home-content a:hover{
    transform: translatey(-10px);
    transition: .5s;
    background: #a83591c2;
    color: #ffff;
}
.home-content h3{
	font-size: 25px;
    font-weight: 700;
    font-family: var(--Primary_font);
    color: var(--Primary_color);
    letter-spacing: .3px;
}
.user_deti img {
	max-width: 45px;
    margin: 0px 0px 0px 0px !important;
    border-radius: 50%;
}
.user_deti{
    display: inline-flex;
    width: 100%;
    align-items: center;
    position: relative;
    padding: 10px;
}
.user_deti:hover h3 {
    color: var(--text_color);
}
.user_deti h3 {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--Primary_font);
	color: var(--Primary_color);
    margin: 8px;
}
.user_deti h3 span {
    color: var(--text_color);
    font-size: 13px;
    font-family: var(--secondary_font);
    display: block;
    padding: 2px 0px;
}
.toggle_but{
    color: #dddd;
    font-size: 20px;
    padding: 9px;
    background: #3e3e42;
    border-radius: 27px;
    margin-right: 10px;
    display: none;
    cursor: ponter;
}
.sidebar .link_list {
    justify-content: center;
    margin: 20px;
}
.sidebar .link_list a{
    color: #dddd;
    font-size: 13px;
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    padding: 9px;
    background: #3e3e42;
    border-radius: 27px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@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;
    }
}
.sbmt{
	width: 100%;
    padding: 7px;
    border-radius: 5px;
    border: none;
    outline: none;
    background: linear-gradient(to right, #00a6ad, #11d1c1) !important;
    color: #fff;
	font-size: 16px;
    font-weight: 500;
	font-family:var(--primary_font);
}
/********====== Dashbroad part start ======********/
.account_main li{
    display: inline-block;
    width: 24%;
}
.acc_bal_item{
    padding: 30px;
    border-radius: 10px;
    background: url(../images/secu_bg.jpg);
    background-size: 100% 100%;
    border: 1px solid #11d1c1;
} 
.account_stat_items h3{
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondary_font);
    color: #04091b;
}
.account_stat_items h3 span{
	display: block;
    padding: 5px 0px 0px;
    font-size: 30px;
    font-weight: 600;
    font-family: var(--Primary_font);
    color: var(--secondary_text_color);
}
.account_stat_items{
    max-width: 200px;
    width: 100%;
    margin: auto;
    padding: 30px;
    background: linear-gradient(341deg, #e1f4f5, #ffffff);
    border-radius: 10px;
    margin: 25px auto 0px;
}
.acc_pay_bal img{
	max-width: 45px;
    width: 100%;
}	
.acc_pay_bal_top li{
	display: inline-block;
    width: 25%;	
}
.acc_pay_bal li{
	display: inline-block;
    width: 24%;
    text-align: start;
}
.acc_pay_bal li:nth-child(2) h3{
    text-align: center;
}
.acc_pay_bal{
	margin: 10px 0px !important;
    padding: 5px 0px !important;
}
.acc_pay_bal  h4{
	font-size: 25px;
    font-weight: 600;
    font-family: var(--Primary_font);
	color: var(--Primary_color);
}
.acc_pay_bal h3{
    font-size: 15px;
    font-weight: 400;
    color: var(--Primary_color);
    font-family: var(--secondary_font);
}
.acc_pay_bal a{
    border-radius: 5px;
    background: var(--secondary_text_color);
    padding: 5px 25px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--Primary_font);
    letter-spacing: 1px;
    color: var(--Primary_color);
}
.acc_bal_item .head h2{
    font-size: 25px;
    font-weight: 700;
    font-family: var(--Primary_font);
    color: #1f1f1f;
}
.acc_bal_item .head p{
    font-size: 13px;
    font-weight: 300;
    font-family: var(--secondary_font);
    color: var(--text_color);
    text-align: justify;
} 
.acc_stat_group .stat_item{
	display: inline-flex;
    align-items: flex-start;
    width: 100%;
    margin: 13px 0px 0px;
    gap: 10px;
	box-shadow: var(--box-shadow-value);
    padding: 10px;
    border-radius: 5px;
    background: var(--secondary_inner_box-color);
}
.stat_item i{
    font-size: 25px;
    background: #00bec2;
    height: 35px;
    width: 35px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
}
.stat_item h3{
    font-size: 15px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--secondary-text);
}

.stat_item h3 span{
    display: block;
    font-size: 25px;
    font-weight: 600;
    font-family: var(--Primary_font);
    padding: 5px 0px 0px;
}
.acc_pay_bal_bg{
    background: var(--box-color);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-value);
    max-height: 325px;
    overflow-y: scroll;
}
.acc_pay_bal_bg::-webkit-scrollbar,.balance_group::-webkit-scrollbar {
    display: none !important;
}
.balance_group {
    padding: 20px;
    background: var(--secondary_box-color);
    border-radius: 10px;
    max-height: 258px;
    overflow-y: scroll;
}
.acc_txt{
    font-size: 25px;
    font-weight: 600;
    font-family: var(--Primary_font);
    color: var(--Primary_color);
}
.acc_ref {
    padding: 24px !important;
}
.dash_secu button{
    padding: 5px;
    top: 106px !important;
    right: 2px !important;
    font-size: 15px;
    position: relative !important;
    float: right !important;
	background: #11d1c13d;
}
.dash_secu button i{
	color:var(--Primary-color) !important;
}
.acc_ref .inpts{
	width: 100% !important;
    padding: 7px !important;
    border: 1px solid #11d1c166 !important;
    outline: unset !important;
    border-radius: 5px;
    font-size: 13px !important;
    font-weight: 400;
    color: var(--secondary-text);
    font-family: var(--secondary_font);
    margin: 20px 0px 0px 0px !important;
    background: var(--head_bgcolor);
}
.acc_ref  p{
    font-size: 12px;
    font-weight: 300;
    font-family: var(--secondary_font);
    text-align: justify;
}

.dash_secu p{
    font-size: 12px;
    font-weight: 300;
    font-family: var(--secondary_font);
    text-align: justify;
    color: var(--secondary-text);
}
.css-wobjd7{
    border-radius: 10px !important;
}
.dash_body{
 padding: 30px;
}
.dash_secu{
	padding: 30px !important;
    background: var(--box-color);
    max-width: 346px;
    width: 100%;
    margin: auto;
    border-radius: 5px;
    box-shadow: var(--box-shadow-value);
}
.dash_secu h4{
	font-size: 24px;
    font-weight: 400;
    font-family: var(--Primary_font);
    background: var(--secondary_color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dash_body .dash_secu h3{
	font-size: 12px;
}
.dash_body .dash_secu a{
	font-size: 16px;
}
.dash_secu h3{
	font-size: 15px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--Primary_color);
    line-height: 23px;
    margin: 10px 0px 0px;
}
.dash_secu a{
    background: var(--secondary_color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 600;
}
.dash_secu{

}
.second_row{
    margin: 30px 0px 0px;
}

/********====== Dashbroad part End ======********/


/********====== Deposit part start ======********/
.depo_bg {
	padding: 30px;
}

.depo_bg  .head h2{
    font-size: 25px;
    margin: 0px 0px 20px;
}
.depo_bg .plan_item::before{
	display:none !important;
}
.depo_bg .plan_item h2{
    font-size: 35px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: -42px
}
.depo_bg .plan_item img{
    max-width: 40px;
    width: 100%;
}
.depo_bg .plan_item p{
    font-size: 25px;
    font-weight: 500;
    font-family: var(--Primary_font);
    color: var(--Primary_color);
}
.depo_bg .plan_item h6{
  	font-size: 16px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--text_color);
    margin: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.depo_bg .plan_item h6 span{
	float: right;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--Primary_font);
     color: #00b6b4;
    letter-spacing: .3px;
}
.depo_bg .plan_item {
    max-width: 350px !important;
    width: 100%;
	padding: 10px;
    background: var(--box-color);
    border-radius: 10px;
    border: 3px solid transparent;
    display: block;
}
.depo_bg .plan_body{
    padding: 13px;
} 
.depo_bg .form_item h4{
    margin: 0px 0px 15px;
    color: var(--text_color);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
}
.checkmark_bg{
    position: relative;
    display: block;
    width: 100%;
}
.checkmark_bg input{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    inset: 0;
}
.depo_bg .checkmark {
    padding: 9px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffdb;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    width: 139px;
    text-align: center;
    position: absolute;
     top: -222px !important;
    left: 269px;
    background: url(../images/Select_img1.png);
    background-size: 100% 100%;
    height: 35px;
    width: 35px;
    margin-left: auto;
    display: block;
    filter: var(--img-fliter);
}
.depo_bg .checkmark_bg  input:checked ~ label{
    transition: 1s;
    border: 3px solid #fdb74f !important;
}
.depo_bg .checkmark_bg input:checked ~ .checkmark {
    background:url(../images/select_img.png);
	background-size:100% 100%;
	filter: var(--img-fliter);
}
.dep_part{
	border-radius: 10px;
    margin-right: 10px;
    padding: 30px;
    background: var(--box-color);
    box-shadow: var(--box-shadow-value);
}
.depo_bg .nav-tabs{
    justify-content: space-evenly;
    border:none !important;
}

.depo_bg  .nav-link.active{
	color: #fff !important;
	background: linear-gradient(to right, #00a6ad, #11d1c1) !important;
	border:unset !important;
}
.depo_bg .nav-link{
    font-size: 13px;
    font-weight: 400;
    padding: 7px;
    display: inline-block;
    max-width: 150px;
    width: 100%;
    position: relative;
    cursor: pointer;
    text-align: center;
    border: 1px solid #0ecabe !important;
    color: var(--Primary_color) !important;
}
.depo_bg .pay{
   max-width: 30px;
}
.checkmark_bg1 .check_box1 {
    display: inline-block;
    width: 100%;
    max-width: 165px;
    margin: 10px;
    vertical-align: top;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: var(--text_color);
}
.checkmark_bg1{
    margin: 30px 0px 0px;
    text-align: center;
}
.checkmark1{
    display: block;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--secondary-text);
    box-shadow: var(--box-shadow-value);
}
.check_box1  input{
    position: absolute;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0; 
    inset: 0;
}

.check_box1 input:checked ~ .checkmark1{
	transition: 1s;
    color: var(--Primary_color);
    font-size: 18px;
    font-weight: 600;
	box-shadow: var(--secondary_box-shadow-value);
}
.checkmark_bg1 input:checked ~ .checkmark1:after {
    content: "\2713";
    position: absolute;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -14px;
    right: 0px;
    border-radius: 50%;
    transition: 1s;
    font-weight: 700;
    filter: drop-shadow(0px 0px 10px #ff8b47);
    color: #ffff;
    font-weight: 700;
    background: linear-gradient(to right, #f6851b, #fea82e);
}
.depo_bg .form1{
    background: #fff;
    padding: 40px 20px !important;
    border-radius: 10px;
    max-width: 550px !important;
    margin: auto;
    border: 1px solid #ddd;
    background: var(--box-color);
    border-radius: 10px;
    border: 1px solid #dd3e4747;
}
.depo_bg .off_head h5{
    font-size: 30px;
    font-weight: 400;
    font-family: 'Sofia Sans';
    padding: 20px 0px 0px;
}
.depo_bg .head h3{
    font-size: 35px;
    font-weight: 500;
    font-weight: 500;
    color: #f5be57;
    margin-bottom: 35px !important;
}
.depo_bg .inpts{
    width: 100%;
    padding: 7px;
    outline: none;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #ff8b4757;
    color: var(--text_color);
}
.depo_bg  .my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 1.5rem !important;
}
.dep_with_group{
    border-radius: 10px;
    padding: 40px;
    position: relative;
    margin: 30px 0px 0px;
	border: 1px solid #11d1c14f;
    background: var(--box-color);
}
.depo_payment_group{
    margin: 60px 0px 0px !important;
}

.but-close i{
    font-size: 20px;
    color: #ddd;
    padding: 8px 12px !important;
    background: #3e3e42 !important;
    border-radius: 25px;
    margin: 0px 17px 0px 0px;
    box-shadow: rgb(202 59 68 / 60%) 0px -1px 10px 0px;
}
.text-reset{
    background: unset;
    border: none;
}

/********====== Deposit part End ======********/


/***** Withdrawal Part Start******/
.with_head{
   display: flex;
    align-items: center;
    justify-content: center; 
}
.with_pay{
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0px 10px;
    box-shadow: var(--box-shadow-value);
}
.with_pay img{
    float: right;
    max-width: 50px;
    margin-top: -52px;
}
.with_pay h2{
    font-size: 16px;
    font-weight: 400;
    text-align: start;
    padding: 10px;
    color: var(--text_color);
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: var(--box-color);
}
.with_pay h2 span{
    display: block;
    font-size: 25px;
    font-weight: 600;
    font-family: var(--Primary_font);
    margin: 10px 0px 0px;
    color: #00b6b4;
}
.check_box2{
    position: relative;
    background: var(--box-color);
    border-radius: 5px;
    box-shadow: var(--box-shadow-value);
    margin: 10px 0px;
    text-align: center;
    padding: 20px;
}
.check_box2 input{
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    opacity: 0;
}
.check_box2 img{
    height: 50px;
    width: 70px;
    margin: 15px 0px;
}
.check_box2 h2{
	font-size: 25px;
    font-weight: 500;
    font-family: var(--Primary_font);
    background: var(--secondary_color);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}	
.with_box h2{
    font-size: 25px;
    font-weight: 500;
    font-family: var(--Primary_font);
    color: var(--secondary_color);
}
.checkmark2{
    padding: 9px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffdb;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    width: 139px;
    text-align: center;
    position: absolute;
    top: -221px !important;
    left: 195px;
    background: url(../images/Select_img1.png);
    background-size: 100% 100%;
    height: 35px;
    width: 35px;
    margin-left: auto;
    display: block;
    z-index: 1;
    filter: var(--img-fliter);
}
.check_box2 input:checked ~ .checkmark2{
    background: url(../images/select_img.png);
    background-size: 100% 100%;
    filter: var(--img-fliter);
}
.check_box2  .plan_but {
	position:relative;
}
.With_bg  .checkmark_bg{
	position:unset;
}	
.with_box h3{
	font-size: 16px;
    font-weight: 500;
	font-family:var(--secondary_font);
    color: var(--secondary-text);
    text-align: start;
    padding: 5px 0px;
}
.with_box .width{
    width: 50%;
    overflow: auto;
}
.with_box .width{
    overscroll-behavior: none;
}
.with_deatils{
    margin: 35px 0px 0px;
}
.with_box img{
    height: 45px;
    width: 45px;
    display: block;
    margin: auto;
}
.with_box  span{
    font-size: 20px;
    font-weight: 500;
    font-family: var(--Primary_font);
    float: right;
    color: #00b6b4;
}
.with_box h6 a{
    color: #056484 !important;
    font-size: 13px;
    font-weight: 500;
}
.with_box h6{
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    color: #003360;
}
.with_box h6 span{
    text-align: end;
    float: right;
}
.With_bg .form1 {
    border-radius: 10px;
    margin: 30px 0px 0px;
    background: var(--box-color);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
	border:unset;
}
.With_bg .form_item input{
}
.With_bg .form_item textarea{
}
.with_pay i{
    font-size: 30px;
    background: #00b6b4;
    height: 57px;
    width: 57px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    border-radius: 5px;
    float: right;
    margin: -57px 0px 0px;
}

/***** Withdrawal Part End******/


/***** Deposit list  Part Start*****/

.list h2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--secondary_font);
    color: var(--Primary_color);
    background: var(--head_bgcolor);
    padding: 10px;
    border-radius: 15px;
}
.list h2 span{
    padding: 0px 0px 0px 10px;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--secondary_font);
    color: var(--secondary_color);
}
.list_item h3{
    font-size: 14px;
    font-weight: 500;
    font-family: var(--secondary_font);
    padding: 10px;
    margin: 5px 0px;
    color: var(--text_color);
	border-bottom: 1px dashed #fea52d69;
}
.list_item span a{
     color: #0e2d1c; !important;

    font-weight: 600;
    font-size: 15px;
}
.text-light span a{
    color: #ffb34e !important;
    font-weight: 600;
    font-size: 15px;
    
}
.list_item span a {
    color: #ffa758 !important;
}
.list_item h3 i{
    font-size: 13px;
    font-weight: 600;
    padding: 0px 5px 0px 0px;
}
.list_item h3 span{
    float: right;
	color: #00b6b4;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--Primary_font);
    letter-spacing: 1px
}
.dep_list .error,.hist_bg .error{
    color: var(--secondary-text);
    padding: 4px;
    border-radius: 5px;
    margin: 10px 0px 0px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
    text-transform: capitalize;
    background: #fdb74fc4;
}
.dep_list  .list{
    padding: 20px;
    box-shadow: var(--box-shadow-value);
    border-radius: 5px;
    background: var(--box-color);
}
.dep_list .text{
    color: #ddd;
}
.Expire{
    font-size: 14px;
    font-weight: 400;
    font-family: 'Cabin Condensed';
    color: #ddd;
    float: right;
    margin: 10px 0px;
}
.dep_list .w-100 {
    padding: 10px !important;
}
.dep_list  .text-capitalize{
    margin: 10px 0px;
    background: #2b2a2a;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

/***** Deposit list  Part End******/


/***** history Part Start*****/

 .hist_bg  .form_select{
    margin-bottom: 30px;
}
.hist_bg .form_but {
    margin: 0px 0px 0px;
}
.hist_bg  .list_group{
    box-shadow: var(--box-shadow-value);
    padding: 10px;
    background: var(--box-color);
    max-width: 525px;
    width: 100%;
    margin: auto;
    border-radius: 5px;
}
.hist_bg .inpts {
    width: 100%;
    padding: 9px;
    outline: none;
    border-radius: 5px;
    color: var(--text_color);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
    background: var(--head_bgcolor);
}
.hist_foot{
	max-width:unset !important;
	width:100% !important;
}
.hist_foot img{
    max-width: 35px;
    width: 100%;
    margin: 0px 15px 0px 0px;
}
.hist_foot h4{
    font-size: 16px;
    font-weight: 500;
	color: var(--text_color);
}
.pagination{
    justify-content: center;
    margin: 25px 0px !important;
}
.pagination li{
    width: 6%;
    text-align: center;
    margin: 10px !important
}
.page-link{
    position: relative;
    display: block;
    border: none;
    padding: 5px !important;
    font-size: 15px;
    font-weight: 500;
    color: #ff9031;
    background-color: #fff;
    border-color: unset;
    border-radius: 5% !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-item.active .page-link{
    background: #ffc681 !important;
}

/***** history Part End*****/


/***** Referal Part Start******/
.ref {
    padding-bottom: 50px;
}
.ref_text{
	background: var(--box-color);
    border-radius: 10px;
	padding: 20px 20px 20px 0px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    margin: 20px auto;
    box-shadow: var(--box-shadow-value);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ref_text i{

    font-size: 30px;
    border-radius: 5px;
    float: right;
    margin: 0px 0px 0px;
    background: #fdb74f;
    height: 57px;
    width: 57px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Primary_color);

}
.ref_text h3{
	font-size: 15px;
    font-weight: 400;
    text-align: start;
    color: var(--text_color);
}
.ref_text h3 span{
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #00bec2;
}
.ref_text h4{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--secondary_font);
    color: var(--secondary_color);
    text-align: start;
    padding: 7px 0px 0px;
}
.ref .head4 h2{
    font-size:30px;
}
/***** Referal Part End******/


/***** Referal link Part start******/
.tab{
    display: flex;
    align-items: baseline;
    justify-content: center;
	position:relative;
}
.referlink_bg .tab .tablinks.active{
    background: var(--secondary_color);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--secondary_font);
    max-width: 200px;
    width: 100%;
}
.referlink_bg .tab .tablinks {
	padding: 9px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
    display: block;
    max-width: 200px;
    width: 100%;
    border-radius: 5px !important;
    margin: 0px 10px !important;
    background: var(--head_bgcolor);
    color: var(--Primary_color);
    border: none;
    cursor: pointer;	
}
.referlink_bg .tabcontent{
	padding: 15px;
    border-radius: 10px;
    margin: 30px;
    background: var(--box-color);
    position: relative;
}
.referlink_bg .tabcontent h3 {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--text_color);
    margin: 10px 0px 10px;
}
.referlink_bg .tabcontent h3 span {
    font-size: 25px;
    font-weight: 500;
    font-family: var(--Primary_font);
    color: var(--secondary_color);
}
.referlink_bg  .inpts{
    padding: 20px;
    width: 100%;
    border: 1px solid #ff8f3c9c;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--text_color);
    background: var(--head_bgcolor);
}
.referlink_bg .copy_but .but3 {
    padding: 7px 25px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--Primary_font);
    transition: all 0.3s ease;
    width: fit-content;
    background: #0fcdbf;
    border: none;
    outline: none;
    color: #fff !important;
    border-radius: 3px;
    margin: 20px 0px 0 !important;
}
.referlink_bg .copy_but span {
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: 600;
    font-size: 13px !important;
    font-family: var(--secondary_font);
    color: var(--text-color) !important;
}

/***** Referal link Part End******/

/***** Security Part Start******/
.authen_form{
    margin: 30px 0px 0px;
}
.form_qr{
    float: inline-start;
    padding: 10px 50px;
}
.security .form1{
	border-radius: 10px;
    padding: 40px;
    position: relative;
    margin: 30px 0px 0px;
    border: unset;
    background: var(--box-color);
	box-shadow: var(--box-shadow-value);
}
.security .form1 h3{
    font-size: 25px;
    font-weight: 400;
    font-family: var(--Primary_font);
    letter-spacing: .5px;
    padding: 0px 0px 10px;
    background: var(--graident_text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.security .form1 p{
	font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary_font);
    padding: 10px 34px;
    margin: 5px 0px !important;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--Primary_color);
}
.security .form1 label{
    position: relative;
}
.security .form1 label input{
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    opacity: 0;
}
.security .form1 .checkmark{
	height: 20px;
    width: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    background: url(../images/Select_img1.png);
    background-size: 100% 100%;
}
.security .form1 label input:checked ~ .checkmark{
    background:url(../images/select_img.png);
	background-size:100% 100%;
    border:1ps solid #e4c136;
}
.security .form1 label input:checked ~ .checkmark::before{
    transform: translateX(10px);
    transition:.5s;
}
.security .checkmark{
	position: unset;
}	

.authen_part{
    padding: 30px;
    margin: 20px 0px 0px;
    background: var(--box-color);
    border-radius: 10px;
}
.secure_text{
    padding: 10px 0px;
}
.secure_text a{
	color: var(--secondary_color) !important;
    font-weight: 500;
    font-family: var(--Primary_font);
    font-size: 20px;
    letter-spacing: .3px;
}
.secure_text h3{
    font-size: 18px;
    font-weight: 400;
    font-family: var(--secondary_font);
    color: var(--secondary-text-color);
}
.secure_text span a{
    color: #ffef3f;
    font-size: 15px;
    font-weight: 600;
}
.secure_text span{
    font-size: 15px;
    font-weight: 600;
    font-family: var(--secondary_font);
    color: var(--secondary_text_color);
    margin: 0px 0px 0px 10px;
}
.secure_text .inpts{
    width: 70%;
}
.secure_text  .sbmt{
    width: 70%;
}
.security .form_but{
	margin: 20px 0px;
}
/***** Security Part End******/

.edit_acc .form_item h4 {
    margin: 0px 0px 5px;
}
.edit_acc  .inpts{
	width: 100%;
    padding: 7px;
    outline: none;
    border-radius: 5px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--secondary_font);
    color: var(--Primary_color);
}

.dep_con .form_items {
    position: relative;
}
.dep_con .form_items button {
	position: absolute;
    top: -3px;
    right: 17px;
	background: var(--secondary_inner_box-color);
    border: none;
    outline: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 8px;
}
.dep_con .form_items i{
    color: #ddd;
}
.dep_con .list{
    padding: 20px !important;
    border-radius: 5px;
    margin: 20px 0px 0px !important;
    background: var(--box-color);
}
.dep_con .deposit-process-wrap,.dep_con .deposit-cancel-wrap{
    display: inline-block;
    width: 25%;
}


/*********Extra Pages part******/
.hist_bg1{
    padding: 50px 0px;
}
.hist_bg1 .pay{
	max-width: 35px;
}
.hist_bg1 .list h2{
    display: block;
}
.login_tfa .form_btn {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.list h2 span{
    float: right;
}
.hist_bg1 .list_item h3{
}
.hist_bg1  .list{
    margin: 0px 0px 20px;
}
.login_tfa .form_btn .sbmt{
    width: 45%;
}
.dep_list1 .list_item h3{
    color: #ddd;
}
.hist_bg1 .dep_list .error, .hist_bg1 .error  {
    text-align: center;
}
.pay{
    max-width: 40px;
}
/*********Extra Pages End******/


/*********Responsive Part start ******/

@media (max-width:1199px){

  .welcome_txt{
	display: none;
  }
  .acc_box{
	padding: 20px 20px;
  }
  .balance_group{
	max-height: 305px;
  }
  .depo_bg .plan_item {
      max-width: 278px !important;
  }
  .sidebar .link_list {
	display: none;
  }
  .dash_secu{
	padding: 12px !important;
  }
  .acc_bal_item{
	margin: 0px 4px;
  }
  .dash_but{
	max-width: 78px;
  }	
  .acc_ref .inpts{
      font-size: 12px !important;
  }
  .ref_text h3 {
      font-size: 15px;
  }
  .referlink_bg .tabcontent{
	margin: 30px 0px;
  }
  .secure_text .sbmt{
	width: 63%;
  }
  .secure_text .inpts {
    width: 61%;
  }
  .depo_bg .checkmark{
    top: -255px !important;
	left: 215px;
   }
  .checkmark2{
    left: 153px;
    height: 30px;
    width: 30px;
  } 
  .hist_bg .list_group{
	max-width: 430px;
  }
.user_deti{
	display:none;
}
.check_box2{
    max-width: 204px;
    width: 100%;
}


}

@media (max-width:991px){

	.sidebar.close ~ .home-section{
		width: calc(100% - 0px);
	}
	.dash_body{
		padding: 30px 15px;
	}
    .dash_but {
        max-width: 100px;
    }
	.dash_body .user_deti{
		display: flex;
   		width: 28%;
	}
	.home-content a{
		padding: 5px 25px;
	}
	.acc_bal_item{
		padding: 30px 15px;
	}
	.dash_secu{
      max-width: unset;
      width: 100%;
      margin: 15px 0px;
	}
	.dash_secu button{
		top: 68px !important;
	}
    .acc_bal_item .head p{
        text-align: center;
    }
	.acc_box{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        max-width: unset;
        margin: 0px 0px 20px;
	}
    .acc_box-foot h3 {
        font-size: 12px;
        margin: 0px 0px 0px 11px;
	}
	.account_stat_items h3{
		font-size: 13px
	}
  .user_deti{
      display:block;
  }

    .balance_group{
      margin: 15px 0px 0px;
    }
	.link_list h3 i{
        display: block;
        z-index: 1111;
        position: relative;
	}
	.header1_top .user_deti{
		position: absolute;
    	right: -419px;
	}
	.sidebar{
		position: absolute;
    	width: 228px;
	}
	.welcome_txt{
		display: block;
	}
   .ref_text h3 {
        font-size: 12px;
    }
    .referlink_bg .nav-tabs .nav-link{
        max-width: 170px;
    }
	.depo_bg .checkmark {
		top: -254px !important;
        left: 206px;
	}
	.depo_bg  .plan_item p{

	}
    .depo_bg  .plan_img3 {
        margin: 0px 5px 0px 0px;
        max-width: 20px;
    }
   .depo_bg .plan_item {
		margin: 10px 0px;
    }
	.plan_body h6{
      font-size: 13px;
	}
	.depo_bg .head h2{
		margin: 29px 0px 20px;
        max-width: unset;
        width: 100%;
        text-align: center
	}
	.checkmark2{
		left: 155px;
	}
	.With_bg .form1{
		margin: auto;
	}	
	.dep_list .list{
		padding: 10px;
	}
    .hist_bg .list_group {
        max-width: 350px;
    }
    .secure_text .inpts {
        width: 51%;
    }
  	.secure_text .sbmt {
          width: 100%;
     }
	.security .form1{
		margin: auto;
	}
	
		
}

@media (max-width:767px){

  .home-section .header1_top{
      height: 110px;
  }
  .home-section .header1_top{
	flex-direction: column;
  }
  .link_list{
      margin: 14px 0px 0px;
  }
  .header1_top .user_deti{
        right: -384px;
  }
  .acc_stat_group .stat_item {
 	 max-width: 235px;
  }
  .account_main li{
	width: 48%;
  }
  .acc_pay_bal h4 {
  	font-size: 22px;
  }
  .acc_box {
    padding: 20px 48px;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0px auto 20px
  }
  .acc_bal_item {
	margin: 8px 20px 26px 0px;
	
  }
  .acc_bal_list{
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px 0px;
  }
  .acc_pay_bal img{
  	max-width: 35px;
  }
  .checkmark2{
	left: 190px;
    top: -197px !important;
  }
  .acc_txt{
	text-align: center;
  }
  .depo_bg .checkmark {
    top: -35px;
	left: 206px;
  }
  .depo_bg .plan_item{
		margin: 10px auto;
  }
  .hist_bg .form_select {
      margin-bottom: 10px;
  }
  .hist_bg .list_group{
      max-width: unset;
      margin: 15px 0px 0px;
  }
  .acc_pay_bal_bg{
    min-width: 700px;
    padding: 15px;
  }
  .second_row .col-lg-8{
  	overflow-x: scroll;
  }
  .form_qr{
  	padding: 10px 25px;
  }
  .secure_text .inpts {
  	width: 100%;
  }
  .check_box2 {
    max-width: 250px;
    width: 100%;
  }
  
 
}
@media (max-width:576px){
    .home-content a {
	  padding: 4px 15px;
      margin: 0px 3px;
      font-size: 12px;
    }
   .user_deti img{
    	max-width: 40px;
	}
	.link_list h3 i {
      font-size: 16px;
      padding: 7px 9px;
	}
	.link_list a{
		font-size: 14px;
    	padding: 5px 11px;
	}
	.dash_part{
		padding: 15px;
	}
	.dash_body {
        padding: 20px 10px;
    }
    .account_main li {
        width: 100%;
    }
	.acc_box h2{
		font-size: 20px;
	}
	.acc_box h2 span{
		font-size: 14px;
	}
    .acc_bal_item {
        margin: 8px 0px 10px 0px;
        width: 100%;
    	background-size: cover;
    }
    .dash_secu {
        padding: 10px !important;
	}
	.acc_ref .inpts{
		font-size: 12px !important;
	}    
	.dash_secu button {
		top: 86px !important;
    }
    .dash_body .dash_secu a {
        font-size: 14px;
    }
	.balance_group{
		padding: 10px;
	}
	.balance_group h4 {
    	font-size: 14px;
	}
	.balance_group h4 span{
		font-size: 15px;
	}
    .stat_item h3 {
        font-size: 13px;
    }
    .stat_item h3 span {
        font-size: 20px;
	}

	.payment {
		max-width: 25px;
	}
	.dash_secu {
    	padding: 10px;
	}
  	.tow {
      font-size: 17px;
      font-weight: 500;
	}
  .dash_secu a {
      font-size: 13px;
	}
	.dash_secu .inpts{
		font-size: 11px;
	}
	.acc_ref button{
	  padding: 5px;
      top: 41px;
      right: 10px;
	  font-size: 15px;
	}
	.refer_group .table{
		min-width: 700px;
	}
	.acc_box {
        padding: 20px 20px;
	}
	.sidebar{
		width: 165px;
	}
    .sidebar .logo-details img {
		width: 57px;
    }
	.sidebar .nav-links{
		margin: 0px 0px 0px !important;
	}
    .user_deti {
        bottom: 5px;
    }
	.user_deti h3 {
    	font-size: 25px;
	}
	.user_deti h3 span{
		    font-size: 9px;
	}
	.welcome_txt{
		padding: 0px 0px 5px;
	}
    .welcome_txt h3 {
        font-size: 13px;
    }
  	.welcome_txt p {
      font-size: 10px;
	}
	.sidebar .nav-links li a .link_name {
    	font-size: 13px;
	}
    .depo_bg {
        padding: 10px;
    }	
    .depo_bg .plan_item {
        max-width: 220px;
    }
    .depo_bg .checkmark {
 		left: 217px;
        height: 25px;
        width: 25px;
        top: -215px !important;
	}
  	.depo_payment_group {
      margin: 0px 0px 0px !important;
	}
	.depo_bg .plan_item p {
    	font-size: 20px;
	}
	.depo_bg .checkmark_bg input:checked ~ .checkmark:after{
      top: 8px;
      right: 4px;
	}
    .depo_payment_group {
        margin: 0px 0px 0px;
    }
    .depo_bg .nav-tabs .nav-link {
        font-size: 10px;
        max-width: 135px;
         margin: 15px auto !important;
    }
	.depo_payment_group .head h2{
		font-size: 22px;
	}
	.dep_part{
		background-size: cover;
	}
	.dep_with_group{
		padding: 15px;
	}

.depo_bg .nav-tabs .nav-link{
    font-size: 13px;   
	max-width: 142px;
}
.but-close i {
    font-size: 18px;
    margin: 0px 0px 0px 0px;
}
.with_pay i{
    font-size: 21px;
    background: #fdb74f;
    height: 52px;
    width: 52px;
}
.with_pay h2 span {
    display: block;
    font-size: 22px;
}
.with_head{
    flex-direction: column;
}
.with_pay{
    margin: 0px 0px 10px;
}
.with_pay h2 {
    font-size: 14px;
}
.with_deatils {
    margin: 20px 0px 0px;
}
.With_bg .form1{
    padding: 10px !important;
    margin: 20px auto 0px;
}
.list h2 span{
    font-size: 12px;
}
.list_item h3 span{
	font-size: 11px;
}
.list h2{
    font-size: 14px;
}
.list_item h3{
    font-size: 12px;
    padding: 5px;
}
.Expire {
    font-size: 12px;
}
.pay {
    max-width: 30px;
}
.text {
    font-size: 14px;
}
.hist_bg .form_select {
    margin-bottom: 15px;
}
.go_but{
    margin: 0px 0px 20px;
}
.hist_bg .pay {
    max-width: 22px;
}
.dep_list .error, .hist_bg .error{
    font-size: 12px;
}
.hist_foot img {
    max-width: 20px;
}
.hist_foot h4 {
    font-size: 14px;
}
.dash_secu{
    padding:10px;
}
.pagination li{
	width: 16%;
    text-align: center;
    margin: 2px !important;
}
.page-link {
    padding: 5px !important;
    font-size: 14px;
}
.ref_text{
	padding: 10px;
}
.ref_text i{
    height: 40px;
    width: 40px;
    font-size: 23px;
}
.referlink_bg .nav-tabs .nav-link {
    font-size: 14px;
}
.referlink_bg .nav-tabs .nav-link {
    max-width: 100px;
    margin: 0px 0px 10px 0px !important;
}
.referlink_bg .form_item h3 span {
    font-size: 18px;
}
.referlink_bg .form_item button {
    width: 34%;
}
.referlink_bg .tab .tablinks{
	max-width: 110px;
    margin: 10px 5px !important;
}
.referlink_bg .tab .tablinks.active{
	font-size: 14px;
}
.referlink_bg .tab{
    flex-wrap: wrap;
}
.referlink_bg .tabcontent {
	margin: 20px 0px;
}
.referlink_bg .inpts{
    padding: 10px;
    font-size: 12px;
}
.referlink_bg .tab .tablinks.active{
    max-width: 110px;
}
.security .form1 h3 {
    font-size: 14px;
}
.security .form1 p{
    padding: 10px 0px;
    margin: 0px 0px !important;
}
.security .form1 {
    margin: 10px 0px;
}
.security .form1{
    padding: 20px;
}
.edit_acc .head h3{
    margin: 5px 0px !important;
    font-size: 22px;
}
.form_item {
    margin: 0px 0px;
}
.edit_acc .form1 h3{
    margin: 0px 0px;
}
.form_item h4 {
    font-size: 15px;
    padding: 0px 0px 5px
}
.edit_acc .mb-4 {
    margin-bottom: .5rem !important;
}
.form_qr{
  float: unset;
  padding: 10px 0px
}
.form_qr img{
    max-width: 90px;
    width: 100%;
    display: block;
    margin: auto;
}
.secure_text h3 {
    font-size: 10px;
}
.secure_text span {
    font-size: 10px;
}
.secure_text .inpts {
	width: 100%;
	margin: 0px 0px 0px;
    font-size: 13px;
}
.authen_part{
    padding: 0px;
	margin: 20px 0px 0px;
}
.edit_acc  .form_item{
	margin: 10px 0px;
}
.edit_acc .head h2 {
    font-size: 21px;
}
.checkmark2{
  left: 244px;
  top: -197px !important;
}
.check_box2 {
  max-width: 319px;
  width: 100%;
  margin: auto;
}
.authen_group{
    padding: 15px;
}

}
