/*
========================
GLOBAL CSS START HERE 
========================
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* custom fonts here*/

/* consolas font */
@font-face {
    font-family: 'consolas';
    src: url('./fonts/consolas/CONSOLA.TTF') format('truetype');
    /* font-weight: 400; */
}


:root {
    --primarybtnbgColor: #007FFF;
    --primarybtnbgHoverColor: #2692ff;
}

body {
    font-family: 'consolas';
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #000;
}

.font-secondary {
    font-family: 'consolas';
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: white;
    background: #007FFF;
}

::-webkit-selection {
    color: white;
    background: #007FFF;
}

::-moz-selection {
    color: white;
    background: #007FFF;
}



/*
============================
onboarding CSS START HERE 
============================
*/
.onboarding_wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: url(images/thumb/thumb1.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.onboarding_wrapper .onboarding_card {
    border-radius: 20px;
    background: #1B182E;
    padding: 35px 50px;
    width: 100%;
    max-width: 500px;
    color: #fff;
}

.onboarding_card .skip_btn {
    color: #BA75FF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 28px;
    border-radius: 50px;
    background: rgba(115, 103, 182, 0.30);
    transition: 0.3s;
    position: absolute;
    top: 16px;
    right: 16px;
}

.onboarding_card .skip_btn:hover {
    background: rgba(115, 103, 182, 0.50);
}

.onboarding_card .obCard_header {
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.onboarding_card .obCard_header img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.onboarding_card.one .obCard_header img {
    max-width: 260px;
}

.onboarding_card.two .obCard_header img {
    max-width: 170px;
    margin-top: 50px;
    position: relative;
}

.onboarding_card.three .obCard_header img {
    max-width: 185px;
}

.onboarding_card.three .obCard_header img {
    width: 100%;
    max-width: 170px;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
}

.onboarding_card .obCard_body h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-top: 20px;
    margin-bottom: 15px;
}

.onboarding_card .obCard_body p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 15px;
}

.onboarding_card .obCard_body button {
    width: 100%;
    max-width: 269px;
    min-height: 47px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border: 0;
    border-radius: 5px;
    background: var(--primarybtnbgColor);
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
    transition: 0.3s;
}

.onboarding_card .obCard_body button:hover {
    background: #2692ff;
}

.onboarding_card .obCard_body ul.ob_dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.onboarding_card .obCard_body ul.ob_dots li {
    width: 13px;
    height: 13px;
    border-radius: 14px;
    border: 1px solid #1B182E;
    box-shadow: 0 0 0 1px #5B5193;
}

.onboarding_card .obCard_body ul.ob_dots li.active {
    background-color: var(--primarybtnbgColor);
}


/*
==============================
CREATE ACCOUNT CSS START HERE 
==============================
*/
.onboarding_wrapper.createAnAccount {
    background-image: url(images/thumb/thumb5.png);
}

.onboarding_wrapper.createAnAccount>a.caaBackBtn {
    width: 100px;
    height: 40px;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    top: 40px;
    left: 50px;
    transition: 0.3s;
    padding: 4px 8px;
    border-radius: 5px;
}

.onboarding_wrapper.createAnAccount>a.caaBackBtn:hover {
    background: rgba(69, 70, 114, 0.3);
}

.createAnAccount_card {
    border-radius: 20px;
    background: #1B182E;
    padding: 35px;
    width: 100%;
    min-height: 550px;
    max-width: 500px;
    color: #fff;
}

.createAnAccount_body>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 15px;
}

.createAnAccount_body>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 30px;
}

.createAnAccount_body .form_input span {
    color: #4202CC;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    display: block;
    margin-bottom: 12px;
}

.createAnAccount_body .form_input input {
    width: 100%;
    min-height: 45px;
    border-radius: 5px;
    border: 1px solid #4202CC;
    background: #1B182E;
    color: #fff;
    padding: 5px 22px;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    transition: 0.3s;
    margin-bottom: 20px;
}

.createAnAccount_body .form_input input::placeholder {
    color: #737084;
}

.createAnAccount_body .form_input input:focus {
    box-shadow: 0 0 5px 5px rgba(66, 2, 204, 0.3);
}

.createAnAccount_body .form_input i.toggle-password {
    position: absolute;
    top: 63%;
    right: 15px;
    font-size: 12px;
    cursor: pointer;
    color: #8572FF;
}

.createAnAccount_body .form_btn button {
    width: 100%;
    min-height: 45px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    background: var(--primarybtnbgColor);
    border: 0;
    transition: 0.3s;
}

.createAnAccount_body .form_btn button:hover {
    background: #2692ff;

}

.createAnAccount_body .form_btn button.back {
    background: #454672;
}

.createAnAccount_body .form_btn button.back:hover {
    background: #50516e;
}

.createAnAccount_header {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.createAnAccount_header img {
    width: 100%;
    max-width: 100px;
}

.createAnAccount_card .progress-bar {
    border-radius: 100px;
    height: 8px;
    font-size: 8px;
    margin-top: 10px;
}

.caaBtnRow {
    margin-top: 20px !important;
}

.help-block {
    position: relative;
    display: block;
    z-index: 22;
}

.help-block::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #272341;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    border-radius: 100px;
}


/*
==========================
walletSelection CSS START 
==========================
*/
.walletSelection_logo>a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 45px;
}

.walletSelection_logo>a img {
    width: 100%;
    max-width: 210px;
}

.walletSelection_Card {
    padding: 38px 23px;
    padding-top: 75px;
    border-radius: 20px;
    background: #1B182E;
    width: 100%;
    max-width: 320px;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.walletSelection_Card::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(173, 0, 255, 0), rgba(173, 0, 255, 1));
    border-radius: 20px;
    z-index: -2;
    opacity: 0;
    transition: 0.3s;
}

.walletSelection_Card:hover:after {
    opacity: 1;
}

.walletSelection_Card::before {
    content: "";
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1B182E;
    border-radius: 20px;
    z-index: -1;
}

.walletSelection_Card>img {
    width: 100%;
    max-width: 124px;
    display: block;
    margin: 0 auto;
}

.walletSelectionCard_content>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 15px;
}

.walletSelectionCard_content>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.walletSelectionCard_wrapper {
    display: flex;
    gap: 50px;
}

.createAnAccount_header.createNewWallet>img {
    width: 100%;
    max-width: 124px;
}


/*
==========================
wallet Pin Set CSS START 
==========================
*/
.walletPinSet_card {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    background: #1B182E;
    padding: 45px 60px;
    padding-top: 30px;
    margin-bottom: 35px;
}

.walletPinSetCard_header h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 8px;
}

.walletPinSetCard_header p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 24px;
}

.walletPinKey_wrapper {
    width: 100%;
    max-width: 175px;
    margin: 0 auto;
    margin-top: 22px;
}


.walletPinBackconti_btn button {
    width: 100%;
    min-height: 47px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    background-color: var(--primarybtnbgColor);
    border: 0;
    transition: 0.3s;
}

.walletPinBackconti_btn button:hover {
    background: var(--primarybtnbgHoverColor);
}

.walletPinBackconti_btn button.continueBtn:hover:not(.disable) {
    background-color: var(--primarybtnbgHoverColor);
}

.walletPinBackconti_btn button:disabled {
    background: #454672;
    color: #717290;
    cursor: no-drop;
}

.walletPinBackconti_btn button.back {
    background: #454672;
}

.walletPinBackconti_btn button.back:hover {
    background: #50516e;
}

/* --------------- */
.pin-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

.pin-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #3B3B5C;
    background-color: #3B3B5C;
    border-radius: 50%;
    transition: 0.3s;
}

.pin-dot.filled {
    background-color: #007FFF;
    border-color: #007FFF;
    animation: pin-pop 0.2s ease;
}

@keyframes pin-pop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    80% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pin-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.pin-shake {
    animation: pin-shake 0.4s ease;
}

#pinInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.walletPinKey_wrapper .walletPinBtn.iconXmark button {
    color: #777777;
}

.walletPinKey_wrapper .walletPinBtn.iconXmark button:hover {
    color: #fff;
}

.walletPinKey_wrapper .walletPinBtn.icon:not(.disable) button {
    background-color: var(--primarybtnbgColor);
}

.walletPinKey_wrapper .walletPinBtn.icon:not(.disable):hover button {
    background-color: var(--primarybtnbgHoverColor);
}

.walletPinKey_wrapper .walletPinBtn.disable button:hover {
    cursor: no-drop;
}

.walletPinKey_wrapper .walletPinBtn.disable button {
    color: #777777;
}

.walletPinBackconti_wrapper>a.skipStep {
    color: #007FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    display: block;
    text-align: center;
    margin-top: 20px;
    transition: 0.3s;
}

.walletPinBackconti_wrapper>a.skipStep:hover {
    letter-spacing: 1px;
}


/*
============================
word Seed phrase CSS START 
============================
*/
.wordSeed_item {
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordSeed_item h4 {
    color: #007FFF;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 112%;
}

.walletSelection_Card.wordSeed {
    justify-content: center;
    padding: 0 30px;
    padding-top: 30px;
    max-width: 700px !important;
    min-height: 278px;
}


/*
==================================
word seed phrase let go CSS START 
==================================
*/
.walletSelection_wrapper.backupWallet {
    width: 100%;
    max-width: 515px;
}

.walletSelection_wrapper.wordseedPhrase {
    width: 700px;
}

.walletSelection_Card.backupWallet {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    padding-top: 70px;
    padding-bottom: 35px;
    justify-content: start;
    border-radius: 20px;
    border: 1px solid #34304F;
    background: #1B182E;
    cursor: default;
}

.walletSelection_Card.backupWallet::after,
.walletSelection_Card.backupWallet::before,
.walletSelection_Card.noAfterBefore::after,
.walletSelection_Card.noAfterBefore::before {
    display: none;
}

.backupWallet_body>img {
    width: 100%;
    max-width: 64px;
    margin: 0 auto;
    display: block;
    margin-bottom: 11px;
}

.backupWallet_body>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 15px;
}

