/*style menu desktop*/
.nav-menu li:hover i {
    color: var(--color-teal);
}
.nav-menu li:hover > span {
    color: var(--color-teal) !important;
}
.nav-menu li:hover .fa-caret-down {
    transform: rotate(3.142rad);
}
.nav-menu li ul {
    display: none;
}
.nav-menu li:hover ul {
    display: grid;
}
.nav-menu li ul li a:hover .fa-arrow-right-long {
    display: block !important;
}
.nav-menu li ul li a:hover {
    background-color: var(--text-slate-50);
}
html.dark .nav-menu li ul li a:hover {
    background-color: var(--text-zincCustom-800) ;
}

.item-drop-menu:hover span {
    color: var(--color-teal) !important;
}
.nav-item-drop:hover div {
    display: flex !important;
}
.item-drop-menu.active {
    color: var(--color-teal) !important;
}
.element-more-notif:hover i{
    color: var(--color-teal);
}
.list-items-notification li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--text-zincCustom-800);
    padding: 13px 0px;
}
html[dir="rtl"] .element-more-notif > .fa-angle-right {
    transform: rotate(180deg);
}

/*Nav menu Mobile */
.accordion-nav-menu.show i {
    color: var(--color-teal) !important;
    transform: rotate(90deg);
}
.accordion-nav-menu ul {
    display: none !important;
}
.accordion-nav-menu.show ul {
    display: flex !important;
}

html[dir="ltr"] .box-nav-menu {
    right: -100vh;
    transition: all .3s;
}
html[dir="rtl"] .box-nav-menu {
    left: -100vh;
    transition: all .3s;
}
html[dir="ltr"] .box-nav-menu.show {
    right: 0px;
}
html[dir="rtl"] .box-nav-menu.show {
    left: 0px;
}

html[dir="ltr"] .box-nav-account {
    right: -100vh;
    transition: all .3s;
}
html[dir="rtl"] .box-nav-account {
    left: -100vh;
    transition: all .3s;
}
html[dir="ltr"] .box-nav-account.show {
    right: 0px;
}
html[dir="rtl"] .box-nav-account.show {
    left: 0px;
}
.qurcode-download--app:hover div {
    display: flex;
}

/*
* Market
**/
.table-market--landing thead tr th, tbody tr td{
    text-align: start;
}
.table-market--landing thead tr th:last-child, tbody tr td:last-child{
    text-align: end !important;
}
.table-market--landing thead tr th {
    font-weight: 500;
    padding-bottom: 20px;
}
.table-market--landing tbody tr:hover td > .button-details--currency {
    background: white;
    color: black;
}
.table-market--landing  tbody tr td{
    padding: 10px 0px;
}
.table-market--landing  {
    display: none;
}
.table-market--landing.is-open {
    display: table;
}
.button-tabs--market button {

    opacity: 0.5;
}
.button-tabs--market button.active {
    opacity: 1;
}


/*Carousel Currency*/
.carousel .items .item:hover {
    transform: translateY(-10px)
}
.carousel .items {
    white-space: nowrap;
    display: flex;
    animation: carsouel-horizontal-left var(--t) linear infinite;
    animation-delay: calc(var(--t) / -1)
}
.carousel .items:nth-child(2) {
    animation: carsouel-horizontal--dublicate-left var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2)
}
.container-carousol:hover .carousel .items {
    animation-play-state: paused;
}

[dir="rtl"] .carousel .items {
    flex-direction: row-reverse;
    animation: carsouel-horizontal-right var(--t) linear infinite;
    animation-delay: calc(var(--t) / -1);
}
[dir="rtl"] .carousel .items:nth-child(2) {
    animation: carsouel-horizontal-dublicate-right var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2);
}
[dir="rtl"] .container-carousol:hover .carousel .items {
    animation-play-state: paused;
}

