/* reset_css */
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
    margin: 0;
    padding: 0;
    border: 0;
}

a,
button,
input,
input[type="buttton"],
input[type="submit"],
select,
.btn,
textarea {
    -webkit-transition: var(--transtn);
    -o-transition: var(--transtn);
    transition: var(--transtn);
    text-decoration: none;
    font-style: normal;
}

button {
    border: none;
}

    a:hover,
    a:focus,
    button:focus,
    input:focus,
    input[type="buttton"]:focus,
    input[type="submit"]:focus,
    select:focus,
    .btn:focus,
    textarea:focus,
    .bootstrap-select .dropdown-toggle:focus {
        outline: none !important;
        -webkit-box-shadow: none;
        box-shadow: none !important;
        text-decoration: none;
    }

img {
    max-width: 100%;
    height: auto;
}

html,
body {
    scroll-behavior: smooth;
}

a,
label,
span {
    display: inline-block;
    vertical-align: middle;
    vertical-align: 0;
    color: inherit;
}

figure {
    -webkit-transition: var(--transtn);
    -o-transition: var(--transtn);
    transition: var(--transtn);
    margin: 0;
    font-size: 0;
    line-height: 100%;
}

    figure img {
        max-width: 100%;
    }

ul,
ol {
    list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: inherit;
}

h1,
h2 {
    font-size: var(--font-twenty);
    line-height: 1;
}

h3,
h4,
h5,
h6 {
    font-size: var(--font-fourteen);
    line-height: 1;
}

.dropdown-menu {
    font-size: var(--font-fourteen);
}

button {
    padding: 0;
    background-color: transparent;
    border: none;
    color: inherit;
}

select {
    background-color: transparent;
    color: #fff;
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-progress-appearance: none;
    outline: none;
}

    select option {
        background-color: #000;
        border: none;
        outline: none;
        text-transform: uppercase;
        font-size: 12px;
    }