.backupWallet_body>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.backupWallet_body {
    padding-bottom: 35px;
    border-bottom: 1px solid #34304F;
}

.backupWallet_footer {
    padding-top: 35px;
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
}

.backupWallet_footer>label {
    width: 100%;
    color: #5A576F;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.backupWallet_footer>label h6 {
    width: calc(100% - 15px);
}

.backupWallet_footer>label input {
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #5A576F;
    border-radius: 50%;
    margin-top: 3px;
}

.backupWallet_footer>label input:checked {
    border-color: #007FFF;
    background-color: #007FFF;

}

.backupWallet_footer>button {
    width: 100%;
    min-height: 45px;
    border-radius: 5px;
    background: #007FFF;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border: 0;
    margin-top: 27px;
    transition: 0.3s;
}

.backupWallet_footer>button:hover {
    background: var(--primarybtnbgHoverColor);
}

.backupWallet_footer>button:disabled {
    background-color: #454672;
    color: #717290;
    cursor: no-drop;
}

.wrong_phrase_msg {
    border-radius: 10px;
    background: #BD093D;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
    padding: 14px 22px;
    margin: 0 auto;
    margin-top: 30px;
    width: 100%;
    max-width: 430px;
}


/*
=============================
seedPhraseProcess CSS START 
==============================
*/
.walletSelection_wrapper.seedPhraseProcess {
    width: 100%;
    max-width: 1010px;
}

.seedPhraseProcess_content {
    max-width: 100%;
    border-radius: 20px;
    padding: 30px;
    background: rgba(27, 24, 46, 0.40);
    backdrop-filter: blur(30px);
}

.seedPhraseProcess_title>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 15px;
}

.seedPhraseProcess_title>p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 20px;
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.seedPhraseProcess_item {
    border-radius: 5px;
    background: #221E37;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    cursor: pointer;
}

.seedPhraseProcess_item h6.number {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    border-radius: 5px 0px 0px 5px;
    background: #322874;
    width: 45px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.seedPhraseProcess_item.active h6.number {
    background-color: #007FFF;
}

.seedPhraseProcess_item h5 {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
    width: calc(100% - 45px);
}

.seedPhraseProcess_item_wrapper {
    counter-reset: item;
}

.seedPhraseProcess_item h6.number::before {
    counter-increment: item;
    content: counter(item);
    display: block;
    font-weight: bold;
}

.seedPhraseProcess_item_wrapper {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
}

.seedPhraseProcess_btn>h6 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 151%;
    padding: 9px 14px;
    border-radius: 5px;
    background: #392984;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    margin-top: 25px;
}

.seedPhraseProcess_btn>button {
    width: 100%;
    max-width: 238px;
    min-height: 45px;
    display: block;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    margin-top: 35px;
    border: 0;
    border-radius: 5px;
    background: #007FFF;
    transition: 0.3s;
}

.seedPhraseProcess_btn>button:hover {
    background: var(--primarybtnbgHoverColor);
}

/*
===============================
seed Phrase Confirm CSS START 
===============================
*/
.seedPhraseConfirm_item_wrapper {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.seedPhraseConfirm_item_wrapper .form_input {
    border-bottom: 2px solid #39335B;
    display: flex;
    align-items: center;
}

.seedPhraseConfirm_item_wrapper .form_input span {
    color: #39335B;
    font-size: 16px;
    font-weight: 500;
    line-height: 151%;
    width: 25px;
    display: block;
    text-align: center;
}

.seedPhraseConfirm_item_wrapper .form_input input {
    width: calc(100% - 25px);
    background-color: transparent;
    border: 0;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
}

.seedPhraseConfirm_item_wrapper .formInput_data button {
    border: 0;
    padding: 9px 15px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    border-radius: 5px;
    background: #231F3C;
    margin: 0 auto;
    margin-top: 30px;
    display: block;
}

.seedPhraseProcess_btn.seedPhraseConfirm {
    max-width: 245px;
    min-height: 45px;
    margin: 0 auto;
}

/*
===============================
Wallet create done CSS START 
===============================
*/
.WalletCreated_card {
    border-radius: 20px;
    background: #1B182E;
    padding: 0 50px;
    padding-top: 84px;
    padding-bottom: 94px;
}

.WalletCreated_card>img {
    width: 112px;
    display: block;
    margin: 0 auto;
}

.WalletCreated_card>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-top: 30px;
    margin-bottom: 18px;
}

.WalletCreated_card>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 18px;
}

.WalletCreated_card>button {
    width: 100%;
    max-width: 344px;
    min-height: 45px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    background: #007FFF;
    border: 0;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

.WalletCreated_card>button:hover {
    background: var(--primarybtnbgHoverColor);
}


/*
========================
DASHBOARD CSS START HERE 
========================
*/
.dashboard_main {
    background-color: #151321;
    width: 100%;
    height: 100vh;
    color: #fff;
}

.dashboard_main .aside_col {
    width: 230px;
    height: 100%;
}

.dashboard_main aside {
    width: 100%;
    height: 100vh;
    background-color: #1B1D2D;
    padding: 55px 0;
}

.dashboard_main .dashboardRight_col {
    width: calc(100% - 230px);
}

.sideMenu_content {
    /* padding-top: 40px; */
}

aside .sideLogo a img {
    width: 100%;
    max-width: 82px;
    margin: 0 auto;
    display: block;
}

.sideMenu_content ul li a {
    color: #6A7785;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    padding: 22px 35px;
    display: flex;
    align-items: center;
    gap: 11px;
    text-transform: capitalize;
}

.sideMenu_content ul li a.active {
    background: linear-gradient(90deg, #1B1D2D 0%, #3A326B 100%);
    color: #fff;
}

.sideMenu_content ul li a:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.sideMenu_content ul li a i {
    font-size: 24px;
    color: #6A7785;
    width: 24px;
    display: flex;
    justify-content: center;
}

.sideMenu_content ul li a.active i {
    color: #007FFF;
}

.dashboardRightMain_header .dbrmh_left ul li img.logo {
    width: 40px;
    display: block;
}

.dashboardRightMain_header .dbrmh_left ul li h6.name {
    color: #007FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 112%;
    margin-bottom: 2px;
    white-space: nowrap;
    width: 90px;
    overflow: hidden;
    text-overflow: "..";
}

.dashboardRightMain_header .dbrmh_left ul li h5.balance {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 112%;
}

.dashboardRightMain_header .dbrmh_left ul {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 10px 25px;
    padding-right: 45px;
    background: #24284A;
    width: fit-content;
    height: 100%;
    width: 200px;
}

.dashboardRightMain_header .dbrmh_left {
    display: flex;
}

.dashboardRightMain_header {
    background-color: #1B1D2D;
}

.dbrmh_left button.drmh_addBtn {
    border: 0;
    background-color: transparent;
    padding: 0 23px;
    transition: 0.3s;
}

.dbrmh_left button.drmh_addBtn:hover {
    background-color: rgba(115, 103, 182, 0.1);
}

.dbrmh_left button.drmh_addBtn i {
    width: 35px;
    height: 35px;
    color: #7367B6;
    font-size: 15px;
    border: 2px solid #7367B6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dbrmh_right>ul>li>i {
    font-size: 20px;
    color: #6A7785;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.dbrmh_right>ul>li>i:hover {
    color: #fff;
}

.dbrmh_right .dbrmhr_user {
    border: 0;
    background-color: transparent;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 112%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    transition: 0.3s;
    height: 100%;
}

.dbrmh_right .dbrmhr_user:hover {
    color: #007FFF;
}

.dbrmh_right .dbrmhr_user.show {
    color: #007FFF;
}

.dbrmh_right>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
    gap: 15px;
    height: 100%;
}

.dbrmh_right,
.dbrmh_right>ul>li,
.dbrmh_right>ul>li>div {
    height: 100%;
}

.dbrmh_right {
    position: relative;
}

.dbrmh_right>ul>li {
    display: flex;
    align-items: center;
    position: relative;
}

.dbrmh_right .dropdown-menu {
    padding-top: 10px;
    padding-bottom: 13px;
    width: 170px;
    border-radius: 12px;
    background: #202438;
    color: #fff;
    border: 0;
}

.dbrmh_right .dropdown-menu:not(.offcanvas .dropdown-menu) {
    inset: 0px auto auto -20px !important;

}

.dbrmh_right .dropdown-menu li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 112%;
    padding: 8px 22px;
}

.dbrmh_right .dropdown-menu li a:not(.logout):hover {
    color: #7367B6;
    background-color: transparent;
}

.dbrmh_right .dropdown-menu li a.logout {
    padding-top: 10px;
    border-top: 1px solid #2D324D;
    margin-top: 10px;
    color: #EB1414;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
}

.dbrmh_right .dropdown-menu li a.logout:hover {
    background-color: transparent;
}

.logout-btn-header {
    background: transparent;
    border: 1px solid #2e3347;
    color: #c9d1e0;
    font-size: 16px;
    border-radius: 8px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    margin-left: 30px;
}

.logout-btn-header:hover {
    background: #242a3d;
    border-color: #007FFF;
    color: #007FFF;
}

.dbrmh_right .dropdown-menu {
    margin-top: -10px !important;
    z-index: 1050 !important;
    position: absolute;
}

.dashboardRightMain_body {
    width: 100%;
    height: calc(100vh - 73px);
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}


/* hamburger css */

.hamburger .line {
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
}


