body {
    font-family: "Poppins", sans-serif;
}

#layoutAuthentication {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

    #layoutAuthentication #layoutAuthentication_content {
        min-width: 0;
        flex-grow: 1;
    }

    #layoutAuthentication #layoutAuthentication_footer {
        min-width: 0;
    }

#layoutSidenav {
    display: flex;
}

    #layoutSidenav #layoutSidenav_nav {
        flex-basis: 225px;
        flex-shrink: 0;
        transition: transform 0.15s ease-in-out;
        z-index: 1038;
        transform: translateX(-225px);
    }

    #layoutSidenav #layoutSidenav_content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
        flex-grow: 1;
        min-height: calc(100vh - 56px);
        margin-left: -225px;
    }

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0);
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1037;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

@media (min-width: 1200px) {
    #layoutSidenav #layoutSidenav_nav {
        transform: translateX(0);
    }

    #layoutSidenav #layoutSidenav_content {
        margin-left: 0;
        transition: margin 0.15s ease-in-out;
    }

    .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
        transform: translateX(-225px);
    }

    .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
        margin-left: -225px;
    }

        .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
            display: none;
        }
}

.sb-nav-fixed .sb-topnav {
    z-index: 1039;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: 0px 2px 10px #ededed;
}

.sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
    width: 225px;
    height: 100vh;
    z-index: 1038;
    position: fixed;
}

    .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
        padding-top: 56px;
        background: #FFF;
        box-shadow: 4px 0px 22px 0px #0000001A;
    }

        .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
            overflow-y: auto;
        }

.sb-nav-fixed #layoutSidenav #layoutSidenav_content {
    padding-left: 225px;
    top: 56px;
}

#layoutError {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

    #layoutError #layoutError_content {
        min-width: 0;
        flex-grow: 1;
    }

    #layoutError #layoutError_footer {
        min-width: 0;
    }

.img-error {
    max-width: 20rem;
}

.nav .nav-link .sb-nav-link-icon,
.sb-sidenav-menu .nav-link .sb-nav-link-icon {
    margin-right: 0.5rem;
}

.sb-topnav {
    padding-left: 0;
    height: 56px;
    z-index: 1039;
}

    .sb-topnav .navbar-brand {
        width: 225px;
        margin: 0;
    }

    .sb-topnav.navbar-dark #sidebarToggle {
        color: rgba(255, 255, 255, 0.5);
    }

    .sb-topnav.navbar-light #sidebarToggle {
        color: #212529;
    }

.sb-sidenav {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-wrap: nowrap;
}

    .sb-sidenav .sb-sidenav-menu {
        flex-grow: 1;
    }


        .sb-sidenav .sb-sidenav-menu .nav {
            flex-direction: column;
            flex-wrap: nowrap;
            font-size: 14px;
        }

            .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
                padding: 1.75rem 1rem 0.75rem;
                font-size: 0.75rem;
                font-weight: bold;
                text-transform: uppercase;
            }

            .sb-sidenav .sb-sidenav-menu .nav .nav-link {
                display: flex;
                align-items: center;
                position: relative;
            }

                .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
                    font-size: 0.9rem;
                }

                .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
                    display: inline-block;
                    margin-left: auto;
                    transition: transform 0.15s ease;
                }

                .sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
                    transform: rotate(-90deg);
                }

            .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
                margin-left: 1.5rem;
                flex-direction: column;
                font-size: 12px;
            }

                .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested a {
                    color: #000;
                }

    .sb-sidenav .sb-sidenav-footer {
        padding: 0.75rem;
        flex-shrink: 0;
    }

/* .sb-sidenav-dark {
  background-color: #212529;
  color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-footer {
  background-color: #343a40;
}

.sb-sidenav-light {
  background-color: #f8f9fa;
  color: #212529;
}

.sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link {
  color: #212529;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
  color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active {
  color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-footer {
  background-color: #e9ecef;
} */


.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
}

    .btn-outline-light:hover {
        color: #ffffff;
        background: #104476;
    }

.btn-outline-primary {
    color: #104476;
    border-color: #104476;
}

    .btn-outline-primary:hover {
        color: #ffffff;
        background: #104476;
        border-color: #104476;
    }



.btn-primary {
    background: #104476;
    border-color: #104476;
}

    .btn-primary:hover {
        color: #104476;
        border-color: #104476;
        background: transparent;
    }

.nav-link i {
    margin-right: 10px;
}

.primary-color {
    color: #104476 !important;
}

.nav-link.active {
    background-color: #deefff !important;
    color: #104476 !important;
    font-weight: 600;
}

.nav-link:hover {
    background-color: #f8f9fa;
    color: #104476 !important;
    font-weight: 600;
}

.boxShadow {
    box-shadow: 2px 0px 5px 0px #ddd;
}


.navbar-custom {
    padding: 10px 20px;
}

.form-select {
    width: auto;
}

.user-info {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .user-info img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }

.complete-profile-img img {
    border-radius: 50%;
    width: 115px;
    height: 115px;
    margin-right: 15px;
}

.bell-btn {
    box-shadow: 0px 0px 3px 0px #ddd
}

.crypto-ticker {
    white-space: nowrap;
    overflow-x: auto;
    padding: 15px 0;
    background-color: #f5f5f5;
    cursor: grab;
}

