*,*::after,*::before{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
a{
    text-decoration: none;
}
ul{
    list-style-type: none;
}

.container_dashboard{
    display:flex;
    flex-direction: column;
}
/* -----spinner----- */
.spinner {
    margin: 0 auto;
    width: 70px;
    text-align: center;
  }
  
  .spinner > div {
    width: 18px;
    height: 18px;
    background-color: #fff;
  
    border-radius: 100%;
    display: inline-block;
    animation: sk-bounce 2s infinite ease-in-out;
  }
  
  .spinner .bounce1 {
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    animation-delay: -0.16s;
  }
  
  @keyframes sk-bounce {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }
  
/* ----end of spinner----- */

p.success,
p.error{
    margin-bottom:2rem;
    width:100%;
    background: rgba(131, 214, 131, 0.322);
    color:rgb(23, 182, 23);
    font-size: 1.6rem;
}
p.error{
    background: rgba(216, 103, 103, 0.678);
   color: rgb(255, 0, 23)
}

body{
    font: 400 0.8rem 'Open Sans',sans-serif;
    color: #454f58;
    /* background-color: #f8f9fa; */
    padding: 10px;
    background: #0d40a9;
}
/* beginning of top */
.container_dashboard .top{
    height:10rem;
    width:100%;
    background: #efeff7;
    border-bottom:2px solid #d5dfef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top:0;
    z-index: 4000;
}
.container_dashboard .top .hamburger{
    width:4rem;
    height:4rem;
    border:.1rem solid #0d40a9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left:2rem;
    visibility: hidden;

}
.container_dashboard .top .hamburger i{
    font-size: 2rem;
    color:#0d40a9;
}
.container_dashboard .top .profile{
    align-self: stretch;
    display:flex;
    align-items: center;
    background-color: transparent;
    padding:2rem;
    position:relative;
}
.container_dashboard .top .profile .security_logout{
   position:absolute;
   right:0;
   top:100%;
   background:#fff;
   padding:2rem 4rem;
   display: none;
   gap:3rem;
   box-shadow: 2rem 3rem 3rem rgb(0 0 0 / 20%);
   z-index:40000;
}
.container_dashboard .top .profile .security_logout li{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.container_dashboard .top .profile .security_logout li i{
    font-size: 3rem;
}
.container_dashboard .top .profile .security_logout li:hover i{
    color:#0d40a9;
}
.container_dashboard .top .profile:hover .security_logout{
    display: flex;;
}
.container_dashboard .top .profile:hover{
    background-color: #fff;
}
.container_dashboard .top .profile .username{
    font-size: 1.4rem;
}
.container_dashboard .top .profile .user{
    position: relative;
    margin: 0;
    width: 4rem;
    height: 4rem;
}
.container_dashboard .top .profile .user::after{
    width:1rem;
    height:1rem;
    background: red;
    content:"";
    position:absolute;
    border-radius: 50%;
    right:.2rem;
}
.container_dashboard .top .profile .user img{
    width:100%;
}
/* end of top */
/* beginning of bottom */
.container_dashboard .bottom{
    display: flex;
    background: #efeff7;
    gap:2rem;
    min-height: calc(100vh - 10rem);
    
}
/* beginning of sidenav */
.container_dashboard .bottom .left{
    flex:0 1 25%;
    display: flex;
} 
.container_dashboard .bottom .left .left_icon{
    width:8rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:2rem 0;
}
.container_dashboard .bottom .left .left_icon li{
    width:5.2rem;
    height:5.2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.container_dashboard .bottom .left .left_icon li.active{
    background: #e5f0ff;
}
.container_dashboard .bottom .left .left_icon li:not(.active):hover{
    background: #e1e7ef;
}

.container_dashboard .bottom .left .left_icon li i{
    font-size: 2.5rem;
}
.container_dashboard .bottom .left .left_icon li:not(:last-of-type){
    margin-bottom:1rem;
}
.container_dashboard .bottom .left ul.nav{
    align-self: flex-start;
    background: #fff;
    flex:1;
    border-left:.3rem solid  #1273eb;
    padding:1rem;
}
.container_dashboard .bottom .left ul.nav li{
    padding:1.5rem 0;
    
}
.container_dashboard .bottom .left ul.nav li a{
    font-weight: 600;
    color:#1273eb;
    font-size: 1.4rem;
}

/* ending of sidenav */

.container_dashboard .bottom .right{
 flex:1;
 padding:2rem 2rem 2rem 0rem;
} 
.container_dashboard .bottom .right .cards{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap:2rem;
}
.container_dashboard .bottom .right .cards .card{
    background: #fff;
    min-height:10rem;
    border-radius: .5rem;
   padding:1rem;
}
.container_dashboard .bottom .right .cards .card .stats-tile{
     display:flex;
     align-items: center;
     height:100%;
}
.container_dashboard .bottom .right .cards .card .sale-graph{
    margin-left:auto;
}
.stats-tile .sale-icon{
    height: 6rem;
    width: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 1.5rem;
    text-align: center;
    background: #e5f0ff;
    border-radius: 5rem;
}
.stats-tile .sale-icon i{
    font-size: 3rem;
    color: #0d40a9;
}
.stats-tile .sale-details h2{
    color: #1273eb;
    font-weight: 600;
    font-size:3rem;
}
.stats-tile .sale-details p {
    margin: 0;
    color: #828a91;
    font-size: 1.4rem;
}
/* main info */
.container_dashboard .bottom .right .main_info{
    display: flex;
    margin-top:2rem;
    gap:2rem;

}
.container_dashboard .bottom .right .main_info .main_info_left{
    width:32rem;
    background-color: #FFF;
    min-height:40rem;
    padding:1.5rem;
    align-self: flex-start;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-header{
    display: flex;
    justify-content: space-between;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-header .card-title{
    font-weight: 600;
    font-size: 1.6rem;
    color:#000;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-header a.btn{
    font-size: 1.1rem;
    font-weight: 600;
    padding: .7rem 2rem;
    border: 0;
    border-radius: 3rem;
    background: #e5f0ff;
    color: #1273eb;
    text-decoration: none;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body{
    background: #efeff7;
    margin-top:2rem;
    padding:2rem;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure figcaption{
    width:8rem;
    height:8rem;
    margin-bottom:1rem;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure h5{
    font-size:1.8rem;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure figcaption img{
    width:100%;
    
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure ul{
    align-self: flex-start;
    background-color: #fff;
    width:100%;
    margin-top:2rem;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure ul li{
    padding:1rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
}
.container_dashboard .bottom .right .main_info .main_info_left .card-body figure ul li:not(:last-of-type){
    border-bottom:.1rem solid #eee;
}
.container_dashboard .bottom .right .main_info .main_info_right{
    background-color: #FFF;
    flex:1;
    padding:2rem;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-title{
    font-size: 1.8rem;
    margin-bottom:1.5rem;
    color:#000;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-body ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: .1rem solid #eee;
    padding:1rem;
    font-size: 1.4rem;
} 
.container_dashboard .bottom .right .main_info .main_info_right .card-body .card-item{
    margin-top:2rem;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-body .card-item h5{
    font-size:1.4rem;
    margin-bottom:.5rem;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-body .card-item p{
    font-size: 1.2rem;
    margin-bottom:1rem;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-body .card-item .input_button{
    display:flex;
    width:100%;
    gap:1rem;
    margin-bottom:2rem;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-body .card-item .input_button input{
    height:4rem;
    padding:1rem;
    max-width:25rem;
    width:100%;
}
.container_dashboard .bottom .right .main_info .main_info_right .card-body .card-item .input_button button{
    background: #1273eb;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    cursor: pointer;
    width:8rem;
}
/* -----------edit profile------------- */
.container_dashboard .bottom > .profile{
    margin-top: 4rem;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .10);
    flex:1;
    margin-right:2rem;


}
.container_dashboard .bottom > .profile .title{
    background: #7e57c2;
    padding:1.2rem 4rem;
    width:100%;
    color:#fff;
    font-size:1.8rem;
}
.container_dashboard .bottom > .profile   form{
    padding:3rem 4rem;
}
.container_dashboard .bottom > .profile form  button{
    background-color: #7e57c2;
    border-color: #7e57c2;
    padding: 1rem 1.8rem;
    line-height: 1.5;
    border-radius: 0.15rem;
    color:#fff;
    cursor:pointer;
    border:none;
}
.container_dashboard .bottom > .profile form  ul  li{
    display: flex;
    margin-bottom: 2.5rem; 
}
.container_dashboard .bottom > .profile form ul li  label{
    flex:0 1 45%;
    font-size: 1.4rem;
    color:grey;
}
.container_dashboard .bottom > .profile form ul li input{
    height:4.5rem;
    padding:1rem;
}
.container_dashboard .bottom > .profile form ul li  span,
.container_dashboard .bottom > .profile form ul li input{
    flex:0 1 55%; 
    font-size: 1.4rem;
    color:grey;
}
/* ---deposi section----------- */
.container_dashboard .bottom > .payment_process{
    flex:1;
    align-self: flex-start;
    padding:2rem 2rem 2rem 0;

}
.container_dashboard .bottom > .payment_process > form{
    background:#fff;
    padding:3rem;
}
.container_dashboard .bottom > .payment_process > form .input__field{
    display:flex;
    flex-direction: column;
    position:relative;
    height:5rem;
}
.container_dashboard .bottom > .payment_process > form .input__field:not(:last-of-type){
    margin-bottom:2.5rem;
}
.container_dashboard .bottom > .payment_process > form .input__field input,
.container_dashboard .bottom > .payment_process > form .input__field select{
    height:100%;
    border:1px solid #1273eb;
    padding:1rem;
   
}
.container_dashboard .bottom > .payment_process > form .input_field_error {
    margin-bottom: 2.5rem;
}
.container_dashboard .bottom > .payment_process > form .input_field_error .input__field i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: grey;
    font-weight: 600;
}
.container_dashboard .bottom > .payment_process > form .input_field_error .input__field input {
    padding-left: 3rem;
}
.container_dashboard .bottom > .payment_process > form .input__field label{
    position:absolute;
    top:-.8rem;
    left:2rem;
    background: #fff;
    padding:.4rem;
    font-size: 1.4rem;
    color: #1273eb;
    font-weight: 600;
    box-shadow:1px 2px 4px rgba(0, 0, 0, .10);
}
.container_dashboard .bottom > .payment_process > form button{
    background:  #1273eb;
    color:#fff;
    padding:1rem 3.5rem;
    border:none;
    font-weight: 600;
    font-size: 1.4rem;
}
.container_dashboard .bottom > .payment_process > form .title{
    margin-bottom:4rem;
    font-size: 2rem;
    color:#000;
    font-weight: 600;
}
.container_dashboard .bottom > .payment_process > form .title ~p{
    font-size: 1.8rem;
    margin-bottom:2rem;
}

/* -----deposit section--------- */

  .container_dashboard .bottom > .depositHistory_wrapper{
    flex:1;
    padding:2rem 2rem 2rem 0;
    overflow-x: auto;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .title{
    background-color:#0d40a9;
    padding:1rem 1.5rem;
    color:#fff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .history_range{
    margin-top:3rem;
    border:1px solid #e7dada;
    padding:2rem;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .history_range .from{
  display: flex;
  margin-bottom:2rem;
  gap:4rem;
  }
  p.record_not_found{
    margin-top:2rem;
    font-size:2rem;
    text-align: center;
    background:grey;
    padding:3rem;
    color:#fff;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .history_range .from span{
  width:10rem;
  font-size: 1.6rem;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .history_range .from input,
  .container_dashboard .bottom > .depositHistory_wrapper .history_range .from .input_error{
    height:5rem;
    max-width:40rem;
    width:100%;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .history_range .from .input_error p{
    margin-top:.5rem;
    color:red;
    font-size:1.2rem;
  }
  .container_dashboard .bottom > .depositHistory_wrapper .history_range button  {
    background-color:#0d40a9;
    color:#fff;
    padding:1rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border:none
  }

  .container_dashboard .bottom > .depositHistory_wrapper .form_responsiveness{
    overflow-x: auto;
    margin-top:2rem;
   
 }
 .container_dashboard .bottom > .depositHistory_wrapper .form_responsiveness table{
    width:100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;  
    display: table;
    white-space: nowrap;
      

 }
 .container_dashboard .bottom > .depositHistory_wrapper .form_responsiveness table th,
 .container_dashboard .bottom > .depositHistory_wrapper .form_responsiveness table  td {
   text-align: left;
   padding: 2rem;
   font-size:1.4rem;
   
 }
 .container_dashboard .bottom > .depositHistory_wrapper .form_responsiveness table th{
    background: #fff;
 }
 .container_dashboard .bottom > .depositHistory_wrapper .form_responsiveness table  tr:nth-child(even){background-color: grey;color:#fff} 

 /* ----end of withdrawal/deposit history ----*/

 /* ---deposit list--- */
 .container-fluids{
    flex:1;
    overflow: auto;
    padding:2rem 2rem 2rem 0;
  
 }
 .container-fluids .deposit_section{
    
    margin-top:2rem;
 }
 .container-fluids .deposit_section .table-responsive{
    overflow: auto;
 }
 .container-fluids .deposit_section .table-responsive table{
    width:100%;
    white-space: nowrap;
 }
 .container-fluids .deposit_section .table-responsive table th,
 .container-fluids .deposit_section .table-responsive table td{
    text-align: left;
    padding: 2rem;
    font-size:1.4rem;
    

 }
 .container-fluids .deposit_section .table-responsive table td{
   
    background: #fff;
 }
 .container-fluids .deposit_section .table-responsive table th{
    background: #0d40a9;
    color: #fff;
 }
/* ----beginning of deposit list  */
.container_dashboard .bottom > .payment_confirmation{
    flex:1;
    padding:2rem 2rem 2rem 0;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.payment_confirmation_wrapper{
    margin-top:4rem;
    background:#fff;
    padding:2rem;
    max-width:50rem;
    width:100%
}
.payment_confirmation_wrapper .title{
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin-bottom:1rem;
    text-align: center
;
}
.payment_confirmation_wrapper .useful_notification{
    font-size: 1.4rem;
    text-align: center;
    color: grey;
}
.payment_confirmation_wrapper .useful_notification span{
    color:#000;
    font-weight: 600;
}

.payment_confirmation_wrapper .image{
    width:100%;
}
.payment_confirmation_wrapper .image img{
    max-width:100%;
    height: auto;
}
.payment_confirmation_wrapper ul li{
    display: flex;
    font-size: 1.6rem;
    justify-content: space-between;
    border-bottom:1px solid #ccc;
    padding:1rem;
   
}
.payment_confirmation_wrapper ul li span{
    flex:1 ; 
}
.payment_confirmation_wrapper ul li > p{
font-weight: 600;
flex:0 1 40%;
color:#000;
}
.payment_confirmation_wrapper button.upload_receipts,
.payment_confirmation_wrapper a.upload_receipts{
    background:#1273eb;
    color:#fff;
    padding:1.5rem 2rem;
    width:100%;
    margin-top:1rem;
    border:none;
    border-radius: .5rem;
    text-decoration: none;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
}

/* beginning of modal */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100000000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 1rem;
  border: 1px solid #888;
  max-width: 50rem;
  top:50%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
.modal-content form > button{
    padding:1rem 1.5rem;
    background: #0d41a9ab;
    color:#fff;
    font-size: 1.4rem;
    font-weight: 600;
    border:none;
    margin-top:1rem;
}
.modal-content form > .form-group input[type=file]{
    border:1px solid #ccc;
    width:100%;
    padding:1rem;
}
.button_wrapper{
    display:flex;
    gap:1rem;
    margin-top:1rem;
    align-items: center;
}
.button_wrapper button,
.button_wrapper a{
    padding:1rem 2.5rem;
}
.button_wrapper a{
   font-size:1.3rem;
   font-weight: 600; 
}
.personal_information{
padding:2rem ;
background:rgb(241, 234, 234);
}
.personal_information .personal_title{
    font-size: 1.5rem;
    color:#000;
}
.personal_information p{
    margin-top:.5rem;
    font-size: 1.2rem;
    color:grey; 
}
.personal_information .input_name{
    display: flex;
    flex-direction: column;
    margin-top:1rem;
}
.personal_information .input_name label{
    font-size: 1.4rem;
}
.personal_information .input_name input{
    height:4rem;
    width:100%;
    padding:1rem;
    margin-top:1rem;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:50%; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:50%; opacity:1}
}

/* The Close Button */
.close {
  color: #000;
    position:absolute;
    top:50%;
    right:2rem;
    transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
position:relative;
  padding: 1rem 1.6rem;
  color: #000;
  margin-bottom:2rem;
  font-size: 1.4rem;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
/* ending of modal */
/* ----beginning of loading */
/**
 * Quick explanation on values.
 *
 * 1. Define the gap between the balls. The value is unitless, so it's easier to
 *    calculate the wrapper of the element. The number 1 is equal to the size of ball.
 * 2. Calculations to find out the width of wrapper. You don't have to worry much.
 *    It just works.
 * 3. Since we are using absolute positioning to set where they should be located,
 *    we also need to identify the space between two balls. It's also used in animation 
 *    to find how far to move the ball
 * 4. Used for inspecting the behavior of the wrapper. Play around with the values of 
 *    `--loading-spinner-size` and `--loading-spinner-gap` and remove the comment to see 
 *    how the parent wraps the child elements.
 *
 * Reference: https://loading.io/css/
 */

 :root {
    --loading-spinner-size: 1rem;
    --loading-spinner-gap: 1; /* [1] */
    --loading-spinner-wrapper: calc(var(--loading-spinner-size) * 3 + var(--loading-spinner-gap) * var(--loading-spinner-size) * 2); /* [2] */
    --loading-spinner-color: #fff;
    
    --animation-timing: cubic-bezier(0, 1, 1, 0);
    --animation-duration: 600ms;
    --animation-count: infinite;
  }
  .loading_wrapper{
    display:none;
    align-items: center;
    justify-content: center;
    gap:1rem;
    width:100%;

  }
  .loading_wrapper.active{
    display: flex;
  }
  .loading {
    --spacer: calc(var(--loading-spinner-size) * var(--loading-spinner-gap) + var(--loading-spinner-size)); /* [3] */
    position: relative;
    width: var(--loading-spinner-wrapper);
    height: var(--loading-spinner-size);
  }
  
  .loading span {
    position: absolute;
    top: 0;
    width: var(--loading-spinner-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--loading-spinner-color);
    animation-timing-function: var(--animation-timing);
  }
  
  .loading span:nth-child(1) {
    left: 0;
    animation: scale-up var(--animation-duration) var(--animation-count);
  }
  
  .loading span:nth-child(2) {
    left: 0;
    animation: move-right var(--animation-duration) var(--animation-count);
  }
  
  .loading span:nth-child(3) {
    left: calc(var(--spacer) * 1);
    animation: move-right var(--animation-duration) var(--animation-count);
  }
  
  .loading span:nth-child(4) {
    left: calc(var(--spacer) * 2);
    animation: scale-down var(--animation-duration) var(--animation-count);
  }
  
  @keyframes scale-up {
    from { transform: scale(0) }
    to   { transform: scale(1) }
  }
  
  @keyframes scale-down {
    from { transform: scale(1) }
    to   { transform: scale(0) }
  }
  
  @keyframes move-right {
    from { transform: translate(0, 0)    }
    to   { transform: translate(var(--spacer), 0) } /* [3] */
  }
  
  /* General styling */
  * { box-sizing: border-box }
  
/* ----ending of loading */

.latest_form .form-group input[type=file]{
   height:4rem;
   width: 100%;
   border:1px solid grey;
   margin:1rem 0;
   display:flex;
   align-items: center;
   padding:1rem;
}
.latest_form  button{
    background-color: #1273eb;
    border:none;
    height:4rem;
    color:#fff;
    cursor: pointer;
}


/* -------media query section---- */

@media screen and (max-width:1012px) {
    .container_dashboard .bottom > .profile{
       padding-left:2rem;
    }
    .container_dashboard .top .hamburger{
        visibility:visible;
    
    }
    .container_dashboard .bottom{
        position:relative;
    }
    .container_dashboard .bottom .left{
        /* display: none; */
        position:absolute;
        top:0;
        left:-38rem;
        height:100%;
        width:35rem;
        background: #efeff7;
        z-index: 40;
        transition:all .5s;
    } 
    .container_dashboard .bottom .left.active{
        left:0rem;
    }
    .container_dashboard .bottom .right{
        flex:1;
        padding:2rem ;
       } 
       .container_dashboard .bottom > .depositHistory_wrapper{
        padding:2rem 
      }
}
@media screen and (max-width:741px) {

    .container_dashboard .bottom .right .main_info{
       flex-direction: column;
    }
    .container_dashboard .bottom .right .main_info .main_info_left{
        flex:1;
        width:100%;
    }
}
@media screen and (max-width:607px){
.container_dashboard .bottom > .payment_confirmation {
    padding:2rem;
}
}

@media screen and (max-width:591px){
    .container_dashboard .bottom > .profile form  ul > li:not(:first-of-type,:nth-of-type(2)){
        display: flex;
        margin-bottom: 2.5rem; 
        flex-direction: column;
    }
    .container_dashboard .bottom > .profile form  ul > li:not(:first-of-type,:nth-of-type(2)) label,
    .container_dashboard .bottom > .profile form  ul > li:not(:first-of-type,:nth-of-type(2)) input
    {
        flex:1;
        
    }
    .container_dashboard .bottom > .profile form  ul > li:not(:first-of-type,:nth-of-type(2)) label{
        margin-bottom:1rem;
    }
    .container_dashboard .bottom > .profile form  ul > li:not(:first-of-type,:nth-of-type(2)) input{
        border:1px solid grey;
    }
}
@media screen and (max-width:525px){
    ul.new_special > li span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px!important;
        width: 100%;
    }
}
@media screen and (max-width:508px) {

    /* .container_dashboard .bottom > .depositHistory_wrapper .history_range{
       display: none;
      } */
      .container_dashboard .bottom > .depositHistory_wrapper .history_range .from{
        display: flex;
        margin-bottom:2rem;
        gap:0rem;
        }
}
@media screen and (max-width:491px){
    .container_dashboard .bottom > .profile   form{
        padding:2rem;
    }
}
@media screen and (max-width:395px) {

    html{
        font-size: 50%;
    }
}
@media screen and (max-width:309px) {

    html{
        font-size: 40%;
    }
}





ul.new_special > li{
    display:flex;
    justify-content: space-between!important;
    }
    ul.new_special > li p{
        white-space: nowrap;
        color:#000;
        font-family: 900;
    }
    ul.new_special > li span{
        white-space: nowrap; /* Prevents the text from wrapping to the next line */
        overflow: hidden; /* Hides any text that exceeds the defined size */
        text-overflow: ellipsis; /* Displays an ellipsis when the text is clipped */
        max-width: 200px;
        width:100%;
 }
 @media screen and (max-width:477px){
    ul.new_special > li:nth-of-type(3) {
        display: flex;
        flex-direction: column;
    }
    ul.new_special > li  span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%!important;
        width: 100%;
        margin-top:.5rem;
    }
    .payment_confirmation_wrapper ul li span{
        flex:none ; 
    }
    .payment_confirmation_wrapper ul li > p{
    font-weight: 600;
    flex:none;
    color:#000;
    }
    ul.new_special > li:not(:nth-of-type(3)) span{
       margin-left:auto;
       width: auto !important;;
    }
}
 @media screen and (max-width:456px){
    ul.new_special > li:nth-of-type(3) span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 25rem!important;
        width:auto!important;;
        margin-top:.5rem;
    }

}