.walletBalanceChart_wrapper {
    padding: 0 40px;
    padding-left: 30px;
    padding-top: 35px;
    padding-bottom: 20px;
    border-radius: 10px;
    background: #1C1F30;
    height: 100%;
}

.walletBalanceChart_title>h4 {
    color: #7367B6;
    font-size: 24px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 10px;
}

.walletBalanceChart_title>h3 {
    color: #FFF;
    font-size: 32px;
    font-weight: 600;
    line-height: 112%;
}

.walletBalanceChart_dateFilter ul li {
    color: #767386;
    font-size: 12px;
    font-weight: 400;
    line-height: 112%;
    cursor: pointer;
    transition: 0.3s;
    padding-bottom: 6.5px;
    margin-bottom: -2px;
    border-bottom: 3px solid transparent;
}

.walletBalanceChart_dateFilter ul li:hover {
    color: #007FFF;
}

.walletBalanceChart_dateFilter ul li.active {
    color: #007FFF;
    border-bottom: 3px solid #007FFF;
}

.walletBalanceChart_dateFilter>p {
    color: #7367B6;
    font-size: 12px;
    font-weight: 400;
    line-height: 112%;
    margin-top: 12px;
    text-align: right;
}

.walletBalanceChart_dateFilter ul {
    width: 192px;
    margin-left: auto;
    border-bottom: 3px solid #2B3048;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.walletBalance_Chart img {
    width: 100%;
    margin-top: 30px;
    display: block;
}

.walletSummary_wrapper {
    height: 100%;
    border-radius: 10px;
    background: #1C1F30;
    padding: 25px;
}

.walletSummary_wrapper canvas {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.walletSummarypie_content h5.name {
    color: #007FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 112%;
    margin-bottom: 5px;
    text-align: center;
}

.walletSummarypie_content h4.balance {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    margin-bottom: 5px;
    text-align: center;
}

.walletSummarypie_content h6 {
    color: #767386;
    font-size: 12px;
    font-weight: 500;
    line-height: 112%;
    text-align: center;
}

.walletSummarypie_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.walletSp_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.walletSp_bar .progress {
    width: calc(100% - 25px);
    background-color: #282B42;
    height: 4px;
}

.walletSp_bar span.percent {
    display: block;
    color: #767386;
    font-size: 10px;
    font-weight: 400;
    line-height: 112%;
}

.walletSp_bar .progress-bar {
    background-color: #767386;
}

.walletSummary_progress .wsp_coin {
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.walletSummary_progress .wsp_coin.btc {
    color: #FF8A00;
}

.walletSummary_progress .wsp_coin.usdt {
    color: #03EAA2;
}

.walletSummary_progress .wsp_coin.bnb {
    color: #FCC934;
}

.walletSummary_progress .wsp_coin.btc {
    color: #5D4AC5;
}

.walletSummary_progress .wsp_coin.usd {
    color: #767386;
}

.walletSummary_progress>.row {
    margin: 10px 0 !important;
}

.walletSummary_progress {
    margin-top: 13px;
}

.coinAssetTable_header {
    display: flex;
    align-items: center;
    gap: 5px;
}

.coinAssetTable_header>h3.title {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
    width: 145px;
}

.coinAssetTable_header>input[type="search"] {
    width: calc(100% - 225px);
    min-height: 37px;
    border: 0;
    border-radius: 5px;
    background-color: #1A1728;
    padding: 0 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    padding-left: 43px;
    background-image: url(images/icon/icon3.svg);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 8px 50%;
    border: 1px solid transparent;
    transition: 0.3s;
}

.coinAssetTable_header>input[type="search"]:focus {
    border: 1px solid #767386;

}

.coinAssetTable_header>input[type="search"]::placeholder {
    color: #3E3859;
}

.coinAssetTableHeader_btn {
    width: 80px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.coinAssetTableHeader_btn button {
    border: 0;
    width: 37px;
    height: 37px;
    font-size: 24px;
    border-radius: 5px;
    background: #1A1728;
    color: #2F2A45;
    transition: 0.3s;
}

.coinAssetTableHeader_btn button:hover {
    color: #767386;
}

.coinAssetTableHeader_btn button:first-child {
    font-size: 20px;
}

.coinAssetTable_wrapper {
    margin-top: 20px;
}

.coinAsset_table {
    background-color: #1B202F;
    border-radius: 10px;
    padding: 0 20px;
    margin-top: 15px;
    overflow: auto;
    scrollbar-width: thin;
}

.coinAsset_table table {
    min-width: 900px;
    width: 100%;
}

.coinAsset_table table tr:not(.coinAsset_table table tr:first-child) {
    border-bottom: 2px solid #1C1F30;
    transition: 0.3s;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(20, 28, 35, 0.00) 0%, #252940 50%, rgba(20, 28, 35, 0.00) 100%);
}

.coinAsset_table table tr:not(.coinAsset_table table tr:first-child):hover {
    background: rgba(255, 255, 255, 0.01);
}

.coinAsset_table table tr th {
    padding: 25px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.coinAsset_table table tr th:not(.coinAsset_table table tr th:first-child) {
    text-align: center;
}

.coinAsset_table table tr td:not(.coinAsset_table table tr td:first-child) {
    text-align: center;
}

.coinAsset_table table tr td {
    padding: 11px 0;
}

.coinAsset_table table tr th select {
    color: #637080;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    padding-left: 17px;
    border-radius: 100px;
    background: #282C44;
    border: 0;
    width: 110px;
    height: 35px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url(images/icon/icon4.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
}

.coinAsset_table .assetName_data ul li img {
    width: 41px;
    display: block;
}

.coinAsset_table .assetName_data ul li h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 5px;
}

.coinAsset_table .assetName_data ul li h5 {
    color: #637080;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.coinAsset_table .assetName_data ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coinAsset_table .balance_data h5 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.coinAsset_table .value_data h5 {
    color: #8292A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.coinAsset_table .price_data h5 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.coinAsset_table .chg24h_data h5 {
    color: #BD093D;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;

}

.coinAsset_table .marketCap_data h5 {
    color: #8292A1;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.coinAsset_table .marketCap_data h5 span {
    color: #FCAD4E;
    font-weight: 600;
}

.chartOverview_data>img {
    width: 100px;
}

/* chart css */
#apex-chart {
    max-width: 100%;
    margin: auto;
    margin-top: 30px;
}

.apexcharts-tooltip {
    background-color: #1e293b !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    font-size: 14px !important;
}

.apexcharts-tooltip-title {
    background-color: #1e293b !important;
    border-bottom: 1px solid #334155 !important;
}

.apexcharts-tooltip-text {
    color: #ffffff !important;
}


/*
=========================
MY WALLET CSS START HERE 
=========================
*/
.myWallet_wrapper {
    height: 100%;
    display: flex;
}

.myWallet_sidebar {
    width: 200px;
    background: #11101B;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    position: relative;
    padding-bottom: 20px;
}

.myWallet_body {
    width: calc(100% - 200px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myWallet_sidebar>input[type='search'] {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    width: 100%;
    min-height: 65px;
    padding-left: 40px;
    border: 0;
    background-color: #191726;
    background-image: url(images/icon/icon3.svg);
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-size: 20px;
    margin: 12px 0;
    position: sticky;
    top: 0;
}

.myWallet_sidebar>input[type='search']::placeholder {
    color: #3E3859;
}

.myWallet_sidebar_item ul li img {
    width: 100%;
    display: block;
}

.myWallet_sidebar_item ul li h5 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 3px;
}

.myWallet_sidebar_item ul li h6 {
    color: #637080;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.myWallet_sidebar_item ul li:first-child {
    width: 41px;
}

.myWallet_sidebar_item ul li:last-child {
    width: calc(100% - 45px);
}

.myWallet_sidebar_item ul {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 29px;
    padding-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.myWallet_sidebar_item ul:hover {
    background: rgba(255, 255, 255, 0.03);
}

.myWallet_sidebar_item ul li h6 span {
    color: #83A0BE;
}


.myWallet_sidebar_item ul.active {
    background: linear-gradient(90deg, #11101B 0%, #3A326A 100%) !important;
}


.myWallet_sidebar_item>button.addAssets {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    border-radius: 10px;
    border: 1px dashed #3C4264;
    background: #1A1828;
    width: calc(100% - 18px);
    min-height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
    margin-top: 20px;
    transition: 0.3s;
    display: none;
}

.myWallet_sidebar_item>button.addAssets:hover {
    background-color: #292832;
}

.myWallet_balance>img {
    width: 129px;
    display: block;
    margin: 0 auto;
}

.myWallet_balance>h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 112%;
    margin-top: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.myWallet_balance.bitcoin>ul li {
    color: #504974;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    border-radius: 5px;
    background: #1E1B2F;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 80px;
    min-height: 80px;
    cursor: pointer;
    transition: 0.3s;
}

.myWallet_balance.bitcoin>ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.myWallet_balance.bitcoin>ul li img {
    width: 36px;
}

.myWallet_balance.bitcoin>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.myWallet_balance.bitcoin>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 276%;
    margin-top: 80px;
}

.myWallet_balance.litecoin h2 {
    color: #927DFF;
}

.myWallet_balance.ethereum h2 {
    color: #0038FF;
}

.myWallet_balance.xrp h2 {
    color: #83A0BE;
}


.coinAssetTable_wrapper>button.tableAddAsstes {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    border-radius: 10px;
    border: 1px dashed #3C4264;
    background: #1A1828;
    width: calc(100% - 18px);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
    margin-top: 10px;
    transition: 0.3s;
}

.coinAssetTable_wrapper>button.tableAddAsstes:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal {
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(5px);
}

.newAccount_popup_wrapper {
    border-radius: 20px;
    background: #1C1F30;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 85px 60px;
}

.modal.newAccount .modal-content {
    background-color: transparent;
}

.newAccountPopup_header>img.vector {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.newAccountPopup_header>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-top: 30px;
    margin-bottom: 15px;
}

.newAccountPopup_header>h6 {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

body.myWallet_page .newAccountPopup_header>h6 {
    color: #5F6692;
}

.newAccount_popup_wrapper .form_input>span {
    color: #4202CC;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 12px;
    display: block;
}

.newAccount_popup_wrapper .form_input>input {
    width: 100%;
    min-height: 44px;
    border-radius: 5px;
    box-shadow: 0 0 0 1px #4202CC;
    background: #1B182E;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    padding: 0 20px;
    border: 0;
}

.newAccount_popup_wrapper .form_input>input:focus {
    box-shadow: 0 0 10px 4px rgba(66, 2, 204, 0.8);
}

.newAccount_popup_wrapper .form_input>input::placeholder {
    color: gray;
}

.newAccount_popup_wrapper .form_btn button {
    width: 100%;
    min-height: 45px;
    border: 0;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    background: #007FFF;
    transition: 0.3s;
}

.newAccount_popup_wrapper .form_btn button.changeName:hover {
    background-color: var(--primarybtnbgHoverColor);
}

.newAccount_popup_wrapper .form_btn button.back {
    background: #454672;
}

.newAccount_popup_wrapper .form_btn button.back:hover {
    background-color: #4f4f70;
}

.newAccount_popup_wrapper>button.close {
    border: 0;
    background: transparent;
    transition: 0.3s;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.newAccount_popup_wrapper>button.close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sendPopup1 .modal-dialog {
    max-width: 555px;
}

.sendPopup1 .newAccount_popup_wrapper {
    border-radius: 20px;
    background: #1C1F30;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 40px 30px;
    padding-top: 22px;
    width: calc(100% - 24px);
    max-width: 480px;
    margin: 0 auto;
}

.sendPopup1 .newAccountPopup_header>img.vector {
    width: 70px;
}

.sendPopup1 .newAccountPopup_header>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-top: 20px;
    margin-bottom: 10px;
}

.sendPopup1 .newAccountPopup_header>h3 span {
    color: #6A7785;
    font-size: 16px;
    text-transform: uppercase;
}

.sendPopup1 .newAccountPopup_header>h6 {
    margin-bottom: 30px;
}

.sendPopup1 .newAccount_popup_wrapper .form_input>span {
    color: #007FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 156%;
    margin-bottom: 5px;
}

.sendPopup1 .newAccount_popup_wrapper .form_input>input {
    border-radius: 5px;
    border: 1px solid #4D5476;
    background: #202438;
    box-shadow: none;
    padding: 0 15px;
}

.sendPopup1 .newAccount_popup_wrapper .form_input>input:focus {
    border-color: #007FFF;
}

.sendPopup1 .newAccount_popup_wrapper {
    border-radius: 10px;
}

.sendPopup1 button.copy_btn {
    background-color: transparent;
    border: 0;
    color: #2E334E;
    font-size: 16px;
    padding: 5px;
    position: absolute;
    background-color: #202438;
    bottom: 5px;
    right: 2px;
    width: 40px;
    height: 35px;
    transition: 0.3s;
}

.sendPopup1 button.copy_btn:hover {
    color: #4F4F70;
}

.sendPopup2 .form_input input::placeholder {
    color: rgba(255, 255, 255, 0.40);
}

.newAccount .form_btn button {
    margin-top: 5px;
}

.sendPopup2 .newAccount_popup_wrapper .form_input>input {
    color: #fff;
}

.sucessfully_sent>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 112%;
}

.sucessfully_sent>h3 span {
    color: #6A7785;
    font-size: 18px;
    text-transform: uppercase;
}

.sucessfully_sent>h3 img {
    width: 27px;
}

.sucessfully_sent>img.vector {
    width: 168px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
}

.sucessfully_sent>span {
    color: #5F6692;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 156%;
    display: block;
}

.sucessfully_sent {
    padding-top: 50px;
    padding-bottom: 40px;
}


#receivePopup1 img.qrCode {
    width: 100%;
    max-width: 166px;
    display: block;
    margin: 0 auto;

}

#receivePopup1 .form_input input {
    color: #fff;
}

#receivePopup1 .form_btn button i {
    font-size: 18px;
    margin-left: 5px;
}

#receivePopup1 .newAccountPopup_header {
    margin-top: -60px;
}


.transaction_title>h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
}