.crypto-item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

    .crypto-item img {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .crypto-item span {
        margin-right: 10px;
    }

.price-change {
    color: #389C00;
}

.divider {
    border-left: 1px solid #e0e0e0;
    height: 32px;
    margin: 0 15px;
}

.crypto-ticker::-webkit-scrollbar {
    display: none;
}

.crypto-ticker {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pe-none {
    user-select: none !important;
    pointer-events: none !important;
}

.nav-pills a {
    border-radius: 0 !important;
    /* border-top-left-radius: 0 !important; */
}

.wallet-card,
.wallet-card2 {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 10px;
    color: #ffffff;
    position: relative;
}

    .wallet-card img {
        width: 100px;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .wallet-card h5 {
        position: absolute;
        left: 20px;
        top: 10px;
    }

    .wallet-card p {
        position: absolute;
        left: 20px;
        bottom: 0;
        font-size: 40px;
        margin-bottom: 0;
        font-weight: 500;
    }

    .wallet-card .a1 {
        position: absolute;
        right: 20px;
        bottom: 10px;
        color: #104476;
    }

    .wallet-card .a2 {
        position: absolute;
        left: 20px;
        bottom: 10px;
        color: #104476;
    }

    .wallet-card small {
        position: absolute;
        left: 20px;
        top: 40px;
    }

.usdt-wallet {
    background: linear-gradient(to right, #2A5298, #1E3C72);
}

.rewards-wallet {
    background: linear-gradient(to right, #FFB75E, #ED8F03);
}


.qbn-wallet {
    background: linear-gradient(to right, #76B852, #8DC26F);
}

.commission-wallet {
    background: linear-gradient(to right, #673AB7, #512DA8);
}

.forex-reward-wallet {
    background: linear-gradient(to right, #005C97, #363795);
}

.forex-withdrawal-wallet {
    background: linear-gradient(to right, #E53935, #E35D5B);
}

.usdt-wallet-child {
    background: #DEEFFF;
    color: #000;
}

.rewards-wallet-child {
    background: #FAF2CD;
    color: #000;
}

.qbn-wallet-child {
    background: #EEFFE4;
    color: #000;
}

.forex-withdrawal-wallet-child {
    background: #FFE3E3;
    color: #000;
}

.usdt-wallet-child h5 {
    color: #1E3C72;
}

.rewards-wallet-child h5 {
    color: #ED8F03;
}

.qbn-wallet-child h5 {
    color: #76B852;
}

.forex-withdrawal-wallet-child h5 {
    color: #E53935;
}






.agg-forex {
    background-color: #fffbf0;
    color: #104476;
}

.rank-logs {
    background-color: #f3f9ff;
    color: #104476;
}

.personalised-portal {
    background-color: #fafafa;
}

.grid_col {
    position: relative;
}

    .grid_col div {
        height: 175px;
        width: 100%;
    }

.grid_col2 .wallet-card2 {
    height: 100%;
    width: 100%;
}

.earnings-list {
    list-style-type: none;
    padding: 0;
}

    .earnings-list li {
        padding: 3px 0;
    }

.earnings-list2 li {
    display: flex;
    justify-content: space-between;
}



    .earnings-list2 li p {
        margin-bottom: 0;
        font-weight: 500;
    }

.chart_div {
    border-radius: 15px;
    padding: 15px;
    background-color: #fff;
}

.rank-progress-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
}

.progress-bar {
    border-radius: 5px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-weight: 500;
}

/* .progress-bar-green {
  background-color: #00c900;
} */

.chart, #bonusChart,
#quarterChart, #quarterChart1, #quarterChart2, #quarterChart3, #quarterChart4 {
    max-width: 250px;
    max-height: 250px;
}

::-webkit-scrollbar {
    width: 7px;
}

.sb-sidenav-menu::-webkit-scrollbar {
    width: 3px;
}

.dt-scroll-body::-webkit-scrollbar {
    height: 5px;
    cursor: grab;
}

::-webkit-scrollbar-track {
    background-color: #acacac;
}

::-webkit-scrollbar-thumb {
    background-color: #104476;
    cursor: grab;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

@media (max-width: 767px) {
    .hidden-phone {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }
}

.CloseButton {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #fff;
    opacity: 1;
    margin-right: calc(var(--bs-gutter-x)* 0.5);
}

.block_btn {
    background: #E94444;
    color: #fff;
    line-height: 1.2;
}

.revert_btn {
    background: #104476;
    color: #fff;
    line-height: 1.2;
}

.block_btn:hover {
    border-color: #E94444;
    color: #E94444;
}

.revert_btn:hover {
    border-color: #104476;
    color: #104476;
}

.support_view {
    background: #104476;
    color: #fff;
    width: 70px;
    line-height: 1.2;
}

    .support_view:hover {
        border-color: #104476;
        color: #104476;
    }


.support_reply {
    background: #333;
    color: #fff;
    width: 70px;
    line-height: 1.2;
}

    .support_reply:hover {
        border-color: #333;
        color: #333;
    }

.row-item-checkbox,
.header-checkbox {
    margin-left: 10px;
}

.input[type="checkbox" i] {
    border: none;
}

.form-check-input {
    box-shadow: 0px 1px 1px 0px #00000024;
}


.btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    padding: 3px 10px;
    border: 1px solid #aaa;
    font-weight: 500;
}

    .btn-filter:hover {
        border: 1px solid #000;
    }

.form-check-input:checked {
    background-color: #104476;
    border-color: #104476;
}

.datatable > tbody > tr > td {
    vertical-align: middle;
    padding: 1rem 0.5rem;
}

.datatable {
    /*white-space: nowrap;*/
}

    .datatable > thead {
        background: #F3F9FF;
        border-top: 1px solid #c4c4c4;
    }

table.table.dataTable > :not(caption) > * > * {
    background-color: transparent;
}

.card-body {
    padding: 0;
}


.dt-type-numeric {
    text-align: left !important;
}


@media (max-width: 600px) {
    .card-header {
        flex-direction: column;
        gap: 20px;
    }
}

.active > .page-link, .page-link.active {
    background-color: #104476;
    border-color: #104476;
}

.page-link {
    color: #000;
}

.footer_div {
    position: relative;
    height: 80px;
    z-index: -1;
}

.footer_img {
    position: absolute;
    bottom: 52px;
    width: 100%;
}

.login_div {
    width: 400px;
    opacity: 0.9;
}


.signup_div {
    max-width: 700px;
    opacity: 0.9;
}

    .signup_div .form-label {
        margin-top: 0;
    }

.login_div .form-label {
    margin-top: 0;
}

.form-label {
    font-weight: 500;
}

.upload-box {
    border: 2px dashed gray;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    min-height: 175px;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal-body p {
    font-size: 12px;
    font-weight: 500;
}

.modal-hr {
    margin: 0;
    opacity: 1;
    color: #104476;
}

.alert-light {
    width: fit-content;
    border: none;
    background: #fff;
    box-shadow: 0 0 10px 2px #ddd;
    margin: 0;
}

    .alert-light p {
        margin: 0;
    }

.pagination {
    --bs-pagination-padding-x: 0.5rem;
    --bs-pagination-padding-y: 0rem;
}

.dt-info,
div.dt-container div.dt-length label,
div.dt-container div.dt-search label,
.dt-column-title {
    font-weight: 500;
}

.dt-container {
    font-size: 13px;
}

    .dt-container .datatable .btn {
        font-size: 11px;
        line-height: 1.2;
    }

.banner-heading {
    margin: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.white-color {
    color: #fff;
}

.profile-container {
    background-color: #F5F5F5;
    border-radius: 15px;
}

.profile-image {
    border-radius: 10px;
    width: 100%;
    /* height: auto; */
    max-width: 172px;
}

.form-label {
    margin-top: 0.5rem;
    font-weight: 500;
}

.fw-bold {
    font-weight: 600 !important;
}

.bg-light {
    background-color: #F5F5F5 !important;
}

@media (max-width: 767px) {
    .px-4 {
        padding-right: .5rem !important;
        padding-left: .5rem !important;
    }
}

.pdf-span {
    font-size: 16px;
}

.pdf-small {
    font-size: 12px;
}

.pdf-container {
    border-left: 15px solid #E53935;
}

@media (max-width: 700px) {
    .pdf-container {
        flex-direction: column;
    }

    .pdf_button_div {
        margin-top: 10px;
    }
}

.shadow {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15) !important;
}

@media (min-width: 768px) {
    /* .my-volume-first-row{
  padding-right: 1rem !important;
  padding-left: 1rem !important;
} */
    .col-bod-right-md {
        border-right: 2px solid #dad6d6;
    }
}

.select2-container {
    display: block;
    width: auto !important;
}

    .select2-container .select2-selection--single {
        height: calc(2em + .75rem + 2px);
        padding: .375rem .75rem;
        font-size: 0.9rem;
        line-height: 2 !important;
        color: #495057;
        background-color: #fff;
        border: 1px solid #dee2e6;
        border-radius: .375rem;
    }

    .select2-container .select2-selection--multiple {
        height: calc(2em + .75rem + 2px);
        padding: .375rem .75rem;
        font-size: 0.9rem;
        line-height: 2 !important;
        color: #495057;
        background-color: #fff;
        border: 1px solid #dee2e6;
        border-radius: .375rem;
    }

        .select2-container .select2-selection--multiple.select2-selection--clearable {
            height: 100%;
        }



.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0px;
    margin-left: 0;
    height: calc(1.5em + .75rem + 2px);
    font-size: 0.9rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 0;
}

.select2-selection__clear {
    color: red;
}


.select2-container .select2-selection--single .select2-selection__clear {
    height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2 !important;
    padding-left: 0;
}


.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: .75rem;
}


.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
}

    .select2-container--default .select2-selection--single .select2-selection__clear {
        color: red;
    }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #104476;
    border: none;
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
}

.select2-selection__rendered li {
    margin-bottom: 5px;
    min-width: 80px;
}

.notification-menu {
    width: 320px;
    font-size: 12px;
    margin-right: 15px;
    padding: 0;
}

    .notification-menu .dropdown-header {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        background-color: #1044761a;
        border-radius: 4px 4px 0px 0px;
        border-top: 3px solid #104476;
        border-bottom: 0;
    }

    .notification-menu .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
    }

        .notification-menu .dropdown-item:last-child {
            border-bottom: none;
        }

    .notification-menu .dropdown-footer {
        padding: 5px 10px;
        background-color: #1044761a;
        border-radius: 0px 0px 4px 4px;
    }

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

.dropdown-header .badge {
    font-size: 12px;
    font-weight: 500;
}

.dropdown-header .bg-primary {
    background-color: #104476 !important;
}

.user-info .dropdown-toggle::after {
    border-top: 0.5em solid;
    border-right: 0.4em solid transparent;
    border-left: 0.4em solid transparent;
    color: #ffffff;
    border-radius: 5px;
}

.notificationDropdown .dropdown-toggle::after {
    display: none;
}

.color-success {
    color: #449E48;
}

.color-warning {
    color: #FFCF0E;
}

.color-danger {
    color: #FF3C3C;
}

.notification-count {
    position: absolute;
    top: -8px;
    left: 25px;
    background-color: #dc3545;
    color: white;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
    line-height: 2;
    padding: 0px 4px;
    min-width: 20px;
    z-index: 1;
}

.bell-btn {
    position: relative;
}

.bg-primary {
    background-color: #104476 !important;
}

.btn-close {
    background-color: #fff;
}

.card-header .accordion-button {
    padding: 0;
    background-color: transparent;
    border: none;
    color: #ffffff;
    box-shadow: none;
    font-weight: 500;
}

    .card-header .accordion-button:focus {
        box-shadow: none;
    }

.form-control, .form-label, .btn, .form-select {
    font-size: 0.9rem;
}

.form-control, .form-select {
    line-height: 2;
}

#datatable_wrapper .form-control, #datatable_wrapper .form-select {
    line-height: 1.3 !important;
}

.wallet-button-col {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
}

@media (max-width: 600px) {
    .wallet-button-col {
        flex-direction: column;
    }
}

.w-100-px {
    width: 100px;
}

.w-120-px {
    width: 120px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.w-140-px {
    width: 140px;
    display: inline-block;
}

.ticket-img {
    width: 40px;
    border-radius: 100%;
    margin-right: 15px;
}

.togglePassword, .input-group-text {
    cursor: pointer;
}

#selfie-instructions {
    display: none;
    position: absolute;
}

#how-to-take-selfie {
    margin-bottom: 0;
    margin-top: 5px;
    cursor: pointer;
    display: inline-block;
}

.important-updates {
    height: 600px;
    overflow-y: scroll;
    padding-right: 10px;
}

.banner-col-text {
    background-position: center !important;
    background-size: cover !important;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcements-view {
    height: 446px;
    overflow-y: scroll;
    padding-right: 10px;
}

@media (max-width: 1199px) {
    .important-updates {
        height: 200px;
    }

    .banner-col-text {
        height: auto;
    }
}

.pagination-col {
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;
}

@media (max-width: 575px) {
    .pagination-col {
        justify-content: center;
    }
}

.table-top-row {
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.table-bottom-row {
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.epp-b {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    div.dt-buttons {
        width: auto;
    }
}

@media screen and (max-width: 389px) {
    .pagination-col {
        flex-direction: column;
    }
}

.pagination .dt-paging-button .page-link {
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 500;
}

.dt-length {
    gap: 10px;
    display: flex;
    align-items: center;
}

.tab-pills .nav-link {
    color: #104476;
    font-weight: 500;
    position: relative;
}

    .tab-pills .nav-link.active {
        background-color: #104476 !important;
        color: #fff !important;
    }


.tab-normal .nav-link.active {
    background: #ffffff00 !important;
}

.tab-normal .nav-link {
    color: #104476;
}

.badge-primary {
    background-color: #104476;
    font-weight: 500;
}

tbody tr .btn {
    margin-right: 5px;
}

.mandatory {
    color: red;
}

.CustomError {
    display: none;
    color: red;
    font-size: 12px;
}

/* ====================================== */
.top-client-pic {
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.green-color {
    color: #09C03A;
}


input[type="password"]::-ms-reveal {
    display: none;
}

/* Matrix Start */

.tree_view {
    text-align: center;
}

    .tree_view ul {
        padding-top: 20px;
        position: relative;
        padding-left: 0 !important;
        /*        display: flex;
        justify-content: space-between;*/
    }

    .tree_view li {
        display: inline-block;
        vertical-align: top;
        text-align: center;
        list-style-type: none;
        position: relative;
        padding: 20px 5px 0 5px;
        width: 33%;
    }

        .tree_view li::before, .tree_view li::after {
            content: '';
            position: absolute;
            top: 0;
            right: 50%;
            border-top: 2px solid #4ecca3;
            width: 52%;
            height: 20px;
            /*            width: 100%;*/
        }

        .tree_view li::after {
            right: auto;
            left: 50%;
            border-left: 2px solid #4ecca3;
        }

        .tree_view li:only-child::after, .tree_view li:only-child::before {
            display: none;
        }

        .tree_view li:only-child {
            padding-top: 0;
            width: 100%;
            overflow: hidden;
        }

        .tree_view li:first-child::before, .tree_view li:last-child::after {
            border: 0 none;
        }

        .tree_view li:last-child::before {
            border-right: 2px solid #4ecca3;
            border-radius: 0 5px 0 0;
        }

    .tree_view a {
        text-decoration: none !important;
    }

    .tree_view li:first-child::after {
        border-radius: 5px 0 0 0;
    }

    .tree_view ul ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        border-left: 2px solid #4ecca3;
        width: 0;
        height: 20px;
    }

    .tree_view li div {
        position: relative;
        padding: 10px;
        /* background: #162447; */
        background: rgb(22,36,71);
        border-radius: 8px;
        display: inline-block;
        color: #e8f0f2;
        min-width: 100px;
    }

    .tree_view img {
        border-radius: 50%;
        background: #e8f0f2;
    }

    .tree_view .text-center span {
        display: block;
        color: #fff;
        /* color: #4ecca3; */
        font-weight: 500;
        margin-top: 5px;
        font-size: 12px;
    }

/* Matrix END */

.dropify-wrapper {
    border: 2px dashed gray !important;
}

    .dropify-wrapper .dropify-message p {
        margin: 5px 0 0 0;
        font-size: 17px;
    }

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    pointer-events: auto;
    cursor: not-allowed;
}

.Attachments {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(202, 202, 202);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

    .Attachments p {
        margin-bottom: 0;
        color: gray;
        font-size: 14px;
        font-weight: 500;
        line-break: anywhere;
    }

    .Attachments i {
        color: gray;
    }

.ticket-img2 {
    width: 30px;
    border-radius: 100%;
    margin-right: 15px;
}

.ticket-msg {
    font-size: 14px;
    margin-left: 55px;
}

.ticketComment {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

    .ticketComment p {
        margin-bottom: 0px !important;
    }

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

.Attachments a {
    line-break: anywhere;
}

.chat-attachments {
    display: flex;
    margin-left: 55px;
    flex-wrap: wrap;
}

    .chat-attachments .Attachments {
        width: 300px;
        margin-right: 10px;
    }

.client-info {
    background-color: #fff;
    border-left: 7px solid #104476;
    border-radius: 5px;
    padding: 5px 5px 5px 10px;
}

    .client-info p {
        margin-bottom: 0;
    }

    .client-info h6 {
        font-weight: 500;
        color: #104476;
    }

.client-info-img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    margin-right: 15px;
}

.client-info-doc {
    height: 310px;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    position: relative;
    border: 2px dashed #104476;
}

    .client-info-doc i {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 25px;
        opacity: 0;
        cursor: pointer;
        color: #104476;
    }

    .client-info-doc:hover i {
        opacity: 1;
    }

.client-info-doc-main {
    display: flex;
    gap: 10px;
}

@media (max-width: 600px) {
    .client-info-doc-main {
        flex-direction: column;
    }
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    pointer-events: auto;
    cursor: not-allowed;
}

.tab-pills .notification-count-tab {
    background-color: #104476;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    padding: 0px 4px;
    min-width: 20px;
    z-index: 1;
    margin-left: 7px;
    display: inline-block;
    text-shadow: 0 0 white;
}

.tab-pills .nav-link.active .notification-count-tab {
    background-color: #fff !important;
    color: #104476;
    text-shadow: 0 0 #104476;
}

.badge {
    font-weight: 300;
    font-size: 12px;
    text-shadow: 0 0 #fff;
    vertical-align: top;
}

.btn_warning {
    background: #ffc107;
    color: #fff;
    line-height: 1.2;
}

.btn_info {
    background: #17a2b8;
    color: #fff;
    line-height: 1.2;
}

.btn_success {
    background: #28a745;
    color: #fff;
    line-height: 1.2;
}

.btn_secondary {
    background: #6c757d;
    color: #fff;
    line-height: 1.2;
}

.btn_danger {
    background: #E94444;
    color: #fff;
    line-height: 1.2;
}

.btn_primary {
    background: #104476;
    color: #fff;
    line-height: 1.2;
}

.btn_warning:hover {
    border-color: #ffc107;
    color: #ffc107;
}

.btn_info:hover {
    border-color: #17a2b8;
    color: #17a2b8;
}

.btn_success:hover {
    border-color: #28a745;
    color: #28a745;
}

.btn_secondary:hover {
    border-color: #6c757d;
    color: #6c757d;
}

.btn_danger:hover {
    border-color: #E94444;
    color: #E94444;
}

.btn_primary:hover {
    border-color: #104476;
    color: #104476;
}

.badge-success, .active_status {
    display: inline-block;
    min-width: 80px;
    background: #ABEFC6;
    border: 0.6px solid #449E48;
    border-radius: 20px;
    padding: 3px;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.badge-warning, .used_status {
    display: inline-block;
    min-width: 80px;
    background: #EFE2AD;
    border: 0.6px solid #FFCF0E;
    border-radius: 20px;
    padding: 3px;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.badge-danger, .blocked_status {
    display: inline-block;
    min-width: 80px;
    background: #FFDFDF;
    border: 0.6px solid #FF3C3C;
    border-radius: 20px;
    padding: 3px;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

a {
    text-decoration: none;
}

.r-2-1 {
    aspect-ratio: 8 / 3;
}

.r-3-4 {
    aspect-ratio: 3 / 4;
}

.Price-before {
    position: relative;
}

    .Price-before::before {
        content: "Price";
        font-size: 16px;
        position: absolute;
        top: -10px;
        left: 0;
        color: #000;
    }

.iti {
    display: block;
    width: 100% !important;
}

#DNTCaptchaInputText {
    display: none;
}


#dntCaptchaImg {
    opacity: 0.2;
    height: 70px;
    width: 100%;
    margin-bottom: 0px !important;
}

.error {
    color: red;
    display: none;
    width: 100%;
}

.login_container {
    padding: 0 2rem;
}

.wallets-20 {
    background-image: url('../images/Frame 1.png');
    background-position: right bottom;
    background-size: 85px;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 10px solid #0c4d7f;
    -webkit-box-shadow: 0px 0px 46px -12px rgba(196,194,196,1);
    -moz-box-shadow: 0px 0px 46px -12px rgba(196,194,196,1);
    box-shadow: 0px 0px 46px -12px rgba(196,194,196,1);
}

    .wallets-20 h3 {
        margin: 0;
        font-size: 22px;
        color: #212529
    }

    .wallets-20 p {
        font-size: 16px;
        margin-bottom: 0.4rem;
        color: #0c4d7f;
        background-color: #0c4d7f17;
        padding: 0px 20px;
        border-radius: 0px 30px 30px 0px;
        margin-left: -17px;
    }


@media screen and (min-width: 1200px) and (max-width: 1455px) {
    .wallets-20 p {
        font-size: 13px;
    }

    .wallets-20 h3 {
        font-size: 18px;
    }
}

.png-icon {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
}

    .png-icon img {
        width: 25px;
    }

.png-icon-kyc img {
    width: 35px;
}

.Strategies-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    gap: 10px;
    margin-bottom: 20px;
}


.ico-1 {
    padding: 8px;
    border-radius: 35px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ico-3 {
    padding: 5px;
    border-radius: 35px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c4d7f17;
    color: #0c4d7f
}

.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 46px -12px rgba(196,194,196,1);
    -moz-box-shadow: 0px 0px 46px -12px rgba(196,194,196,1);
    box-shadow: 0px 0px 46px -12px rgba(196,194,196,1);
}

.box-shadow-2 {
    -webkit-box-shadow: 0px 0px 30px -12px rgba(196,194,196,1);
    -moz-box-shadow: 0px 0px 30px -12px rgba(196,194,196,1);
    box-shadow: 0px 0px 30px -12px rgba(196,194,196,1);
}

.dashboard-card-new {
    background-color: #0c4d7f17;
    border-top: 2px solid #0c4d7f;
}

    .dashboard-card-new i {
        font-size: 25px;
        background-color: #0c4d7f3d;
        color: #0c4d7f;
    }

.dashboard-card-pending {
    background-color: #f7cb731c;
    border-top: 2px solid #F7CB73;
}

    .dashboard-card-pending i {
        font-size: 25px;
        color: #F7CB73;
        background-color: #f7cb734f
    }

.dashboard-card-approved {
    background-color: #19875424;
    border-top: 2px solid #198754;
}

    .dashboard-card-approved i {
        font-size: 25px;
        color: #198754;
        background-color: #19875438
    }

.dashboard-card-rejected {
    background-color: #d9512c1c;
    border-top: 2px solid #D9512C;
}

    .dashboard-card-rejected i {
        font-size: 25px;
        color: #D9512C;
        background-color: #d9512c30
    }

.b-act {
    border: green solid 1px
}

.b-nact {
    border: rgb(227,87,84) solid 1px
}

.b-blk {
    border: red solid 1px
}

.b-com {
    border: #0000001f solid 1px
}

main {
    z-index: 1
}

.text-own {
    color: #0c4d7f
}

.dashboard-card-withdrawl-pending {
    border-right: 2px solid #ffc107;
}

    .dashboard-card-withdrawl-pending i {
        font-size: 22px;
        color: #ffc107;
        background-color: #f7cb734f
    }

.dashboard-card-withdrawl-completed {
    border-right: 2px solid #198754;
}

    .dashboard-card-withdrawl-completed i {
        font-size: 22px;
        color: #198754;
        background-color: #19875438
    }

.dashboard-card-withdrawl-rejected {
    border-right: 2px solid #dc3545;
}

    .dashboard-card-withdrawl-rejected i {
        font-size: 22px;
        color: #dc3545;
        background-color: #ff00001c
    }





.dashboard-card-user-active {
    border-bottom: green solid 2px
}

    .dashboard-card-user-active i {
        font-size: 18px;
        color: green;
        background-color: #00800036
    }

.dashboard-card-user-notactive {
    border-bottom: rgb(227,87,84) solid 2px
}

    .dashboard-card-user-notactive i {
        font-size: 18px;
        color: rgb(227,87,84);
        background-color: rgb(227 87 84 / 18%)
    }

.dashboard-card-user-block {
    border-bottom: red solid 2px
}

    .dashboard-card-user-block i {
        font-size: 18px;
        color: red;
        background-color: #ff00001c
    }



.dashbaord-card-com-grey {
    border-bottom: #0c4d7f solid 2px
}

    .dashbaord-card-com-grey i {
        font-size: 18px;
        color: #0c4d7f;
        background-color: #0c4d7f1c
    }

/*    testing */

.modal-backdrop {
    opacity: 0 !important;
    z-index: 0 !important;
}

.modal {
    padding-top: 50px;
    z-index: 2050;
}


.email-head-own td {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 13px;
    border: none
}




/*bilal's date: 29/01*/


.ticket-container {
    max-width: 1000px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    background-color: #dc3545;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.ticket-info {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    column-gap: 10px;
}

.ticket-info1 {
    margin-top: 10px;
    display: grid;
    row-gap: 10px;
    column-gap: 10px;
}

.ticket-info p {
    margin: 0;
    display: flex;
    align-items: center;
}

.label {
    font-weight: bold;
    margin-right: 5px;
}



.custom-bullet {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #104476;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}

    .custom-bullet::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 6px;
        background-color: #104476;
        border-radius: 50%;
        transform: translate(-55%, -50%);
    }

.dropzone {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .196) !important;
    min-height: 0 !important;
}

    .dropzone .dz-message {
        margin: 0 !important;
    }

.dz-message i {
    font-size: 40px;
    color: #104476;
    margin-bottom: 6px
}

#divGeneralModalBody img {
    width: 100%
}

#sidenavAccordion #searchInput {
    background-image: url('../images/search icon image.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    border-radius: 6px;
    margin: 0px 5px;
}

#searchResults {
    top: 45px;
    margin-left: 5px;
    min-width: 13.4rem;
}

    #searchResults .dropdown-item {
        font-size: 12px;
    }

