/* *{
    margin: 0%;
    padding: 0%;
} */

/* SECTION 2 RIGHT CARD START  */

/* .right-card{
padding-top: 44.5px;
}


.txt-heading{
    color: #010047;
    font-family: Poppins;
    font-weight: 700;
    font-size: 26px;
    padding-top: 15px;
} */




/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;


}

.pagination {
    display: flex;
}

.searchbox .fa-times {
    position: absolute;
    right: -15px;
    cursor: pointer;
    display: none;
    font-size: 10px;
    font-weight: 10px;
}

.searchbox #search {
    padding-left: 50px;
    width: 288px;
    outline: 0;
}

.searchbox .fa-times {
    position: absolute;
    left: 880px;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 10px;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

:root {
    /* ===== Colors ===== */
    --primary-color: #0E4BF1;
    --panel-color: #FFF;
    --text-color: #000;
    --black-light-color: #707070;
    --border-color: #e6e5e5;
    --toggle-color: #DDD;
    --box1-color: #4DA3FF;
    --box2-color: #FFE6AC;
    --box3-color: #E7D1FC;
    --title-icon-color: #fff;

    /* ====== Transition ====== */
    --tran-05: all 0.5s ease;
    --tran-03: all 0.3s ease;
    --tran-03: all 0.2s ease;
}

::-webkit-scrollbar {
    width: 1em;
    height: 11px;
}

::-webkit-scrollbar-button {
    background: #ccc
}

::-webkit-scrollbar-track-piece {
    background: #d4d3d3
}

::-webkit-scrollbar-thumb {
    background: #eee
}

body {

    background-color: var(--primary-color);
}



/* side bar css :start */
nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: var(--panel-color);
    /* border-right: 1px solid var(--border-color); */
    transition: var(--tran-05);
}

/* icon contener */


.icon-container1 {
    width: 5%;
    position: relative;
    top: 15px;
    left: 8px;
}

.icon-container1 img:nth-child(2) {
    display: none;
    animation-name: toggle-up;
    animation-delay: 0.25s;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
}

.icon-container1:hover img:nth-child(1) {
    display: none;
}

.icon-container1:hover img:nth-child(2) {
    display: block;
    animation-name: toggle-down;
    animation-delay: 0.25s;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
}

@keyframes toggle-up {
    100% {
        transform: rotateY(180deg);
    }
}

@keyframes toggle-down {
    100% {
        transform: rotateY(180deg);
    }
}

/* icon contener */

.icon-container {
    width: 5%;
    position: relative;
    top: -30px;
}

.icon-container img:nth-child(2) {
    display: none;
    animation-name: toggle-up;
    animation-delay: 0.25s;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
}

.icon-container:hover img:nth-child(1) {
    display: none;
}

.icon-container:hover img:nth-child(2) {
    display: block;
    animation-name: toggle-down;
    animation-delay: 0.25s;
    animation-duration: 0.75s;
    animation-fill-mode: forwards;
}

@keyframes toggle-up {
    100% {
        transform: rotateY(180deg);
    }
}

@keyframes toggle-down {
    100% {
        transform: rotateY(180deg);
    }
}

.sidebar-toggle {
    color: var(--text-color);
    cursor: pointer;
}

nav.close .sidebar-toggle {
    color: var(--text-color);
    cursor: pointer;
}

nav.close {
    opacity: 10;
}

nav.close:hover {
    opacity: 10;
}

nav.close .sub {
    display: none;
}

nav.close .subt {
    display: none;
}

.nav-links li a:hover:before {
    content: "";
    position: absolute;
    left: -7px;
    height: 35px;
    margin-left: 222px;
    width: 5px;
    border-radius: 50px 0px 0px 50px;
    background-color: green;
}

.subt:hover {
    background-color: rec;
}

.projectlogo {
    width: 35px;
    height: 55px;
    position: absolute;
    left: 25px;
    top: 17px;
}

nav .logo-name {
    display: flex;
    align-items: center;
}

nav .logo-name .logo_name {
    width: 155px;
    height: 48px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    /* identical to box height */
    letter-spacing: 0.02em;
    color: #000000;
    margin-left: 62px;
    margin-top: 10px;
    transition: var(--tran-05);
}

nav.close .logo_name {
    opacity: 0;
    pointer-events: none;
}


nav .menu-items {
    margin-top: 40px;
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-items li {
    list-style: none;
}

.main {
    margin-top: 30px;
}

.main:hover {
    background-color: #f8f7fc;
    border-radius: 10px 10px 10px 10px;

}

nav.close .main:hover {
    background-color: white;
    border-radius: 10px 10px 10px 10px;

}

nav.close .text_menubar {
    opacity: 0;
    pointer-events: none;
}

.dropdown .btn-dropdown {

    justify-content: center;
    align-items: flex-start;




    background: #FFFFFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
}

.btn-dropdown-number {

    justify-content: center;
    align-items: flex-start;




    background: #FFFFFF;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
}

.text_menubar {
    position: relative;
    left: 5px;
    width: 90px;
    height: 24px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #A8BDA1;

}


nav.close .subtext {
    opacity: 0;
    pointer-events: none;
}

.main .subtext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    /* margin-left: 30px; */
    position: relative;
    top: 6px;
    width: 90px;
}


nav.close {
    width: 1px;
}

.sub {
    margin-top: -15px;
}

.menu-items li a {
    display: flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
    position: relative;
}

nav.close li a .link-name {
    opacity: 0;
    pointer-events: none;
}

.dashboard {
    position: relative;
    left: 250px;
    background-color: var(--panel-color);
    min-height: 100vh;
    width: calc(100% - 250px);
    padding: 10px 14px;
    transition: var(--tran-05);
}

nav.close~.dashboard {
    left: 73px;
    width: calc(100% - 73px);
}

.aro {
    margin-right: 10px;
}

.aro1 {
    margin-right: 10px;
}

.aro11 {
    margin-left: -8px;
}

.aro111 {
    margin-right: 10px;
}

.aro12 {
    margin-right: 10px;
}


.setting-profile {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    justify-content: center;
    display: flex;

}

.view-profile {
    width: 270px;
    height: 40px;
    background-color: rgba(4, 170, 97, 1);
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: white;
}

.test {
    width: 270px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background-color: rgba(4, 170, 97, 0.07);
    margin-left: 15px;
    margin-top: 10px;
}

/* right side section :start ---------------------------- */

/* section heading  */

.text-heading {
    font-size: 26px;
    font-weight: 700;
    color: #010047;
}

.navbar-search {
    width: 10%;
    height: 48px;
    border-radius: 8px;
}

:focus {
    outline: 0;
}

.user-notification ul {
    border: none;
}

.searchbox .add-more-cross-icon {
    position: absolute;
    left: 33%;
    cursor: pointer;
    display: none;
    font-size: 25px;
    font-weight: 10px;
    top: -1px;
}

.searchbox-D .fa-times {
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: none;
    font-size: 10px;
    font-weight: 10px;
}

.searchbox-D #search {
    padding-left: 50px;
    width: 288px;
    outline: 0;
}


.searchbox .fa-times {
    position: absolute;
    right: -10px;
    cursor: pointer;
    display: none;
    font-size: 10px;
    font-weight: 10px;
}

.searchbox #search {
    padding-left: 50px;
    width: 988px;
    outline: 0;
}

.user .dropdown {
    float: left;
    max-width: 412px;
    margin-left: 16px;
    padding-top: 10px;
}

.dropdown-menu li,
.dropdown-menu li a {
    white-space: normal;
    word-wrap: break-word;
    font-weight: 500;

}


.user-img {
    right: 100px;
}


/* section 2 subheading and calendar :start-------------------------------------------- */

.calendar-input {
    background: #fff;
    cursor: pointer;
    border: 0px solid #ccc;
    height: 40px;
    position: relative;
    padding-left: 0px;
    border-radius: 10px;
}

.container-fluid .icon {
    color: #FBB016;
    font-size: 24px;
    padding-top: 11px;
}

.icon-calendar {
    padding-top: 9px;
}






/* section 3 card section start --------------------------------------------- */
.card-counter {
    border-radius: 32px;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(212px - 0px);
    width: auto;
}

.card1-shadow {
    box-shadow: 0px 20px 30px 0px #028de981;
}

.card2-shadow {
    box-shadow: 0px 20px 30px 0px #e9026281;
}

.card3-shadow {
    box-shadow: 0px 20px 30px 0px #e9720281;
}

.card4-shadow {
    box-shadow: 0px 20px 30px 0px #30aa005b;
}

.card-counter .count-numbers {
    color: white;
    font-size: 16px;
    position: absolute;
    left: 50px;
    top: 55px;
}

.card-counter .count-name {
    display: block;
    font-weight: 700;
    font-size: 19px;
    color: white;
    padding-top: 60px;
    padding-left: 35px;
}

.card-heading {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 25px;
    padding: 30px;
    padding-top: 20px;
}

.card-heading-success {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: white;
    padding: 25px;
}

.card1-icon {
    display: block;
    top: -50%;
    right: -70%;
    word-wrap: normal;
}

.card2-icon {
    display: block;
    top: -45%;
    right: -70%;
    word-wrap: normal;
}

.card3-icon {
    display: block;
    top: -35%;
    right: -70%;
    word-wrap: normal;
}

.card4-icon {
    display: block;
    top: -35%;
    /* right: -70%; */
    word-wrap: normal;
    float: right;
}

.user-img {

    position: absolute;
    width: 70px;


}

.user-img .dropdown .setting-btn {
    margin-top: -10px;
}

.user-img .user {
    height: 30px;
    margin: 0px;
    display: none;
}

.card1-img {
    position: relative;
    height: 130px;
    margin-top: 35PX;
    right: 20px;


}