.transaction_title {
    padding-top: 70px;
    padding-bottom: 24px;
    border-bottom: 2px solid #2A273F;
}

.noTransaction_content>img {
    width: 100%;
    max-width: 170px;
    display: block;
    margin: 0 auto;
    margin-bottom: 19px;
}

.noTransaction_content>p {
    color: #3A326B;
    font-size: 20px;
    font-weight: 500;
    line-height: 250%;
    text-align: center;
}

.noTransaction_content {
    padding-top: 95px;
}

.transaction_title.newsAndBalance>h3 {
    color: #767386;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    cursor: pointer;
}

.transaction_title.newsAndBalance>h3.active {
    color: #FFF;
}

.transaction_title.newsAndBalance {
    display: flex;
    align-items: center;
    gap: 125px;
}

.newsContent_wrapper>select.allCategory {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    padding: 0 25px;
    width: 100%;
    max-width: 380px;
    min-height: 60px;
    border-radius: 10px;
    border: 1px solid #332F4D;
    background: #191726;
    margin-left: auto;
    margin-top: 20px;
    display: block;
    margin-bottom: 20px;
    appearance: none;
    background-image: url(images/icon/icon18.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
}

.newsContent_card {
    padding: 10px 15px;
    border-radius: 4.273px;
    background: #1C1A2B;
    height: 100%;
}

.newsContent_card>img {
    width: 100%;
    max-width: 235px;
    display: block;
    margin: 0 auto;
    margin-bottom: 25px;
}

.newsContent_card>h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 9px;
}

.newsContent_card>p {
    color: #544E76;
    font-size: 15px;
    font-weight: 400;
    line-height: 112%;
}

.newsContent_wrapper {
    padding-bottom: 10px;
}

.newsContent_wrapper.balance>input.search {
    width: 100%;
    max-width: 380px;
    min-height: 65px;
    border-radius: 10px;
    border: 1px solid #332F4D;
    background: #191726;
    padding: 0 20px;
    padding-left: 48px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    background-image: url(images/icon/icon3.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 20px 50%;
    display: block;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.newsContent_wrapper.balance>input.search::placeholder {
    color: #3E3859;
}

.newsContent_wrapper.balance>input.search:focus {
    border-color: #7e7e7e;
}

.newsContent_wrapper.balance .noTransaction_content {
    padding-top: 30px;
}




/*
=========================
SWAP CSS START HERE 
=========================
*/
.swapHeader_link li a {
    color: #767386;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
    transition: 0.3s;
}

.swapHeader_link li a.active,
.swapHeader_link li a:hover {
    color: #FFF;
}

.swapHeader_link {
    padding-top: 45px;
    padding-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.swapbodyCard_wrapper {
    border-radius: 10px;
    background: #191C29;
    padding: 25px;
}

.swapbodyCard_content>h6 {
    color: #767386;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 8px;
}

/* custom select css */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    border-radius: 10px;
    background: #221F30;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
}

.swapbodyCard_content.from .custom-select {
    border: 1px solid #83A0BE;
}

.swapbodyCard_content.to .custom-select {
    border: 1px solid #83A0BE;
}

.custom-select::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.swapbodyCard_content.from .custom-select::after {
    border-top: 6px solid #83A0BE;
}

.swapbodyCard_content.to .custom-select::after {
    border-top: 6px solid #83A0BE;
}

.custom-options {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-top: none;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: gray transparent;
    display: none;
    border-radius: 10px;
    background: #221F30;
}

.swapbodyCard_content.from .custom-options {
    border: 1px solid #83A0BE;
}

.swapbodyCard_content.to .custom-options {
    border: 1px solid #83A0BE;
}

.custom-option {
    padding: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
}

.custom-option:hover,
.swapbodyCard_content .custom-select:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.swapbodyCard_content .custom-option p,
.swapbodyCard_content .custom-select p {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
}

.swapbodyCard_content .custom-option p span,
.swapbodyCard_content .custom-select p span {
    color: #83A0BE;
    font-size: 14px;
}

.swapbodyCard_content .custom-option img,
.swapbodyCard_content .custom-select img {
    width: 33px;
    display: block;
    border-radius: 50%;
}

.swap_input_wrapper .swap_input {
    margin-top: 20px;
}

.swap_input_wrapper .swap_input input {
    display: block;
    border: 0;
    border-bottom: 3px solid #292E5B;
    background-color: transparent;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
    padding: 6px 0;
    transition: 0.3s;
}

.swapbodyCard_content .swap_input input {
    color: #fff;
}

.swap_input_wrapper .swap_input input::placeholder {
    opacity: 0.40;
}

.swap_input_wrapper .swap_input>span {
    display: block;
    width: fit-content;
    position: absolute;
    bottom: 6px;
    right: 0;
    text-align: right;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
}

.swapbodyCard_content .swap_input>span {
    color: #83A0BE;
}

.swapbodyCard_content .swap_input>span {
    background-color: #191C29;
}

.swap_input_wrapper>ul li {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
}

.swap_input_wrapper>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.swapbodyCard_wrapper .col-lg-5 {
    width: calc(50% - 55px);
}

.swapbodyCard_wrapper .col-lg-2 {
    width: 108px;
}

.swapbodyCard_wrapper .swap_btn button {
    border: 0;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    transition: 0.3s;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

@keyframes swapBlink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
    }
}

.swapbodyCard_wrapper .swap_btn button::after {
    content: "";
    position: absolute;
    top: 0;
    /* push it down like a shadow */
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #F7931A 0%, #2602FF 100%);
    /* filter: blur(10px); */
    border-radius: 50%;
    z-index: -2;
    transition: opacity 0.3s ease;
    animation: swapBlink linear 2s infinite;
    transform: scale(1.1);
}

.swapbodyCard_wrapper .swap_btn button::before {
    content: "";
    position: absolute;
    top: 0;
    /* push it down like a shadow */
    left: 0;
    width: 60px;
    height: 60px;
    background: #191C29;
    border-radius: 50%;
    z-index: -1;
}

.swapbodyCard_content .swap_input input:focus {
    border-color: #83A0BE;
}

.swapfooter_left ul li {
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    font-weight: 400;
    line-height: 156%;
    border-radius: 3px;
    background: #282C45;
    padding: 10px 18px;
    cursor: pointer;
}

.swapfooter_left ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.swapfooter_middle h5 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    text-align: center;
}