@keyframes carsouel-horizontal-right {
    0% {
        transform:  translateX(-100%)
    }
    100% {
        transform:  translateX(100%)
    }
}
@keyframes carsouel-horizontal-dublicate-right {
    0% {
        transform:  translateX(0)
    }
    100% {
        transform:  translateX(200%)
    }
}
/*ltr mode*/
@keyframes carsouel-horizontal-left {
    0% {
        transform:  translateX(100%)
    }
    100% {
        transform:  translateX(-100%)
    }
}
@keyframes carsouel-horizontal--dublicate-left {
    0% {
        transform:  translateX(0)
    }
    100% {
        transform:  translateX(-200%)
    }
}


.total-user--landing::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 120px;
    bottom: 40px;
    left: -130px;
    background: var(--text-zincCustom-800);
}
.total-user--landing::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 120px;
    bottom: 40px;
    right: -130px;
    background: var(--text-zincCustom-800);
}

/**
* section options
*/
.option-cards > div p,
.option-cards > div a {
    display: none;
}
.option-cards > div.active {
    flex: 2 !important;
}
.option-cards > div.active p,
.option-cards > div.active a {
    display: flex !important;
}
/**
* Section logo brands
*/
.carousel .items .item img:nth-child(2) {
    display: none;
}
.carousel .items .item:hover img.dark {
    display: none;
}
.carousel .items .item:hover img:nth-child(2) {
    display: block !important;
}
.items .item canvas {
    width: 125px !important;
}

/**
* login page
*/
html.dark .container-inputs input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #333 inset !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: white !important;
}
.container-inputs input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #F7F8FA inset !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: #333 !important;
}


:root {
    --color-teal: #0EAD98;
    --bg-teal: #0ead9817;
    --color-tealLight: #0ead9817;


    /*dark*/
    --bg-dark-body: #161a1e;
    --bg-dark-card: #344054;
    --bg-dark-footer: #161a1e;

    --bg-neutralCustom: #222;
    --bg-neutralCustom-700: #4b5563;
    --white-color: #ffffff;
    --text-zincCustom-800: #333;
    --text-zincCustom-900: #475467;
    --text-slate-50: #F7F8FA;

    --text-grayCustom-100: #f3f4f6;
    --text-grayCustom-200: #e5e7eb;
    --text-grayCustom-300: #d1d5db;
    --text-grayCustom-400: #9ca3af;
    --text-grayCustom-500: #6b7280;
    --text-grayCustom-600: #4b5563;
    --text-grayCustom-700: #374151;
    --text-grayCustom-800: #1E2329;
    --text-grayCustom-900: #2B3139;
    --text-green-500: #22c55e;
    --text-yellow-500: #eab308;
    --text-red-500:#ef4444;
    --text-teal-100 : #E6F7F5;
}


html[dir="ltr"] {
    font-family: "Binance PLEX", sans-serif;
}
html[dir="rtl"] {
    font-family: "Roboto", "IRANYekanXFaNum", sans-serif;
}

html.dark .bg-light {
    background:none !important;
}

.bg-light {
    background-image: url(/images/bgHeaderLight.png?b13a1bafabcb728de28f496ebb076fc2);
    background-size: 100% 100%;
    height: 100vh;
}

html.dark .bg-header-landing {
    background-image: none;
    /*background-image: url(../image/bg_night.webp);*/
    /*background-size: 100% 100%;*/
}

html.dark .body_el {
    background-color: var(--bg-dark-body) !important;
}

.body_el {
    background-color: var(--text-slate-50);
}

.bg-header-landing {
    background-image: url(/images/bgHeaderLight.png?b13a1bafabcb728de28f496ebb076fc2);
    background-size: 100% 100%;
}

.color-increment--price {
    color: var(--text-green-500);
}

.color-teal {
    color: var(--color-teal);
}

.language-item a.active {
    color: var(--color-teal);
}

.opacity-5 {
    opacity: 0.05;
}

.trade-bg-night {
    background-image: url(/images/trade_bg.png?ee5cd02d5db4ef78d43740beb6bc5c73);
    background-size: 100% 100%;
}