.card2-img {
    position: relative;
    height: 90px;
    margin-top: 35PX;
    right: -10px;
}

.card3-img {
    position: relative;
    height: 80px;
    margin-top: 20PX;
}

.card4-img {
    position: relative;
    height: 80px;
    margin-top: 20PX;
}

.count-name {
    top: 80px
}

.dot-Ecommerce {
    background-color: rgba(254, 194, 64, 1);
}

.dot-telecom {
    background-color: rgba(255, 158, 63, 1);
}

.dot-b2b {
    background-color: rgba(236, 70, 84, 1);
}

.dot-insurence {
    background-color: rgba(29, 109, 158, 1);
}

.dot-utilities {
    background-color: rgba(94, 190, 228, 1);
}

.dot-education {
    background-color: rgba(52, 208, 220, 1);
}

.merchant-data {
    padding-left: 70px;
}

.Merchant {
    margin-left: -20px;

}

.merchant-dashboard span {
    font-size: 24px;
    color: #010047;
    font-weight: 500;
}





/* section 4 wallet section start  --------------------------------- */
.card-wallet-balence {
    height: 320px;
    width: auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-heading-wallet {
    color: white;
    font-size: 24px;
    font-weight: 600;
    padding-top: 30px;
    padding-left: 20PX;
}

.card-subheading-wallet {
    color: white;
    font-size: 20px;
    position: absolute;
    padding-top: 30%;

    padding-left: 20PX;
}

.button-change {
    position: absolute;
    right: 60px;
    top: 67%;
    background-color: #BB10CB;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    padding-left: 20px;
    font-size: 12px;
}

.wallet-icon {
    float: right;
    padding-top: 30px;
}

.card-heading-wallet-rupee {
    color: white;
    font-size: 20px;
    position: absolute;
    padding-top: 23%;
    font-weight: 700;
    padding-left: 20PX;
}

.dot-upi {
    background-color: #286FCD;
    ;
}

.dot-card {
    background-color: #F32A7D;
    ;
}

.dot-netbank {
    background-color: #F0A728;
    ;
}

.dot-other {
    background-color: #F18A47;
    ;
}

/* .dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    padding-top: 5px;
} */

.dot {
    height: 4px;
    width: 5px;
    border-radius: 50%;
    display: inline-block;
    padding-top: 5px;
    background-color: rgba(4, 170, 97, 1);
    margin-bottom: 1px;
    margin-right: 5px;
}

.text-bolder td {
    font-weight: 400;
    padding-top: 10px;
}

table .text-bolder {
    display: block;
    margin-top: 30px;
}

.table-data-color .subtext {
    color: rgba(136, 136, 136, 1);
    font-weight: 600;
}

.doughnout-img {
    position: relative;
    left: -70px;
}

/* section 5 :start graph section :start------------------------------------- */


.switch {
    position: relative;
    display: inline-block;
    width: 43px;
    height: 21px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.Gross-switch .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.Gross-switch2 .switch .slider1 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: -2px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider1:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: -2px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked+.slider {
    background-color: #FBB016;
}

.switch input:focus+.slider {
    box-shadow: 0 0 1px #FBB016;
}

.switch input:checked+.slider1 {
    background-color: #04AA61;
}

.switch input:focus+.slider1 {
    box-shadow: 0 0 1px #04AA61;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

input:checked+.slider1:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider1.round {
    border-radius: 34px;
}

.slider1.round:before {
    border-radius: 50%;
}

.graph-body {
    padding-top: 30px;

}

.graph {
    border-radius: 10px;
}

#slider12c .slider-selection {
    background: yellow;
}

/* silder start */

.range-slide {
    position: relative;
    margin: auto;
    height: 4px;
    width: 90%;
    top: 60px;
}

.slide-range {
    position: absolute;
    top: 0;
    height: 16px;
    background: #ccc;
    left: 9px;
    right: 9px;
    border-radius: 20px;
}

.line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 16px;
    background-color: rgba(251, 176, 22, 1);
}

.thumb {
    position: absolute;
    z-index: 2;
    text-align: left;
    border: 1px solid white;
    background-color: rgba(251, 176, 22, 1);
    border-radius: 50%;
    outline: none;
    top: -7px;
    height: 28px;
    width: 28px;
    margin-left: -9px;
}

.range-input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    pointer-events: none;
    z-index: 3;
    height: 3px;
    top: 0;
    width: 100%;
    opacity: 0;
    margin: 0;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    border-radius: 50%;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* silder end */
.merchant-dot-orange {
    background: linear-gradient(90deg, #E65C00 0%, #F9D423 100%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
}

.merchant-dot-purple {
    background: linear-gradient(90deg, #CC2BC6 0%, #753A88 100%),
        linear-gradient(0deg, #FFFFFF, #FFFFFF);
}


/* section  */
.card_1 {
    background: #FFFFFF;
}

.tiwi {
    height: 45px;
    background: rgba(251, 176, 22, 0.05);
    border-left: 3px solid #FBB016;
    border-radius: 5px;
}

.tiwi1 {
    height: 45px;
    background: rgba(4, 170, 97, 0.05);
    border-left: 3px solid #286822;
    border-radius: 5px;
}

.tiwi2 {
    height: 45px;
    background: rgba(92, 64, 192, 0.05);
    border-left: 3px solid rgba(92, 64, 192, 0.63);
    ;
    border-radius: 5px;
}

.tiwi3 {
    height: 45px;
    background: rgba(207, 50, 0, 0.05);
    border-left: 3px solid #CF3200;
    border-radius: 5px;
}

.tiwi4 {
    height: 45px;
    background: rgba(0, 163, 255, 0.05);
    border-left: 3px solid #00A3FF;
    border-radius: 5px;
}

.text1 {
    margin-top: 10px;
    margin-left: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.text12 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.pay {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #010047;
}

.no1 {
    font-size: 35px;
    margin-left: 5px;
}

.refund {
    padding: 10px;
    gap: 41px;
    height: 140px;
    background: rgba(92, 64, 192, 0.05);
    border-left: 3px solid #5C40C0;
    border-radius: 5px;
}

.refund1 {
    padding: 10px;
    gap: 41px;
    height: 140px;
    background: rgba(251, 176, 22, 0.05);
    border-left: 3px solid #FBB016;
    border-radius: 5px;
}

.text_3 {
    width: 277.33px;
    height: 48px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
    /* identical to box height */
    color: #000000;
}



/*Gst and tdr */

.mydivouter {
    position: relative;
}

.mybuttonoverlap {
    display: none;

}

.mydivouter:hover .mybuttonoverlap {
    display: block;
    margin-top: 10px;

}

.more {
    display: none;
}


.overflow-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* card slider  */


@media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
    /* transition-duration: 10s; */
}

/* display 4 */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next,
    .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(25%) !important;
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }

    .carousel-item-next.carousel-item-start,
    .active.carousel-item-end {
        transform: translateX(0) !important;
    }

    .carousel-inner .carousel-item-prev,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }
}

#showmore {
    display: flex;
    justify-content: center;
    /* Align Horizontally */
    align-items: center;
    /* Align Vertically */
    height: auto;
    height: 500px;

}

#showmore {
    position: absolute;

    left: 50%;
    color: rgba(1, 0, 71, 0.5);
}

.carousel-item {
    height: auto;
    width: 300px;
    border-radius: 12px;
    padding: 10px;
    gap: 30px;
    border: none;

}

.withd {
    width: 300px;
}

.carousel-item span {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(1, 0, 71, 0.5);
}

.carousel-item .h4 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-align: left;
    color: rgba(23, 24, 26, 1);
}

.carousel-item button {
    height: 36px;
    width: 100%;
    border-radius: 4px;
    background-color: rgba(4, 170, 97, 1);
}

.slide .col-md-3 {
    height: cover;
    width: 280px;
    box-sizing: border-box;


}

.slide .card {
    border-radius: 20px;
}

#more {
    animation: 1s ease-in forwards;
    transition: 5s;
}



#draggablePanelList2 .panel-heading {
    cursor: move;
}

.Reports {
    margin-left: -20px;
}





/* media quries ------------------------------------------------------------------------------------------- */







@media (max-width: 1000px) {
    nav {
        width: 73px;
    }

    nav.close {
        width: 250px;
    }

    nav .logo_name {
        opacity: 0;
        pointer-events: none;
    }

    nav.close .logo_name {
        opacity: 1;
        pointer-events: auto;
    }

    nav li a .link-name {
        opacity: 0;
        pointer-events: none;
    }

    nav.close li a .link-name {
        opacity: 1;
        pointer-events: auto;
    }

    nav~.dashboard {
        left: 73px;
        width: calc(100% - 73px);
    }

    nav.close~.dashboard {
        left: 250px;
        width: calc(100% - 250px);
    }

    nav~.dashboard .top {
        left: 73px;
        width: calc(100% - 73px);
    }

    nav.close~.dashboard .top {
        left: 250px;
        width: calc(100% - 250px);
    }

    .activity .activity-data {
        overflow-X: scroll;
    }

    .card1-img {
        position: absolute;
        top: 47px;
        left: 90px;
        right: -30px;
    }

    .card2-img {
        position: absolute;
        top: 80px;
        left: 120px;
        right: -30px;

    }

    .cards {
        padding-top: 40px;
    }

    .count-numbers {
        padding-top: 40px;
    }

    .subheading {
        position: absolute;
        padding-top: 66px;
    }

    .card2-name {
        position: relative;
        display: block;

    }

    .card3-img {
        position: absolute;
        top: 120px;
        left: 90px;
        right: -30px;
    }

    .card4-img {
        position: absolute;
        top: 120px;
        right: 15px;
    }

    .card-heading-success {
        position: absolute;
        top: -10px;
    }

    .card-heading-wallet {
        position: absolute;
        left: 30px;
    }

    .card-heading-wallet-rupee {
        position: absolute;
        top: 38%;

    }

}



