/* ripple animation */


.ripple_effect {
    animation-name: ripple;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.13), 0 0 0 0 rgba(240, 185, 11, 0.13);
    }

    /* 80% {
        box-shadow: 0 0 0 15px rgba(240, 185, 11, 0.13), 0 0 0 30px rgba(240, 185, 11, 0.13);
    } */

    90% {
        box-shadow: 0 0 0 20px rgba(240, 187, 11, 0), 0 0 0 30px rgba(240, 187, 11, 0);
    }
}




/* spinner loaders*/
.spinner-line {
    /* font-size: 22.5px; */
    font-size: 150%;
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 100%;
}

.spinner-line.center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.spinner-line .spinner-line-blade {
    position: absolute;
    left: 0.4629em;
    bottom: 0;
    width: 0.074em;
    height: 0.2777em;
    border-radius: 0.0555em;
    background-color: transparent;
    -webkit-transform-origin: center -0.2222em;
    -ms-transform-origin: center -0.2222em;
    transform-origin: center -0.2222em;
    animation: spinner-fade9234 1s infinite linear;
}

.spinner-line .spinner-line-blade:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.spinner-line .spinner-line-blade:nth-child(2) {
    -webkit-animation-delay: 0.083s;
    animation-delay: 0.083s;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner-line .spinner-line-blade:nth-child(3) {
    -webkit-animation-delay: 0.166s;
    animation-delay: 0.166s;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner-line .spinner-line-blade:nth-child(4) {
    -webkit-animation-delay: 0.249s;
    animation-delay: 0.249s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner-line .spinner-line-blade:nth-child(5) {
    -webkit-animation-delay: 0.332s;
    animation-delay: 0.332s;
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner-line .spinner-line-blade:nth-child(6) {
    -webkit-animation-delay: 0.415s;
    animation-delay: 0.415s;
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner-line .spinner-line-blade:nth-child(7) {
    -webkit-animation-delay: 0.498s;
    animation-delay: 0.498s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner-line .spinner-line-blade:nth-child(8) {
    -webkit-animation-delay: 0.581s;
    animation-delay: 0.581s;
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner-line .spinner-line-blade:nth-child(9) {
    -webkit-animation-delay: 0.664s;
    animation-delay: 0.664s;
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner-line .spinner-line-blade:nth-child(10) {
    -webkit-animation-delay: 0.747s;
    animation-delay: 0.747s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner-line .spinner-line-blade:nth-child(11) {
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s;
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner-line .spinner-line-blade:nth-child(12) {
    -webkit-animation-delay: 0.913s;
    animation-delay: 0.913s;
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.btn-xs .spinner-line {
    font-size: 117%;
    margin: 0 -6px;
}

.btn-xl .spinner-line,
.btn-lg .spinner-line {
    font-size: 100%;
}



@keyframes spinner-fade9234 {
    0% {
        background-color: currentColor;
    }

    100% {
        background-color: transparent;
    }
}








/* loader row loader */


.load-row {
    /* width: 100px; */
    /* height: 50px; */
    /* line-height: 50px; */
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.load-row span {
    display: inline-block;
    width: 4px;
    height: 10px;
    background: currentColor;
    /* filter: invert(1); */
    border-radius: 50px;
    margin: 0 2px;
    animation: up-down6 0.5s ease-in infinite alternate;
}

.load-row span:nth-child(2) {
    animation-delay: 0.12s;
    opacity: 0.8;
}

.load-row span:nth-child(3) {
    animation-delay: 0.24s;
    opacity: 0.4;
}

.load-row span:nth-child(4) {
    animation-delay: 0.36s;
    opacity: 0.7;
}

@keyframes up-down6 {
    0% {
        transform: translateY(-3px);
    }

    25% {
        transform: translateY(-3px);
    }

    75% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(3px);
    }
}


/* end */




@media (min-width: 1441px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1410px;
    }
}

.navbar-expand-lg .navbar-nav {
    border: 1px solid #00000017;
    border-radius: 50px;
    padding: 3px;
    background: #ffffff4f;
    backdrop-filter: blur(10px);
}

html[data-theme='dark'] .navbar-expand-lg .navbar-nav {
    background: #ffffff0d;
    border-color: 0 0 0 1px rgb(52 56 57);
    border-color: #b9b9b92e !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin: 0;
    padding: 9px 18px !important;
    line-height: 1.1;
    border-radius: 50px;
    font-size: 15px;
    border: 1.5px solid #e9e8ec00;
    color: var(--light-color);
}

html[data-theme='dark'] .navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    border-color: #f0b90b;
    /* color: #fff; */
}

html[data-theme='dark'] .navbar-expand-lg .navbar-nav .nav-link:hover {
    border-color: #333536;
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link.active,
html[data-theme='dark'] .navbar-expand-lg .navbar-nav .nav-link.active:hover {
    border-color: #f0b90b;
    background-color: #f0b90b !important;
    color: #000 !important;
}

.is-sticky .navbar-expand-lg .navbar-nav,
.nav_sticky.navbar-expand-lg .navbar-nav {
    border: 1px solid #0000000f;
    background: #ffffff;
}

.is-sticky .navbar-expand-lg .navbar-nav .nav-link:hover .navbar-expand-lg .navbar-nav.is-nav_sticky .nav-link:hover {
    background: #f0b90b;
    color: #fff;
}


.cursor_pointer {
    cursor: pointer;
}

.selection {
    user-select: none;
}





/* theme switcher */


.ui-switch {
    --switch-bg: rgb(135, 150, 165);
    --switch-width: 48px;
    --switch-height: 20px;
    --circle-diameter: 32px;
    --circle-bg: rgb(0, 56, 146);
    --circle-inset: calc((var(--circle-diameter) - var(--switch-height)) / 2);
}

.ui-switch input {
    display: none;
}

.slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--switch-width);
    height: var(--switch-height);
    background: var(--switch-bg);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
}

.slider .circle {
    top: calc(var(--circle-inset) * -1);
    left: 0;
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    position: absolute;
    background: var(--circle-bg);
    border-radius: inherit;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTkuMzA1IDEuNjY3VjMuNzVoMS4zODlWMS42NjdoLTEuMzl6bS00LjcwNyAxLjk1bC0uOTgyLjk4Mkw1LjA5IDYuMDcybC45ODItLjk4Mi0xLjQ3My0xLjQ3M3ptMTAuODAyIDBMMTMuOTI3IDUuMDlsLjk4Mi45ODIgMS40NzMtMS40NzMtLjk4Mi0uOTgyek0xMCA1LjEzOWE0Ljg3MiA0Ljg3MiAwIDAwLTQuODYyIDQuODZBNC44NzIgNC44NzIgMCAwMDEwIDE0Ljg2MiA0Ljg3MiA0Ljg3MiAwIDAwMTQuODYgMTAgNC44NzIgNC44NzIgMCAwMDEwIDUuMTM5em0wIDEuMzg5QTMuNDYyIDMuNDYyIDAgMDExMy40NzEgMTBhMy40NjIgMy40NjIgMCAwMS0zLjQ3MyAzLjQ3MkEzLjQ2MiAzLjQ2MiAwIDAxNi41MjcgMTAgMy40NjIgMy40NjIgMCAwMTEwIDYuNTI4ek0xLjY2NSA5LjMwNXYxLjM5aDIuMDgzdi0xLjM5SDEuNjY2em0xNC41ODMgMHYxLjM5aDIuMDg0di0xLjM5aC0yLjA4NHpNNS4wOSAxMy45MjhMMy42MTYgMTUuNGwuOTgyLjk4MiAxLjQ3My0xLjQ3My0uOTgyLS45ODJ6bTkuODIgMGwtLjk4Mi45ODIgMS40NzMgMS40NzMuOTgyLS45ODItMS40NzMtMS40NzN6TTkuMzA1IDE2LjI1djIuMDgzaDEuMzg5VjE2LjI1aC0xLjM5eiIgLz4KPC9zdmc+");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    -o-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
    ;
}

.slider .circle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    border-radius: inherit;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    opacity: 0;
}

/* actions */

.ui-switch input:checked+.slider .circle {
    left: calc(100% - var(--circle-diameter));
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTQuMiAyLjVsLS43IDEuOC0xLjguNyAxLjguNy43IDEuOC42LTEuOEw2LjcgNWwtMS45LS43LS42LTEuOHptMTUgOC4zYTYuNyA2LjcgMCAxMS02LjYtNi42IDUuOCA1LjggMCAwMDYuNiA2LjZ6IiAvPgo8L3N2Zz4=");
}

.ui-switch input:active+.slider .circle::before {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    opacity: 1;
    width: 0;
    height: 0;
}


/* theme switcher end */



.hero_card {
    background-color: #ffffff6e;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    padding-bottom: 18px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-color: #efabb266;
    border: 1.5px solid #ffffff;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    -webkit-transition: all 350ms cubic-bezier(.37, 0, .63, 1);
    transition: all 350ms cubic-bezier(.37, 0, .63, 1);
    backdrop-filter: blur(4px);
}

html[data-theme='dark'] .hero_card {
    background-color: #232627;
    /* box-shadow: 0 0 0 1px rgb(52 56 57); */
    box-shadow: none;
    border-color: #383b3c;
}









.h_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    padding: 15px 30px;
    transition: 0.2s;
    /* border-bottom: 1px solid #bfbbcc52; */
}

.hero_card h5 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.h_card:last-child {
    border: 0;
    /* padding-bottom: 0; */
}

.td_img {
    /* padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: -1px 0px 6px 0px #33333321; */
    margin-right: 18px;
}


.td_img img {
    margin: 0;
    width: 35px;
}

.h_card .td_div b {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    line-height: 1;
    /* font-weight: 800; */
}

.h_card .td_div b em {
    font-style: normal;
    font-weight: 500;
    margin-left: 5px;
    font-size: 14px;
}

.h_card .td_div span {
    font-weight: 600;
    font-size: 12px;
}

.h_card .badge {
    border-radius: 5px;
    padding: 5px 4px !important;
    font-size: 11px;
    min-width: 56px;
}

.h_card .badge-success {
    background: #39c87b38;
    color: #38C87B;
}

.h_card .badge-danger {
    background: #d4343e24;
    color: #D4343E;
}


.hero_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 30px;
    padding-bottom: 0;
}

.hero_title .btn-link {
    font-weight: 600;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

html[data-theme='dark'] .hero_title .btn-link {
    color: rgba(232, 236, 239, .75);
}

.hero_title .btn-link i {
    transition: 0.2s;
}

.hero_title .btn-link:hover i {
    margin-left: 5px;
    opacity: 1;
}

.hero_title .btn-link i {
    opacity: 0.4;
    margin-left: 2px;
    font-size: 16px;
}










/* buy_sell cside card css */

.sd_other {
    padding-left: 15px;
}

.ot_card {
    padding: 15px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid #ffffff;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

html[data-theme='dark'] .ot_card {
    background: #282b2c;
    border-color: #343839;
    /* backdrop-filter: blur(4px); */
}

.ot_card h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 9px;
}

.ot_card img {
    max-width: 120px;
    margin: 0 auto;
}


.cc_data {
    display: flex;
    align-items: start;
    justify-content: space-around;
    margin-top: 15px;
    flex-direction: column;
}

.cc_data>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 100%;
    width: 100%;
    padding: 2px 0;
}

.cc_data>div span {
    font-size: 11px;
    line-height: 1.4;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.cc_data>div span small {
    font-weight: 600;
    font-size: 12px;
}


em.em_do {
    font-style: normal;
    height: 6px;
    width: 6px;
    display: block;
    border-radius: 50px;
    min-width: 6px;
    margin: 4px 0;
}

html[data-theme='dark'] .cc_data>div {
    color: #fff;
}

.bg-green {
    background: #8bc34a;
}



html[data-theme='light'] .dropdown-item:focus,
html[data-theme='light'] .dropdown-item:hover {
    background-color: #f3f3f3;
}



/* From Uiverse.io by MuhammadHasann */
.button {
    --black-700: hsl(45.59deg 91.24% 49.22%);
    --border_radius: 9999px;
    --transtion: 0.3s ease-in-out;
    --offset: 2px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform-origin: center;
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));
    transition: transform var(--transtion);
    /* box-shadow: 0 0 0 2px #ffffff54; */
    max-width: fit-content;
}

.button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--custom-btn-bg-color) !important;
    border-radius: var(--border_radius);
    /* box-shadow: inset 0 0.5px hsl(45.59deg 91.24% 49.22%), inset 0 -1px 2px 0 hsl(0, 0%, 0%), 0px 4px 10px -4px hsla(0 0% 0% / calc(1 - 0)), 0 0 0 calc(var(--active, 0) * 0.375rem) hsl(260 97% 50% / 0.75); */
    transition: all var(--transtion);
    z-index: 0;
    transition: 0.5s;
    background-size: 250% auto !important;
}

.button:hover::before {
    background-position: right center !important;
    text-decoration: none !important;
}

.button i {
    transition: 0.2s;
    -moz-animation: 2s infinite bounce;
    -webkit-animation: 2s infinite bounce;
    animation: 2s infinite bounce;
    color: rgb(0 0 0);
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateX(0)
    }

    40% {
        transform: translateX(10px)
    }

    60% {
        transform: translateX(5px)
    }
}


.button:is(:hover, :focus-visible) i {
    transform: rotate(0deg) !important;
}



/* .button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;
    background-color: hsla(260 97% 61% / 0.75);
    background-image: radial-gradient(at 51% 89%,
            hsla(266, 45%, 74%, 1) 0px,
            transparent 50%),
        radial-gradient(at 100% 100%, hsla(266, 36%, 60%, 1) 0px, transparent 50%),
        radial-gradient(at 22% 91%, hsla(266, 36%, 60%, 1) 0px, transparent 50%);
    background-position: top;

    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
} */

.button:is(:hover, :focus-visible) {
    /* --active: 1; */
}

.button:active {
    /* transform: scale(1); */
}

.button .dots_border {
    --size_border: calc(100% + 4px);

    overflow: hidden;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;

    border-radius: var(--border_radius);
    z-index: -10;
}

.button .dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left;
    transform: rotate(0deg);
    width: 100%;
    height: 2rem;
    background-color: white;
    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate 2s linear infinite;
}