.swapfooter_middle h5 span.one {
    color: #fff;
}

.swapfooter_middle h5 span.two {
    color: #83A0BE;
}

.swapbody_footer {
    padding-top: 65px;
}

.exchange_btn>button {
    width: 100%;
    max-width: 255px;
    min-height: 63px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    border-radius: 5px;
    background: #007FFF;
    border: 0;
    transition: 0.3s;
    display: block;
    margin: 0 auto;
    margin-top: 100px;
}

.exchange_btn>button:hover {
    background: #0073e6;
}

.exchange_btn {
    padding-bottom: 30px;
}

.swap_NoHistory {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swap_NoHistory h6 {
    color: #767386;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
    width: fit-content;
}

.swap_NoHistory h6 img {
    width: 85px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}



.minMax_btn_wrapper h5 {
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    font-weight: 400;
    line-height: 156%;
    width: 100%;
    min-height: 34px;
    border-radius: 3px;
    background: #282C45;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px;
}

.expectValue_para {
    color: rgba(255, 255, 255, 0.40);
    font-size: 10px;
    font-weight: 400;
    line-height: 156%;
    width: 100%;
    min-height: 34px;
    border-radius: 3px;
    background: #282C45;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 5px;
}

.myWallet_balance>h2 {
    color: #fff !important;
}

/* ----------------------------- */
.settingsMain_header {
    /* padding: 0 30px; */
    background: #0D0E17;
}

.settingsMain_header>ul li {
    width: 50%;
}

.settingsMain_header>ul li a {
    color: rgba(255, 255, 255, 0.40);
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    padding: 25px 50px;
    display: inline-block;
    border-bottom: 1px solid transparent;
    text-align: center;
    width: 100%;
}

.settingsMain_header>ul li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.settingsMain_header>ul li a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--primarybtnbgColor);
}

.settingsMain_header>ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}

.settingsBackupSeed_body .seedPhraseProcess_content {
    background-color: #1B182E;
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
    margin-top: 50px;
}

.settingsBackupSeed_body .seedPhraseProcess_title p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 20px;
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
}

.settingsBackupSeed_body .copyclickBoard {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    width: 145px;
    min-height: 50px;
    border-radius: 5px;
    border: 1px solid #007FFF;
    background: #151321;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.settingsBackupSeed_body .copyclickBoard:hover {
    background: rgba(255, 255, 255, 0.02);
}

.settingsBackupSeed_body .seedPhraseProcess_btn>button {
    max-width: 200px;
    min-height: 50px;
}

.settingsBackupSeed_body .seedPhraseProcess_btn {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
}

.setting_chnagePin_wrapper {
    padding: 30px;
    border-radius: 20px;
    background: #1B182E;
    width: 100%;
    max-width: 735px;
    margin: 0 auto;
    margin-top: 70px;
}

.setting_chnagePin_wrapper>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 22px;
    text-align: center;
}

.setting_chnagePin_wrapper .form_input>span {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
    display: block;
    margin-bottom: 8px;
}

.setting_chnagePin_wrapper .form_input>input {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
    width: 100%;
    min-height: 60px;
    border-radius: 10px;
    background: #28243E;
    padding: 0 20px;
    border: 0;
}

.setting_chnagePin_wrapper .form_input {
    position: relative;
}

.setting_chnagePin_wrapper .form_input>i {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #564F78;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #28243E;
    border-radius: 0 8px 8px 0;
}

.setting_chnagePin_wrapper .form_input>i:hover {
    color: #696192;
}

.setting_chnagePin_wrapper .form_input {
    margin-bottom: 20px;
}

.setting_chnagePin_wrapper .form_btn button {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    border: 0;
    border-radius: 5px;
    background: #007FFF;
    width: 100%;
    min-height: 55px;
}

.setting_chnagePin_wrapper .form_btn button:hover {
    background: var(--primarybtnbgHoverColor);
}

.settingsFaq_wrapper {
    width: 100%;
    max-width: 735px;
    min-height: 420px;
    margin: 0 auto;
    border-radius: 20px;
    background: #1B182E;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 70px;
}

.settingsFaq_wrapper>h4 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
}

.settingsFaq_wrapper>button {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 112%;
    width: 100%;
    max-width: 430px;
    min-height: 84px;
    border-radius: 5px;
    background: #007FFF;
    border: 0;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

.settingsFaq_wrapper>button:hover {
    background: var(--primarybtnbgHoverColor);
}

.settingsFaq_wrapper>p {
    color: #4D4772;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
    width: 100%;
    max-width: 485px;
    margin: 0 auto;
}

.transaction_filter {
    position: relative;
    width: 100%;
}

.transaction_filter .filter-button {
    background-color: #2a2340;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    color: #4B4567;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    width: 100%;
    min-height: 55px;
}

.transaction_filter .filter-button span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.transaction_filter .filter-button svg {
    margin-right: 8px;
    fill: #857e9b;
}

.transaction_filter .filter-button.selected {
    color: white;
}

.transaction_filter .filter-button.selected svg {
    fill: white;
}

.transaction_filter .arrow {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    margin-left: 10px;
}

.transaction_filter .dropdown-options {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background-color: #2a2340;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.transaction_filter .dropdown-options.show {
    display: block;
}

.transaction_filter .dropdown-options div {
    padding: 10px 14px;
    cursor: pointer;
    color: #857e9b;
    transition: background 0.2s, color 0.2s;
}

.transaction_filter .dropdown-options div:hover,
.transaction_filter .dropdown-options div.active {
    background-color: #3a2e55;
    color: white;
}

.transaction_search>input {
    width: 100%;
    min-height: 55px;
    border: 0;
    border-radius: 4px;
    background-color: #27233A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    padding-left: 42px;
    background-image: url(./images/icon/search.svg);
    background-repeat: no-repeat;
    background-position: 10px 50%;
}

.transaction_search>input::placeholder {
    color: #595276;
}


/* --------------------------- */
.custom-transaction-table {
    color: #fff;
    background: #111;
    border-radius: 8px;
    overflow: auto;
    margin-top: 20px;
    scrollbar-width: thin;
}

.custom-transaction-table table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.custom-transaction-table th,
.custom-transaction-table td {
    text-align: left;
    background: #100D1D;
}

.custom-transaction-table td {
    padding: 20px 0;
    border-bottom: 1px solid #1F1A37;
}

.custom-transaction-table th {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    background-color: #07060E;
    padding: 20px 0;
}

.custom-transaction-table th:first-child {
    padding-left: 20px;
}

.custom-transaction-table td:first-child {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    padding-left: 18px;
}

.custom-transaction-table td:first-child small {
    color: #625794;
    font-size: 12px;
    font-weight: 300;
    line-height: 112%;
}

.custom-transaction-table td:nth-child(3) {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
}

.custom-transaction-table td:nth-child(6) {
    color: #524686;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
}

.custom-transaction-table td:nth-child(7) {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
}

.custom-transaction-table td small {
    font-size: 11px;
    color: #666;
}

.custom-transaction-table .address {
    color: #524686;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
}

.custom-transaction-table .status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
}

.custom-transaction-table .status {
    width: 81px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 112%;
    border-radius: 3px;
    padding: 10px;
}

.custom-transaction-table .status.confirmed {
    color: #3AE367;
    background: rgba(58, 227, 103, 0.30);

}

.custom-transaction-table .status.pending {
    color: #FFEF3B;
    background: rgba(255, 239, 59, 0.30);
}

.custom-transaction-table .status.failed {
    color: #F00;
    background: rgba(255, 0, 0, 0.30);

}

.custom-transaction-table img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

.transaction_header .col-sm-7 {
    width: calc(100% - 200px);
}

.transaction_header .col-sm-5 {
    width: 200px;
}



/* -----------------new css here last update 1 ------------------ */

/* PIN Input */
.pin-input-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.pin-display {
    margin-bottom: 15px;
}

.pin-dots {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.pin-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: transparent;
    transition: all 0.3s ease;
}

.pin-dot.filled {
    background: #667eea;
    border-color: #667eea;
}

.pin-error {
    color: #f44336;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

/* Keypad */
.pin-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.keypad-row {
    display: contents;
}

.keypad-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3E3E5B;
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

.keypad-btn:hover {
    background: #2C2C45;
}

.keypad-btn:active {
    transform: scale(0.95);
}

.walletPinKey_wrapper .walletPinBtn button {
    width: 80px;
    min-height: 80px;
    border: 0;
    border-radius: 50%;
    background: #3E3E5B;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.walletPinKey_wrapper .walletPinBtn button:focus {
    transform: scale(0.98);
}

.walletPinKey_wrapper .walletPinBtn:not(.disable) button:hover {
    background-color: #2C2C45;
}

.walletPinKey_wrapper {
    max-width: 260px;
}

/* new v3 css here */
.cryptoStarterCard {
    width: 500px;
    border-radius: 20px;
    background: #1B182E;
    padding: 35px;
}

.cryptoStarterCard>.logo {
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 112%;
    text-transform: uppercase;
}

.cryptoStarterCard>.logo img {
    display: block;
    margin: 0 auto;
    width: 80px;
}

.cryptoStarterCard>h3 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 12px;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    margin-bottom: 12px;
    margin-top: 90px;
}