@media (max-width: 400px) {
    nav {
        width: 0px;
    }

    nav.close {
        width: 73px;
    }

    nav .logo_name {
        opacity: 0;
        pointer-events: none;
    }

    nav.close .logo_name {
        opacity: 0;
        pointer-events: none;
    }

    nav li a .link-name {
        opacity: 0;
        pointer-events: none;
    }

    nav.close li a .link-name {
        opacity: 0;
        pointer-events: none;
    }

    nav~.dashboard {
        left: 0;
        width: 100%;
    }

    nav.close~.dashboard {
        left: 73px;
        width: calc(100% - 73px);
    }

    nav~.dashboard .top {
        left: 0;
        width: 100%;
    }

    nav.close~.dashboard .top {
        left: 0;
        width: 100%;
    }

    .user-notification {
        position: absolute;
        top: -115px;
        right: -10px;
    }

    .user {
        padding-top: 20px;
        width: 40px;

    }

    .user-img {
        display: none;

    }

    .calendar {
        width: 60%;
        padding-top: 20px;
    }

    .icon-calendar {
        position: absolute;
        top: 40px;
    }

    .card1-img {
        position: absolute;
        top: 40px;
        left: 120px;
        right: -30px;

    }


    .card2-img {
        position: absolucard-settledte;
        top: 70px;
        left: 140px;
        right: -40px;

    }

    .cards {
        padding-top: 30px;
    }

    .count-numbers {
        padding-top: 40px;
    }

    .subheading {
        position: absolute;
        padding-top: 75px;
    }

    .card2-name {
        position: absolute;

        top: 135px;

    }

    .card3-img {
        position: absolute;
        top: 120px;
        left: 130px;

    }

    .card4-img {
        position: absolute;
        top: 100px;
        right: 20px;
    }

    .card-heading-wallet {
        position: absolute;
        left: 30px;
    }

    .card-heading-wallet-rupee {
        position: absolute;
        top: 38%;

    }

    .subheading-wallet {
        position: absolute;
        top: 40%;
    }

    .wallet-icon {
        position: absolute;
        top: 80px;
        right: 40px;
    }

    .doughnout {
        width: 100%;
        display: block;

    }



    .doughnout-box {
        width: 100%;
    }

    .Graph-heading .h3 {
        font-size: 20px;
        word-wrap: break-word;
    }

    .Gross-switch .h4 {
        font-size: 15px;
        margin-right: 10px;
    }

    .Gross-switch2 .h4 {
        font-size: 15px;
    }

    .Gross-switch {
        padding-top: 20px;
    }

    .Recent-transaction .h3 {
        font-size: 17px;
    }

    .card-merchant {
        width: fit-content;
    }

    .merchant img {
        width: 200px;
    }

    .card-merchant table {
        border: none;
    }

    .card-settled {
        padding-top: 30px;
        left: -20px;

    }

    .card-settled-1 .h3 {
        font-size: 20px;
    }

    .card-vendor {
        margin-left: -45px;
        width: 200px;
        padding-top: 20px;
    }

    .card-vendor img,
    .card-merchant img {
        width: fit-content;
        margin-left: -20px;
    }

    .card-data {
        margin-left: -20px;
    }

    .addmore-data input {
        margin-left: -40px;
        display: block;

    }

    .addmore-data .fa-search {
        position: relative;
        left: -15px;
        top: 18px;

    }

}

@media (min-width: 1758px) {
    .card-counter {
        width: 350px;
    }

    .card1-icon,
    .card2-icon,
    .card3-icon,
    .card4-icon {
        position: relative;
        padding-right: 30px;
    }

}


/* Profile--------------------------------------------------------------------------------------------------------- */
.chapas {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #010047;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.passbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 12px;
    width: 1224px;

    background: #FFFFFF;
    border-radius: 8px;

}

.lableform {
    height: 20px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #17181A;
}


.inputbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
    width: 796px;
    height: 50px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(177, 175, 175, 0.2);
    border: none;
    border-radius: 10px;
}

.passli {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #17181A;
}

ul {
    list-style: none;
}

.passli::before {
    content: "\2022";
    color: orange;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: relative;
    top: 3px;
}

.update {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
}

.passbox1 {
    width: 1224px;
    background: #FFFFFF;
    border-radius: 8px;

}

.tool {
    width: 796px;
}

.autext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #17181A;
}

.distext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #939393;
    width: 796px;
}

input[type='checkbox'] {
    accent-color: green;
}

.fa-eye {
    margin-left: 750px;
    position: relative;
    top: -35px;
    cursor: pointer;
    color: lightgray;
    font-size: 2em;
    color: orange;
    font-size: 20px;
}




/* merchant Account Section start-------------------------------------------------- --------------------------------------------------------------------*/
.badge-all {
    background-color: rgba(255, 253, 253, 0.17);
    border-color: 1px solid rgba(0, 0, 0, 0.17);
}

.badge-all-border {
    border-bottom: 2px solid rgba(255, 204, 99, 1);
}

.topnav .badge {
    background-color: rgba(234, 234, 237, 1);
    color: rgba(102, 110, 128, 1);
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: transparent;
    overflow: hidden;
}

.listline {
    display: inline-flex;
    gap: 17px;
}

.listline1 {
    display: inline-flex;
    gap: 17px;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: rgba(102, 110, 128, 1);
    text-align: center;

    text-decoration: none;
    font-size: 17px;
    border-bottom: 3px solid transparent;
}

.topnav a:hover {
    border-bottom: 3px solid rgba(255, 204, 99, 1);
    text-decoration: none;
    color: rgba(102, 110, 128, 1);
}

.topnav a.active {
    border-bottom: 3px solid rgba(255, 204, 99, 1);

}

/* hover buttons  */

.btn-merchant {
    width: 92px;
    height: 40px;
    background-color: rgba(4, 170, 97, 1);
    align-items: center;
    padding: 8px;
    border: none;
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 rgba(4, 170, 97, 1);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 1s;
    color: white;
    box-shadow: 1px 1px 1px 1px rgb(161, 161, 161);
    line-height: 15px;
    font-weight: 500;

}

.btn-vendor {
    width: 146px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 rgba(4, 170, 97, 1);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 1s;
    border: none;
    border-radius: 0px 5px 5px 0px;
    ;
    box-shadow: 1px 1px 5px 1px rgb(161, 161, 161);
    line-height: 15px;
    color: rgba(120, 120, 122, 1);
    font-weight: 500;

}

.section3 .dropdown button {
    Width: 160px;
    Height: 32px;
    border-radius: 5px;
    Gap: 10px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 4px;
}

.section3 .dropdown .fa-chevron-down {
    color: rgba(4, 170, 98, 0.562);
}

.buton-group .btn-outline-reload {
    width: 90px;
    height: 32px;
    border-radius: 4px;
    vertical-align: bottom;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
    color: rgba(4, 170, 97, 1);

}

.buton-group button:hover,
.buton-group button:focus,
.btn-outline-export:hover,
.btn-outline-new:hover,
.fa-plus:hover {
    background-color: rgba(4, 170, 97, 1);
    color: white;
    transition: 0.7s;
    font-weight: 500;
}



.buton-group .btn-outline-reset {
    width: 122px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
    color: rgba(4, 170, 97, 1);

}

.btn-outline-export {
    width: 114px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
    margin-right: -25px;
}

.btn-outline-new {
    width: 60px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
    color: rgba(4, 170, 97, 1);

}

.btn-outline-new i {
    color: rgba(4, 170, 97, 1);
    border: 1px solid;
    border-radius: 50px;
    padding: 2px;
    font-size: 10px;
}

.btn-outline-edit {
    width: 60px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgb(82, 82, 82);
    background-color: white;


}

.btn-outline-delete {
    width: 80px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgb(107, 107, 107);
    background-color: white;


}

.btn-outline-duplicate {
    width: 95px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgb(68, 68, 68);
    background-color: white;


}

.no-file-selected span {
    font-family: 14px;
    margin-left: 29%;
    color: rgb(117, 118, 119);
}

.fa-download {
    color: rgba(4, 170, 98, 0.568);
}

.fa-download:hover,
.buton-group i:hover {
    color: white;
}

/* merchant account section table  */



table .badge-Merchant-status {
    background: rgba(4, 170, 97, 0.16);
    color: rgba(4, 170, 97, 1);
}

.penbutton {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #FBB016;
}

.sucbutton {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #04AA61;
}

