/* Responsive adjustments */
@media (max-width: 991px) {
  .body-account .sidebar {
    position: absolute;
    left: -260px;
    top: 0;
    z-index: 999;
    height: 100%;
    background: #fff;
  }

  .body-account .sidebar.open {
    left: 0;
    transition: left 0.3s ease;
  }

  .body-account .page-content {
    padding: 1.5rem;
  }
}


@media (max-width: 750px) {

  .home-hero{
    padding:20px 10px;
  }
  .home-hero .text-start{
    padding-bottom:20px;
  }
  .section-padding{
    padding:40px 20px;
  }

    .header-mobile{
        display:block;
    }
    .page-content{
        padding:20px;
    }
    .header-main{
        display:none;
    }
    .sidebar{
        display:none;
    }
    .body-account .page-wrapper{
        margin-left:0px;
    }
    .content-custom-account.medium{
   
        max-width:100%;
        margin:0 auto;
      }

    .sidebar.open{
        position:fixed;
        left:0px;
        top:0px;
        height:100%;
        overflow:auto;
        display:block;
        width:80%;
    }
    @keyframes slideIn {
        from {
            left: -100%;
        }
        to {
            left: 0;
        }
    }

    @keyframes slideOut {
        from {
            left: 0;
        }
        to {
            left: -100%;
        }
    }

    .sidebar {
        display:block;
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        overflow: auto;
        width: 80%;
      
    }

    .sidebar.open {
        animation: slideIn 0.3s forwards;
    }

    .sidebar{
         /* animation: slideOut 0.3s forwards;*/
    }
    .sidebar .logo img{
        max-width:170px;
    }
    

    /* Custom Heading */
    .heading-custom{
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        align-items:flex-start;
        margin-bottom:20px;
      }

      /* Transactions List */
      .transactions-list-new .transaction .date{
        display:block;
        margin-bottom:10px;
        text-align:left;
      }
      .transactions-list-new .transaction .date .transaction-type-badge{
        display:block;
      }


      .card-list .card-item {
       width:100%;
      }

      .btn{
        margin-bottom:5px;
      }



      .table-mags {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display:none;
      }
      .table-mags thead{
        display:none;
      }
      .table-mags thead,
      .table-mags tbody,
      .table-mags th,
      .table-mags td,
      .table-mags tr {
        display: table;
        width: 100%;
        white-space: nowrap;
        text-align:left;
      }
      .table-mags .mob-container{
        padding:4px;
        text-align:left;
      }
      .table-mags .mob-title{
        font-weight:600;
        font-size:14px;
        color:#000;
        margin-bottom:5px;
        text-align:left;
      }








}