.notificationDropdown .notification-menu .dropdown-item a {
    color: #104476;
}

/*.dropdown-item {
    color: #104476;
}*/

.iti__search-input {
    border-radius: 5px !important;
    padding: 7px;
    border: solid 1px #dee2e6 !important;
    border-width: 1px !important;
}

.iti__dropdown-content {
    padding: 3px 3px 15px 3px;
    border-radius: 5px !important;
}

.select2-search--dropdown .select2-search__field {
    padding: 7px;
    border-radius: 5px;
    border: solid 1px #dee2e6 !important;
}

    .select2-search--dropdown .select2-search__field:active {
        border-color: #104476
    }

.dropify-wrapper {
    border-radius: 7px;
}

.top-perfoming-client {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 580px) {
    .top-perfoming-client {
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    .sm-flex-row {
        flex-direction: row !important;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {

    .ticket-info {
        grid-template-columns: auto;
    }
}


.btn-grp {
    display: flex;
    align-items: center;
    gap: 5px;
}

.admin-dashboard-card {
    background-color: #ffffff;
    border: solid 1px #104476;
    color: #104476;
    border-radius: 15px;
    padding: 15px 0px 0px 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 125px;
}

    .admin-dashboard-card .card-top {
        border-radius: 150px 0px 5px 0px;
        padding: 1px 15px 1px 1px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .admin-dashboard-card .card-top .png-icon i {
            background-color: #0c4d7f3d;
            font-size: 20px
        }

        .admin-dashboard-card .card-top .png-icon p {
            font-weight: 600;
            font-size: 18px
        }

    .admin-dashboard-card .card-bottum {
        background: rgb(16,68,118);
        background: linear-gradient(90deg, rgba(16,68,118,1) 25%, rgba(9,42,73,1) 100%);
        border-radius: 150px 0px 5px 0px;
        padding: 1px 15px 1px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .admin-dashboard-card .card-bottum h6 {
            font-size: 14px;
            color: #ffffff;
        }

        .admin-dashboard-card .card-bottum p {
            padding: 0px !important;
            margin: 0;
            color: #ffffff;
            font-size: 18px;
            line-height: 45px;
            font-weight: 500;
        }

        .admin-dashboard-card .card-bottum a {
            color: #ffffff;
        }

@media (max-width: 400px) {

    .admin-dashboard-card .card-bottum p {
        font-size: 22px;
    }
}

div.dt-processing {
    top: 37px;
    left: 50%;
    width: 100%;
    height: 50px;
    margin-left: 0;
    margin-top: 0;
    background: #fffdfd00;
    transform: translate(-50%);
    border-radius: 0;
    border: none;
}

    div .dt-processing > div:last-child {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: auto;
    }



/*Start Rank Flyer Css */
.member {
    background: linear-gradient(135deg, #d6d6d6c9, #414141d9), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-member {
    background: rgb(105,105,105);
    background: linear-gradient(90deg, rgba(105,105,105,1) 0%, rgba(214,214,214,1) 17%, rgba(53,53,53,1) 52%, rgba(214,214,214,1) 83%, rgba(53,53,53,1) 100%);
}


.consultant {
    background: linear-gradient(135deg, #916f92cf, #2d0b2ee0), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-consultant {
    background: rgb(125,90,125);
    background: linear-gradient(90deg, rgba(125,90,125,1) 0%, rgba(194,160,195,1) 17%, rgba(65,31,66,1) 52%, rgba(194,160,195,1) 83%, rgba(65,31,66,1) 100%);
}


.seniour-consultant {
    background: linear-gradient(135deg, #53acffd8, #013668d1), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-seniour-consultant {
    background: rgb(27,138,241);
    background: linear-gradient(90deg, rgba(27,138,241,1) 0%, rgba(140,199,255,1) 17%, rgba(1,54,104,1) 52%, rgba(140,199,255,1) 83%, rgba(1,54,104,1) 100%);
}


.executive-consultant {
    background: linear-gradient(135deg, #b68c62db, #2a1601e6), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-executive-consultant {
    background: rgb(129,87,45);
    background: linear-gradient(90deg, rgba(129,87,45,1) 0%, rgba(212,170,127,1) 17%, rgba(75,39,1,1) 52%, rgba(212,170,127,1) 83%, rgba(75,39,1,1) 100%);
}

.manager {
    background: linear-gradient(135deg, #3ee1ffcf, #013e4ad1), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-manager {
    background: rgb(1,122,145);
    background: linear-gradient(90deg, rgba(1,122,145,1) 0%, rgba(62,225,255,1) 17%, rgba(1,62,74,1) 52%, rgba(62,225,255,1) 83%, rgba(1,62,74,1) 100%);
}

.executive-manager {
    background: linear-gradient(135deg, #39a336d9, #022a01e0), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-executive-manager {
    background: rgb(28,134,25);
    background: linear-gradient(90deg, rgba(28,134,25,1) 0%, rgba(109,215,106,1) 17%, rgba(3,74,1,1) 52%, rgba(109,215,106,1) 83%, rgba(3,74,1,1) 100%);
}

.director {
    background: linear-gradient(135deg, #be4848cf, #540101de), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-director {
    background: rgb(188,71,71);
    background: linear-gradient(90deg, rgba(188,71,71,1) 0%, rgba(255,167,166,1) 17%, rgba(127,10,10,1) 52%, rgba(255,167,166,1) 83%, rgba(127,10,10,1) 100%);
}

.executive-director {
    background: linear-gradient(135deg, #5e5c58c7, #000000d4), url(https://myqbn.blob.core.windows.net/flyerassets/bg.jpg) no-repeat center center / cover;
}

.ring-executive-director {
    background: rgb(62,55,47);
    background: linear-gradient(90deg, rgba(62,55,47,1) 0%, rgba(133,133,133,1) 17%, rgba(0,0,0,1) 52%, rgba(133,133,133,1) 83%, rgba(0,0,0,1) 100%);
}

.flyer-card {
    width: 350px;
    height: 520px;
    border-radius: 10px;
    position: relative;
    color: white;
    text-align: center;
    /*padding-top: 40px;*/
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 32%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

    .flyer-card .flag {
        width: 50px;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .flyer-card .profile-wrapper {
        position: relative;
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }

    .flyer-card .logo {
        width: 70px;
        position: absolute;
        top: 20px;
        right: 15px;
    }

    .flyer-card .profile-ring {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        padding: 8px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flyer-card .profile-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

    .flyer-card .cong-img {
        width: 250px;
        filter: drop-shadow(8px 8px 10px #000000);
    }

    .flyer-card .icons {
        gap: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 7px;
    }

    .flyer-card .flyer-badge {
        position: absolute;
        bottom: -10px;
        right: -20px;
        width: 85px;
    }

.celeb {
    z-index: 1;
    position: absolute;
    bottom: 10px;
    width: 96%;
    left: 7px;
}

.celeb_top {
    position: absolute;
    top: 1px;
    width: 100%;
    left: 0px;
}


.flyer-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Overlay that appears on hover */
.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Button styling */
.download-btn-overlay {
    z-index: 11;
}

    .download-btn-overlay:hover {
        background-color: #ffffff
    }

#btnFlyerDownload:hover {
    background-color: #ffffff;
}

/* Show overlay on hover */
.flyer-card:hover .flyer-overlay {
    opacity: 1;
}

.flyer-model-width {
    width: fit-content;
}

.flyer-model-custom {
    display: flex;
    justify-content: center;
}
/*End Rank Flyer Css */



#searchInput::placeholder {
    color: #ffffff;
}

.card-header {
    background-color: #104476;
    color: #ffffff !important;
}


a {
    color: #104476
}

.accordion-button::after {
    content: "\f078"; /* Unicode for fa-chevron-down */
    font-family: "Font Awesome 6 Free"; /* Adjust if using another version */
    font-weight: 900; /* Required for solid icons */
    font-size: 1rem;
    color: #ffffff;
    margin-left: auto;
    transition: transform 0.3s ease;
    background-image: none;
}

.accordion-button.collapsed::after {
    transform: rotate(0deg); /* Rotates to point right when collapsed */
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.card-header .btn-primary {
    background-color: #ffffff;
    color: #104476;
}

    .card-header .btn-primary:hover {
        background-color: #104476;
        border-color: #ffffff;
        color: #ffffff
    }

.note-toolbar {
    background: hsla(0, 0%, 50%, .114) !important;
}

.member-matrix-card {
    background-color: #104476;
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
    margin-bottom: 10px
}

.ticket-wrapper {
    overflow: auto;
    padding: 20px;
    width: 100%
}

.ticket {
    width: 800px;
    height: 260px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0;
    margin: 0 auto;
}

    .ticket .left,
    .ticket .right {
        box-sizing: border-box;
    }

    .ticket .left {
        width: 33.333%;
        background-color: #ffffff;
        background-image: url(https://myqbn.blob.core.windows.net/otherassets/EventPass_BG.png);
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 2;
        padding: 20px;
    }

        .ticket .left .event-name {
            font-size: 20px;
            font-weight: bold;
            color: #104476;
            text-transform: uppercase;
        }


    .ticket .middle {
        width: 33.333%;
        position: relative;
    }


        .ticket .middle img {
            width: 100%;
            height: 100%;
        }

    .ticket .right {
        width: 33.333%;
        background: rgb(16, 68, 118);
        background: linear-gradient(90deg, rgba(16, 68, 118, 1) 25%, rgba(9, 42, 73, 1) 100%);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 2;
        padding: 20px;
    }

.right h3 {
    margin-bottom: 15px;
    font-size: 20px;
}


.ticket .barcode img {
    height: 115px;
}


.ticket .icons h5 {
    font-size: 12px;
    font-weight: 500;
    margin: 8px 0px;
    display: flex;
}

.ticket .ticket-icon img {
    width: 40px;
    margin-right: 10px;
}

.ticket .ticket-date {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .ticket .ticket-date .date h6 {
        margin: 0px;
        font-size: 12px;
        font-weight: 500;
    }

        .ticket .ticket-date .date h6 span {
            font-size: 14px;
        }


.right h4 {
    background-color: #ffc107;
    width: fit-content;
    text-align: center;
    padding: 2px 10px;
    border-radius: 20px 0px 0px 20px;
    margin: -10px -20px 0px auto;
    font-size: 14px;
}

.icons img {
    width: 15px;
    margin-right: 5px;
}

.info-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e8f4fb;
    border: 1px solid #b5d6e7;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#txtSummary p img {
    width: 100% !important;
}