.table-data-color .dot {
    background-color: rgba(4, 170, 97, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

table .dot-notappoved {
    background-color: rgba(251, 176, 22, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

table .not-approved {
    color: rgba(251, 176, 22, 1);
    background-color: rgba(251, 176, 22, 0.16);
}

.table-data-color .test-approved {
    background-color: rgba(55, 124, 235, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.table-data-color .test-approved {
    color: rgba(55, 124, 235, 1);
    background-color:
        rgba(55, 124, 235, 0.16);
}

.table-data-color .dotrejected {
    background-color: rgba(248, 15, 15, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.table-data-color .rejected {
    color: rgba(248, 15, 15, 1);
    background-color: rgba(248, 15, 15, 0.16);
}

.merchant-account td {
    color: rgba(73, 73, 73, 1);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    vertical-align: middle;
}

.table .input {
    border-radius: 15px 0px 0px 15px;
    padding-left: 20px;
}

.table .action {
    border-radius: 0px 15px 15px 0px;

}

.table-data-color {
    background-color: white;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.table-data-color .text-padding {
    padding-top: 20px;
}

.table tr {
    border-bottom: 10px solid rgba(251, 251, 251, 1);
    column-gap: 40px;
}

/* bulk vendor merchants upload :start------------------------------------------------ */
.btn-outline-Dwtemplate {
    width: 191px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: rgba(4, 170, 97, 1);
    margin-right: -25px;
    color: white;
}

.textupload {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    position: relative;
    top: -15px;
}

.textdowntext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin-top: -10px;
    position: relative;
    top: -15px;
}

.select-master-dropdown {

    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    margin-top: 0px !important;
    width: 98% !important;
}

.dropdown-lg .btn-select-master {
    font-weight: 400;
    font-size: 14px;
    color: rgba(168, 168, 168, 1);

}


.dropbtn {

    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}


#myInput {

    font-size: 12px;
    border: 1px solid #04AA61;
    width: 99%;
    height: 30px;
    padding-left: 20px;
    margin-left: 8px;
}

#myInput:focus {
    outline: 3px solid #ddd;
}



.dropdown-content-selectmaster {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 98%;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    left: 35px;
}

.dropdown-content-selectmaster li {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content-selectmaster li:hover {
    background-color: rgba(247, 252, 250, 1);
}

.dropdown-lg {
    margin-left: 10px;
    width: 100%;
}

/* drag and drop  */

.upload-container input {

    height: 156px;
    width: 90%;
}


.text-brows {
    position: absolute;
    bottom: 50px;
    left: 24%;
    font-weight: 900;
    top: 20px;
}

.fileupload {
    cursor: pointer;
    position: absolute;
    padding: 70px;
    opacity: 0;
    z-index: 0;
    padding-left: 100px;

}

.upload-box {
    background: rgba(4, 170, 98, 0.048);
    border: 2px dashed #04AA61;
    height: 156px;
    width: 90%;
    border-radius: 15px;


}

.row .upload-btn {
    background-color: rgba(251, 176, 22, 1);
    color: white;
    width: 90px;
    height: 40px;
    border: none;
    margin-left: 33px;
    border-radius: 5px;
    margin-top: 20px;
}

.row .uploaded-file {

    width: 297px;
    margin-top: 30px;
    margin-left: 25px;
    background-color: rgba(251, 251, 251, 1);

}

.filename {
    margin-right: 50px;
    color: rgba(1, 0, 71, 1);
}

.uploaded-file .filename .date {
    color: rgba(102, 110, 128, 1);
}

.row .after-uploaded-file {
    width: 297px;
    margin-top: 30px;
    margin-left: 25px;
    background-color: rgb(255, 255, 255);
}

.modal-body input {
    width: 310px;
    height: 40px;
    border-radius: 10px;
}


/* modal create entry :start */
.section3 .modal .modal-dialog .create-entry-modal {
    height: 1042px;
    width: 1017px;
    border-radius: 10px;
    position: absolute;
    left: -50%;

}

.section3 .modal .modal-dialog .label {
    font-size: 14px;
    color: rgba(23, 24, 26, 1);
}

.modal-body .row {
    padding-top: 24px;
    padding-left: 40px;
}

.modal-footer .btn-outline-cancel {
    border: 1px solid red;
    color: red;
    width: 120px;
    height: 40px;
}

.modal-footer .btn-create {
    background-color: rgba(251, 176, 22, 1);
    color: white;
    width: 120px;
    height: 40px;

}

.modal-footer .btn-outline-cancel:hover {
    background-color: red;
    color: white;
}


/* mechant dashboard  */
.data {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color:
        rgba(1, 0, 71, 1);
}

.headings {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(102, 110, 128, 1);

}


.card-transaction {
    background-image: url(../../assets/images/merchant/card1.svg);
    height: 242px;
    background-repeat: no-repeat;
    margin-left: 30px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

.card-settlements {
    background-image: url(../../assets/images/merchant/card2.svg);
    height: 242px;
    background-repeat: no-repeat;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

.card-settlements-detail {
    background-image: url(../../assets/images/merchant/card3.svg);
    height: 242px;
    background-repeat: no-repeat;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;

}

.card-transaction img,
.card-settlements img,
.card-settlements-detail img {
    margin: auto;
    margin-left: 30px;
    margin-top: 50px;
}

.card-transaction .heading,
.card-settlements .heading,
.card-settlements-detail .heading {

    position: relative;


}


.card-Merchant-details {
    background-image: url(../../assets/images/merchant/card4.svg);
    height: 242px;
    background-repeat: no-repeat;
    margin-left: 30px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

.card-Merchant-details a,
.card-transaction a,
.card-settlements a,
.card-settlements-detail a,
.card-merchant-kyc a,
.card-merchant-vendor a {
    text-decoration: none;
    color: rgba(23, 24, 26, 1);

}

.card-merchant-kyc {
    background-image: url(../../assets/images/merchant/card5.svg);
    height: 242px;
    background-repeat: no-repeat;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
}

.card-merchant-vendor {
    background-image: url(../../assets/images/merchant/card6.svg);
    height: 242px;
    background-repeat: no-repeat;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;

}

.card-Merchant-details img,
.card-merchant-kyc img,
.card-merchant-vendor img {
    margin: auto;
    margin-left: 36px;
    margin-top: 50px;
}

.card-Merchant-details .heading,
.card-merchant-kyc .heading,
.card-merchant-vendor .heading {
    margin-left: 30px;
    margin-top: 15px;
    text-align: center;
}



/* PG merchant deatils section ----------------------------------------------------------------------------------------------- */
.PG-merchnt-navbar {
    color: rgba(147, 147, 147, 1);
    font-size: 14px;
}

.PG-active-navbar {
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
}

.Pg-merchant-inputs input,
.Pg-merchant-inputs select,
.Pg-merchant-inputs button {
    height: 40px;
    width: 310px;
    left: 0px;
    top: 30px;
    border-radius: 10px;
    padding: 10px;
    color: rgba(168, 168, 168, 1);

}

.Pg-merchant-inputs select {
    background-color: white;
    color: red;

}

/* page additional information  */

.Pg-merchant-input .form-floating textarea {
    height: 70px;
    width: 1216px;
    left: 0px;
    top: 30px;
    border-radius: 10px;
    padding: 10px;

}

#specifyColor {
    accent-color: #04AA61;
    width: 16px;
    height: 16px;

}

.radio-text {
    font-family: 'Urbanist';
    font-weight: 500;
    font-size: 16px;
    margin-left: 10px;
    position: relative;
    top: -1px;

}

/* Vendor bulk upload  */

.file-upload-vendor {
    height: 303.1882019042969px;
    width: 1296px;

    padding: 24px;

    top: 50px;
}

.file-upload-vendor button {

    width: 170px;
    height: 47px;
    border-radius: 10px 0px 0px 10px;
    border: 1px solid rgba(147, 147, 147, 1);
    font-size: 16px;
    ;
}

.file-upload-vendor {
    border: 1px solid rgba(147, 147, 147, 1);
    border-left: none;
    border-radius: 0px 10px 10px 0px;
}

.file-upload-vendor span {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.file-upload-vendor {
    justify-content: center;

}

.vendor-bulk-upload-btn {
    height: 45.16938400268555px;
    width: 119.69886779785156px;
    left: 660.986328125px;
    top: 234.0185546875px;
    border-radius: 4px;
    padding: 8px 24px 8px 24px;

}

.browse-btn label {
    padding: 10px;
    background:
        rgba(234, 234, 237, 1);
    display: table;
    color: black;
    border: 1px solid rgba(147, 147, 147, 1);
    border-radius: 10px 0px 0px 10px;

}

.browse-div {
    display: inline;


    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

.browse-btn input[type="file"] {
    display: none;
}

.browse-btn .heading {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    padding-top: 8px;
}

.browse-btn {
    height: 303.1882019042969px;
    border-radius: 8px;
    margin-top: 30px;

}

.div-empty {
    border: 1px solid rgba(147, 147, 147, 1);
    width: 556px;
    height: 42px;
    border-radius: 0px 10px 10px 0px;
    border-left: none;
    float: left;
}

.btn-upload {
    height: 45.16938400268555px;
    width: 119.69886779785156px;
    border-radius: 4px;
    padding: 8px 24px 8px 24px;
    background-color: rgba(251, 176, 22, 1);
    border: none;
    color: white;
    margin: auto;
}

.upload-div {
    display: flex;

}


/* Disbursement page :start --------------------------------------------------------------------------------------------------  */

.download-disbursement {
    height: 40px;
    width: 40px;
    margin-left: 15px;
    border-radius: 4px;
    padding: 0px 12px 0px 12px;
    background-color: #04AA61;

}

.brows {
    position: relative;
    left: 20%;
}

.btn-download-status-file {
    height: 32px;
    width: 296px;
    left: 1000px;
    top: 252px;
    border-radius: 4px;
    padding: 4px 10px 4px 10px;
    background-color: rgba(4, 170, 97, 1);
    color: white;
    border: none;

}

.btn-download-div {
    display: flex;
    justify-content: end;
}

/* Approval Secton :start-------------------------------------------- */
.btn-outline-Approve {
    border: 1px solid rgba(102, 110, 128, 1);
    background-color: transparent;
    width: 100px;
    border-radius: 5px;
}

.btn-outline-Reject {
    height: 32px;
    width: 84px;
    border-radius: 4px;
    border: 1px solid rgba(102, 110, 128, 1);
    background-color: transparent;
}






















/* payment trasaction css start */

.transition1 {
    position: relative;


}

.tranasctions1text {

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin-top: 10px;
    margin-left: 20px;
}

.classtext {

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    position: relative;
    top: -10px;
    margin-left: 20px;
}

.position1 {
    position: absolute;
    bottom: 8px;
    left: 20px;

    width: 280px;
    height: 140px;
}

.Amoounttext {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin-left: 20px;
    margin-top: 25px;

}

/* payment trasaction css end */

/* transaction detail card section start --------------------------------------------- */
.card-counter1 {

    height: auto;


    height: calc(100px - 23px);
    width: auto;
    border-radius: 10px;
    background-color: white;


}

.card-counter2 {

    height: auto;
    background-size: 380px 229px;
    height: calc(100px - 23px);
    width: 100%;
    background-position: center center;
    background-color: white;
    background-position: center;
    border-radius: 10px;

}

.card-counter3 {
    height: auto;
    background-size: 380px 229px;
    height: calc(100px - 23px);
    width: 100%;
    background-position: center center;
    background-color: white;
    background-position: center;
    border-radius: 10px;
}

.card-counter4 {
    height: auto;
    background-size: 380px 229px;
    height: calc(100px - 23px);
    width: 100%;
    background-position: center center;
    background-color: white;
    background-position: center;
    border-radius: 10px;
}

.transicon {
    margin-top: -27px;
    margin-left: 20px;
    background-color: #f5ecec;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 5px;
    border-radius: 8px;
}

.transimg {
    height: 30px;
    width: 30px;
    margin-top: 7px;
    margin-left: 7px;
}

.count-numbers1 {
    color: #828282;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;

}

.count-name1 {
    display: block;
    color: #000000;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-top: -22px;
    padding-left: 78px;
}

.card-heading1 {
    display: block;
    color: white;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    padding: 30px;
    padding-top: -30px;
}

.card-heading1-success {
    display: block;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #828282;
    padding: 12px;
    padding-left: 80px;
}

.divicon {

    height: 50px;
    width: 50px;
    background-color: #000;
}

/* transaction detail card section end --------------------------------------------- */

/* second navbar detail card section start --------------------------------------------- */

.navsecond {
    list-style: none;
    padding: 0;

}

.item {
    display: inline-block;
    padding: 20px 0 5px;
    vertical-align: middle;
}

.anchor2:hover {
    color: #797070;
    text-decoration: none;
}

.anchor2:active,
.anchor2:focus {
    color: #0e0d0d;
    text-decoration: none;
}

.anchor2 {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    text-decoration: none;
    transition: color 0.1s, background-color 0.1s;
    margin-left: 15px;
}

.anchor2 {
    position: relative;
    display: block;
    padding: 16px 0;
    margin-right: 12px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    transition: color 0.1s, background-color 0.1s, padding 0.2s ease-in;
    color: #8d9191;
}

.anchor2::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #f7be75;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: color 0.1s, transform 0.2s ease-out;
}

.anchor2:active::before {
    background-color: rgba(255, 204, 99, 1);
    ;
}

.anchor2:hover::before,
.anchor2:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.subanchor {
    border: 1px solid rgb(194, 186, 186);
    margin-left: 5px;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 10px;
    background: rgba(143, 141, 138, 0.17);
}

.subanchor:hover {
    color: #eb9a9a;
    text-decoration: none;
    background: rgba(243, 182, 90, 0.623);

}

.subanchor:active,
.subanchor:focus {
    color: #f8bb88;
    text-decoration: none;
}

/* second navbar detail card section start --------------------------------------------- */

/* buttons start transaction */
.btn-light {
    margin-right: 15px;
}


/* buttons start transaction */



/* table start  */



.display .th1 {
    border-bottom: none;
    vertical-align: middle;
    letter-spacing: -0.02em;
    width: 500px;
    width: 185px;
    height: 21px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    background-color: rgba(4, 170, 97, 0.05);

}

.table12 {
    height: 41px;
    background: rgba(4, 170, 97, 0.01);

}

.btnstyle2 {
    border: 2px solid #06C26F;
    border-radius: 15%;
    width: 40px;
    background-color: white;


}

.tablerow {
    background-color: white;
    border-bottom: none;
    border-top: none;
    height: 41px;
}

.display .text-nowrap {
    border: none;
    vertical-align: middle;
    width: auto;
    word-wrap: normal;
    height: 21px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #494848;
    align-items: center;

}

.display .tabledata {
    border: none;
    vertical-align: middle;
    width: auto;
    word-wrap: normal;
    height: 61px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #615f5f;
    align-items: center;

}

.display .downlink {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #D58F00;
    text-decoration: none;
}

/* .borderless1{
table-layout: auto;
width: 100%;
border-collapse: separate;
border-spacing: 0 15px;
} */
button {
    height: 32px;

    justify-content: center;
    align-items: center;
    vertical-align: middle;
    border-radius: 20px;
    margin-bottom: 5px;
    margin-top: 5px;

}

.display {

    border-radius: 10px;
    table-layout: auto;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;



}

​
/* table end  */

/* dropdown list css */

* .drop12 {
    box-sizing: border-box;
    padding: 0%;
}


.drop12 .column1 {
    padding: 0%;
    background-color: white;
}

.list12 {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    width: 1000px;
}


.row:after {
    content: "";
    display: table;
    clear: both;
}

.drop12 li {
    display: flex;
    padding-left: 10px;
    height: 40px;
    vertical-align: middle;
    list-style: none;
    align-items: center;
    vertical-align: middle;
    border: 1px solid rgb(235, 231, 231);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;

}

.drop12 li:hover {
    background-color: rgb(233, 228, 228);
}

/* Green */
.container-fluid .success {
    border-color: #04AA6D;
    color: rgb(123, 170, 123);
    margin-left: 10px;
}

/* dropdown list css */


/* button select coloumn row :start */
.btn-merchant {
    width: 92px;
    height: 40px;
    background-color: rgba(4, 170, 97, 1);
    align-items: center;
    padding: 8px;
    border: none;
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 rgba(4, 170, 97, 1);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 1s;
    color: white;
    box-shadow: 1px 1px 1px 1px rgb(161, 161, 161);
    line-height: 15px;
    font-weight: 500;
}

.btn-vendor {
    width: 146px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 rgba(4, 170, 97, 1);
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 1s;
    border: none;
    border-radius: 0px 5px 5px 0px;
    ;
    box-shadow: 1px 1px 5px 1px rgb(161, 161, 161);
    line-height: 15px;
    color: rgba(120, 120, 122, 1);
    font-weight: 500;
}

.section3 .dropdown button {
    Width: 160px;
    Height: 32px;
    border-radius: 5px;
    Gap: 10px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 4px;
}

.section3 .dropdown .fa-chevron-down {
    color: rgba(4, 170, 98, 0.562);
}

.buton-group .btn-outline-reload {
    width: 90px;
    height: 32px;
    border-radius: 4px;
    vertical-align: bottom;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
}

.buton-group button:hover,
.buton-group button:focus,
.btn-outline-export:hover {
    background-color: rgba(4, 170, 97, 1);
    color: white;
    transition: 0.7s;
}

.buton-group .btn-outline-reset {
    width: 122px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
}

.btn-outline-export {
    width: 114px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: white;
    margin-left: 10px;
}

.fa-download {
    color: rgba(4, 170, 98, 0.568);
}

.fa-download:hover,
.buton-group i:hover {
    color: white;
}

.success:hover {
    background-color: #04AA6D;
    color: white;
}

.buton-group.secondary {
    border-color: #424b46;
    color: #999b9a;
    margin-left: 10px;

}

.buton-group .secondary:hover {
    background-color: #7a817e;
    color: white;
}


/* button select coloumn row :end */



/* pagination strt */


.pagination {
    display: flex;


}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 10px;

}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

/* pagination END */


/* bulk upload file */

.btn-outline-Dwtemplate {
    width: 191px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(4, 170, 97, 1);
    background-color: rgba(4, 170, 97, 1);
    margin-right: -25px;
    color: white;
}

.select-master-dropdown {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    margin-top: 0px !important;
    width: 98% !important;
}

.dropdown-lg .btn-select-master {
    font-weight: 400;
    font-size: 14px;
    color: rgba(168, 168, 168, 1);
}

.dropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

#myInput {
    font-size: 12px;
    border: 1px solid #04AA61;
    width: 99%;
    height: 30px;
    padding-left: 20px;
    margin-left: 8px;
}

#myInput:focus {
    outline: 3px solid #ddd;
}

.dropdown-content-selectmaster {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 98%;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
    left: 35px;
}

.dropdown-content-selectmaster li {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content-selectmaster li:hover {
    background-color: rgba(247, 252, 250, 1);
}

.dropdown-lg {
    margin-left: 10px;
    width: 100%;
}

/* drag and drop  */
.upload-containervendor input {

    width: 90%;

}

.text-browsvendor {
    position: absolute;
    bottom: 50px;
    left: 24%;
    font-weight: 900;
    top: 40px;
}

.fileuploadvendor {
    cursor: pointer;
    position: absolute;
    padding: 70px;
    opacity: 0;
    padding-left: 100px;
    z-index: 1;
}

.bullk {
    width: 191px;
    height: 40px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    margin-top: -9px;
    margin-right: 30px;
}

.bullk1 {
    width: 240px;
    height: 40px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    margin-top: -17px;
}

.upload-boxvendor {
    background: rgba(4, 170, 98, 0.048);
    border: 2px dashed #04AA61;
    height: 200px;
    width: 90%;
    border-radius: 15px;
    margin-top: 20px;
}

.row .upload-btnvendor {
    background-color: rgba(251, 176, 22, 1);
    color: white;
    width: 90px;
    height: 40px;
    border: none;
    margin-left: 33px;
    border-radius: 5px;
    margin-top: 20px;
}

.row .uploaded-file {
    width: 297px;
    margin-top: 30px;
    background-color: rgba(251, 251, 251, 1);
}

.lastupdatetext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;

}

.filename {
    margin-right: 50px;
    color: rgba(1, 0, 71, 1);
}

.uploaded-file .filename .date {
    color: rgba(102, 110, 128, 1);
}

.row .after-uploaded-file {
    width: 297px;
    margin-top: 30px;
    margin-left: 25px;
    background-color: rgb(255, 255, 255);
}

.modal-body input {
    width: 310px;
    height: 40px;
    border-radius: 10px;
}

/* bukh upload end */










/* refund modal start  */

.refundmodal {

    height: 318px;
    border-radius: 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.textrefund {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    color: #010047;
    text-align: center;
    margin-top: 10px;

}

.noterefund {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    color: #666E80;
}


/* refund modal end  */
/* date picker model start */

.downmodal {
    height: 390px;
    border-radius: 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.textdown {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 20px;
    color: #010047;
    text-align: center;
    margin-top: 10px;

}

.notedown {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
    color: #666E80;
}

.calendar-input {
    background: #fff;
    cursor: pointer;
    border: 0px solid #ccc;
    height: 40px;
    width: 300px;
    position: relative;
    padding-left: 20px;
    border-radius: 10px;
    z-index: 0;
}

.container-fluid .icon {
    color: #FBB016;
    font-size: 24px;
    padding-top: 11px;

}

.icon-calendar {
    position: relative;
    right: 30px;
    z-index: 1;
}

.calender12 {

    margin-top: 25px;
}


/* date picker model end */

/* invoice popup form css start */

.modal .formdiv {
    width: 1111px;
    height: 860px;
    background: #FFFFFF;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    left: -270px;
}

.row .invoice {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    width: 742px;
    height: 50px;
    border: none;

}

.formdiv .invoicelab {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #17181A;
    margin-top: 10px;

}

.modal .formdiv .btn-outline-danger {
    width: 120px;
    height: 40px;
    background: #FFFFFF;
    margin-top: 25px;

}

.modal .formdiv .btn-outline-danger:hover {
    background: #FBB016;
    ;
}

.btn12 {
    margin-left: 52px;
}

.scroll {
    height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
}

.sam2144 .tenbtn {
    justify-content: center;
    align-items: flex-start;
    padding: 8px 10px;
    gap: 4px;
    color: red;
    width: 120px;
    height: 40px;
    border: 1px solid #C50000;
    border-radius: 4px;
}

.sam2144 .otbtn {
    width: 120px;
    height: 40px;
    color: white;
    background: #FBB016;
    border-radius: 4px;
    border: none;
}

.sam2144 .tenbtn:hover {
    background-color: red;
}



/* invoice popup form css end */


/* settlement table css start */


.tablerow .badge-Merchant-status {
    background-color: rgba(4, 170, 97, 0.16);
    color: rgba(4, 170, 97, 1);
}

.tablerow .dot {
    background-color: rgba(4, 170, 97, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.tablerow .dot-notappoved {
    background-color: rgba(251, 176, 22, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.tablerow .not-approved {
    color: rgba(251, 176, 22, 1);
    background-color: rgba(251, 176, 22, 0.16);
}

.tablerow .dot-failed {
    background-color: #F80F0F;
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.tablerow .failed {
    color: #F80F0F;
    background-color: rgba(248, 15, 15, 0.16);
}

.tablerow .test-approved {
    background-color: rgba(55, 124, 235, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.tablerow .test-approved {
    color: rgba(55, 124, 235, 1);
    background-color:
        rgba(55, 124, 235, 0.16);
}

.tablerow .dotrejected {
    background-color: rgba(248, 15, 15, 1);
    height: 4px;
    width: 4px;
    margin-bottom: 1px;
    margin-right: 5px;
}

.tablerow .rejected {
    color: rgba(248, 15, 15, 1);
    background-color: rgba(248, 15, 15, 0.16);
}

.merchant-account td {
    color: rgba(73, 73, 73, 1);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    vertical-align: middle;
}

.table .input {
    border-radius: 15px 0px 0px 15px;
    padding-left: 20px;
}

.table .action {
    border-radius: 0px 15px 15px 0px;
}

.table-data-color {
    background-color: white;
}




/* settlement table css end */

/* pagination settlement css start */

.text-pagination {
    margin-top: 180px;
}

/* pagination settlement css end */


/* fundform css start */
.fundformw {
    width: 1017px;
}

.maintitle {
  position: relative;
  right: 250px;
  width: 1017px;
  height: 100%;
  border: 1px solid;
  padding: 30px;
  background-color: white;
}

.maintitle .fundtitle {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
}

.maintitle .fundlable {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #17181A;
}

.maintitle .fundselect {
  width: 917px;
  height: 40px;
  box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
  border-radius: 10px;
  /* border: none; */
  outline: none;
  font-size: 15px;
}

.modalbuttons .btn-outline-danger:hover {

    border: 1px red;
    background-color: rgb(250, 30, 30);
    color: white
}

.modalbuttons .btn-outline-danger {
    outline-style: auto;
}

.modalbuttons .btn-outline-warning:hover {
    background-color: #FBB016;

}

.modalbuttons .btn-outline-warning {
    background-color: #FBB016;
    outline-style: auto;
    outline-color: #FBB016;
    color: white;

}

.modalbuttons1 .btn-outline-danger:hover {

    border: 1px red;
    background-color: rgb(250, 30, 30);
    color: white
}

.modalbuttons1 .btn-outline-danger {
    outline-style: auto;
}

.modalbuttons1 .btn-outline-warning:hover {
    background-color: #FBB016;

}

.modalbuttons1 .btn-outline-warning {
    background-color: #FBB016;
    outline-style: auto;
    outline-color: #FBB016;
    color: white;

}

/* fundform css start */


/* start profile hover */
.setting-profile1 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    justify-content: center;
    display: flex;
}

.view-profile1 {
    width: 270px;
    height: 40px;
    margin-left: 23px;
    background-color: rgba(4, 170, 97, 1);
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: white;
}

.testcheck {
    width: 270px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background-color: rgba(4, 170, 97, 0.07);
    margin-left: 15px;
    margin-top: 10px;
}

/* end profile hover */


/* * ticket preview css start */
*/ .commenttext {
    width: 643px;
    height: 66px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    border-radius: 10px;
    padding: 2%;
}

.commenttext1 {
    max-width: 643px;
    min-width: 446px;
    min-height: 66px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    border-radius: 10px;
    padding: 2%;
}

.bigtext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #17181A;
    opacity: 0.9;
}

.smalltext {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #A8A8A8;
    opacity: 0.9;
}

.textarea1 {
    padding: 2%;
}

.form-group .summer-editor {
    width: 885px;
    height: 152px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    border-radius: 10px;
    border: none;
    outline: none;
}

.commentborder {
    background: #FFFFFF;
    border: 0.4px solid #d8d8da;
    border-radius: 10px;
    padding: 2%;
}

.tickettitle1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #010047;
    margin-left: -20px;
    margin-top: -40px !important;
}

.modal .preticket {
    border: 1px solid;
    width: 1017px;
    padding: 10%;
}

.tickettitle3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #010047;
}

.fundselect1 {
    width: 300px;
    height: 40px;
    box-shadow: 0px 4px 10px rgba(124, 121, 121, 0.2);
    border-radius: 10px;
    background-color: white;
    border: none;
    outline: none;
}

/* ticket preview css end */




/* ticket form start */

input::file-selector-button {
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-size: 14px;
    border: none;
    border-radius: 3px;
    background-color: #FBB016;
    height: 40px;
    border-radius: 5px;
    width: 120px;
}


.tickettitle .fileinput {
    width: 235px;
}

.tickettitle {
    width: 1017px;
    border: 1px solid;
    padding: 30px;
    background-color: white;
}

.tickettitle .fundtitle {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
}

.tickettitle .ticketlable {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #17181A;
}

.tickettitle .ticketselect {
    width: 917px;
    height: 40px;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    border-radius: 10px;
    border: none;
    outline: none;
}

.tickettitle .tickettextarea {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    border-radius: 10px;
    border: none;
    outline: none;
    min-height: 50px;
}

.addticket {
    position: relative;
    left: -200px;
}

/* ticket form end */

/* filter css start */
.button-container-filter {
    display: flex;
    justify-content: end;
    align-items: end;
}

.button {
    font-size: 14px;
    background-color: #EEA300;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
    z-index: 1;
}

.middle-button {
    z-index: 2;
    height: 40px;
    width: 195px;
    border-radius: 4px;
    padding: 8px;
    margin-right: 10px;
}

.left-button {
    position: absolute;
    opacity: 1;
    transition: all 0.3s ease-out;
    width: 150px;
    height: 35px;
    text-align: center;
}

.left-button {
    position: absolute;
    left: 80%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 1.4s ease-out;
    transition-delay: 4s;
    transition-duration: 5s;
    width: 120px;
    height: -30px;
    display: none;
    text-align: center;

}

.right-button {
    position: absolute;
    right: 1%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    height: 35px;
    display: none;
    padding-left: 35px;
}

/* filter css end */

/* vendor filter css start */

.button-container-vendor {
    display: flex;
    justify-content: end;
    align-items: end;
}

.button {
    font-size: 14px;
    background-color: #EEA300;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
    z-index: 1;
}

.middle-button {
    z-index: 2;
    height: 40px;
    width: 195px;
    border-radius: 4px;
    padding: 8px;
    margin-right: 10px;
}

.left-button {
    position: absolute;
    opacity: 1;
    transition: all 0.3s ease-out;
    width: 150px;
    height: 35px;
}

.left-button {
    position: absolute;
    left: 77%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 1.4s ease-out;
    transition-delay: 4s;
    transition-duration: 5s;
    width: 120px;
    height: 35px;
    display: none;
}

.right-button {
    position: absolute;
    right: 1%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    height: 35px;
    display: none;
    padding-left: 35px;
}

/* vendor filter css end */
.button-container-payment:hover .right-button {
    right: 1%;
    padding-left: 90px;
}

*/
/* vendor transaction filter start */
/* .button-container-vendor {
  display: flex;
  justify-content: end;
  align-items: end ;
}

.button-container-vendor:hover .left-button {
  left: 80.3%;
  padding-right: 39px;
}
.button-container-vendor:hover .right-button {
  right: 1%;
  padding-left: 90px;
}
 */

/* vendor transaction filter end   */



/* disbursment filter ------- */


/* .button-container-disbursment{
  display: flex;
  justify-content: end;
  align-items: end ;
}

.button-container-disbursment:hover .left-button {
  left: 79.6%;
  padding-right: 34px;
}
.button-container-disbursment:hover .right-button {
  right: 1%;
  padding-left: 50px;
}
.button-container-disbursment .right-button {
  position: absolute;
  right: 3%;
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #EEA300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 170px;
  height: 35px;
}
.button-container-disbursment .left-button{

    position: absolute;
    left: 89%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease-out;
    width: 120px;
    height: 35px;
  }

.button-container-merchant{
  display: flex;
  justify-content: end;
  align-items: end ;
}
.button-container-merchant:hover .left-button {
  left: 80.4%;
  padding-right: 34px;
}
.button-container-merchant:hover .right-button {
  right: 0%;
  padding-left: 50px;
}
.button-container-merchant .right-button {
  position: absolute;
  right: 1%;
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #EEA300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 170px;
  height: 35px;
}
.button-container-merchant .left-button{




  .button-filter-f{
    display: flex;
    justify-content: end;
    align-items: end ;
  }
  .right-button-f {
    position: absolute;
    right: 1%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    height: 35px;
  }
  .left-button-f {
    position: absolute;
    left: 88%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease-out;
    width: 120px;
    height: 35px;
  } */



.button-container-filter {
    display: flex;
    justify-content: end;
    align-items: end;
}

.button {
    font-size: 14px;
    background-color: #EEA300;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
    z-index: 1;
}

.middle-button-s2s {
    z-index: 2;
    height: 40px;
    width: 195px;
    border-radius: 4px;
    padding: 8px;
    margin-left: 60px;
}

.left-button-s2s {
    position: absolute;
    left: 71%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 1.4s ease-out;
    transition-delay: 4s;
    transition-duration: 5s;
    width: 150px;
    height: 35px;
    display: none;
    position: absolute;
    opacity: 1;
    padding-right: 30px;
}

.right-button-s2s {
    position: absolute;
    right: 1%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    height: 35px;
    display: none;
    padding-left: 35px;
}



/* filter button disbirsment */

.middle-button {
    z-index: 2;
    height: 40px;
    width: 195px;
    border-radius: 4px;
    padding: 8px;
    margin-right: px;
}

.left-button {
    position: absolute;
    left: 77%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 1.4s ease-out;
    transition-delay: 4s;
    transition-duration: 5s;
    width: 150px;
    height: 35px;
    display: none;
    position: absolute;
    opacity: 1;
    padding-right: 30px;
}

.right-button {
    position: absolute;
    right: 1%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    height: 35px;
    display: none;
    padding-left: 35px;
}

/* filter button merchant details */

.right-button-Merchant {
    position: absolute;
    right: 2%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    height: 35px;
    display: none;
    padding-left: 55px;
}

.left-button-Merchant {
    position: absolute;
    left: 79%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 1.4s ease-out;
    transition-delay: 4s;
    transition-duration: 5s;
    width: 150px;
    height: 35px;
    display: none;
    position: absolute;
    opacity: 1;
    padding-right: 30px;
}

.middle-button-Merchant {
    z-index: 2;
    height: 40px;
    width: 195px;
    border-radius: 4px;
    padding: 8px;
}

/* filter vendor button start */
.middle-button-vendor {
    z-index: 2;
    height: 40px;
    width: 195px;
    border-radius: 4px;
    padding: 8px;
}

.left-button-vendor {
    position: absolute;
    left: 77%;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #EEA300;
    cursor: pointer;
    transition: all 1.4s ease-out;
    transition-delay: 4s;
    transition-duration: 5s;
    width: 150px;
    height: 35px;
    display: none;
    position: absolute;
    opacity: 1;
    padding-right: 50px;
}

/* filter vendor button end */





/* modal filter start */

.modalfilter {
    width: 1017px;
    height: 328px;
    border-radius: 10px;

}

.modalfilter1 {
    width: 1017px;
    height: 248px;
    border-radius: 10px;
    padding-left: 20px;
    position: relative;
    left: -100px;

}

.filtermod {
    position: relative;
    left: -330px;
}

.modalfilterlable {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.modalfilterselect {
    width: 310px;
    height: 40px;
    background: #FFFFFF;
    border: none;
    box-shadow: 0px 4px 10px rgba(96, 96, 96, 0.2);
    border-radius: 10px;
    margin-left: 20px;
    color: green;
}

.modalformbtn {
    height: 36px;
    width: 191px;
    margin-left: 400px;
}

/* modal filter end */


/* dropdown select lisr start */
.round {
    position: relative;
}

.round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
}

.round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

.round input[type="checkbox"] {
    visibility: hidden;
    width: 75px;
}

.round input[type="checkbox"]:checked+label {
    background-color: #66bb6a;
    border-color: #66bb6a;

}

.round input[type="checkbox"]:checked+label:after {
    opacity: 1;

}

/* dropdown select lisr end */

/* dropdowndown select coloumn start */
.selectprocess {
    height: 20px;
    width: 20px;
    position: relative;
    left: 90px;
    display: none;
}

.list12 .liwidth {
    width: 200px;
}

/* dropdowndown select coloumn end */

.profileimg {
    height: 35px;
    width: 35px;
    background-color: rgb(247, 196, 87);
    color: white;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
}

/* filter modal css start */
.tabfilter {
    position: relative;
    min-height: 200px;
    /* This part sucks */
    clear: both;
    margin: 25px 0;


}

.tabbutton {
    float: left;
    margin-left: 20px;
    margin-top: -10px;

}

.tabbutton label {
    padding: 12px;
    margin-left: -1px;
    position: relative;
    left: 1px;
    margin-top: -100px;

}

.tab11 {
    position: absolute;
    top: 30px;
    margin-top: 75px;
    z-index: 11;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #666E80;
}

.tab12 {
    position: absolute;
    top: 10px;
    z-index: 11;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #666E80;
}

.tab11:hover {
    border-bottom: 3px solid #FBB016;
}

.hrline {
    height: 1px;
    margin-top: 33px;
    color: rgb(217, 219, 221);
    margin-bottom: 20px;
}

.hrline2 {
    height: 1px;
    margin-top: 33px;
    color: rgb(217, 219, 221);

}

.tabbutton [type="radio"] {
    opacity: 0;
}

.contentfilter {
    position: absolute;

    left: 0;
    background: white;
    right: 0;
    bottom: 0;
    padding: 20px;
    overflow: hidden;
}

.contentfilter>* {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

/* [type="radio"]:focus ~ label {
  ouline: 2px solid blue;
} */
[type="radio"]:checked~label {
    background: white;
    border-bottom: 1px solid white;
    z-index: 2;
}

[type="radio"]:checked~label~.contentfilter {
    z-index: 1;
}

[type="radio"]:checked~label~.contentfilter>* {
    opacity: 1;
    transform: translateX(0);
}

.merchat-transaction-dashboard .heading {
    position: relative;
    left: 27px;
    top: 10px;


}

@media only screen and (max-width: 1482px) and (min-width: 1024px) {
    .searchbox #search {
        padding-left: 50px;
        width: 388px;
        outline: 0;
    }

}


@media only screen and (max-width: 1780px) and (min-width: 1400px) {

    .searchbox #search {
        padding-left: 50px;
        width: 588px;
        outline: 0;
    }


    .card-counter {
        height: 160px;
        width: 268px;
        margin-top: 30px;
    }

    .card1-icon {
        position: relative;
        top: -87%;
        left: 69%;
    }

    .card2-icon {
        position: relative;
        top: -81%;
        left: 65%;
    }

    .card3-icon {
        position: relative;
        top: -68%;
        left: 70%;
    }

    .card4-icon {
        position: relative;
        top: -72%;
        left: -10px;
    }

    .card2-name,
    .card3-name,
    .card4-name {
        position: relative;
        top: -30px;
        font-size: 16px;
    }

    .card1-name {
        position: relative;
        top: -30px;
        font-size: 16px;
    }

    .card-counter .total-gtv {
        position: relative;
        top: 1px;
    }

    .card-counter .subheading-success {
        position: relative;
        top: -28px;
        font-size: 14px;
        font-weight: 500;
        left: 25px;
    }

    .card2-img,
    .card3-img {
        width: 70px;
    }

    .card4-img {
        width: 65px;
    }

    .card1-img {
        width: 120px;
    }

    .card-counter .subheading {
        font-size: 14px;
        font-weight: 500;
        position: relative;
        top: -18%;
        left: 32px;
    }



    .subheading-wallet {
        font-size: 15px;
    }

    .card-heading,
    .card-heading-success {
        font-size: 17.2px;
    }

    .Recent-transaction .h3 {
        font-size: 16px;
    }

    .no1 {
        font-size: 25px;
        margin-left: 2px;
    }

    .lasttext {
        font-size: 9px;
    }

    .tiwi {
        margin: 0px;
    }

    .tiwi4 {
        margin-bottom: 0px;
    }

    .mybuttonoverlap button i {
        font-size: 10px;
        position: relative;
        top: -2px;
    }

    .mybuttonoverlap button {
        height: 25px;
    }

    .refund-row,
    .Chargeback-row {
        padding-top: 13px;
    }

    .Recent-transaction .Settlement-heading {
        font-size: 24px;
    }

    .card-heading-wallet-rupee {
        color: white;
        font-size: 20px;
        position: absolute;
        padding-top: 33%;
        font-weight: 700;
        padding-left: 20PX;
    }

    .subheading-wallet {
        padding-top: 42%;
    }

    .wallet-icon {
        position: relative;
        top: 40px;
    }

    .doughnout table {
        position: relative;
        left: -30px;
    }

    .doughnout-img {
        width: 100%;
        position: relative;
        left: -60px;
    }

    .card-payment-mode h3 {
        font-size: 23px;
    }

    .card-body .aadd-button {
        position: relative;
        width: 10px;
    }

    .carousel-item button {
        height: 36px;
        width: 100%;
        border-radius: 4px;
        background-color: rgba(4, 170, 97, 1);
    }

    .row .merchant-info-left {
        width: 500px;
    }

    .merchant-dashboard span {
        font-size: 20px;
        color: #010047;
        font-weight: 500;
    }

    .merchant-dashboard-card span {
        font-size: 20px;
    }

    .card-Merchant-details,
    .card-merchant-kyc,
    .card-merchant-vendor {
        background-size: 160px;
        margin-left: -1px;
    }

    .card-transaction,
    .card-settlements,
    .card-settlements-detail {
        background-size: 160px;
        margin-left: 10px;
    }

    .overflow-ellipsis {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }



    /* transaction detail card section start --------------------------------------------- */
    .card-counter1 {
        height: auto;
        height: calc(100px - 23px);
        width: auto;
        background-color: white;
    }

    .card-counter2 {
        height: auto;
        background-size: 380px 229px;
        height: calc(100px - 23px);
        width: 100%;
        background-position: center center;
        background-color: white;
        background-position: center;
    }

    .card-counter3 {
        height: auto;
        background-size: 380px 229px;
        height: calc(100px - 23px);
        width: 100%;
        background-position: center center;
        background-color: white;
        background-position: center;
    }

    .card-counter4 {
        height: auto;
        background-size: 380px 229px;
        height: calc(100px - 23px);
        width: 100%;
        background-position: center center;
        background-color: white;
        background-position: center;
    }

    .transicon {
        margin-top: -27px;
        margin-left: 20px;
        background-color: #f5ecec;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 5px;
    }

    .transimg {
        height: 30px;
        width: 30px;
        margin-top: 4px;
        margin-left: 5px;
    }

    .count-numbers1 {
        color: #828282;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
    }

    .count-name1 {
        display: block;
        color: #000000;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 30px;
        margin-top: -22px;
        padding-left: 78px;
    }

    .card-heading1 {
        display: block;
        color: white;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        padding: 30px;
        padding-top: -30px;
    }

    .card-heading1-success {
        display: block;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        line-height: 21px;
        color: #828282;
        padding: 12px;
        padding-left: 80px;
    }

    .divicon {
        height: 50px;
        width: 50px;
        background-color: #000;
    }

    /* transaction detail card section end --------------------------------------------- */

    .transition1 {
        position: relative;
        width: 248px;
        height: 160px;
    }

    .position1 {
        position: absolute;
        bottom: 8px;
        left: 10px;
        width: 230px;
        height: 140px;
    }

    .classtext {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        color: #FFFFFF;
        position: relative;
        top: -10px;
        margin-left: 36px;
    }

    .listline {
        display: inline-flex;
        gap: 12px;
    }

    .listline1 {
        display: inline-flex;
        gap: 3px;
    }

    .searchbox .fa-times {
        position: absolute;
        left: 560px;
    }

    .card-wallet-balence {
        height: 220px;
        width: auto;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .card-heading-wallet {
        color: white;
        font-size: 20px;
        font-weight: 600;
        padding-top: 10px;
        padding-left: 20px;
    }

    .card-subheading-wallet {
        color: white;
        font-size: 20px;
        position: absolute;
        padding-top: 25%;
        padding-left: 20PX;
    }

    .button-change {
        position: absolute;
        right: 60px;
        top: 55%;
        background-color: #BB10CB;
        border: none;
        border-radius: 5px;
        color: white;
        font-weight: bold;
        padding-left: 20px;
        font-size: 12px;
    }

    .wallet-icon {
        float: right;
        position: relative;
        top: -20%;
    }

    .wallet-icon img {
        width: 75px;
    }

    .card-heading-wallet-rupee {
        color: white;
        font-size: 15px;
        position: absolute;
        padding-top: 18%;
        font-weight: 700;
        padding-left: 20PX;
    }

    .card-subheading-wallet {
        font-size: 15px;
    }

    .doughnout-img img {
        width: 130px;
        position: relative;
        top: -20px;
    }

    .doughnout table {
        position: relative;
        left: -30px;
        top: -40px;
    }

    .wallet-section-row {
        height: 300px;
    }

    .cards-section1 {
        height: 250px;

    }

    .card-payment-mode .payment-mode-heading {
        font-size: 22px;
    }

    .report-heading .h3 {
        font-size: 24px;
    }

    .hover-button {
        position: relative;
        top: -10px;
    }

    .recent-transaction-heading .h3 {
        font-size: 24px;
    }

    .card-counter .card1-text {
        position: relative;
        top: -30px;
        left: 30px;
        font-size: 14px;
        font-weight: 500;
    }

    .searchbox .fa-times {
        position: absolute;
        left: 70%;
        cursor: pointer;
        display: none;
        font-size: 25px;
        font-weight: 10px;
    }

}


@media only screen and (max-width: 1482px) and (min-width: 1440px) {
    .merchat-transaction-dashboard .heading {
        position: relative;
        left: 20px;
        top: 10px;

    }

    .count-name1 {
        display: block;
        color: #000000;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 13px;
        line-height: 30px;
        margin-top: -22px;
        padding-left: 78px;
    }

    .card-heading1-success {
        display: block;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 21px;
        color: #828282;
        padding: 12px;
        padding-left: 80px;
    }

    .classtext {

        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        color: #FFFFFF;
        position: relative;
        top: -10px;
        margin-left: 20px;
    }

    .withd {
        width: 620px;
    }

    .carousel-item {
        height: 300px;
        border-radius: 12px;
        padding: 10px;
        gap: 30px;
        border: none;
        width: 600px;
    }

    #more {
        height: 350px;
    }

    .carousel-item {
        height: auto;
        width: 100%;
        border-radius: 12px;
        padding: 10px;
        gap: 0px;
        border: none;
    }


    .carousel-item .carousel-card {
        width: 250px;
        padding: 10px;
        display: flex;

    }

    .card-counter .count-name {
        display: block;
        font-weight: 700;
        font-size: 16px;
        color: white;
        padding-top: 40px;
        padding-left: 35px;
    }

    /* Disbursment Bulk Manual 1440 responsive start---------------------- */

    .brows {
        position: relative;
        left: 15%;
    }

    .browse-btn .browse-text {
        position: relative;
        left: 50px;
        padding-top: 5px;
    }

    .user-notification tr {
        border-top: none;
    }

    .searchbox .add-more-cross-icon {
        position: absolute;
        left: 45%;
        cursor: pointer;
        display: none;
        font-size: 25px;
        font-weight: 10px;
        top: -1px;
    }

    .no-file-selected span {
        font-family: 14px;
        margin-left: 52%;
        color: rgb(117, 118, 119);
    }

    .user-notification ul {
        border: none;
    }

}


/* tolltip css start */
.tooltiptextd {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    left: -141px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptextd::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptextd {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptextd {
    visibility: visible;
}

.collapse {
    background-color: white;
    transition: .4s height;
}




.tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    left: -140px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext {
    visibility: visible;
}

.tooltiptext1 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    left: -140px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext1::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext1 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext1 {
    visibility: visible;
}

.tooltiptext2 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    right: 142px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext2 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext2 {
    visibility: visible;
}

.tooltiptext3 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    right: 137px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext3::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext3 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext3 {
    visibility: visible;
}

.tooltiptext4 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -32px;
    right: 142px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext4::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext4 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext4 {
    visibility: visible;
}

.tooltiptext5 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    right: 139px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext5::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext5 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext5 {
    visibility: visible;
}

.tooltiptext6 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    right: 138px;
    z-index: 111;
    font-size: 9px;
    font-weight: 400;
}

.tooltiptext6::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext6 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext6 {
    visibility: visible;
}


.tooltiptext7 {
    visibility: hidden;
    width: 80px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 7px 4px;
    position: relative;
    top: -30px;
    left: -141px;
    z-index: 111;
    font-size: 8px;
    font-weight: 400;
}

.tooltiptext7::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltipsidebar:hover .tooltiptext7 {
    visibility: hidden;
}

nav.close .tooltipsidebar:hover .tooltiptext7 {
    visibility: visible;
}

/* tolltip css start */

@media only screen and (max-width: 1482px) and (min-width: 1040px) {
    .display .text-nowrap {
        border: none;
        vertical-align: middle;
        width: auto;
        word-wrap: normal;
        height: 21px;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 21px;
        color: #494848;
        align-items: center;

    }

    .display .tabledata {
        border: none;
        vertical-align: middle;
        width: auto;
        word-wrap: normal;
        height: 61px;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 21px;
        color: #615f5f;
        align-items: center;

    }

    .display .th1 {
        border-bottom: none;
        vertical-align: middle;
        letter-spacing: -0.02em;
        width: 500px;
        width: 185px;
        height: 21px;
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 21px;
        color: #000000;
        background-color: rgba(4, 170, 97, 0.05);

    }
}

body {
    overflow-x: hidden;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #b1b0b0;
}

/* Reverse the scrollbar direction */
::-webkit-scrollbar-thumb:horizontal {
    transform: rotate(180deg);
}

/* Reverse the scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