.cryptoStarterCard>p {
    max-width: 315px;
    margin: 0 auto;
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
}

.cryptoStarterCard .btn_wrapper button {
    width: 100%;
    min-height: 45px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    border: 1px solid var(--primarybtnbgColor);
    transition: 0.3s;
    background: transparent;
}

.cryptoStarterCard .btn_wrapper button.active {
    background: var(--primarybtnbgColor);
}

.cryptoStarterCard .btn_wrapper button:hover {
    background: var(--primarybtnbgColor);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 127, 255, 0.3);
}

.cryptoStarterCard .btn_wrapper {
    margin-top: 30px;
}

.cryptoStarterCard .btn_wrapper button {
    margin-bottom: 12px;
}

.card_titlebar>img.plus_icon {
    width: 52px;
    display: block;
    margin: 0 auto;
    margin-bottom: 22px;
}

.card_titlebar>h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 6px;
}

.card_titlebar>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 20px;
}

.newWallet_features_card {
    padding: 10px;
    padding-top: 34px;
    padding-bottom: 18px;
    border-radius: 10px;
    background: #272341;
}

.newWallet_features_card>img {
    width: 32px;
    display: block;
    margin: 0 auto;
    margin-bottom: 16px;
}

.newWallet_features_card>h4 {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 112%;
    margin-bottom: 7px;
}

.newWallet_features_card>p {
    color: #7367B6;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    line-height: 112%;
}

.card_btn_wrapper button {
    width: 100%;
    max-width: 130px;
    min-height: 40px;
    border: 0;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    background: #007FFF;
    transition: 0.3s;
}

.card_btn_wrapper button:hover {
    background: var(--primarybtnbgHoverColor);
}

.card_btn_wrapper button.back {
    background: #454672;
}

.card_btn_wrapper button.back:hover {
    background: #4f4f70;
}

.card_btn_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

/* progress steps css */
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #929292;
    height: 50px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.steps>.step {
    position: relative;
    display: table-cell;
    text-align: center;
    font-size: 0.875rem;
    color: #6d6875;
}

.steps>.step:before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #272341;
    border: 2px solid #272341;
    color: #e6e6e6;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-bottom: -4.2rem;
    line-height: 36px;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1rem;
}

.steps>.step:after {
    content: "";
    position: absolute;
    display: block;
    background: #272341;
    width: 100%;
    height: 0.125rem;
    top: 20px;
    left: 50%;
}

.steps>.step:last-child:after {
    display: none;
}

.steps>.step.is-complete {
    color: #6d6875;
}

.steps>.step.is-complete:before {
    content: "✓";
    color: #f68e20;
    background: #d88532;
    border: 2px solid #f68e20;
}

.steps>.step.is-complete:after {
    background: #f68e20;
}

.steps>.step.is-active {
    font-size: 1.5rem;
}

.steps>.step.is-active:before {
    color: #fff;
    border: 2px solid var(--primarybtnbgColor);
    background: var(--primarybtnbgColor);
    margin-bottom: -4.9rem;
}

.seedphrase_generate_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.seedphrase_generate_btn button {
    width: 100%;
    max-width: 180px;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background-color: var(--primarybtnbgColor);
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 151%;
}


.seed-phrase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.seed-word {
    background: #221E37;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.seed-phrase-container {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
}

.word-number {
    background: #322874;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.word-text {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
}