.box-smooth::after {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    background-image: url(/images/global_decor.png?19430c85a3617ddefae37ed432512b13);
    background-repeat: no-repeat;
    background-size: 100% auto;
    top: 0.5rem;
    right: 0px;
    height: 11rem}

@media (min-width: 768px){

    .box-smooth::after{
        top: 30px;
        right: 0px;
        height: 181px;
    }
}

.box-asset {
    background: linear-gradient(180deg, #067d6e 4.44%, #1bbea9);
}

.box-asset::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    background-image: url(/images/asset_decor.png?8c3f6b2c43bcdc220bd56258886165dc);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 84px;
    width: 96px}

:is([dir="ltr"] .box-asset)::after{
    right: 0px;
}

:is([dir="rtl"] .box-asset)::after{
    left: 0px;
}

@media (min-width: 768px){

    .box-asset::after{
        height: 0px;
    }
}

@media (min-width: 1024px){

    .box-asset::after{
        height: 140px;
        width: 160px;
    }
}

.dropdown-menu-futures {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-futures {
    opacity: 1;
    height: 182px;
}

.dropdown-menu-finance {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-finance {
    opacity: 1;
    height: 190px;
}

.dropdown-menu-promotion {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-promotion {
    opacity: 1;
    height: 289px;
}

.dropdown-menu-reports {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-reports {
    opacity: 1;
    visibility: visible;
    height: 274px;
}

.dropdown-menu-other {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-other {
    opacity: 1;
    visibility: visible;
    height: 230px;
}

.dropdown-menu-market {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-market {
    opacity: 1;
    height: 209px;
}

.dropdown-menu-analysis {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-analysis {
    opacity: 1;
    visibility: visible;
    height: 157px;
}

.dropdown-menu-ticket {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-ticket {
    opacity: 1;
    visibility: visible;
    height: 105px;
}
.items-menu:hover .dropdown-menu-shop {
    opacity: 1;
    visibility: visible;
    height: 150px;
}
.dropdown-menu-shop {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown-fast-order {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-fast-order {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.dropdown-menu-wallet {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-wallet {
    opacity: 1;
    height: 147px;
}

.dropdown-menu-orders {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-orders {
    opacity: 1;
    height: 240px;
}

.dropdown-menu-assets {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-assets {
    opacity: 1;
    height: 432px;
}

.dropdown-menu-account {
    opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-account {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.dropdown-menu-volume {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-volume {
    opacity: 1;
    height: 432px;
}

.dropdown-menu-notif {
    visibility: hidden;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-notif {
    visibility: visible;
}

.dropdown-menu-lang {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-lang {
    opacity: 1;
    height: auto;
}

.dropdown-menu-scan {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

.items-menu:hover .dropdown-menu-scan {
    opacity: 1;
    height: 150px;
}

.items-menu:hover .angle-down-icon {
    color: var(--color-teal);
    transition: all 0.3s;
    transform: rotate(180deg);
}

.items-menu:hover .items-menu-futures {
    color: var(--color-teal);
}

.dropdown-menu-list:hover .one-item-list {
    color: var(--color-teal);
}

.dropdown-menu-list:hover .item-list-drop span {
    color: var(--color-teal);
}

.drop-menu--right::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: rgb(122, 120, 120);
}

.scan-download-app::after {
    content: "";
    width: 1px;
    height: 115px;
    background-color: rgb(73 73 73);
    position: absolute;
    right: -18px;
    top: 0;
}

.check-icon {
    display: none !important;
}

.list-language>a.active {
    background: var(--color-teal);
    color: white !important;
}

.list-language>a.active .check-icon {
    display: block !important;
}

.exchange-rate::before {
    content: "";
    width: 1px;
    height: 100px;
    position: absolute;
    background: rgb(66, 66, 66)}

:is([dir="ltr"] .exchange-rate)::before{
    right: 0px;
}

:is([dir="rtl"] .exchange-rate)::before{
    left: 0px;
}

tr td {
    transition: all ease 0.3s;
}

html.dark tr:hover td:first-child {
    background: var(--bg-neutralCustom);
}

tr:hover td:first-child {
    background: var(--text-slate-50);
}

html.dark tr:hover td:last-child {
    background: var(--bg-neutralCustom);
}

tr:hover td:last-child {
    background: var(--text-slate-50);
}

html.dark tr:hover td:not(:first-child, :last-child) {
    background: var(--bg-neutralCustom);
}

tr:hover td:not(:first-child, :last-child) {
    background: var(--text-slate-50);
}

/* Devices */
.tabs .tab-header div.active{
    border-bottom-width: 3px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){

    .tabs .tab-header div.active{
        border-bottom-width: 0px;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    :is([dir="ltr"] .tabs .tab-header div.active){
        border-left-width: 3px;
    }

    :is([dir="rtl"] .tabs .tab-header div.active){
        border-right-width: 3px;
    }
}

.semi-circle {
    border-radius: 15rem 15rem 0 0;
}

.semi-circle-min {
    border-radius: 10rem 10rem 0 0;
}

.semi-circle.active-circle {
    animation: circle 0.7s linear;
}

.semi-circle-min.active-circle-min {
    animation: circle-min 0.7s linear;

}

@keyframes circle {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes circle-min {
    0% {
        transform: rotate(150deg)
    }

    100% {
        transform: rotate(-90deg);
    }

}

.receive-app:hover .svg-ios {
    fill: var(--text-grayCustom-300) !important;
}

.receive-app:hover .app-store {
    fill: var(--text-grayCustom-300) !important;
}

.box-protect::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    height: 245px;
    background-image: url(/images/protect_decor.png?b152d4f8af0c0663d3b676c71e7f1023);
    background-repeat: no-repeat;
    background-size: 100% auto;
    top: 140px;
    width: 100px}

:is([dir="ltr"] .box-protect)::after{
    right: 10px;
}

:is([dir="rtl"] .box-protect)::after{
    left: 10px;
}

@media (min-width: 1024px){

    .box-protect::after{
        top: 30px;
        width: 245px;
    }
}

.more-service--item:hover .more-service--span {
    color: var(--color-teal);
}

.more-service::after {
    content: "";
    position: absolute;
    width: 1px;
    top: 40px;
    height: 80%;
    background: rgb(84, 83, 83);
    display: none}

:is([dir="ltr"] .more-service)::after{
    right: -112px;
}

:is([dir="rtl"] .more-service)::after{
    left: -112px;
}

@media (min-width: 1280px){

    .more-service::after{
        display: block;
    }
}

@media screen and (min-width:768px) {
    html.dark .explore-crypto {
        background-image: url(/images/trip_bg_night.png?5e431358b2baeea4216525695c71c06a);
        background-color: transparent;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: 846px 216px;
    }

    .explore-crypto {
        background-image: url(/images/trip_bg_light.png?e956a2b76fa81a5f261a27260cfd4cd6);
        background-color: transparent;
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: 846px 216px;
    }
}

.tab button.active {
    border: 2px solid var(--color-teal) !important;
    background-color: #252a33;
    color: var(--color-teal);
}

/* Accordion styles */
.accordion button {
    position: relative;
    display: block;
    width: 100%;
    padding: 1em 0;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none}
:is([dir="ltr"] .accordion button){
    text-align: left;
}
:is([dir="rtl"] .accordion button){
    text-align: right;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px}

:is([dir="ltr"] .accordion button .icon){
    right: 0px;
}

:is([dir="rtl"] .accordion button .icon){
    left: 0px;
}

.accordion button[aria-expanded="true"] .icon {
    transform: rotate(90deg);
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 13em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

/* menu Mobile */
.active-1 .arrow-svg {
    transform: rotate(90deg);
    fill: var(--color-teal) !important;
}

.active-1 .acctive-item {
    color: var(--color-teal);
}

/* Img User */
.active-user--svg,
.active-menu--svg {
    fill: var(--color-teal) !important;
}

/* new style */
.new-user:after {
    content: "";
    background-image: url(/images/new-user.png?cbbf402d083533467cf944a6d4797ded);
    position: absolute;
    width: 35px;
    height: 35px;
    top: -10px;
    background-position: 50%;
    background-size: cover}
:is([dir="ltr"] .new-user):after{
    left: -1.25rem;
}
:is([dir="rtl"] .new-user):after{
    right: -1.25rem;
}

/*html.dark .btn-buy.active {
    background-color: var(--color-teal);
    color: var(--white);
}*/

.btn-buy.active {
    background-color: white;
    color: var(--color-teal);
}

.btn-buy.active i {
    color: var(--white-color);
}

.btn-sale.active {
    background: #1f2937;
    color: red;
}

.btn-sale.active i {
    color: red;
}

.tab-container {
    /* box-shadow: 0 0 60px rgba(0,0,0,.2); */
}

.tab-content {
    display: none;
    padding: 10px;
}

.form {
    animation: fadeEffect 2s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

.switch-button {
    animation-name: online;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes online {
    0% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

html.dark .apexcharts-canvas line {
    stroke: #1f2937;
}

/* currency page  */
.weblog-drop {
    display: none;
}

.weblog:hover .weblog-drop {
    display: block !important;
}

.official-drop {
    display: none;
}

.official:hover .official-drop {
    display: block !important;
}

/* wallet chart */
:root {
    --color-primary: #44d4fd;
    --color-label: #a7a7a7;
    --color-default: #e2dede;
}

.link-show--currency {
    background: white;
}

html.dark .link-show--currency {
    background-image: linear-gradient(90deg, rgba(96, 53, 4, 0) -11.15%, #603504 95.38%) !important;
    background: initial !important;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    transform: scale(.5);
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-teal);
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Deposit Btc */
.copy-address:hover i {
    color: var(--color-teal) !important;
}

.qrcode-address:hover i {
    color: var(--color-teal) !important;
}

.qrcode-address:hover .qrcode-address--wallet {
    display: block !important;
}

/* reposts page */
.el-currency-name:hover span {
    color: var(--color-teal);
}

.el-currency-name:hover small {
    color: var(--color-teal);
}

/* Scroll bar */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-teal);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-teal);
}

/* authentication step-3 */
@media screen and (min-width:1024px) {
    .steps-authen::after {
        content: "";
        position: absolute;
        width: 83%;
        right: 34px;
        top: 12px;
        height: 2px;
        border: 1px dashed var(--color-teal);
    }

    .steps-authen-1::after {
        content: "";
        position: absolute;
        width: 83%;
        right: 34px;
        top: 12px;
        height: 2px;
        border: 1px dashed var(--color-tealLight);
    }
}

@media screen and (min-width : 400px) {
    .form-upload-img {
        padding: 50px;
    }
}

/* profile page */
.sidebar-profile:hover>a>svg {
    fill: var(--color-teal) !important;
}

.sidebar-profile.active {
    background-color: var(--bg-teal);
    color: var(--color-teal);
}

.sidebar-profile.active>a>svg {
    fill: var(--color-teal) !important;
}

/* style order page */
.input-order-rial::after {
    content: "";
    width: 1px;
    background: #d1d5db;
    position: absolute;
    left: -12px;
    height: 30px;
}

.input-order-btc::after {
    content: "";
    width: 1px;
    background: #d1d5db;
    position: absolute;
    top: 0px;
    left: -12px;
    height: 30px;
}

/* style interest page */
@media screen and (max-width:1024px) {

    #accordion-collapse-body-1,
    #accordion-collapse-body-2 {
        display: none;
    }

    .header-menu--mobile {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 20;
    }
}

.background-menu-mobile{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

:is(.dark .background-menu-mobile){
    background-color: var(--bg-dark-footer);
}

html.dark .accordion-menu svg {
    fill: #ffff;
}

.accordion-menu svg {
    fill: black;
}

html.dark .accordion-item button svg {
    fill: #ffff;
}

.accordion-item button svg {
    fill: black;
}

.color-svg {
    fill: var(--color-teal);
}
.red-color-svg {
    fill: var(--text-red-500);
}
.accordion-interest:hover,
.spna-interset i {
    color: var(--color-teal);
}

.accordion-interest.active,
.spna-interset i {
    color: var(--color-teal);
    background-color: var(--bg-teal);
}

/* ////security page */
html.dark .Two-factoridentification>li::after {
    content: attr(data-content);
    position: absolute;
    top: 25px;
    width: 100px;
    text-align: center;
    color: white;
}

.Two-factoridentification>li::after {
    content: attr(data-content);
    position: absolute;
    top: 25px;
    width: 100px;
    text-align: center;
    color: black;
}

/* style Marketing Page */
html.dark .bg-refer {
    width: 100%;
    height: 380px;
    background: url(/images/top-shadow.png?e1ead6443692311d8b2738c9cdcfa156), linear-gradient(180deg, #3e3e43, #1b1b1e);
    background-repeat: no-repeat;
}

/* switch theme */
.switch {
    position: relative;
    display: inline-block;
    width: 47px;
    height: 20px;
}

switch input[type='checkbox'] {
    opacity: 0;
    width: 0;
    height: 0;
    display: none;
}

.switch-check {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #d3d5d9;
    transition: .4s;
    border-radius: 12px;
}

.switch-check::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    left: 3px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: .4s;
}

.switch input:checked+.switch-check {
    background: var(--color-teal);
}

.switch input:checked+.switch-check::before {
    transform: translateX(26px);
}

/* guide page */
#items-guides li a.active {
    background-color: var(--color-teal) !important;
    color: white;
}

:is([dir="ltr"] #items-guides li:last-child button){
    margin-right: 0.75rem;
}

:is([dir="rtl"] #items-guides li:last-child button){
    margin-left: 0.75rem;
}

@media (min-width: 1024px){

    :is([dir="ltr"] #items-guides li:last-child button){
        margin-right: 0px;
    }

    :is([dir="rtl"] #items-guides li:last-child button){
        margin-left: 0px;
    }
}

.content-tab-guide {
    animation: fadeEffectTab 1s;
}

/* Fade in tabs */

@keyframes fadeEffectTab {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media screen and (min-width: 768px) {

    /* width */
    #sidebar-guide::-webkit-scrollbar {
        width: 3px;
        display: none;
    }
}

html.dark .background-form-order {
    background: linear-gradient(142deg, #090a0a0d, #505866b3);
}

.background-form-order {
    background: var(--bg-teal);
}

@media (min-width: 1024px){

    :is([dir="ltr"] .space-position){
        left: 4% !important;
    }

    :is([dir="rtl"] .space-position){
        right: 4% !important;
    }
}

.button-toggle-chart.active {
    background: var(--bg-teal) !important;
    border-color: var(--color-teal) !important;
}

.tab-button[data-tab="tab1"].active {
    background: var(--color-teal);
    color: white
}

.tab-button[data-tab="tab3"].active {
    background: #eab308;
    color: white
}

.tab-button[data-tab="tab2"].active {
    background: #ef4444;
    color: white
}

/*Start::nft*/
.buttn-buy-ntf:hover {
    background-color: var(--color-teal) !important;
}
.buttn-buy-ntf:hover i {
    color: white;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
/*End::nft*/

.loader {
    border: 3px solid #ffff;
    border-radius: 50%;
    border-top: 3px solid #757575;
    border-right: 3px solid #757575;
    border-bottom: 3px solid #757575;
    width: 22px;
    height: 22px;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*
** style p2p
*/
.market-base-p2p li a.active {
    color: var(--color-teal);
}