html[data-theme='light'] .button .dots_border::before {
    background-color: #dba800;
    mask: linear-gradient(transparent 0%, white 120%);
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.button .sparkle {
    position: relative;
    z-index: 10;

    width: 1.75rem;
}

.button .sparkle .path {
    fill: currentColor;
    stroke: currentColor;

    transform-origin: center;

    color: hsl(0, 0%, 100%);
}

.button:is(:hover, :focus) .sparkle .path {
    animation: path 1.5s linear 0.5s infinite;
}

.button .sparkle .path:nth-child(1) {
    --scale_path_1: 1.2;
}

.button .sparkle .path:nth-child(2) {
    --scale_path_2: 1.2;
}

.button .sparkle .path:nth-child(3) {
    --scale_path_3: 1.2;
}

@keyframes path {

    0%,
    34%,
    71%,
    100% {
        transform: scale(1);
    }

    17% {
        transform: scale(var(--scale_path_1, 1));
    }

    49% {
        transform: scale(var(--scale_path_2, 1));
    }

    83% {
        transform: scale(var(--scale_path_3, 1));
    }
}

.button .text_button {
    position: relative;
    z-index: 10;
    background-image: linear-gradient(90deg, hsl(0deg 0% 0%) 0%, hsl(0deg 0% 0%) 120%);
    background-clip: text;
    font-size: 1rem;
    color: transparent;
    font-weight: 600;
}








@media(max-width:767px) {
    .hero_title {
        margin-bottom: 20px;
        padding: 00;
    }

    .h_card {
        padding: 7px 0;
    }

    .h_card .td_div b em {
        margin-left: 0;
    }

    .h_card .td_div span {
        line-height: normal;
    }



    .ot_card {
        /* max-width: 50%; */
        margin-bottom: 0 !important;
        background: #fff;
    }

    html[data-theme='dark'] .ot_card {
        background: #333536;
    }

    .sd_other {
        margin-top: 10px;
        padding: 0;
    }

    .ot_card img {
        max-width: 72px;
        margin: 0 auto;
    }

    .sd_other .ot_card:not(:first-child) {
        margin-top: 10px;
    }

    .recharts-wrapper {
        margin: 0 auto;
    }



    .button {
        padding: 11px 22px;
        font-size: 14px;
        margin: 0 auto;
    }

    .button .text_button {
        font-size: 14px;
    }



}


.swiper-slide-active {
    opacity: 1 !important;
    animation: fadeInDown 1s both !important;
}