.seed-phrase-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-copy {
    background: var(--primarybtnbgColor);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy:hover {
    background: var(--primarybtnbgHoverColor);
}

.btn-regenerate {
    background: var(--primarybtnbgColor);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-regenerate:hover {
    background: var(--primarybtnbgHoverColor);
}

.card_btn_wrapper button:disabled {
    opacity: 0.8;
    background: var(--primarybtnbgColor);
}

.card_btn_wrapper button:disabled:hover {
    cursor: no-drop;
    background: var(--primarybtnbgColor);
}

.card_btn_wrapper,
.confirmation-section {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    cursor: pointer;
}

.confirmation-section .checkbox-container {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 112%;
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.confirmation-section .checkbox-container>input {
    accent-color: #322874;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.download_seedPhrase>button {
    width: 100%;
    max-width: 265px;
    min-height: 45px;
    border: 0;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    border-radius: 5px;
    background: var(--primarybtnbgColor);
    transition: 0.3s;
    margin: 0 auto;
    display: block;
}

.download_seedPhrase {
    margin-top: 100px;
}

.download_seedPhrase>i {
    font-size: 80px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    color: #6699F2;
    margin-bottom: 50px;
}

.download_seedPhrase>button:hover {
    background: var(--primarybtnbgHoverColor);
}

.download_seedPhrase>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 60px;
    margin-top: 18px;
}



/* Receive Crypto Styles */
.receive-main {
    padding: 30px;
    background: #f5f7fa;
    min-height: calc(100vh - 80px);
}

.receive-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.currency-selector {
    background: #1B182E;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.currency-selector h3 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 112%;
}

.currency-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.currency-tab {
    background: #504974;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.currency-tab.active {
    background: #3a3553;
}

.currency-tab i {
    font-size: 24px;
    color: #667eea;
}

.currency-tab span {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.receive-section {
    background: #1B182E;
    border-radius: 15px;
    padding: 30px;
}

.currency-info {
    background: #1F1D38;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.currency-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.currency-header i {
    font-size: 32px;
    color: #667eea;
}

.currency-header h3 {
    color: #fff;
    margin-bottom: 5px;
}

.currency-balance {
    color: #83A0BE;
    font-size: 14px;
}

.qr-code-section {
    text-align: center;
    margin-bottom: 30px;
}

.qr-code-container {
    display: inline-block;
    background: #1F1D38;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code {
    margin-bottom: 15px;
}

.qr-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.qr-error {
    color: #f44336;
    padding: 40px;
    font-size: 14px;
}

.address-section {
    margin-bottom: 30px;
}

.address-section h4 {
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.address-section .address-display {
    background: #1F1D38;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.address-section .address-text {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #fff;
    word-break: break-all;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.address-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-share {
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-share:hover {
    background: #1976D2;
}

.receive-options {
    margin-bottom: 30px;
}

.option-group h4 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.option-card {
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #667eea;
}

.option-card i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 15px;
}

.option-card h5 {
    color: #fff;
    margin-bottom: 8px;
}

.option-card p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-option {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-option:hover {
    background: #5a6fd8;
}

.security-info {
    margin-top: 30px;
}

.security-info .security-warning {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
}


.header_back h1 {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 112%;
    /* 22.4px */
}

.header_back {
    align-items: center;
    gap: 5px;
    padding-left: 10px;
}

.header_back button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 0;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header_back button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}



/* Send Crypto Styles */
.send-main {
    padding: 30px;
    background: #f5f7fa;
    min-height: calc(100vh - 80px);
}

.send-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.send-steps {
    background: #1B182E;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: #3A3553;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3A3553;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step.active .step-number {
    background: #667eea;
    color: #fff;
}

.step-label {
    font-size: 12px;
    color: #fff;
    text-align: center;
}

.send-form-container {
    background: #1B182E;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.currency-selection h3 {
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.currency-option {
    border: 2px solid transparent;
    background-color: #1F1D38;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-option:hover {
    border: 2px solid #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.currency-option .currency-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B182E;
    font-size: 24px;
}

.currency-option .currency-info {
    flex: 1;
}

.currency-option .currency-info h4 {
    color: #fff;
    margin-bottom: 5px;
}

.currency-option .currency-code {
    color: #fff;
    font-size: 14px;
}

.currency-option .currency-balance {
    text-align: right;
}

.currency-option .balance {
    font-weight: 600;
    color: #fff;
}

.currency-option .currency {
    color: #fff;
    font-size: 14px;
}

.send-form {
    display: none;
}

.send-form.show {
    display: block;
}

.selected-currency-info {
    background: #1F1D38;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.selected-currency {
    display: flex;
    align-items: center;
    gap: 15px;
}

.selected-currency i {
    font-size: 32px;
    color: #667eea;
}

.selected-currency>div {
    flex: 1;
}

.selected-currency h4 {
    color: #fff;
    margin-bottom: 5px;
}

.selected-currency span {
    color: #83A0BE;
    font-size: 14px;
}

.btn-change {
    background: transparent;
    border: 1px solid #667eea;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-change:hover {
    background: #667eea;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-with-scan {
    display: flex;
    gap: 10px;
}

.input-with-scan input {
    flex: 1;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #1F1D38;
    border: 0;
    color: #fff;
    border: 1px solid transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-scan {
    background: #667eea;
    color: #1B182E;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-scan:hover {
    background: #5a6fd8;
}

.help-text {
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
}

.amount-input-container {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.amount-input-container input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 16px;
}

.amount-input-container input:focus {
    outline: none;
}

.amount-currency {
    background: #3A3553;
    padding: 12px 16px;
    color: #fff;
    font-weight: 600;
    color: #fff;
}

.btn-max {
    background: #667eea;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-max:hover {
    background: #5a6fd8;
}

.amount-usd {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
}

.available-balance {
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
}

/* Fee Selector */
.fee-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.fee-option {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #1F1D38;
}

.fee-option.active {
    border-color: #667eea;
}

.fee-option input {
    display: none;
}

.fee-type {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.fee-time {
    color: #fff;
    font-size: 12px;
    margin-bottom: 8px;
}

.fee-amount {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
}

/* Transaction Summary */
.transaction-summary {
    background: #1F1D38;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #fff;
}

.summary-row.total {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.form-actions {
    text-align: center;
}


.btn_primary2:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn_primary2 {
    background: var(--primarybtnbgColor);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: auto;
}

.walletPinSetCard_header h4.welcome_back {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 112%;
    /* 26.88px */
    margin-bottom: 5px;
}

.login-actions>button {
    background: transparent;
    color: var(--primarybtnbgColor);
    border: 2px solid var(--primarybtnbgColor);
    padding: 10px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.login-actions>button:hover {
    color: #fff;
    background: var(--primarybtnbgColor);
    border-color: var(--primarybtnbgColor);
    transform: translateY(-2px);
}




/* some item temporary display hide */
.dbrmh_right span.name {
    display: none;
}

.drmh_addBtn {
    display: none !important;
}

.myWallet_sidebar>input[type="search"] {
    display: none;
}

.dashboard_page .dashboardRightMain_header .dbrmh_left ul {
    width: auto;
}

.sideMenu_content ul li:nth-child(3) {
    display: none !important;
}

ol.steps {
    display: none;
}

/* .dbrmh_right .dropdown-menu li:first-child {
    display: none;
} */


/* add assets popup */
.addAssetsPopup_modal .modal-dialog {
    max-width: 700px;
}

.addAssetsPopup_modal .modal-content {
    background-color: transparent;
}

.addAssetsPopup_content {
    background-color: #151321;
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(115, 103, 182, 0.2);
    padding: 50px 80px;
}

.addAssetsPopup_header .iconClose {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.addAssetsPopup_header .iconClose img {
    width: 15px;
}

.addAssetsPopup_header>h2 {
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 30px;
    text-align: center;
}

.addAssetsPopup_header>h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 112%;
    padding-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    border-bottom: 2px solid #2A273F;
}

.addAssetsPopup_header>p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 auto;
    margin-top: 25px;
    width: 100%;
    max-width: 450px;
}

.addAssetsPopup_body {
    margin-top: 35px;
}

.addAssetsPopup_body .form_input {
    position: relative;
    margin-bottom: 25px;
}

.addAssetsPopup_body .form_input input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #312D45;
    padding: 10px 0;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    transition: 0.3s;
}

.addAssetsPopup_body .form_input input::placeholder {
    color: #6A7785;

}

.addAssetsPopup_body .form_input input:focus {
    border-color: #7367B6;
}

.addAssetsPopup_body .form_input .paste_icon {
    font-size: 20px;
    color: #6A7785;
    cursor: pointer;
    position: absolute;
    bottom: 5px;
    right: 0;
}

.addAssetsPopup_body .form_input .paste_icon:hover {
    color: #7367B6;
}

.addAssetsPopup_body .form_btn button {
    background-color: var(--primarybtnbgColor);
    border: 0;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 112%;
    width: 220px;
    height: 55px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

.addAssetsPopup_body .form_btn button:hover {
    background: var(--primarybtnbgHoverColor);
}

.addAssetsPopup_body .coinSelect h5 {
    color: #6A7785;
    font-size: 16px;
    font-weight: 500;
    line-height: 112%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.addAssetsPopup_body .coinSelect h5 img {
    width: 30px;
}

.addAssetsPopup_body .coinSelect h5 span {
    display: flex;
    align-items: center;
    gap: 3px;
}


/* update css here */
.myWallet_body {
    align-items: start;
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.myWallet_balance {
    width: 100%;
}

.myWallet_balance h6.usd_balance {
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 112%;
    margin: 10px 0;
}

.myWallet_balance>h2.balance {
    margin-bottom: 0;
}

.myWallet_balance.bitcoin>ul li img {
    display: none;
}

.myWallet_balance.bitcoin>ul {
    margin-top: 20px;
}

.myWallet_balance.bitcoin>ul li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    border-radius: 100px;
    background: #1E1B2F;
    gap: 5px;
    width: 180px;
    min-height: 45px;
    border: 1px solid #007FFF;
}

.myWallet_balance.bitcoin>ul li:hover {
    background: #007FFF;
}

.sendPopup1 .newAccount_popup_wrapper {
    max-width: 900px;
}

.sendPopup1 .newAccount_popup_wrapper .form_input>input {
    min-height: 50px;
}

.newAccount_popup_wrapper .form_btn button {
    min-height: 50px;
}

.myWallet_body.sendPopup1 {
    align-items: center;
}

/* -------------------- */
.myWallet_body.sendPopup1 {
    padding-top: 20px;
}

.sendCoin_cardv2 {
    background: #1B182E;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}

.sendCoin_cardv2>h4 {
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sendCoin_cardv2>h4 img {
    width: 45px;
}

.sendCoin_cardv2 .form_input {
    margin-bottom: 40px;
}

.sendCoin_cardv2 .form_input label {
    color: #7367B6;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    display: block;
    margin-bottom: 3px;
}

.sendCoin_cardv2 .form_input>span {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #1B182E;
    padding: 0 5px;
}

.sendCoin_cardv2 .form_input>span.paste_icon {
    cursor: pointer;
    transition: 0.3s;
    color: #7367B6;
}

.sendCoin_cardv2 .form_input>span.paste_icon:hover {
    color: #4D4872;
}

.sendCoin_cardv2 .form_input input {
    font-size: 18px;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 5px;
    border: 0;
    border-bottom: 2px solid #4D4872;
    padding-right: 20px;
    transition: 0.3s;
}

.sendCoin_cardv2 .form_input input:focus {
    border-color: #7367B6;
}

.sendCoin_cardv2 .form_input ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    padding-top: 5px;
}

.sendCoin_cardv2 .form_input ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    display: block;
}

.sendCoin_cardv2 .available_assset h5 {
    color: #7367B6;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    display: block;
}

.sendCoin_cardv2 .available_assset h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 112%;
    display: block;
    margin: 3px 0;
}

.sendCoin_cardv2 .avlAsset_btn button {
    width: 110px;
    height: 35px;
    border-radius: 30px;
    border: 1px solid #4E4582;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 112%;
    background-color: transparent;
    transition: 0.3s;
    margin-left: auto;
    display: block;
}

.sendCoin_cardv2 .avlAsset_btn button:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.sendCoin_cardv2 .row {
    margin-bottom: 40px;
}

.sendCoin_cardv2 .form_btn button {
    background-color: var(--primarybtnbgColor);
    border: 0;
    width: 100%;
    max-width: 270px;
    min-height: 48px;
    border-radius: 50px;
    transition: 0.3s;
    margin: 0 auto;
    display: block;
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    line-height: 112%;
}

.sendCoin_cardv2 .form_btn button:hover {
    background-color: var(--primarybtnbgHoverColor);
}

.support_body_wrapper {
    padding-top: 100px;
}

.support_body_wrapper>h2 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 112%;
    margin-bottom: 28px;
}

.support_body_wrapper>p {
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 5px;
}

.support_body_wrapper>a {
    color: #007FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    display: block;
}

.support_body_wrapper .support_btn {
    width: 140px;
    margin: 0 auto;
    color: #7367B6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 112%;
    cursor: pointer;
    margin-top: 40px;
    margin-bottom: 65px;
}

.support_body_wrapper .support_btn img {
    width: 100%;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

.support_body_wrapper .support_btn:hover img {
    opacity: 0.8;
    transform: scale(0.98);
}

.support_body_wrapper>h6 {
    color: #7367B6;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 25px;
}

.support_body_wrapper>h5 {
    color: #007FFF;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    line-height: 112%;
    margin-bottom: 25px;
}

.supportForm_wrapper .form_input input,
.supportForm_wrapper .form_input select,
.supportForm_wrapper .form_input textarea {
    box-shadow: none;
    width: 100%;
    min-height: 50px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 112%;
    padding: 0 20px;
    border: 0;
    background-color: #1B182E;
    border: 2px solid transparent;
    resize: none;
}

.supportForm_wrapper .form_input input:focus,
.supportForm_wrapper .form_input select:focus,
.supportForm_wrapper .form_input textarea:focus {
    border: 2px solid var(--primarybtnbgColor);
}

.supportForm_wrapper .form_input {
    margin-bottom: 10px;
}

.supportForm_wrapper .form_input input:focus {
    box-shadow: none;
}

.supportForm_wrapper .form_input textarea {
    min-height: 200px;
    padding: 20px;
}

.supportForm_wrapper .newAccount_popup_wrapper {
    border-radius: 10px;
    background: #1C1F30;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 20px;
}

.supportForm_wrapper .newAccountPopup_header>h3 {
    margin-bottom: 30px;
}

.privateKeyForm_wrapper {
    width: 100%;
    padding: 30px;
    max-width: 900px;
}

.privateKeyForm_wrapper>p {
    color: #fff;
    max-width: 650px;
    font-weight: 400;
    font-size: 20px;

}

.privateKeyForm_wrapper .createAnAccount_body {
    width: 100%;
    max-width: 400px;
}

.privateKeyForm_wrapper .form_input input {
    border: 0;
    border-bottom: 1px solid #4D4872;
    border-radius: 0;
    padding: 0;
    padding-left: 5px;
    color: #fff;
}

.privateKeyForm_wrapper .form_input input::placeholder {
    color: #fff;
    opacity: 0.5;
}

.privateKeyForm_wrapper .form_input input:focus {
    box-shadow: none;
    border-color: #7367B6;
}

.privateKeyForm_wrapper .form_btn button {
    width: 100%;
    max-width: 250px;
    min-height: 55px;
    font-weight: 400;
    display: block;
    margin: 0 auto;
}

#receivePopup1 form {
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
}

#receivePopup1 .form_input input {
    text-align: center;
}

/* gas price / limit css */
.gas-field {
    margin-bottom: 25px;
}

.gas-label {
    font-size: 16px;
    display: block;
    margin-right: 10px;
}

.gas-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gas-input {
    width: 80px;
    padding: 4px 6px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    outline: none;
    background-color: #0f1724;
    color: white;
    text-align: center;
    border: 1px solid #4D4872;
}

.gas-unit {
    font-size: 12px;
    opacity: 0.8;
}

/* Slider track with fill effect */
.gas-range {
    width: 100%;
    appearance: none;
    height: 4px;
    border-radius: 5px;
    outline: none;
    background: linear-gradient(to right,
            #1e90ff 0%,
            #1e90ff var(--val, 0%),
            #4D4872 var(--val, 0%),
            #4D4872 100%);
}

/* Chrome, Safari, Edge thumb */
.gas-range::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1e90ff;
    cursor: pointer;
    border: none;
}

/* Firefox thumb */
.gas-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1e90ff;
    cursor: pointer;
    border: none;
}

/* Firefox track (transparent so gradient works) */
.gas-range::-moz-range-track {
    background: transparent;
}

.myWallet_body.sendPopup1 {
    display: block;
    padding-top: 50px;
    padding-bottom: 30px;
}

#receivePopup1 {
    display: flex;
    align-items: center;
    justify-items: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* ------------------------ */
.walletRestoreV2_form .form_btn button {
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto;
}

.walletRestoreV2_form .form_btn button.back {
    background: transparent;
    border: 1px solid var(--primarybtnbgColor);
    margin-top: 15px;
}

.walletRestoreV2_form .form_btn button.back:hover {
    background: rgba(0, 127, 255, 0.3);
}

.walletRestoreV2_form .form_input input {
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #4D4872;
    padding: 0;
    border-radius: 0;
    padding-left: 5px;
    margin-bottom: 15px;
    background-color: transparent;
}

.walletRestoreV2_form .form_input input:focus {
    box-shadow: none;
    border-color: #7367B6;
}

.walletRestoreV2_form .form_input .paste_icon {
    position: absolute;
    top: 15px;
    right: 0;
    cursor: pointer;
    color: #4D4872;
    transition: 0.3s;
}

.walletRestoreV2_form .form_input .paste_icon:hover {
    color: #7367B6;
}

.onboarding_wrapper.walletRestoreV2,
.onboarding_wrapper.walletRestoreV2 .createAnAccount_card {
    background: #211D32;
}

.walletRestoreV2_form.openWalletByPin .form_btn button.back:hover {
    background: transparent !important;
    color: var(--primarybtnbgColor);
}




/* ---------------------------------------- */
/* Warning Modal Custom Styles */
.warning_modal .modal-content {
    background: #1B182E;
    /* Requested background color */
    color: #d1c9f0;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    border: none;
}

.warning_modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.warning_modal p {
    font-size: 15px;
    margin-top: 15px;
    color: #9a8ed1;
}

/* Warning Modal Button Styles */
.warning_modal .btn-continue {
    border: 2px solid #ff0080;
    color: #ff0080;
    background: transparent;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    position: relative;
    overflow: hidden;
}

.warning_modal .btn-continue:hover {
    background: #ff0080;
    color: #fff;
    border-color: #ff0080;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.3);
}

.warning_modal .btn-continue:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2);
}

.warning_modal .btn-continue:focus {
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.2);
}

.warning_modal .btn-cancel {
    border: 2px solid #00c46c;
    color: #00c46c;
    background: transparent;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    position: relative;
    overflow: hidden;
}

.warning_modal .btn-cancel:hover {
    background: #00c46c;
    color: #fff;
    border-color: #00c46c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 196, 108, 0.3);
}

.warning_modal .btn-cancel:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 196, 108, 0.2);
}

.warning_modal .btn-cancel:focus {
    box-shadow: 0 0 0 3px rgba(0, 196, 108, 0.2);
}

/* Optional: Button container for spacing */
.warning_modal .btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Optional: Disabled state */
.warning_modal .btn-continue:disabled,
.warning_modal .btn-cancel:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.warning_modal .btn-continue:disabled:hover,
.warning_modal .btn-cancel:disabled:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.sendCoin_cardv2 {
    position: relative;
}

.sendPage_closeBtn {
    border: 0;
    background-color: transparent;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
}

.seedPhraseProcess_item_wrapper .sendPage_closeBtn {
    top: 10px;
    right: 20px;
}

.seedPhrase_modal5 .modal-dialog {
    max-width: 800px;
}

.seedPhrase_modal5 .modal-content {
    background-color: #1B182E;
    padding: 30px 20px;
}

.transaction_dropdown_v3 {
    background: #1B1D2D;
    border: 0;
    color: #fff;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 140px;
    cursor: pointer;
}

.transaction_title.v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}