a,
button {
    transition: var(--transtn);
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

:root {
    --primary_font: "Outfit", sans-serif;
    --secondary_font: "SF_pro_display_med";
    --transtn: 300ms all ease-in-out;
    --font-twenty: 20px;
    --font-fourteen: 14px;
    --body_font: 12px;
    --font-ten: 10px;
}

input:-webkit-autofill {
    transition: 5000000s all ease-in-out;
}

body {
    color: #fff;
    background-color: #111015;
    background-image: url(../images/body_bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-attachment: fixed;
    font-family: var(--primary_font);
    font-weight: 400;
    font-size: var(--body_font);
    line-height: 1.2;
    min-height: 100vh;
    transition: var(--transtn);
}

.body_cnct_wrp {
    display: flex;
    flex-wrap: wrap;
}

.btn {
    font-size: var(--font-fourteen);
}

/* header */
header {
    position: fixed;
    top: 0;
    flex: 0 0 auto;
    width: 100%;
    padding: 5px 0;
    background-color: #111015;
    border-bottom: 3px solid #3f70f8;
    z-index: 1;
    transition: var(--transtn);
}

.hdr_innr {
    padding: 0 15px 0 290px;
    display: flex;
    align-items: center;
}

    .hdr_innr nav ul {
        display: flex;
        align-items: center;
    }

        .hdr_innr nav ul li:not(:last-child) {
            padding-right: 20px;
        }

        .hdr_innr nav ul li a {
            font-size: var(--font-fourteen);
            font-weight: 500;
            color: #ccc;
            position: relative;
        }

            .hdr_innr nav ul li.active a,
            .hdr_innr nav ul li a:hover {
                color: #06d7a0;
            }

            .hdr_innr nav ul li a::after {
                position: absolute;
                content: "";
                bottom: -10px;
                left: 0;
                right: 0;
                height: 1px;
                background-color: #06d7a0;
                transform: scale(0);
                transition: var(--transtn);
            }

            .hdr_innr nav ul li.active a::after,
            .hdr_innr nav ul li a:hover::after {
                transform: scale(1);
            }

.hdr_rgt {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.sync_btn_wrp {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.sync_btn {
    margin-left: 9px;
    position: relative;
}

    .sync_btn input {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        z-index: 1;
        cursor: pointer;
    }

    .sync_btn span {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #111015;
        border-radius: 33px;
    }

        .sync_btn span::before {
            position: absolute;
            content: "";
            top: 3.5px;
            left: 3px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            box-shadow: 0px 4px 13.2px 0px rgba(0, 0, 0, 0.08);
            background-color: #ababab;
            transition: var(--transtn);
        }

    .sync_btn input:checked + .syc_btn_brdr span::before {
        transform: translateX(24px);
    }

    .sync_btn .syc_btn_brdr {
        width: 46px;
        height: 22px;
        padding: 1px;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.33) 100% );
        border-radius: 33px;
    }

.hdr_profle_wrp {
    position: relative;
    border-radius: 24px;
    /* background: url(../images/prfl_bg.png) no-repeat center / 100% 100%; */
}

    .hdr_profle_wrp a {
        display: flex;
        align-items: center;
        padding: 0px 20px 0px 0;
        /*  border-radius: 24px;*/
    }

.pr_img_wp {
    position: relative;
    flex: 0 0 auto;
    width: 51px;
    height: 51px;
    padding: 9px;
    margin-right: 9px;
}

    /* .pr_img_wp::before {
  position: absolute;
  content: "";
  background: #262529;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  border-radius: 18px;
  z-index: 1;
} */

    /* .pr_img_wp::after {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.21) 0%, rgba(255, 255, 255, 0.14) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 18px;
} */

    .pr_img_wp img {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }

    .pr_img_wp span {
        border-radius: 100px;
        width: 33px;
        height: 33px;
        background-color: #333333;
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 33px;
        text-align: center;
        position: relative;
        z-index: 1;
        flex: 0 0 auto;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

.pr_cnct_wrp h5 {
    margin-bottom: 4px;
    font-weight: 500;
}

    .pr_cnct_wrp h5 img {
        margin-left: 9px;
    }

.pr_cnct_wrp h6 {
    display: flex;
    align-items: center;
    color: #06d7a0;
    font-family: var(--secondary_font);
    font-size: var(--body_font);
}

.log_out {
    margin-left: 20px;
}

    .log_out button svg path {
        transition: var(--transtn);
    }

    .log_out button:hover svg path {
        fill: #06d7a0;
    }

/* aside */
aside {
    flex: 0 0 auto;
    width: 255px;
    border-right: 1px solid #292929;
    background-color: #111015;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: var(--transtn);
}

.asd_cnct_wrpr {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.asd_hdr_wrp {
    padding: 11px 6px 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #3f70f8;
}

.tgl_btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #3f70f8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.drk_tgle_btn_wrp {
    margin-top: auto;
    border-top: 1px solid #292929;
    padding: 25px 15px 25px 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: capitalize;
}

    .drk_tgle_btn_wrp button {
        width: 64px;
        height: 26px;
        margin-right: 13px;
        position: relative;
    }

        .drk_tgle_btn_wrp button::before {
            position: absolute;
            content: "";
            top: -2px;
            bottom: -2px;
            left: -2px;
            right: -2px;
            background: linear-gradient( 90deg, rgba(6, 215, 160, 0.12) 0%, rgba(6, 215, 160, 0.33) 100% );
            border-radius: 33px;
        }

        .drk_tgle_btn_wrp button::after {
            position: absolute;
            content: "";
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #111015;
            border-radius: 33px;
        }

        .drk_tgle_btn_wrp button .innr_icns {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 1;
            border-radius: 33px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 5px;
        }

            .drk_tgle_btn_wrp button .innr_icns i {
                position: relative;
                color: #5f5f5f;
                font-size: var(--font-fourteen);
            }

                .drk_tgle_btn_wrp button .innr_icns i.fa-moon {
                    color: #fff;
                }

                .drk_tgle_btn_wrp button .innr_icns i.fa-sun {
                    margin-right: -2px;
                }

            .drk_tgle_btn_wrp button .innr_icns::before {
                position: absolute;
                content: "";
                box-shadow: 0px 4px 13.2px 0px rgba(0, 0, 0, 0.08);
                background-color: #2b2c30;
                width: 27px;
                height: 27px;
                top: 0;
                left: -2px;
                border-radius: 50%;
                transition: var(--transtn);
            }

    .drk_tgle_btn_wrp p span.fr_lgt_txt {
        display: none;
    }

.asd_cnct_lst_wrp {
    height: calc(100vh - 180px);
    overflow: auto;
}

    .asd_cnct_lst_wrp::-webkit-scrollbar {
        width: 5px;
    }

    .asd_cnct_lst_wrp::-webkit-scrollbar-track {
        background: rgb(204 204 204 / 20%);
    }

    .asd_cnct_lst_wrp::-webkit-scrollbar-thumb {
        background: rgb(171 171 171 / 40%);
    }

.asd_cnct_lst_itm h6 {
    display: flex;
    align-items: center;
    font-size: var(--font-fourteen);
    font-weight: 500;
    margin-bottom: 7px;
    position: relative;
    z-index: 2;
}

.asd_cnct_lst_itm {
    padding: 7px 20px 7px 20px;
    overflow: hidden;
    position: relative;
}

    .asd_cnct_lst_itm + .asd_cnct_lst_itm {
        border-top: 1px solid #292929;
    }

    .asd_cnct_lst_itm h6 svg {
        margin-right: 10px;
        width: 20px;
    }

    .asd_cnct_lst_itm ul li {
        display: flex;
        align-items: center;
        font-size: var(--font-fourteen);
        color: #ababab;
        padding-left: 5px;
    }

.inpt_chk_wrp {
    position: relative;
    height: 15px;
}

    .inpt_chk_wrp span {
        border: 1px solid rgba(255, 255, 255, 0.33);
        width: 15px;
        height: 15px;
        border-radius: 5px;
    }

    .inpt_chk_wrp input {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        cursor: pointer;
    }

        .inpt_chk_wrp input:checked ~ span {
            background: #345d9d url(../images/wht_tck.svg) center no-repeat;
            border-color: #345d9d;
        }

.asd_cnct_lst_itm ul li:has(.inpt_chk_wrp input:checked) label {
    color: #fff;
}

.asd_cnct_lst_itm ul li label {
    padding-left: 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
}

.asd_cnct_lst_itm ul li + li {
    margin-top: 5px;
}

.asd_cnct_lst_itm ul li p {
    position: relative;
    padding-left: 30px;
}

    .asd_cnct_lst_itm ul li p::before {
        position: absolute;
        content: "";
        left: 5px;
        top: 3px;
        width: 6px;
        height: 6px;
        background-color: #ababab;
        border-radius: 50%;
    }

.more_btn_ancr {
    margin-top: 7px;
    font-size: var(--font-fourteen);
    padding-left: 30px;
    background: url(../images/more_pls_icn.svg) no-repeat left top;
    margin-left: 7px;
    color: #ababab;
}

/* main */
main {
    flex: 0 0 auto;
    width: calc(100% - 255px);
    padding: 72px 15px 75px;
    margin-left: auto;
    transition: var(--transtn);
}

.trnsctn_wrp .mn_hdr {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .trnsctn_wrp .mn_hdr h2 {
        font-weight: 500;
        margin-right: 10px;
        white-space: nowrap;
    }

.fltr_lst ul {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
    max-width: 400px;
}

    .fltr_lst ul li {
        padding: 0 5px 10px;
    }

.trnsctn_wrp .mn_hdr .mn_hdr_lft {
    margin-right: auto;
    display: flex;
    align-items: baseline;
}

/*.trnsctn_wrp .mn_hdr .mn_hdr_lft {*/
/*    margin-right: auto;*/
/*display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}*/

.srch_bar input {
    background-color: #111015;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    background-image: url(../images/srch_icn.png);
    background-position: left 10px center;
    background-repeat: no-repeat;
    background-size: 15px;
    border-radius: 24px;
    transition: var(--transtn);
    color: rgba(255, 255, 255, 0.7);
    outline: none;
    cursor: pointer;
}

    .srch_bar input::placeholder {
        font-size: 0;
        color: #808080;
    }

    .srch_bar input:not(:placeholder-shown),
    .srch_bar input:focus {
        width: 240px;
        padding: 5px 10px 5px 33px;
        cursor: text;
    }

        .srch_bar input:focus::placeholder {
            font-size: var(--font-fourteen);
        }

.mn_hdr_rgt .srch_bar {
    padding-right: 15px;
}

.mn_hdr_rgt {
    display: flex;
    align-items: center;
}

    .mn_hdr_rgt select {
        margin-bottom: 8px;
        padding-right: 15px;
        color: #f4f4f4;
        font-size: var(--body_font);
        font-weight: 500;
        background-image: url(../images/dwn_arw.svg);
        background-repeat: no-repeat;
        background-position: right center;
    }

.hdr_prc_wr h6 {
    font-weight: 500;
    color: #01a713;
    padding-right: 16px;
    background: url(../images/upwards.png) right center no-repeat;
    background-size: 15px;
    width: fit-content;
    margin-left: auto;
}

    .hdr_prc_wr h6.dwnwrds {
        background-image: url(../images/downwards.png);
        color: #ac2123;
    }

.mn_hdr_2_lft select {
    font-weight: 500;
    background-image: url(../images/dwn_arw_wgt.svg);
    background-repeat: no-repeat;
    background-position: right top 6px;
    padding-right: 20px;
}

.mn_hdr_2_lft .fltr_wrp {
    display: flex;
    padding-left: 30px;
    align-items: center;
}

.mn_hdr_2 {
    display: flex;
    align-items: center;
}

.mn_hdr_2_lft .fltr_wrp button + button {
    margin-left: 10px;
}

.mn_hdr_2_lft {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.mn_hdr_2_rgt {
    display: flex;
    align-items: center;
    font-family: var(--font-fourteen);
}

    .mn_hdr_2_rgt .trns_totl {
        padding: 8px 10px;
        color: #ccc;
        background-color: #252525;
        border-radius: 23px;
        font-size: var(--font-fourteen);
    }

.itm_pg_totl {
    color: #626262;
    margin-left: 20px;
    font-size: var(--font-fourteen);
}

    .itm_pg_totl span {
        color: #06d7a0;
    }

.pagination_wrp {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

    .pagination_wrp a {
        width: 32px;
        height: 32px;
        border: 1px solid #2e2e2e;
        background-color: #141317;
        border-radius: 9px;
        transition: var(--transtn);
        font-weight: 500;
        color: #989898;
        font-size: var(--font-fourteen);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .pagination_wrp a.current,
        .pagination_wrp a:hover {
            background-color: #252525;
            border-color: #252525;
            color: #fff;
        }

        .pagination_wrp a + a {
            margin-left: 4px;
        }

        .pagination_wrp a.pgntn_dots {
            background-color: #141317;
            color: #333;
            pointer-events: none;
        }

.trns_tble_wrp {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    background-color: rgb(18 17 24 / 53%);
    margin-top: 15px;
}

.trns_tble_hdr {
    border-bottom: 1px solid #454448;
    padding: 15px 15px;
    display: flex;
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #c6c6c6;
}

    .trns_tble_hdr .inpt_chk_wrp {
        width: 18px;
        margin: -2px 0 0;
    }

        .trns_tble_hdr .inpt_chk_wrp span {
            width: 18px;
            height: 18px;
            background-size: 15px;
        }

.tbl_itm {
    flex: 0 0 auto;
    padding: 0 7.5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.trns_tble_hdr .tbl_itm button > img {
    margin-left: 3px;
}

.tbl_itm:first-child {
    width: 4%;
    padding-left: 0;
}

.tbl_itm:nth-of-type(2) {
    width: 10%;
    flex-direction: column;
    align-items: flex-start;
}

.tbl_itm:nth-of-type(3) {
    width: 14%;
}

.tbl_itm:nth-of-type(4) {
    width: 9%;
}

.tbl_itm:nth-of-type(5) {
    width: 8%;
}

.tbl_itm:nth-of-type(6) {
    width: 8.5%;
}

.tbl_itm:nth-of-type(7) {
    width: 12%;
}

.tbl_itm:nth-of-type(8) {
    width: 11%;
}

.tbl_itm:nth-of-type(9) {
    width: 10%;
    justify-content: center;
}

.tbl_itm:nth-of-type(10) {
    width: 10%;
    justify-content: center;
}

.tbl_itm:last-child {
    width: 4%;
    padding-right: 0;
}

.trn_tbl_acco {
    padding: 14px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #a3a3a3;
    transition: var(--transtn);
}

    .trn_tbl_acco[aria-expanded="true"],
    .trn_tbl_acco:hover {
        background-color: rgb(163 163 163 / 10%);
    }

.trns_tble_body .trns_itm_wrp {
    position: relative;
}

    .trns_tble_body .trns_itm_wrp:not(:last-child) {
        border-bottom: 1px solid rgb(69 68 72 / 48%);
    }

.trn_tbl_acco .time {
    color: #808080;
    margin-top: 5px;
}

.type_crp {
    padding: 5px 7px;
    border-radius: 15px;
    font-size: var(--font-ten);
    line-height: 11px;
    text-transform: capitalize;
    color: #06d7a0;
    background-color: rgba(0, 255, 72, 0.1);
    text-transform: uppercase;
}

    .type_crp.sell,
    .type_crp.send {
        color: #ff6f6f;
        background-color: rgba(221, 15, 0, 0.15);
    }

    .type_crp.income {
        color: #c38d00;
        background-color: rgb(255 230 0 / 10%);
    }

.crnc_wrp {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

    .crnc_wrp > img {
        margin-right: 10px;
        width: 22px;
    }

.qntty_wrp p {
    font-weight: 500;
    color: #f4f4f4;
    margin-bottom: 4px;
}

.qntty_wrp span {
    color: #808080;
}

.trn_tbl_acco .blnk {
    font-size: var(--body_font);
    font-weight: 500;
}

.gn_ls {
    font-weight: 500;
}

    .gn_ls.dwnrds {
        color: #ac2123;
        padding-right: 27px;
        background: url(../images/dwnrd_arw_2.png) right center no-repeat;
        background-size: 23px;
    }

    .gn_ls.upwrds {
        color: #01a713;
        padding-right: 27px;
        background: url(../images/upwrd_arw_2.png) right center no-repeat;
        background-size: 23px;
    }

.cht_dts_wp {
    display: flex;
    align-items: center;
    position: absolute;
    top: 25px;
    right: 10px;
}

    .cht_dts_wp a + a {
        margin-left: 6px;
    }

.incm_tl {
    color: #fff;
}

.trn_acco_bdy {
    background-color: rgb(31 30 35 / 80%);
    padding: 20px 0 0;
    transition: var(--transtn);
}

.nav_tabs {
    display: flex;
    align-items: center;
    padding: 0 16px 30px;
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #ccc;
}

    .nav_tabs li + li {
        margin-left: 35px;
    }

    .nav_tabs li button {
        position: relative;
    }

        .nav_tabs li button::after {
            position: absolute;
            content: "";
            bottom: -14px;
            left: -3px;
            right: -3px;
            height: 2px;
            border-radius: 18px;
            background-color: #3f70f8;
            transform: scale(0);
            transition: var(--transtn);
        }

        .nav_tabs li button.active,
        .nav_tabs li button:hover {
            color: #3f70f8;
        }

            .nav_tabs li button.active::after,
            .nav_tabs li button:hover::after {
                transform: scale(1);
            }

.trns_tb_tble_hdr {
    padding: 16px 40px 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgb(69 68 72 / 50%);
    border-bottom: 1px solid rgb(69 68 72 / 50%);
    font-weight: 500;
    color: #c6c6c6;
}

.trns_tb_tble_itm {
    padding: 0 5px;
    flex: 0 0 auto;
}

    .trns_tb_tble_itm:first-of-type {
        width: 13%;
    }

    .trns_tb_tble_itm:nth-of-type(2) {
        width: 12%;
    }

    .trns_tb_tble_itm:nth-of-type(3) {
        width: 15%;
    }

    .trns_tb_tble_itm:nth-of-type(4) {
        width: 12%;
    }

    .trns_tb_tble_itm:nth-of-type(5) {
        width: 12%;
    }

    .trns_tb_tble_itm:nth-of-type(6) {
        width: 12%;
    }

    .trns_tb_tble_itm:nth-of-type(7) {
        width: 12%;
    }

    .trns_tb_tble_itm:nth-of-type(8) {
        width: 12%;
        text-align: right;
    }

    .trns_tb_tble_itm:nth-of-type(9) {
        width: 8%;
        text-align: right;
    }

.trns_tb_tble_body {
    font-weight: 500;
    color: #a3a3a3;
    padding-bottom: 10px;
}

.trns_tb_tble_body_rw {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 40px 20px 20px;
}

.trns_tb_tble_itm.loss {
    color: #ac2123;
}

.trns_tb_tble_itm.profit {
    color: #06d7a0;
}

.trns_tb_tble_total {
    padding: 17px 40px;
    border-top: 1px dashed rgb(199 199 199 / 50%);
}

.trns_tb_tble_total_innr {
    max-width: 700px;
    margin-left: auto;
    font-size: var(--font-fourteen);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.trns_tb_tble_total_itm {
    flex: 0 0 auto;
    padding: 0 10px;
}

    .trns_tb_tble_total_itm:nth-of-type(1) {
        width: 33%;
    }

    .trns_tb_tble_total_itm:nth-of-type(2) {
        width: 37%;
    }

    .trns_tb_tble_total_itm:nth-of-type(3) {
        width: 15%;
    }

    .trns_tb_tble_total_itm:last-of-type {
        width: 15%;
        text-align: right;
        font-weight: 500;
    }

    .trns_tb_tble_total_itm:nth-of-type(4) .loss {
        color: #ac2123;
    }

    .trns_tb_tble_total_itm:nth-of-type(4) .profit {
        color: #06d7a0;
    }

.brkup_tbl_hdr {
    padding: 16px 40px 16px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgb(69 68 72 / 50%);
    border-bottom: 1px solid rgb(69 68 72 / 50%);
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #c6c6c6;
}

.brk_itm {
    padding: 0 5px;
    flex: 0 0 auto;
}

    .brk_itm:first-of-type {
        width: 12%;
    }

    .brk_itm:nth-of-type(2) {
        width: 14%;
    }

    .brk_itm:nth-of-type(3) {
        width: 12%;
    }

    .brk_itm:nth-of-type(4) {
        width: 15%;
    }

    .brk_itm:nth-of-type(5) {
        width: 12%;
    }

    .brk_itm:nth-of-type(6) {
        width: 12%;
    }

    .brk_itm:nth-of-type(7) {
        width: 11%;
    }

    .brk_itm:last-of-type {
        width: 12%;
        text-align: right;
    }

.brkup_tbl_rw {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 40px 20px 27px;
    font-weight: 500;
    font-size: var(--font-fourteen);
    color: #a3a3a3;
}

.trns_tble .income {
    color: #c38d00;
}

.trns_tble .buy {
    color: #06d7a0;
}

.trns_tble .loss {
    color: #ac2123;
}

.trns_tble .profit {
    color: #06d7a0;
}

.brk_itm .crnc_wrp > img {
    width: 22px;
    margin-right: 8px;
}

.brkup_tbl_body {
    padding-bottom: 10px;
}

.tbpn_commnts_wrp {
    padding: 0 35px 20px 20px;
}

.form_wrp textarea {
    width: 100%;
    resize: none;
    padding: 23px;
    font-size: var(--font-fourteen);
    color: #838383;
    background-color: #141117;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 17%);
    height: 175px;
    transition: var(--transtn);
}

    .form_wrp textarea::placeholder {
        color: #838383;
    }

    .form_wrp textarea:focus {
        box-shadow: 0 0 10px 10px rgb(63 112 248 / 15%) !important;
        border-color: #3f70f8;
    }

    .form_wrp textarea:not(:placeholder-shown) {
        border-color: #3f70f8;
    }

.form_wrp .btn_wrp {
    margin-top: 15px;
    text-align: right;
}

.sbmit_btn {
    padding: 10px 24px;
    border-radius: 6px;
    background-color: #3f70f8;
    font-size: var(--font-fourteen);
    font-weight: 500;
    border: 1px solid #3f70f8;
    color: #fff;
}

    .sbmit_btn:hover {
        background-color: #fff;
        color: #3f70f8;
    }

.cmnts_nts_wrp h6 {
    margin-bottom: 15px;
    color: #fff;
    font-size: var(--font-fourteen);
}

.cmnts_nts_wrp {
    color: #838383;
    line-height: 22px;
    padding-left: 40px;
}

    .cmnts_nts_wrp .pstd_by {
        color: #fff;
        font-size: var(--font-fourteen);
        margin-top: 20px;
        font-weight: 500;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

        .cmnts_nts_wrp .pstd_by span {
            margin-left: 10px;
            font-size: var(--font-ten);
            color: #808080;
            font-weight: 300;
            /* opacity: 0.8; */
            text-transform: none;
        }

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not( .input-group-btn ) {
    width: auto;
}

.bootstrap-select > button {
    background-color: transparent !important;
    padding: 0;
    border: none;
    color: #fff !important;
    text-transform: capitalize;
}

.mn_hdr_2_lft .bootstrap-select > button {
    font-weight: 400;
    background-image: url(../images/dwn_arw_wgt.svg);
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px !important;
}

.dropup .dropdown-toggle::after,
.bootstrap-select > .dropdown-toggle:after {
    display: none;
}

.bootstrap-select > button:hover {
    color: #fff;
    background-color: transparent;
    border-color: var(--bs-btn-hover-border-color);
}

.mn_hdr_rgt .bootstrap-select > button {
    margin-bottom: 5px;
    padding-right: 30px !important;
    color: #f4f4f4;
    font-size: var(--font-fourteen);
    font-weight: 500;
    background-image: url(../images/dwn_arw.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
}

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

div.dropdown-menu {
    background-color: #141317;
    border: 1px solid rgb(255 255 255 / 17%);
    width: 180px;
    margin-top: 10px !important;
}

.dropdown-menu {
    background-color: transparent;
}

.bootstrap-select ul.dropdown-menu > li {
    padding: 0px 0;
}

.bootstrap-select ul.dropdown-menu a {
    font-size: var(--font-fourteen);
    text-transform: capitalize;
    color: #989898;
    background-color: #141317;
    border-bottom: 1px solid #141317;
    font-weight: 400;
    line-height: 14px;
    padding: 5px 10px;
}

.bootstrap-select ul.dropdown-menu li a:hover,
.bootstrap-select ul.dropdown-menu .selected.active a {
    background-color: #252525;
    color: #fff;
    border-bottom: 1px solid #252525;
}

.mn_hdr_2_lft .bootstrap-select ul.dropdown-menu li:first-child {
    display: none;
}

.clndr_wrp {
    margin-right: 15px;
    position: relative;
}

.clndr_rng_opnr {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.daterangepicker {
    background-color: #141117;
    border: 1px solid rgb(255 255 255 / 17%);
    color: #a3a3a3;
}

    .daterangepicker .calendar-table {
        background-color: #141117;
        border: 1px solid rgb(255 255 255 / 17%);
    }

    .daterangepicker .drp-buttons {
        border-top: 1px solid rgb(255 255 255 / 17%);
    }

    .daterangepicker td.available {
        color: #fff;
    }

        .daterangepicker td.available:hover,
        .daterangepicker th.available:hover,
        .daterangepicker td.active,
        .daterangepicker td.active:hover,
        .daterangepicker td.off,
        .daterangepicker td.off.in-range,
        .daterangepicker td.off.start-date,
        .daterangepicker td.off.end-date {
            background-color: transparent;
            /* color: #3F70F8; */
            color: #a3a3a3;
        }

    .daterangepicker td.in-range {
        background-color: rgb(63 112 248 / 40%) !important;
    }

    .daterangepicker td.available:hover,
    .daterangepicker td.end-date,
    .daterangepicker td.start-date {
        background-color: #3f70f8 !important;
        color: #fff;
    }

    .daterangepicker .calendar-table .next span,
    .daterangepicker .calendar-table .prev span {
        border-color: #fff;
    }

    .daterangepicker select.monthselect {
        appearance: none;
        -webkit-appearance: none;
    }

    .daterangepicker select {
        font-weight: 500;
        background-image: url(../images/dwn_arw_wgt.svg);
        background-repeat: no-repeat;
        background-position: right top 9px;
        padding-right: 20px;
        text-align: center;
    }

    .daterangepicker .calendar-table th,
    .daterangepicker .calendar-table td {
        min-width: 35px;
        width: 35px;
        height: 30px;
    }

    .daterangepicker .cancelBtn {
        color: #fff;
    }

    .daterangepicker .drp-buttons .applyBtn {
        border: 1px solid transparent;
        background-color: #3f70f8;
        color: #fff;
        font-weight: 500;
        padding: 6px 15px;
        font-size: var(--font-fourteen);
    }

        .daterangepicker .drp-buttons .applyBtn:hover {
            background-color: #fff;
            color: #3f70f8;
        }

    .daterangepicker .drp-selected {
        color: #06d7a0;
        font-size: var(--font-fourteen);
    }

    .daterangepicker .calendar-table {
        border: none;
    }

    .daterangepicker select option {
        color: #fff;
        /* text-align: left; */
    }

    .daterangepicker:after {
        border-bottom: 6px solid #111015;
    }

    .daterangepicker:before {
        border-bottom-color: rgba(255, 255, 255);
    }

.cht_dts_wp .dropdown-menu {
    background-color: #141117;
    padding: 0;
    min-width: 190px;
}

.cht_dts_wp .dropdown-item {
    color: #fff;
    padding: 12px 16px;
    text-transform: capitalize;
}

    .cht_dts_wp .dropdown-item img {
        margin-right: 10px;
        width: 18px;
    }

    .cht_dts_wp .dropdown-item:hover {
        background-color: rgb(163 163 163 / 10%);
    }

.daterangepicker {
    font-family: var(--primary_font);
}

    .daterangepicker .drp-buttons {
        position: relative;
        align-items: center;
    }

/*.daterangepicker .drp-buttons::before {
  content: "Selected Dates";
  color: #fff;
  font-size: 16px;
  display: inline-block;
  margin-right: auto;
}*/

/* aside_collapse */
.aside_closed aside {
    width: 100px;
}

.aside_closed .asd_cnct_lst_itm h6 {
    font-size: 0;
    margin-bottom: 0;
    justify-content: center;
}

    .aside_closed .asd_cnct_lst_itm h6 svg {
        margin-right: 0;
        width: 30px;
    }

.aside_closed main {
    width: calc(100% - 100px);
}

.aside_closed .asd_cnct_lst_itm {
    padding: 10px 32px;
}

    .aside_closed .asd_cnct_lst_itm .more_btn_ancr {
        display: none;
    }

    .aside_closed .asd_cnct_lst_itm ul {
        display: none;
    }

.aside_closed .drk_tgle_btn_wrp {
    padding: 35px 15px 32px 15px;
}

    .aside_closed .drk_tgle_btn_wrp button {
        margin-right: 0;
    }

    .aside_closed .drk_tgle_btn_wrp p {
        display: none;
    }

.aside_closed .asd_hdr_wrp {
    padding: 4px 10px 5px;
}

.aside_closed .asd_logo svg {
    width: 30px;
}

.aside_closed .tgl_btn {
    width: 20px;
    height: 20px;
}

/* integration_modal */
.add_intrgrn_modal.show ~ .modal-backdrop.show {
    opacity: 0.7;
    background-color: #000;
}

.contact_modal.show ~ .modal-backdrop.show {
    opacity: 0.7;
    background-color: #1c1c1c;
}

.add_intrgrn_modal .modal-dialog {
    height: 100%;
    margin: 0 auto;
    max-width: 805px;
    display: flex;
    align-items: center;
}

.add_intrgrn_modal .modal-content {
    background-color: #070707;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 12px;
    padding: 35px 35px 30px;
    font-weight: 400;
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
}

.mdl_ttle {
    margin-bottom: 20px;
    font-size: var(--font-fourteen);
    font-weight: 500;
    text-transform: capitalize;
}

.int_mdl_srch input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 20%);
    background-color: transparent;
    padding: 15px 40px;
    font-size: var(--font-fourteen);
    color: #fff;
    background-image: url(../images/srch_icn.png);
    background-position: left 17px top 17px;
    background-repeat: no-repeat;
    background-size: 15px;
    transition: var(--transtn);
}

    .int_mdl_srch input::placeholder {
        color: #808080;
        font-size: var(--font-fourteen);
    }

    .int_mdl_srch input:focus {
        box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
        border-color: #3f70f8;
    }

    .int_mdl_srch input:not(:placeholder-shown) {
        border-color: #3f70f8;
    }

.srch_rslt_wrp {
    margin-top: 30px;
    max-height: 350px;
    overflow: auto;
    padding: 0 7px;
}

    .srch_rslt_wrp h6 {
        margin-bottom: 15px;
    }

    .srch_rslt_wrp ul {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -7px;
    }

        .srch_rslt_wrp ul li {
            flex: 0 0 auto;
            width: 33.333%;
            padding: 5px 7px;
        }

.int_ipt_wrp {
    position: relative;
    border: 1px solid #282828;
    border-radius: 5px;
    padding: 12px;
    height: 100%;
    transition: var(--transtn);
}

    .int_ipt_wrp input[type="checkbox"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        cursor: pointer;
        opacity: 0;
    }

    .int_ipt_wrp:has(input[type="checkbox"]:checked) {
        box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
        border-color: #3f70f8;
    }

.chk_ipn_bx {
    display: flex;
    align-items: center;
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #fff;
}

    .chk_ipn_bx img {
        width: 26px;
        margin-right: 8px;
    }

/* contact_modal */
.contact_modal .modal-dialog {
    height: 100%;
    margin: 0 auto;
    max-width: 785px;
    display: flex;
    align-items: center;
}

.contact_modal .modal-content {
    background-color: #070707;
    border-radius: 12px;
    padding: 35px 35px 30px;
    font-weight: 400;
    border: 1px solid rgba(8, 117, 255, 0.44);
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
}

.frm_wrp form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.inpt_wrp {
    flex: 0 0 auto;
    width: 100%;
    padding: 7px;
}

    .inpt_wrp textarea,
    .inpt_wrp input {
        width: 100%;
        height: 50px;
        padding: 10px 16px;
        background-color: #070707;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.21);
        transition: var(--transtn);
        color: #fff;
        font-size: var(--font-fourteen);
    }

    .inpt_wrp textarea {
        resize: none;
        padding: 20px 16px;
        height: 140px;
    }

        .inpt_wrp textarea:focus,
        .inpt_wrp input:focus {
            box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
            border-color: #3f70f8;
        }

        .inpt_wrp textarea:not(:placeholder-shown),
        .inpt_wrp input:not(:placeholder-shown) {
            border-color: #3f70f8;
        }

    .inpt_wrp.col-6 {
        width: 50%;
    }

.frm_wrp .btn_wrp {
    padding: 15px 7px;
    width: 100%;
    text-align: right;
}

    .frm_wrp .btn_wrp button {
        min-width: 120px;
        font-weight: 400;
    }

/* rpt_bar_wrp */
.rpt_bar_wrp {
    /* background-color: rgb(63 112 248 / 40%); */
    background-color: rgba(217, 156, 0, 0.2);
    border-radius: 6px;
    padding: 16px;
    padding-right: 40px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

    .rpt_bar_wrp p {
        color: rgb(255 255 255 / 80%);
        padding: 10px 0 0 32px;
    }

.pndg_ttle {
    padding-right: 15px;
    font-weight: 500;
    color: #d99c00;
    display: flex;
    align-items: center;
    font-size: var(--font-fourteen);
}

    .pndg_ttle img {
        margin-right: 12px;
        width: 18px;
    }

.rpt_bar_wrp > a {
    /*    position: absolute;
    right: 20px;
    top: 20px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.body_content {
    max-height: 100vh;
}

.mCSB_inside > .mCSB_container {
    margin-right: 20px;
}

.mCSB_scrollTools {
    width: 6px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #111;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #ccc;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #111015;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3f70f8;
    border-radius: 10px;
}

/* Sign Up start */

.sign-up {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    background-color: #111015;
    overflow: hidden;
}

    .sign-up:after {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        height: 75%;
        background-color: #171717;
        content: "";
        z-index: 1;
    }

    .sign-up::before {
        position: absolute;
        width: 125%;
        left: -25%;
        bottom: 45%;
        height: 50%;
        background-color: #111015;
        content: "";
        z-index: 2;
        transform: rotate(-13deg);
        border-bottom: 8px solid;
        border-image-source: linear-gradient( 258deg, #82a1f6 0%, #3f70f8 20%, #3f70f8 81%, #82a1f6 100% );
        border-image-slice: 1;
    }

.logn_hor {
    position: absolute;
    background-image: linear-gradient( 258deg, #82a1f6 0%, #3f70f8 20%, #3f70f8 81%, #82a1f6 100% );
    content: "";
    width: 120%;
    height: 8px;
    top: 50%;
    left: -10%;
    transform: rotate(347deg);
    z-index: 1;
}

.sign-up-sec {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 99;
}

    .sign-up-sec h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #8f8f8f;
        background-image: linear-gradient( 90deg, #8f8f8f 0%, #e8e8e8 50%, #8f8f8f 100% );
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        max-width: 400px;
        margin: 0px auto 20px;
    }

    .sign-up-sec .weblogo {
        text-align: center;
        margin-top: 20px;
    }

        .sign-up-sec .weblogo img {
            width: 140px;
        }

    .sign-up-sec h3 {
        font-family: var(--primary_font);
        line-height: 1;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .sign-up-sec .sign_form {
        padding: 25px 30px;
        border-radius: 10px;
        border: solid 1px #373737;
        background-color: #070707;
    }

        .sign-up-sec .sign_form form {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

            .sign-up-sec .sign_form form input {
                background-color: #111015;
                border: solid 1px #6c6c6c;
                border-radius: 6px;
                color: #b9b9b9;
                padding: 0 16px;
                line-height: 40px;
                font-weight: 500;
                font-family: var(--primary_font);
                font-size: var(--body_font);
                width: 100%;
            }

                .sign-up-sec .sign_form form input::placeholder {
                    color: #b9b9b9;
                    font-size: var(--body_font);
                    font-family: var(--primary_font);
                    font-weight: 500;
                }

                .sign-up-sec .sign_form form input::-webkit-autofill {
                    -webkit-text-fill-color: #111015 !important;
                }

                .sign-up-sec .sign_form form input:focus,
                .sign-up-sec .sign_form form input:not(:placeholder-shown) {
                    box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
                    border-color: #3f70f8;
                }

            .sign-up-sec .sign_form form .name_s {
                width: calc(50% - 7px);
            }

.checkbox_lable {
    display: inline-block;
    width: auto;
    max-width: 395px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--primary_font);
    color: #dadada;
}

.custom-checkbox {
    display: inline-flex;
    margin-bottom: 35px;
}

    .custom-checkbox input[type="checkbox"] {
        display: none;
    }

    .custom-checkbox .checkmark {
        width: 15px;
        height: 15px;
        background-color: #111015;
        border: solid 1px #6c6c6c;
        display: inline-block;
        position: relative;
        cursor: pointer;
        vertical-align: middle;
        border-radius: 3px;
        margin-right: 10px;
        margin-top: 3px;
        overflow: hidden;
        flex: 0 0 auto;
    }

        .custom-checkbox .checkmark:after {
            content: "";
            position: absolute;
            top: -2px;
            left: -1px;
            width: 15px;
            height: 15px;
            background: #3f70f8 url(../images/wht_tck.svg) center no-repeat;
            background-size: 10px 10px;
            display: none;
        }

    .custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
        display: block;
    }

.sub_btn {
    width: 100%;
    border: solid 1px #3f70f8;
    background-color: #3f70f8;
    color: #fff;
    font-size: var(--font-fourteen);
    font-weight: 500;
    font-family: var(--primary_font);
    line-height: 40px;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

    .sub_btn:hover {
        border: solid 1px #00b787;
        background-color: #06d7a0;
    }

.req_btn {
    width: 100%;
    background-color: transparent;
    border: solid 1px #3f70f8;
    color: #fff;
    font-size: var(--font-fourteen);
    font-weight: 400;
    font-family: var(--primary_font);
    line-height: 40px;
    border-radius: 6px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}

    .req_btn:hover {
        border: solid 1px #00b787;
        background-color: #06d7a0;
    }

.sign_form p {
    font-weight: 400;
    color: #dadada;
    text-align: center;
    font-family: var(--primary_font);
    margin-bottom: 0;
}

/* Sign Up end */

/* Sign in Start */

.sign-in {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 35px 0;
    background-color: #111015;
    overflow: hidden;
}

    .sign-in:after {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        height: 75%;
        background-color: #171717;
        content: "";
        z-index: 1;
    }

    .sign-in::before {
        position: absolute;
        width: 125%;
        right: -25%;
        bottom: 45%;
        height: 50%;
        background-color: #111015;
        content: "";
        z-index: 2;
        transform: rotate(13deg);
        border-bottom: 8px solid;
        /* Set the thickness of the border */
        border-image-source: linear-gradient( 258deg, #82a1f6 0%, #3f70f8 20%, #3f70f8 81%, #82a1f6 100% );
        border-image-slice: 1;
    }

.sign-up-sec a {
    display: inline-block;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--primary_font);
    color: #00b787;
}

.sign-in .vec1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 34;
    max-width: 925px;
    max-height: 1085px;
    background-image: url(../images/bg_r.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.sign-in .vec2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 34;
    max-width: 925px;
    max-height: 1085px;
    background-image: url(../images/bg_l.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

/* Sign in end */

/* forgot_pass Start */

.forgot_pass_sec {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    background-color: #111015;
    overflow: hidden;
}

    .forgot_pass_sec:after {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        height: 75%;
        background-color: #171717;
        content: "";
        z-index: 1;
    }

    .forgot_pass_sec::before {
        position: absolute;
        width: 125%;
        left: -25%;
        bottom: 45%;
        height: 50%;
        background-color: #111015;
        content: "";
        z-index: 2;
        transform: rotate(-13deg);
        border-bottom: 8px solid;
        border-image-source: linear-gradient( 258deg, #82a1f6 0%, #3f70f8 20%, #3f70f8 81%, #82a1f6 100% );
        border-image-slice: 1;
    }

    .forgot_pass_sec .sub_btn {
        margin-bottom: 0;
    }

    .forgot_pass_sec .sign-up-sec .sign_form {
        padding: 45px 37px 30px;
    }

/* forgot_pass end */

/* signup_options start */

.signup_options_sec {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    background-color: #111015;
    overflow: hidden;
}

    .signup_options_sec::before {
        position: absolute;
        width: 125%;
        left: -25%;
        bottom: 45%;
        height: 50%;
        background-color: #111015;
        content: "";
        z-index: 2;
        transform: rotate(-13deg);
        border-bottom: 8px solid;
        border-image-source: linear-gradient( 258deg, #82a1f6 0%, #3f70f8 20%, #3f70f8 81%, #82a1f6 100% );
        border-image-slice: 1;
    }

    .signup_options_sec:after {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        height: 75%;
        background-color: #171717;
        content: "";
        z-index: 1;
    }

.sign-up-op {
    max-width: 1113px;
    width: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.signup_op_box {
    width: calc(33.333% - 20px);
    padding: 30px 27px 50px 20px;
    border: solid 1px #5050509d;
    background-color: #121118;
    overflow: hidden;
    border-radius: 23px;
    position: relative;
}

    .signup_op_box h2 {
        font-family: var(--primary_font);
        font-weight: 500;
        margin-bottom: 30px;
    }

        .signup_op_box h2 span {
            width: 100%;
        }

    .signup_op_box:nth-child(1) h2 {
        color: #ffce3e;
    }

    .signup_op_box:nth-child(2) h2 {
        color: #d180ff;
    }

    .signup_op_box:nth-child(3) h2 {
        color: #97ffe6;
    }

    .signup_op_box ul li {
        padding-bottom: 12px;
        margin-bottom: 13px;
        position: relative;
        padding-left: 30px;
        font-family: var(--primary_font);
        font-weight: 400;
        line-height: 140%;
        color: #fff;
    }

        .signup_op_box ul li:last-child {
            margin-bottom: 23px;
        }

        .signup_op_box ul li::before {
            width: 15px;
            height: 15px;
            background: url(../images/check_cir.svg) no-repeat center;
            background-size: contain;
            content: "";
            position: absolute;
            top: 3px;
            left: 0;
        }

        .signup_op_box ul li::after {
            width: 120%;
            height: 1px;
            background: #45444899;
            content: "";
            position: absolute;
            top: 100%;
            left: -10%;
        }

    .signup_op_box .btn_sign_op {
        padding: 10px 0;
        line-height: 22px;
        font-size: var(--font-fourteen);
        font-family: var(--primary_font);
        font-weight: 500;
        color: #1c1c1c;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        border: none;
        transition: all 0.3s ease-in-out;
        position: absolute;
        bottom: 15px;
        width: calc(100% - 54px);
    }

        .signup_op_box .btn_sign_op:hover {
            color: #fff;
            background-color: #00b787;
        }

/* signup_options end */

/* crypto-sources start */

.breadcamp_jun {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .breadcamp_jun a {
        margin-right: 10px;
        color: #474747;
        line-height: 30px;
        font-size: var(--body_font);
        font-family: var(--primary_font);
        font-weight: 400;
    }

        .breadcamp_jun a .fa-chevron-right {
            margin-left: 10px;
        }

.wallet_tble_wrp .trns_tble_hdr .tbl_itm:first-child {
    display: inline-flex;
    align-items: center;
    width: 54%;
}

.b_nam {
    margin-left: 20px;
    color: #c6c6c6;
    line-height: normal;
    font-family: var(--primary_font);
    font-weight: 500;
}

.wallet_tble_wrp .trns_tble_hdr .tbl_itm:nth-child(2) {
    width: 26%;
}

.wallet_tble_wrp .trns_tble_hdr .tbl_itm:last-child {
    width: 20%;
}

.wallet_tble_wrp .trns_tble_body .tbl_itm:first-child {
    width: 18%;
    display: inline-flex;
    align-items: center;
}

.wallet_tble_wrp .trns_tble_body .tbl_itm:nth-child(2),
.wallet_tble_wrp .trns_tble_body .tbl_itm:nth-child(3) {
    width: 18%;
    flex-direction: column;
    align-items: flex-start;
}

.wallet_tble_wrp .trns_tble_body .tbl_itm:nth-child(4) {
    width: 26%;
}

.wallet_tble_wrp .trns_tble_body .tbl_itm:nth-child(5) {
    color: #fff;
    width: 15%;
    font-weight: 500;
}

.wallet_tble_wrp .cht_dts_wp a + a {
    margin-left: 18px;
}

.wallet_tble_wrp .tbl_itm {
    font-weight: 500;
}

.wallet_tble_wrp .trns_tble_hdr .tbl_itm {
    font-weight: 500;
}

.wallet_tble_wrp .trns_tble_body .c_i .c_i_img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
}

.wallet_tble_wrp .trns_tble_body .c_i .c_i_text p:last-child {
    color: #808080;
    margin-top: 8px;
}

.wallet_tble_wrp .trn_acco_bdy .trns_tb_tble_itm:first-of-type {
    width: 30%;
    padding-left: 50px;
}

.wallet_tble_wrp .trn_acco_bdy .trns_tb_tble_itm:nth-of-type(2) {
    width: 40%;
}

.wallet_tble_wrp .trn_acco_bdy .trns_tb_tble_itm:last-of-type {
    width: 30%;
    padding-right: 50px;
    text-align: right;
}

/* .wallet_tble_wrp .trn_acco_bdy .trns_tb_tble_total_itm:nth-of-type(1){
  width: 70%;
  text-align: right;
}
.wallet_tble_wrp .trn_acco_bdy .trns_tb_tble_total_itm:nth-of-type(2){
  width: 30%;
  text-align: left;
  padding-left: 0;
}
.wallet_tble_wrp .trns_tb_tble_total_innr{
  max-width: 100%;
} */

/* crypto-sources end */

/* crypto-sources-exg start */

.exch_sec_main {
    padding: 20px;
    border-radius: 10px;
    background-color: #12111887;
    border: 1px solid rgba(255, 255, 255, 0.21);
    margin-bottom: 40px;
}

.exch_sec h2 {
    font-weight: 500;
    margin-bottom: 28px;
    white-space: nowrap;
}

.exch_sec .exch_sec_head {
    padding: 0;
    font-weight: 500;
    color: #c6c6c6;
    margin-bottom: 30px;
    cursor: default;
}

.exch_sec .exch_sec_body {
    padding: 0;
    font-weight: 500;
    color: #a3a3a3;
    margin-bottom: 20px;
    position: relative;
    cursor: default;
}

.exch_sec .trn_tbl_acco[aria-expanded="true"],
.exch_sec .trn_tbl_acco:hover {
    background: transparent;
}

.exch_sec .exch_sec_body .cht_dts_wp {
    top: 3px;
    right: 0;
}

.exch_sec .exch_sec_body:last-child {
    margin-bottom: 0;
}

.exch_sec .exch_sec_head .c_i_img {
    width: 26px;
    height: 26px;
    border-radius: 100%;
    margin-right: 15px;
}

.exch_sec .tbl_itm {
    width: 14.28%;
    cursor: default;
}

.exch_sec .exch_sec_head .tbl_itm:first-child {
    display: inline-flex;
    align-items: center;
}

.exch_sec .exch_sec_head .tbl_itm {
    font-size: var(--font-fourteen);
}

.exch_sec .exch_sec_head .c_i_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exch_sec .exch_sec_body .last_tbl_i {
    padding-right: 20px;
}

    .exch_sec .exch_sec_body .last_tbl_i .verifi,
    .exch_sec .exch_sec_body .last_tbl_i .create {
        color: #00ac7f;
    }

    .exch_sec .exch_sec_body .last_tbl_i .pending {
        color: #d99c00;
    }

.exch_sec .exch_sec_body .pending,
.exch_sec .exch_sec_body .verifi,
.exch_sec .exch_sec_body .create {
    padding-left: 26px;
    position: relative;
}

    .exch_sec .exch_sec_body .pending::before,
    .exch_sec .exch_sec_body .verifi::before,
    .exch_sec .exch_sec_body .create::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border-radius: 3px;
        overflow: hidden;
        content: "";
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .exch_sec .exch_sec_body .verifi::before,
    .exch_sec .exch_sec_body .create::before {
        background-image: url(../images/sucs_i.svg);
    }

    .exch_sec .exch_sec_body .pending::before {
        background-image: url(../images/pend_i.svg);
    }

.exch_sec .exch_sec_body .sh_i {
    background-color: #111015;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: -10px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

    .exch_sec .exch_sec_body .sh_i:hover {
        z-index: 1;
    }

    .exch_sec .exch_sec_body .sh_i img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .exch_sec .exch_sec_body .sh_i:not(:has(img)) {
        text-align: center;
        line-height: 28px;
        font-size: var(--body_font);
    }

.exch_sec .exch_sec_body .tbl_itm:nth-child(1),
.exch_sec .exch_sec_body .tbl_itm:nth-child(2) {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
}

    .exch_sec .exch_sec_body .tbl_itm:nth-child(1) a,
    .exch_sec .exch_sec_body .tbl_itm:nth-child(2) a {
        width: 20px;
        margin-left: 10px;
    }

.exch_sec .exch_sec_body .tbl_itm:first-child {
    position: relative;
    padding-left: 40px;
}

    .exch_sec .exch_sec_body .tbl_itm:first-child::before {
        position: absolute;
        width: 18px;
        height: 8px;
        background: url(../images/arrow_r_i.svg) no-repeat center;
        background-size: contain;
        content: "";
        left: 13px;
        top: 5px;
    }

.exch_sec .exch_body_wrap {
    position: relative;
}

    .exch_sec .exch_body_wrap::before {
        position: absolute;
        width: 1px;
        /* height: 100%; */
        background: #3f3f3f;
        content: "";
        left: 13px;
        top: 29px;
        bottom: 9px;
    }

.add_inte_btn .fa-plus {
    font-size: var(--font-fourteen);
    margin-right: 3px;
}

.add_inte_btn {
    font-size: var(--font-fourteen);
    font-weight: 400;
    color: #fff;
    border-radius: 5px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3f70f8;
    width: 100%;
    margin-bottom: 10px;
}

#intgration_modal2 .srch_rslt_wrp ul li a {
    display: inline-block;
    width: 100%;
}

/* crypto-sources-exg end */

/* changing 30-08-24 satrt */

.mn_hdr_rgt .cyp_full_srch {
    padding-right: 0;
}

.cyp_full_srch form input::placeholder {
    font-size: var(--font-fourteen);
    font-weight: 400;
    line-height: 37px;
    cursor: text;
}

.cyp_full_srch form input {
    background-color: #111015;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 240px;
    height: 37px;
    background-image: url(../images/srch_icn.png);
    background-position: left 10px center;
    background-repeat: no-repeat;
    background-size: 15px;
    border-radius: 24px;
    transition: var(--transtn);
    color: rgba(255, 255, 255, 0.7);
    outline: none;
    cursor: pointer;
    line-height: 37px;
    font-size: var(--font-fourteen);
    padding: 0 10px 0 33px;
}

.wallet_tble_wrp .trns_tb_tble_body_rw {
    padding: 20px;
}

.wallet_tble_wrp .trns_tb_tble_hdr {
    padding: 16px 20px;
}

.wallet_tble_wrp .trns_tb_tble_total_innr {
    justify-content: end;
    padding-right: 40px;
}

/* changing 30-08-24 end */

/* self_transfer start */

.self_transfer_wrap .mn_hdr h2 {
    margin-bottom: 25px;
}

.self_transfer_wrap .trns_tble_wrp {
    margin-top: 0;
    overflow: hidden;
}

.self_transfer_wrap .mn_hdr {
    margin-bottom: 0;
}

.self_transfer_wrap .trns_tble_hdr {
    position: relative;
    font-weight: 500;
    color: #c6c6c6;
}

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:first-child {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:nth-child(2) {
        width: 21%;
        padding-left: 40px;
    }

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:nth-child(3),
    .self_transfer_wrap .trns_tble_hdr .tbl_itm:nth-child(4) {
        width: 12%;
    }

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:nth-child(5) {
        width: 11%;
        padding-right: 40px;
    }

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:nth-of-type(6) {
        width: 11%;
    }

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:nth-of-type(7) {
        width: 16%;
    }

    .self_transfer_wrap .trns_tble_hdr .tbl_itm:last-child {
        width: 13%;
    }

.self_transfer_wrap .self_transfer_tr {
    padding: 24px 20px;
    font-weight: 500;
    color: #a3a3a3;
    position: relative;
    margin-bottom: 2px;
}

    .self_transfer_wrap .self_transfer_tr:last-child {
        margin-bottom: 0;
    }

    .self_transfer_wrap .self_transfer_tr .cht_dts_wp {
        top: 30px;
        right: 30px;
    }

    .self_transfer_wrap .self_transfer_tr .time {
        color: #808080;
        margin-top: 6px;
    }

    .self_transfer_wrap .self_transfer_tr .self_transfer_tr_con {
        position: relative;
        display: flex;
        margin-bottom: 25px;
    }

        .self_transfer_wrap .self_transfer_tr .self_transfer_tr_con::before {
            position: absolute;
            width: 1px;
            height: 100%;
            background: #3f3f3f;
            content: "";
            left: 13px;
            top: 49%;
        }

.check_trnsf {
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: #3f70f8;
    align-items: center;
    justify-content: center;
    z-index: 2;
    display: none;
}

    .check_trnsf svg {
        color: #fff;
        width: 18px;
    }

    .check_trnsf.checked {
        display: inline-flex;
    }

.self_transfer_wrap .self_transfer_tr .self_transfer_tr_con:last-child:before {
    bottom: 49%;
    top: auto;
}

.self_transfer_wrap .self_transfer_tr .self_transfer_tr_con:last-child {
    margin-bottom: 0;
}

.self_transfer_wrap .self_transfer_tr:nth-child(odd) {
    background-color: #1f1e23;
}

.self_transfer_wrap .self_transfer_tr:nth-child(even) {
    background-color: #1f1f20;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-child(1) {
    width: 21%;
    padding-left: 40px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:first-child::before {
    position: absolute;
    width: 18px;
    height: 8px;
    background: url(../images/arrow_r_i.svg) no-repeat center;
    background-size: contain;
    content: "";
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-child(1) .c_i_img {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-child(2) {
    width: 12%;
    flex-direction: row;
    align-items: center;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-child(3) {
    width: 12%;
    flex-direction: row;
    align-items: center;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-child(4) {
    width: 11%;
    padding-right: 40px;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-of-type(5) {
    width: 10.5%;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:nth-of-type(6) {
    width: 16%;
}

.self_transfer_wrap .self_transfer_tr_con .tbl_itm:last-child {
    width: 14%;
}

.self_transfer_wrap .self_transfer_tr_con .crnc_img {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

    .self_transfer_wrap .self_transfer_tr_con .crnc_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.self_transfer_wrap .self_transfer_tr_con .type_crp {
    text-transform: capitalize;
    padding: 6px 10px;
}

/* self_transfer end */

/* 30-08-24-------------start----css---for-----------------reports-page */
.reports_wrappers .mn_hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .reports_wrappers .mn_hdr .mn_hdr_rgt {
        border: 1px solid rgb(52, 93, 157);
        border-radius: 6px;
        padding: 10px;
        font-size: var(--font-fourteen);
    }

.reports_wrappers .rpt_bar_wrp {
    margin-top: 20px;
    margin-bottom: 0;
}

.reports_block_wraper {
    margin-top: 25px;
}

.reports_wrappers .rpt_bar_wrp {
    border-radius: 6px;
    background: rgb(63 112 248 / 13%);
}

.reports_wrappers .pndg_ttle {
    color: #3f70f8;
}

.reports_wrappers .mn_hdr_rgt .bootstrap-select > button {
    margin-bottom: 0;
}

.report_block_item_wrap {
    border-radius: 10px;
    background: rgba(18, 17, 24, 0.53);
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #474747;
}

.report_item_text h4 {
    color: #ffffff;
    font-weight: 400;
    line-height: 20px;
}

.report_item_text h3 {
    font-weight: 500;
    color: #fff;
    line-height: 20px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.report_anchor a {
    color: #474747;
    font-weight: 500;
    line-height: 15px;
}

    .report_anchor a:hover {
        color: #3f70f8;
    }

.report_item_text p {
    font-weight: 400;
    line-height: 10px;
    display: inline-block;
}

.report_block_table {
    border: 1px solid #474747;
    margin-top: 30px;
    border-radius: 10px;
    background: rgba(18, 17, 24, 0.53);
    padding: 0px 10px;
}

.table_head_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    border-bottom: 1px solid #474747;
}

.report_block_table .table_head_wrap {
    padding: 15px 16px;
}

.report_block_button {
    margin-top: 30px;
}

.gain_item ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border: 1px solid #474747;
    border-radius: 10px;
    background-color: #000;
    margin-bottom: 15px;
}

.gain_item ul {
    padding: 20px;
}

.content_wrap_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.content_wrap_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    border: 1px solid #474747;
    margin-top: 15px;
    border-radius: 4px;
}

    .content_wrap_item a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        width: 100%;
    }

        .content_wrap_item a:hover {
            background-color: #a3a3a330;
        }

/* .report_block_table_content_wrap {
  padding: 20px;
  padding-top: 0;
} */

.report_block_table_content_wrap {
    padding: 20px 0px 40px;
    padding-top: 0;
    /* border-bottom: 1px solid #474747; */
}

.table_head_wrap h3 {
    font-weight: 500;
    line-height: 1;
}

.table_head_wrap span {
    font-weight: 500;
    line-height: 1;
}

.content_wrap_heading h4 {
    font-weight: 500;
    line-height: 20px;
}

.content_wrap_item h6 {
    color: #808080;
    font-weight: 400;
    line-height: 18px;
}

.button_heading {
    box-sizing: border-box;
    border: 1px solid rgb(52, 93, 157);
    border-radius: 6px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: rgba(52, 93, 157, 0.04);
    padding: 10px;
    margin-bottom: 15px;
}

    .button_heading h5 {
        font-weight: 500;
    }

.report_button-wrap h5 {
    margin-bottom: 20px;
    font-weight: 500;
}

.button_heading p {
    font-weight: 400;
    color: #418bff;
    margin-top: 5px;
}

.button_whol_wrap button {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
    border-radius: 4px;
    background-color: rgba(63, 112, 248, 0.08);
    margin-bottom: 15px;
    font-size: var(--font-fourteen);
    font-weight: 500;
}

    .button_whol_wrap button:hover {
        background-color: rgb(63, 112, 248);
    }

button.blue_button {
    border-radius: 6px;
    background-color: rgb(63, 112, 248);
    height: 60px;
}

    button.blue_button:hover {
        background-color: rgb(63 112 248 / 35%);
    }

.report_block_button button span {
    padding-left: 10px;
    max-width: 30px;
}

.button_whol_wrap span {
    padding-left: 10px;
    max-width: 30px;
}

/* 30-08-24-------------end----css---for-----------------reports-page */

.no_trans_fnd {
    text-align: center;
    padding: 15px 20px 15px;
}

/* invitation_form */

.invitation_modal .modal-dialog {
    height: 100%;
    margin: 0 auto;
    max-width: 470px;
    display: flex;
    align-items: center;
}

.invitation_modal .modal-content {
    background-color: #070707;
    border-radius: 12px;
    border: 1px solid rgba(8, 117, 255, 0.44);
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
}

.invitation_modal .mdl_hdr {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(69, 68, 72, 0.6);
}

    .invitation_modal .mdl_hdr h6 {
        font-weight: 500;
        text-transform: capitalize;
    }

    .invitation_modal .mdl_hdr button {
        padding: 0;
        margin-left: auto;
        opacity: 1;
        width: 25px;
        height: 25px;
    }

.invtn_frm_inr {
    padding: 20px 30px 25px;
    line-height: 140%;
}

    .invtn_frm_inr .nme_wrp {
        display: flex;
        align-items: center;
        padding-bottom: 25px;
    }

    .invtn_frm_inr h6 {
        text-transform: uppercase;
        line-height: 1;
        color: #8f9194;
        margin-bottom: 10px;
    }

    .invtn_frm_inr .nme_inpt + .nme_inpt {
        padding-left: 40px;
    }

    .invtn_frm_inr .nme_inpt p {
        text-transform: capitalize;
    }

    .invtn_frm_inr .emnl_inpt {
        padding-bottom: 25px;
    }

    .invtn_frm_inr .txt_inpt {
        padding-bottom: 20px;
    }

    .invtn_frm_inr .sbmit_btn {
        font-size: var(--font-fourteen);
        font-weight: 400;
        min-width: 120px;
        height: 40px;
        line-height: 1;
    }

.modal-backdrop.show {
    background-color: #000;
    opacity: 0.7;
}

/* invitation_form */

/* 31-8-24--------css-----------start */
/* 31---popup-----------css----report-page---target----pdf-download-button */
.self_transfer_modal .modal-content {
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 12px;
    background-color: rgb(7, 7, 7);
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
}

.self_transfer_modal .btn-close {
    background-image: url(../images/croos_modal.svg);
    background-size: 30px;
}

.self_transfer_modal .modal-header {
    border-bottom: none;
}

.self_transfer_modal .modal-body {
    padding: 25px 25px;
    padding-top: 0;
}

.modal_table_wrap {
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    overflow: hidden;
}

.self_transfer_modal .modal-body table {
    width: 100%;
    background: rgb(7, 7, 7);
}

    .self_transfer_modal .modal-body table th {
        border-collapse: collapse;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    }

    .self_transfer_modal .modal-body table td {
        padding: 20px;
        color: #8c8c8c;
    }

        .self_transfer_modal .modal-body table th:first-child,
        .self_transfer_modal .modal-body table td:first-child {
            min-width: 230px;
        }

    .self_transfer_modal .modal-body table th:first-child {
        border-top-left-radius: 10px;
    }

.self_transfer_modal .modal_button button.blue_button {
    padding: 16px 45px;
    height: 45px;
}

.self_transfer_modal .modal_button {
    margin-top: 20px;
}

.self_transfer_modal.fade {
    background: #000000a1;
}

/* 31---popup-----------css----report-page---target----pdf-download-button */

/* settings_accounts_css-------------end */
.sett_account_card {
    border-radius: 17px;
    box-shadow: 10.75px 12.91px 21.51px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(15.06px);
    background: linear-gradient( 137.08deg, rgba(255, 255, 255, 0.09) 3.512%, rgba(255, 255, 255, 0) 111.707% );
    padding: 30px 20px 20px 20px;
    border: 1px solid rgb(255 255 255 / 60%);
}

.sett_account_form {
    padding: 30px 0px 0 0;
}

    .sett_account_form .frm_wrp {
        padding-top: 10px;
        padding-bottom: 10px;
    }

.port_folio_img_wrap {
    width: 100%;
    display: flex;
    margin-top: 10px;
    padding-left: 12px;
}

.port_text p {
    margin-top: 15px;
}

.pro_link span {
    margin: 0px 5px;
}

.port_folio_img {
    padding: 0 12px 15px;
    position: relative;
}

    .port_folio_img + p {
        padding: 0 0 5px 7px;
        width: 100%;
    }

.pro_link a:hover {
    color: #345d9d;
}

.port_folio_img img {
    /* border-radius: 50%; */
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 5px solid #fff;
}

.port_folio_img span {
    width: 100px;
    height: 100px;
    /* border-radius: 50%; */
    background: rgb(63 112 248 / 50%);
    line-height: 90px;
    font-size: var(--font-fourteen);
    color: #fff;
    text-align: center;
    font-weight: 500;
    border: 5px solid #fff;
}

.port_folio_img a {
    position: absolute;
    top: -10px;
    right: 0;
    color: rgb(255 255 255 / 70%);
    background: rgb(0 0 0 / 75%);
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: var(--font-ten);
    border-radius: 50%;
    text-align: center;
}

    .port_folio_img a.cancel_img {
        top: unset;
        bottom: 10px;
    }

.port_text {
    margin-left: 10px;
}

.sett_account_plan {
    border-top: 1px solid #454448;
    padding-top: 30px;
}

.sett_account_form h2 {
    font-weight: 500;
    margin-bottom: 30px;
}

.sett_account_form .frm_wrp .btn_wrp button {
    min-width: 200px;
    height: 42px;
    font-weight: 400;
    margin-top: 5px;
}

.sett_account_plan h3 {
    font-weight: 500;
}

.sett_account_plan h6 {
    font-weight: 500;
    color: #d180ff;
}

.sett_account_plan h4 {
    font-weight: 500;
    margin-top: 5px;
}

.sett_list_wrap ul {
    margin-top: 5px;
    margin-bottom: 10px;
}

    .sett_list_wrap ul li {
        padding-bottom: 7px;
        margin-bottom: 7px;
        position: relative;
        padding-left: 18px;
        font-family: var(--primary_font);
        font-weight: 400;
        line-height: 20px;
        color: #fff;
        border-bottom: 1px solid rgb(69 68 72 / 60%);
    }

        .sett_list_wrap ul li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .sett_list_wrap ul li::before {
            width: 11px;
            height: 11px;
            background: url(../images/check_cir.svg) no-repeat center;
            background-size: contain;
            content: "";
            position: absolute;
            top: 3px;
            left: 0;
        }

.sett_list_wrap {
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #d180ff;
    background: linear-gradient( 180deg, rgba(38, 37, 41, 0.49), rgba(38, 37, 41, 0) 100% );
    max-width: 513px;
    padding: 10px 15px;
    margin-top: 10px;
    height: calc(100% - 25px);
}

.upgrated_button {
    display: block;
    max-width: 513px;
    text-align: center;
    margin-top: 25px;
}

button.whit_butt {
    border-radius: 8px;
    background: rgb(255, 255, 255);
    color: #1c1c1c;
    padding: 12px 10px;
    width: 100%;
    border: 1px solid transparent;
    font-size: var(--font-fourteen);
    font-weight: 500;
}

    button.whit_butt:hover {
        background-color: #141117;
        color: #fff;
        border: 1px solid #fff;
    }

.visa_card_button button {
    border-radius: 6px;
    background: rgba(63, 112, 248, 0.33);
    padding: 16px 10px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

    .visa_card_button button:hover {
        background: #345d9d;
    }

    .visa_card_button button span {
        padding-right: 15px;
    }

.first_card_item img:first-child {
    max-width: 30px;
}

.first_card_item img {
    max-width: 50px;
}

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

.second_card_item {
    margin-top: 30px;
}

    .second_card_item ul {
        display: flex;
        align-items: center;
    }

        .second_card_item ul li span {
            width: 8px;
            height: 8px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            margin-left: 5px;
        }

        .second_card_item ul li {
            display: flex;
            align-items: center;
        }

            .second_card_item ul li:not(:first-child) {
                margin-left: 20px;
            }

.third_card_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

    .third_card_item p {
        font-weight: 400;
        line-height: 1;
    }

    .third_card_item h4 {
        font-weight: 400;
        line-height: 1;
        margin-top: 8px;
        text-transform: uppercase;
    }

/* settings_accounts_css-------------end */

/* settings_plans_css------------- */
.settings_plans_heading {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

    .settings_plans_heading h2 {
        color: #969696;
        margin-bottom: 10px;
    }

    .settings_plans_heading p {
        color: #969696;
    }

.settings_plans_tab_wrap .nav {
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #454448;
}

.settings_plans_tab_wrap li.nav-item {
    padding: 6px;
    background: rgb(17, 16, 21);
}

.settings_plans_tab_wrap .nav-pills .nav-link {
    font-size: var(--font-fourteen);
    font-weight: 400;
    line-height: 20px;
    color: #969696;
    border-radius: 10px;
}

    .settings_plans_tab_wrap .nav-pills .nav-link.active,
    .settings_plans_tab_wrap .nav-pills .show > .nav-link {
        border-radius: 8px;
        color: #fff;
        background: rgb(44, 38, 55);
    }

.tab_item {
    border-radius: 23px;
    background: rgba(18, 17, 24, 0.53);
    padding: 15px;
    /* padding-bottom: 0; */
    border: 1px solid #454448;
    height: 100%;
    transition: var(--transtn);
}

    .tab_item h5 {
        font-weight: 500;
        margin-bottom: 7px;
    }

    .tab_item h3 {
        font-weight: 500;
        margin-bottom: 10px;
    }

.tab_list_wrap {
    background: none;
    border: none;
    padding: 0;
}

.settings_plans_tab_wrap .tab-content {
    max-width: 1302px;
    margin: 0 auto;
    margin-top: 50px;
}

.tab_butt_wrap button.whit_butt {
    padding: 12px 10px;
}

.tab_item:hover {
    background-color: rgb(163 163 163 / 10%);
}

.for_bronz h5 {
    color: #06d7a0;
}

.for_silver h5 {
    color: #d180ff;
}

.for_gold h5 {
    color: #ffce3e;
}

.for_platinum h5 {
    color: #e5e4e2;
}

.for_diamond h5 {
    color: #b9f2ff;
}

.for_customize h5 {
    color: #06d7a0;
}

/* settings_plans_css------------- */

/* admin_page--------------------css---start */
.admin_wrapper h2 {
    font-weight: 500;
    color: #fff;
}

.admin_tab_wrap {
    margin-top: 20px;
    border: 1px solid #454448;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(18, 17, 24, 0.53);
}

    .admin_tab_wrap .nav {
        padding: 10px;
        position: sticky;
        left: 0;
    }

    .admin_tab_wrap ul li.nav-item {
        width: 50%;
        background: rgb(19, 20, 31);
        border: 1px solid rgb(57, 69, 102);
    }

    .admin_tab_wrap ul li .nav-link {
        display: block;
        width: 100%;
        padding: 10px 10px;
        border-radius: 0;
        color: #fff;
    }

    .admin_tab_wrap ul li:first-child {
        border-radius: 10px 0px 0px 10px;
        overflow: hidden;
    }

    .admin_tab_wrap ul li:last-child {
        border-radius: 0px 10px 10px 0px;
        overflow: hidden;
    }

    .admin_tab_wrap table {
        width: 100%;
    }

        .admin_tab_wrap table th,
        .admin_tab_wrap table td {
            border-collapse: collapse;
            border-top: 1px solid #454448;
            color: #a3a3a3;
            font-weight: 500;
        }

        .admin_tab_wrap table th {
            padding: 15px 40px;
        }

        .admin_tab_wrap table td {
            padding: 10px 40px;
        }

            .admin_tab_wrap table td:last-child {
                text-align: right;
            }

.button_wrap {
    display: flex;
    align-items: center;
    justify-content: end;
}

    .button_wrap a:not(:first-child) {
        margin-left: 10px;
    }

.cross_button,
.check_button {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view_button {
    border: 1px solid #2d4579;
    padding: 10px 27px;
    border-radius: 5px;
    font-size: var(--font-fourteen);
}

.cross_button {
    border: 1px solid #9f444f;
}

.check_button {
    border: 1px solid #01a713;
}

    .cross_button i,
    .check_button i {
        color: #fff;
    }

.view_button {
    color: #fff;
}

    .view_button:hover {
        background-color: #2d4579;
    }

.cross_button:hover {
    background-color: #9f444f;
}

.check_button:hover {
    background-color: #01a713;
}

/* admin_page--------------------css---end;*/

/* 31-8-24--------css-----------end*/

/* 02-09-24 */
/* dev_99 */

.custom-checkbox {
    position: relative;
}

    .custom-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
    }

.checkbox_lable {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    max-width: 430px;
}

/* 02-09-24 */

/* form-modification--------------------------css */

.sign_form span.error_text {
    display: block;
    margin-top: 5px;
    font-size: var(--font-fourteen);
    color: #9f444f;
}

.sign_form_group {
    width: 100%;
    margin-bottom: 20px;
}

    .sign_form_group .custom-checkbox {
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
    }

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

.tran_add_drop_down {
    margin-left: 10px;
    height: 34px;
    border: 1px solid #2e2e2e;
    background-color: #141317;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-fourteen);
}

    .tran_add_drop_down .bootstrap-select > button {
        font-weight: 400;
        background-image: url(../images/dwn_arw_wgt.svg);
        background-repeat: no-repeat;
        background-position: right 8px top 8px;
        padding-right: 22px;
        background-size: 8px;
        color: #989898 !important;
        padding-left: 10px;
    }

    .tran_add_drop_down div.dropdown-menu {
        width: 100px;
    }

.sign_form_group span.error_text {
    display: none;
}

.slf_trnsfr_chck_bx {
    position: absolute;
    top: 50%;
    left: 23px;
    transform: translateY(-50%);
    z-index: 2;
    /* display: none; */
}

    .slf_trnsfr_chck_bx .inpt_chk_wrp span {
        width: 20px;
        height: 20px;
        background-color: #1f1f20;
    }

.inpt_chk_wrp {
    height: 20px;
}

.self_transfer_wrap
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not( .input-group-btn ) {
    width: 170px;
}

/* tooltip */
.tooltip {
    font-family: var(--primary_font);
}

    .tooltip.show {
        opacity: 1;
    }

.tooltip-inner {
    background-color: #111015;
    border: 1px solid #292929;
    color: #f4f4f4;
    font-size: var(--body_font);
    letter-spacing: 0.5px;
    max-width: fit-content;
    padding: 3px 10px;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #111015;
    -webkit-filter: drop-shadow(0px 1px 0px #292929);
    filter: drop-shadow(0px 1px 0px #292929);
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #111015;
    -webkit-filter: drop-shadow(0px 1px 0px #292929);
    filter: drop-shadow(0px 1px 0px #292929);
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #111015;
    -webkit-filter: drop-shadow(0px 1px 0px #292929);
    filter: drop-shadow(0px 1px 0px #292929);
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #111015;
    -webkit-filter: drop-shadow(0px 1px 0px #292929);
    filter: drop-shadow(0px 1px 0px #292929);
}

/* tooltip */

/* 06-09-24 */
#intgration_modal2 .srch_rslt_wrp ul li a:hover .int_ipt_wrp {
    box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
    border-color: #3f70f8;
}

.srch_sugg_wrp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

    .srch_sugg_wrp a {
        padding: 5px 10px;
        border-radius: 20px;
        background-color: rgb(63 112 248 / 15%);
        color: #fff;
        font-size: var(--body_font);
        text-transform: capitalize;
        margin-right: 7px;
        margin-bottom: 7px;
    }

        .srch_sugg_wrp a:hover,
        .srch_sugg_wrp a.active {
            box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
            background-color: #3f70f8;
        }

.exch_tbr_nme {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .exch_tbr_nme .c_i_img {
        width: 26px;
        height: 26px;
        border-radius: 100%;
        margin-right: 15px;
        position: relative;
    }

.exch_sec .exch_body_wrap + .exch_body_wrap {
    margin-top: 25px;
}

/* add-----------integretion_modal  12-09-24-------------------------------start */
.add_integrations_modal_wrap .modal-content {
    background-color: #070707;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 12px;
    font-weight: 400;
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
}

.add_integrations_modal_wrap .btn-close {
    background-image: url(../images/croos_modal.svg);
    background-size: 30px;
    top: 30px;
    position: absolute;
    right: 50px;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
}

.add_integrations_modal_wrap .modal-header {
    border-bottom: none;
}

    .add_integrations_modal_wrap .modal-header h5 {
    }

.add_integrations_wrap {
    padding: 10px 30px 50px 30px;
}

.note_wrap {
    display: flex;
    width: 100%;
    padding: 10px 16px;
    background-color: #070707;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    transition: var(--transtn);
    color: #fff;
    margin-bottom: 20px;
}

    .note_wrap p {
        margin-left: 10px;
        line-height: 20px;
        font-weight: 500;
        color: #a3a3a3;
    }

        .note_wrap p span {
            color: #fff;
        }

.tab_content_form_wrap .btn_wrp {
    display: block;
    width: 100%;
}

    .tab_content_form_wrap .btn_wrp .sbmit_btn {
        display: block;
        width: 100%;
    }

.tab_content_form_wrap .frm_wrp .btn_wrp button {
    display: block;
    width: 100%;
}

.integration_heading {
    margin-bottom: 8px;
}

    .integration_heading h6 {
        text-transform: uppercase;
    }

.advance_option_wrap {
    margin: 20px 0px;
    width: 100%;
    display: block;
}

.tab_content_list_wrap ul li {
    position: relative;
    counter-increment: li;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: var(--body_font);
    line-height: 20px;
    font-weight: 400;
    color: #a3a3a3;
}

    .tab_content_list_wrap ul li:after {
        width: 20px;
        height: 20px;
        background-color: rgb(30, 25, 36);
        border: 1px solid rgb(34, 29, 43);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        /* content: '0' counter(li); */
        content: counter(li);
        position: absolute;
        top: 0;
        left: 0;
        font-weight: 700;
        font-size: var(--font-ten);
    }

.extra_note_wrap p {
    line-height: 20px;
    font-weight: 400;
    color: #a3a3a3;
}

.tab_content_form_wrap .inpt_wrp input:not(:placeholder-shown) {
    border: 1px solid rgba(255, 255, 255, 0.21);
}

.inpt_wrp .file_upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.upload_wrap:hover {
    border: 1px solid #418aff6e;
}

.upload_wrap {
    height: 100px;
    padding: 10px 16px;
    background-color: #070707;
    border-radius: 8px;
    transition: var(--transtn);
    color: #fff;
    position: relative;
    border: 1px solid #ffffff36;
}

    .upload_wrap span {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        text-align: center;
        margin: 0 auto;
        transform: translateY(-50%);
        cursor: pointer;
        line-height: 20px;
        font-weight: 400;
        color: #a3a3a3;
    }

        .upload_wrap span a {
            color: #418bff;
            margin-right: 7px;
            padding-bottom: 2px;
        }

/* add------------integretion_modal  12-09-24-------------------------------end */
/* 13-09-24-------------------------css--------------------start */
.advance_option_wrap .accordion-item {
    margin-bottom: 10px;
}

    .advance_option_wrap .accordion-item h5 {
        line-height: 20px;
        font-weight: 400;
        color: #a3a3a3;
        padding: 5px 35px 5px 5px;
        border-radius: 5px;
        border: 1px solid transparent;
    }

        .advance_option_wrap .accordion-item h5 span {
            font-size: var(--font-ten);
            margin-left: 10px;
        }

        .advance_option_wrap .accordion-item h5:hover {
            background-color: rgb(163 163 163 / 41%);
        }

    .advance_option_wrap .accordion-item .accordion-button h5 span {
        transform: rotate(180deg);
    }

button.accordion-button.collapsed h5 span {
    transform: rotate(0deg);
}

.advance_option_wrap .accordion-body {
    background: #00000094;
    background-color: rgb(163 163 163 / 16%);
    padding: 15px 15px 20px;
    margin-top: 20px;
    border-radius: 8px;
}

    .advance_option_wrap .accordion-body label span {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(163 163 163 / 16%);
        color: #fff;
        font-size: var(--font-ten);
        margin-left: 10px;
    }

    .advance_option_wrap .accordion-body label {
        display: flex;
        margin-top: 15px;
    }

.advance_option_wrap .accordion-button::after {
    content: "\f078";
    position: absolute;
    top: 12px;
    font-family: "fontawesome";
    color: #a3a3a3;
    left: 149px;
    font-size: var(--body_font);
}

.advance_option_wrap .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.import_form_wrap {
    display: flex;
    align-items: center;
}

    .import_form_wrap span.type_crp.buy {
        margin-left: 15px;
    }

.begining_select {
    width: 100%;
    height: 50px;
    background-color: #070707;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    transition: var(--transtn);
    color: #fff;
    margin-top: 20px;
}

    .begining_select .bootstrap-select {
        width: 100% !important;
        padding: 10px 30px 10px 9px;
    }

    .begining_select .dropdown-toggle::after {
        display: block;
    }

.extra_note_wrap p a {
    color: #418bff;
}

.file_text {
    display: flex;
}

    .file_text span {
        margin-right: 15px;
    }

.file_upload_wrapper {
    margin-top: 30px;
    padding: 10px 15px;
    border-left: 5px solid #cdb7b7;
    background-color: #070707;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    transition: var(--transtn);
    color: #fff;
}

.file_text p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #a3a3a3;
}

.file_button_wrap ul li {
    counter-increment: none;
    font-size: var(--body_font);
}

    .file_button_wrap ul li:after {
        display: none;
    }

.file_button_wrap ul {
    display: flex;
    justify-content: space-between;
    margin-right: -5px;
    margin-left: -5px;
}

    .file_button_wrap ul li {
        padding-left: 0;
        margin-bottom: 0px;
        padding: 0 5px;
    }

        .file_button_wrap ul li a {
            padding: 10px 20px;
            background-color: #aa9f9f2b;
            border-radius: 5px;
            transition: var(--transtn);
            color: #fff;
            display: block;
            width: 100%;
            text-align: center;
            border: 1px solid transparent;
        }

            .file_button_wrap ul li a:hover {
                border: 1px solid #ffffff5c;
            }

            .file_button_wrap ul li a span img {
                max-width: 15px;
                margin-left: 7px;
            }

.file_button_wrap {
    margin-top: 20px;
}

.learn_div a {
    display: inline-flex;
    margin-top: 30px;
    border: 1px solid transparent;
    padding-bottom: 5px;
}

    .learn_div a:hover {
        border-bottom: 1px solid #fff;
    }

    .learn_div a span img {
        max-width: 15px;
        margin-left: 10px;
    }

.add_integrations_modal_wrap .nav {
    width: max-content;
    margin-top: 0px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #454448;
    margin-bottom: 0 !important;
}

.add_integrations_modal_wrap li.nav-item {
    padding: 6px;
    background: rgb(17, 16, 21);
}

.add_integrations_modal_wrap .nav-pills .nav-link {
    color: #fff;
}

    .add_integrations_modal_wrap .nav-pills .nav-link.active,
    .add_integrations_modal_wrap .nav-pills .show > .nav-link {
        border-radius: 8px;
        color: #fff;
        background: rgb(44, 38, 55);
    }

.tab_content_list_wrap {
    padding-left: 15px;
}

/* 13-09-24--------------------css-------------------end */
a.exchangeurl {
    color: #3f70f8;
}

.port_folio_img_wrap .pro_link > a {
    text-decoration: underline;
    color: #628bff;
    font-weight: 500;
}

.port_folio_img_wrap .pro_link #file-name {
    margin-left: 10px;
    font-size: var(--font-fourteen);
    /*    color: #ababab;*/
}

.trnsctn_wrp .tbl_itm:first-child img {
    width: 30px;
    border-radius: 50%;
}

.asd_acct .asd_cnct_lst_itm h6 {
    margin-bottom: 0;
}

    .asd_acct .asd_cnct_lst_itm h6 a {
        color: #ababab;
        display: block;
        width: 100%;
    }

        .asd_acct .asd_cnct_lst_itm h6 a svg path {
            fill: #ababab;
        }

        .asd_acct .asd_cnct_lst_itm h6 a:hover,
        .asd_acct .asd_cnct_lst_itm h6.active a {
            color: #fff;
        }

            .asd_acct .asd_cnct_lst_itm h6 a:hover svg path,
            .asd_acct .asd_cnct_lst_itm h6.active svg path {
                fill: #fff;
            }

.asd_acct .asd_cnct_lst_itm {
    border-bottom: 1px solid #292929;
}

    .asd_acct .asd_cnct_lst_itm + .asd_cnct_lst_itm {
        border-top: none;
    }

.exch_sec .exch_sec_body .tbl_itm:first-child p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 30px);
}

.exch_sec .exch_sec_body .tbl_itm:first-child,
.exch_sec .exch_sec_head .tbl_itm:first-child {
    width: 20%;
}

.exch_sec .exch_sec_body .tbl_itm:nth-child(2),
.exch_sec .exch_sec_head .tbl_itm:nth-child(2) {
    width: 12%;
}

.exch_sec .exch_sec_body .tbl_itm:first-child,
.exch_sec .exch_sec_head .tbl_itm:first-child {
    padding-right: 20px;
}

.exch_sec .exch_sec_body .tbl_itm:nth-child(3),
.exch_sec .exch_sec_head .tbl_itm:nth-child(3),
.exch_sec .exch_sec_body .tbl_itm:nth-child(5),
.exch_sec .exch_sec_head .tbl_itm:nth-child(5) {
    width: 12.28%;
}

.wing_pg.sign-contact-form {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .wing_pg.sign-contact-form h2 {
        margin-bottom: 20px;
    }

.exch_sec .exch_sec_body .tbl_itm i {
    margin-left: 5px;
}

/*10-04-2024*/
.report_block_table_content_wrap .content_wrap_item a img {
    margin-left: 15px;
    vertical-align: baseline;
}

/* dashboard */

.asd_cnct_lst_itm:has(h6 a):last-child {
    border-bottom: 1px solid #292929;
}

.asd_cnct_lst_itm h6:has(a) {
    margin-bottom: 0;
}

.asd_cnct_lst_itm h6 a svg {
    height: 25px;
}

.asd_cnct_lst_itm h6 a {
    color: #ababab;
}

    .asd_cnct_lst_itm h6 a:hover,
    .asd_cnct_lst_itm.active h6 a {
        color: #06d7a0;
    }

        .asd_cnct_lst_itm.active h6 a:not(.pth_svg) svg path,
        .asd_cnct_lst_itm h6:hover a:not(.pth_svg) svg path {
            fill: #06d7a0;
        }

        .asd_cnct_lst_itm.active h6 a.pth_svg svg path,
        .asd_cnct_lst_itm h6:hover a.pth_svg svg path {
            stroke: #06d7a0;
        }

.anncd_wrp {
    display: flex;
    align-items: center;
    font-size: var(--font-fourteen);
    color: #06d7a0;
    font-weight: 500;
}

    .anncd_wrp img {
        width: 24px;
        margin-right: 8px;
    }

.dashboard_wrp .mn_hdr_lft h2 {
    font-weight: 500;
}

.dshbrd_uppr_wrp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding-top: 20px;
    width: 100%;
}

.dshbrd_uppr_lft {
    flex: 0 0 auto;
    width: 71%;
    padding: 0 10px;
}

.dshbrd_uppr_rgt {
    flex: 0 0 auto;
    width: 29%;
    padding: 0 10px;
}

.dshbrd_graph_wrp {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(18, 17, 24, 0.5);
    border-radius: 10px;
    height: 100%;
}

    .dshbrd_graph_wrp > h3 {
        margin-bottom: 20px;
        color: #c6c6c6;
        line-height: 1;
        font-weight: 500;
    }

.amnt {
    display: flex;
    align-items: center;
}

    .amnt h6 {
        font-weight: 500;
        line-height: 1.2;
        margin-right: 8px;
    }

    .amnt .type_crp {
        font-weight: 500;
        padding: 10px;
    }

.graph_tabs_nav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

    .graph_tabs_nav button {
        margin-right: 8px;
        margin-bottom: 5px;
        padding: 10px 9px;
        color: #cccccc;
        background-color: #252525;
        border: 1px solid #252525;
        border-radius: 12px;
    }

        .graph_tabs_nav button:hover,
        .graph_tabs_nav button.active {
            color: #1a1a1a;
            background-color: #fff;
        }

/* dashboard */

/* start 07.10.24 */
.allreportlist {
    width: 100%;
    position: relative;
    display: flex;
    padding: 10px 17px 10px 17px;
}

    .allreportlist + .allreportlist {
        border-top: 2px dotted rgb(255 255 255 / 10%);
    }

    .allreportlist .qntty_wrp h6 {
        font-weight: normal;
        margin-bottom: 8px;
    }

    .allreportlist .qntty_wrp .gn_ls {
        width: fit-content;
    }

    .allreportlist .reportsprice {
        text-align: right;
        margin-left: auto;
        color: #fff;
        font-weight: 400;
    }

.reportsheading {
    padding: 23px 21px 12px;
}

.dshbrd_graph_wrp .reportsheading h3 {
    margin-bottom: 0px;
    color: #c6c6c6;
    font-weight: 500;
}

.viewallbtnsect {
    width: 100%;
    position: relative;
    padding: 0px 21px 21px;
}

.viewallbtn {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    color: #3f70f8;
    border: 1px solid #3f70f8;
    border-radius: 5px;
    font-size: var(--font-fourteen);
    font-weight: 500;
}

    .viewallbtn:hover {
        background: #3f70f8;
        color: #fff;
    }

.wed60 {
    width: 60%;
    padding: 0px 10px;
}

.wed40 {
    width: 40%;
    padding: 0px 10px;
    position: relative;
}

.dashbordsmallheading h3 {
    margin: 0px;
    color: #c6c6c6;
    line-height: 1;
    font-weight: 500;
}

.dshbrdflexwrap {
    display: flex;
}

.paibox {
    width: 40%;
    padding: 20px 0px;
}

.currenciesbox {
    width: 60%;
}

.paiimgbox {
    width: 100%;
    position: relative;
    padding-right: 30px;
    margin: 40px 0px 0px;
    text-align: center;
}

    .paiimgbox img {
        width: 100%;
        max-width: 220px;
    }

.currenciesbox {
    border-left: 2px dotted rgb(255 255 255 / 10%);
    padding: 20px 0px 20px 20px;
}

.integrationsbtn {
    padding: 12px 14px;
    border-radius: 5px;
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #fff;
    background: #3f70f8;
    border: 1px solid #3f70f8;
}

    .integrationsbtn:hover {
        background: transparent;
        color: #3f70f8;
    }

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

.dshbrd_graph_wrp.dshbrdflexwrap {
    padding: 0px 20px;
}

.currencieslistiteam {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.currenciesdtl,
.currenciesprice {
    width: 50%;
}

.currenciesdtl {
    display: flex;
    align-items: center;
    gap: 11px;
}

.currenciesprice {
    text-align: right;
}

.curicon {
    width: 30px;
}

    .curicon img {
        width: 100%;
    }

.curnname {
    font-weight: 500;
    color: #a3a3a3;
}

.curparsent {
    padding: 6px 10px;
    background: #1e1f27;
    border-radius: 50px;
    text-align: center;
    font-size: var(--body_font);
    font-weight: 500;
    color: #929292;
}

.currenciesprice h5 {
    font-size: var(--body_font);
    font-weight: 500;
    color: #f4f4f4;
    margin-bottom: 6px;
}

.currenciesprice h6 {
    color: #808080;
    font-weight: 400;
    font-size: var(--body_font);
}

.currencieslistiteam + .currencieslistiteam {
    margin-top: 20px;
}

.currencieslistbox {
    margin-top: 22px;
}

.currenciesbox .viewallbtnsect {
    padding: 0px;
    margin: 14px 0px 0px;
}

.userslistiteams {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.useardtl {
    flex: 0 0 35%;
}

.usearol,
.useardate {
    flex: 0 0 22.5%;
}

.inviteusear {
    flex: 0 0 20%;
}

.userslistiteams h5 {
    color: #c6c6c6;
    font-weight: 500;
    margin: 0px;
}

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

.userslistiteams h6 {
    font-size: var(--body_font);
    color: #a3a3a3;
    font-weight: normal;
}

.userslistiteams p {
    font-size: var(--font-fourteen);
    color: #808080;
    font-weight: normal;
    margin-top: 12px;
}

.userimg {
    display: block;
    width: 27px;
    height: 27px;
    border-radius: 100px;
    overflow: hidden;
}

    .userimg img {
        width: 100%;
    }

.inviteusear a {
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #06d7a0;
    background: #122d28;
    border: 1px solid #122d28;
    width: 100%;
    height: 37px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .inviteusear a:hover {
        background: transparent;
        border-color: #06d7a0;
    }

.usersunderbox {
    padding: 20px 0px 0px;
}

    .usersunderbox .dashbordsmallheading {
        padding: 0px 20px 16px;
    }

.needsattentionbox {
    padding: 20px 0px 0px;
}

    .needsattentionbox .userslistbox .userslistiteams .useardtl {
        flex: 1;
    }

    .needsattentionbox .dashbordsmallheading {
        padding: 0px 20px 20px;
    }

.btcoiniconlist {
    width: 168px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.bticonbox {
    width: 26px;
    z-index: 1;
}

    .bticonbox img,
    .btcheackiconbox img {
        width: 100%;
        border-radius: 50%;
    }

.btcheackiconbox {
    width: 18px;
    z-index: 1;
}

.btcoiniconlist::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    border-top: 1px dashed #fff;
}

.currencieslist {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.divaidline {
    display: block;
    height: 1px;
    width: 70px;
    border-top: 1px dashed #fff;
}

.gifts_donation {
    padding: 0px;
}

    .gifts_donation .dashbordsmallheading {
        padding: 28px 20px 11px 20px;
    }

    .gifts_donation .useardtl {
        flex: 0 0 30%;
    }

    .gifts_donation .usearol,
    .gifts_donation .useardate {
        flex: 0 0 25%;
    }

    .gifts_donation .useardate {
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .gifts_donation .useardate .gtficon {
            width: 20px;
        }

            .gifts_donation .useardate .gtficon img {
                width: 100%;
            }

    .gifts_donation .dashbordsmallheading .viewallbtn {
        width: 80px;
    }

.needsattentionbox .dashbordsmallheading {
    padding: 0 20px 20px;
}

    .needsattentionbox .dashbordsmallheading .viewallbtn {
        width: 80px;
    }

/* end 07.10.24 */

/* start 16.10.24 */

.crptsrc_pg .add_inte_btn {
    margin-bottom: 0;
}

.crptsrc_pg .asd_cnct_lst_itm:nth-of-type(2) {
    border-top: none;
}

/* end 16.10.24 */

.main_hdr,
aside {
    z-index: 9999;
}

.aside_closed .add_inte_btn {
    font-size: 0;
}

.AccountWalletSummary .wallet_tble_wrp .trns_tble_body .c_i .c_i_img {
    border-radius: 0;
}

.asd_cnct_lst_itm ul li label {
    line-height: 17px;
}

.inpt_chk_wrp {
    height: 15px;
    display: flex;
    align-items: center;
}

/*21-10-24*/
.tooltip,
.modal-backdrop {
    z-index: 9999;
}

.modal {
    z-index: 10000;
}

div:where(.swal2-container) {
    z-index: 10000 !important;
}

/* start 17.10.24 */
.eaditbodalbox .modal-dialog {
    max-width: 1000px;
}

    .eaditbodalbox .modal-dialog .modal-content {
        border: 1px solid #fff;
        background-color: #000;
        border-radius: 10px;
        height: 100%;
    }

.eaditbodalbox .modal-title {
    font-size: var(--font-fourteen);
    font-weight: 500;
    white-space: nowrap;
    line-height: normal;
}

.eaditbodalbox .modal-body .tran_add_drop_down {
    margin: 0px;
    height: 50px;
}

    .eaditbodalbox .modal-body .tran_add_drop_down .dropdown.bootstrap-select {
        width: 100%;
    }

.eaditbodalbox .modal-header,
.eaditbodalbox .modal-body {
    padding: 20px;
}

.eaditbodalbox .form-control {
    border: 1px solid #2e2e2e;
    background-color: #141317;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #fff;
}

.eaditbodalbox .btn.viewallbtn {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 30px;
}

.eaditbodalbox .form-control::placeholder {
    color: #989898;
}

.eaditbodalbox .btn-close {
    color: #fff;
    background: none;
    font-size: var(--font-fourteen);
}

/* start redio */
.inpt_radio_wrp {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .inpt_radio_wrp span {
        border: 1px solid rgba(255, 255, 255, 0.33);
        width: 22px;
        height: 22px;
        border-radius: 100px;
    }

    .inpt_radio_wrp input {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0;
        cursor: pointer;
    }

        .inpt_radio_wrp input:checked ~ span {
            border-color: #345d9d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .inpt_radio_wrp input:checked ~ span::after {
                content: "";
                background: #345d9d;
                width: 12px;
                height: 12px;
                position: relative;
                border-radius: 100px;
            }

.flexrediolist {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px;
}

/* end redio */

.pcontent {
    width: 100%;
    position: relative;
    margin: 20px 0px;
}

    .pcontent p {
        font-weight: normal;
        line-height: 24px;
        font-weight: 400;
        line-height: 15px;
        color: rgb(131, 131, 131);
    }

        .pcontent p + p {
            margin-top: 15px;
        }

.frombox label {
    font-size: var(--font-fourteen);
    margin-bottom: 10px;
}

.frombox {
    margin-bottom: 20px;
}

/* end 17.10.24 */

/* start calendar 18.10.24 */
.calendar-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(255 255 255 / 17%);
    margin-top: 20px;
    max-width: 460px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

    .calendar-table th,
    .calendar-table td {
        padding: 10px;
        border: 1px solid rgb(255 255 255 / 17%);
    }

    .calendar-table th {
        color: #a3a3a3;
    }

    .calendar-table td {
        height: 40px;
        cursor: pointer;
    }

        .calendar-table td:hover {
            background-color: #3f70f8;
            color: #fff;
        }

        .calendar-table td.active {
            background-color: #3f70f8;
            color: white;
        }

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

.calendar-table td.active,
.calendar-table td.selected {
    background-color: #3f70f8;
    color: white;
}

/* end calendar 18.10.24 */

/* 28.10.24 */

.modal-open .tooltip {
    z-index: 10000;
}

.gifts_donation {
    display: flex;
    flex-direction: column;
}

    .gifts_donation .userslistbox {
        flex-grow: 1;
    }

.no_gft {
    height: calc(100% - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    margin-top: 18px;
}

/* 30_10_2024 */
.mob_navo {
    display: none;
}

/* 30.10.24 dashboard */
.dshbrd_uppr_lft .dshbrd_graph_wrp {
    display: flex;
    flex-direction: column;
}

    .dshbrd_uppr_lft .dshbrd_graph_wrp .graph_wrp {
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

        .dshbrd_uppr_lft .dshbrd_graph_wrp .graph_wrp nav {
            margin-top: auto;
        }

/* 30.10.24 dashboard */

/* 4-11-24 ---start*/

.add_integrations_modal_wrap .chk_ipn_bx .back_button {
    margin-right: 15px;
}

/* 4-11-24 ----end*/

/*05-11-24  start*/

.asd_cnct_lst_itm:hover h6 {
    color: #06d7a0;
}

.asd_cnct_lst_wrp .asd_cnct_lst_itm h6 a:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/*05-11-24  end*/

/* 08-11-24 */

.wllt_slct_pk > p {
    line-height: 20px;
    font-weight: 500;
    color: #a3a3a3;
    margin-bottom: 20px;
}

.srch_slctpckr {
    min-width: 100%;
    max-width: 100%;
}

    .srch_slctpckr .dropdown-toggle .filter-option-inner-inner img {
        width: 25px;
        height: 25px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 10px;
    }

    .srch_slctpckr .dropdown-toggle {
        width: 100%;
        height: 50px;
        padding: 10px 16px;
        background-color: #070707;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.21);
        transition: var(--transtn);
        color: #808080 !important;
        padding-right: 40px;
        font-weight: 400;
    }

.bootstrap-select.srch_slctpckr .dropdown-toggle .filter-option {
    height: auto;
}

.srch_slctpckr .dropdown-toggle.bs-placeholder {
    color: #fff !important;
}

.srch_slctpckr .dropdown-toggle::after {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    content: "";
    right: 12px;
    top: 16px;
    background-image: url(../images/dwn_arw_ash.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    border: none;
    transition: var(--transtn);
}

.srch_slctpckr .dropdown-toggle.show::after {
    transform: scaleY(-1);
}

.srch_slctpckr input:focus {
    border: 1px solid rgba(255, 255, 255, 0.21);
    background-color: transparent;
}

.srch_slctpckr input {
    color: #fff !important;
}

.srch_slctpckr ul.dropdown-menu.inner {
    padding-top: 10px;
    max-height: 230px;
    overflow: auto;
}

.tab_content_form_wrap .inpt_wrp .srch_slctpckr ul.dropdown-menu li a {
    padding: 10px 20px;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #80808040;
}

.tab_content_form_wrap
.inpt_wrp
.srch_slctpckr
ul.dropdown-menu
li:last-of-type
a {
    border-bottom: none;
}

.bootstrap-select.srch_slctpckr .dropdown-menu li a span.text {
    display: flex;
    align-items: center;
}

    .bootstrap-select.srch_slctpckr .dropdown-menu li a span.text img {
        width: 30px;
        height: 30px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 10px;
    }

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    display: flex;
    align-items: center;
    font-size: var(--font-fourteen);
}

    .bootstrap-select.srch_slctpckr .dropdown-menu li a span.text span,
    .bootstrap-select .dropdown-toggle .filter-option-inner-inner span {
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 400;
    }

.bootstrap-select.srch_slctpckr .dropdown-menu li.no-results {
    padding: 15px 10px;
    text-align: center;
    background: transparent;
    color: #fff;
}

.srch_slctpckr.bootstrap-select .dropdown-menu li:has(.not_shown) {
    display: none;
}

.srch_slctpckr .dropdown-menu div.inner {
    overflow: visible !important;
}

/* 08-11-24 */

/*13-11-2024*/

#modelReportPopup .modal-title {
    font-size: var(--font-fourteen);
    font-weight: 500;
    text-transform: capitalize;
}

#modelReportPopup .modal-header {
    padding: 25px 30px;
}

#modelReportPopup .modal-body table td:last-child {
    width: 135px;
    word-break: break-all;
    line-height: 1.5;
}

.leftside {
    margin-left: auto;
}

    .leftside .hdr_prc_wr > span {
        font-size: var(--body_font);
        margin-right: 20px;
    }

    .leftside.mn_hdr_rgt .bootstrap-select > button {
        font-size: var(--font-fourteen);
        padding-right: 25px;
        background-size: 15px;
    }

/*14-11-2024*/

.accountimage {
    width: 22px;
    margin-right: 7px;
}

.currencieslist::after {
    position: absolute;
    content: " ";
    width: 102px;
    border: 1px dashed #fff;
    left: 64px;
}

.currencieslist {
    justify-content: space-between;
    position: relative;
    width: 226px;
}

.userslistiteams h6 {
    background: #111116;
    position: relative;
    z-index: 2;
}

/*15-11-2024*/

.bootstrap-select ul.dropdown-menu > li.disabled {
    display: none !important;
}

/*18-11-2024*/

.report_block_button p.saving {
    line-height: 24px;
    padding: 0 7px;
    font-weight: 200;
}

.report_block_button p.rd_txt {
    color: #ac2123;
    font-weight: 500;
}

.report_block_button p.gr_txt {
    color: #01a713;
}

.account_image_src {
    width: 20px;
    margin-right: 10px;
}

.self_transfer_modal table .bootstrap-select > button {
    padding-right: 18px;
    background-image: url(../images/dwn_arw.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

/* start 19.11.24 */
.pdr1 {
    padding-right: 1px;
}

.totallosses_tab .nav-item .nav-link {
    color: #ada6a6;
    height: 40px;
    min-width: 120px;
    padding: 0px 6px;
    background-color: rgb(88 89 90 / 16%);
    font-size: var(--body_font);
}

    .totallosses_tab .nav-item .nav-link.active {
        color: #fff;
        background-color: rgb(63, 112, 248);
    }

.totallosses_tab .nav-item + .nav-item {
    margin-left: 5px;
}

.capitalGainsaccordion .accordion-item,
.reportdata .accordion-item {
    margin-top: 15px;
    background-color: transparent;
    border: 1px solid #474747;
    border-radius: 4px !important;
    overflow: hidden;
    position: relative;
}

.capitalGainsaccordion .accordion-button {
    background-color: transparent;
    padding: 10px;
    color: #808080;
    font-size: var(--body_font);
    box-shadow: none;
    font-weight: 400;
}

    .capitalGainsaccordion .accordion-button h6 {
        width: 50%;
    }

    .capitalGainsaccordion .accordion-button span {
        width: 50%;
        text-align: right;
        padding-right: 10px;
        color: #fff;
    }

    .capitalGainsaccordion .accordion-button:hover {
        background-color: #a3a3a330;
    }

    .capitalGainsaccordion .accordion-button::after {
        background-image: url(../images/report_arrow.svg) !important;
        background-size: 7px;
        rotate: 270deg;
        width: 8px;
        height: 12px;
        right: 0;
        content: "";
    }

.accordionPlusbutton {
    position: absolute;
    left: 20px;
    width: 18px;
    height: 18px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    top: 20px;
    background-color: #a3a3a330 !important;
    border-radius: 4px !important;
    z-index: 3;
    font-size: var(--font-ten);
}

    .accordionPlusbutton::after {
        display: none;
    }

.bdrtop {
    border-top: 1px solid #474747;
}

.listiteam_flex {
    display: flex;
    align-items: center;
    width: 100%;
}

.totallosses_tab {
    max-width: 520px;
    margin-left: auto;
}

.fleximgtext {
    margin-left: 0px;
    width: 30%;
    color: #8c8c8c;
    display: flex;
    align-items: center;
}

.accordion-item.accordionitemNewstyl {
    border-radius: 0px !important;
    padding: 8px 15px;
    border: 0px;
    margin: 0px;
}

.disabled {
    color: #565353 !important;
    background-color: rgb(88 89 90 / 16%) !important;
    pointer-events: none;
}

.btnsave {
    color: #fff;
    background-color: rgb(63, 112, 248);
    font-size: var(--font-fourteen);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 100px;
    margin-left: auto;
}

    .btnsave:hover {
        background-color: rgb(63 112 248 / 35%);
    }

/* end 19.11.24 */

/*20-11-2024*/

.report_item_text .js-btn-tooltip {
    font-size: var(--font-fourteen);
    margin-left: 6px;
}

.fncl_yr {
    font-size: var(--font-fourteen);
    text-transform: capitalize;
    margin-right: 20px;
}

.reports_wrappers .btnsave {
    margin: 20px 20px 20px auto;
}

.invtwrp {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .invtwrp h6 {
        margin-bottom: 20px;
        max-width: 400px;
        text-align: center;
        line-height: 24px;
    }

    .invtwrp .inviteusear a {
        width: 200px;
        height: 40px;
    }

#edit_acc_no .fv-plugins-message-container--enabled {
    position: relative;
}

.cls_disable {
    pointer-events: none;
}

.trnsctn_wrp .exch_sec .mn_hdr_lft {
    width: 100%;
}

    .trnsctn_wrp .exch_sec .mn_hdr_lft .mn_hdr_rgt {
        float: none;
        margin-left: auto;
    }

/*20-11-2024*/

/*22-11-2024*/
.mn_hdr.annccdmnhdr {
    margin-bottom: 30px;
}

    .mn_hdr.annccdmnhdr .mn_hdr_lft {
        align-items: center;
    }

.trnsctn_wrp .mn_hdr.annccdmnhdr h2 {
    margin-bottom: 0 !important;
}

.annccdmnhdr .anncd_wrp img {
    width: 25px;
}

/* start 25.11.24 */
.accordionPlusbutton {
    box-shadow: none !important;
}

    .accordionPlusbutton.collapsed .fa-minus {
        display: none;
    }

.accordion-button.accordionPlusbutton .fa-plus {
    display: none;
}

.accordion-button.accordionPlusbutton.collapsed .fa-plus {
    display: block;
}

.listiteam_flex.listgap {
    padding-top: 6px;
}

.termgainslistbox.insidetermgainslistbox ul {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0px;
}

    .termgainslistbox.insidetermgainslistbox ul li {
        width: 20%;
    }

        .termgainslistbox.insidetermgainslistbox ul li:nth-child(1) {
            width: 60%;
        }

        .termgainslistbox.insidetermgainslistbox ul li:last-child {
            text-align: right;
        }

.bdrbtm {
    border-bottom: 1px solid #474747;
}

.pdlr20 {
    padding-left: 20px;
    padding-right: 20px;
}

.termgainslistbox.insidetermgainslistbox ul li h5 {
    font-size: var(--font-fourteen);
    color: #fff;
}

.termgainslistbox.insidetermgainslistbox ul li {
    color: #8c8c8c;
    font-size: var(--body_font);
}

    .termgainslistbox.insidetermgainslistbox ul li:nth-child(1) h5 {
        margin-left: 34px;
    }

.accordionbodystyl {
    padding: 10px 10px 20px;
    border-top: 1px solid #474747;
}

/* end 25.11.24 */

/*start 28.11.24*/
.nodatah {
    color: #ac2123;
    margin-left: 70px;
}

/*end 28.11.24*/

/*29-11-2024*/

.trnsctn_wrp .bootstrap-select .dropdown-menu li a span.text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 02-12-2024 start */
.sett_pri_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inpt_wrp > .dropdown {
    width: 100% !important;
    height: 50px;
    padding: 12px 0;
    background-color: #070707;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    transition: var(--transtn);
    color: #fff;
}

    .inpt_wrp > .dropdown > .dropdown-toggle {
        padding: 0 16px;
    }

    .inpt_wrp > .dropdown .filter-option-inner-inner {
        color: #dddddd75;
    }

.sett_pri_table_wrp {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    background-color: rgb(18 17 24 / 53%);
    margin-top: 25px;
}

    .sett_pri_table_wrp .dropdown-item {
        color: #fff;
        padding: 15px 20px;
        text-transform: capitalize;
    }

        .sett_pri_table_wrp .dropdown-item img {
            margin-right: 10px;
            width: 18px;
        }

    .sett_pri_table_wrp .dropdown-menu {
        background-color: #141117;
        padding: 0;
        overflow: hidden;
    }

    .sett_pri_table_wrp .dropdown-item:hover {
        background-color: rgb(163 163 163 / 10%);
    }

.sett_pri_table {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #454448;
    padding: 19px 20px;
    font-size: var(--font-fourteen);
    font-weight: 500;
    color: #c6c6c6;
}

    .sett_pri_table .sett_pri_table_col {
        width: 25%;
    }

    .sett_pri_table .sett_pri_table_btns {
        margin-left: auto;
    }

.sett_pri_table_btns .sbmit_btn {
    font-size: var(--font-fourteen);
}

.sett_pri_table_btns a svg {
    width: 20px;
    height: 20px;
}

.toggle_icon,
.bin_icon {
    margin-left: 25px;
}

.sett_pri_table:last-child {
    border-bottom: none;
}

.sett_pri_table_col:first-child {
    width: 4%;
    padding-left: 0;
}

    .sett_pri_table_col:first-child img {
        width: 30px;
        border-radius: 50%;
    }

.sett_pri_table {
    color: #808080;
}

.sett_pri_table_title {
    color: #c6c6c6;
    font-size: var(--font-fourteen);
}

.tooltip {
    position: relative;
    display: inline-block;
    opacity: 1;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: auto;
        background-color: #141117;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 6px 20px;
        transition: all 0.3s ease-in-out;
        position: absolute;
        z-index: 1;
        bottom: 110%;
        left: 50%;
        transform: translateX(-50%);
        text-transform: capitalize;
    }

    .tooltip img {
        width: 18px;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

.settings_popup_new_msg {
    color: red;
    font-size: var(--font-fourteen);
    padding-top: 5px;
}

/* dev 2 */
.type_crp {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cr_so_ex .mn_hdr.annccdmnhdr {
    position: relative;
}

.gifts_donation .useardtl {
    flex: 0 0 25%;
}

/* 02-12-2024 end */

/*04-12-2024*/

.totalgiftdonationincome .accordion_button {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 14px 40px 14px 20px;
    border-bottom: 1px solid #474747;
    cursor: pointer;
    position: relative;
}

    .totalgiftdonationincome .accordion_button::after {
        background-image: url(../images/report_arrow.svg);
        background-size: auto;
        background-repeat: no-repeat;
        background-position: center;
        rotate: 90deg;
        width: 10px;
        height: 14px;
        position: absolute;
        content: "";
        right: 20px;
        top: 15px;
    }

    .totalgiftdonationincome .accordion_button:not(.collapsed):after {
        rotate: 270deg;
        top: 15px;
    }

    .totalgiftdonationincome .accordion_button h3 {
        margin-right: auto;
        font-weight: 500;
        line-height: 1;
    }

    .totalgiftdonationincome .accordion_button span {
        font-size: var(--font-fourteen);
        font-weight: 500;
        line-height: 1;
    }

.totalgiftdonationincome
.termgainslistbox.insidetermgainslistbox
ul
li:last-child {
    width: 40%;
}

.totalgiftdonationincome
.termgainslistbox.insidetermgainslistbox
ul
li:nth-child(1)
h5 {
    margin-left: 0;
}

.totalgiftdonationincome .accordionbodystyl {
    padding: 10px 40px 10px 20px;
}

.totalgiftdonationincome .account_image_src {
    width: 25px;
}

.nodatafound {
    list-style: none;
    text-align: center;
    padding: 20px 20px 25px;
    border-bottom: 1px solid #474747;
    margin: 0 -40px 0 -20px;
}

/*04-12-2024*/

/* 09-12-2024 Start */
.settings_pri_wrapper .mn_hdr_lft {
    margin-right: auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.settings_pri_wrapper .mn_hdr {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

/* 09-12-2024 End */

/*12-12-2024 start */
.dshbrd_graph_wrp .no_users_message {
    text-align: center;
    margin-top: 50px;
}

.sett_pri_table_wrp_sub .not_user {
    padding: 20px;
    text-align: center;
}

/*12-12-2024 end */

/*09-01-2025 start */

.add_integrations_modal_wrap .nav {
    border: none;
}

.add_integrations_modal_wrap li.nav-item {
    background-color: transparent;
    margin-right: 1px;
}

    .add_integrations_modal_wrap li.nav-item button {
        padding: 8px 15px 10px;
        background-color: rgb(44, 38, 55);
    }

        .add_integrations_modal_wrap li.nav-item button:not(.active) {
            opacity: 0.6;
        }

/*09-01-2025 end */

/*15-01-2025 start*/

.bootstrap-select ul.dropdown-menu a {
    padding: 6px 10px;
    line-height: 20px;
}

/*15-01-2025 end*/

/* 20-01-2025 */
.add_integrations_modal_wrap .wllt_slct_pk.inpt_wrp > .dropdown {
    padding: 0;
    background-color: transparent;
    border: none;
}

.eaditbodalbox .form-control > .dropdown-toggle {
    padding: 0 16px;
}

.autocomplete-suggestions {
    border: 1px solid #ccc;
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background-color: #000;
    width: 100%;
    color: #fff;
    z-index: 999;
}

    .autocomplete-suggestions div {
        padding: 8px;
        cursor: pointer;
    }

        .autocomplete-suggestions div:hover {
            background-color: #ddd;
            color: #000;
        }

.frombox {
    position: relative;
}

/* 20-01-2025 */

/*10-02-2025*/
.txid ul li {
    display: inline-flex;
    align-items: center;
    font-size: var(--font-fourteen);
    color: #c6c6c6;
    gap: 7px;
}

.txid {
    margin: 4px 0 18px;
    padding: 0 16px;
}

.txidnmbr {
    padding: 10px 12px;
    border-radius: 5px;
    transition: 0.4s all;
    /* text-overflow: ellipsis;*/
    overflow: hidden;
    white-space: nowrap;
    /* width: 212px;*/
}

    .txidnmbr:hover {
        background: #265aeb;
    }

.txid .fa-clone {
    cursor: pointer;
    font-size: var(--font-fourteen);
    padding: 10px;
    margin-left: -10px;
    transition: 0.4s all;
    border-radius: 5px;
}

    .txid .fa-clone:hover {
        background: #265aeb;
    }

/*10-02-2025*/

/*18-02-2025*/
.dshbrd_graph_wrp .userslistiteams .useardtl:nth-child(2) {
    margin-left: 10px;
}

.remove-file {
    cursor: pointer;
    font-size: var(--font-fourteen);
}

.selected-file {
    display: flex;
    gap: 10px;
    margin: 12px 0 0 0;
}

.importlistcontainer {
    margin-bottom: 12px;
}

    .importlistcontainer > ul > li {
        background-color: rgb(44, 38, 55);
        position: relative;
        font-size: var(--font-fourteen);
        border-radius: 10px;
    }

        .importlistcontainer > ul > li + li {
            margin-top: 15px;
        }

    .importlistcontainer li p {
        padding: 5px 15px;
        display: flex;
        align-items: center;
    }

        .importlistcontainer li p .txidnmbr {
            padding: 2px 8px;
            font-size: var(--body_font);
            background-color: #265aeb;
        }

        .importlistcontainer li p.sync {
            padding: 8px 15px;
            font-size: var(--body_font);
        }

        .importlistcontainer li p span {
            margin-right: 10px;
        }

        .importlistcontainer li p a {
            padding: 3px;
            border-radius: 4px;
            fill: #fff;
        }

            .importlistcontainer li p a:hover {
                background-color: rgb(255 255 255 / 60%);
            }

        .importlistcontainer li p + p {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .importlistcontainer li p span.implst_nme {
            max-width: 65%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .importlistcontainer .cht_dts_wp {
        top: 13px;
    }

        .importlistcontainer .cht_dts_wp svg {
            width: 15px;
            height: 15px;
            margin-right: 5px;
            vertical-align: -2px;
            fill: #fff;
        }

.sync {
    color: rgb(255 255 255 / 60%);
}

/* .add_integrations_modal_wrap .add_integrations_tab_wrap .tab-content .row > .col-md-6:last-of-type{
    margin-top: -230px;
} */

/* 04-03-2025 */

.access_denied {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

    .access_denied h3 {
        margin-bottom: 10px;
    }

    .access_denied p {
        max-width: 370px;
        text-align: center;
        line-height: 20px;
        margin-bottom: 10px;
        font-weight: 400;
    }

    .access_denied a {
        font-weight: 500;
        text-decoration: underline;
    }

        .access_denied a:hover {
            color: #3f70f8;
        }

    .access_denied .access_denied_icon {
        width: 70px;
        height: 70px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        color: #111015;
        margin-bottom: 30px;
        font-size: 30px;
    }

/*11-03-2025*/

.currencieslist::after {
    display: none;
}

.userslistiteams h6 {
    background: unset;
}

.btcbox:last-child .bticonbox::before {
    position: absolute;
    content: " ";
    width: 102px;
    max-width: 102px;
    border: 1px dashed #fff;
    left: unset;
    top: 50%;
    transform: translateY(-50%);
    right: 100% !important;
}

.bticonbox {
    position: relative;
}

.btcbox:last-child {
    margin-left: auto;
    overflow: hidden;
    width: 100%;
    justify-content: end;
    position: relative;
}

/*17-03-2025*/
.banner::before {
    position: absolute;
    width: 125%;
    right: -25%;
    bottom: 45%;
    height: 50%;
    background-color: #111015;
    content: "";
    z-index: 2;
    transform: rotate(13deg);
    border-bottom: 8px solid;
    border-image-source: linear-gradient( 258deg, #82a1f6 0%, #3f70f8 20%, #3f70f8 81%, #82a1f6 100% );
    border-image-slice: 1;
}

.banner::after {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 75%;
    background-color: #171717;
    content: "";
    z-index: 1;
}

.usersunderbox .userslistbox .userslistiteams .useardate,
.usersunderbox .userslistbox .userslistiteams .usearol {
    flex: 0 0 32.5%;
}

/*20-03-2025*/

.tab_item.active {
    position: relative;
    pointer-events: none;
    border: 1px solid #3f70f8;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

    .tab_item.active::before {
        position: absolute;
        top: -38px;
        left: -1px;
        right: -1px;
        border: 1px solid #3f70f8;
        content: "Selected";
        padding: 8px 15px;
        background-color: #3f70f8;
        font-weight: 500;
        color: #fff;
        text-align: center;
        border-radius: 25px 25px 0 0;
    }

.settings_plans_tab_wrap .tab-content .tab-pane .row {
    justify-content: center;
}

/* .tab_item.disabld {
    background: rgb(44 38 55 / 80%);
    pointer-events: none;
    opacity: 0.7;
} */

.sett_account_plan + .sett_account_plan {
    margin-top: 30px;
}

.payment_success {
    padding: 50px 40px;
    background: #070707;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 12px;
}

    .payment_success h2 {
        font-weight: 500;
        margin-bottom: 40px;
        text-align: center;
    }

    .payment_success h5 {
        font-weight: 500;
        margin-bottom: 20px;
    }

        .payment_success h5:not(:first-of-type) {
            margin-top: 30px;
        }

    .payment_success ul li {
        line-height: 1.2;
        font-weight: 500;
        color: #fff;
        word-break: break-all;
        border: 1px solid rgb(255 255 255 / 40%);
        padding: 10px;
        border-radius: 8px;
    }

        .payment_success ul li strong {
            font-weight: 500;
            display: block;
            color: #a3a3a3;
            margin-bottom: 5px;
        }

        .payment_success ul li + li {
            margin-top: 15px;
        }

    .payment_success .btn_wrp {
        text-align: center;
        margin-top: 25px;
    }

        .payment_success .btn_wrp .sbmit_btn {
            padding: 16px 24px;
            min-width: 200px;
        }

.sett_list_wrap {
    position: relative;
}

    .sett_list_wrap .datntm {
        position: absolute;
        top: -20px;
        right: 12px;
        line-height: 1;
        /*        color: #a3a3a3;*/
    }

    .sett_list_wrap p {
        font-size: var(--body_font);
        margin-top: 12px;
    }

/*20-03-2025*/

/*28-03-2025*/

.rpt_bar_wrp {
    align-items: center;
    padding: 5px 12px;
    margin-bottom: 10px;
}

.totalgiftdonationincome .accordion_button:last-of-type {
    border-bottom: none;
}

/* 31-03-2025 */
.userslistbox {
    min-height: 350px;
}

.inpt_lbl_wrrpr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

    .inpt_lbl_wrrpr label {
        flex: 0 0 auto;
        width: 15%;
        text-transform: capitalize;
        padding: 7px 7px 0;
    }

.frm_fld_wrp {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 85%;
}

.add_on_wrp {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #454448;
}

    .add_on_wrp h2 {
        font-weight: 500;
        margin-bottom: 60px;
        font-size: var(--body_font);
    }

    .add_on_wrp .row {
        justify-content: center;
    }

.sign_in_mthd {
    padding: 30px 0;
    border-top: 1px solid #454448;
}

.pswrd_wrpr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

    .pswrd_wrpr h6 {
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .pswrd_wrpr button.whit_butt {
        padding: 15px 30px;
    }

.conf_passwrd {
    display: flex;
    flex-wrap: wrap;
    margin: 30px -7px 0;
}

    .conf_passwrd label {
        padding: 0 0 10px;
    }

.inpt_wrp.col-4 {
    width: 33.3333%;
}

.conf_btn_wrp {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 7px 0;
}

    .conf_btn_wrp button {
        padding: 0 10px;
        height: 42px;
        min-width: 175px;
        width: fit-content;
    }

.password_hnt {
    padding: 5px 7px 0;
}

.err_txt {
    padding: 5px 5px 0;
    color: #f74040;
}

/*01-04-2025*/
.btcbox:last-child .bticonbox::before {
    right: 125% !important;
}

.addonplan h5 {
    margin-bottom: 10px;
}

.addonplan .sett_list_wrap .datntm {
    top: -20px;
    right: 5px;
}

.addonplan .sett_list_wrap {
    padding: 10px 15px;
}

.tab_item.active .whit_butt {
    opacity: 0.6;
}

.popover {
    background-color: #111015;
    border: 1px solid #292929;
    z-index: 10000;
}

.popover-body {
    color: #f4f4f4;
}

    .popover-body ul li {
        padding-left: 12px;
        position: relative;
    }

        .popover-body ul li::before {
            position: absolute;
            content: "";
            left: 0;
            top: 7px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: #f4f4f4;
        }

        .popover-body ul li + li {
            margin-top: 10px;
        }

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after,
.bs-popover-end > .popover-arrow::after {
    border-right-color: #111015;
    -webkit-filter: drop-shadow(-1px 0 0px #111015);
    filter: drop-shadow(-1px 0 0px #111015);
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after {
    border-left-color: #111015;
    -webkit-filter: drop-shadow(1px 0px 0px #111015);
    filter: drop-shadow(1px 0 0px #111015);
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after,
.bs-popover-bottom > .popover-arrow::after {
    border-bottom-color: #111015;
    -webkit-filter: drop-shadow(0px 1px 0px #111015);
    filter: drop-shadow(0px -1px 0px #111015);
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after,
.bs-popover-top > .popover-arrow::after {
    border-top-color: #111015;
    -webkit-filter: drop-shadow(0px 1px 0px #111015);
    filter: drop-shadow(0px 1px 0px #111015);
}

.popover-arrow::before {
    display: none !important;
}

/* 03-04-2025 */

.trandisable {
    width: 100%;
    background: transparent;
    height: auto;
    border-radius: 10px;
}

    .trandisable + .trandisable {
        margin-top: 5px;
    }

.tranprogressbar {
    height: 8px;
    background: rgb(128 128 128 / 15%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .tranprogressbar::after {
        animation: 1.6s linear 0.5s infinite normal none running rnng_amino;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.15), transparent );
        content: "";
        position: absolute;
        transform: translateX(-100%);
        inset: 0px;
    }

.img_bar_rounded {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.tbl_itm:nth-of-type(9) .trandisable,
.tbl_itm:nth-of-type(10) .trandisable {
    justify-content: center;
}

@keyframes rnng_amino {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.currencyname {
    width: 24px;
    height: 24px;
    background: rgb(63 112 248 / 50%);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: var(--body_font);
    margin-right: 10px;
    color: #fff;
    text-transform: uppercase;
    max-width: 24px;
}

.c_i_text {
    flex-grow: 1;
}

.crnc_wrp > span {
    flex-grow: 1;
}

.crnc_img:has(.progress.trandisable) {
    border-radius: 0;
}

.tab_list_wrap.sett_list_wrap {
    height: auto;
}

/*04-04-2025*/

.blankpi {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

    .blankpi .inviteusear {
        width: 100%;
        flex: 0 0 auto;
    }

        .blankpi .inviteusear a {
            padding: 0 15px;
            width: auto;
            display: inline-flex;
        }

/*04-04-2025*/

/*07-04-2025*/
/*.tbl_itm:first-child {
    max-width: 4%;
}*/

.paiimgbox {
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
}

.piebx_wrp {
    width: 100%;
    max-height: 275px;
    display: flex;
    justify-content: center;
}

/* 08-04-25 start */

.rpt_bar_wrp {
    /* background-color: rgb(63 112 248 / 40%); */
    background-color: rgba(217, 156, 0, 0.2);
    border-radius: 6px;
    padding: 12px;
    padding-right: 40px;
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

/* review page */
.revew_wrap .mn_hdr_2 {
    justify-content: flex-end;
}

.dropdown-item i {
    margin-right: 10px;
}

.review_drawer {
    color: rgb(199, 209, 219);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px -5px, rgba(0, 0, 0, 0.14) 0px 16px 24px 2px, rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 10000;
    position: fixed;
    top: 0px;
    right: 0px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 0 auto;
    outline: 0px;
    background: rgb(14, 11, 15);
    border-left: 1px solid rgb(34, 29, 43);
    border-color: rgb(34, 29, 43);
    transition: var(--transtn);
    transform: translateX(100%);
    min-width: 675px;
    max-width: 750px;
    overflow-x: hidden;
}

    .review_drawer.show {
        transform: translateX(0);
    }

.rev_drwr_hddn {
    overflow: hidden;
    height: 100vh;
}

.review_drawer .revdrwr_hding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.revdrwr_hding .cross_drwr {
    font-size: var(--font-twenty);
    font-weight: 500;
}

.review_form {
    padding: 24px;
}

    .review_form .frombox {
        width: 100%;
    }

        .review_form .frombox label {
            display: block;
        }

        .review_form .frombox .form-control {
            border: 1px solid #2e2e2e;
            background-color: #141317;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            color: #fff;
            padding: 6px 12px;
        }

        .review_form .frombox .datepick {
            border: 1px solid #2e2e2e;
            background-color: #141317;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            color: #fff;
            padding: 6px 12px;
            width: 100%;
        }

        .review_form .frombox.outing_box {
            display: flex;
            flex-direction: column;
            border: 1px solid rgb(30, 25, 36);
            background-color: rgb(25, 21, 29);
            border-radius: 8px;
            padding: 12px;
        }

            .review_form .frombox.outing_box .outing_lbl {
                display: flex;
                column-gap: 20px;
            }

.oting_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .oting_form .frombox {
        width: 23%;
    }

        .oting_form .frombox .inpt_wrp {
            padding: 0;
        }

.review_form .btn_wrap {
    text-align: right;
}

.review_form .dropdown {
    width: 100% !important;
}

.review_form .dropdown-toggle {
    height: 50px;
    border: 1px solid #2e2e2e;
    background-color: #141317 !important;
    border-radius: 9px;
    padding: 6px 12px;
    color: #fff;
}

    .review_form .dropdown-toggle:hover {
        border-color: #2e2e2e;
    }

    .review_form .dropdown-toggle .filter-option {
        height: 100%;
    }

        .review_form .dropdown-toggle .filter-option .filter-option-inner {
            height: 100%;
        }

            .review_form
            .dropdown-toggle
            .filter-option
            .filter-option-inner
            .filter-option-inner-inner {
                height: 100%;
            }

.outing_lbl .fa-arrow-left-long {
    display: none;
}

/* 08-04-25 end */

/* 10-04-25 start */
.currencieslistbox:has(p.noleftover) {
    height: 100%;
}

.currencieslistbox p.noleftover {
    height: calc(100% - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no_gft {
    height: calc(100% - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    margin-top: 18px;
    min-height: 346px;
}

.wrap-content:has(.no_report_fnd) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}

/* 10-04-25 end */

/* 11-04-25 */

.transct_pg_tble .trn_tbl_acco {
    padding-left: 15px;
}

.transct_pg_tble .trns_tble_hdr {
    padding: 19px 20px 19px 35px;
}

.rvw_icns {
    position: absolute;
    top: 8px;
    left: 38px;
    cursor: pointer;
    line-height: 0;
}

    .rvw_icns svg {
        width: 14px;
        height: 14px;
        line-height: 0;
        fill: rgba(217, 156, 0, 1);
    }

.exclami {
    fill: #fff;
}

.nft_icn {
    width: 25px;
    border-radius: 50%;
    margin-left: 5px;
}

.asd_logo a {
    width: 52px;
}

.aside_closed .asd_logo a {
    width: 30px;
    height: 52px;
    display: flex;
    align-items: center;
}

.disable_signup {
    opacity: 0.5;
    pointer-events: none;
}

/* 11-04-25 */

/* 17-04-25 */
/*.cht_dts_wp .dropdown-menu > li {
    width: max-content !important;
}*/

.verify_transaction_modal .modal-content {
    background-color: #070707;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 12px;
    padding: 35px;
    font-weight: 400;
}

.verify_transaction_modal .modal-dialog {
    height: 100%;
    margin: 0 auto;
    max-width: 680px;
    display: flex;
    align-items: center;
}

/* Multi-step form transitions */
#msform fieldset {
    width: 100%;
    display: none;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

    #msform fieldset.active {
        display: block;
        opacity: 1;
        pointer-events: all;
    }

    #msform fieldset .step_wrap {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }

    #msform fieldset.active .step_wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        opacity: 1;
        transform: translateY(0);
    }

    #msform fieldset.active .action-button {
        width: 100%;
        text-align: left;
        margin-top: 16px;
    }

        #msform fieldset.active .action-button:hover {
            color: #3f70f8;
        }

.action-button-previous {
    background-color: #252525;
    color: #fff;
    border-radius: 6px;
    text-transform: capitalize;
    padding: 10px 16px;
    max-width: fit-content;
    margin-top: 30px !important;
    font-size: var(--font-fourteen);
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .action-button-previous:hover {
        color: #fff !important;
    }

/* Form layout */
.modal_form_wrp {
    position: relative;
}

    .modal_form_wrp .frm_wrp form {
        width: 100%;
    }

    .modal_form_wrp .frm_wrp .inpt_wrp {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        .modal_form_wrp .frm_wrp .inpt_wrp label {
            width: 100%;
            display: flex;
            flex: 0 0 auto;
            margin-bottom: 15px;
        }

        .modal_form_wrp .frm_wrp .inpt_wrp input {
            width: 100%;
            margin-bottom: 15px;
        }

.step_wrap .bttn_wrp {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    width: 100%;
}

#step2b .step_wrap .bttn_wrp {
    margin-top: 15px;
}

.step_wrap .bttn_wrp .action-button-previous {
    margin-top: 0 !important;
}

/* Table and layout */
.modal_form_wrp .trns_tble_wrp,
.modal_form_wrp .trn_tbl_acco .time {
    width: 100%;
}

.modal_form_wrp .tbl_itm:first-child {
    width: 20%;
}

.modal_form_wrp .tbl_itm:nth-child(2),
.modal_form_wrp .tbl_itm:nth-child(4),
.modal_form_wrp .tbl_itm:nth-child(5),
.modal_form_wrp .tbl_itm:nth-child(6) {
    width: 15%;
}

.modal_form_wrp .tbl_itm:nth-child(3) {
    width: 20%;
}

.modal_form_wrp .txid {
    margin: 0 0 15px;
    padding: 0;
}

.modal_form_wrp .trns_tble_wrp {
    margin-top: 0;
}

.trns_tble_conf {
    margin-top: 20px;
    margin-left: auto;
}

/* Dropdown styles */
.modal_form_wrp .bootstrap-select > select {
    z-index: -1 !important;
    left: 0;
}

.modal_form_wrp .srch_slctpckr .dropdown-toggle {
    width: 100%;
    background-color: transparent;
    border: none;
}

.modal_form_wrp .srch_slctpckr {
    min-width: unset;
    max-width: unset;
}

    .modal_form_wrp .srch_slctpckr:focus {
        box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
        border-color: #3f70f8;
    }

.modal_form_wrp .inpt_wrp > .dropdown {
    padding: 0;
    width: 100% !important;
    margin-bottom: 15px;
}

.modal_form_wrp .bootstrap-select > button:hover {
    border-color: rgba(255, 255, 255, 0.21);
}

.modal_form_wrp .frm_wrp .inpt_wrp .bs-searchbox input {
    width: 100%;
    margin-right: 0;
}

.bread_crumb {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 10px;
    /*  border-bottom: 1px solid rgb(255 255 255 / 40%);*/
    font-size: 12px;
    line-height: 1;
    font-weight: 300;
}

    .bread_crumb li + li {
        margin-left: 10px;
        padding-left: 10px;
    }

    .bread_crumb li {
        position: relative;
    }

        .bread_crumb li:not(:last-of-type)::after {
            position: absolute;
            content: "/";
            top: 0;
            right: -12px;
        }

        .bread_crumb li:last-of-type a {
            color: #3f70f8;
            font-weight: 500;
            pointer-events: none;
        }

        .bread_crumb li a:hover {
            text-decoration: underline;
        }

#light_mode .action-button-previous {
    border: 1px solid #b4b4b4;
    background-color: #fff;
    color: #565656 !important;
}

.cht_dts_wp .dropdown-menu > li {
    width: 100%;
}

.revew_wrap .cht_dts_wp .dropdown-menu {
    width: max-content;
}

/* 21-04-25 */

/*15-05-2025*/

.aggrd_list_wrp {
    padding-left: 10px;
    margin-top: 16px;
}

.aggrd_list {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

    .aggrd_list li {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.chckbx_mdl .modal-dialog {
    max-width: 800px;
    max-height: 90vh;
    /* 90% of viewport height */
    margin-top: 5vh;
    margin-bottom: 5vh;
}

    .chckbx_mdl .modal-dialog .modal-content {
        max-height: 100%;
        overflow-y: auto;
    }

.chckbx_lstng ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

    .chckbx_lstng ul li {
        flex: 0 0 auto;
        width: calc(50% - 8px);
    }

.chckbx_lstng_innr {
    /* background: rgb(19, 20, 31); */
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 5px;
    border-radius: 6px;
    position: relative;
    padding-left: 35px;
    transition: var(--transtn);
    user-select: none;
    height: 100%;
}

    .chckbx_lstng_innr:has(input:checked),
    .chckbx_lstng_innr:hover {
        box-shadow: 0 0 8px 4px rgb(45 69 121 / 50%);
        border-color: #2d4579;
    }

    .chckbx_lstng_innr .inpt_chk_wrp {
        position: absolute;
        left: 8px;
        top: 20px;
    }

    .chckbx_lstng_innr label {
        display: block;
        margin-bottom: 4px;
        font-weight: 500;
    }

        .chckbx_lstng_innr label::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

    .chckbx_lstng_innr p {
        line-height: 18px;
        color: #a3a3a3;
    }

.chckbx_lstng .btn_wrp {
    text-align: center;
    margin-top: 24px;
}

/* 17-12-24 new price sec */
.individualsflex {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

    .individualsflex .col-xl-3 {
        /* flex: 1;*/
    }

.subs_box {
    position: relative;
}

.subs_box {
    display: block;
    padding: 25px 15px;
    border-radius: 26px;
    background: rgba(18, 17, 24, 0.53);
    border: 1px solid rgba(80, 80, 80, 0.5);
    width: 100%;
}

    .subs_box h5 {
        text-transform: capitalize;
        margin-bottom: 15px;
        background-image: none;
        -webkit-text-fill-color: unset;
        font-weight: 500;
        color: var(--bronze);
    }

    .subs_box h6 {
        color: #9a9a9a;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .subs_box p {
        color: #aaa;
    }

    .subs_box .primery_button {
        color: #646464;
        padding: 0px 15px;
        border: 1px solid #646464;
        border-radius: 12px;
        display: block;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        height: 50px;
        width: 100%;
        background: transparent;
    }

    .subs_box.recommended {
        padding-top: 78px;
        border-color: #3f70f8;
        overflow: hidden;
        margin-top: -50px;
    }

        .subs_box.recommended::before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            content: "Selected";
            padding: 14px 25px;
            background-color: #3f70f8;
            font-weight: 500;
            color: #fff;
            text-align: center;
        }

    .subs_box.custom .get_btn span {
        display: block;
        margin-bottom: 26px;
        text-align: center;
        padding: 16px;
    }

.subs_box_wrp {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 70px 0px 20px;
    /* position: sticky;
  position: -webkit-sticky;
  top: 0px; */
    z-index: 1;
    background-color: #000a27;
    justify-content: center;
}

.subs_box_txt {
    max-width: 277px;
    padding-left: 30px;
    width: 100%;
}

.subs_box_txt_new {
    /* padding-left: 30px; */
    padding-bottom: 30px;
    width: 100%;
    text-align: center;
}

.subs_box_inner {
    display: flex;
    /* flex: 1;*/
    align-items: center;
    /* gap: 24px; */
    gap: 12px;
}

.subs_box_txt h4,
.subs_box_txt_new h4 {
    font-weight: 300;
    color: #8f8f8f;
    background-image: linear-gradient( 90deg, #8f8f8f 0%, #e8e8e8 50%, #8f8f8f 100% );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.subs_box_txt_new h4 {
    margin-bottom: 15px;
}

.subs_box_txt p,
.subs_box_txt_new p {
    color: #979797;
}

.subs_box p {
    color: #aaa;
}

.subs_box .primery_button {
    color: #646464;
    padding: 0px 15px;
    border: 1px solid #646464;
    border-radius: 12px;
    display: block;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    height: 50px;
    width: 100%;
    background: transparent;
}

.subs_box.recommended .primery_button,
.subs_box:hover .primery_button {
    background: linear-gradient( 300deg, rgba(73, 26, 255, 1) 1%, rgba(78, 121, 242, 1) 100% );
    color: #fff;
    border-color: rgb(73, 26, 255);
}

.table_wrp {
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(18, 17, 24, 53%);
    border: 1px solid rgba(255, 255, 255, 20%);
    margin-top: 35px;
}

.price_table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

    .price_table th {
        color: #fff;
    }

    .price_table td {
        border: 1px solid #2c2c2c;
    }

    .price_table .table_heading {
        width: 300px;
    }

    .price_table th {
        padding: 30px;
    }

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

    .table_detail h5 {
        max-width: 210px;
        color: #ffffff;
        font-weight: 300;
        line-height: normal;
    }

button[data-bs-toggle="popover"] {
    padding: 0px;
    border: 0px;
    background: transparent;
    margin-left: 5px;
}

.price_table td:first-child {
    padding: 30px 22px 30px 30px;
}

.price_table td:not(:first-child) {
    text-align: center;
}

.price_table td {
    color: #ffffff;
    font-weight: 300;
    line-height: normal;
}

.table_heading h4 {
    font-weight: 400;
    color: #8f8f8f;
    background-image: linear-gradient( 90deg, #8f8f8f 0%, #e8e8e8 50%, #8f8f8f 100% );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* custom popover */
.myPopover .popover-body {
    line-height: 22px;
    color: #989898;
    background-color: #000000;
    filter: drop-shadow(0px 2px 9px rgba(255, 255, 255, 15%));
    border-radius: 12px;
    padding: 22px;
}

    .myPopover .popover-body ul {
        padding-left: 25px;
    }

        .myPopover .popover-body ul li + li {
            margin-top: 10px;
        }

        .myPopover .popover-body ul li {
            position: relative;
        }

            .myPopover .popover-body ul li::before {
                content: "";
                position: absolute;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: #fff;
                left: -20px;
                top: 5px;
            }

.myPopover.popover {
    background-color: transparent;
    max-width: 395px;
    width: 100%;
}

/* tooltip arrow color */
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after,
.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before,
.bs-popover-start > .popover-arrow::before {
    border-left-color: #000;
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after,
.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before,
.bs-popover-top > .popover-arrow::before {
    border-top-color: #000;
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after,
.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before,
.bs-popover-bottom > .popover-arrow::before {
    border-bottom-color: #000;
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after,
.bs-popover-right > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before,
.bs-popover-right > .popover-arrow::before {
    border-right-color: #000;
}

/* new price sec */

/* add on section */
.add_on_sec {
    padding: 60px 0px;
    margin-top: 60px;
    background-color: #0c0d11;
}

#tab_cnct_3 .add_on_sec {
    margin-top: 0px;
    background-color: transparent;
    padding: 40px 0px 60px;
}

.add_on_head {
    margin-bottom: 45px;
}

.add_on_bx {
    padding: 1px;
    border-radius: 26px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 52%) 0%, #505050 100%);
    overflow: hidden;
    height: 100%;
    position: relative;
}

.add_on_bx_inner {
    background-color: #0c0d11;
    border-radius: 26px;
    height: 100%;
}

    .add_on_bx_inner label {
        padding: 20px;
        text-align: center;
        font-weight: 500;
        color: #fff;
        width: 100%;
    }

label.bronze {
    background-color: var(--bronze);
}

label.silver {
    background-color: var(--silver);
}

label.gold {
    background-color: var(--gold);
    color: #0c0d11;
}

label.all {
    background-color: #3f70f8;
}

.add_on_dtl_wrp {
    /* padding: 25px 17px; */
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 62px);
}

#tab_cnct_3 .add_on_dtl_wrp {
    height: auto;
}

.add_on_dtl {
    /* padding: 25px 35px; */
    padding: 20px 16px;
    background-color: #16151d;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

    .add_on_dtl h4 {
        color: #ffffff;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .add_on_dtl h6 {
        color: #cfcfcf;
        /* font-size: 25px; */
        font-weight: 500;
    }

    .add_on_dtl P {
        color: #b5b5b5;
    }

    .add_on_dtl span {
        /* font-size: 40px; */
    }

    .add_on_dtl + .add_on_dtl {
        margin-top: 16px;
    }

.price_option > span {
    /* font-size: 28px; */
    color: #878787;
    font-weight: 400;
    margin: 10px 0px;
}

.add_on_btn {
    color: #fff;
    font-weight: 500;
    min-height: 50px;
    height: 50px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(100, 100, 100, 42%);
    background-color: #090909;
    margin-top: 25px;
}

    .add_on_btn:hover {
        border-color: rgb(74 39 253);
        background: linear-gradient( 324deg, rgba(78, 121, 242, 1) 0%, rgba(73, 26, 255, 1) 100% );
    }

.add_on_bx.recommended {
    padding-top: 53px;
    border-color: #3f70f8;
    overflow: hidden;
    margin-top: -40px;
    height: calc(100% + 40px);
}

    .add_on_bx.recommended::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        content: "Selected";
        padding: 14px 25px;
        background-color: #3f70f8;
        font-weight: 500;
        color: #fff;
        text-align: center;
    }

    .add_on_bx.recommended .add_on_bx_inner {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

/* add on section */

/*19-05-2025*/
.add_on_dtl h3 {
    font-size: var(--body_font);
}

    .add_on_dtl h3 img {
        width: 16px;
    }

.css-k6senv {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
}

.blfJkM {
    border-radius: 4px;
    border: 1px solid transparent;
    transition: border 0.3s, background-color 0.3s;
    color: rgb(222, 228, 234);
    background: rgb(19, 53, 39);
    display: inline-block;
    position: relative;
    font-size: 0.875rem;
    padding: 0.4rem 0.5rem;
    line-height: 1;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
}

    .blfJkM::before {
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 0.625rem;
        width: 0.625rem;
        border-radius: 100%;
        transition: background-color 0.3s;
        background: rgb(126, 226, 184);
    }

    .blfJkM:hover {
        background: rgb(22, 75, 53);
        border: 1px solid rgb(42, 187, 127);
    }

.muiTooltip-tooltip {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgb(20, 17, 23);
    border: 1px solid rgb(42, 36, 54);
    color: rgb(222, 228, 234);
    display: none;
    position: absolute;
    top: 22px;
    width: 200px;
    left: auto;
    right: 0;
}

.css-k6senv:hover .muiTooltip-tooltip {
    display: block;
}

.css-k6senv.coryollow .blfJkM {
    background: rgb(255 247 4 / 22%);
}

    .css-k6senv.coryollow .blfJkM::before {
        background: rgb(255 247 4);
    }

    .css-k6senv.coryollow .blfJkM:hover {
        border-color: rgb(255 247 4);
    }

.lodaricon {
    width: 100%;
    height: 20px;
    margin: 10px auto 5px;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

.muiTooltip-tooltip p {
    padding: 10px;
}

.muiTooltip-tooltip hr {
    margin: 0px;
}

/* 20-05-2025 */
.syncng {
    position: relative;
    color: #d99c00;
    padding-left: 25px;
}

    .syncng::before {
        position: absolute;
        content: "";
        top: 2px;
        left: 0;
        width: 16px;
        height: 16px;
        border: 2px solid #d99c00;
        border-left-color: transparent;
        border-radius: 50%;
        animation: spin_anim 1.8s linear infinite;
    }

@keyframes spin_anim {
    100% {
        transform: rotate(360deg);
    }
}

.bgnone {
    background-color: transparent;
}

.whit_butt:disabled {
    opacity: 0.6;
}

    .whit_butt:disabled:hover {
        background-color: #fff;
        color: #000;
        border: 1px solid #fff;
        opacity: 0.6;
    }

/* 20-05-2025 */

/* 26-05-25 */
.settings_plans_wrapper .subs_box_inner {
    min-width: 1080px;
    padding: 70px 0px 20px;
    align-items: unset;
}

.settings_plans_wrapper .subs_box_wrp {
    overflow-x: auto;
    padding: 0;
    justify-content: unset;
}

.subs_box_wrp::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.plan_wrap .add_on_dtl {
    justify-content: center;
}

.plan_wrap .add_on_dtl_wrp {
    height: 100%;
}

button.add_on_btn:disabled {
    opacity: 0.6 !important;
}

.add_on_btn:disabled:hover {
    background: #000;
    border-color: rgba(100, 100, 100, 42%);
}

/* 26-05-25 */

/*27-05-2025*/

.invtwrp {
    transform: translateY(-50%);
}

.dshbrd_uppr_rgt .viewallbtnsect {
    margin-top: auto;
}

.dshbrd_uppr_rgt .dshbrd_graph_wrp {
    display: flex;
    flex-direction: column;
}

.settings_plans_wrapper .subs_box_inner {
    min-width: auto;
    max-width: fit-content;
    margin: 0 auto;
}

.subs_box {
    max-width: 350px;
    min-width: 210px;
}

/*27-05-2025*/

#requestInvitation {
    margin-bottom: 0;
}

/*02-06-2025*/
#toast-container > div {
    opacity: 1 !important;
}

/* 04-06-2025 */

.ph_no_wrp {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.sign-up-sec .sign_form form .ph_no_wrp input {
    padding-right: 40px;
}

.vry_icon {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 20px;
    line-height: 0;
}

.ph_no_wrp .sbmit_btn {
    font-size: var(--font-fourteen);
    width: 100%;
    text-align: center;
    margin-top: 14px;
}

.sign-up-sec .ph_no_wrp a {
    color: #fff;
}

    .sign-up-sec .ph_no_wrp a:hover {
        background-color: #fff;
        color: #3f70f8;
    }

.otp_vry_mdl {
    text-align: center;
}

.vryfy_bdy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 14px;
    max-width: 500px;
    margin: 0 auto;
}

    .vryfy_bdy p {
        color: #dadada;
    }

    .vryfy_bdy h6 {
        font-weight: 500;
        line-height: 1.4;
    }

        .vryfy_bdy h6 a {
            color: #00b787;
        }

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

    .otp_wrp input {
        padding: 0;
        flex: 0 0 auto;
        width: 40px;
        height: 40px;
        background-color: #111015;
        border: solid 1px #6c6c6c;
        border-left-width: 0;
        color: #b9b9b9;
        padding: 0 16px;
        text-align: center;
        padding: 0;
        font: var(--font-fourteen);
    }

        .otp_wrp input::placeholder {
            font-size: 0;
        }

        .otp_wrp input:first-of-type {
            border-left-width: 1px;
            border-radius: 4px 0 0 4px;
        }

        .otp_wrp input:last-of-type {
            border-radius: 0 4px 4px 0;
        }

.vryfy_bdy span.error_text {
    display: block;
    font: var(--font-fourteen);
    color: #9f444f;
}

.sign_form .ph_no_wrp span.error_text {
    margin: 5px 0 0px;
}

/* 04-06-2025 */

/* 05-06-25 */
.toast_wrp {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    padding: 20px;
    /* transform: translateX(100%); */
    opacity: 0;
    pointer-events: none;
    transition: 400ms all ease-in-out;
}

    .toast_wrp.show {
        /* transform: translateX(0); */
        opacity: 1;
        pointer-events: all;
    }

.tost_innr {
    background-color: rgba(255, 230, 0, 0.25);
    border-radius: 4px;
    overflow: hidden;
    padding: 12px;
    padding-right: 40px;
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(10px);
    width: 350px;
}

.show .tost_innr:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #c38d00;
    animation: widt_anim 4s linear forwards;
    animation-play-state: running;
}

.blu_tost .tost_innr {
    background-color: rgba(63, 112, 248, 0.25);
}

    .blu_tost .tost_innr::after {
        background-color: #3f70f8;
    }

.grn_tost .tost_innr {
    background-color: rgba(0, 255, 72, 0.25);
}

    .grn_tost .tost_innr::after {
        background-color: #06d7a0;
    }

.rd_tost .tost_innr {
    background-color: rgba(221, 15, 0, 0.25);
}

    .rd_tost .tost_innr::after {
        background-color: #ff6f6f;
    }

@keyframes widt_anim {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.crs_icn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.tost_innr h6 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
}

.tost_innr p {
    color: #dadada;
}

    .tost_innr p + p {
        margin-top: 2px;
    }

/* toast--------------- 6-06-25*/

.tost_icn {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: rgb(255 230 0 / 50%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--body_font);
    flex: 0 0 auto;
}

.toast_wrp.rd_tost .tost_icn {
    background-color: #ff6f6f;
}

.toast_wrp.blu_tost .tost_icn {
    background-color: #3f70f8;
}

.toast_wrp.grn_tost .tost_icn {
    background-color: #06d7a0;
}

.toast_wrp .tost_itm + .tost_itm {
    margin-top: 20px;
}

.w-24 {
    width: 24px;
}

/* Dash Steps Starts */
.dashborad_steps_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.steps_holder_wrpr {
    width: 72%;
    flex: 0 0 auto;
    padding: 0 10px;
    padding-bottom: 10px;
}

.dash_faq_wrpr {
    width: 28%;
    flex: 0 0 auto;
    padding: 0 10px;
}

.steps_holder_wrpr ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

    .steps_holder_wrpr ul li {
        width: 50%;
        flex: 0 0 auto;
        padding: 0 10px;
        margin-bottom: 20px;
    }

.dshbrd_stepcard {
    padding: 10px 20px 250px 20px;
    border: 1px solid rgba(63, 112, 248, 0.16);
    border-radius: 10px;
    background: rgba(18, 17, 24, 0.53);
    margin-bottom: 15px;
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.dshbrd_steps_card_wrp {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dshbrd_stepcard h6 {
    color: rgb(63, 112, 248);
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
}

.steps_holder_wrpr ul li:nth-child(even) .dshbrd_stepcard h6 {
    color: rgb(6, 215, 160);
}

.steps_holder_wrpr ul li:nth-child(even) .dshbrd_stepcard {
    border: 1px solid rgba(6, 215, 160, 0.3);
}

.dshbrd_stepcard h3 {
    background: linear-gradient( 90deg, rgb(143, 143, 143), rgb(232, 232, 232), rgb(143, 143, 143) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 40px;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 15px;
}

.dshbrd_stepcard p {
    color: rgb(140, 140, 140);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.dshbrd_steps_card_wrp .integrationsbtn {
    width: 100%;
    text-align: center;
    padding: 13px 14px;
}

.steps_holder_wrpr ul li:nth-child(even) .integrationsbtn {
    background: #06d7a0;
    color: #000;
    border-color: #06d7a0;
}

    .steps_holder_wrpr ul li:nth-child(even) .integrationsbtn:hover {
        background: transparent;
        color: #06d7a0;
    }

.dashstep_img {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
}

    .dashstep_img::after {
        content: "";
        position: absolute;
        background: linear-gradient( 180deg, rgba(19, 19, 27, 0), rgba(19, 19, 27, 0.87) 55.746%, rgb(19, 19, 27) 100% );
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
    }

    .dashstep_img img {
        width: 100%;
    }

.step_info {
    color: rgb(255, 255, 255);
    line-height: 19px;
    border-radius: 16px;
    box-shadow: 0px 6px 94px 0px rgba(63, 112, 248, 0.7);
    background: rgba(27, 27, 27, 0.68);
    display: inline-block;
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin: auto;
    transform: translateX(-50%);
    padding: 15px 20px;
    text-transform: none;
}

.steps_holder_wrpr ul li:nth-child(even) .dshbrd_stepcard::after {
    filter: blur(300px);
    background: radial-gradient( 50% 50% at 50% 50%, rgba(230, 255, 249, 0.89), rgb(6, 215, 160) 66%, rgb(0, 32, 23) 100% );
    opacity: 0.28;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dashstepbdy {
    background-image: url(../images/dashstep_body_bg.png);
    background-position: bottom;
}

.dash_faq_wrpr h3 {
    background: linear-gradient( 90deg, rgb(143, 143, 143), rgb(232, 232, 232), rgb(143, 143, 143) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 300;
    margin-bottom: 20px;
}

.dasfaq {
    border-radius: 10px;
    border: 1px solid #333238;
    padding: 27px;
    padding-bottom: 10px;
}

.faq_acrdan {
    margin: 0px -15px 0;
}

.dasfaq p {
    color: rgb(164, 164, 164);
    margin-bottom: 15px;
}

.faq_acrdan .accordion-item {
    background: transparent;
    border-inline: none;
    border-color: #333238;
    border-top: none;
}

.faq_acrdan .accordion-button {
    background: transparent;
    color: rgb(184, 184, 184);
    line-height: 1.3;
    padding-right: 50px;
    transition: var(--transtn);
    font-size: var(--body_font);
}

.faq_acrdan .accordion-item:first-of-type,
.faq_acrdan .accordion-item:last-of-type {
    border-radius: 0;
}

.faq_acrdan .accordion-item:last-of-type {
    border-bottom: none;
}

.faq_acrdan .accordion-body {
    color: rgb(176, 176, 176);
    font-size: var(--body_font);
    line-height: 1.45;
    padding-top: 0;
}

.faq_acrdan .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.accordion-item:has(.accordion-collapse.show) .accordion-button {
    color: #fff;
}

.accordion-button::after {
    content: "\f106 ";
    font-family: "fontawesome";
    background-image: none;
    right: -20px;
    position: relative;
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

/* Dash Steps Ends */

/* Add intergration Modal Start */
.addintegration .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 27px;
    background: rgb(7, 7, 7);
    text-align: center;
    padding: 50px 60px 25px;
    overflow: hidden;
}

    .addintegration .modal-content::after {
        content: "";
        position: absolute;
        background: url(../images/addintegration_mdl_bg.png) no-repeat top;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0;
        pointer-events: none;
    }

.addintegration .modal-body svg {
    margin-bottom: 23px;
}

.addintegration .modal-body h4 {
    line-height: 35px;
    text-transform: capitalize;
    margin-bottom: 22px;
    font-weight: 500;
}

.addintegration .modal-dialog {
    max-width: 580px;
}

.addintegration .integrationsbtn {
    font-size: var(--font-fourteen);
    padding: 13px 20px;
    min-width: 169px;
    margin-top: 10px;
    height: 50px;
}

.modal-open {
    padding-right: 0 !important;
}

/* Add intergration Modal End */

/* Trans_Failed Modal  */
.trnsfailed .modal-content {
    border-color: rgba(255, 0, 0, 0.38);
}

    .trnsfailed .modal-content::after {
        background: url(../images/transcation_failed_bg.png) no-repeat top;
    }

.trnsfailed h4,
.warningmdl h4 {
    color: #ce1c1c;
    margin-bottom: 6px;
}

.trnsfailed p,
.warningmdl p {
    color: rgb(199, 199, 199);
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
}

/* Trans_Failed Modal  */

/* Warning Modal  */
.warningmdl .modal-content::after {
    background: url(../images/warning_mdl_bg.png) no-repeat top;
}

.warningmdl .modal-content {
    border-color: rgba(255, 158, 2, 0.38);
    padding: 50px 20px 25px;
}

.warningmdl h4 {
    color: #ff9e02;
}

.mdllink_wrp .integrationsbtn {
    min-width: 124px;
    margin-top: 0;
}

.mdllink_wrp .viewallbtn {
    width: auto;
    display: inline-flex;
    padding: 13px 20px;
    min-width: 124px;
    height: 50px;
    color: rgb(255, 255, 255);
    font-size: var(--font-fourteen);
}

.mdllink_wrp {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#savemdl h4 {
    text-transform: none;
    color: rgb(199, 199, 199);
}

/* Warning Modal  */

.eaditbodalbox .modal-dialog .modal-content {
    border: 1px solid rgba(8, 117, 255, 0.44);
    border-radius: 12px;
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
    height: 100%;
    background-color: #000;
}

.eaditbodalbox .modal-footer {
    border: none;
    padding: 30px;
}

.eaditbodalbox .modal-header,
.eaditbodalbox .modal-body {
    padding: 30px;
    border: none;
}

.eaditbodalbox .form-control {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: rgb(141, 141, 141);
    border: 1px solid rgb(224, 224, 224);
    border-radius: 6px;
    padding: 10px 18px;
    font-size: var(--body_font);
}

.eaditbodalbox select.form-control {
    background-image: url(../images/dwn_arw_wgt_gry.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.frombox label {
    margin-bottom: 0;
    color: rgb(157, 157, 157);
    font-size: var(--body_font);
    line-height: 1.4;
    letter-spacing: 0.5px;
    position: absolute;
    top: -7px;
    background: #000000;
    left: 15px;
    padding: 0 10px;
    z-index: 1;
}

.eaditbodalbox .btn.viewallbtn {
    padding: 20px 30px;
    color: rgb(255, 255, 255);
    font-size: var(--font-fourteen);
    background: #3f70f8;
    height: 50px;
    margin-right: auto;
    margin-left: 0;
    min-width: 169px;
}

.eaditbodalbox .modal-body {
    padding-top: 0;
    padding-bottom: 0;
}

.eaditbodalbox .modal-footer {
    padding-top: 10px;
}

.pcontent p b {
    color: rgb(223, 223, 223);
}

.eaditbodalbox .inpt_radio_wrp span {
    width: 27px;
    height: 27px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 5px;
}

.eaditbodalbox .inpt_radio_wrp input:checked ~ span::after {
    content: "";
    background: transparent;
    position: relative;
    border-radius: 0;
    left: 0px;
    top: -2px;
    width: 7px;
    height: 16px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.eaditbodalbox .form-check-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.eaditbodalbox .inpt_radio_wrp input:checked ~ span {
    border-radius: 5px;
    background: rgb(52, 93, 157);
    border-color: #345d9d;
}

/* 11-04-25 */

/* shepherd_popup */

body .shepherd-header {
    background: transparent;
    border: none;
}

body .shepherd-footer {
    justify-content: space-between;
}

body .shepherd-text {
    font-size: var(--font-fourteen);
    line-height: 1.5;
    color: #b9b9b9;
}

body .shepherd-content {
    text-align: left;
    padding: 20px 30px;
    background-color: #070707;
    border-radius: 3px;
    filter: drop-shadow(0 2px 19px rgb(255 255 255 / 10%));
}

body .shepherd-text h2 {
    line-height: 24px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(205 205 205 / 15%);
    margin-bottom: 15px;
}

    body .shepherd-text h2 button.tourback {
        margin-left: -17px;
        font-size: var(--font-fourteen);
    }

body .shepherd-footer button {
    color: #fff;
    background: transparent;
    padding: 0;
    text-transform: capitalize;
    font-size: var(--font-fourteen);
    letter-spacing: 0;
}

body .shepherd-footer .shepherd-skip {
    background: transparent;
    color: #3f70f8;
    text-decoration: underline;
}

body .tippy-tooltip {
    max-width: 400px !important;
}

/*body .shepherd-cancel-icon {
    display: none;
}*/

body.shepherd-active main {
    filter: blur(5px);
}

body .shepherd-button:hover {
    background: transparent;
}

body .shepherd.tippy-popper[x-placement^="left"] .tippy-arrow {
    border-left-color: #070707;
}

body .shepherd.tippy-popper[x-placement^="top"] .tippy-arrow {
    border-top-color: #070707;
}

body .shepherd.tippy-popper[x-placement^="right"] .tippy-arrow {
    border-right-color: #070707;
}

body .shepherd.tippy-popper[x-placement^="bottom"] .tippy-arrow {
    border-bottom-color: #070707;
}

body .tippy-tooltip:has(.shepherd_start) {
    left: 440px !important;
}

body .shepherd.tippy-popper .tippy-tooltip {
    background-color: transparent;
}

/* shepherd_popup */

/* 18-04-25 start */
body .tippy-tooltip:has(.shepherd_start) {
    left: 444px !important;
}

body .shepherd.tippy-popper[x-placement^="right"] .tippy-arrow {
    border-right-color: #070707;
    border-width: 6px 20px 6px 0px;
    left: -30px;
}

body .shepherd.tippy-popper[x-placement^="top"] .tippy-arrow {
    border-top-color: #070707;
    border-width: 13px 8px 6px 8px;
    bottom: -15px;
    /* border-width: 0 20px 6px 4px; */
}

body .shepherd.tippy-popper[x-placement^="bottom"] .tippy-arrow {
    border-bottom-color: #070707;
    top: -26px;
    border-width: 3px 8px 15px 7px;
}

body.shepherd-active main {
    position: relative;
    filter: blur(5px);
}

/* .shepherd-active.shepherd-modal-is-visible .shepherd-element{
  border-radius: 23px !important;
} */
body .shepherd-element {
    background-color: transparent !important;
}

body .shepherd-content {
    border-radius: 20px;
    overflow: hidden;
}

    body .shepherd-content .shepherd-text {
        padding: 10px;
        padding-top: 0;
    }

        body .shepherd-content .shepherd-text h2 {
            line-height: 21px;
        }

body.shepherd-active main {
    position: relative;
}

body.shepherd-active main {
    filter: blur(0);
}

aside.innr_tr_gd {
    position: absolute;
    left: -255px;
}

main:has(.innr_tr_gd) {
    position: relative;
}

/*13-06-2025 Changes*/
.edit_acc_no .modal-header {
    border: none;
}

.edit_acc_no .inpt_wrp label {
    margin-bottom: 0;
    color: rgb(157, 157, 157);
    font-size: var(--body_font);
    line-height: 1.4;
    letter-spacing: 0.5px;
    position: absolute;
    top: -7px;
    background: #000000;
    left: 13px;
    padding: 0 10px;
}

.edit_acc_no .inpt_wrp input {
    border: 1px solid rgb(224, 224, 224);
    border-radius: 6px;
    height: 50px;
    color: rgb(141, 141, 141);
    font-size: var(--font-fourteen);
    padding: 10px 22px;
}

.edit_acc_no .modal-content .modal-title {
    font-size: var(--font-twenty);
    font-weight: 500;
    text-transform: capitalize;
}

.edit_acc_no .modal-header {
    padding: 30px;
    padding-bottom: 15px;
}

.modal-body {
    padding: 0 30px 30px;
}

.edit_acc_no .updateaccname {
    float: left;
    color: rgb(255, 255, 255);
    font-size: var(--font-twenty);
    min-width: 142px;
    height: 50px;
    margin-top: 10px;
    background: rgb(63, 112, 248);
}

.flexinput {
    position: relative;
}

.wlt_ntfctn {
    display: flex;
    align-items: center;
    column-gap: 8px;
    border-radius: 6px;
    background: rgb(81, 76, 47);
    margin-left: 40px;
    color: rgb(245, 188, 0);
    font-size: var(--font-twenty);
    font-weight: 500;
    line-height: 20px;
    padding: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

    .wlt_ntfctn i {
        font-size: var(--font-twenty);
    }

.edit_acc_no .flexinput {
    flex-wrap: wrap;
}

.processtooltip {
    border-radius: 12px;
    background: rgb(7, 7, 7);
    padding: 20px;
    max-width: 430px;
    width: max-content;
    top: 60px;
    box-shadow: 0px 2px 19px 0px rgba(255, 255, 255, 0.1);
    right: -60px;
}

    .processtooltip h6 {
        color: rgb(33, 131, 255);
        font-size: 16px;
        line-height: 24px;
        border-bottom: 1px solid rgba(205, 205, 205, 0.14);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .processtooltip p {
        padding: 0;
        color: rgb(185, 185, 185);
        font-size: var(--font-fourteen);
        line-height: 24px;
    }

    .processtooltip:after {
        content: "";
        position: absolute;
        background: url(../images/tooltip_triangle.png) no-repeat right;
        width: 26px;
        height: 24px;
        right: 56px;
        top: -20px;
    }

.tltp_animation {
    border-radius: 30px;
    background: rgba(8, 117, 255, 0.25);
    width: 100%;
    height: 7px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

    .tltp_animation:after {
        content: "";
        position: absolute;
        background: rgba(8, 117, 255, 0.85);
        width: 55px;
        height: 7px;
        left: 0px;
        top: 0;
        border-radius: 30px;
        animation: tooltip_slide 2s linear infinite;
    }

@keyframes tooltip_slide {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

.loadingindicate:hover .muiTooltip-tooltip {
    display: block;
}

.tost_itm:hover .tost_innr::after {
    animation-play-state: paused;
}

.tost_itm {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    border-radius: 16px;
    overflow: hidden;
}

    .tost_itm.hide {
        opacity: 0;
    }

/*  Datepicker */
.calendar {
    padding: 8px;
    border-radius: 4px;
    font-size: var(--font-fourteen);
    box-shadow: 0px 20px 40px rgba(59, 60, 56, 0.05);
    background: transparent;
    border: 1px solid #ababab;
    color: #fff;
}

.ui-datepicker {
    border-radius: 15px;
    width: 30%;
    background: #000000;
    border: 1px solid #3f70f8;
    border-radius: 10px;
    overflow: hidden;
}

    .ui-datepicker td {
        border: 1px solid #3f70f8;
    }

.ui-datepicker-header {
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    background: #31639c;
    margin-bottom: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    width: 20px;
    height: 20px;
    text-indent: 9999px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 12px;
}

.ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}

    .ui-datepicker-prev:after {
        transform: rotate(45deg);
        margin: -43px 0px 0px 8px;
    }

.ui-datepicker-next {
    float: right;
    margin-right: 12px;
}

    .ui-datepicker-next:after {
        transform: rotate(-135deg);
        margin: -43px 0px 0px 6px;
    }

    .ui-datepicker-prev:after,
    .ui-datepicker-next:after {
        content: "";
        position: absolute;
        display: block;
        width: 8px;
        height: 8px;
        border-left: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
    }

    .ui-datepicker-prev:hover,
    .ui-datepicker-next:hover,
    .ui-datepicker-prev:hover:after,
    .ui-datepicker-next:hover:after {
        border-color: #333333;
    }

.ui-datepicker-title {
    text-align: center;
    background: #3f70f8;
    font-size: var(--font-fourteen);
    font-weight: 500;
}

.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}

    .ui-datepicker-calendar thead tr th span {
        color: #fff;
        margin-bottom: 5px;
        font-size: var(--font-fourteen);
    }

.ui-state-default {
    display: block;
    text-decoration: none;
    color: #fff;
    line-height: 40px;
    font-size: var(--font-fourteen);
}

    .ui-state-default:hover {
        color: #ffffff;
        background: #06d7a0;
        border-radius: 0px;
        transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
    }

.ui-state-highlight {
    color: #ffffff;
    background-color: #3f70f8;
    border-radius: 0;
}

.ui-state-active {
    color: #ffffff;
    background-color: #06d7a0;
    border-radius: 0px;
}

.ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent;
}

.icon {
    margin-left: -30px;
    margin-top: -26px;
    position: relative;
    color: #31639c;
    font-size: var(--font-fourteen);
}

.ui-datepicker-title select {
    width: 100px;
    text-align: center;
    margin: auto;
    cursor: pointer;
}

/* Datepicker */

#marrieddetails h5 {
    margin-bottom: 20px;
}

.datepicker_holder .calendar {
    height: 50px;
    color: rgb(141, 141, 141);
    border: 1px solid rgb(224, 224, 224);
    padding: 10px 18px;
    width: 100%;
}

.eaditbodalbox .autocomplete-suggestions div:hover {
    background-color: #767676;
    color: #fff;
}

.cht_dts_wp svg {
    background: #a3a3a3;
    border-radius: 3px;
    height: 24px;
}

    .cht_dts_wp svg path {
        fill: #000;
    }

.help {
    margin-right: 30px;
    display: flex;
    align-items: center;
    column-gap: 12px;
    cursor: pointer;
}

    .help i {
        color: #dca415;
        cursor: pointer;
    }

.ui-state-disabled {
    opacity: 0.3;
}

/*Password Recovery: Start*/

.sign-contact-form {
    background-color: transparent;
    max-width: 588px;
    margin: 0 auto;
    border: none;
    padding: 0px;
    border-radius: 0px;
    z-index: 99;
    position: relative;
}

.recovery_frm {
    border-radius: 10px;
    border: solid 1px #373737;
    background-color: #070707;
    padding: 45px 37px 40px;
    margin-top: 30px;
}

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

.sign-contact-form h6 {
    font-weight: 400;
    letter-spacing: 0px;
    font-family: "Outfit", sans-serif;
    line-height: 1.4;
    margin-bottom: 10px;
}

.recovery_frm .form-group input {
    background-color: #111015;
    border: solid 1px #6c6c6c;
    border-radius: 6px;
    color: #b9b9b9;
    padding: 0 16px;
    font-size: var(--font-fourteen);
    line-height: 43px;
    font-weight: 500;
    transition: 0.4s all;
}

    .recovery_frm .form-group input::placeholder {
        color: #b9b9b9;
        font-size: var(--font-fourteen);
    }

.recovery_hdng h2 {
    font-weight: 500;
    margin-bottom: 15px;
}

.recovery_frm .form-group {
    margin-bottom: 20px;
}

.recovery_frm label {
    margin-bottom: 12px;
    font-size: var(--font-fourteen);
}

.recovery_frm .row > *:last-child .form-group {
    margin-bottom: 0;
}

.recovery_frm input.req_btn {
    margin-bottom: 0;
    line-height: 56px;
    border: solid 1px #3f70f8;
    color: #fff;
}

    .recovery_frm input.req_btn:hover {
        border: solid 1px #00b787;
        background-color: #06d7a0;
    }

.recovery_frm .form-group input:focus {
    box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
    border-color: #3f70f8;
}

/*Password Recovery: End*/

.faq_acrdan .accordion-button::after {
    content: "\f106 ";
    font-family: "fontawesome";
    background-image: none;
    right: -20px;
    position: relative;
    transform: var(--bs-accordion-btn-icon-transform);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq_acrdan .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
    background-image: none;
}

/*20-06-2025*/

.dashstepbdy {
    background-image: none;
}

.shepherd-modal-is-visible .shepherd-modal-overlay-container {
    opacity: 0.8 !important;
}

body:has(#gotocrypto.shepherd-enabled) .tippy-tooltip:has(.shepherd_start) {
    left: 0 !important;
}

body .shepherd-header {
    position: absolute;
    right: 40px;
    top: 23px;
    left: unset;
    width: auto;
    padding: 0;
}

    body .shepherd-header button {
        line-height: 14px;
    }

body .shepherd-cancel-icon,
body .shepherd-cancel-icon:hover {
    color: #fff;
}

body .shepherd-text h2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-right: 20px;
}

/*26-06-2025*/

.exch_sec_body .tbl_itm a {
    position: relative;
}

.custmtltp {
    border-radius: 12px;
    background: rgb(7, 7, 7);
    padding: 30px;
    max-width: 430px;
    width: max-content;
    top: -160px;
    box-shadow: 0px 2px 19px 0px rgba(255, 255, 255, 0.1);
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

    .custmtltp h2 {
        font-weight: 500;
        margin-bottom: 15px;
    }

    .custmtltp:after {
        content: "";
        position: absolute;
        background: url(../images/tooltip_triangle.png) no-repeat center right;
        width: 26px;
        height: 24px;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%) rotate(60deg);
        margin-left: 3px;
    }

    .custmtltp .fa-times {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: var(--font-twenty);
        cursor: pointer;
    }

.custoolwarp {
    position: relative;
    width: fit-content;
}

.help p {
    color: #06d7a0;
    font-weight: 500;
    font-size: var(--font-fourteen);
}

.daterangepicker .drp-buttons .cancelBtn {
    margin-left: auto;
}

.drp-buttons {
    justify-content: space-between;
}

.report_block_table_content_wrap_gain .capitalGainsaccordion .accordion-item {
    box-shadow: 0px 0px 5px 0px #01a713;
    border: 1px solid rgb(1 167 19 / 50%);
    background: rgb(1 167 19 / 5%);
}

.report_block_table_content_wrap_loss .capitalGainsaccordion .accordion-item {
    box-shadow: 0px 0px 5px 0px #ac2123;
    border: 1px solid rgb(172 33 35 / 50%);
    background: rgb(172 33 35 / 10%);
}

.rptgain .report_item_text h4 {
    color: #01a713;
}

.rptloss .report_item_text h4 {
    color: #ac2123;
}

.report_button-wrap:has(.closetaxyear.disabled) h5 {
    opacity: 0.4;
}

/*26-05-2025*/

/*27-06-2025*/
.mn_hdr_rgt div.dropdown-menu {
    transform: translate(10px, 35px) !important;
}

#selfdashboard span {
    margin: 0 5px 0 4px;
}

    #selfdashboard span i {
        font-size: var(--body_font);
    }

.no_trans_fnd h6 {
    line-height: 1.5;
}

.no_trans_fnd .add_inte_btn {
    width: fit-content;
    padding: 10px 20px;
    margin: 15px auto 0;
    font-size: var(--font-fourteen);
    line-height: 20px;
}

    .no_trans_fnd .add_inte_btn .fa-plus {
        font-size: var(--font-fourteen);
    }

/*03-07-2025*/

.mdl_titel_wrp ul {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
}

    .mdl_titel_wrp ul li {
        width: 12%;
        flex: 0 0 auto;
        font-size: var(--body_font);
        line-height: normal;
        padding: 5px 0px;
    }

        .mdl_titel_wrp ul li:first-child {
            width: 15%;
            padding-left: 20px;
        }

        .mdl_titel_wrp ul li:nth-child(2) {
            width: 22%;
            padding-left: 30px;
        }

        .mdl_titel_wrp ul li:last-child {
            width: 15%;
        }

.modal_details_wrp ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .modal_details_wrp ul li .mdlitem {
        display: flex;
        align-items: center;
        padding: 5px 0px;
    }

.modal_details_wrp ul {
    border-top: 1px solid rgb(52, 93, 157);
}

    .modal_details_wrp ul li .mdlitem span img {
        max-width: 20px;
        margin-right: 10px;
    }

.mdlitem.mdl_item_1 span img {
    max-width: 20px;
}

.modal_details_wrp ul li {
    margin: 5px 0px 5px;
    width: 12%;
    flex: 0 0 auto;
}

    .modal_details_wrp ul li:first-child {
        width: 15%;
        padding-left: 10px;
    }

    .modal_details_wrp ul li:nth-child(2) {
        width: 22%;
        padding-left: 30px;
    }

    .modal_details_wrp ul li:last-child {
        width: 15%;
    }

.modal_cont_details {
    border: 1px solid rgb(52, 93, 157);
    border-radius: 6px;
    margin-bottom: 30px;
}

.modal_details_wrp ul li .mdlitem p {
    font-size: var(--body_font);
    line-height: normal;
}

    .modal_details_wrp ul li .mdlitem p + p {
        margin-top: 5px;
    }

.modal_details_wrp ul li .mdlitem.mdl_item_1 span img {
    min-width: 20px;
    max-width: 30px;
}

p#giftdet span img {
    max-width: 20px;
}

p#giftdet {
    word-spacing: 2px;
}

p#userdet {
    word-spacing: 2px;
}

p#giftdet .giftmodalcurrencyname {
    width: 24px;
    height: 24px;
    background: rgb(63 112 248 / 50%);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: var(--font-ten);
    color: #fff;
    text-transform: uppercase;
    max-width: 24px;
}

.reports_wrappers
.reportdata:has(.accordionPlusbutton)
.accordion-item.accordionitemNewstyl {
    padding-left: 50px;
}

.borderd_slctpckr button.dropdown-toggle {
    padding: 8px 12px;
    border: 1px solid rgb(52, 93, 157);
}

.width_180 button.dropdown-toggle {
    width: 180px;
}

.accordion .accordion_button i.js-btn-tooltip,
.accordion .accordion-button i.js-btn-tooltip {
    font-size: 80%;
    margin-left: 5px;
}

/*10-07-2025*/
.forgotback {
    width: 100%;
    margin-top: 16px;
}

.forgt_sgn_sec h3 {
    margin-bottom: 10px;
}

.forgt_sgn_sec .sign_form {
    margin-top: 25px;
}

.filter_dropdown.dropdown-menu {
    width: 300px;
}

.filter_drop_innr {
    padding: 10px 20px;
}

.filter_dropdown h6 {
    color: #fff;
    margin-bottom: 15px;
}

    .filter_dropdown h6:not(:first-of-type) {
        margin-top: 25px;
    }

.filter_dropdown ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: var(--font-fourteen);
    line-height: 1.2;
}

    .filter_dropdown ul li + li {
        margin-top: 15px;
    }

    .filter_dropdown ul li .sync_btn {
        margin-left: 0;
    }

.sync_btn input:checked + .syc_btn_brdr span {
    background-color: rgba(0, 255, 72, 0.1);
}

    .sync_btn input:checked + .syc_btn_brdr span::before {
        background-color: #06d7a0;
    }

.sync_btn input:checked + .syc_btn_brdr {
    /*    box-shadow: 0px 0px 0px 0px #06d7a0;*/
    background-color: rgba(0, 255, 72, 0.1);
}

/*21-07-2025*/

.btn-close:hover,
.btn-close {
    opacity: 1;
}

.mdl_hdr {
    display: flex;
    width: 100%;
}

    .mdl_hdr .btn-close {
        background-image: url(../images/croos_modal.svg);
        background-size: 30px;
        margin-left: auto;
    }

.srch_rslt_wrp {
    margin-bottom: 24px;
}

.show_all {
    display: flex;
    justify-content: flex-end;
}

.modal .int_ipt_wrp:hover {
    box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%);
    border-color: #3f70f8;
}

.trns_tble_wrp:has(.transct_pg_tble) .tbl_itm:first-child {
    max-width: 40px;
}

/* .totallosses_tab li:last-of-type .nav-link {
  min-width: 130px;
} */

.smcnt_crcl {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 6px;
    line-height: 8px;
    margin-left: 4px;
    background: #01a713;
}

/*29-07-2025*/
.spam_crnc_logo {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 7px;
    line-height: 8px;
    background: #ff6f6f;
    margin-right: 8px;
}

/* 28.27.25 start */
.step_wrap .form-check-input {
    margin: 2px 10px 0px 0px;
}

.step_wrap .form-check-label {
    cursor: pointer;
}

#msform fieldset.active .bread_crumb .action-button {
    margin: 0px;
}

/* 28.27.25 end */

/*01-08-2025*/

.rpt_bar_wrp_reviw {
    background-color: rgb(220 164 21 / 60%);
}

    .rpt_bar_wrp_spam .pndg_ttle,
    .rpt_bar_wrp_reviw .pndg_ttle {
        color: #fff;
    }

.rpt_bar_wrp_spam {
    background-color: rgb(63 112 248 / 40%);
}

.rpt_bar_itms_wrp {
    display: flex;
    gap: 15px;
}

    .rpt_bar_itms_wrp .rpt_bar_wrp {
        width: 0;
        flex-grow: 1;
        padding-right: 15px;
    }

/*01-08-2025*/

/*04-08-2025*/

.price_slct_pckr div.dropdown-menu {
    width: 190px;
    transform: translate(-1px, 35px) !important;
}

.price_slct_pckr .dropdown-item span.text {
    display: flex !important;
}

.price_slct_pckr .dropdown-item .text h6 {
    font-size: var(--font-fourteen);
}

.price_slct_pckr .dropdown-toggle h6 {
    padding-left: 6px;
}

.mn_hdr_rgt .price_slct_pckr.bootstrap-select > button {
    font-size: var(--font-fourteen);
}

.hdr_prc_wr > div.price_slct_pckr {
    min-width: 190px;
}

/*06-08-2025*/

.edit_acc_no .btn-close {
    background-image: url(../images/croos_modal.svg) !important;
    opacity: 1;
}

/* 28.27.25 end */

/* expens_dropdown */

.expens_dropdown .dropdown-toggle {
    background-color: #000000;
    width: 100%;
    text-align: left;
    display: block;
    height: 50px;
    color: #fff;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 6px;
    padding: 4px 80px 0 34px;
    background-image: url(../images/dwn_arw_wgt_gry.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.expens_dropdown .dropdown-menu {
    width: 100%;
    padding: 20px 16px 10px;
    max-height: 400px;
    overflow: auto;
    position: static !important;
    transform: none !important;
    margin-top: 15px !important;
    background-color: transparent;
}

.inpt_fld {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

    .inpt_fld + .inpt_fld {
        margin-top: 16px;
    }

    .inpt_fld label {
        position: static;
        display: block;
        background-color: transparent;
        color: #fff;
        font-size: var(--font-fourteen);
        width: 100%;
        padding-left: 0;
        letter-spacing: 0;
    }

    .inpt_fld input {
        background-color: transparent;
        height: 40px;
        width: 0;
        flex-grow: 1;
        min-width: 400px;
        border: 1px solid rgb(224, 224, 224);
        border-radius: 6px;
        padding: 0px 18px 2px;
        color: #fff;
        font-size: var(--font-fourteen);
    }

    .inpt_fld .btn.viewallbtn {
        min-width: 120px;
        height: 40px;
        padding: 0 10px;
    }

.expens_dropdown .inpt_wrp {
    padding: 16px 0 0;
}

.expns_dtl_list_wrp {
    margin-top: 16px;
    padding-right: 12px;
}

.expns_itm_dtl_wrp + .expns_itm_dtl_wrp {
    padding-top: 5px;
    border-top: 1px solid rgb(255 255 255 / 17%);
    margin-top: 10px;
}

.expns_itm_head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

    .expns_itm_head a {
        color: #3f70f8;
        text-decoration: underline;
        font-size: var(--font-fourteen);
        padding: 6px 0;
    }

    .expns_itm_head button {
        text-align: left;
        color: #fff;
        padding: 8px 12px;
        width: 0;
        flex-grow: 1;
        border-radius: 6px;
        font-size: var(--font-fourteen);
    }

/* .expns_itm_dtl_wrp ul button:hover,
.expns_itm_head button:hover{
  color: #3f70f8;
  background-color: #fff;
} */

.expns_itm_dtl_wrp ul {
    padding: 4px 90px 0 45px;
    color: #fff;
    font-weight: 300;
    list-style: decimal;
    font-size: var(--body_font);
}

    .expns_itm_dtl_wrp ul li + li {
        margin-top: 2px;
    }

    .expns_itm_dtl_wrp ul button {
        width: 100%;
        padding: 7px 10px 7px 0;
        border-radius: 6px;
        text-align: left;
    }

.add_fld_wrp {
    padding: 5px 0 0 10px;
}

.cancel_btn {
    color: #ff6f6f;
    font-size: var(--font-fourteen);
}

.add_fld_wrp .sbmit_btn {
    padding: 5px 24px;
    font-size: var(--font-fourteen);
}

.add_fld_wrp input {
    height: 30px;
    border-radius: 4px;
}

.cancel_btn:hover {
    text-decoration: underline;
}

.selectd {
    background-color: #3f70f8;
}

.add_fld_wrp {
    display: none;
}

    .add_fld_wrp.active {
        display: flex;
    }

.expns_itm_dtl_wrp:has(.expns_itm_head button.selectd) .add_fld_wrp {
    padding: 15px 0 0 0;
}

/*11-08-2025*/

.no_close > label {
    color: #fff;
    position: static;
}

/*8-08-25*/
.verify_step_transaction .step_wrap .form-check-label {
    padding-left: 10px;
}

.action-button input {
    margin-top: 0;
}

.verify_step_transaction .step_wrap .action-button {
    display: flex;
    align-items: center;
}

/*08-08-25*/

/*11-08-25*/

.label_wrp {
    display: flex;
    align-items: center;
    font-size: var(--font-fourteen);
    line-height: 18px;
    max-width: 500px;
}

    .label_wrp span {
        margin-right: 15px;
        font-size: var(--font-fourteen);
    }

.step_3_action_wrp {
    display: flex;
    align-items: center;
}

    .step_3_action_wrp .action-button {
        width: 50%;
        flex: 0 0 auto;
    }

.btn_step_head_wrp {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 40%);
    margin-bottom: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .btn_step_head_wrp h6.mdl_ttle.step_modal_title {
        margin-bottom: 0;
    }

    .btn_step_head_wrp button.action-button.action-button-previous.step_back_btn {
        margin-top: 0 !important;
        margin-right: 20px;
    }

/*.btn_step_head_wrp {
  margin-bottom: 30px;
}*/

/*11-08-25*/
/* 19-08-25================================start */

/* client-wrp */
.invitetion_link_wrp_al_wrp {
    background-color: rgb(163 163 163 / 10%);
    padding: 20px;
    border-radius: 10px;
    display: flex;
}

    .invitetion_link_wrp_al_wrp h5 {
        margin-bottom: 10px;
    }

    .invitetion_link_wrp_al_wrp .incitetion_link {
        width: 60%;
        flex: 0 0 auto;
    }

    .invitetion_link_wrp_al_wrp .customize_link_wrp {
        width: 40%;
        flex: 0 0 auto;
        text-align: right;
    }

    .invitetion_link_wrp_al_wrp .customise_link_btn {
        margin-top: 20px;
        max-width: 200px;
        margin-left: auto;
    }

        .invitetion_link_wrp_al_wrp .customise_link_btn a span {
            margin-left: 10px;
        }

.copy_link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #ffffff12;
    padding: 10px;
    max-width: fit-content;
    margin-left: auto;
    border-radius: 8px;
    font-size: var(--body_font);
}

    .copy_link span {
        margin-left: 10px;
    }

.client_main_content_wrp .tbl_item {
    display: flex;
    align-items: center;
    font-size: var(--body_font);
}

.tbl_item .srch_bar {
    margin-right: 10px;
}

.tbl_item h3 span {
    width: 20px;
    height: 20px;
    font-size: var(--font-ten);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff0f;
    border-radius: 50%;
    margin-left: 10px;
}

.tbl_item h3 {
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: capitalize;
}

.tbl_item p {
    color: #ffffff8a;
    margin-top: 5px;
}

.client_btn {
    background-color: #ffffff1a;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: var(--font-fourteen);
}

    .client_btn:hover {
        opacity: 0.7;
    }

.client_main_content_wrp .trns_tble_hdr {
    display: flex;
    justify-content: space-between;
}

.client_main_content_wrp .trns_tble_body .trns_itm_wrp {
    display: flex;
    padding: 10px;
}

    .client_main_content_wrp .trns_tble_body .trns_itm_wrp .tbl_item {
        width: 11%;
    }

        .client_main_content_wrp .trns_tble_body .trns_itm_wrp .tbl_item:last-child {
            text-align: right;
        }

        .client_main_content_wrp .trns_tble_body .trns_itm_wrp .tbl_item:first-child {
            width: 35%;
        }

.client_info_wrp {
    display: flex;
}

    .client_info_wrp span {
        margin-right: 10px;
    }

.view_al_btn .viewallbtn {
    padding: 5px 10px;
    opacity: 0;
    visibility: hidden;
    background: #3f70f8;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}

    .view_al_btn .viewallbtn:hover {
        background-color: transparent;
    }

    .view_al_btn .viewallbtn span {
        margin-left: 5px;
        font-size: var(--body_font);
    }

.client_main_content_wrp .trns_tble_body .trns_itm_wrp .tbl_item .cht_dts_wp {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.client_main_content_wrp .trns_tble_body .trns_itm_wrp:hover .viewallbtn {
    opacity: 1;
    visibility: visible;
}

.client_main_content_wrp .trns_tble_body .trns_itm_wrp:hover {
    background-color: #ffffff0d;
}

.tbl_item h6 a {
    color: #00ac7f;
}

.client_main_content_wrp .tbl_item h6 a:hover {
    text-decoration: underline;
}

.client_main_content_wrp .tbl_item .cht_dts_wp .dropdown-item {
    position: relative !important;
    z-index: 5 !important;
}

.client_main_content_wrp .tbl_item .cht_dts_wp .dropdown-menu {
    z-index: 5 !important;
}

/* aside--modal */
.asd_cnct_lst_wrp .asd_cnct_lst_itm:has(.asd_cnct_sub_lst) h6 a:after {
    display: none;
}

.asd_cnct_lst_wrp .asd_cnct_lst_itm:has(.asd_cnct_sub_lst) h6 {
    margin-bottom: 10px;
}

.asd_cnct_sub_lst a {
    padding: 5px 0 5px 37px;
    font-size: var(--font-fourteen);
    width: 100%;
}

    .asd_cnct_sub_lst.active a,
    .asd_cnct_sub_lst a:hover {
        color: #06d7a0;
    }

.asd_cnct_sub_lst {
    position: relative;
    z-index: 1;
}

    .asd_cnct_sub_lst::before {
        position: absolute;
        content: "";
        top: -13px;
        left: 10px;
        width: 1px;
        height: 100%;
        background-color: #3f3f3f;
    }

    /* .asd_cnct_sub_lst:last-of-type::before{
  height: 50%;
} */

    .asd_cnct_sub_lst::after {
        position: absolute;
        width: 18px;
        height: 8px;
        background: url(../images/arrow_r_i.svg) no-repeat center;
        background-size: contain;
        content: "";
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

.add_clint_modal_bx .modal-footer button {
    width: auto;
    padding: 0 16px;
    height: 50px;
    margin: 0;
}

.add_clint_modal_bx .modal-footer {
    gap: 16px;
    padding-top: 30px;
}

.or_txt {
    text-align: center;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

    .or_txt::before,
    .or_txt::after {
        display: block;
        width: 0;
        height: 2px;
        background: rgba(255, 255, 255, 0.25);
        flex-grow: 1;
        content: "";
    }

.prsnl_invt_bx {
    border-radius: 6px;
    border: 1px solid transparent;
    background: rgb(255 255 255 / 5%);
    padding: 30px 25px;
}

    .prsnl_invt_bx h5 {
        margin-bottom: 20px;
    }

    .prsnl_invt_bx p {
        margin-bottom: 12px;
    }

.cpy_bx {
    background-color: rgb(63 112 248 / 40%);
    /* box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34); */
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    margin-bottom: 20px;
}

    .cpy_bx button {
        padding: 5px 8px;
        border-radius: 4px;
    }

        .cpy_bx button:hover {
            background-color: rgb(63 112 248);
        }

.ctmz_btn {
    padding: 0 5px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

    .ctmz_btn:hover {
        color: rgb(63 112 248);
    }

.asd_drop_wrp .dropdown.bootstrap-select {
    min-width: 100%;
    max-width: 100%;
}

.asd_drop_wrp {
    padding: 15px 5px 15px 20px;
    border-bottom: 1px solid #292929;
}

    .asd_drop_wrp .bootstrap-select > .dropdown-toggle {
        border: 1px solid #292929;
        padding: 14px 30px 14px 12px;
        font-size: var(--font-fourteen);
    }

    .asd_drop_wrp .dropdown-toggle::after {
        position: absolute;
        display: block;
        width: 15px;
        height: 15px;
        content: "";
        right: 12px;
        top: 18px;
        background-image: url(../images/dwn_arw_ash.svg);
        background-repeat: no-repeat;
        background-position: center;
        margin: 0;
        border: none;
        transition: var(--transtn);
    }

    .asd_drop_wrp .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
        text-overflow: ellipsis;
        display: block;
    }

.bootstrap-select ul.dropdown-menu .selected a {
    background-color: #252525;
    color: #fff;
    border-bottom: 1px solid #252525;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    top: 50%;
    transform: translateY(-50%);
}

.bootstrap-select .bs-ok-default:after {
    border-width: 0 1px 1px 0;
}

.bs-searchbox .form-control {
    width: 100%;
    height: 50px;
    padding: 10px 16px;
    background-color: #070707;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.21);
    transition: var(--transtn);
    color: #fff;
    font-size: var(--font-fourteen);
}

    .bs-searchbox .form-control:focus {
        box-shadow: 0 0 15px 5px rgb(63 112 248 / 15%) !important;
        border-color: #3f70f8;
    }

.asd_drop_wrp .bootstrap-select ul.dropdown-menu a {
    padding: 10px 10px;
}

.bootstrap-select ul.dropdown-menu > li.no-results {
    padding: 20px 15px 10px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
    margin-top: 15px;
    color: #fff;
    white-space: normal;
    line-height: 1.5;
}

body.body_content.aside_closed .asd_cnct_sub_lst {
    display: none;
}

/* team */
.team_page_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.team_table .trns_tble_body .trns_itm_wrp .tbl_item:first-child {
    width: 40%;
}

.team_table .trns_tble_body .trns_itm_wrp .tbl_item {
    width: 30%;
}

.tbl_item h6 span {
    background-color: #ffffff36;
    border-radius: 5px;
    padding: 5px 25px;
    text-transform: capitalize;
    font-size: var(--body_font);
}

/* 20-08-25 */
.pr_cnct_wrp span {
    margin-left: 10px;
}

.profile_menu_item {
    position: absolute;
}

.profile_wrp {
    position: relative;
}

.profile_menu_item > ul {
    position: absolute;
    top: 0;
    left: -80px;
    background-color: #000000;
    padding: 15px 15px 15px 15px;
    border-radius: 10px;
    width: 250px;
}

.profile_menu_item .asd_cnct_lst_itm {
    padding: 0;
}

    .profile_menu_item .asd_cnct_lst_itm .asd_cnct_sub_lst::after {
        left: 22px;
        top: 15px;
    }

    .profile_menu_item .asd_cnct_lst_itm .asd_cnct_sub_lst::before {
        left: 22px;
        width: 1px;
    }

    .profile_menu_item .asd_cnct_lst_itm .asd_cnct_sub_lst a {
        padding: 12px 0 12px 50px;
        font-size: var(--font-fourteen);
    }

.profile_menu_item ul li .asd_drop_wrp {
    padding: 0;
}

.profile_menu_item ul li .asd_cnct_lst_itm h6 a {
    display: flex;
    align-items: center;
}

    .profile_menu_item ul li .asd_cnct_lst_itm h6 a span {
        font-size: var(--font-fourteen);
        margin-right: 18px;
    }

.profile_menu_item ul li .asd_cnct_lst_itm:has(h6 a):last-child {
    border-bottom: none;
}

.profile_menu_item ul li .asd_drop_wrp {
    border-bottom: none;
}

.profile_menu_item ul li .asd_cnct_lst_itm h6 {
    font-size: var(--font-fourteen);
}

    .profile_menu_item ul li .asd_cnct_lst_itm h6 svg {
        margin-right: 12px;
        width: 18px;
    }

.profile_menu_item ul li .asd_drop_wrp .bootstrap-select > .dropdown-toggle {
    padding: 9px 27px 10px 10px;
    margin-bottom: 20px;
}

.profile_menu_item ul li .asd_drop_wrp .dropdown-toggle::after {
    right: 10px;
    top: 11px;
}

.profile_menu_item ul li + li {
    margin-top: 10px;
}

.profile_menu_item {
    transform: scaleY(0);
    /* overflow: hidden; */
    opacity: 0;
    transition: 400ms all ease-in-out;
}

    .profile_menu_item.open {
        transform: scaleY(1);
        transform-origin: top;
        /* overflow: visible; */
        transition: 400ms all ease-in-out;
        opacity: 1;
    }

    .profile_menu_item ul ul.dropdown-menu {
        background-color: transparent;
    }

        .profile_menu_item ul ul.dropdown-menu li + li {
            margin-top: 0;
        }

.asd_logo a {
    max-width: 40px;
}

/* 19-08-25================================end/
apps-fileview.texmex_20250814.00_p1
custom (2).css
Displaying custom (2).css.

/* 21-08-25---css */
.paginetion_al_wrap {
    display: flex;
    align-items: center;
}

    .paginetion_al_wrap .pagination_wrp {
        margin-right: 15px;
    }

.team_content_wrp {
    margin-top: 30px;
}

.customize_link_md .modal-content .modal-body .copy_link {
    justify-content: flex-start;
    margin-top: 20px;
    margin-left: unset;
}

.invite_btn_wrp {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

    .invite_btn_wrp .viewallbtn {
        width: fit-content;
        padding: 10px 25px;
        min-width: 80px;
        height: 38px;
        background-color: #3f70f8;
        color: #fff;
    }

    .invite_btn_wrp button:not(:first-child) {
        margin-left: 15px;
    }

.invite_input_wrap {
    margin-top: 15px;
}

    .invite_input_wrap input {
        width: 295px;
        height: 35px;
        padding: 10px 16px;
        background-color: #070707;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.21);
        transition: var(--transtn);
        color: #fff;
        font-size: var(--font-fourteen);
    }

        .invite_input_wrap input:read-only {
            background-color: #7f747478;
            opacity: 0.7;
        }

.invite_code {
    margin-top: 25px;
}

.sync_btn_wrp p {
    font-size: var(--font-fourteen);
}

.hdr_innr nav li.active {
    font-size: var(--font-fourteen);
}

.team_table .trns_tble_body .trns_itm_wrp .tbl_item h6 {
    font-size: var(--body_font);
}

.add_team_modal_bx .modal-footer {
    display: flex;
}

    .add_team_modal_bx .modal-footer button.whit_butt {
        width: auto;
        height: 40px;
    }

.client_main_content_wrp .tbl_item h6 {
    font-size: var(--body_font);
}

.invite_btn_wrp .viewallbtn:hover {
    background-color: #fff;
    color: #3f70f8;
}

/* 21-08-25---css */

/*21-08-25 New*/
.verification_tab_wrp_4 {
    padding: 0px 0px 0px 0px;
}

div#verifydetails {
    width: 100%;
}

.weblogo {
    margin-bottom: 30px;
}

/*21-08-25*/

/*22-08-25*/

.verification_tab_wrp_4 .frm_wrp .inpt_wrp {
    padding: 7px 0px;
}

.self_verify_frm_new_wrp .inpt_wrp {
    padding: 7px 0px;
}

.self_verify_frm_new_wrp {
    margin: 0 !important;
}

.verify_transaction_modal .modal-header {
    border-bottom: none;
}

/*26-08-25*/
.aggrd_list li label {
    margin-bottom: 0 !important;
}

div#globalapimodal {
    width: 100%;
}

/*29-08-25*/
.trns_itm_wrp.transct_pg_tble.tbl_item_deta_not_found .tbl_item {
    width: 100% !important;
    justify-content: center;
    padding: 10px;
}

/*29-08-25*/

/* 29-08-25  client-Permission */
.client_permission_table .srch_bar input {
    width: 240px;
    padding: 5px 10px 5px 33px;
    cursor: text;
}

    .client_permission_table .srch_bar input::placeholder {
        font-size: var(--body_font);
    }

.table_btn .viewallbtn {
    padding: 10px 20px;
}

.save_al_btn .viewallbtn {
    background-color: #3f70f8;
    color: #fff;
}

    .save_al_btn .viewallbtn:hover {
        background-color: #fff;
        color: #3f70f8;
    }

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp
.tbl_item:first-child {
    width: 5%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble:first-child
.tbl_item:first-child {
    width: 5%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble:first-child
.tbl_item {
    width: 30%;
}

    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble:first-child
    .tbl_item:nth-child(5),
    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble:first-child
    .tbl_item:nth-child(6) {
        width: 10%;
    }

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble
.tbl_item
.mn_hdr_2_lft {
    width: 100%;
}

    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble
    .tbl_item
    .mn_hdr_2_lft
    .dropdown.bootstrap-select {
        width: 100%;
        background-color: #111015;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 100px;
        padding: 10px 10px;
        margin-right: 15px;
    }

    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble
    .tbl_item
    .mn_hdr_2_lft
    .bootstrap-select
    .dropdown-toggle
    .filter-option-inner-inner {
        color: #808080;
    }

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble
.tbl_item
.srch_bar {
    width: 100%;
}

    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble
    .tbl_item
    .srch_bar
    input {
        width: 100%;
    }

.tbl_item .butoon_wrp {
    display: flex;
    align-items: center;
}

    .tbl_item .butoon_wrp a.viewallbtn {
        padding: 10px 20px;
    }

        .tbl_item .butoon_wrp a.viewallbtn:not(:first-child) {
            margin-left: 15px;
        }

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble
.tbl_item:first-child {
    width: 5%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble
.tbl_item {
    width: 15%;
}

    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble
    .tbl_item:last-child {
        width: 15%;
        justify-content: flex-end;
    }

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble:last-child
.tbl_item {
    width: 50%;
}

    .client_main_content_wrp
    .client_permission_table
    .trns_tble_body
    .trns_itm_wrp.transct_pg_tble:last-child
    .tbl_item
    .butoon_wrp {
        width: 100%;
        max-width: 296px;
    }

a.viewallbtn.select_save {
    background-color: #265aeb;
    color: #fff;
}

    a.viewallbtn.select_save:hover {
        background-color: transparent;
        color: #265aeb;
    }

/* 29-08-25  client-Permission */

/*01-09-25*/
.transct_pg_tble .trn_tbl_acco {
    cursor: pointer;
}

#fullOtpInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/*5-09-25*/
.access_denied_content_wrp {
    background-color: #070707;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 12px;
    box-shadow: 0px -2px 84px 0px rgba(8, 117, 255, 0.34);
    text-align: center;
    padding: 60px 30px;
}

    .access_denied_content_wrp .access_denied_icon {
        margin: 0px auto 16px;
    }

/*5-09-25*/

/* 09-9-25 */
.wallet_tble_wrp .trns_tble .trns_tble_body .trn_tbl_acco {
    padding: 8px 14px;
}

/* 10-09-25 */
.self_verify_modal {
    display: flex;
    align-items: center;
}

    .self_verify_modal img {
        max-width: 15px;
        margin-right: 8px;
    }

/*11-09-25*/
.client_info_wrp span {
    width: 20px;
    height: 20px;
    background-color: #2e2b2b91;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: var(--font-ten);
    padding: 15px;
}

body.body_content.aside_closed .hdr_innr {
    padding: 0 15px 0 115px;
}

body.aside_closed .hdr_innr {
    padding: 0 15px 0 115px;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.first_row:first-child
.tbl_item:first-child {
    width: 20%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.first_row
.tbl_item {
    width: 20%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.first_row:first-child
.tbl_item:last-child {
    width: 20%;
}

/*span.warning-icon {
    border: none;
    margin-left: 10px;
}*/

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble
.tbl_item:nth-child(4),
.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble
.tbl_item:nth-child(5) {
    width: 25%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.selectvisiblediv
.tbl_item:nth-child(2),
.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.selectvisiblediv
.tbl_item:nth-child(3) {
    width: 20%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.selectvisiblediv
.tbl_item:nth-child(1) {
    width: 10%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.selectvisiblediv
.tbl_item:nth-child(4) {
    width: 12%;
    margin-left: 15px;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.selectvisiblediv
.tbl_item:nth-child(5) {
    width: 13%;
}

.client_main_content_wrp
.client_permission_table
.trns_tble_body
.trns_itm_wrp.transct_pg_tble.selectvisiblediv
.tbl_item:last-child {
    width: 25%;
}

/*12-09-25*/

.cht_dts_wp .dropdown-menu {
    transform: translate(-26px, -8px) !important;
}

.cht_dts_wp {
    z-index: 3;
}

.add_team_modal_bx .modal-body .frm_wrp .inpt_wrp.col-6 .hdr_prc_wr {
    height: 100%;
}

.add_team_modal_bx
.modal-body
.frm_wrp
.hdr_prc_wr
.borderd_slctpckr
button.dropdown-toggle {
    background-image: url(../images/dwn_arw_ash.svg) !important;
    background-repeat: no-repeat;
    background-position: center right 21px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.21);
    padding: 12px 12px;
}

    .add_team_modal_bx
    .modal-body
    .frm_wrp
    .hdr_prc_wr
    .borderd_slctpckr
    button.dropdown-toggle:focus {
        border-color: #3f70f8;
    }

.add_team_modal_bx
.modal-body
.frm_wrp
.hdr_prc_wr
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not( .input-group-btn ) {
    width: 100% !important;
    height: 100%;
}

.add_team_modal_bx
.modal-body
.frm_wrp
.hdr_prc_wr
.bootstrap-select
.dropdown-toggle
.filter-option-inner-inner {
    color: #ffffff4f;
}

span.warning-icon {
    border: none;
    margin-left: 15px;
    max-width: 17px;
}

/*12-09-25*/

/* adress_wrap_modal  16.09.2025*/

.adress_wrap_modal .modal-footer {
    justify-content: flex-start;
    padding-top: 0;
}

.adress_wrap_modal .adress_wrp_btn_wrp {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

    .adress_wrap_modal .adress_wrp_btn_wrp button {
        min-width: 200px;
    }

        .adress_wrap_modal .adress_wrp_btn_wrp button:not(:first-child) {
            margin-left: 20px;
        }

.adress_radio_wrap {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

    .adress_radio_wrap [type="radio"]:checked,
    .adress_radio_wrap [type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px;
    }

        .adress_radio_wrap [type="radio"]:checked + label,
        .adress_radio_wrap [type="radio"]:not(:checked) + label {
            position: relative;
            cursor: pointer;
            line-height: 20px;
            display: flex;
            color: #fff;
            width: 100%;
            height: 100%;
            padding: 15px;
            align-items: center;
        }

            .adress_radio_wrap [type="radio"]:checked + label:before,
            .adress_radio_wrap [type="radio"]:not(:checked) + label:before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                border: 1px solid #ddd;
                border-radius: 0;
                background: transparent;
            }

            .adress_radio_wrap [type="radio"]:checked + label:after,
            .adress_radio_wrap [type="radio"]:not(:checked) + label:after {
                content: "";
                width: 100%;
                height: 100%;
                background: transparent;
                position: absolute;
                top: 0;
                left: 0;
                border-radius: 0;
                -webkit-transition: all 0.4s ease;
                transition: all 0.4s ease;
                border: 1px solid #265aeb;
                background-color: #265aeb61;
            }

            .adress_radio_wrap [type="radio"]:not(:checked) + label:after {
                opacity: 0;
                -webkit-transform: scale(0);
                transform: scale(0);
            }

            .adress_radio_wrap [type="radio"]:checked + label:after {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }

.adress_wrap_modal ul {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .adress_wrap_modal ul li {
        width: 50%;
        flex: 0 0 auto;
        padding: 0px 15px;
        height: auto;
        display: flex;
        align-items: center;
    }

.adress_radio_wrap form {
    width: 100%;
}

    .adress_radio_wrap form label h6 {
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        word-break: break-all;
        line-height: 1;
    }

/* adress_wrap_modal */

/* 13-10-2025 New added */
.tbl_itm:nth-of-type(11) {
    display: none;
    width: 10%;
}

#checker_tggl .tbl_itm:nth-of-type(11) {
    display: block;
}

#checker_tggl .tbl_itm:nth-of-type(10) {
    display: none;
}

.trn_tbl_acco:hover {
    background-color: rgb(59 58 58 / 10%) !important;
}

.tbl_itm.ovl_cls {
    overflow: hidden;
    position: relative;
}

    .tbl_itm.ovl_cls:hover {
        overflow: visible;
    }

    .tbl_itm.ovl_cls::before {
        position: absolute;
        background: linear-gradient( 90deg, rgba(17, 16, 21, 0) 0%, rgba(17, 16, 21, 1) 100% );
        right: 0;
        top: 0;
        width: 30px;
        height: 100%;
        content: "";
        z-index: 1;
        transition: all 0.3s ease-in-out;
    }

    .trn_tbl_acco:hover .tbl_itm.ovl_cls::before,
    .tbl_itm.ovl_cls:hover:before {
        /* display: none; */
        opacity: 0;
    }

    .tbl_itm.ovl_cls p,
    .tbl_itm.ovl_cls span {
        position: relative;
        overflow: hidden;
        word-break: keep-all;
        transition: var(--transtn);
        padding: 1px 3px;
        line-height: 1;
        display: block;
        width: fit-content;
        max-width: 100%;
        white-space: nowrap;
    }

    .tbl_itm.ovl_cls .qntty_wrp {
        width: 100%;
    }

    .tbl_itm.ovl_cls p:hover,
    .tbl_itm.ovl_cls span:hover {
        z-index: 10;
        background-color: #265aeb;
        border-radius: 5px;
        overflow: visible;
        color: white;
        line-height: 1;
        font-weight: 400;
        max-width: none;
    }

    .tbl_itm.ovl_cls p.blnk:hover {
        background-color: transparent;
    }

.nav_tabs {
    padding: 0 15px 15px;
}

.txid {
    margin: 5px 0;
    padding: 0 15px;
}

.trns_tb_tble_hdr,
.trns_tb_tble_body_rw,
.trns_tb_tble_total {
    padding: 10px 40px 10px 15px;
}

.trns_tb_tble_body {
    padding-bottom: 0;
}

.trns_tble_wrp {
    background-color: rgba(17, 16, 21, 1);
}

/* 13-10-2025 New added */

/* calender css */
.wrapper {
    display: flex;
    width: 100%;
    height: auto;
    max-width: 650px;
    border-radius: 12px;
    overflow: hidden;
    background: #141117;
    border: 1px solid rgb(255 255 255 / 17%);
}

#cal_wrp .sidebar {
    min-width: 160px;
    max-width: 160px;
    padding: 10px 0;
    background: #141117;
    border-right: 1px solid rgb(255 255 255 / 17%);
}

    #cal_wrp .sidebar h4 {
        text-align: left;
        margin-bottom: 15px;
        font-size: 16px;
        color: #fff;
        padding: 0 15px;
    }

#cal_wrp .year-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 480px;
    overflow-y: auto;
    flex-direction: column-reverse;
    display: flex;
}

    #cal_wrp .year-list li {
        padding: 10px 15px;
        margin: 0;
        text-align: left;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 14px;
    }

        #cal_wrp .year-list li:hover {
            background: rgb(30, 25, 36);
        }

        #cal_wrp .year-list li.active {
            font-weight: 500;
            background: #3f70f8;
        }

#cal_wrp .calendar-section {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 160px);
}

    #cal_wrp .calendar-section h3 {
        margin-bottom: 10px;
        font-size: 18px;
        color: #fff;
    }

#cal_wrp label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #fff;
}

#cal_wrp .date-inputs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-bottom: 0;
    align-items: center;
}

    #cal_wrp .date-inputs input {
        background: transparent;
        border: 1px solid #3a3a50;
        color: #fff;
        padding: 16px 14px;
        border-radius: 4px;
        font-size: 15px;
        text-align: left;
        border: 1px solid rgb(255 255 255 / 17%);
        outline: none;
        font-size: 14px;
    }

#cal_wrp .flatpickr-calendar {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    width: 100% !important;
    min-height: 265px;
    margin-top: 10px;
}

#cal_wrp span.flatpickr-weekday {
    color: #a3a3a3 !important;
}

#cal_wrp .flatpickr-month {
    color: #fff !important;
}

#cal_wrp .flatpickr-day.selected,
#cal_wrp .flatpickr-day.startRange,
#cal_wrp .flatpickr-day.endRange {
    background: #6c63ff !important;
    color: #fff !important;
    border-color: #6c63ff !important;
}

#cal_wrp .flatpickr-day:hover {
    background: #3a3a6a !important;
}

#cal_wrp .btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

#cal_wrp button {
    background: #6c63ff;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

    #cal_wrp button.cancel {
        background: #33334f;
    }

    #cal_wrp button:hover {
        opacity: 0.9;
    }

#cal_wrp .error {
    color: #ff4f4f;
    margin-top: 8px;
    font-size: 13px;
    text-align: center;
}

#cal_wrp .date-inputs > div {
    /* width: 48%; */
    display: flex;
    flex-direction: column;
}

#cal_wrp .flatpickr-current-month input.cur-year[disabled],
#cal_wrp .flatpickr-current-month input.cur-year[disabled]:hover {
    background: transparent;
    pointer-events: none;
    color: #fff !important;
    font-size: 16px !important;
}

#cal_wrp .flatpickr-day.selected,
#cal_wrp .flatpickr-day.startRange,
#cal_wrp .flatpickr-day.endRange {
    background: #3f70f8 !important;
    color: #fff !important;
    border-color: #3f70f8 !important;
}

#cal_wrp .flatpickr-day.inRange {
    box-shadow: none !important;
}

#cal_wrp .flatpickr-day.inRange,
#cal_wrp .flatpickr-day.prevMonthDay.inRange,
#cal_wrp .flatpickr-day.nextMonthDay.inRange,
#cal_wrp .flatpickr-day.today.inRange,
#cal_wrp .flatpickr-day.prevMonthDay.today.inRange,
#cal_wrp .flatpickr-day.nextMonthDay.today.inRange,
#cal_wrp .flatpickr-day:hover,
#cal_wrp .flatpickr-day.prevMonthDay:hover,
#cal_wrp .flatpickr-day.nextMonthDay:hover,
#cal_wrp .flatpickr-day:focus,
#cal_wrp .flatpickr-day.prevMonthDay:focus,
#cal_wrp .flatpickr-day.nextMonthDay:focus {
    border-color: transparent !important;
    background: rgb(63 112 248 / 40%) !important;
    color: #fff !important;
}

#cal_wrp .flatpickr-day {
    color: #fff !important;
    font-size: 12px !important;
    height: 30px !important;
    line-height: 30px;
    flex-basis: 13.385714%;
}

#cal_wrp .dayContainer + .dayContainer {
    box-shadow: none;
}

#cal_wrp .flatpickr-day.hidden {
    visibility: visible !important;
    color: #a3a3a3 !important;
}

#cal_wrp button {
    background: #3f70f8 !important;
}

#cal_wrp .btns {
    justify-content: flex-end !important;
    gap: 15px;
}

#cal_wrp button.cancel {
    background: transparent !important;
}

#cal_wrp .flatpickr-day:hover {
    border-radius: 4px !important;
}

#cal_wrp .flatpickr-months .flatpickr-prev-month,
#cal_wrp .flatpickr-months .flatpickr-next-month {
    color: #fff !important;
    fill: #fff !important;
}

#cal_wrp .flatpickr-months .flatpickr-prev-month,
#cal_wrp .flatpickr-months .flatpickr-next-month {
    top: 2px !important;
}

#cal_wrp .flatpickr-days {
    width: 100% !important;
    justify-content: space-between !important;
}

#cal_wrp .flatpickr-months {
    gap: 20px;
    margin-bottom: 10px;
}

#cal_wrp .rangeMode .flatpickr-day {
    margin: 0;
    border-radius: 4px !important;
}

#cal_wrp .dayContainer {
    width: calc(50% - 5px) !important;
    min-width: unset;
    max-width: unset;
    gap: 2px;
    justify-content: flex-start;
}

#cal_wrp .flatpickr-current-month {
    font-size: 14px !important;
}

    #cal_wrp .flatpickr-current-month input.cur-year[disabled],
    #cal_wrp .flatpickr-current-month input.cur-year[disabled]:hover {
        background: transparent;
        pointer-events: none;
        color: #fff !important;
        font-size: 12px !important;
    }
    /* Style for year dropdown that will replace the numeric input */
    #cal_wrp .flatpickr-current-month select.cur-year-select {
        background: transparent;
        color: #fff;
        border: none;
        font-size: 12px !important;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding: 0 6px;
        margin-left: 6px;
        cursor: pointer;
    }

        #cal_wrp .flatpickr-current-month select.cur-year-select:disabled {
            opacity: 0.8;
            pointer-events: none;
        }
    /* Style for month dropdown */
    #cal_wrp .flatpickr-current-month select.cur-month-select {
        background: transparent;
        color: #fff;
        border: none;
        font-size: 14px !important;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding: 0 6px;
        margin-right: 6px;
        cursor: pointer;
    }

        #cal_wrp .flatpickr-current-month select.cur-month-select:disabled {
            opacity: 0.8;
            pointer-events: none;
        }

#cal_wrp span.flatpickr-weekday {
    font-size: 12px !important;
    text-transform: capitalize !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#cal_wrp .flatpickr-weekdays {
    justify-content: space-between;
    margin-bottom: 5px;
}

    #cal_wrp .flatpickr-weekdays .flatpickr-weekdaycontainer {
        width: calc(50% - 5px) !important;
        flex: 0 0 auto;
    }

#cal_wrp span.flatpickr-weekday:nth-child(1)::after {
    content: "Su";
}

#cal_wrp span.flatpickr-weekday:nth-child(2)::after {
    content: "Mo";
}

#cal_wrp span.flatpickr-weekday:nth-child(3)::after {
    content: "Tu";
}

#cal_wrp span.flatpickr-weekday:nth-child(4)::after {
    content: "We";
}

#cal_wrp span.flatpickr-weekday:nth-child(5)::after {
    content: "Th";
}

#cal_wrp span.flatpickr-weekday:nth-child(6)::after {
    content: "Fr";
}

#cal_wrp span.flatpickr-weekday:nth-child(7)::after {
    content: "Sa";
}

#cal_wrp span.flatpickr-weekday {
    color: transparent !important;
    position: relative;
}

    #cal_wrp span.flatpickr-weekday::after {
        color: #a3a3a3 !important;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

#cal_wrp .flatpickr-day.inRange:empty {
    background: transparent !important;
}

#cal_wrp .flatpickr-day:empty:hover {
    background: transparent !important;
    cursor: default;
    pointer-events: none;
}

#cal_wrp .flatpickr-day.selected:empty,
#cal_wrp .flatpickr-day.endRange:empty {
    background: transparent !important;
    border: none !important;
}

.date_inpt {
    position: relative;
    flex: 0 0 auto;
    width: calc(50% - 25px);
}

    .date_inpt label {
        position: absolute;
        top: -8px;
        left: 10px;
        background: #141117;
        padding: 0 5px;
        font-size: 12px;
        color: #a3a3a3;
    }

#cal_wrp input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#cal_wrp input[type="date" i]::-webkit-calendar-picker-indicator {
    display: none;
}

#cal_wrp input[type="date"]::-moz-calendar-picker-indicator {
    display: none;
}

.flatpickr-current-month span.cur-month {
    font-weight: 500;
}
/* Start hidden; will be shown when user clicks Open button */
#cal_wrp {
    display: none;
}

.flatpickr-current-month .numInputWrapper {
    display: none !important;
}

#cal_wrp .flatpickr-current-month select.cur-year-select,
#cal_wrp .flatpickr-current-month select.cur-month-select {
    background: #141117 !important;
    outline: none;
}

#cal_wrp {
    display: none;
    position: absolute;
    width: 650px;
    top: 40px;
    left: 0;
    z-index: 9;
}

    #cal_wrp .flatpickr-current-month select.cur-month-select {
        padding: 5px;
        margin: 0;
    }

    #cal_wrp .flatpickr-current-month select.cur-year-select {
        margin-left: 0;
    }

    #cal_wrp .flatpickr-current-month select.cur-month-select:hover {
        background-color: #265aeb;
    }

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    padding: 5px !important;
}

#cal_wrp
.flatpickr-months > .flatpickr-month + .flatpickr-month
.month-year-wrapper {
    justify-content: flex-end !important;
}

#cal_wrp .flatpickr-current-month select.cur-month-select option {
    text-transform: capitalize !important;
}

#cal_wrp #applyBtn:disabled {
    background-color: #3a3a50 !important;
    cursor: not-allowed;
}
/* calender css */

/* 15-10-2025 */
.new_trns_tble_wrp .trns_tb_tble_itm:first-of-type,
.new_trns_tble_wrp .brk_itm:first-of-type {
    width: 9%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(2),
.new_trns_tble_wrp .brk_itm:nth-of-type(2) {
    width: 8%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(3),
.new_trns_tble_wrp .brk_itm:nth-of-type(3) {
    width: 9%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(4),
.new_trns_tble_wrp .brk_itm:nth-of-type(4) {
    width: 10%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(5),
.new_trns_tble_wrp .brk_itm:nth-of-type(5) {
    width: 9%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(6),
.new_trns_tble_wrp .brk_itm:nth-of-type(6) {
    width: 10%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(7),
.new_trns_tble_wrp .brk_itm:nth-of-type(7) {
    width: 12%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(8),
.new_trns_tble_wrp .brk_itm:nth-of-type(8) {
    width: 12%;
    text-align: left;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(9),
.new_trns_tble_wrp .brk_itm:nth-of-type(9) {
    width: 12%;
    text-align: left;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(10),
.new_trns_tble_wrp .brk_itm:nth-of-type(10) {
    width: 9%;
    text-align: right;
}

/* .trns_tb_tble_itm:nth-of-type(11) {
    width: 12%;
} */
/* 15-10-2025 */

/* 16-10-2025 */

.new_trns_tble_wrp
.transct_pg_tble
.trn_tbl_acco:not(.collapsed)
.tbl_itm.ovl_cls::before {
    background: linear-gradient( 90deg, rgb(17 16 21 / 0%) 0%, rgb(17 16 21 / 10%) 100% );
    transition: all 0.3s ease-in-out;
}

.brkup_tbl_hdr {
    padding: 10px 40px 10px 15px;
    font-size: 12px;
}
/* 16-10-2025 */

/* 17-10-2025 */
.trns_tb_tble_itm,
.brk_itm {
    position: relative;
}

    .trns_tb_tble_itm.ovl_cls::before,
    .brk_itm.ovl_cls::before {
        position: absolute;
        background: linear-gradient( 90deg, rgba(31, 30, 35, 0) 0%, rgba(31, 30, 35, 0.8) 100% );
        right: 0;
        top: 0;
        width: 30px;
        height: 100%;
        content: "";
        z-index: 1;
    }

    .trns_tb_tble_itm.ovl_cls p,
    .trns_tb_tble_itm.ovl_cls span,
    .brk_itm.ovl_cls p,
    .brk_itm.ovl_cls span {
        position: relative;
        overflow: hidden;
        word-break: keep-all;
        transition: var(--transtn);
        padding: 1px 3px;
        line-height: 1;
        display: block;
        width: fit-content;
        max-width: 100%;
        white-space: nowrap;
    }

    .trns_tb_tble_itm.ovl_cls .qntty_wrp,
    .brk_itm.ovl_cls .qntty_wrp {
        width: 100%;
    }

    .trns_tb_tble_itm.ovl_cls p:hover,
    .trns_tb_tble_itm.ovl_cls span:hover,
    .brk_itm.ovl_cls p:hover,
    .brk_itm.ovl_cls span:hover {
        z-index: 10;
        background-color: #265aeb;
        border-radius: 5px;
        overflow: visible;
        color: white;
        line-height: 1;
        font-weight: 400;
        max-width: none;
    }

    .trns_tb_tble_itm.ovl_cls p.blnk:hover,
    .brk_itm.ovl_cls p.blnk:hover {
        background-color: transparent;
    }

.trns_tb_tble_total > *,
.brkup_tbl_body > * {
    font-size: 12px !important;
}

.brkup_tbl_body {
    padding-bottom: 0;
}

.brkup_tbl_rw {
    padding: 10px 40px 10px 15px;
}

.sync_btn span::before {
    top: 3px;
}
/* 17-10-2025 */

/* 06-11-2025 */
.dashboard_wrp .curicon {
    width: 25px;
    height: 25px;
}

    .dashboard_wrp .curicon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.dashboard_wrp .curnname {
    min-width: 50px;
}

.dashboard_wrp .curnotimg {
    width: 25px;
    height: 25px;
    background: rgb(63 112 248 / 50%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--body_font);
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.cr_so_ex .mn_hdr.annccdmnhdr {
    margin-bottom: 20px;
}

.cr_so_ex .exch_tbr_nme,
.exch_sec .exch_sec_body {
    margin-bottom: 5px;
}

.cr_so_ex .exch_sec .exch_sec_head {
    margin-bottom: 15px;
}

.cr_so_ex .exch_sec_main {
    padding: 15px;
    margin-bottom: 20px;
}

.cr_so_ex.trnsctn_wrp .mn_hdr.annccdmnhdr h2 {
    margin-right: 0;
}

.cr_so_ex.trnsctn_wrp .exch_sec .mn_hdr_lft .mn_hdr_rgt {
    margin-left: 0;
}

.cr_so_ex .mn_hdr_rgt .srch_bar {
    padding-left: 15px;
    padding-right: 0;
}

    .cr_so_ex .mn_hdr_rgt .srch_bar input {
        width: 30px;
        height: 30px;
        background-position: left 7px center;
        background-size: 13px;
    }

        .cr_so_ex .mn_hdr_rgt .srch_bar input:not(:placeholder-shown),
        .cr_so_ex .mn_hdr_rgt .srch_bar input:focus {
            width: 200px;
            padding: 5px 10px 5px 30px;
            cursor: text;
        }

.new_trns_tble_wrp .trns_tb_tble_itm:first-of-type,
.new_trns_tble_wrp .brk_itm:first-of-type {
    width: 5%;
    max-width: 35px;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(2),
.new_trns_tble_wrp .brk_itm:nth-of-type(2) {
    width: 9%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(3),
.new_trns_tble_wrp .brk_itm:nth-of-type(3) {
    width: 10%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(4),
.new_trns_tble_wrp .brk_itm:nth-of-type(4) {
    width: 10%;
}

.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(5),
.new_trns_tble_wrp .brk_itm:nth-of-type(5) {
    width: 10%;
}
/* 06-11-2025 */

/* 07-11-2025 */
.new_trns_tble_wrp .trns_tb_tble_itm:nth-of-type(10),
.new_trns_tble_wrp .brk_itm:nth-of-type(10) {
    margin-left: auto;
    padding-right: 10px;
}

.wrp_p_icons {
    display: flex;
    align-items: center;
}

.exch_sec .exch_sec_body .wrp_p_icons .sh_i {
    width: 18px;
    height: 18px;
}

.exch_sec .exch_sec_body .tbl_itm i {
    margin-left: 25px;
}

.cr_so_ex .exch_sec .exch_sec_body .tbl_itm:first-child,
.cr_so_ex .exch_sec .exch_sec_head .tbl_itm:first-child {
    width: 34.28%;
}

    .cr_so_ex .exch_sec .exch_sec_body .tbl_itm:first-child p {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: unset;
        max-width: 200px;
    }

.wrp_icons {
    margin-left: 10px;
}

/* Tab Navigation Styling */
.review_wrp .custom-tabs {
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    border-color: rgb(63, 112, 248);
}

    .review_wrp .custom-tabs .nav-link:first-child {
        margin-left: 0;
    }

    .review_wrp .custom-tabs .nav-link {
        color: #ccc;
        background: #111015;
        border: none;
        border-radius: 8px 8px 0 0;
        margin: 0 2px;
        padding: 12px 25px;
        color: #ada6a6;
        height: 40px;
        min-width: 150px;
        padding: 0px 6px;
        background-color: rgb(88 89 90 / 16%);
        font-weight: 500;
        transition: all 0.3s ease-in-out;
    }

        .review_wrp .custom-tabs .nav-link:hover {
            color: white;
        }

        .review_wrp .custom-tabs .nav-link.active {
            color: #fff;
            background-color: rgb(63, 112, 248);
            border-bottom: none;
        }

/* Tab Content Box */
.review_wrp .tab-content {
    background: transparent;
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
}

.review_wrp .mn_hdr {
    margin-bottom: 20px;
}

.review_wrp span.cunt_revw {
    display: inline-block;
    background: #fff;
    line-height: 1;
    font-size: 10px;
    border-radius: 10px;
    padding: 3px 5px;
    color: #000a27;
    margin-left: 5px;
}

.review_wrp .custom-tabs .nav-link.active span.cunt_revw {
    background: #fff;
    color: #000a27;
}

.reports_wrappers .totallosses_tab .nav-item .nav-link {
    min-width: unset;
    width: 120px;
    height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reports_wrappers .report_block_table .table_head_wrap {
    padding: 10px 16px;
}

.reports_wrappers .report_block_table_content_wrap {
    padding: 20px 0px 10px;
}
/* 07-11-2025 */

/* 10-11-2025 */
.exch_sec .exch_sec_body .pending::before,
.exch_sec .exch_sec_body .verifi::before,
.exch_sec .exch_sec_body .create::before {
    top: -2px;
}

.exch_sec .exch_sec_body .cht_dts_wp {
    top: 0px;
}

.cht_dts_wp svg {
    height: 22px;
}

.new_trns_tble_wrp .trnsctn_wrp .tbl_itm:first-child img {
    flex: 0 0 auto;
}

.new_trns_tble_wrp .crnc_wrp > img {
    width: 20px;
}

#cal_wrp .year-list li.active {
    color: #fff;
}

.dashboard_wrp .curnname {
    display: inline-block;
    max-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-width 0.3s ease-in-out;
}

    .dashboard_wrp .curnname:hover {
        max-width: 240px;
        overflow: unset;
        text-overflow: unset;
    }

.dashboard_wrp .curicon {
    flex: 0 0 auto;
}

.reports_wrappers .report_block_table_content_wrap {
    padding: 0 0 10px;
}

.reports_wrappers .accordionPlusbutton {
    top: 14px;
    left: 14px;
}
/* 10-11-2025 */

/* 11-11-2025 */

.plan_wrap .add_on_bx.recommended {
    padding-top: 42px;
}

.trnsctn_wrp .tbl_itm:first-child img {
    width: 30px;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.settings_plans_heading h2 {
    color: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
}

.add_on_wrp {
    padding-top: 30px;
    margin-top: 20px;
}

.profile_menu_item > ul {
    left: -100px;
}

.m-12-0 {
    margin-top: 12px;
}

.self_transfer_wrap .mn_hdr h2 {
    margin-bottom: 0;
}

.review_wrp .trnsctn_wrp .mn_hdr {
    margin-bottom: 10px;
}

.review_wrp .self_transfer_wrap .self_transfer_tr {
    padding: 10px 10px;
    margin-bottom: 0;
}

    .review_wrp .self_transfer_wrap .self_transfer_tr .self_transfer_tr_con {
        position: relative;
        display: flex;
        margin-bottom: 10px;
    }

.review_wrp .check_trnsf {
    left: 11px;
    width: 25px;
    height: 25px;
}

    .review_wrp .check_trnsf svg {
        width: 14px;
    }
/* 11-11-2025 */

/* 12-11-2025 */
#cal_wrp .flatpickr-current-month select.cur-month-select {
    line-height: 1.2;
}

.review_wrp
.self_transfer_wrap
.self_transfer_tr
.self_transfer_tr_con:last-child {
    margin-bottom: 0;
}

.review_wrp .slf_trnsfr_chck_bx {
    left: 13px;
}

.review_wrp .tbl_itm:first-child img {
    width: 30px;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

.review_wrp .mn_hdr_lft_wrp_new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.review_wrp .mn_hdr_lft {
    display: flex;
    gap: 10px;
    align-items: center;
}

.review_wrp .srch_bar input {
    width: 30px;
    height: 30px;
    background-position: left 7px center;
    background-size: 13px;
}

    .review_wrp .srch_bar input:not(:placeholder-shown),
    .review_wrp .srch_bar input:focus {
        width: 200px;
        padding: 5px 10px 5px 30px;
        cursor: text;
    }

/* 12-11-2025 */

/* 13-11-2025 */
.review_wrp .trns_tb_tble_itm:first-of-type,
.review_wrp .brk_itm:first-of-type {
    width: 5%;
    max-width: 35px;
}
/* .review_wrp  */
.review_wrp .trns_tb_tble_itm:nth-of-type(2),
.review_wrp .brk_itm:nth-of-type(2) {
    width: 9%;
}

.review_wrp .trns_tb_tble_itm:nth-of-type(3),
.review_wrp .brk_itm:nth-of-type(3),
.review_wrp .trns_tb_tble_itm:nth-of-type(4),
.review_wrp .brk_itm:nth-of-type(4),
.review_wrp .trns_tb_tble_itm:nth-of-type(6),
.review_wrp .brk_itm:nth-of-type(6),
.review_wrp .trns_tb_tble_itm:nth-of-type(7),
.review_wrp .brk_itm:nth-of-type(7),
.review_wrp .trns_tb_tble_itm:nth-of-type(10),
.review_wrp .brk_itm:nth-of-type(10) {
    width: 10%;
}

.review_wrp .trns_tb_tble_itm:nth-of-type(5),
.review_wrp .brk_itm:nth-of-type(5),
.review_wrp .trns_tb_tble_itm:nth-of-type(9),
.review_wrp .brk_itm:nth-of-type(9) {
    width: 11%;
}

.review_wrp .trns_tb_tble_itm:nth-of-type(8),
.review_wrp .brk_itm:nth-of-type(8) {
    width: 12%;
    text-align: left;
}

.review_wrp .trns_tb_tble_itm:nth-of-type(9) {
    text-align: left;
}

.review_wrp .trns_tb_tble_itm:nth-of-type(10),
.review_wrp .brk_itm:nth-of-type(10) {
    margin-left: auto;
    padding-right: 10px;
    text-align: right;
}

.review_wrp .tab-content {
    padding: 0;
}

.review_wrp .custom-tabs {
    margin-bottom: 15px;
}

.currencyname {
    flex: 0 0 auto;
}

.review_wrp .trns_tb_tble_hdr,
.review_wrp .trns_tb_tble_body_rw,
.review_wrp .trns_tb_tble_total {
    padding: 10px 15px 10px 15px;
}

.review_wrp .txid {
    margin: 0;
    padding-block: 5px;
}

/*.review_wrp .trns_tble_wrp {
    overflow: hidden;
}*/

.trns_tb_tble_hdr,
.trns_tb_tble_body_rw,
.trns_tb_tble_total {
    padding-block: 5px;
}

.trn_tbl_acco {
    padding: 7px 14px;
}

.review_wrp span.cunt_revw {
    min-width: 16px;
    min-height: 16px;
}
/* 13-11-2025 */

/* 14-11-2025 */
.trn_acco_bdy {
    padding: 10px 0 0;
}

.brkup_tbl_hdr,
.brkup_tbl_rw,
.review_wrp .trns_tb_tble_hdr,
.review_wrp .trns_tb_tble_body_rw,
.review_wrp .trns_tb_tble_total {
    padding-block: 5px;
}

.review_wrp .cht_dts_wp {
    top: 13px;
}
/* 14-11-2025 */
/* 18-11-2025 */
.new_df {
    display: flex;
    gap: 10px;
    align-items: center;
}

.new_df .srch_bar input {
        width: 30px;
        height: 30px;
        background-position: left 7px center;
        background-size: 13px;
    }

.new_df .srch_bar input:not(:placeholder-shown),
.new_df .srch_bar input:focus {
            width: 200px;
            padding: 5px 10px 5px 30px;
            cursor: text;
        }
/* 18-11-2025 */

.tbl_itm.ovl_cls .crnc_wrp {
    flex-grow: unset;
}

.tbl_itm.ovl_cls .currencyname {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgb(63 112 248 / 50%) !important;
    border-radius:100% !important;
    width: 20px;
}

/* 20-11-2025 */
.new_trns_tble_wrp .cht_dts_wp svg {
    height: 20px;
    width: 17px;
}

.new_trns_tble_wrp .cht_dts_wp {
    top: 13px;
}
.new_trns_tble_wrp .crnc_wrp > img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}
.review_wrp .tbl_itm:nth-of-type(3) {
    width: 15%;
}
.review_wrp .tbl_itm:nth-of-type(2) {
    width: 9%;
}

.review_wrp
.trn_tbl_acco:not(.collapsed)
.tbl_itm.ovl_cls::before {
    background: linear-gradient( 90deg, rgb(17 16 21 / 0%) 0%, rgb(17 16 21 / 10%) 100% );
    transition: all 0.3s ease-in-out;
}

/* 20-11-2025 */

/* 21-11-2025 */

.trns_tb_tble_itm.ovl_cls .crnc_wrp {
    flex-grow: unset;
}

.trns_tb_tble_itm.ovl_cls .currencyname {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgb(63 112 248 / 50%) !important;
    border-radius: 100% !important;
    width: 20px;
}

.brk_itm.ovl_cls .crnc_wrp {
    flex-grow: unset;
}

.brk_itm.ovl_cls .currencyname {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgb(63 112 248 / 50%) !important;
    border-radius: 100% !important;
    width: 20px;
}
.unverifiedclass {
    background-color: rgb(35, 52, 100) !important;
}


.trns_itm_wrp.unverifiedclass .tbl_itm.ovl_cls::before {
    background: linear-gradient( 90deg, rgba(35, 52, 100, 0) 0%, rgba(35, 52, 100, 1) 100% );
    pointer-events: none;
}
