@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 300;

    overflow-x: hidden;
    overflow-y: auto;

    background: #ffffff;
}

/* Loader */

.page-loader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

    z-index:99999;

    opacity:0;

    visibility:hidden;

    transition:.3s;

}

.page-loader.show{

    opacity:1;

    visibility:visible;

}

.loader-logo{

    width:120px;

    height:120px;

    animation:spinLoader 1.2s linear infinite;

}

@keyframes spinLoader{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/* Mobile */

@media(max-width:768px){

    .loader-logo{

        width:90px;

        height:90px;

    }

}

@media(max-width:480px){

    .loader-logo{

        width:70px;

        height:70px;

    }

}

/* Splash Screen */

.splash-screen {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    background-image: url("../images/background_logo.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    overflow: hidden;
}

/* Optional Overlay Content */

.overlay-content {

    position: absolute;

    left: 5%;
    bottom: 7%;

    color: #082C73;

    z-index: 2;

    max-width: 90%;
}

.overlay-content p {

    font-size: clamp(18px, 2vw, 34px);
    font-weight: 400;
    margin-bottom: 8px;
}

.overlay-content h1 {

    font-size: clamp(42px, 6vw, 90px);
    font-weight: 600;
    line-height: 1;
}


/*=====================================
 HOME PAGE
=====================================*/

.home-page {

    background: #f5f5f5;

}

/* Header */

.top-header {

    background: #071B55;

    color: #fff;

    padding: 20px;

    display: flex;

    align-items: center;

    border-radius: 0 0 10px 10px;

}

.profile img {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    object-fit: cover;
    background: #11286b;
}

.merchant-name {

    margin-left: 15px;

}

.merchant-name h2 {

    font-size: 22px;

    line-height: 1.3;

    font-weight: 600;

}

/* Container */

.container {

    /* max-width: 550px; */

    margin: auto;

    padding: 20px 20px 110px;

}

/* Cards */

.collection-top {
    display: flex;
    /* gap: 32px; */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.collection-top-payments {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
    margin-top: 11px;
}

.coin-icon-i {
    width: 30px;
}

.top-payment-title {
    display: flex;
    /* gap: 10px; */
}

.coin-icon-i {
    width: 30px;
}

.coin-icon-i img {
    width: 20px;
}

.collection-top .payment-count {
    color: gray;
    font-weight: 400;
}

.collection-card,
.settlement-card {

    background: #fff;

    border-radius: 20px;

    padding: 20px;

    margin-bottom: 20px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

}

.settlement-card .settlement-left {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.settlement-card .settlement-left .coin-icon {
    font-size: 34px;
}

/* Collection */

.collection-card h3 {
    font-size: 20px;
    font-weight: 400;
}



.collection-card .amount {

    /* font-size:34px; */

    font-weight: 600;

    /* margin:15px 0; */

}

.collection-card a {

    text-decoration: none;

    color: #D59B30;

    font-weight: 500;

    position: relative;
    top: 6px;
}

/* Settlement */

.settlement-card {

    background: #20A85C;

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 80px;

}

.coin-icon-content {
    display: flex;
}

.coin-icon-content img {
    width: 63px;
}

.coin-content-right {
    display: block;
}

.settlement-date-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 1px; */
    margin-left: -22px;
}

.coin-icon-content img {
    width: 63px;
}

.settlement-date-content span {
    margin-top: -10px;
}

.arrow-btn {

    width: 28px;

    height: 28px;

    border: 1px solid #fff;

    border-radius: 50%;

    /* background: rgba(255, 255, 255, .2); */
    background: transparent;

    color: #fff;

    cursor: pointer;

}

/* Services */

.services {

    /* display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 25px; */

    display: flex;
    gap: 18px;
    margin-bottom: 25px;

}

.service-box {

    /* background: #fff;

    border-radius: 18px;

    padding: 20px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08); */

    padding: 20px;

}
.service-box .icon {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    background: #fff;
    border-radius: 18px;
    /* width: 58px;
    height: 58px;
    padding: 20px; */
}

.service-box img {

    width: 83px;
    height: 61px;
    display: flex;
    justify-content: center;
    /* text-align: center; */
    align-items: center;

}

.service-box span {

    display: block;

    margin-top: 12px;

    font-size: 18px;

    text-align: center;
}

/* Banner */

/* .banner-slider img {

    width: 100%;

    border-radius: 18px;

} */

.banner-slider{

    position:relative;

    width:100%;

    max-width:550px;

    margin:20px auto;

    overflow:hidden;

    border-radius:18px;

}

.slides{

    position:relative;

    width:100%;

    height:220px;

}

.slide{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity .6s ease-in-out;

}

.slide.active{

    opacity:1;

}

.dots{

    position:absolute;

    bottom:12px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:8px;

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#ffffff80;

    cursor:pointer;

    transition:.3s;

}

.dot.active{

    background:#ffffff;

    width:26px;

    border-radius:20px;

}

/* Responsive */

@media(max-width:768px){

    .slides{

        height:180px;

    }

}

@media(max-width:480px){

    .slides{

        height:150px;

    }

}


/* Tutorial */


.tutorial h2 {

    font-size: 28px;

    margin-bottom: 15px;

}

.video-box {

    border-radius: 20px;

    overflow: hidden;

}

.video-box iframe {

    width: 100%;

    aspect-ratio: 16/9;

    border: none;

}

/* BHIM */

.bhim {

    text-align: center;

    margin-bottom: -56px;

}

.bhim img {

    width: 180px;

}

/* Bottom Navigation */

.bottom-nav {

    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background: #fff;

    display: flex;

    justify-content: space-around;

    padding: 12px 0;

    box-shadow: 0 -5px 20px rgba(0, 0, 0, .1);

    border-top-left-radius: 28px;

    border-top-right-radius: 28px;

}

.bottom-nav a {

    text-decoration: none;

    color: #666;

    display: flex;

    flex-direction: column;

    align-items: center;

    font-size: 12px;

}

.bottom-nav a.active {

    color: #F6A623;

}

.bottom-nav i {

    font-size: 22px;

    margin-bottom: 5px;

}

/*=========================================
        HEADER
=========================================*/

.qr-header-top {

    background: #071B55;

    color: #fff;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: sticky;

    top: 0;

    z-index: 999;
}

.qr-header-top .profile {

    position: absolute;

    left: 15px;

    width: 52px;

    height: 52px;
}

.qr-header-top .profile img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;
}

.qr-header-top h2 {

    font-size: 30px;

    font-weight: 600;

}


/*=========================================
        QR CARD
=========================================*/

.qr-card {

    background: #ffffff;

    border-radius: 28px;

    margin: 20px auto;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    max-width: 560px;

    position: relative;

}

.qr-card-bottom {
    background: #ffffff;

    border-radius: 28px;

    margin: 20px auto;

    /* overflow: hidden; */

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    max-width: 560px;

    margin-top: -33px;

    height: 25vh;
}

.qr-body {

    padding: 35px;

    text-align: center;

}

.qr-title-small {

    font-size: 26px;

    color: #444;

    text-align: left;

}

.qr-title {

    font-size: 58px;

    font-weight: 700;

    color: #111;

    text-align: left;

    margin: 5px 0;
}

.qr-subtitle {

    text-align: left;

    font-size: 22px;

    color: #666;

    margin-bottom: 35px;

}

/*=========================================
        QR IMAGE
=========================================*/

.qr-image {

    display: flex;

    justify-content: center;

    margin: 25px 0;

}

.qr-image img {

    width: 320px;

    max-width: 100%;
}

/*=========================================
        MERCHANT
=========================================*/

.upi-id {

    font-size: 22px;

    color: #444;

    margin-top: 25px;

    text-align: center;
}

.merchant {
    text-align: center;
    margin-bottom: 23px;
    font-weight: 600;
}

.shop-name {

    font-size: 34px;

    font-weight: 600;

    margin-top: 12px;

    color: #111;
}

/*=========================================
        ACTIONS
=========================================*/

.qr-actions {

    background: orange;

    display: flex;

    justify-content: space-around;

    align-items: center;

    padding: 7px 15px;

}

.qr-action {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #222;

    cursor: pointer;

    font-size: 22px;

    font-weight: 500;

}

.qr-action i {

    font-size: 28px;

}

/*=========================================
        SHOW ALL BUTTON
=========================================*/

.show-all {

    text-align: center;

    margin-top: 20px;
}

.show-all button {

    background: #fff;

    border: 2px solid #555;

    border-radius: 35px;

    padding: 14px 50px;

    font-size: 28px;

    cursor: pointer;

    transition: .3s;

}

.show-all button:hover {

    background: #f5f5f5;
}

/*=========================================
        BHIM
=========================================*/

.bhim-logo {

    text-align: center;

    margin-bottom: 40px;

}


.bhim-logo img {

    width: 180px;

    max-width: 100%;

    object-fit: contain;

    margin-top: -20px;
}



/*==============================
    Tabs
==============================*/

.tab-content {
    display: none;
    animation: fade .3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fade {

    from {

        opacity: 0;
        transform: translateY(10px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

.bottom-nav a.active {

    color: #F6A623;

}



/*====================================
        REPORT TAB
====================================*/

#reportsTab {
    display: block;
    /* padding-bottom: 100px; */
}

#reportsTab.active {
    display: block;
}

/* Header */

.reports-header {

    /* background:#081B4D; */
    background: url('../images/background_transactions.png');

    background-size: cover;

    background-repeat: no-repeat;

    color: #fff;

    padding: 20px;

    position: relative;

    /* margin: -20px -20px 20px; */

    height: 44vh;
}

.top-bar {

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    margin-top: 14px;
}

.back-btn {

    position: absolute;

    left: 0;

    color: #fff;

    text-decoration: none;

    font-size: 22px;
    margin-left: 25px;
    z-index: 999;
}

.top-bar h2 {

    font-size: 28px;

    font-weight: 600;

    text-transform: lowercase;

}

/* Tabs */

.report-tabs {

    display: flex;

    justify-content: space-around;

    margin: 25px 0;

}

.report-tabs button {

    background: none;

    border: none;

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    padding-bottom: 8px;

    opacity: .7;

}

.report-tabs button.active {

    color: #F4A300;

    border-bottom: 3px solid #F4A300;

    opacity: 1;

}

/* Date */

.date-title {

    text-align: center;

    margin-bottom: 20px;

    font-size: 22px;

}

.date-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.date-box {

    flex: 1;

    text-align: center;

}

.date-box span {

    display: block;

    font-size: 15px;

    margin-bottom: 8px;

}

.date-box h3 {

    display: inline-block;

    border-bottom: 2px solid #fff;

    padding-bottom: 5px;

    font-size: 24px;

    font-weight: 500;

}

/* Search */

.search-btn {

    display: block;

    width: 64%;

    margin: 30px auto 0;

    background: #F4A300;

    color: #222;

    border: none;

    border-radius: 16px;

    padding: 15px;

    font-size: 22px;

    cursor: pointer;

    z-index: 999;
    position: absolute;
    left: 0;
    right: 0;
    top: 83%;

}

/* Summary */

.summary-card {

    background: #FFE4D5;

    padding: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
    padding-top: 70px;
    margin-top: -38px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

.summary-card h3 {

    font-size: 24px;

    margin-bottom: 10px;

}

.summary-card h2 {

    font-size: 34px;

    margin-bottom: 8px;

}

.summary-card p {

    font-size: 18px;

}

.filter-btn {

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: #081B4D;

    color: #fff;

    font-size: 20px;

    cursor: pointer;

    margin-top: 80px;

}

/* Empty */

.empty-section {

    text-align: center;

    padding: 20px;

}

.empty-image img {

    /* width: 180px; */

    max-width: 100%;

}

.empty-section h2 {

    margin: 20px 0 10px;

    font-size: 40px;

    font-weight: 400;

}

.empty-section p {

    color: #666;

    font-size: 17px;

    line-height: 1.6;

    max-width: 500px;

    margin: auto;

}

/* Buttons */

.report-actions {

    display: flex;

    gap: 15px;

    justify-content: center;

    margin-top: 40px;

}

.report-actions button {

    flex: 1;

    max-width: 220px;

    border: 2px solid #444;

    background: #fff;

    border-radius: 40px;

    /* padding: 14px; */
    padding: 5px 0;

    font-size: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    cursor: pointer;

    transition: .3s;

}

.report-actions button:hover {

    background: #F5F5F5;

}


/*=====================================
        MENU BUTTON
======================================*/

.menu-btn img {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    object-fit: cover;
    background: #11286b;

    margin-top: -6px;
}

.menu-btn{

    width:42px;

    height:42px;

    border:none;

    background:transparent;

    color:#ffffff;

    font-size:24px;

    cursor:pointer;

    margin-right:12px;

}

/*=====================================
        DRAWER BACKDROP
======================================*/

.drawer-backdrop{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.drawer-backdrop.show{

    opacity:1;

    visibility:visible;

}

/*=====================================
        SIDE DRAWER
======================================*/

.side-drawer{

    position:fixed;

    top:0;

    left:-330px;

    width:320px;

    max-width:85%;

    height:100vh;

    background:#fff;

    border-radius:0 30px 30px 0;

    box-shadow:5px 0 25px rgba(0,0,0,.15);

    transition:.35s ease;

    z-index:1000;

    overflow-y:hidden;

    overflow-x:hidden;

}

.side-drawer.show{

    left:0;

}

.side-drawer:hover{

    overflow-y:auto;

}

/* Hide Scrollbar */

.side-drawer::-webkit-scrollbar{

    width:0px;

}

/* Show scrollbar on hover */

.side-drawer:hover::-webkit-scrollbar{

    width:6px;

}

.side-drawer:hover::-webkit-scrollbar-track{

    background:#f1f1f1;

    border-radius:20px;

}

.side-drawer:hover::-webkit-scrollbar-thumb{

    background:#bdbdbd;

    border-radius:20px;

}

.side-drawer:hover::-webkit-scrollbar-thumb:hover{

    background:#888;

}

.side-drawer{

    scrollbar-width:none;

}

.side-drawer:hover{

    scrollbar-width:thin;

    scrollbar-color:#bdbdbd #f1f1f1;

}

/*=====================================
        PROFILE
======================================*/

.drawer-profile{

    display:flex;

    align-items:center;

    gap:15px;

    padding:25px 20px;

    border-bottom:1px solid #ececec;

}

.drawer-avatar{

    width:58px;

    height:58px;

    border-radius:16px;

    background:#071B55;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    font-weight:600;

}

.drawer-profile h3{

    font-size:20px;

    font-weight:600;

    color:#333;

    margin-bottom:5px;

}

.drawer-profile p{

    color:#666;

    font-size:15px;

}

.drawer-profile p i{

    margin-left:5px;

}

/*=====================================
        MENU
======================================*/

.drawer-menu{

    list-style:none;

    padding:15px 0;

}

.drawer-menu li{

    margin:4px 0;

}

.drawer-menu a{

    display:flex;

    align-items:center;

    gap:18px;

    padding:16px 22px;

    color:#333;

    text-decoration:none;

    font-size:20px;

    transition:.3s;

}

.drawer-menu a:hover{

    background:#f7f7f7;

    color:#F5A000;

}

.drawer-menu i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#071B55;

    color:#F5A000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    flex-shrink:0;

}

/* Active Item */

.drawer-menu li.active a{

    color:#F5A000;

    font-weight:600;

}

/*=====================================
        SCROLLBAR
======================================*/

.side-drawer::-webkit-scrollbar{

    width:6px;

}

.side-drawer::-webkit-scrollbar-thumb{

    background:#ddd;

    border-radius:20px;

}

/*=====================================
        Drawer Footer
======================================*/

.drawer-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 20px;

    border-top:1px solid #e5e5e5;

    margin-top:20px;

    color:#666;

    font-size:14px;

    background:#fff;

    position:sticky;

    bottom:0;

}

.drawer-footer span:last-child{

    font-weight:500;

}


.transaction-card{

    background:#fff;

    /* border-radius:12px; */

    overflow:hidden;

    /* box-shadow:0 2px 6px rgba(0,0,0,.08); */

    margin-bottom:12px;

}

.transaction-header{

    display:flex;

    align-items:center;

    gap:40px;

    padding:14px 36px;

    border-bottom:1px solid #f0f0f0;

}

.date{

    font-size:18px;

    font-weight:600;

    color:#222;

}

.time{

    font-size:18px;

    color:#9a9a9a;

}

.transaction-body{

    display:flex;

    justify-content:space-between;

    align-items:center;

    /* padding:18px 20px; */

    padding: 0px 2px;

    background: #f4f4f4;

    height: 10vh;

}

.transaction-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.transaction-icon{

    width:74px;

    height:74px;

    border-radius:12px;

    background:#F8E2D9;

    display:flex;

    justify-content:center;

    align-items:center;

}

.transaction-icon img{

    width:46px;

}

.txn-id{

    font-size:18px;

    color:#5b5b5b;

    font-weight:500;

}

.transaction-right{

    text-align:right;

}

.amount{

    margin-top:6px;

    font-size:20px;

    font-weight:300;

    color:#222;

    position: relative;

    top: -11px;

}

.gst{
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    position: relative;
    top: -29px;
}

/*====================================
        Transaction Right
====================================*/

.transaction-right{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    justify-content:center;

    min-width:140px;

    text-align:right;

}

/*====================================
        Status Ribbon
====================================*/

.status-ribbon{

    position:relative;

    width:130px;

    aspect-ratio:221 / 49;

    background:url("../images/status.png") no-repeat center center;

    background-size:100% 100%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:6px;

    margin-left:auto;

    flex-shrink:0;

    color: #fff;

    margin-bottom: 9px;
}

.status-ribbon span{

    color:#ffffff;

    font-size:12px;

    font-weight:600;

    text-transform:capitalize;

    letter-spacing:.2px;

    white-space:nowrap;

    position:relative;

    left:6px;

}

/* Mobile View Responsive in All Devices */

/* Large Desktop */

@media (min-width:1600px) {


    body {
        display: none;
    }

}

/*====================================
        Tablet
====================================*/



@media (max-width:991px){

    .transaction-right{

        min-width:120px;

    }

    .status-ribbon{

        width:110px;

    }

    .status-ribbon span{

        font-size:10px;

        left:5px;

    }

    .transaction-right h2{

        font-size:28px;

    }

    .transaction-right p{

        font-size:13px;

    }

}

/*====================================
        Mobile
====================================*/

@media (max-width:768px){

    .transaction-body{

        display:flex;

        justify-content:space-between;

        align-items:center;

        /* padding: 0 20px; */

        padding-left: 30px;
        height: 10vh;

    }

    .transaction-right{

        min-width:95px;

    }

    

    .status-ribbon span{

        font-size:8px;

        left:4px;

    }

    .transaction-right h2{

        font-size:22px;

    }

    .transaction-right p{

        font-size:11px;

    }


     

    .side-drawer{

        width:300px;

    }

    .drawer-menu a{

        font-size:18px;

        padding:15px 18px;

    }

    .drawer-profile h3{

        font-size:18px;

    }


    .merchant-name h2 {

        font-size: 18px;

    }

    .container {
        padding: 15px 15px 100px;
        max-width: 100%;
    }


    .qr-header-top {

        height: 68px;
    }

    .qr-header-top h2 {

        font-size: 24px;
    }

    .qr-body {

        padding: 22px;
    }

    .qr-title-small {

        font-size: 22px;
    }

    .qr-header h1 {
        font-weight: 600;
    }

    .qr-title {

        font-size: 44px;
    }

    .qr-subtitle {

        font-size: 18px;
    }

    .upi-id {

        font-size: 18px;
    }

    .shop-name {

        font-size: 28px;
    }

    .qr-action {

        font-size: 18px;
    }

    .show-all button {

        font-size: 22px;

        padding: 12px 41px;
    }

    .overlay-content {

        left: 24px;
        bottom: 40px;
    }

    .overlay-content h1 {

        line-height: 1.1;
    }


     .qr-card {
        border-radius: 22px;
        position: relative;
        margin: 15px;
    }

    .qr-header {
        margin-left: 33px;
        margin-top: 24px;
    }

    .qr-header h3, h1 {
        font-weight: 600;
        font-size: 26px;
    }

    .qr-card-bottom {
        background: #ffffff;
        border-radius: 28px;
        /* margin: 20px auto; */
        margin: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
        max-width: 560px;
        margin-top: -33px;
        height: 20vh;
    }

    .qr-actions {
        background: #F4A300;
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* padding: 34px 15px; */
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .bhim-logo img {
        width: 140px;
    }

    .share-btn {
        margin-top: 20px;
        font-size: 15px;
        padding: 6px;
        background: transparent;
        border: none;
        display: flex;
        gap: 10px;
        color: #000;
    }

    .download-btn {
        margin-top: 20px;
        font-size: 15px;
        padding: 6px;
        /* margin: 0 7px; */
        background: transparent;
        border: none;
        display: flex;
        gap: 10px;
        color: #000;
    }

    .show-all button {
        font-size: 14px;
    }


    /* .reports-header {
        background-position: right;
    } */

    .transaction-history{

        padding-left:22px;

    }

    .transaction-content{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

    }

    .transaction-right{

        width:100%;

        text-align:left;

    }

    .transaction-info h4{

        font-size:18px;

    }

    .transaction-info span{

        font-size:15px;

    }

    .transaction-right h3{

        font-size:24px;

    }

    .transaction-header{

        font-size:13px;

        gap:18px;

    }

    .transaction-icon{

        width:37px;

        height:37px;

    }

    .transaction-icon img{
        width:22px;
        height:22px;
    }

    .top-bar {
        margin-top: -13px;
    }

    .date-box h3 {
        font-size: 15px;
    }

    .date-box span {
        font-size: 15px;
    }

    .date-title {
        font-size: 18px;
    }

    .report-tabs button {
        font-size: 18px;
    }

    .search-btn {
        width: 40%;
        border-radius: 10px;
        top: 76%;
        font-size: 18px;
    }

    .summary-card {
        height: 25vh;
    }

    .summary-card h3, 
    .summary-card h2 {
        font-size: 16px;
    }

    .summary-card p {
        font-size: 16px;
    }

    .filter-btn {
        width: 35px;
        height: 35px;
        margin-top: 73px;
        font-size: 15px;
    }

    .txn-id {
        font-size: 15px;
    }

    .txn-name {
        font-size: 15px;
        font-weight: 600;
    }

    .status-ribbon {
        margin-top: 28px;
    }

    .amount {
        top: -14px;
        font-size: 16px;
        font-weight: 600;
    }

    .status-ribbon.settlement {
        font-size: 13px;
    }

    .gst {
        font-size: 13px;
        top: -33px;
    }

    .status-ribbon.success {
        font-size: 13px;
    }

    .date {
        font-size: 15px;
    }

    .time {
        font-size: 15px;
    }

    .summary-content {
        position: relative;
        top: 17px;
    }

    .timeline-dot {
        top: 17px !important;
    }

}

/*====================================
        Small Mobile
====================================*/

@media (max-width:480px){

    .transaction-body {
        height: 9vh;
    }

    .top-header {

        padding: 15px;
        gap: 73px;
    }

    .merchant-name h2 {

        font-size: 16px;

    }

    .services {

        gap: 12px;

    }

    .service-box {

        padding: 15px;

    }

   

    .overlay-content {

        left: 20px;
        right: 20px;
        bottom: 35px;
    }

    .qr-header {
        margin-left: 33px;
        margin-top: 24px;
    }

    .qr-header h3,
    h1 {
        font-weight: 300;
        font-size: 26px;
    }

    .qr-header h1 {
        font-weight: 600;
    }

    .qr-card {

        border-radius: 22px;
        position: relative;
        margin: 15px;
    }

    /* .qr-card-bottom {
        border-radius:22px;

        margin:15px;
    } */

    .qr-card-bottom {
        background: #ffffff;
        border-radius: 28px;
        /* margin: 20px auto; */
        margin: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
        max-width: 560px;
        margin-top: -33px;
        height: 31vh;
    }


    .qr-body {

        padding: 18px;
    }

    .qr-title-small {

        font-size: 18px;
    }

    .qr-title {

        font-size: 34px;
    }

    .qr-subtitle {

        font-size: 16px;
    }

    .qr-image img {

        width: 230px;
    }

    .upi-id {

        font-size: 16px;
    }

    .shop-name {

        font-size: 22px;
    }

    /* .qr-actions{

        padding:18px 10px;
    } */

    .qr-actions {
        background: orange;
        display: flex;
        justify-content: space-around;
        align-items: center;
        /* padding: 34px 15px; */
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }

    .qr-action {

        flex-direction: column;

        gap: 5px;

        font-size: 15px;
    }

    .qr-action i {

        font-size: 22px;
    }

    .show-all button {
        font-size: 14px;
    }

    .share-btn {
        margin-top: 20px;
        font-size: 15px;
        padding: 6px;
        background: transparent;
        border: none;
        display: flex;
        gap: 10px;
    }

    .download-btn {
        margin-top: 20px;
        font-size: 15px;
        padding: 6px;
        /* margin: 0 7px; */
        background: transparent;
        border: none;
        display: flex;
        gap: 10px;
    }

    .bhim-logo img {
        width: 140px;
    }

    .top-bar {
        margin-top: -9px;
    }

    .report-tabs {
        margin: 25px 0;
    }

    .report-tabs button {
        font-size: 18px;
    }

    .date-title {
         font-size: 15px;
    }

    .date-box span, .date-box h3 {
        font-size: 14px;
    }

    .date-box span {
        margin-bottom: 0px;
    }

    .reports-header {
        height: 41vh; 
        background-position: right;
    }

    .search-btn {
        width: 58%;
        font-size: 15px;
        border-radius: 10px;
        top: 76%;
    }

    .report-actions button {
        margin: 11px;
    }

    .empty-section p {
        font-size: 13px;
    }

    .summary-card {
        margin-top: -70px;
    }

    .summary-card h3 {
        font-size: 16px;
        margin-bottom: -1px;
        font-weight: 400;
    }

    .summary-card h2 {
        font-size: 17px;
        margin-bottom: 1px;
        font-weight: 300;
    }

    .summary-card p {
        font-size: 16px;
    }

    .filter-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

   .collection-card h3 {
        font-size: 15px;
   }

   .collection-top .payment-count {
        font-size: 15px;
   }

    .collection-card .amount {

        font-size: 15px;

    }

    .settlement-card .settlement-left {
        margin-left: -15px;
    }

    .coin-icon-content img {
        width: 49px;
    }

    .coin-content-right span {
        font-size: 13px;
    }


    .service-box span {
        font-size: 14px;
    }

    .status-ribbon{

        /* width:78px; */

        width: 90px;
        font-size: 11px;
        margin-top: 37px;

    }

    .transaction-right .gst {
        top: -44px;
    }

    .transaction-right .amount {
        top: -14px;
    }

    .status-ribbon span{

        font-size:7px;

        left:3px;

    }

    .transaction-right h2{

        font-size:18px;

    }

    .transaction-right p{

        font-size:10px;

    }


    .side-drawer{

        width:285px;

        border-radius:0 24px 24px 0;

    }

    .drawer-avatar{

        width:52px;

        height:52px;

        font-size:28px;

    }

    .drawer-menu a{

        font-size:17px;

    }

    .drawer-menu i{

        width:38px;

        height:38px;

        font-size:16px;

    }

    .transaction-history{

        margin:10px;

    }


    .transaction-content{

        padding:15px;

    }

    .transaction-header{

        padding:12px 36px;

    }

    .date {
        font-size: 15px;
    }

    .time {
        font-size: 15px;
    }

    .txn-id {
        font-size: 12px;
    }

    .txn-name {
        font-size: 12px;
        font-weight: 600;
    }

    

    .transaction-info h4{

        font-size:16px;

    }

    .transaction-right h3{

        font-size:22px;

    }

    .status{

        font-size:11px;

        padding:3px 10px;

    }

    .amount {
        margin-top: 6px;
        font-size: 15px;
        top: -2px;
        font-weight: 500;
    }

    .gst {
        margin-top: 27px;
        font-size: 11px;
        top: -18px;
    }

    .timeline-dot {
        top: 15px !important;
    }

}


@media(max-width:320px) {
    .top-header {
        gap: 32px !important;
    }

    .qr-card {
        margin: 0 0!important;
    }

    .gst {
        font-size: 14px !important;
        top: -32px !important;
    }

    .status-ribbon {
        font-size: 12px !important;
    }

    .txn-id {
        font-size: 12px !important;
    }

}

/* Reports */

/* Timeline */

.transaction-list{
    position:relative;
    /* padding-left:28px; */
    margin-top: -17px;
}

/* Vertical Timeline */
.transaction-list::before{
    content:"";
    position:absolute;
    left:16px;
    top:-10px;
    bottom:0px;
    width:2px;
    background:#d8d8d8;
    z-index: 99;
}

.transaction-card{
    position:relative;
    margin-bottom:18px;
    overflow: visible; 
}

.timeline-dot{
    position:absolute;
    width:16px;
    height:16px;
    background:#19204a;
    /* border:3px solid #fff; */
    border-radius:50%;
    left:9px;
    top:19px;
    z-index:99;
    box-shadow:0 0 0 1px #d5d5d5;
}