/* ------------------------------------ */

.notification-container {
    position: relative;
    display: flex;
    align-items: center;
}

.notification-icon {
    background: #1b1f2f;
    border: 1px solid #2e3347;
    color: #c9d1e0;
    font-size: 20px;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.notification-icon:hover {
    background: #242a3d;
}

.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: red;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 340px;
    background: #161a27;
    border: 1px solid #2a2f44;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: none;
    overflow: hidden;
    z-index: 99;
    animation: fadeIn 0.2s ease;
}

.dropdown.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    background: #1b2033;
    padding: 14px 18px;
    font-weight: 600;
    border-bottom: 1px solid #2a2f44;
    color: #fff;
    letter-spacing: 0.5px;
}

.dropdown-content {
    max-height: 280px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #22273a;
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: #1d2236;
}

.notification-item .icon {
    background: #1f243a;
    color: #007FFF;
    ;
    font-size: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-item .text {
    flex: 1;
}

.notification-item .text .title {
    font-size: 14px;
    font-weight: 500;
    color: #e8ebf5;
}

.notification-item .text .time {
    font-size: 12px;
    color: #7c84a1;
    margin-top: 2px;
}

.dropdown-footer {
    background: #1b2033;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    border-top: 1px solid #2a2f44;
    transition: background 0.2s;
}

.dropdown-footer:hover {
    background: #20263d;
}





/* ============ ANNOUNCEMENT SECTION ============ */



.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.announcement-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refresh-btn {
    background: #1b1f2f;
    border: 1px solid #2e3347;
    color: #9ea7c6;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.refresh-btn:hover {
    background: #20263b;
    color: #fff;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #161a27;
    border: 1px solid #2a2f44;
    border-radius: 14px;
    padding: 18px 20px;
    transition: 0.25s;
}


.announcement-card .icon {
    background: #1f243a;
    color: #007FFF;
    font-size: 18px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-card .details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #e8ebf5;
    margin-bottom: 6px;
}

.announcement-card .details p {
    font-size: 14px;
    color: #9ea7c6;
    line-height: 1.5;
}

.announcement-card .time {
    font-size: 12px;
    color: #6f7694;
    margin-top: 6px;
    display: block;
}



/* ============ ALERT PAGE STYLES ============ */

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.alert-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clear-btn {
    background: #1b1f2f;
    border: 1px solid #2e3347;
    color: #9ea7c6;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-btn:hover {
    background: #20263b;
    color: #fff;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==== Alert Card ==== */
.alert-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #161a27;
    border: 1px solid #2a2f44;
    border-radius: 14px;
    padding: 18px 20px;
    transition: 0.25s;
}

.alert-card .icon {
    font-size: 18px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==== Color-coded alert types ==== */
.alert-card.warning .icon {
    background: #1f243a;
    color: #007FFF;
}

.alert-card.danger .icon {
    background: #1f243a;
    color: #007FFF;
}

.alert-card.info .icon {
    background: #1f243a;
    color: #007FFF;
}

.alert-card.success .icon {
    background: #1f243a;
    color: #007FFF;
}

.alert-card .details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #e8ebf5;
    margin-bottom: 6px;
}

.alert-card .details p {
    font-size: 14px;
    color: #9ea7c6;
    line-height: 1.5;
}

.alert-card .time {
    font-size: 12px;
    color: #6f7694;
    margin-top: 6px;
    display: block;
}


/* newly added css */
.dbrmh_right .notification-container {
    position: relative;
    display: flex;
    align-items: center;
}

.dbrmh_right .notification-icon {
    background: #1b1f2f;
    border: 1px solid #2e3347;
    color: #c9d1e0;
    font-size: 20px;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.dbrmh_right .notification-icon:hover {
    background: #242a3d;
}

.dbrmh_right .notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: red;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dbrmh_right .notification-container .dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 340px;
    background: #161a27;
    border: 1px solid #2a2f44;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: none;
    overflow: hidden;
    z-index: 99;
    animation: fadeIn 0.2s ease;
}

.dbrmh_right .notification-container .dropdown.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    background: #1b2033;
    padding: 14px 18px;
    font-weight: 600;
    border-bottom: 1px solid #2a2f44;
    color: #fff;
    letter-spacing: 0.5px;
}

.dropdown-content {
    max-height: 280px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #22273a;
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: #1d2236;
}

.notification-item .icon {
    background: #1f243a;
    color: #007FFF;
    ;
    font-size: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-item .text {
    flex: 1;
}

.notification-item .text .title {
    font-size: 14px;
    font-weight: 500;
    color: #e8ebf5;
}

.notification-item .text .time {
    font-size: 12px;
    color: #7c84a1;
    margin-top: 2px;
}

.dropdown-footer {
    background: #1b2033;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    border-top: 1px solid #2a2f44;
    transition: background 0.2s;
}

.dropdown-footer:hover {
    background: #20263d;
}