@font-face {
    font-family: 'FiraSans-Bold';
    src: url('../fonts/FiraSans-Bold.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'FiraSans-Light';
    src: url('../fonts/FiraSans-Light.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'FiraSans-Medium';
    src: url('../fonts/FiraSans-Medium.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'FiraSans-Regular';
    src: url('../fonts/FiraSans-Regular.ttf');
    font-display: swap;
}
body{
    background-color: #ebebeb;
    min-height: 100vh;
    font-family: 'FiraSans-Regular', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #222;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'FiraSans-Medium', Arial, Helvetica, sans-serif;
}
a{
    outline: none;
    text-decoration: none;
}
.ff-regular{
    font-family: 'FiraSans-Regular', Arial, Helvetica, sans-serif;
}
.ff-medium{
    font-family: 'FiraSans-Medium', Arial, Helvetica, sans-serif;
}
.bg-color{
    background: #ebebeb;
}
header{
    background: #fff;
    padding-block: 10px;
    border-bottom: 1px solid #858585;
    height: 60px;
}

header .nav-item{
    padding: 8px 16px;
}
header .nav-link{
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    padding: 0;
    color: #222;
    font-weight: 500;
}
header .nav-link::before{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #846aff;
    transition: width 300ms ease-in-out;
}
header .nav-link:hover::before, header .nav-link.active::before{
    width: 100%;
}
.nav-link{
    color: #222;
    font-weight: 500;
}
.nav-link:hover, .nav-link.active{
    color: #846aff;
}
@media (min-width: 992px) { /* Large devices (desktops, 992px and up) */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        position: absolute;
        inset: 0px auto auto 0px;
        margin: 0px;
        transform: translate3d(16px, 30px, 0px);
    }
    /* Adjust dropdown toggle style */
    .nav-item .dropdown-toggle::after {
        /* Downwards arrow */
        display: inline-block;
        margin-left: 0.5rem;
        transition: transform 0.3s;
    }
    .nav-item.dropdown:hover .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.nav-item .dropdown-menu {
    margin-top:10px; /* Adjust the value as needed */
}
main, .height-fill{
    min-height: calc(100vh - 60px - 317px);
}
main.no-footer, .height-fill-no-footer{
    min-height: calc(100vh - 60px - 104px);
}
.bg-img{
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
/*.home-bg{
    background-image: url('../images/bg/bg4.webp');
    background-attachment: fixed;
}*/

.home-bg{
    background: linear-gradient(
        140deg,
        #000000 0%,
        #243741 25%,
        #3e3151 50%,
        #41212c 75%,
        #7c334e 100%
    );
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.christmas-bg{
    background-image: url('../images/bg/winter-bg.jpg');
    background-attachment: fixed;
}
.announcement-bg{
    background-image: url('../images/bg/bg3.webp');
}
.brand-logo img{
    height: 40px;
}
@media only screen and (max-width: 991px) {
    .brand-logo{
        margin:15px 0px 15px 0px!important; 
    }
    .main-nav{
        margin-top:25px!important;
    }
}
.exchange-wrap{
    background-color: #ebebeb;
    padding: 24px;
    position: relative;
    border-radius: 24px
}
.exchange-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -10px;
    transition: all .4s;
    border-radius: inherit;
    background: linear-gradient(to left,#ff00d4,#7d41ea,#0080ff);
}


.advantage-badge{
    background-color: #ffffff1b;
    padding:5px 10px;
}

.tab-btn-wrap{
    display: flex;
    align-items:center;
    border-radius:10px;
    overflow: hidden;
    margin-bottom:23px;
}

.tab-btn-wrap .btn-tab{
    width:100%;
    border: none;
    border-radius:0;
    background-color: #ffffff;
}

.tab-btn-wrap .btn-tab:hover{
    background: #846aff;
    background: linear-gradient(to right,#0080ff,#7d41ea);
}

.tab-btn-wrap .btn-tab.active{
    background: #846aff;
    background: linear-gradient(to right,#0080ff,#7d41ea)!important;
}


.form-wrap{
    position: relative;
    border: 1px solid #846aff;
}
.form-wrap span{
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: #846aff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.form-control.custom-input{
    border-radius: 0;
    font-weight: 700;
    height: 50px;
}

.form-wrap .btn-convert{
    position:absolute;
    top:50%;
    right:5px;
    transform: translateY(-50%);
    background-color:#846aff;
    color:#fff;
    font-size:15px;
    padding:8px 13px;
    height: auto;
    /*z-index: 2;*/
    transition:all 0.3s ease;
}

.form-wrap .btn-convert:hover,
.form-wrap .btn-convert:focus{
    background-color:#523db7;
}

.form-wrap .form-control.amount_to{
    padding-right:60px!important;
}
.form-wrap .loader-icon{
    height:18px!important;
    width:auto;
}
.with-border{
    border: 1px solid #846aff;
}
.custom-input.border-bottom{
    border-bottom-color: #846aff !important;
}
.form-control.custom-input:focus{
    box-shadow: none;
    border-color: transparent;
}
.form-control.custom-input.with-border:focus{
    box-shadow: none;
    border-color: #846aff;
}
.form-control.custom-input::placeholder{
    color: #22222288;
    font-weight: normal;
}
.form-wrap .form-control{
    padding-left: 85px;
}
.btn-custom{
    color: #222;
    font-weight: 500;
    border-radius: 0;
    height: 50px;
    border: none;
    box-shadow: inset 0 0 0 2px #846aff;
    transition: none;
    font-size: 17px;
    width: 100%;
}
.btn-custom:hover, .btn-custom:active, .btn-custom:focus-visible{
    background: #846aff;
    background: linear-gradient(to right,#ff00d4,#7d41ea,#0080ff);
    color: #fff;
    box-shadow: none;
}

.btn-gradient{
    color: #fff;
    background: #4776E6;
    background: -webkit-linear-gradient(to right, #8E54E9, #4776E6); 
    background: linear-gradient(to right, #8E54E9, #4776E6);
    transition:all 0.3s ease;
}

.btn-gradient:hover{
    transform: scale(1.05);
    color: #fff;
}




.exchange-terms {
    padding-top: 17px;
    color: #000;
    font-size: 12px;
}
.exchange-coin{
    display: flex;
    align-items: center;
    color: #222;
    cursor: pointer;
    text-decoration: none;
}
label.exchange-coin{
    border: 1px solid #846aff;
    height: 52px;
    padding: 0 10px;
    position: relative;
    padding-right: 35px;
    overflow: hidden;
}
label.exchange-coin::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: #ebebeb;
    width: 30px;
    height: 100%;
}
label.exchange-coin::after{
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    display: inline-block;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    width: 10px;
    height: 10px;
    transform: translateY(-50%) rotate(45deg);
}
.exchange-coin img{
    width: 30px;
    height: 30px;
    /* min-width: 30px;
    min-height: 30px; */
    object-fit: cover;
    margin-right: 10px;
    border-radius: 50%;
}
.exchange-coin .coin-ticker{
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
    text-transform: uppercase;
}
.exchange-coin .coin-name{
    font-size: 20px;
}
.select-coin{
    position: relative;
}
.select-coin ul{
    top: -17px;
    left: 0;
    right: 0;
    position: absolute;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    margin-bottom: 0;
    padding: 0;
    border: 1px solid #846aff;
}
.select-coin ul li a{
    padding: 10px 10px;
}
.select-coin ul li a:hover{
    background: #b4b4b4;
}
#exchange_from:not(:checked) + .select-coin, #exchange_to:not(:checked) + .select-coin{
    height: 0;
    overflow: hidden;
}
.select-coin ul::-webkit-scrollbar{
    width:6px;
    right:10px
}
.select-coin ul::-webkit-scrollbar-track{
    background: #b4b4b4
}
.select-coin ul::-webkit-scrollbar-thumb{
    background:#846aff
}
.select-coin ul::-webkit-scrollbar-thumb:hover{
    background:#7357fd
}
.icon{
    width: 40px;
    height: 40px;
    background: #846aff;
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    transition: transform 300ms ease-in-out;
}
.icon-variable{
    background-image: url('../images/icons/variable.webp');
}
/*.variable-rate:hover .icon-variable{
    background-image: url('../images/icons/fixed.png');
}*/
.icon-fixed{
    background-image: url('../images/icons/fixed.png');
}
/*.fixed-rate:hover .icon-fixed{
    background-image: url('../images/icons/variable.png');
}*/
.icon-swap{
    background-image: url('../images/icons/swap.webp');
}
.icon-info{
    background-image: url('../images/icons/info.png');
}
.icon-help{
    background-image: url('../images/icons/help.svg');
}
.icon-copy{
    background-image: url('../images/icons/copy.svg');
}
.icon-copied{
    background-image: url('../images/icons/copied.png');
}
.icon-external{
    background-image: url('../images/icons/external.png');
}
.icon-swap:hover{
    transform: rotate(180deg);
}
.link-custom{
    color: #525252;
}
.link-custom:hover{
    color: #846aff;
}
.floating-text{
    font-size: 15px;
}
.order-id h3,h4{
    font-size:17px;
}
.right-arrow-img{
    margin:0 15px;
}

.main-footer .receiving-text{
    font-size:16px;
}
.main-footer .receiving-address{
    font-size: 17px;
}


.main-footer .created-text{
    font-size:16px;
}
.main-footer .created-date{
    font-size: 17px;
}




.popover-main {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.popover-content {
    position: absolute;
    left: 70%;
    top: 50px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #000;
    width: 200px;
    opacity: 0;
    z-index: 1;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    color: #fff;
}
.popover-content p {
    font-size: 12px;
    text-align: justify;
    word-wrap: break-word!important;
    word-break: break-word!important;
}
.popover-main:hover .popover-content{
    padding: 10px;
    opacity: 1;
    max-height: 100vh;
    -webkit-transform: translate(-50%,-20px);
    -ms-transform: translate(-50%,-20px);
    transform: translate(-50%,-20px);
    -webkit-transition: opacity 300ms linear,-webkit-transform 300ms linear;
    transition: opacity 300ms linear,-webkit-transform 300ms linear;
    -o-transition: transform 300ms linear,opacity 300ms linear;
    transition: transform 300ms linear,opacity 300ms linear;
    transition: transform 300ms linear,opacity 300ms linear,-webkit-transform 300ms linear;
}
.form-search{
    position: relative;
}
.form-search input{
    padding-right: 30px;
}
.form-search label{
    position: absolute;
    right: 0;
    top: 1px;
    background: #fff;
    width: 30px;
    height: calc(100% - 2px);
    cursor: pointer;
}
.close-list:hover {
    opacity: 1;
}
.close-list:before, .close-list:after {
    position: absolute;
    top: 12px;
    left: 15px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #222;
}
.close-list:before {
    transform: rotate(45deg);
}
.close-list:after {
    transform: rotate(-45deg);
}
.recent-shifts td:first-child,.recent-shifts td:nth-child(4){
    text-align: right !important;
}
.alert-custom{
    padding: 12px 16px;
    background: #fff;
    border-left: 3px solid transparent;
    margin-bottom: 16px;
    text-align: left !important;
}
.alert-custom-success{
    border-left-color: #1d7c00;
    color: #1d7c00 !important;
}
.alert-custom-error{
    border-left-color: #800505;
    color: #800505 !important;
}
.announcement-single{
    background: #221f59;
    border-radius: 10px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.announcement-single::before{
    position: absolute;
    content: '';
    bottom: -12px;
    right: -12px;
    background-image: url('../images/icons/announcement.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100px;
    height: 100px;
}
.announcement-single:last-child{
    margin-bottom: 0;
}
.announcement-single h3, .announcement-single p{
    margin-bottom: 4px;
    position: relative;
}
.announcement-single h3{
    font-size: 20px;
}
.announcement-single p.small{
    font-size: 12px;
}
footer{
    background: #fff;
    padding-top: 20px;
    padding-bottom: 55px;
    border-top: 1px solid #858585;
}

.social-link{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #d5d5d5;
    display:flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover{
    background-color: #222
}

.social-link:hover img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(359deg) brightness(104%) contrast(101%);
}

.nav-toggle{
    border: 2px solid #222;
    cursor: pointer;
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    float: right;
}


/* mobile language menu*/

/* country menu */
.country-mobile-menu{
    float: right;
}

.country-mobile-menu .dropdown-menu .dropdown-item:hover{
    background-color: #d7e9fb;
    color: #000000;
}

.country-mobile-menu{
    margin-top: 3px;
}
.country-mobile-menu .nav-link img{
    height: 25px;
}

.country-mobile-menu .dropdown-item img{
    height:25px;
}
.country-mobile-menu .dropdown-menu {
    margin-top:10px; /* Adjust the value as needed */
}

@media only screen and (max-width:991px){
    .country-desktop-menu{
        display:none!important;
    }
}


/* desktop language menu */

.country-desktop-menu{
    float: right;
}
.country-desktop-menu .dropdown-menu .dropdown-item:hover{
    background-color: #d7e9fb;
    color: #000000;
}

.country-desktop-menu{
    margin-top: 3px;
}
.country-desktop-menu .nav-link img{
    height: 25px;
}

.country-desktop-menu .dropdown-item img{
    height:25px;
}


/* Ensure dropdown menu visibility on hover */
@media (min-width: 992px) { /* Large devices (desktops, 992px and up) */
    .country-desktop-menu:hover .dropdown-menu{
        display: block;
        margin-left:-120px;
    }
    .country-desktop-menu{
        margin-left: 100px;
        cursor: pointer;
    }

    .country-desktop-menu .dropdown-toggle{
        pointer-events: none; /* Disable clicking */
        cursor:default; /* Optional: Change cursor to indicate it’s not clickable */
        padding-bottom: 10px;
    }
    /* Adjust dropdown toggle style */
    .country-desktop-menu .dropdown-toggle::after {
        /* Downwards arrow */
        display: inline-block;
        margin-left: 0.5rem;
        transition: transform 0.3s;
    }
    .country-desktop-menu.dropdown:hover .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.nav-toggle .menu-bar{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #222;
}
.nav-toggle .menu-bar.menu-bar1{
    top: 12px;
}
.nav-toggle .menu-bar.menu-bar2{
    top: 18px;
}
.nav-toggle .menu-bar.menu-bar3{
    top: 24px;
}

#main_nav:checked ~ label .menu-bar{
    -webkit-transition: width 300ms linear, -webkit-transform 300ms linear;
    transition: width 300ms linear, -webkit-transform 300ms linear;
    -o-transition: transform 300ms linear, width 300ms linear;
    transition: transform 300ms linear, width 300ms linear;
    transition: transform 300ms linear, width 300ms linear, -webkit-transform 300ms linear;
}
#main_nav:checked ~ label .menu-bar.menu-bar1{
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    -ms-transform: translate(-50%,-50%) rotate(45deg);
    transform: translate(-50%,-50%) rotate(45deg);
}
#main_nav:checked ~ label .menu-bar.menu-bar2{
    width: 0;
}
#main_nav:checked ~ label .menu-bar.menu-bar3{
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(-45deg);
    -ms-transform: translate(-50%,-50%) rotate(-45deg);
    transform: translate(-50%,-50%) rotate(-45deg);
}
.dots::after {
    content: ' .';
    -webkit-animation: dots 1s steps(5, end) infinite;
    animation: dots 1s steps(5, end) infinite;
}
@-webkit-keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: #fff;
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow: .25em 0 0 #fff, .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow: .25em 0 0 #fff, .5em 0 0 #fff;
    }
}
@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: #fff;
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow: .25em 0 0 #fff, .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow: .25em 0 0 #fff, .5em 0 0 #fff;
    }
}
.qr-wrap img{
    width: 220px;
    height: 220px;
    object-fit: cover;
    padding: 10px;
    background: linear-gradient(to left,#ff00d4,#7d41ea,#0080ff);
}
.receiving-address{
    max-width: 200px;
}
.arrow{
    display: inline;
}
.arrow span{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 4px solid #222;
    border-right: 4px solid #222;
    transform: rotate(45deg);
    animation: arrow-moving 2s infinite;
    -webkit-animation: arrow-moving 2s infinite;
}
.arrow span:nth-child(1){
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.arrow span:nth-child(2){
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.arrow span:nth-child(3){
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
@-webkit-keyframes arrow-moving{
    0%{opacity:0}
    40%{opacity:1}
    80%{opacity:0}
    100%{opacity:0}
}
@keyframes arrow-moving{
    0%{opacity:0}
    40%{opacity:1}
    80%{opacity:0}
    100%{opacity:0}
}
.exchange-coin-lg{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.success-error-icon{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.custom-contact-input{
    position: relative;
}
.custom-contact-input img{
    position: absolute;
    top: 17px;
    left: 10px;
    width: 16px;
    height: 16px;
    opacity: 0.6;
}
.custom-contact-input .form-control{
    padding-left: 36px;
}
.custom-contact-input textarea.form-control.custom-input{
    height: 120px;
    padding-top: 10px;
}
.grad-bg{
    background: linear-gradient(to left,#ff00d4,#7d41ea,#0080ff);
    padding: 10px;
    border-radius: 24px;
}
.grad-bg .grad-front{
    background-color: #ebebeb;
    padding: 24px;
    border-radius: inherit;
}
.contact-icon-1{
    width: 24px;
    height: 24px;
    left: 10px;
    top: 10px;
    transform: rotate(-45deg);
}
.contact-icon-2{
    width: 24px;
    height: 24px;
    right: 24px;
    top: 4px;
    transform: rotate(15deg);
}
.contact-icon-3{
    width: 30px;
    height: 30px;
    left: 4px;
    bottom: 20px;
    transform: rotate(-22deg);
}
.contact-icon-4{
    width: 30px;
    height: 30px;
    right: 40px;
    bottom: 5px;
    transform: rotate(36deg);
}
.moveupdown {
    -webkit-animation: MoveUpDown 2s infinite alternate;
    animation: MoveUpDown 2s infinite alternate
}

@-webkit-keyframes MoveUpDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes MoveUpDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.contact-icons{
    background: linear-gradient(to left,#ff00d4,#7d41ea,#0080ff);
    height: 60px;
    width: 60px;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.contact-icons img{
    width: 30px;
    margin-top: 15px;
}


.process-single{
    padding: 20px 80px;
    position: relative;
}
.process-single::after{
    content: '';
    display: block;
    width: 125px;
    height: 25px;
    position: absolute;
    left: calc(100% - 60px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url('../images/process.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.process-count{
    font-size: 30px;
    background: #836cf8;
    background: linear-gradient(to left,#ff00d4,#7d41ea,#0080ff);
    color: #fff;
    height: 60px;
    width: 60px;
    margin: 20px auto;
    line-height: 60px;
    border-radius: 4px;
    -webkit-transition: border-radius 300ms linear;
    -o-transition: border-radius 300ms linear;
    transition: border-radius 300ms linear;
}
.process-single:hover .process-count{
    border-radius: 50%;
}
.process-single-grid:last-child .process-single::after{
    background-image: none;
    width: 0;
    height: 0;
}
.footer-link .nav-link{
    padding-left: 0;
}
.footer-social{
   display: flex;
   align-items: center;
   justify-content: center;
}
.footer-social .bestchange-img{
    height: auto;
    width:130px;
    padding:8px 15px 8px 15px;
    border-left: 1px solid #8a8a8a;
}
.trustpilot-widget{
    margin-top:15px;
}

/*Blog*/
.text-justify{
    text-align: justify;
}
a .blog-post{
    color: #222;
}
.blog-post-image{
    border-radius: 20px;
    width: 100%;
}
.blog-post h2{
    font-size: 20px;
}
.blog-post h4{
    font-size: 12px;
    text-transform: none;
    margin: 10px 0;
    font-family: 'FiraSans-Regular', Arial, Helvetica, sans-serif;
}
.blog-post .blog-author img{
    max-width: 20px;
    margin-right: 4px;
}
.blog-post .blog-author, .blog-post .blog-published{
    font-size: 12px;
    line-height: 24px;
    font-family: 'FiraSans-Regular', Arial, Helvetica, sans-serif;
}
.blog-post-single{
    word-break: break-word;
    word-wrap: break-word;
}
.blog-post-single h2{
    text-transform: none;
}

.blog-post-single img{
    margin-bottom: 30px;
    border-radius: 20px;
    width: 100%;
}

.blog-post-single th,
.blog-post-single td,
.blog-post-single tr,
.blog-post-single tfoot,
.blog-post-single thead,
.blog-post-single tbody{
  border:inherit!important;
}

.blog-post-single table {
  height:auto!important;
  border-collapse: collapse!important;
}

.blog-post-single table th,
.blog-post-single table td {
  padding: 10px!important;
}

.blog-post-date{
    margin: 0;
    font-size: 16px;
    text-transform: none;
    color: #212529;
}
.link-blog{
    color: #222;
}
.link-blog:hover{
    color: #816bf4;
}
.blog-post .blog-tag{
    margin-block: 6px;
    font-size: 12px;
}

/* table of content */
.mce-toc{
    display: inline-block;
    border: 1px solid #654ddb;
    background-color: #ffffffb5;
    padding: 20px 0;
    margin-bottom: 46px;
    border-radius:8px;
    transition: box-shadow 0.3s ease-in-out;
}
.mce-toc:hover{
   box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.mce-toc h2 {
    text-align: center;
    font-size:1.7rem;
    margin-bottom: 10px;
    color: #484848!important;
}
.mce-toc ul {
    list-style-type: none;
    counter-reset: item;
    padding: 0 25px;
    margin-bottom: 0;
}
.mce-toc li a {
    color: #5d5d5d;
    font-size: 16px;
    word-spacing: 2px;
    font-weight:600;
}
.mce-toc li a:hover{
    color:#654ddb;
}
.mce-toc li{
    padding:6px 0px
}
.mce-toc li::before {
    content: counters(item, ".") ". ";
        counter-increment: item;
        font-size: 16px;
        word-spacing: 2px;
        font-weight:600;
        color: #5d5d5d;
    }
/* table of content end */

.custom-pagination .page-link{
    border-color: #816bf4;
    background-color: #fff;
    color: #816bf4;
}
.custom-pagination {
    margin-left: auto;
}
.custom-pagination .page-item.active .page-link, .custom-pagination .page-item:hover .page-link{
    background: #816bf4;
    color: #fff;
}
/*Blog*/

.breadcrumb-section{
    padding: 20px 16px;
}
.breadcrumb-section .breadcrumb-item{
    color: #fff;
}
.breadcrumb-section .breadcrumb-item a{
    color: #d4d4d4;
}
.breadcrumb-section .breadcrumb-item a:hover{
    color: #fff;
}
.breadcrumb-section  .breadcrumb-item+.breadcrumb-item::before{
    content: '';
    background-image: url('../images/icons/chevron-right.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 14px;
    margin-top: 3px;
}
.breadcrumb-section h1{
    color: #fff;
    margin-bottom: 20px;
}
.reviews-wrap{
    background: #fff;
    padding: 16px;
    border-radius: 24px;
    position: relative;
}
.reviews-wrap::before{
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    opacity: 0.2;
    background-image: url('../images/icons/reviews.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 36px;
    height: 36px;
    transform: rotate(-30deg);
}
.reviews-wrap .reviews{
    position: relative;
}
.reviews-wrap h3{
    font-size: 12px;
    color: #7a7a7a;
}
.review-stars{
    margin: 4px 0;
    background: url('../images/icons/rating-star.png') repeat-x;
    width: 0;
    height: 20px;
    background-size: 20px;
}
.review-stars.half-star{
    width: 10px;
}
.review-stars.one-star{
    width: 20px;
}
.review-stars.one-and-half-star{
    width: 30px;
}
.review-stars.two-star{
    width: 40px;
}
.review-stars.two-and-half-star{
    width: 50px;
}
.review-stars.three-star{
    width: 60px;
}
.review-stars.three-and-half-star{
    width: 70px;
}
.review-stars.four-star{
    width: 80px;
}
.review-stars.four-and-half-star{
    width: 90px;
}
.review-stars.five-star{
    width: 100px;
}
.review-form .stars {
    background: url('../images/icons/input-stars.png') repeat-x 0 0;
    opacity: 0.5;
    width: 150px;
}
.review-form .stars input[type="radio"] {
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
}
.review-form .stars input[type="radio"].star-5:checked ~ span {
    width: 100%;
}
.review-form .stars input[type="radio"].star-4:checked ~ span {
    width: 80%;
}
.review-form .stars input[type="radio"].star-3:checked ~ span {
    width: 60%;
}
.review-form .stars input[type="radio"].star-2:checked ~ span {
    width: 40%;
}
.review-form .stars input[type="radio"].star-1:checked ~ span {
    width: 20%;
}
.review-form .stars label {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0!important;
    padding: 0!important;
    text-indent: -999em;
    float: left;
    position: relative;
    z-index: 10;
    background: transparent!important;
    cursor: pointer;
}
.review-form .stars label:hover ~ span {
    background-position: 0 -60px;
}
.review-form .stars label.star-5:hover ~ span {
    width: 100% !important;
}
.review-form .stars label.star-4:hover ~ span {
    width: 80% !important;
}
.review-form .stars label.star-3:hover ~ span {
    width: 60% !important;
}
.review-form .stars label.star-2:hover ~ span {
    width: 40% !important;
}
.review-form .stars label.star-1:hover ~ span {
    width: 20% !important;
}
.review-form .stars span {
    display: block;
    width: 0;
    position: relative;
    top: 0;
    left: 0;
    height: 30px;
    background: url('../images/icons/input-stars.png') repeat-x 0 -60px;
    -webkit-transition: -webkit-width 0.5s;
    -o-transition: -o-width 0.5s;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}
/*Star Rating*/
.invalid-feedback{
    display: block;
}
.reddit-sort{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}
.reddit-sort .nav-link{
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reddit-sort img{
    width: 20px;
}
.reviews-wrap.reddit-review::before{
    background-image: url('../images/icons/reddit-review.png');
}
.reviews-wrap.faq-wrap::before{
    background-image: url('../images/icons/faq.png');
}
.reviews-wrap.faq-wrap.bg-transparent::before{
    content: none;
}
.posted-by{
    color: #525252;
    font-size: 12px;
}
.sort-icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 4px;
}
.icon-hot{
    background-image: url('../images/icons/hot.png');
}
.icon-new{
    background-image: url('../images/icons/new.png');
}
.icon-top{
    background-image: url('../images/icons/top.png');
}
.icon-rising{
    background-image: url('../images/icons/rising.png');
}
.reddit-sort .nav-link.active .sort-icon, .reddit-sort .nav-link:hover .sort-icon{
    background-position: 0 -20px;
}
.faq-search{
    padding: 16px;
    background: #fff;
    border-radius: inherit;
}
.search-icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/icons/search.png');
    margin-top: 5px;
}
.faq-search .btn:hover .search-icon{
    background-position: 0 -20px;
}
.faq-wrap h4{
    font-size: 12px;
    color: #7a7a7a;
}

.faq-review button{
    margin: 4px 12px;
    border: none;
    -webkit-transition: -webkit-transform 300ms linear;
    transition: -webkit-transform 300ms linear;
    -o-transition: transform 300ms linear;
    transition: transform 300ms linear;
    transition: transform 300ms linear, -webkit-transform 300ms linear;
    background: transparent;
}
.faq-review span{
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    display: block;
}
.faq-review button:hover, .faq-review button span.active{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.faq-review button:hover span.active{
    background-position-y: -40px;
}
.faq-review button:hover span{
    background-position-y: -40px;
}
.faq-review button .active{
    background-position-y: -80px;
}
.frown{
    background-image: url('../images/icons/frown.png');
}
.meh{
    background-image: url('../images/icons/meh.png');
}
.smile{
    background-image: url('../images/icons/smile.png');
}
.icon-app{
    width: 36px;
    height: 36px;
    display: block;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
}
.icon-ios{
    background-image: url('../images/icons/ios.png');
}
.icon-android{
    background-image: url('../images/icons/android.png');
}
.icon-apk{
    background-image: url('../images/icons/apk.webp');
}
.btn-app{
    transition: none;
}
.btn-app:hover .icon-app{
    background-position: 0 -36px;
}
.app-sm{
    font-size: 10px;
}
.app-lg{
    font-size: 20px;
}
@-webkit-keyframes swinging{
    0%{-webkit-transform: rotate(10deg);}
    50%{-webkit-transform: rotate(-5deg);}
    100%{-webkit-transform: rotate(10deg);}
}

@keyframes swinging{
    0%{transform: rotate(10deg);}
    50%{transform: rotate(-5deg);}
    100%{transform: rotate(10deg);}
}
.swingimage{
    max-width: 100px;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: swinging 3.5s ease-in-out forwards infinite;
    animation: swinging 3.5s ease-in-out forwards infinite;
    border-radius: 0;
    height: auto;
}
.reviews-wrap.not-found-wrap::before{
    background-image: url('../images/icons/search-not-found.png');
}
.glossary-nav li{
    margin: 12px 4px;
}
.glossary-nav li a{
    padding: 4px 8px;
    font-size: 22px;
    border: 1px solid #836cf8;
    background-color: #836cf8;
    color: #fff;
}
.glossary-nav li a:hover{
    background-color: #654ddb;
}
.glossary-char h2{
    background: #846aff;
    background: linear-gradient(to right,#ff00d4,#7d41ea,#0080ff);
    padding: 4px 12px;
    color: #fff;
    border-radius: 4px;
}
.glossary-item{
    padding: 12px;
    border: 1px solid #846aff;
    border-radius: 24px;
    height: 100%;
}
.glossary-wrap a{
    color: #212529;
}
.glossary-wrap a:hover .glossary-item{
    background: #654ddb;
    color: #fff;
}
.glossary-paging  .glossary-link{
    font-size: 20px;
    background: #836cf8;
    color: #fff;
    line-height: 32px;
    display: block;
    height: 32px;
    padding: 0 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.glossary-paging span{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}
.glossary-paging{
    position: relative;
}
.glossary-paging.glossary-prev .glossary-link{
    margin-left: 16px;
}
.glossary-paging.glossary-prev span{
    border-right: 16px solid #836cf8;
    left: 0;
}
.glossary-paging.glossary-next .glossary-link{
    margin-right: 16px;
}
.glossary-paging.glossary-next span{
    border-left: 16px solid #836cf8;
    right: 0;
}
.glossary-paging:hover a{
    background: #654ddb;
}
.glossary-paging.glossary-prev:hover span{
    border-right-color: #654ddb;
}
.glossary-paging.glossary-next:hover span{
    border-left-color: #654ddb;
}
.sidebar-item{
    padding: 12px;
    background: #fff;
    border-radius: 16px;
}
.sidebar .sidebar-item h2{
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid #222;
    display: inline-block;
}
.latest-post{
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #525252;
    cursor: pointer;
}
.latest-post:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.latest-post-img{
    border-radius: 50%;
}
.latest-post-img img{
    min-width: 120px;
    min-height: 120px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}
.latest-post-content h3{
    font-size: 16px;
}
.latest-post-details{
    color: #525252;
    font-size: 12px;
    display: flex;
    align-items: center;
}
.latest-post-details::before{
    content: '';
    margin-right: 4px;
    width: 12px;
    height: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
}
.latest-post-author::before{
    background-image: url('../images/icons/post-author.png');
}
.latest-post-published::before{
    background-image: url('../images/icons/post-published.png');
}
.post-category li{
    font-size: 16px;
    display: flex;
    align-items: center;
    border: 1px solid #654ddb;
    margin-block: 12px;
    margin-left: 8px;
    border-radius: 8px;
    position: relative;
    font-size: 16px;
    padding: 4px 12px 4px 16px;
}
.post-category li::before{
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    background-image: url('../images/icons/category-list.png');
}
.post-category li a{
    color: #816bf4;
    flex-grow: 1;
}
.post-category li:hover{
    background: #816bf4;
}
.post-category li:hover a{
    color: #fff;
}
.post-tags a{
    padding: 4px 10px;
    margin: 4px 4px 8px 0;
    font-size: 14px;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #816bf4;
    color: #816bf4;
}
.post-tags a:hover{
    background-color: #816bf4;
    color: #fff;
}
.captcha{
    height: 50px;
    object-fit: contain;
    border: 1px solid #816bf4;
    width: calc(100% - 46px);
}
.captcha-refresh{
    margin-left: -5px;
    height: 50px;
}
.captcha-refresh span{
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/refresh.png');
    background-repeat:  no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 8px;
}
.opt-group{
    color: #a7a7a7;
    padding: 6px 12px;
}
.custom-wrap{
    background: #221f59;
    border-radius: 10px;
    padding: 16px;
}
.custom-wrap a{
    color: #0dc9ef;
}
.custom-wrap a:hover{
    color: #027efe;
}
.list-steps li{
    position: relative;
    padding-block: 12px;
    display: flex;
    align-items: start;
    justify-content: start;
    z-index: 1;
}
.list-steps li::before{
    position: absolute;
    content: '';
    width: 2px;
    height: 100%;
    display: block;
    top: 0;
    bottom: 0;
    left: 20px;
    background: #846aff;
    z-index: -1;
}
.list-steps li:last-child::before{
    height: 12px;
}
.list-steps li:first-child{
    padding-top: 0;
}
.list-steps li:last-child{
    padding-bottom: 0;
}
.list-steps li span{
    background: #846aff;
    color: #fff;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: block;
    line-height: 40px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    margin-right: 12px;
}
.list-desc li{
    display: flex;
    justify-items: start;
    align-items: center;
    padding-block: 12px;
}
.list-desc li img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: block;
    background: #846aff;
    border-radius: 50%;
    padding: 10px;
    margin-right: 12px;
}
.list-desc li span{
    flex-grow: 1;
}
.list-desc li:first-child{
    padding-top: 0;
}
.list-desc li:last-child{
    padding-bottom: 0;
}
.exchange-image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/bg/exchange-bg.jpg');
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
}
.exchange-image img{
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}
.exchange-image p{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.form-wrap span.spinner, .address-wrap span.spinner{
    position: absolute;
    width: 24px;
    height: 24px;
    left: calc(50% + 40px);
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url('../images/icons/spinner.png');
    background-position: center;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    animation: spinner 1s infinite;
}
.address-wrap{
    position: relative;
}
.address-wrap span.spinner{
    left: 50%;
}
@keyframes spinner{
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.secureshift-app{
    max-width: 200px;
}
.app-bg{
    background-image: url('../images/bg/bg1.jpg');
}
.secureshift-qr{
    border-radius: 16px;
    border: 6px solid #000;
    max-width: 200px;
}
.coin-no-img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 50%;
    background: #846aff;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}
.israel-flag img{
    width: 24px;
}
.israel-flag p{
    font-size: 12px;
    color: #846aff;
}
.feature-wrap img{
    width: 64px;
    margin-bottom: 24px;
}
.feature-wrap span.badge{
    font-size: 12px;
    font-weight: 400;
    background-color: #846aff;
}
.about-feature-wrap img{
    width: 64px;
    margin-bottom: 24px;
}
.affiliate-bg{
    background-image: url('../images/bg/bg7.webp');
}
.advantage-wrap{
    padding: 12px;
    background-color: #fff;
    height: 100%;
    border-radius: 24px;
}
.advantage-wrap img{
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}
.btn-follow{
    height: 60px;
    line-height: 60px;
    padding-right: 16px;
    padding-left: 76px;
    padding-block: 0;
    border-radius: 100vw;
    color: #fff;
    position: relative;
}
.btn-follow::before{
    content: '';
    position: absolute;
    width: 53px;
    height: 53px;
    top: 3px;
    left: 3px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}
.btn-x{
    background-color: #333;
}
.btn-telegram{
    background-color: #51c5fd;
}
.btn-x::before{
    background-image: url('../images/icons/x.png');
}
.btn-telegram::before{
    background-image: url('../images/icons/telegram.png');
}
.btn-follow:hover{
    background-color: #0080ff !important;
    color: #fff !important;
}
.affiliate-home-bg{
    background-image: url('../images/bg/affiliate-home-bg.jpg');
    background-position: right;
}
.fire-burning{
    display: inline-block;
    position: relative;
}
.fire-burning::before, .fire-burning::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    border-radius: 50%;
    z-index: 1;
}
.fire-burning::before{
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.4);
}
.fire-burning::after{
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.fire-burning img{
    width: 24px;
    position: relative;
    z-index: 99;
    margin-top: -12px;
}
.fs-affiliate{
    font-size: 60px;
    font-weight: 300;
}
.affiliate-partner-bg{
    background: #0f0d38;
}
.affiliate-tab-wrap{
    background-color: #221f59;
    border-radius: 12px;
    padding: 16px;
}
.affiliate-tab-inner .tab-content{
    background: #0f0d38;
    border-radius: 12px;
}
.affiliate-tab-inner .tab-content .tab-pane{
    padding: 24px;
}
.affiliate-tab-wrap .nav-tabs{
    border: none;
}
.affiliate-tab-wrap .nav-link{
    color: #c6d5ea;
    background-color: transparent;
    cursor: pointer;
    border: none;
    padding-block: 16px;
}
.affiliate-tab-wrap .nav-link:hover{
    color: #fff;
}
.affiliate-tab-wrap #affiliate_api:checked ~ .nav .nav-item .nav-link.affiliate-api-label,
.affiliate-tab-wrap #affiliate_defi:checked ~ .nav .nav-item .nav-link.affiliate-defi-label,
.affiliate-tab-wrap #affiliate_referral:checked ~ .nav .nav-item .nav-link.affiliate-referral-label,
.affiliate-tab-wrap #affiliate_widget:checked ~ .nav .nav-item .nav-link.affiliate-widget-label,
.affiliate-tab-wrap #affiliate_banner:checked ~ .nav .nav-item .nav-link.affiliate-banner-label,
.affiliate-tab-wrap #affiliate_button:checked ~ .nav .nav-item .nav-link.affiliate-button-label{
    background: #0f0d38;
    color: #fff;
}
.affiliate-tab-wrap #affiliate_api:checked ~ .tab-content .affiliate-api,
.affiliate-tab-wrap #affiliate_defi:checked ~ .tab-content .affiliate-defi,
.affiliate-tab-wrap #affiliate_referral:checked ~ .tab-content .affiliate-referral,
.affiliate-tab-wrap #affiliate_widget:checked ~ .tab-content .affiliate-widget,
.affiliate-tab-wrap #affiliate_banner:checked ~ .tab-content .affiliate-banner,
.affiliate-tab-wrap #affiliate_button:checked ~ .tab-content .affiliate-button{
    display: block;
}
.affiliate-tab-wrap #affiliate_api:checked ~ .tab-content{
    border-top-left-radius: 0;
}
.affiliate-tab-wrap #affiliate_button:checked ~ .tab-content{
    border-top-right-radius: 0;
}
.affiliate-option{
    display: inline-flex;
    align-items: center;
    background-color: #221f59;
    padding-inline: 16px;
    border-radius: 12px;
    height: 54px;
}
.affiliate-option-img{
    width: 40px;
    height: 40px;
    background: #0f0d38;
    border-radius: 12px;
    padding: 8px;
}
.affiliate-option-img img{
    width: 20px;
    height: 20px;
}
.affiliate-features-img{
    background-color: #221f59;
    width: 80px;
    height: 80px;
    padding: 20px;
    border-radius: 8px;
}
.affiliate-features-img img{
    width: 40px;
    height: 40px;
}
.affiliate-cta-bg{
    background: linear-gradient(0deg, #f7f8fa 50%, #0f0d38 50%);
}
.affiliate-cta-wrap{
    background: linear-gradient(0deg, #f7f8fa 50%, #221f59 50%);
    padding: 24px;
    border-radius: 16px;
}
.affiliate-cta{
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
}
.affiliate-about-bg{
    background-color: #f7f8fa;
}
.affiliate-about{
    background-color: #fff;
    padding: 24px 24px 48px;
    border-radius: 16px;
    height: 100%;
    position: relative;
}
.affiliate-about img{
    position: absolute;
    left: 24px;
    bottom: 24px;
    height: 24px;
}
.affiliate-about p{
    color: #3f5878;
}
.affiliate-about:hover{
    background-color: #ecf1f7;
}
.affiliate-faq{
    border: 1px solid #ecf1f7;
    border-radius: 16px;
    overflow: hidden;
}
.affiliate-faq-question{
    padding: 24px;
    background-color: #fff;
    cursor: pointer;
}
.affiliate-faq-arrow{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ecf1f7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    background-image: url('../images/icons/chevron-down.webp');
    transition: transform 300ms ease;
}
.affiliate-faq-question:hover .affiliate-faq-arrow{
    background-color: #3f5878;
}
.affiliate-faq-checkbox:checked + .affiliate-faq-question .affiliate-faq-arrow{
    transform: rotate(180deg);
}
.affiliate-faq-answer{    
    padding: 24px;
}
.affiliate-faq-checkbox:not(:checked) ~ .affiliate-faq-answer{
    height: 0;
    overflow: hidden;
    padding: 0;
}
/*.login-signup-bg{
    background-color: #5356ad;
}*/
.login-signup-wrap{
    padding: 16px 32px;
    position: relative;
    color: #fff;
}
.login-signup-wrap::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: calc(100% - 120px);
    background: #999ede;
    display: block;
    border-radius: 12px;
    z-index: 0;
}
.login-signup-inner{
    position: relative;
    min-height: 500px;
}
.login-signup-form-wrap{
    position: absolute;
    top: 0;
    padding: 16px;
    background-color: #fff;
    min-height: 500px;
    width: 50%;
    transition: all 0.3s ease;
    border-radius: 12px;
}
.login-signup-action-wrap{
    position: relative;
    height: 100%;
}
.mh-500{
    min-height: 500px;
}
#login:not(:checked) ~ div .login-form{
    display: none;
}
#signup:not(:checked) ~ div .signup-form{
    display: none;
}
#login:not(:checked) ~ .login-signup-form-wrap{
    left: 50%;
}
#signup:not(:checked) ~ .login-signup-form-wrap{
    left: 0;
}
.badge-coming-soon{
    font-size: 8px;
    line-height: 8px;
    padding: 4px;
    border-radius: 100vw;
    background: #c6d5ea;
    color: #000;
    vertical-align: middle;
}
.select-status{
    border: 1px solid #846aff;
    height: 52px;
    padding: 0 10px;
    border-radius: 0;
    background-color: transparent;
}
.select-status:focus{
    box-shadow: none;
    border-color:#846aff;
}
.crypto-pairs-status a{
    display: none;
}
.crypto-pairs-status-text{
    line-height: 56px;
}
.crypto-exchange-button span{
    display: block;
    font-size: 12px;
    color: #a1a1a1;
}
.exchange-coin-sm img{
    width: 24px;
    height: 24px;
}
.exchange-coin-sm .coin-ticker, .exchange-coin-sm .coin-name{
    font-size: 16px;
}
.crypto-pair-wrap{
    padding: 8px;
}
.crypto-pair-wrap:hover{
    background: #d9d9d9;
}
.crypto-exchange-button{
    display: none;
}
.crypto-pair-wrap:hover .crypto-pairs-status-text{
    display: none;
}
.crypto-pair-wrap:hover .crypto-exchange-button{
    display: block;
}

/*--------------------------------------------------------------------------*/

#overview-section{
    background:#221f59d8;
    
}



.overview-container{
    color:white;
    padding:16px;
}



.overview-container  h1{
    font-size: 32px;
    font-weight: bold;
}

.overview-container h3{
    font-size: 24px;
    font-weight: bold;
}

.overview-container h4{
    font-size: 20px;
    font-weight: bold;
}


.overview-container p{
    font-size: 16px;
    line-height: 1.6;
    padding: 10px;
}


.overview-container hr{
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}


.overview-container .row{
    margin-bottom: 20px;
}

#whiteppr-btn,#officialweb-btn {
    margin: 10px;
    background: radial-gradient(circle, #0074e4, 0%, #0074e4c3 50%, #0074e4b1 100%); 
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 5px 2px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



#whiteppr-btn:hover, #officialweb-btn:hover {
    background: #1c2045; 
    background: radial-gradient(circle, #1c2045 100%, #1c2045 50%, #1c2045 0%); 
    box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
    color: #fff;
}



#whiteppr-btn img {
    width: 20%;
    vertical-align: middle; 
    margin-right: 10px; 
}

#officialweb-btn img{
    width: 17%;
    vertical-align: middle; 
    margin-right: 10px; 
}


/* ------------------------------------  market  -------------------------------------  */

.market-container {
  color:white;
  padding:16px;
}

.market-container .row{
    margin-bottom: 15px;
    padding-left: 35px;
}

.market-container .row .col-md-3{
    padding: 8px;
}

.market-container h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.market-container h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.market-container h6 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}


.market-container p {
    font-size: 16px;
    margin: 0;
}


.market-container hr {
    border-top: 1px solid #ced4da;
    margin-top: 20px;
    margin-bottom: 20px;
}

#btc-metrics-btn{
    background: radial-gradient(circle, #0074e4, 0%, #0074e4c3 50%, #0074e4b1 100%); 
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 10px 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#btc-metrics-btn:hover{
    background: #1c2045; 
    background: radial-gradient(circle, #1c2045 100%, #1c2045 50%, #1c2045 0%); 
    box-shadow: rgba(0, 0, 0, 0.65) 0px 5px 15px;
    color: #fff;
}


/* ------------------------------------  conversion  -------------------------------------  */


.conversion-container {
    color:white;
    padding:16px;
}



.conversion-container h1{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}


.conversion-container hr{
    border-top: 1px solid #ced4da;
    margin-top: 20px;
    margin-bottom: 20px;
}

.table-container {
    width: 80%;
    margin: 0 auto;
}

.table-container h2{
    text-align: center;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table thead th {
    background: radial-gradient(circle, #0074e4, 0%, #0074e4c3 50%, #0074e4b1 100%); 
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color:white;
    font-weight: bold;
    padding: 14px;
}

.table tbody tr td{
    background: rgba(255, 255, 255, 0.78);
    padding: 15px 10px;
}

/* ------------------------------------  About coin  -------------------------------------  */ 

.About-coin-container h2{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}


.About-coin-container hr{
    border-top: 1px solid #ced4da;
    margin-top: 20px;
    margin-bottom: 20px;
}

.About-coin-container .table-container {
    width: 80%;
    margin: 0 auto;
}

.About-coin-container .table-container h2{
    text-align: center;
}

.About-coin-container .table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.About-coin-container .table th,
.About-coin-container .table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.About-coin-container .table th{

    background: radial-gradient(circle, rgb(132, 106, 255), 0%, rgb(132, 106, 255) 50%, 
        rgb(132, 106, 255) 100%); 

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    font-weight: bold;
    color: white;
}

.About-coin-container .table tbody tr td{
    background: rgba(255, 255, 255, 0.78);
    padding: 15px 10px;
    font-weight: bold;
}


/*-------------------- coin calculator  ---------------------------------*/



.coin-cal-container {
    width: 80%;
    padding: 20px;
    color:#000000;
}

.coin-cal-container tbody,.coin-cal-container td,.coin-cal-container tfoot,.coin-cal-container th,.coin-cal-container thead,.coin-cal-container tr {
    border: inherit!important
}

.coin-cal-container table {
    height: auto!important;
    border-collapse: collapse!important;
}

.coin-cal-container table td,.coin-cal-container table th {
    padding: 10px!important;
}

.convert-coin {
    margin-top: 20px;
    width: 100%;
    padding: 5px 5px 5px 34px;
    color: white;
}


.coin-cal-container .row h1 {
 font-weight: bold;
 background: -webkit-linear-gradient(#eee, #0076e4ec);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.coin-cal-container .row h2 {
    margin-bottom: 20px;
    color:#fff;
}


.coin-cal-containe p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}


.coin-cal-containe p br {
    display: none;
}


.coin-cal-containe .row {
    margin-bottom: 20px;
}

#stepline{
    border: none;
    height: 5px;
    background-image: linear-gradient(to right, #e9de09, #da1b60, #8e2de2);
    margin: 20px 0;
}

.convert-coin {
    margin-top: 20px;
    width: 100%;
    padding: 5px 5px 5px 34px;
    color: white;
}

/*------------------------------------------ How to swap section ---------------------------------------*/

.swap-container{
    color: white;
    border-radius: 30px;
    background-color: #0f0d38ca;
}

.swap-container h2{
    margin:20px 10px;
}

.swap-container .row {
    display: flex;
    flex-wrap: wrap;
}


.steps-container .step {
    cursor: pointer;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    width: 100%; 
}

.steps-container .step:hover {
    background-color: #f0f0f0;
    color:#0f0d38;
}

.steps-container .step h5 {
    margin-bottom: 5px;
    font-weight: bold;
}

.steps-container .step p {
    margin-bottom: 0;
}


.steps-container .step.active {
    background-color: rgb(132, 106, 255);
    border-color: rgb(132, 106, 255);
}


.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}


@media (max-width: 768px) {
    .container.swap-container {
        padding: 20px;
    }

    .container.swap-container .row {
        flex-direction: column; 
    }

    .col-md-6 {
        width: 100%; 
    }

    .image-box {
        margin-top: 20px;
    }
}


@media (max-width: 576px) {
    .steps-container .step {
        width: 100%; 
    }
}

/*----------------------------------- how it wroks page ----------------------------------------*/


.wrk-container{
    color:white;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.477);
}
.wrk-container .row .col-md-12 h1{
    font-size: 50px;
    padding: 10px;
}
.step-row{
    padding: 50px;
    border-radius: 30px;
    background-color:#654ddbbe;
}

.step-img{
    width:600px;
}


.step-row .col-md-4 h2{
    font-size: 150px;
    text-align: center;
}

.step-row .col-md-8 h2{
    font-size: 40px;
    margin-top: 20px;
}

/*------------------------- weight page -----------------------------------*/

/* .test{
    width: 100%;
    border: 1px solid red;
} */

iframe{
    width: 100%;
    /*height: 85vh;*/
    /*margin: 40px auto;*/
}

.contact-captcha iframe {
    margin: 0;
}

.custom-contact-input.contact-captcha{
    overflow: hidden;
}

/* ------------------------------- Exchange tutorial new design -------------------------------- */

/* ------------------------------- Coin Details -------------------------------- */

/*======================= bitcoin======================= */
.coin-information .bitcoin{
    padding:30px;
    border-radius: 3vh;
}
.coin-information .bitcoin .bitcoin-media{
    display: flex;
    align-items: center;
}
.coin-information .bitcoin .bitcoin-media img{
    width:auto;
    height:100px;
    padding:15px;
    border:1px solid #615e5e ;
    margin: 15px;
}
.coin-information .bitcoin .bitcoin-media h2, .coin-information .bitcoin .bitcoin-media h1{
    color: #000000;
}
/*.coin-information .bitcoin .bitcoin-media h1{
    font-family:'FiraSans-Medium';
}*/
/*.coin-information .bitcoin .bitcoin-media h1 span{
    font-family:'FiraSans-Regular';
}*/
@media only screen and (max-width:480px){
    .coin-information .bitcoin .bitcoin-media h1 small span{
        font-size:1.3rem!important;
    }
    .coin-information .bitcoin .bitcoin-media h2{
        margin-top:14px!important;
    }
}
.coin-information .bitcoin .bitcoin-media h2{
    font-family:'FiraSans-Bold';
}
.coin-information .bitcoin .bitcoin-media h2 span{
    font-family:'FiraSans-Bold';
    cursor: pointer;
    margin-right: 15px;
}

/* explorer btn */
.coin-information .bitcoin .explorer-btn{
    display: flex;
}
.coin-information .bitcoin .explorer-btn .watchlist{
    margin: 0px 5px 10px 0px;
    border: 1px solid green;
    color: green;
}
.coin-information .bitcoin .explorer-btn .explorer{
    border: 1px solid #ccc;
}

/* Market Overview */
.coin-information .bitcoin .market-overview h2{
    color: #fff;
    font-family:'FiraSans-Regular';
    
}
.coin-information .bitcoin .market-overview p{
    color: #fff;
    font-family:'FiraSans-Regular';
    font-size: 1rem;
    text-align: justify;
}

/* bitcoin-card-details */
.coin-information .bitcoin .bitcoin-card-details .bitcoin-card-information .bitcoin-card{
    margin:11px 0px 11px 0px;
    padding:8px;
    
}
.coin-information .bitcoin .bitcoin-card-details .bitcoin-card-information .bitcoin-card{
    background-color: #c6d7ff13;
    color:#000000;
    border:1px solid #c1b8b8;
}  
.coin-information .bitcoin .bitcoin-card-details .bitcoin-card-information .bitcoin-card .card-title{
    font-family:'FiraSans-Regular';
}
.coin-information .bitcoin .bitcoin-card-details .bitcoin-card-information .bitcoin-card .card-text{
    font-family:'FiraSans-Medium';
}
.coin-information .up-coin{
    color:#02a104;
}
.coin-information .down-coin{
    color: #dd1d1d;
}
.coin-information .p-up{
    color:#02a104;
    font-size:1.9rem;
}
.coin-information  .p-down{
    color:#eb2424;
    font-size:1.9rem;
}


/* Bitcoin calculator */
.coin-information .bitcoin .bitcoin-calculator h2{
    color:#fff;
    font-family:'FiraSans-Regular';
}
.coin-information .bitcoin .bitcoin-calculator .bitcoin-calculator-main-card{
    background-color: #a99c9c9f;
}
.coin-information .bitcoin .bitcoin-calculator .bitcoin-calculator-main-card .ammount{
    color:#ffffff;
    font-family:'FiraSans-Bold';
    padding: 20px;
    
}
.coin-information .bitcoin .bitcoin-calculator .bitcoin-calculator-main-card .calculater-card .from_cryptoc{
  background-color: #ccc;
}
.coin-information .bitcoin .bitcoin-calculator .bitcoin-calculator-main-card .more-cryptocurrencies{
    background-color: #eba40b;
}
.coin-information .bitcoin .bitcoin-calculator .bitcoin-calculator-main-card .more-cryptocurrencies p{
    font-family:'FiraSans-Light';
    font-size: 1.4rem;
    padding:10px;
}
/* Bitcoin  Data Price Chart */
.bitcoin-data-price-chart h2{
    color:#ffffff;
    font-family:'FiraSans-Regular';

}
.bitcoin-data-price-chart .data-price-chart-date input{
    background-color: #dbd5d5;
}
.bitcoin-data-price-chart .price-chart1 img{
    width: 100%;
}
.bitcoin-data-price-chart .price-chart2 img{
    width: 100%;
}

@media only screen and (max-width:770px){
    .bitcoin-data-price-chart .data-price-chart-date .start-date-input{
        width:100%!important;
        margin:5px 0px 5px 0px!important;
    }
    .bitcoin-data-price-chart .data-price-chart-date .end-date-input{
        width:100%!important;
        margin:5px 0px 5px 0px!important;
    }
    
    .bitcoin-data-price-chart .data-price-chart-date .zoom-card{
        width:100%!important;
        margin:10px 0px 0px 0px!important;
    }
    
}

/* end bitcoin */

body,html{
    overflow-x:hidden;
}

@media only screen and (max-width:770px){
    .coin-information .Ethereum .Ethereum-data-price-chart .data-price-chart-date .start-date-input{
        width:100%!important;
        margin:5px 0px 5px 0px!important;
    }
    .coin-information .Ethereum .Ethereum-data-price-chart .data-price-chart-date .end-date-input{
        width:100%!important;
        margin:5px 0px 5px 0px!important;
    }
    
    .coin-information .Ethereum .Ethereum-data-price-chart .data-price-chart-date .zoom-card{
        width:100%!important;
        margin:10px 0px 0px 0px!important;
    }
    
}

/*=============================================== Top Gainer Coins ============================================ */
.top-gainer-coins-header-title{
    background-image: url('../images/bg4.jpg');
    background-size:100%;
    padding: 20px 16px;
}
.top-gainer-coins-header-title .heading{
 color: #fff;
 margin-bottom: 20px;
}
.top-gainer-coins-header-title .title-link ol li a{
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    background-image: url(../images/chevron-right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 14px;
    margin-top: 3px;
}

.gainer-coin-data-table .data-table .table{
    border: 1px solid #ccc;
}
.gainer-coin-data-table .data-table .table thead tr th{
    text-align:left;
    padding:20px;
}

.gainer-coin-data-table .data-table .table tbody tr td img{
 height:30px;
}
.gainer-coin-data-table .data-table .table tbody tr td{
    padding:20px;
    text-align:left;
    font-size:1.1rem;
}


.gainer-coin-data-table .data-table .table tbody tr td a{
    text-decoration: none;
    color:black;
}


/*=============================================== Top loser Coins ============================================ */
.top-loser-coins-header-title{
    background-image: url('../images/bg4.jpg');
    background-size:100%;
    padding: 20px 16px;
}
.top-loser-coins-header-title .heading{
 color: #fff;
 margin-bottom: 20px;
}
.top-loser-coins-header-title .title-link ol li a{
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    background-image: url(../images/chevron-right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 14px;
    margin-top: 3px;
}

.loser-coin-data-table .data-table .table{
    border: 1px solid #ccc;
}
.loser-coin-data-table .data-table .table thead tr th{
    text-align:left;
    padding:20px;
}

.loser-coin-data-table .data-table .table tbody tr td img{
 height:30px;
}
.loser-coin-data-table .data-table .table tbody tr td{
    padding:20px;
    text-align:left;
    font-size:1.1rem;
}

.loser-coin-data-table .data-table .table tbody tr td a{
    text-decoration: none;
    color:black;
}



.table tbody tr td .fa-regular, .table tbody tr td .fa-star{
    cursor: pointer;
    color: rgb(212, 137, 7);
}
.table tbody tr td .fa-regular, .table tbody tr td .fa-star:hover{
    color: blue;
}


/*=============================================== Cryptocurrency Calculator ============================================ */
.cryptocurrency-calculator-header-title{
    background-image: url('../images/bg4.jpg');
    background-size:100%;
    padding: 20px 16px;
}
.cryptocurrency-calculator-header-title .heading{
 color: #fff;
 margin-bottom: 20px;
}
.cryptocurrency-calculator-header-title .title-link ol li a{
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    background-image: url(../images/chevron-right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 14px;
    margin-top: 3px;
}

/* calculator */

.coin-information .bitcoin .bitcoin-calculator .bitcoin-calculator-main-card .ammount{
    color:#ffffff;
    font-family:'';
    padding: 20px;
    
}
.cryptocurrency-calculator .select2-selection--single {
    height: 40px;
    display: flex;
    align-items: center;
}

/* ticker */
.ticker-bottom {
    z-index:200;
    position: fixed;
    bottom:0px;
    width: 100%;
    overflow: hidden;
    height: 2.5rem;
    background-color: #1d023e;
    padding-left: 100%;
    box-sizing: content-box;
}

/* Ticker styling */
.ticker-bottom .ticker {
    display: inline-block;
    height: 2.5rem;
    line-height: 2.35rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    animation: ticker 75s linear infinite; 
}
.ticker:hover {
    animation-play-state: paused;
}

/* Define ticker animation */
@keyframes ticker {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Styling for ticker items */
.ticker-bottom .ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    color: #fff;
}
/* Styling for ticker items */
.ticker-bottom .ticker-item span a{
    text-decoration:none;
    color: #fff;
    font-size:1.2rem;
    font-weight: 600;
}

/* Styling for ticker image */
.ticker-bottom .ticker-item img {
    height: 20px; /* Adjust as needed */
    margin-right: 10px;
}

/* Styling for ticker text */
.ticker-bottom .ticker-item span, .ticker-item .cmlp-price {
    margin-right: 10px;
}

/* ============================================= Christmas image ============================================== */

/* Christmas  Container - Fixed at the bottom */
.christmas-container {
    position: fixed; 
    bottom:10px; 
    left: 0;
    width: 100%; 
    background-color: transparent; 
}

/* Land Container */
.land-container {
    position: relative; 
    display: block; 
    text-align: center; 
}

/* Land Image */
.land-img {
    width: 100%; 
    height: auto;
}

/* Santa and Snowman Images */
.santa-img, .snowman-img, .snow-tree{
    position: absolute;
    bottom:20%; 
    pointer-events: none; 
}

/* Santa Image - Left Side */
.santa-img {
    right:11%;
    height:auto;
    width:12%; 
}

/* Snowtree Image - left Side */
.snow-tree {
    right:0%; 
    height:auto;
    width:13%;
}

/* Snowman Image - Right Side */
.snowman-img {
    left: 10%; 
    height:auto;
    width:10%;
}

/* slow flake */
.slow-flake {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: white; 
    pointer-events: none; 
}

/* ==============================================  Why SecureShift =========================================== */
.why-secureshift .secureshift-details .why-secureshift-heading{
    font-size:2.5rem;
    color: #fff;
}
.why-secureshift .secureshift-details .information .information-card{
    border-radius:5vh;
    padding:40px;
    background-color: #f5faff;
    border:none;
    margin:12px 0px 12px 0px;
}

.why-secureshift .secureshift-details .information-card .information-img img{
    height:190px;
    width: auto;
    padding:5px;
}
@media only screen and (max-width:1000px){
    .why-secureshift .secureshift-details .information-card .information-img img{
        width: 100%!important;
        height: auto!important;
    }
}
.why-secureshift .secureshift-details .information-card .about-information span{
    font-weight:800;
    color: #555860;
}
.why-secureshift .secureshift-details .information-card .about-information h4{
    padding-top:40px;
    font-size: 1.6rem;
}

.why-secureshift .secureshift-details .information-card .about-information p{
    font-size: 1rem;
    padding-top: 5px;
    color: #5a5858;
}

/* ============================================== img slider ========================================== */
.img-slider {
    position: relative;
    overflow: hidden;
}

.img-slider .slider-container{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}


.img-slider .slide-wrap{
    animation: slide-wrap 18s linear infinite; 
    max-width:100%; /* Adjust width based on the number of images */ 
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.img-slider .slide-wrap:hover{
    animation-play-state: paused;
}

@keyframes slide-wrap {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.img-slider .slide img{
    height: auto;
    max-width:80px; /* Adjust the width of the logo */
    margin-right: 15px;
}

.img-slider .slide {
    padding: 10px 5px;
}

/* ================================================ publications ========================================= */
.publications{
    background-color: #ffffff;
}

.publications .publications-heading .top-heading{
    color: #78a0c7;
    font-weight: 600;
    font-size: 14px;
    font-family: 'FiraSans-Bold';
    letter-spacing: 0.5px;
}

.publications .publications-heading .heading{
    font-size:2.7rem;
    font-family: 'FiraSans-Regular';
    
}
.publications .publications-details .full-card-link{
    display: block;
    text-decoration: none; 
    color: inherit;   
}

.publications .publications-details .publications-card{
    cursor: pointer;
    background-color: #f7fafc;
    border: none;
    border-radius: 5vh;
    padding:25px 20px 25px 20px;
    transition: background-color 0.8s;
}
.publications .publications-details .publications-card:hover{
    background-color: #eaf2f8;
    transition: background-color 0.8s;
}

.publications .publications-details .publications-card .card-footer{
    background-color: #ffffff00;
    border: none;
    padding: 10px 20px 10px 20px;
}
.publications .publications-details .publications-card .card-footer img{
    width:40%;
    height: auto;
}
.publications .publications-details .publications-card .card-title{
    font-family: 'FiraSans-Medium';
    padding:0px 0px 8px 0px;
    font-size:1.1rem;
}

/* how its works */
.how-it-works {
    background-color: #ffff;
}
.how-it-works .step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works .step-number {
    font-size: 1.5rem;
    font-weight: 700;
}
.how-it-works .bg-indigo {
    background-color: #e0e7ff;
}
.how-it-works .text-indigo {
    color: #4f46e5; 
}
.how-it-works .bg-green {
    background-color: #dcfce7;
}
.how-it-works .text-green {
    color: #16a34a; 
}
.how-it-works .bg-purple {
    background-color: #f3e8ff; 
}
.how-it-works .text-purple {
    color: #9333ea; 
}

/* ====================================== pages CryptoCurrency in country ===================================== */
.advantages-wrap{
    margin: 10px 0px 16px 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}

.advantages-wrap .online-btn{
    flex-wrap: wrap;
    justify-content: flex-start;
}
.advantages-wrap .online-btn .item{
    margin:0px 8px 0px 8px;
    list-style:none;

}
.advantages-wrap .online-btn .item h6{
 color: #fff;
 padding:10px;
}
@media only screen and (max-width:600px){
    .advantages-wrap .online-btn .item h6{
        padding: 5px!important;
    }
}

/* data list */
@media (max-width: 767px) {
    .data-nav{
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
    }
    .carousel-content{
     text-align: justify;

 }
}

.data-list .data-nav li {
    cursor: pointer;
    padding: 10px;
    margin-bottom: 5px;
    list-style-type: none;
    font-family:'FiraSans-Regular';
    font-size:1.6rem;
    color: #979292;
    margin-top:10px;
}

.data-nav ul li:hover,
.data-nav ul li.active {
    color: #fff;
}
.data-list .carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.data-list .carousel-item {
    display: none;
}
.data-list .carousel-item.active {
    display: block;
}
.data-list .carousel-item h3{
    font-size: 2.3rem;
    font-family: 'FiraSans-Regular';
    color:#ffffff;
    font-weight:600;
    line-height:48px;
}
.data-list .carousel-item h3 span{
    color:#846aff;
}

/* FAQ */
.faq-cryptocurrency h2{
    color: #fff;
    font-size:3rem;
    font-weight: 600;
}
.faq-cryptocurrency .faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #7d7b7b;
}
.faq-cryptocurrency .faq-question {
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:1.6rem;
    color:#fff;
    font-family: 'FiraSans-Regular';
}
.faq-cryptocurrency .faq-question.active{
    color:#846aff;
}

.faq-cryptocurrency .faq-answer {
    display: none;
    padding: 15px;
    color:#fff;
    font-family: 'FiraSans-Regular';
}

.faq-cryptocurrency .faq-question.active + .faq-cryptocurrency.faq-answer {
    display: block;
}

.faq-cryptocurrency .fa-chevron-down{
    color: #d6d0d0;
    font-size:1rem;
    transition: 0.3s;
}

.faq-cryptocurrency .faq-question.active .fa-chevron-down{
    transform: rotate(180deg);
    transition: 0.3s;
}

/* about-exchange-cryptocurrency */
.about-exchange-cryptocurrency .about-exchange-cryptocurrency-details .exchange-cryptocurrency-advantages h2{
    color:#fff;
    font-family:'FiraSans-Bold';
    font-size:2.4rem; 
    padding-top:25px;
}
.about-exchange-cryptocurrency .about-exchange-cryptocurrency-details .exchange-cryptocurrency-advantages p{
    color:#e8e2e2;
    font-family:'FiraSans-Regular';
    padding-top: 10px;
    font-size:17px;
}
.about-exchange-cryptocurrency .about-exchange-cryptocurrency-details .exchange-cryptocurrency-advantages ul li{
    color:#e8e2e2;
    font-family:'FiraSans-Regular';
    padding: 10px 0px 10px 0px;
    font-size: 17px;
    list-style: none;
}

.about-exchange-cryptocurrency .about-exchange-cryptocurrency-details ul li:before{
    content: '\2713\0020';
    color: #36ff39;
    font-size:1.3rem;
    font-weight:400;
}

/* Trustpilot */
.trustpilot .trustpilot-heading h2{
    color: #fff;
    font-family:'FiraSans-Bold';
    font-size: 2.4rem;
}
.trustpilot .trustpilot-heading .heading h2{
    color: #fff;
}
.trustpilot .trustpilot-information .trustpilot-reviews{
    background-color: #fffbfb2c;
    padding:20px;
    color: #fff;
}
.trustpilot .heading-img img{
 width:200px;
 background-color:#725ce235;
 padding:10px 20px 10px 20px;
 border-radius: 2vh;
 margin: 5px;
}

.trustpilot-information .trustpilot-reviews .trustpilot-stars.five-star{
    width: 100px;
}

.trustpilot-information .trustpilot-reviews .trustpilot-stars{
    margin: 4px 0;
    background: url(../images/announcement.png) repeat-x;
    width:0;
    height: 20px;
    background-size: 20px;
    border-radius: 2px;
}
.trustpilot-information .trustpilot-reviews h3{
    font-size: 1.2rem;
    font-family:'FiraSans-Medium';

}
.trustpilot-information .trustpilot-reviews p{
    font-size:15px;
}


/* =============================================== Coin page ========================================== */
.currencies-page-heading{
    font-size:3.2rem;
}
.currencies-page-description{
    font-size: 1.1rem;
    font-size:'FiraSans-Medium';
}
.btn-more{
    border: 1px solid #fff;
    color: #fff;
    padding:10px 30px;
}
.btn-more:hover{
    border: 1px solid #fff;
    color: #fff;
}
@media only screen and (max-width:991px){
    .about-currencies-page{
        text-align: center!important;
    }
}

.currencies-exchange-chart .currencies-chart{
    width:100%;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.currencies-exchange-chart .currencies-chart-heading{
    color: #fff;
    font-family:'FiraSans-Medium';
    font-size:1.7rem;
}
.currencies-exchange-chart .currencies-chart img{
 width:100%;
 height:auto;
}

/* currencies-exchange-market */
.currencies-exchange-market .currencies-exchange-market-heading{
    color: #fff;
    font-family:'FiraSans-Medium';
}

.currencies-exchange-market .currencies-exchange-market-description{
    color:#c1bbbb;
    font-family:'FiraSans-Medium';
}

.currencies-exchange-market .currencies-market-price .currencies-market-price-card{
    padding: 20px;
    background-color: #ffffff17;
    cursor: pointer;
    transition: 0.4s;
}
.currencies-exchange-market .currencies-market-price .currencies-market-price-card:hover{
    -webkit-box-shadow: 0px 1px 14px 1px rgba(148,148,148,1);
    -moz-box-shadow: 0px 1px 14px 1px rgba(148,148,148,1);
    box-shadow: 0px 1px 14px 1px rgba(148,148,148,1);
    transition: 0.4s;
}

.currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price-text .price-heading{
    color:#d4d1d1;
    font-family:'FiraSans-Regular';
    font-size: 1.2rem;
}
.currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price-text .price-article{
    color:#ffffff;
    font-size:1.4em;
    font-family:'FiraSans-Medium';
}

.currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price-text{
    padding: 10px;
}
.currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price-img img{ 
    width:auto;
    height:80px;
    padding: 10px;
}
.currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price{
    flex-wrap: wrap;
}

@media only screen and (max-width:991px){
    .currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price-img img{ 
        width:auto!important;
        height:80px!important;
        padding:10px!important;
    }
    .currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price-text{
        padding:5px!important;
    }

    .currencies-exchange-market .currencies-market-price .currencies-market-price-card{
      width:100%!important;
  }
  .currencies-exchange-market .currencies-market-price .currencies-market-price-card .market-price{
    align-items: center!important;
    text-align: center!important;
    flex-direction: column!important;
}
}

/* about-currencies */

.about-currencies{
    color: #fff;
    font-family:'FiraSans-Medium';
}

.about-currencies p{
    color: #eaeaea;
    font-size:1rem;
    padding-top:5px;
    font-family:'FiraSans-Regular';
}

.about-currencies ul li{
    color: #eaeaea;
    font-size: 1rem;
    font-family: 'FiraSans-Regular';
}

.about-currencies ol li{
    color: #eaeaea;
    font-size: 1rem;
    font-family: 'FiraSans-Regular';
}

.about-currencies a{
    color:#846aff;
} 


/* divider */

.section-divider{
  width: 100%;
  height:1.6px;
}

.divider-gradient{
 background: linear-gradient(90deg, transparent 0%, #a855f7 45%, #3b82f6 55%, transparent 100%);
}


/* currencies-buy */
.currencies-buy .currencies-buy-card{
    background-color: #13121224;
    border: 1px solid #716b6b;
}
.currencies-buy .currencies-buy-card .card-header{
    display: flex;
    justify-content: space-between;
}
.currencies-buy .currencies-buy-card .card-header h3{
    color: #fbfbfb;
    font-family:'FiraSans-Bold';
}
.currencies-buy .currencies-buy-card .card-body p{
    font-family:'FiraSans-Regular';
    font-size: 1rem;
    color: #e1dcdc;
}

/* currencies-table */
.currencies-table .currencies-table-heading{
    color: #ffffff;
}
.currencies-table .currencies-data-table  .dt-layout-row .dt-search label{
    color:#fff;
}
.currencies-table .currencies-data-table  .dt-layout-row .dt-search .dt-input{
    color:#fff;
}
.currencies-table .currencies-data-table .dt-length label{
    color: #fff;
    padding-left:15px;

}
.currencies-table .currencies-data-table select{
    color:#000000;
    background-color: #ffffff;
}
.currencies-table .currencies-data-table input{
    color: #fff;
}
.currencies-table .currencies-data-table .dt-info{
    color: #fff;
}

.currencies-table .currencies-data-table .dt-paging{
   color: #fff;
}

.currencies-table .currencies-data-table table td{
    text-align: center;
    padding: 16px 0px 16px 0px;
}
.currencies-table .currencies-data-table table tr td img{
    height:25px;
    width: auto;
}
.currencies-table .currencies-data-table table td a{
    color:Black; 
}

.currencies-table .currencies-data-table table td{
    background-color: #ffffff;
}

.currencies-table .currencies-data-table table th{
    text-align: center;
}
.currencies-table .currencies-data-table table tr{
    background-color: #fff;
}
.currencies-table .currencies-data-table table td .exchange-icon{
    color: #29ab50;
    font-size: 1.7rem;
    cursor: pointer;
}

.currencies-table .currencies-data-table table tr:hover .exchange-icon {
    display: none;
}

.currencies-table .currencies-data-table table tr td .exchange-button{
    background-color: #0eaa7b;
    margin:-4px 0px -5px 0px ;
    color: #fff;
    padding-left:40px;
    padding-right:40px;
    display: none;
}
.currencies-table .currencies-data-table table tr:hover .exchange-button{
    display: inline-block;
}

/* why-exchange */
.why-exchange .why-change-heading{
    color: #fff;
}
.why-exchange .why-change-list li{
    color: #fff;
    list-style: none;
    padding:8px;
}
.why-exchange .why-change-list li:before{
    content:'\2713\0020';
    color: #4df04f;
}


/* Best Currencies Wallet  */
.currencies-wallets .currencies-wallets-heading{
    color: #fff;
}

.currencies-wallets .currencies-wallets-card{
    background-color: #ffffff38;
    padding: 15px;
    justify-content: center;
    align-items: center;
}

.currencies-wallets .currencies-wallets-card img{
    height:80px;
    width:auto;
    padding:10px;
}
.currencies-wallets .currencies-wallets-card .wallet-heading{
    color:#fff;
    padding-top: 4px;
}
.currencies-wallets .currencies-wallets-card .wallet-heading:hover{
    color:#846AFF;
}

/* currencies Faq */
.currencies-faq .faq-item {
    margin-bottom: 15px;
}
.currencies-faq .currencies-faq-heading{
    color: #fff;
}

.currencies-faq .faq-item {
    margin-bottom: 15px;
}

.currencies-faq .faq-question{
    padding: 15px;
    background-color: #dbebff4d;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    transition: background-color 0.3s ease;
    position: relative;
    font-size:1.2rem;
    font-family:'FiraSans-Medium';
}


.currencies-faq .faq-answer {
    padding: 15px;
    background-color: #ffffff23;
    display: none;
    border-left: 5px solid #007bff;
    color: #ece9e9;
    font-family:'FiraSans-Regular';
}

.currencies-faq .faq-answer.show {
    display: block;
}

.currencies-faq .faq-question .fa-chevron-down{
    transition: 0.3s;  
}
.currencies-faq .faq-question.active .fa-chevron-down{
    transform: rotate(180deg);
    transition: 0.3s;
}
.currencies-faq .faq-question.active + .currencies-faq .faq-answer {
    display: block;
}

/* currencies-News */

.currencies-news .currencies-news-heading{
    color: #fff;
}
.currencies-news .currencies-news-card .currencies-news-img img{
    width:300px;
    height: auto;
}
.currencies-news .currencies-news-card{
    padding: 15px;
    border-bottom: 1px solid #ccc;
}
@media only screen and (max-width:991px){
    .currencies-news .currencies-news-card .currencies-news-details{
        padding-top:20px!important;
    }
    .currencies-news .currencies-news-card{
        flex-wrap: wrap!important;

    }
    .currencies-news .currencies-news-card .currencies-news-img img{
        width: 100%!important;
        padding:10px!important;
    }
}

.currencies-news .currencies-news-card .currencies-news-details .news-heading{
    color: #fff;
}
.currencies-news .currencies-news-card .currencies-news-details .news-heading a{
  text-decoration: none;
  color: #fff;
}
.currencies-news .currencies-news-card .currencies-news-details .news-heading a:hover{
    color: #846AFF;
}
.currencies-news .currencies-news-card .currencies-news-details .news-description{
    color: #e1dcdc;

}
.currencies-news .currencies-news-card .currencies-news-details .news-date{
    color: #ececec;
}
/* Main widget css */
.main-widget{
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;  /* no scroll*/
}

.widget-exchange-card {
    background-color: #ebebeb;
    padding: 24px;
    position: relative;
    border-radius: 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.widget-exchange-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -10px;
    transition: all 0.4s;
    border-radius: inherit;
    background: linear-gradient(to left, #ff00d4, #7d41ea, #0080ff);
}

.widget-exchange-card .widget-img .logo{
    height:40px;
    width: auto;
}


.widget-exchange-card .widget-advantages .widget-advantages-list{
    margin-top: 30px;
}

.widget-exchange-card .widget-advantages .widget-advantages-list .widget-advantages-item{
    display: flex;
    align-items: center;
}

.widget-exchange-card .widget-advantages .widget-advantages-list .widget-advantages-item .advantages-icon{
    height:40px;
    width: auto;
    margin-right: 20px;
    padding:10px;
    box-shadow: rgba(1, 53, 92, 0.578) 0px 1px 4px;
    border-radius:6px;

}

.widget-exchange-card .widget-advantages .widget-advantages-list .widget-advantages-item .item-title{
    font-size: 16px;
    font-weight: 600;
    color: #484848;
}

.warning-marquee {
    background-color: #cf1b1b;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding:8px 0px 4px 0px;
    text-align: center;
}



/* ============================================== News =================================== */
.news-list .news-card{
    padding:20px;
    border-radius: 15px;
    margin-bottom: 20px;
    min-height:310px;
}

.news-list .news-card .news-date{
    font-size: 1rem;
    color: #727272;
}

.news-list .news-card .news-title{
    font-size: 1.4rem;
    margin-top:4px;
}

.news-list .news-card .news-title a{
    color: #000000!important;
}

.news-list .news-card .news-title a:hover{
    color: #846aff!important;
}

.news-list .news-card .news-description{
    color: #606060;
}

.news-list .news-card .badge{
    border-radius: 0px!important;
}

.news-list .news-card .badge:nth-child(6n+1) { background-color: #be2626; } 
.news-list .news-card .badge:nth-child(6n+2) { background-color: #3498db; }
.news-list .news-card .badge:nth-child(6n+3) { background-color: #b98700;}
.news-list .news-card .badge:nth-child(6n+4) { background-color: #2ecc71; } 
.news-list .news-card .badge:nth-child(6n+5) { background-color: #7e379a; } 
.news-list .news-card .badge:nth-child(6n)   { background-color: #d16506; } 

/* ================================================ single news ========================================== */
.single-news .news-info .badge{
    border-radius:0!important;
}

.single-news .news-info .badge:nth-child(6n+1) { background-color: #be2626; } 
.single-news .news-info .badge:nth-child(6n+2) { background-color: #3498db; }
.single-news .news-info .badge:nth-child(6n+3) { background-color: #b98700;}
.single-news .news-info .badge:nth-child(6n+4) { background-color: #2ecc71; } 
.single-news .news-info .badge:nth-child(6n+5) { background-color: #7e379a; } 
.single-news .news-info .badge:nth-child(6n)   { background-color: #d16506; } 

.single-news .single-news-card{
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.single-news .single-news-card .card-item-list{
    padding: 0!important;
    list-style: none!important;
}

.single-news .single-news-card .card-item-list .card-item{
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
}
.single-news .single-news-card .card-item-list .card-item:last-child{
    border-bottom: none!important;
}
.single-news .single-news-card .card-item-list .card-item .item-time{
    font-size: 15px;
    font-style: italic;
}

.single-news .single-news-card .card-item-list .card-item .item-heading{
    margin-bottom: 0!important;
    margin-top: 4px;
    font-size:1.1rem;
}

.single-news .single-news-card .card-item-list .card-item .item-heading a{
    color: #000;
}

.single-news .single-news-card .card-item-list .card-item .item-heading a:hover{
    color: #846aff;
}

.single-news .single-news-card .topics-list{
    display: flex;
    flex-wrap: wrap;
}

.single-news .single-news-card .topics-list .tranding-topic{
    margin-bottom:8px;
    margin-right:8px;
    font-size:1.1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: #000000;
    background-color:#ece8ff;
    border-radius: 20px;
    transition:all 0.3s ease-in-out;
}

.single-news .single-news-card .topics-list .tranding-topic:hover{
    background-color:#846aff;
    color: #fff;
    cursor: pointer;
}

.single-news .news-info p:has(img){
 float: none!important;
 display: block!important; 
 margin:0!important;
 width:100%!important;
}

.single-news .news-info img{
    width:100%!important;
    margin:10px auto 20px auto!important;
}


/* ============================================= News Sidebar ============================================ */
.news-sidebar-card .sidebar-card{
    background-color: #f8f9fa;
    border-radius:15px;
}

.news-sidebar-card .sidebar-card .card-heading{
    font-size: 1.4rem;
    padding:20px 20px;
    margin-bottom: 0;
}

.news-sidebar-card .sidebar-card .card-body{
    max-height: 500px;
    overflow-y: auto;
    padding:10px 20px 20px 20px;
}

.news-sidebar-card .sidebar-card .card-item-list{
    padding: 0;
    list-style: none;
}

.news-sidebar-card .sidebar-card .card-item-list .card-item{
    padding:8px 0;
    border-bottom: 1px solid #ccc;
}

.news-sidebar-card .sidebar-card .card-item-list .card-item:last-child{
    border-bottom: none;
}

.news-sidebar-card .sidebar-card .card-item-list .card-item .item-time{
    font-size: 14px;
    color: #838383;
    font-style: italic;
}

.news-sidebar-card .sidebar-card .card-item-list .card-item .item-heading{
    margin-top:4px;
    font-size: 1rem;
}

.news-sidebar-card .sidebar-card .card-item-list .card-item .item-heading a{
    color: #000;
}

.news-sidebar-card .sidebar-card .card-item-list .card-item .item-heading a:hover{
 color: #846aff!important;
}

.news-sidebar-card .sidebar-card .topics-list{
    display: flex;
    flex-wrap: wrap;
}

.news-sidebar-card .sidebar-card .topics-list .tranding-topic{
    margin-bottom:8px;
    margin-right:6px;
    font-size:1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: #000000;
    background-color:#ece8ff;
    border-radius: 20px;
    transition:all 0.3s ease-in-out;
}

.news-sidebar-card .sidebar-card .topics-list .tranding-topic:hover{
    background-color:#846aff;
    color: #fff;
    cursor: pointer;
}


/* news pagination */
.news-list .custom-pagination{
    margin: auto!important;
}

.news-list .custom-pagination .page-item.active .page-link, .news-list .custom-pagination .page-item:hover .page-link{
    background: #816bf4;
    color: #fff!important;
}

.news-list .custom-pagination .page-item .page-link{
    border-radius: 6px!important;
    margin:0px 4px;
    color:#626262;
}

.news-list .custom-pagination .page-link{
    border: none!important;
    background-color: #fff;
    color: #816bf4;
}


/* =============================================== Stats Section ========================================== */

.stats-section .stat-card{
    background-color: #e7f7ff38;
    border-radius: 10px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.stats-section .stat-card .stat-value{
    font-weight:600;
    color:#846aff;
}

.stats-section .stat-card .stat-label{
    color: #000000;
}

.stats-section .stat-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stats-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}



/* ======================================== fast exchange ============================================ */
.fast-exchange-section .feature-card{
    background-color: #04040434;
}

.fast-exchange-section .multi-item-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-track{
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 600%;
}

.fast-exchange-section .carousel-item-custom {
    flex: 0 0 16.666%; 
    padding: 0 10px;
    box-sizing: border-box;
}

.fast-exchange-section .carousel-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fast-exchange-section .carousel-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fast-exchange-section .carousel-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.fast-exchange-section .carousel-icon img{
 height:60px;
 margin-bottom:10px;
}

.fast-exchange-section .carousel-container {
    position: relative;
}

.fast-exchange-section input[type="radio"] {
    display: none;
}

.fast-exchange-section #slide1:checked ~ .carousel-track {
    transform: translateX(0%);
}

.fast-exchange-section #slide2:checked ~ .carousel-track {
    transform: translateX(-16.666%);
}

.fast-exchange-section #slide3:checked ~ .carousel-track {
    transform: translateX(-33.333%);
}

/* Indicators */
.fast-exchange-section .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: static;
    margin-top: 45px;
}

.fast-exchange-section .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fast-exchange-section #slide1:checked ~ .carousel-indicators .indicator:nth-child(1),
.fast-exchange-section #slide2:checked ~ .carousel-indicators .indicator:nth-child(2),
.fast-exchange-section #slide3:checked ~ .carousel-indicators .indicator:nth-child(3),
.fast-exchange-section #slide4:checked ~ .carousel-indicators .indicator:nth-child(4) {
    background: #4a5fbf;
}


.fast-exchange-section .mobile-indicators {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}


.fast-exchange-section .carousel-item-custom:nth-child(1) .carousel-card {
    background: linear-gradient(135deg, #4c60b9 0%, #764ba2 100%);
}

.fast-exchange-section .carousel-item-custom:nth-child(2) .carousel-card {
    background: linear-gradient(135deg, #a346ad 0%, #f5576c 100%);
}

.fast-exchange-section .carousel-item-custom:nth-child(3) .carousel-card {
    background: linear-gradient(135deg, #3378b5 0%, #00f2fe 100%);
}

.fast-exchange-section .carousel-item-custom:nth-child(4) .carousel-card {
    background: linear-gradient(135deg, #239478 0%, #38f9d7 100%);
}

.fast-exchange-section .carousel-item-custom:nth-child(5) .carousel-card {
    background: linear-gradient(135deg, #a53a5a 0%, #fee140 100%);
}

.fast-exchange-section .carousel-item-custom:nth-child(6) .carousel-card {
    background: linear-gradient(135deg, #268580 0%, #fed6e3 100%);
}





/* =============================================== buy fiat section  ===============================================  */

.buy-fiat-section .method-card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.buy-fiat-section .method-card div {
  font-size: 0.875rem;
  margin-top: .25rem;
}

/* Dots for list */
.buy-fiat-section .dot {
  width: .6rem;
  height: .6rem;
  background: #28a745;
  border-radius: 50%;
  display: inline-block;
}



/* ============================================== review section ============================================== */
.reviews-section .bg-purple {
  background-color: #6f42c1 !important;
}

.review-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.reviews-section .review-card .review-icon{
    height:20px;
}

.reviews-section .review-card .user-box{
    height: 50px;
    width:50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    font-weight:600;
}





/* ======================================================== download banner ======================================================== */
.download-banner .feature-box{
    background-color: #ebebeb19;
    color: #fff;
    border-radius:15px;
}

.download-banner .review-icon{
    height:15px;
}

.download-banner .banner-img{
    max-width:100%;
}

.download-banner .kursoff-img,
.download-banner .award-img{
    max-width:100%;
}




/* ================================ Press & About Us Section ================================ */
.press-about-section {
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
}

/* About Section */
.press-about-section .about-crypto .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
}

.press-about-section .about-crypto .section-text {
  font-size: 1rem;
  color: #374151;
}

.press-about-section .about-crypto .stat-item {
  transition: transform 0.2s ease-in-out;
}

.press-about-section .about-crypto .stat-item:hover {
  transform: translateY(-5px);
}

.press-about-section .about-crypto .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.press-about-section .about-crypto .stat-label {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Press Section */
.press-about-section .press-coverage .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.press-about-section .press-coverage .press-list{
    max-height:600px;
    overflow-y:auto;
    overflow-x: hidden;
    padding-right: 5px; 
    padding-top:10px;    
}

.press-about-section .press-coverage .press-item {
  transition: transform 0.2s ease-in-out;
  margin-bottom: 15px;
}

.press-about-section .press-coverage .press-item:hover {
  transform: translateY(-3px);
}
.press-about-section .press-coverage .press-item .press-icon{
    width:150px;
    height: auto;
    max-width:100%;
    margin-bottom:10px;
}

.press-about-section .press-coverage .press-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}
.press-about-section .press-coverage .press-meta {
  font-size: 0.85rem;
}
.press-about-section .press-coverage .press-text {
  font-size: 0.95rem;
  color: #374151;
}

/* ================================== Crypto Loan ======================================= */

/* =================================== Apply loan Section  =================================== */

.loan-apply-section .about-loan .crypto-loan-icon{
    height:40px;
    width:40px;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    display: flex;
    margin-right:10px;
    font-size:1rem;
}

.loan-apply-section .form-wrap .form-control.amount_to {
    padding-right:.375rem!important;
}

.loan-apply-section  .tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.loan-apply-section .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width:250px;
  background-color: #fff;
  color: #000;
  text-align: left;
  padding: 5px 8px;
  border-radius: 4px;
  position: absolute;
  z-index:10;
  top: 100%;  
  left:0%;
  font-size:13px;
  transform: translateX(-0%);
  white-space: normal;  
  word-wrap: break-word;
  overflow-wrap: break-word; 
  transition: opacity 0.2s ease-in-out;
}

.loan-apply-section .tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.loan-apply-section .tooltip-container .fa-circle-question{
    color: #8F8F8F!important;
}
.loan-apply-section .tooltip-container:hover .fa-circle-question{
    color: #707070!important;
}

.loan-apply-section .btn-crypto{
    padding:5px 20px;
    border:1px solid #ccc;
}

.loan-apply-section .btn-crypto:hover{
    border:1px solid #846aff;
}

.loan-apply-section .ltv-check-btn:checked + .btn-crypto{
    border:1px solid #846aff;
    background-color: #ccc;
}

.loan-apply-section .ltv-check-btn{
    display:none;
}

.loan-apply-section .btn-duration-check:checked + .btn-crypto{
    border:1px solid #846aff;
    background-color: #ccc;
}

.loan-apply-section .btn-duration-check{
    display:none;
}

.loan-apply-section .discount-rate{
    text-decoration: line-through;
    color:#A6A6A6;
    font-size:21px;
    font-weight:600;
}

.loan-apply-section .original-rate{
    color:#40A17C;
    font-size:21px;
    font-weight:600;
}

.loan-apply-section .interest-rate{
    color:#000;
    font-size:21px;
    font-weight:500;
}


/*  ====================================== loan Features Section  ====================================== */
.loan-features-section .feature-card {
    padding: 2rem;
    border-radius:30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #74747432;
    background-color:#fff;
}

.loan-features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.loan-features-section .feature-card.yellow .feature-icon{
    background: #ffd6072f;
    color: #ff9d00;
}

.loan-features-section .feature-card.green .feature-icon{
    background: #09ff782f;
    color: #08ab7d;
}

.loan-features-section .feature-card.blue .feature-icon{
    background: #096bff2f;
    color: #0048ff;
}

.loan-features-section .feature-card.dark .feature-icon{
    background: #1303172f;
    color: #110c12;
}

.loan-features-section .feature-card.orange .feature-icon{
    background: #ff3e092f;
    color: #ff3700;
}

.loan-features-section .feature-icon {
    width:60px;
    height:60px;
    background: #d609ff2f;
    border-radius:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:1.8rem;
    color: #d400ff;
    margin-bottom:15px;
}

/* =================================== How It Works Section ================================= */
.loan-how-it-works .step-card {
    padding: 2rem;
    position: relative;
    background-color: #ebebeb19;
    border-radius:10px;
    min-height:350px;
    position: relative;
    border:2px solid #ebebeb19;
    transition: 0.3s all ease-in-out;
}

.loan-how-it-works .step-card:hover{
    border:2px solid #846aff;
}

.loan-how-it-works .step-number {
    width:55px;
    height:55px;
    background:#846aff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    position: absolute;
    right:-12px;
    margin:0;
    top:-12px;
}

.loan-how-it-works .step-icon{
    margin-bottom: 20px;
    height:65px;
    width:65px;
    background-color:#ebebeb19;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius:10px;
    border: 2px solid #ebebeb19;
    transition: 0.3s all ease-in-out;
}

.loan-how-it-works .step-card:hover .step-icon{
    border:2px solid #846aff;
}

/* Crypto Collateral Section */
.crypto-collateral .btn-collateral{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.crypto-collateral .btn-collateral .coin-img{
    height:25px;
    width:auto;
}

.crypto-collateral .btn-collateral .coin-name{
    font-weight:600;
    margin-left:8px;
    font-size: 20px;
}

.crypto-collateral .btn-collateral .coin-tiker{
    margin-left:8px;
    color:#757575;
}


/* modal */
.allcoins-modal .btn-collateral{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.allcoins-modal .btn-collateral .coin-img{
    height:25px;
    width:auto;
}

.allcoins-modal .btn-collateral .coin-name{
    font-weight:600;
    margin-left:8px;
    font-size: 20px;
    max-width:9ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.allcoins-modal .btn-collateral .coin-tiker{
    margin-left:8px;
    color:#757575;
}

.allcoins-modal .skeleton-card{
    height:43px; 
    border-radius:6px;
}

/* skeleton */
.skeleton-card {
  background: linear-gradient(
     90deg,
     #f0f0f0 25%,
     #e0e0e0 37%,
     #f0f0f0 63%
 );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}


/* ============================ Crypto loan form Skeleton ============================ */

/* label text */
.skeleton_wrapper.exchange-wrap label.text-dark.fw-bold{
    position:relative;
    margin-left:12px;
    color:transparent!important;
}

.skeleton_wrapper.exchange-wrap label.text-dark.fw-bold::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    width:50%;
}

/* input box */
.skeleton_wrapper.exchange-wrap .form-wrap{
    position:relative;
    border:none!important;
    pointer-events: none;
}

.skeleton_wrapper.exchange-wrap .form-wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

/* choose coin btn */
.skeleton_wrapper.exchange-wrap .exchange-coin{
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border:none;
    pointer-events: none;
}

.skeleton_wrapper.exchange-wrap .exchange-coin .coin-image,
.skeleton_wrapper.exchange-wrap .exchange-coin .coin-ticker,
.skeleton_wrapper.exchange-wrap .exchange-coin .coin-name,
.skeleton_wrapper.exchange-wrap .exchange-coin .badge{
    visibility:hidden!important;
}
.skeleton_wrapper.exchange-wrap .exchange-coin::before{
    visibility:hidden!important;
}
.skeleton_wrapper.exchange-wrap .exchange-coin::after{
    visibility:hidden!important;
}


/* tooltip container */
.skeleton_wrapper.exchange-wrap .d-flex.align-items-center.text-dark{
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    border:none;
}

.skeleton_wrapper.exchange-wrap .d-flex.align-items-center.text-dark span{
    color:transparent;
    visibility:hidden!important;
}
.skeleton_wrapper.exchange-wrap .d-flex.align-items-center.text-dark .tooltip-container{
    visibility:hidden!important;
}

/* btn crypto and duration */

.skeleton_wrapper.exchange-wrap .btn-crypto{
    position: relative;
    border:none;
    pointer-events:none;
    color:transparent!important;
}
.skeleton_wrapper.exchange-wrap .ltv-check-btn:checked + .btn-crypto{
    border: none!important;
}
.skeleton_wrapper.exchange-wrap .btn-duration-check:checked + .btn-crypto{
    border: none!important;
}
.skeleton_wrapper.exchange-wrap .btn-crypto::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

/* original rate */
.skeleton_wrapper.exchange-wrap .original-rate{
    position:relative;
    color:transparent!important;
}
.skeleton_wrapper.exchange-wrap .original-rate::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

/* interest rate */
.skeleton_wrapper.exchange-wrap .interest-rate{
    position:relative;
    color:transparent!important;
}
.skeleton_wrapper.exchange-wrap .interest-rate::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

/* btn exchange */
.skeleton_wrapper.exchange-wrap .btn-custom.btn-exchange{
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
    color:transparent;
    box-shadow:none;
    pointer-events:none;
}

/* exchange terms */
.skeleton_wrapper.exchange-wrap .exchange-terms{
    position:relative;
    margin-top:17px!important;
    padding-top:0!important;
    color:transparent!important;
}

.skeleton_wrapper.exchange-wrap .exchange-terms a{
    color:transparent!important;
}

.skeleton_wrapper.exchange-wrap .exchange-terms::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffffff 25%, #eeeeee 37%, #ffffff 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}


/* =================================== What is ====================================== */
.what-is .card {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.what-is .card:hover {
  transform: translateY(-5px);
  border: 1px solid #0d6efd;
}


/* =================================== Ltv Ratios ====================================== */
.ltv-ratios .heading{
    color:#fff;
}
.ltv-ratios .description{
    color:#c4c4c4;
}
.ltv-ratios .ltv-table{
    min-width:500px;
}
.ltv-ratios .ltv-table th,.ltv-table td{
    border-color:#ffffff27!important;
}
.ltv-ratios .ltv-table th {
    color: #fff!important;
    background:transparent!important;
    box-shadow:none!important;
}

.ltv-ratios .ltv-table td {
    background:transparent!important;
    color: #fff;
}

.ltv-ratios .progress {
    height: 6px;
    margin-top: 6px;
    background-color: #e9ecef;
}

.ltv-ratios .progress-bar {
    border-radius: 10px;
}

.ltv-ratios .bg-orange{
    background-color:#ff770f;
}

.ltv-ratios .text-orange{
    color:#ff770f!important;
}



/* =================================== Loan Strategies ====================================== */

.loan-strategies .scenario-card {
    border-radius: 16px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.loan-strategies .scenario-card:hover {
    transform: translateY(-5px);
}

.loan-strategies .scenario-card.bull {
    border-left: 5px solid #198754;
}

.loan-strategies .scenario-card.bear {
    border-left: 5px solid #dc3545;
}

.loan-strategies .scenario-tag {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loan-strategies .bull .scenario-tag {
    color: #198754;
}

.loan-strategies .bear .scenario-tag {
    color: #dc3545;
}

.loan-strategies .scenario-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.loan-strategies .scenario-steps {
    list-style: none;
    padding-left: 0;
}

.loan-strategies .scenario-steps li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
}

/* Number + Icon */
.loan-strategies .scenario-steps li::before {
    content: attr(data-n);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.loan-strategies .scenario-profit {
    margin-top: 15px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loan-strategies .bull .scenario-profit {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.loan-strategies .bear .scenario-profit {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
/* =================================== Risk Awareness ====================================== */
.risk-awareness .heading{
    color:#fff;
}

.risk-awareness .description{
    color:#ccc;
}
.risk-awareness .risk-card{
    background-color:#ffffff10;
    border-radius:12px;
}

.risk-awareness .risk-card .card-heading{
    font-weight:600;
    color:#fff;
    font-size:18px;
}
.risk-awareness .risk-card .card-body{
    color:#ccc;
}

/* =================================== Order Details ====================================== */
.order-details .order-details-card{
    border-radius:20px;
    border: 1px solid #fff;
    width:100%;
    max-width:950px;
    margin:auto;
}

.order-details .order-details-card .info-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    padding:20px;
    border-radius: 10px;
    gap: 10px;
}

.order-details .order-details-card .info-wrap .arrow-img{
    height: 20px;
    margin:0px 20px;
}

.order-details .order-details-card .coin-wrap{
    display: flex;
    align-items: center;
    gap:8px;
}

.order-details .order-details-card .coin-wrap .coin-img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.order-details .order-details-card .coin-wrap label{
 padding-bottom:5px;
}
.order-details .order-details-card .coin-wrap .coin-number{
    font-size:20px;
    font-weight:600;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
}


.order-details .info-tooltip{
  position: relative;
  display: inline-block;
  margin-left: 6px;
  cursor: pointer;
}

.order-details .info-tooltip i {
  color: #007bff;
  font-size: 14px;
  transition: color 0.3s;
}

.order-details .info-tooltip:hover i {
  color: #0056b3;
}

/* Tooltip text */
.order-details .tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 120%; 
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    width: max-content;
    max-width: 200px;
    white-space: normal; 
    transition: opacity 0.3s;
    z-index: 10;
}

/* show on hover */
.order-details .info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Tooltip arrow */
.order-details .tooltip-text::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #333 transparent transparent;
}

.order-details .address-verify-btn{
   background-color:#846aff;
   border-radius:0!important;
}
.order-details .address-verify-btn:hover,
.order-details .address-verify-btn:focus{
   background-color:#4c37b4;
}

.order-details .btn-internal-wallet{
    padding:0!important;
    border: none!important;
    color:#846aff!important;
}

.order-details .btn-internal-wallet:focus{
    border: none;
    color:#4c37b4!important;
}

.order-details .btn-internal-wallet:hover{
    border: none;
    color:#4c37b4!important;
}

.order-details .qr-card{
    background-color: #ffff;
    padding:20px;
    border-radius:15px;
}
.order-details .qr-card .coin-img{
    height:40px;
    width:40px;
}

.order-details .qr-card .btc-address{
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
}

/* loan status */
.order-details .loan-status-section {
    background-color: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.order-details .progress-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2937;
}

.order-details .progress-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.order-details .progress-line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.order-details .progress-fill {
    height: 100%;
    width:var(--fill-width);
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    position: relative;
    animation: progressGrow 2s ease-in-out;
}

.order-details .progress-timeline[data-progress="1"] .progress-fill { --fill-width:0%; }
.order-details .progress-timeline[data-progress="2"] .progress-fill { --fill-width:33.33333333333333%; }
.order-details .progress-timeline[data-progress="3"] .progress-fill { --fill-width:66.66666666666667%; }
.order-details .progress-timeline[data-progress="4"] .progress-fill { --fill-width:100%; }

@keyframes progressGrow {
    from { width: 0%; }
    to { width: var(--fill-width, 0); }
}

.order-details .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    min-width: 120px;
}

.order-details .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 4px solid #e5e7eb;
    background: #f3f4f6;
    color: #9ca3af;
}

.order-details .step-icon.completed{
    background:#059669;
    color: white;
    animation: bounce 0.8s ease-in-out;
    border-color:#059669;
}

.order-details .step-icon.active {
    background:#059669;
    color: white;
    animation: pulse 2s infinite;
    border-color: rgba(59, 130, 246, 0.3);
    border-color:#059669;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}


.order-details .step-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #374151;
    line-height: 1.3;
}

.order-details .address-list-group .list-group-item .amount{
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal; 
}

.order-details .address-list-group .list-group-item .wallet-address{
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal; 
}

/* ========================================= login and signup bg ========================================= */
.crypto-bg{
    width: 100%;
    height:100%;
    position:relative;
}
/* ---------- Background ---------- */
.crypto-bg .crypto-bg-container{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background: linear-gradient(135deg,#0f0c29 0%,#302b63 50%,#24243e 100%);
    overflow:hidden;
    z-index:1;
}

.crypto-bg .gradient-overlay {
    position:absolute; inset:0;
    background: radial-gradient(circle at 20% 50%,rgba(120,119,198,0.3),transparent 50%),
    radial-gradient(circle at 80% 80%,rgba(99,102,241,0.2),transparent 50%),
    radial-gradient(circle at 40% 20%,rgba(168,85,247,0.15),transparent 40%);
}

/* Floating Icons */
.crypto-bg .crypto-symbols { position:absolute; inset:0; pointer-events:none; }

.crypto-bg .crypto-icon {
    position:absolute;
    font-size:2.3rem;
    color:white;
    opacity:0.12;
    animation: float 20s infinite ease-in-out;
}
.crypto-bg .crypto-icon:nth-child(1){left:10%; top:20%;}
.crypto-bg .crypto-icon:nth-child(2){left:80%; top:50%;}
.crypto-bg .crypto-icon:nth-child(3){left:10%; top:90%;}
.crypto-bg .crypto-icon:nth-child(4){left:88%; top:80%;}
.crypto-bg .crypto-icon:nth-child(5){left:85%; top:15%;}
.crypto-bg .crypto-icon:nth-child(6){left:15%; top:60%;}

@keyframes float {
    0%,100%{ transform:translateY(0) rotate(0deg); }
    25%{ transform:translateY(-30px) rotate(5deg); }
    50%{ transform:translateY(-60px) rotate(-5deg); }
    75%{ transform:translateY(-30px) rotate(3deg); }
}

.crypto-bg .grid-pattern {
    position:absolute; 
    inset:0;
    background-image: linear-gradient(rgba(99,102,241,0.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(99,102,241,0.05) 1px,transparent 1px);
    background-size:50px 50px;
    animation:gridMove 20s linear infinite;
}
@keyframes gridMove {
    0%{ transform:translate(0,0); }
    100%{ transform:translate(50px,50px); }
}

/* Glowing Orbs */
.crypto-bg .orb { position:absolute; border-radius:50%; filter:blur(60px); opacity:0.4; animation:orbPulse 8s infinite; }
.crypto-bg .orb-1{ width:300px;height:300px; background:radial-gradient(circle,#6366f1,transparent); top:10%; left:15%; }
.crypto-bg .orb-2{ width:250px;height:250px; background:radial-gradient(circle,#a855f7,transparent); bottom:15%; right:20%; }
.crypto-bg .orb-3{ width:200px;height:200px; background:radial-gradient(circle,#8b5cf6,transparent); top:50%; right:10%; }

@keyframes orbPulse {
    0%,100%{ transform:scale(1); opacity:.4; }
    50%{ transform:scale(1.2); opacity:.6; }
}

/* Chart lines */
.crypto-bg .chart-lines { position:absolute; inset:0; opacity:.15; }
.crypto-bg .chart-line {
    position:absolute; height:2px;
    background:linear-gradient(90deg,transparent,#10b981,transparent);
    animation:chartMove 15s linear infinite;
}
.crypto-bg .chart-line:nth-child(1){top:25%; width:60%; left:-60%;}
.crypto-bg .chart-line:nth-child(2){top:45%; width:70%; left:-70%; animation-delay:5s;}
.crypto-bg .chart-line:nth-child(3){top:65%; width:50%; left:-50%; animation-delay:10s;}
@keyframes chartMove {0%{left:-100%;}100%{left:100%;}}

/* Content */
.crypto-bg main {
    position:relative;
    z-index:5;
}

/* Header */
.crypto-bg header {
    z-index:10;
    position:relative;
}

/* Footer */
.crypto-bg footer {
    position:relative;
    z-index:10;
}
.crypto-bg .hero-title{
    font-weight:800;
    background:linear-gradient(135deg,#ffffff,#a5b4fc);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:titleGlow 3s infinite;
}
@keyframes titleGlow {
    0%,100%{ filter:brightness(1); }
    50%{ filter:brightness(1.2); }
}

.crypto-bg .hero-subtitle {
    letter-spacing:2px;
    color:#c7d2fe;
    font-weight:300;
}

/* additional info */

.additional-info-toggle #additional-info-btn{
    display: none;
}

.additional-info-toggle .additional-info{
   display: none;
}

.additional-info-toggle #additional-info-btn:checked ~ .additional-info{
    display: block!important;
}

.additional-info-toggle:has(#additional-info-btn:checked) legend .dropdown-toggle::after {
    transform: rotate(180deg);
}

.additional-info-toggle .dropdown-toggle:after{
    transition: 0.3s all ease-in-out;
}

.additional-info-field:has(#additional-info-btn:checked){
    border-radius:10px;
    padding:0 15px;
    border: 1px solid #846aff;
}

.additional-info-toggle:has(#additional-info-btn:checked) legend .btn-additional{
    background-color: #846aff;
    color: #fff;
    border-color:transparent;
}

.btn-additional{
    border: 1px solid #616161;;
    color: #000000;
    font-size:15px;
}

.btn-additional:hover{
    background-color: #846aff;
    color: #fff;
}

.btn-additional.dropdown-toggle {
    white-space: normal !important;
}

.additional-info label{
    color:#000;
}

/* ======================= loan details pages =======================  */
.order-details .order-details-card .order-details-banner{
    text-align: center;
}
.order-details .order-details-card .order-details-banner .order-status-icon{
    height:65px;
    width:65px;
    align-items: center;
    justify-content:center;
    display: flex;
    color:#fff;
    margin: auto;
    margin-bottom:15px;
    font-size:35px;
    border-radius: 50%;
}
.order-details .order-details-card .order-details-banner .order-status-icon.bg-danger-color{
    background-color:red;
}

.order-details .order-details-card .order-details-banner .order-status-icon.bg-success-color{
    background-color:green;
}

.order-details .order-details-card .order-details-banner .order-status-icon.bg-warning-color{
    background-image: linear-gradient(to right top, #ff9d00, #faa600, #f5af00, #efb800, #e9c000);
}

.order-details .order-details-card .order-details-banner .order-status-icon.bg-light-color{
    background-image: linear-gradient(to right top, #ff7c05, #ff8a00, #ff9700, #ffa400, #ffb108);
}



.order-details .order-details-card .collateral-release {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 1px solid rgba(46, 213, 115, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.order-details .order-details-card .collateral-release h6 {
    color: #2ed573;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.order-details .order-details-card .collateral-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(46, 213, 115, 0.2);
}

.collateral-item:last-child {
    border-bottom: none;
}

.order-details .order-details-card .collateral-item .coin-img{
    height:25px;
    width:auto;
    margin-right:8px;
}

.order-details .order-details-card .overdue-card{
    font-weight: 700;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.order-details .order-details-card .grace-period-card{
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
}


.order-details .order-details-card .consequences-card{
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.order-details .order-details-card .consequences-card h6 {
    color: #dc3545;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.order-details .order-details-card .consequences-card .consequence-item{
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-details .order-details-card .consequences-card .consequence-item:last-child{
    margin-bottom:0;
}


.order-details .order-details-card .failure-reasons-card {
    background: linear-gradient(135deg, #fadbd8 0%, #f1948a 100%);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.order-details .order-details-card .failure-reasons-card h6 {
    color: #e74c3c;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.order-details .order-details-card .failure-reasons-card .reason-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-details .order-details-card .failure-reasons-card .reason-item:last-child {
    margin-bottom: 0;
}

.order-details .order-details-card .next-steps-card {
    background: linear-gradient(135deg, #d5dbdb 0%, #aeb6bf 100%);
    border: 1px solid rgba(108, 117, 125, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.order-details .order-details-card .next-steps-card h6{
    color: #495057;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.order-details .order-details-card .next-steps-card .step-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-details .order-details-card .next-steps-card .step-item:last-child {
    margin-bottom: 0;
}


.order-details .order-details-card .liquidation-details {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.order-details .order-details-card .liquidation-details h6 {
    color: #8b0000;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.order-details .order-details-card .asset-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.order-details .order-details-card .asset-item:last-child {
    border-bottom: none;
}

.order-details .order-details-card .asset-info {
    display: flex;
    flex-direction: column;
}

.order-details .order-details-card .asset-name {
    font-weight: 600;
    margin-bottom:4px;
    color: #212529;
}
.order-details .order-details-card .asset-name .coin-image{
    height:25px;
    width:auto;
    margin-right:6px;
}
.order-details .order-details-card .asset-amount {
    font-size: 0.85rem;
    color: #6c757d;
}

.order-details .order-details-card .asset-value {
    text-align: right;
}

.order-details .order-details-card .sale-price {
    font-weight: 600;
    color: #8b0000;
    margin-bottom:4px;
}

.order-details .order-details-card .market-price {
    font-size: 0.85rem;
    color: #6c757d;
}


.order-details .order-details-card .consequences-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.order-details .order-details-card .consequences-section h6 {
    color: #856404;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.order-details .order-details-card .consequence-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.order-details .order-details-card .consequence-item:last-child {
    margin-bottom: 0;
}

/* destination tag  */
.highlight-box{
    background: #fef9e7;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.highlight-box input{
    font-size: 16px!important;
    font-weight: bold!important;
    background:transparent!important;
    color: #fff!important;
    border:none;
}

.highlight-box input:focus{
    box-shadow:none!important;
    border:none!important;
}

.highlight-box .highlight-note{
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #7d6608;
}

.highlight-box .input-group-wrap{
    background-color:#D68B1A!important;
    padding:10px;
    border-radius:10px;
}

.highlight-box .copy-btn{
    background:#ffffff56!important;
    cursor: pointer;
    border-radius:6px!important;
    padding:4px 10px!important;
}

.highlight-box .copy-btn:hover {
    background: #ebebeb9b !important;
}

/* ========================================= affiliate program ===================================== */

/* Affiliate Banner */
.affiliate-Program-banner .feature-badges{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
}

.affiliate-Program-banner .badge-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color:#fff;
}

.affiliate-Program-banner .badge-box .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/*  Affiliate Earnings */
.earnings-section .text-purple {
    color: #6f42c1;
}

.earnings-section select:focus{
    box-shadow:none!important;
    border-color:#846aff!important;
}

.earnings-section .form-range::-webkit-slider-runnable-track {
  background: #d7d7d7 !important;
}

/* Affiliate Benefits */
.affilite-benefits .benefit-card{
    height:100%!important;
    background: #ffffff;
    border-radius:10px;
    color:#000;
}

.affilite-benefits .benefit-card .description{
    color:#9ca3af;
}

.affilite-benefits .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.affilite-benefits .bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.affilite-benefits .bg-gradient-info {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.affilite-benefits .bg-gradient-purple {
    background: linear-gradient(135deg, #6f42c1, #563d7c);
}

.affilite-benefits .bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #b02a37);
}

.affilite-benefits .bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.affilite-benefits .bg-gradient-indigo {
    background: linear-gradient(135deg, #6610f2, #520dc2);
}

/* Light backgrounds */
.affilite-benefits .bg-light-success { background: #e6f6ea; }
.affilite-benefits .bg-light-info { background: #e4f0ff; }
.affilite-benefits .bg-light-purple { background: #f2e9ff; }
.affilite-benefits .bg-light-danger { background: #ffe9ec; }
.affilite-benefits .bg-light-warning { background: #fff4d6; }
.affilite-benefits .bg-light-indigo { background: #efe6ff; }

.affilite-benefits .text-purple { color: #6f42c1; }
.affilite-benefits .text-indigo { color: #6610f2; }

/* Affiliate Tools */
.affiliate-tools .tool-card{
    height:100%;
}

.affiliate-tools .border-purple { border-color: #6f42c1 !important; }
.affiliate-tools .border-orange { border-color: #fd7e14 !important; }
.affiliate-tools .border-indigo { border-color: #6610f2 !important; }

.affiliate-tools  .status-badge-success {
    background: #e7f9ec;
    color: #198754;
    padding: 6px 14px;
    border-radius: 20px;
}

.affiliate-tools .status-badge-warning {
    background: #fff3cd;
    color: #664d03;
    padding: 6px 14px;
    border-radius: 20px;
}

.affiliate-tools .status-badge-primary {
    background: #e1eaff;
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 20px;
}

.affiliate-tools .status-badge-purple {
    background: #e8d8ff;
    color: #6f42c1;
    padding: 6px 14px;
    border-radius: 20px;
}

.affiliate-tools .status-badge-orange {
    background: #ffe5cc;
    color: #fd7e14;
    padding: 6px 14px;
    border-radius: 20px;
}

.affiliate-tools .status-badge-indigo {
    background: #dcd2ff;
    color: #6610f2;
    padding: 6px 14px;
    border-radius: 20px;
}

.responsive-btn{
    padding: .5rem 1rem; 
    font-size: 1rem;
}

/* Dot Colors */
.affiliate-tools .list-dot-success { color: #198754; margin-right: 6px; }
.affiliate-tools .list-dot-warning { color: #ffc107; margin-right: 6px; }
.affiliate-tools .list-dot-primary { color: #0d6efd; margin-right: 6px; }
.affiliate-tools .list-dot-purple { color: #6f42c1; margin-right: 6px; }
.affiliate-tools .list-dot-orange { color: #fd7e14; margin-right: 6px; }
.affiliate-tools .list-dot-indigo { color: #6610f2; margin-right: 6px; }

/* Buttons (custom colors) */
.affiliate-tools .btn-purple { background: #6f42c1; color: #fff; }
.affiliate-tools .btn-indigo { background: #6610f2; color: #fff; }
.affiliate-tools .btn-orange { background: #fd7e14; color: #fff; }

.affiliate-tools .btn-purple:hover { background: #5a34a1; color: #fff!important;}
.affiliate-tools .btn-indigo:hover { background: #520dc2; color: #fff!important;}
.affiliate-tools .btn-orange:hover { background: #e56d0f; }

/* Buttons (custom colors) */
.affiliate-tools .bg-purple { background: #6f42c1; color: #fff; }
.affiliate-tools .bg-indigo { background: #6610f2; color: #fff; }
.affiliate-tools .bg-orange { background: #fd7e14; color: #fff; }

/* ========================================== how it works ===================================== */
.main-banner-section .badge-item {
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
}

/* STEPS */
.exchange-steps .step-card {
    background: #fff;
    border-radius:25px;
    transition: .3s;
    height:100%;
    position: relative;
    background-image: linear-gradient(to right top, #ead4ff, #e4d9ff, #e0ddff, #dde1ff, #dbe4ff, #d9e2ff, #d7e1ff, #d5dfff, #d3d8ff, #d4d0ff, #d8c7ff, #dfbeff);
}

.exchange-steps .step-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.exchange-steps .step-number{
    position:absolute;
    top:-26px;
    background-color:#0056b3;
    height:60px;
    width:60px;
    font-size:24px;
    font-weight: 700;
    color: #fff;
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius:50%;
    border:7px solid #fff;
}
.exchange-steps .step-box {
    background: #f3f0ff;
    border-radius: 8px;
    text-align: left;
}

.exchange-steps .address-box {
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    font-size: 13px;
    font-family: monospace;
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal; 
}

.exchange-steps .qr-placeholder {
    background: #fff;
    border: 1px dashed #aaa;
    height: 100px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
}

/* ===================================== SECURITY ===================================== */
.security-info .security-info-card{
    border:none;
    border-radius:25px;
    transition:all 0.3s ease-in;
    background-color:transparent;
    min-height:250px;
    background-image: linear-gradient(to right top, #e5e1ff, #e4e4ff, #e4e6ff, #e4e9ff, #e5ebff, #e2edff, #dfeeff, #dcf0ff, #d5f2ff, #cef3fd, #c8f5f9, #c5f6f3);
}

.security-info .security-info-card .feature-icon{
    background-color:#6f42c1;
    color: #fff;
    height:65px;
    width:65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:12px;
    transition:all 0.1s ease-in;
}

.security-info .security-info-card:hover .feature-icon{
    transform:rotate(10deg);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.security-info .security-info-card .feature-icon i {
    font-size:30px;
}

/* ============================================ Demo Wrap ============================================ */
.demo-wrap .section-desc {
    text-align: center;
    max-width: 600px;
    margin: auto;
    font-size: 18px;
    color:#d4d1d1;
}

/* Cards */
.demo-wrap .demo-box {
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width:1000px;
    width:100%;
    margin:auto;
}

/* Labels + Inputs */
.demo-wrap label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.demo-wrap select, .demo-wrap input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.demo-wrap select:focus, .demo-wrap input:focus {
    border-color: #0077ff;
}

/* Status pills */
.demo-wrap .status-indicator {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.demo-wrap .status-processing {
    background: #dceafe;
    color: #1d4ed8;
}

/* Progress bar */
.demo-wrap .progress-wrapper {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    margin: 12px 0;
}

.demo-wrap .progress-bar {
    width: 0%;
    height: 8px;
    background: #0077ff;
    border-radius: 10px;
    transition: width 1s ease;
}

/* Visualization steps */
.demo-wrap .visual-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.demo-wrap .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ccc;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.demo-wrap .step-circle.active { background: #0066ff; color: white; }
.demo-wrap .step-circle.done { background: #22c55e; color: white; }

.demo-wrap .visual-text {
    margin-left: 12px;
    font-size: 16px;
    flex: 1;
}

.demo-wrap .checkmark {
    font-size: 20px;
    font-weight: bold;
    color: #22c55e;
    visibility: hidden;
}

/* Summary Box */
.demo-wrap .summary-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: none;
}

.demo-wrap .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.demo-wrap .qr-box {
    width: 140px;
    height: 140px;
    background: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 4px;
    font-size:60px;
}

.demo-wrap .text-truncate{
    max-width:400px!important;
}

.demo-wrap .btn-copy-address{
    background-color: #e3e3e3;
    border:none!important;
}

.demo-wrap .btn-copy-address:focus{
    border:none!important;
}

/* ================================= All Cryptocurrencies ================================= */

.all-cryptocurrencies-card{
    background-color:#fff;
    padding:30px;
    border-radius:20px;
}

.all-cryptocurrencies-card .table thead th{
    background:#E4E5F5!important;
    box-shadow:none!important;
    color: #000!important;
}

.all-cryptocurrencies-card.data-table .table tbody tr td{
    padding:10px!important;
}

.all-cryptocurrencies-card.data-table .table thead tr th{
    padding:10px!important;
}

.all-cryptocurrencies-card.data-table .table{
    background-color:#DEDEDE!important;
}

/* =========================== pagination =========================== */

/* Pagination buttons */
.all-cryptocurrencies-card .dt-paging button{
    border: 1px solid #ddd!important;
    background-color: #FCFAFF!important;
    color: #333!important;
    padding: 5px 15px!important;
    border-radius: 4px!important;
    cursor: pointer!important;
    text-decoration: none!important;
    transition: all 0.2s ease!important;
    margin-right:5px!important;
    margin-bottom:5px!important;
}

.all-cryptocurrencies-card .dt-paging button:not(.disabled):hover {
    background: #816bf4!important;
    color: #fff!important;
}

.all-cryptocurrencies-card .dt-paging button.disabled {
    background-color: #EDEDED!important;
    color:#B0B0B0!important;
    -webkit-text-fill-color:#B0B0B0 !important;
    cursor: not-allowed!important;
    pointer-events: none!important; 
}

/* Active page button */
.all-cryptocurrencies-card .dt-paging button.current{
    background-color: #816bf4!important;
    color:#fff!important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: bold!important;
}

.all-cryptocurrencies-card .dt-layout-row.dt-layout-table{
    margin-bottom:20px!important;
}

.all-cryptocurrencies-card .dt-length .dt-input{
    margin-right:10px!important;
}

.all-cryptocurrencies-card .dt-search .dt-input{
    margin-left:10px!important;
}


/* ================================= Popular Trading Pairs ================================= */

.trading-pairs .pair-coin-info{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    width: 100%;
}

.trading-pairs .pair-coin-info .btn-pair-coin{
    display: flex;
    align-items: center;
    justify-content:space-between;
    color:#000;
    background-color: #fff;
    border-radius:30px;
    border:2px solid transparent !important;
    transition:all 0.3s ease;
}

.trading-pairs .pair-coin-info .btn-pair-coin:hover,
.trading-pairs .pair-coin-info .btn-pair-coin:focus{
    border:2px solid #816bf4!important;
}

.trading-pairs .pair-coin-info .btn-pair-coin .coin-icon{
    height:25px;
    width:auto;
    margin-right:8px;
}

.trading-pairs .pair-coin-info .btn-pair-coin span{
    font-weight: 700;
    display:flex;
    align-items: center;
}

.trading-pairs .pair-coin-info .btn-pair-coin .fa-right-left{
    color:#07ad30;
}


/* ====================================================== ABOUT US ============================================== */
/* ============================= ABOUT HERO ============================= */
.about-hero .hero-title {
    font-weight:800;
}

.about-hero .description{
  max-width:950px;
  text-align: center;
  font-size:1rem;
  color: #4F4F4F;
}

.about-hero .hero-stats{
    width:100%;
    max-width:800px;
    margin:auto;
}

.about-hero .hero-stats .stat-box {
    background:rgba(255,255,255,.15);
    border-radius:10px;
    padding:1.5rem;
    text-align: center;
    border:1px solid #cacaca38;
    transition:all 0.3s ease;
}

.about-hero .stat-box:hover {
 box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
 transform: translateY(-6px);
}

.about-hero .hero-stats .stat-box h3{
    font-weight:600;
}


/* ============================= what we do section ============================= */

/* Titles */
.what-we-do-section .title {
  font-weight: 800;
  color: #000;
}

.what-we-do-section .subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: #4F4F4F;
}

/* Story Cards */
.what-we-do-section .what-we-do-card{
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  height:100%;
}

.what-we-do-section .what-we-do-card  .header{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.what-we-do-section .what-we-do-card .icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
}

.what-we-do-section .what-we-do-card .icon h3 {
  margin: 0;
  font-size: 1.4rem;
}

/* Gradients */
.what-we-do-section .bg-purple {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.what-we-do-section .bg-blue {
  background: linear-gradient(90deg, #3b82f6, #14b8a6);
}

.what-we-do-section .bg-green {
  background: linear-gradient(90deg, #22c55e, #10b981);
}

.what-we-do-section .bg-red {
  background: linear-gradient(90deg, #f96312, #e70707);
}

.what-we-do-section .bg-yellow {
  background: linear-gradient(90deg, #ffc802, #ff9900);
}

/* =================================== Our Values ==================================== */

.values-section  .heading {
  font-weight: 800;
  color: #000;
}

.values-section  .description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: #4b4b4b;;
}


/* Card */
.values-section .values-section-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-section .values-section-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Icon */
.values-section .values-section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size:1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 1.5rem;
}

/* Gradients */
.values-section .gradient-red {
    background: linear-gradient(135deg, #ef4444, #ec4899);
}

.values-section .gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.values-section .gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.values-section .gradient-green {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}

/* ==================================== CTA =================================== */
.cta-section .heading {
  font-weight: 800;
  color: #000;
}

.cta-section .description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: #4b4b4b;
}

.cta-section .cta-btn{
  background-color: #846aff;
  color: #ffff;
  padding: 0.75rem 2.5rem;
  font-weight: 700;
  font-size:1.2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.cta-section .cta-btn:hover {
  background-color: #45139a;
  transform: scale(1.05);
}

.cta-section .cta-btn-outline{
  color: #846aff;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  font-size:1.2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border:2px solid #846aff;
}

.cta-section .cta-btn-outline:hover {
  background-color: #846aff;
  color: #fff;
  transform: scale(1.05);
}

.cta-section .contact-card {
  background:#e0e0e0b5;
  color: #000;
  transition: transform 0.3s ease;
}

.cta-section .contact-card:hover {
  transform: translateY(-5px);
}

.cta-section .contact-icon i {
  color: #846aff;
}

/* about details section */
.about-details-section .heading {
  font-weight:700;
  color: #000;
}

/* our mission section */
.our-mission-section .description{
    font-size:20px;
}
.our-mission-section .fa-bullseye{
 color: #846aff;
 margin-bottom:10px;
}

/* about security */
.custom-primary{
    color:#846aff;
}

.about-security .security-icon{
    background-color:#846aff;
    color:#fff;
    font-size:2.5rem;
    height:100px;
    width:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:auto;
    border-radius:50%;
    animation: waterRipple 2.8s infinite ease-out;
}

@keyframes waterRipple {
  0% {
    box-shadow:
    0 0 0 0 rgba(132,106,255,0.45),
    0 0 0 0 rgba(132,106,255,0.35),
    0 0 0 0 rgba(132,106,255,0.25);
    transform: scale(1);
    opacity: 1;
}

40% {
    box-shadow:
    0 0 0 25px rgba(132,106,255,0.25),
    0 0 0 45px rgba(132,106,255,0.18),
    0 0 0 65px rgba(132,106,255,0.12);
}

70% {
    box-shadow:
    0 0 0 60px rgba(132,106,255,0.12),
    0 0 0 100px rgba(132,106,255,0.06),
    0 0 0 140px rgba(132,106,255,0.02);
    opacity: 0.8;
}

100% {
    box-shadow:
    0 0 0 90px rgba(132,106,255,0),
    0 0 0 150px rgba(132,106,255,0),
    0 0 0 200px rgba(132,106,255,0);
    opacity: 0;
    transform: scale(1.05);
}
}

.about-security .working-icon{
    height:auto;
    width:100%;
    max-width:500px;
}

/* Our Experience */
.our-experience .experience-card{
    background-color: #ffffff1a;
    padding:30px;
    border-radius:10px;
}

.our-experience .fa-check{
    background-color:#03724c;
    padding:5px 6px;
    color:#fff;
    font-size:15px;
    border-radius:50%;
}

/* ====================================================== CONTACT US ============================================== */
/* ========================= Contact Hero (Scoped CSS) ========================= */

/* Description */
.contact-hero .hero-description {
    max-width: 850px;
}

/* Badge */
.contact-hero .support-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

/* Gradient Text */
.contact-hero .gradient-text {
    color:#846aff;
}

/* Highlight Cards */
.contact-hero .contact-highlight {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.contact-hero .contact-highlight:hover {
    transform: translateY(-6px);
}

/* Icons */
.contact-hero .highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Text */
.contact-hero .highlight-value {
    font-weight: 700;
}

.contact-hero .highlight-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =============================== Contact Form Section =============================== */

/* Header */
.contact-form-section .section-description {
    max-width: 720px;
}

/* Cards */
.contact-form-section .form-card,
.contact-form-section .info-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 1.5rem;
    padding: 2rem;
}

/* Form Header */
.contact-form-section .form-header .form-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}


.contact-form-section .form-card form input ,
.contact-form-section .form-card form textarea,
.contact-form-section .form-card form select{
    border:1px solid #ccc!important;
}

.contact-form-section .form-card form input:focus,
.contact-form-section .form-card form textarea:focus,
.contact-form-section .form-card form select:focus{
    border-color:#846aff!important;
    box-shadow:none!important;
}

/* Info Icons */
.contact-form-section .info-icon {
    width: 56px;
    height: 56px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

/* Response Card */
.contact-form-section .response-card {
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #fff;
}


/* =============================== Global Presence Section =============================== */

/* Description */
.global-presence-section .section-description {
    max-width: 720px;
}

/* Stats Wrapper */
.global-presence-section .stats-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Stat Cards */
.global-presence-section .stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.global-presence-section .stat-card:hover {
    transform: translateY(-6px);
}

/* Icons */
.global-presence-section .stat-icon{
    font-size: 2.5rem;
    color: #846aff;
    margin-bottom: 1rem;
}

/* Numbers */
.global-presence-section .stat-value{
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

/* Labels */
.global-presence-section .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}


/* ================================== Crypto Price Prediction ================================== */

.crypto-prediction-banner{
    text-align:center;
}

.crypto-prediction-banner .crypto-live-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(255,255,255,0.05);
}

.crypto-prediction-banner .crypto-pulse{
    width:8px;
    height:8px;
    background:#2EFFC0;
    border-radius:50%;
    display:inline-block;
    animation:cryptoPulse 1.5s infinite;
}

@keyframes cryptoPulse{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.5);opacity:.6;}
    100%{transform:scale(1);opacity:1;}
}

.crypto-prediction-banner .crypto-live-text{
    font-size:14px;
    color:#cbd5f5;
}

.crypto-prediction-banner .crypto-title{
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.crypto-prediction-banner .crypto-subtitle{
    font-size:20px;
    color:#94a3b8;
    max-width:600px;
    margin:auto;
}

.crypto-prediction-banner .crypto-date{
    margin-top:12px;
    font-size:14px;
    color:#F0F0F0;
}

/* ============================ Market Overview Section ============================*/

.crypto-market-overview .market-title{
    font-weight:600;
    color:#000;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:20px;
}

.crypto-market-overview .market-icon{
    color:#000;
}

.crypto-market-overview .market-card {
    padding: 16px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #30303022;
    height: 100%;
}

.crypto-market-overview .market-label{
    font-size:13px;
    color:#39393986;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:6px;
}

.crypto-market-overview .market-value{
    font-size:23px;
    font-weight:800;
    color:#000;
    margin-bottom:10px;
}

.crypto-market-overview .positive{
    color:#22c55e;
}

.crypto-market-overview .negative{
    color:#ef4444;
}

.crypto-market-overview .warning{
    color:#f59e0b;
}

.crypto-market-overview .market-status{
    color:#88898C;
}


/* ================================== Crypto Carousel ================================== */
.crypto-carousel .carousel-track-wrapper {
    overflow: hidden; 
    padding: 15px 0; 
}

.crypto-carousel .carousel-track-info {
    transition: transform 0.4s ease-in-out;
}

.crypto-carousel .crypto-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border:2px solid transparent;
    background: #ffffff12;
}

.crypto-carousel .crypto-card.active{
    border:2px solid #31e99f;
    transform:scale(1.03);
}

.crypto-carousel .crypto-card.active .btn-primary{
    background-color: #06865e;
    border-color:#06865e;
} 
.crypto-carousel .crypto-card .coin h5{
    color:#fff;
}

.crypto-carousel .crypto-card .coin p{
    color:#ccc;
}

.crypto-carousel .crypto-card .card-body{
    color:#fff;
}

.crypto-carousel .crypto-card:hover {
    transform: translateY(-5px);
}

.crypto-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.crypto-carousel .carousel-arrow:hover:not(:disabled) {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.crypto-carousel .carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.crypto-carousel .carousel-arrow.left { left: 0; }
.crypto-carousel .carousel-arrow.right { right: 0; }

.crypto-carousel .coin-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    color: white;
}

.crypto-carousel .coin-change { 
    font-weight: 600; 
    padding: 5px 10px; 
    border-radius: 8px; 
    font-size: 0.85rem;
}
.crypto-carousel .coin-change.positive {
    background: #d1e7dd;
    color: #0f5132; 
}

.crypto-carousel .progress-slim { height: 6px; }


/* ================================== Crypto Prediction Chart ================================== */

.crypto-prediction-chart .prediction-card{
    background:#fff;
    border-radius:16px;
}

.crypto-prediction-chart .prediction-title{
    color:#000;
    font-size:18px;
    font-weight:600;
    display:flex;
    align-items:center;
}

.crypto-prediction-chart .time-selector-group{
    display:flex;
    gap:8px;
}

.crypto-prediction-chart .time-selector{
    color:#6366f1;
    border:1px solid #6366f1!important;
    padding:3px 14px;
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
    transition:.3s;
    background-color:transparent;
    font-weight:600;
}

.crypto-prediction-chart .time-selector:hover{
    background:#6366f1;
    color:#fff;
}

.crypto-prediction-chart .time-selector.active{
    background:#6366f1;
    color:#fff;
}

.crypto-prediction-chart .prediction-chart{
    max-height:100%;
}

/* ================================== Prediction Methodology ================================== */

.prediction-methodology-section .section-title{
    font-weight:700;
    color:#ffffff;
}

.prediction-methodology-section .section-subtitle{
    max-width:650px;
    margin:auto;
    color:#94a3b8;
    font-size:15px;
}

.prediction-methodology-section .method-card{
    background:#ffffff12;
    border-radius:12px;
    padding:30px 25px;
    text-align:center;
    transition:all .3s ease;
    border:1px solid rgba(255,255,255,0.05);
    height:100%;
}

.prediction-methodology-section .method-card:hover{
    transform:translateY(-5px);
    border-color:#6366f1;
}

.prediction-methodology-section .icon-box{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:20px;
    border-radius:10px;
    background:#6366f1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#fff;
}

.prediction-methodology-section .method-title{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
    color:#fff;
}

.prediction-methodology-section .method-text{
    font-size:14px;
    color:#94a3b8;
    line-height:1.6;
}


/*  ================================== Market Risk Disclosure Section ==================================  */
.market-risk-disclosure-section .risk-text{
    color:#c4c4c4;
    max-width:800px;
    margin: auto;
}

.market-risk-disclosure-section .copyright-text{
    color:#9b9b9b;
}

/* ================================== About Crypto Prediction Section ================================== */
.about-crypto-prediction .about-crypto-prediction-stats .crypto-prediction-stats-card{
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.about-crypto-prediction .about-crypto-prediction-stats .crypto-prediction-stats-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background:#846aff;
}

.about-crypto-prediction .about-crypto-prediction-stats .crypto-prediction-stats-card .crypto-prediction-stats-heading{
    color:#846aff;
}

/* ================================== History Prediction Section ================================== */

.history-prediction-section .section-title{
    color:#fff;
}

.history-prediction-section .section-desc{
    max-width:750px;
    margin:auto;
    color:#9ca3af;
}

.history-prediction-section table{
    color:#fff;
}

.history-prediction-section table .text-success{
    color:#08a070!important;
}

.history-prediction-section table th{
    border:none;
    padding:18px;
    background:#0e15397e!important;
    box-shadow:none!important;
}

.history-prediction-section table td{
    background:#0e15391e!important;
    border-bottom:1px solid #ffffff2b!important;
}


/* Progress bar */
.history-prediction-section .progress-bar{
    background:linear-gradient(90deg,#22c55e,#4ade80);
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.history-prediction-section .accuracy-wrapper{
    display:flex;
    align-items:center;
    gap:10px;
}

.history-prediction-section .accuracy-progress{
    height:6px;
    background:#ffffff44;
    flex:1;
}

.history-prediction-section .accuracy-text{
    min-width:40px;
    font-weight:600;
    color:#e5e7eb;
    text-align:right;
}

/* trend */
.history-prediction-section .trend{
    background-color:#ffffff1e;
    padding: 5px 10px;
    border-radius:30px;
    font-size:13px;
    display:inline-flex;
    align-items: center;
    gap:5px;
}

.history-prediction-section .trend.up{
    color:#22c55e;
    font-weight:600;
}

.history-prediction-section .trend.down{
    color:#ef4444;
    font-weight:600;
}

.history-prediction-section .trend.neutral{
    color:#facc15;
    font-weight:600;
}

/* =================================== DEX PAGE ==================================== */

/* Dex Main Banner Left side info */
.dex-main-banner .ss-hero-label {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color:#846aff;
    background: rgba(123, 94, 167, .1);
    border: 1px solid rgba(123, 94, 167, .25);
    border-radius: 20px;
    padding: 6px 16px;
}

.dex-main-banner .ss-hero-title {
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2px;
    color:#fff;
}

.dex-main-banner .ss-gradient-text {
    background:#846aff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dex-main-banner .ss-hero-sub {
    font-size: 16px;
    color:#ccc;
    max-width: 470px;
    line-height: 1.8;
}

.ss-btn-primary {
    background:#846aff;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius:10px;
    padding: 13px 28px;
    transition:0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ss-btn-primary:hover {
    background:#5d3cff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(123, 94, 167, .4);
    color: #fff;
}

.ss-btn-ghost {
    background: transparent;
    color:#846aff;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #846aff;
    border-radius: 10px;
    padding: 13px 28px;
    transition:0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ss-btn-ghost:hover {
    border-color:#846aff;
    color:#846aff;
    background:#8870ff33;
    transform: translateY(-2px);
}

.dex-main-banner .ss-btn-lg {
    padding: 15px 36px;
    font-size: 16px;
}

.dex-main-banner .ss-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.dex-main-banner .ss-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dex-main-banner .ss-stat-val {
    font-size: 22px;
    font-weight: 700;
    color:#fff;
    letter-spacing: -.5px;
}

.dex-main-banner .ss-stat-label {
    font-size: 12px;
    color:#ccc;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.dex-main-banner .ss-stat-divider {
    width: 1px;
    height: 38px;
    background:#5a5a5a;
}

/* Dex Main Banner Right side card */
.dex-main-banner .ss-swap-card {
    background:#0b091848;
    border-radius:30px;
    padding: 26px;
    position: relative;
    animation: card-in .6s ease;
    border: 1.5px solid #644ed4;
    background-clip: padding-box;
    width:100%;
    max-width:550px;
    overflow: hidden;
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}


.dex-alert-custom-error{
    border-left: 3px solid transparent!important;
    padding: 12px 15px;
    border-radius:0!important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dex-alert-custom-error.msg-danger{
    border-left-color:#ef4444!important;
    background: #ef444414!important;
    color: #fecaca!important;
}

.dex-alert-custom-error.msg-success{
    border-left-color:#44ef8b!important;
    background: #44efb314!important;
    color: #cafee8!important;
}

.dex-alert-custom-error.msg-warning{
    border-left-color:#efc144!important;
    background: #efd24414!important;
    color: #fee7ca!important;
}

.dex-alert-custom-error.msg-info{
    border-left-color:#4486ef!important;
    background: #449aef14!important;
    color: #cae2fe!important;
}


.dex-main-banner .ss-swap-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.dex-main-banner .ss-token-box {
    background:#0b09183f;
    border: 1px solid #363636;
    border-radius:15px;
    padding: 14px 16px;
    transition: border-color .2s;
}

.dex-main-banner .ss-token-box:focus-within {
    border-color: #836aff85;
}

.dex-main-banner .ss-token-label {
    font-size: 12px;
    color: #ccc;
    font-weight: 500;
}

.dex-main-banner .ss-amount-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    width: 0;
    flex: 1;
    outline: none;
    min-width: 0;
    letter-spacing: -.5px;
}

.dex-main-banner .ss-amount-input::placeholder {
    color: #706d91;
}

.dex-main-banner .ss-amount-input::-webkit-outer-spin-button,
.dex-main-banner .ss-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.dex-main-banner .ss-amount-input[type=number] {
    -moz-appearance: textfield;
}

.dex-main-banner .ss-custom-input{
    width:100%;
    background-color:#0b09183f!important;
    border: 1px solid #363636!important;
    border-radius: 10px;
    padding: 14px 16px;
    color:#fff!important;
    transition: border-color 0.2s;
}
.dex-main-banner .ss-custom-input::placeholder{
    color: #706d91;
}
.dex-main-banner .ss-custom-input:focus{
    box-shadow:none!important;
    border-color: #836aff85!important;
}

/* Dex Refresh Button */
.dex-main-banner .ss-btn-get-estimate{
    color: #706d91;
    border:none;
    background-color:transparent!important;
    font-size:18px;
}

.dex-main-banner .ss-btn-get-estimate:focus{
    border:none;
}

.dex-main-banner .ss-btn-get-estimate.rotate .fa-rotate-right{
    animation: refresh-spin 0.6s linear infinite;
}

@keyframes refresh-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.dex-main-banner .ss-btn-get-estimate{
    display:none;
}

.dex-main-banner .ss-btn-get-estimate.active{
    display:block!important;
}

.dex-main-banner .ss-btn-get-estimate.active ~ .ss-amount-input{
    display:none!important;
}


.dex-main-banner .ss-usd-value {
    font-size: 12px;
    color: #ccc;
    margin-top: 7px;
}
.dex-main-banner .ss-swap-arrow .fa-arrow-right-arrow-left{
    transform: rotate(90deg);
}
.dex-main-banner .ss-swap-arrow {
    width: 36px;
    height: 36px;
    background:#0b09183f;
    border: 1px solid rgba(123, 94, 167, .3);
    border-radius: 50%;
    color:#ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition:0.3s;
}

.dex-main-banner .ss-swap-arrow:hover {
    background: #1c173c67;
    border-color:#836aff72;
    color: #846aff;
    transform: rotate(180deg);
}

.dex-main-banner .ss-route-info {
    background:#14102956;
    border: 1px solid rgba(123, 94, 167, .15);
    border-radius:15px;
    padding: 11px 14px;
    font-size: 12px;
    color:#85848c;
}

.dex-main-banner .ss-btn-swap {
    background: linear-gradient(45deg, #8648ea, #6d55e1);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius:15px;
    padding: 14px;
    transition: var(--transition);
}

.dex-main-banner .ss-btn-swap:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(123, 94, 167, .4);
    color: #fff;
}

.dex-main-banner .ss-text-green{
    color:#53eab0;
}

.dex-main-banner .ss-powered-by {
    text-align: center;
    font-size: 12px;
    color:#ccc;
}




/* Token Dropdown Wrapper */

.dex-main-banner .ss-swap-card .token-badge{
    font-size:11px;
}

.dex-main-banner .ss-swap-card .ss-dropdown-check { display: none; }

.dex-main-banner .ss-swap-card .ss-token-trigger {
    background: #2c2f36;
    border-radius:6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    transition: 0.2s;
    border: 1px solid #3a3f4a;
}

.dex-main-banner .ss-swap-card .ss-token-trigger .fa-chevron-down{
    color:#686868;
    font-size:12px;
    transition:all 0.3s ease;
}

.dex-main-banner .ss-swap-card .ss-dropdown-check:checked ~ .ss-token-trigger .fa-chevron-down{
    transform:rotate(180deg);
}

.dex-main-banner .ss-swap-card .ss-full-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #191b1f;
    z-index: 100;
    padding: 20px;
    display: none;
    flex-direction: column;
}

/* Toggle logic */
.dex-main-banner .ss-swap-card .ss-dropdown-check:checked ~ .ss-full-dropdown {
    display: flex;
}

/* Search Box Styling */
.dex-main-banner .ss-swap-card .ss-search-wrap {
    position: relative;
    margin: 15px 0;
}

.dex-main-banner .ss-swap-card .ss-search-input {
    background: #131418;
    border: 1px solid #2c2f36;
    border-radius: 10px;
    padding: 12px 12px 12px 45px;
    width: 100%;
    color: white;
    outline: none;
    transition: border-color 0.2s;
}

.dex-main-banner .ss-swap-card .ss-search-input:focus {
    border-color: #846aff;
}

.dex-main-banner .ss-swap-card .ss-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #565a69;
}

/* Token List */

.dex-main-banner .ss-swap-card .ss-token-list::-webkit-scrollbar {
    width: 6px;
}

.dex-main-banner .ss-swap-card .ss-token-list::-webkit-scrollbar-track {
    background: transparent; 
}

.dex-main-banner .ss-swap-card .ss-token-list::-webkit-scrollbar-thumb {
    background: rgba(132, 106, 255, 0.6); 
    border-radius: 10px;
}

.dex-main-banner .ss-swap-card .ss-token-list::-webkit-scrollbar-thumb:hover {
    background: rgba(132, 106, 255, 0.9);
}

.dex-main-banner .ss-swap-card .ss-token-list {
    overflow-y: auto;
    flex-grow: 1;
}

.dex-main-banner .ss-swap-card .ss-token-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
    margin-bottom: 4px;
}

.dex-main-banner .ss-swap-card .ss-token-item .text-custom-muted{
    color: #ccc;
}

.dex-main-banner .ss-swap-card .ss-token-item.active{
    background: #212429;
}

.dex-main-banner .ss-swap-card .ss-token-item .fa-check{
    display:none;
}

.dex-main-banner .ss-swap-card .ss-token-item.active .fa-check{
 display:block;
}

.dex-main-banner .ss-swap-card .ss-token-item:hover {
    background: #212429;
}

.dex-main-banner .ss-swap-card .close-btn {
    cursor: pointer;
    font-size: 1.3rem;
    color: #565a69;
}

.dex-main-banner .ss-swap-card .close-btn:hover { color: #fff; }


/* ============================= Dex all Section =============================== */

.ss-section-label {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #846aff;
}

.ss-section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color:#fff;
}

.ss-section-sub {
    font-size: 16px;
    color:#b3b3b3;
    max-width: 540px;
    margin: 12px auto 0;
}

.bg-color .ss-section-title,
.bg-light .ss-section-title{
    color:#000!important;
}

.bg-color .ss-section-sub,
.bg-light .ss-section-sub{
    color:#555555!important;
}

.ss-gradient-text{
    color:#846aff;
}

/* ========================= Why Dex  ========================= */ 
.why-dex .ss-feature-card {
    background:#ddddddbf;
    border: 1px solid #c6c8ca;
    border-radius: 15px;
    padding: 30px 26px;
    height: 100%;
    transition:0.3s;
    position: relative;
    overflow: hidden;
}

.why-dex .ss-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.why-dex .ss-feature-icon {
    width: 50px;
    height: 50px;
    background: #725cdf15;
    border: 1px solid #725cdf9c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color:#846aff;
    margin-bottom: 18px;
}

.why-dex .ss-feature-card h5 {
    font-size: 16px;
    font-weight: 600;
    color:#000;
    margin-bottom: 10px;
}

.why-dex .ss-feature-card p {
    font-size: 14px;
    color:#525252;
    line-height: 1.65;
    margin: 0;
}


/*  ========================= Dex Process ========================= */
.dex-process .ss-step-card {
    background:#18133051;
    border: 1px solid #241b518b;
    border-radius: +15px;
    padding: 34px 28px;
    height: 100%;
    transition:0.3s;
    position: relative;
}

.dex-process .ss-step-card:hover {
    transform: translateY(-4px);
}

.dex-process .ss-step-num {
    font-size: 58px;
    font-weight: 700;
    color:#4c447092;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 22px;
    letter-spacing: -3px;
}

.dex-process .ss-step-icon {
    width: 56px;
    height: 56px;
    background:#846aff;
    border-radius:15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.dex-process .ss-step-card h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color:#fff;
}

.dex-process .ss-step-card p {
    font-size: 14px;
    color:#b3b3b3;
    line-height: 1.7;
}

.dex-process .ss-wallet-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color:#b3b3b3;
    background:#725cdf2c;
    border: 1px solid #725cdf65;
    border-radius: 20px;
    padding: 4px 12px;
    margin: 3px 3px 3px 0;
}

.dex-process .ss-best-route,
.dex-process .ss-confirm-badge {
    font-size: 13px;
    color: #846aff;
    background: #725cdf28;
    border: 1px solid ;
    border-radius:8px;
    padding: 8px 12px;
}

/* ================================== Dex Multichain ================================== */
/* Chain cards */
.dex-multichain .ss-chain-card {
    background:#7a96da1e;
    height:100%;
    border: 1px solid #bbcdfe99;
    border-radius: 10px;
    padding: 26px 18px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dex-multichain .ss-chain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}


.dex-multichain .ss-chain-card span {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.dex-multichain .ss-chain-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 3px 10px;
}

.dex-multichain .ss-chain-live {
    background: #109f572f;
    color:#109f58;
    border: #109f5882;
}

.dex-multichain .ss-chain-soon {
    background: #ffaa325f;
    color: #985f0f;
    border: 1px solid #ffaa328c;
}

/* ============================= Dex Onchain Data ============================= */
/* ANALYTICS SECTION */
.dex-onchain-data .ss-analytics-card {
    background:#18133051;
    border: 1px solid #241b518b;
    border-radius: 10px;
    padding: 26px 24px;
    transition:0.3s;
    position: relative;
    overflow: hidden;
}

.dex-onchain-data .ss-analytics-card:hover {
    transform: translateY(-4px);
}

.dex-onchain-data .ss-analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background:#846aff;
    opacity: 0;
    transition:0.3s;
}

.dex-onchain-data .ss-analytics-card:hover::before {
    opacity: 1;
}

.dex-onchain-data .ss-analytics-icon {
    width: 40px;
    height: 40px;
    background: #7b5ea71f;
    border: 1px solid #7b5ea733;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color:#846aff;
    margin-bottom: 14px;
}

.dex-onchain-data .ss-analytics-val {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.dex-onchain-data .ss-analytics-label {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
}

.dex-onchain-data .ss-analytics-change {
    font-size: 12px;
}

.dex-onchain-data .ss-up {
    color:#53eab0;
}

.dex-onchain-data .ss-down{
    color: #ea5353;
}


/* Chart card */
.dex-onchain-data .ss-chart-card {
    background:#18133051;
    border: 1px solid #241b518b;
    border-radius:10px;
    padding:30px;
    height: 100%;
    width:100%;
}

.dex-onchain-data .ss-chart-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}


/* Live swap feed */
.ss-chart-card .table{
    width: 100%;
    margin-top:0px!important;
    border-collapse: separate!important;
    border-spacing: 0 11px;
}

.ss-chart-card .table tbody tr td {
  border-top: 1px solid #ab9ff85f!important;
  border-bottom: 1px solid #ab9ff85f!important;
}

/* LEFT rounded */
.ss-chart-card .table tbody tr td:first-child {
  border-left: 1px solid #ab9ff85f!important;
  border-radius: 10px 0 0 10px;
}

/* RIGHT rounded */
.ss-chart-card .table tbody tr td:last-child {
  border-right: 1px solid #ab9ff85f!important;
  border-radius: 0 10px 10px 0;
}

.ss-chart-card .table tbody tr td:only-child {
    border-left: 1px solid #ab9ff85f !important;
    border-right: 1px solid #ab9ff85f !important;
    border-radius: 10px !important;
}

.ss-chart-card .table tbody tr{
    padding:15px 25px;
    background-color:#ab9ff814;
}

.ss-chart-card .table tbody tr td{
    background-color:transparent;
    font-size:18px;
}

.ss-chart-card .table tbody tr td .badge{
    font-size:11px;
}

.ss-chart-card .table td:first-child,.ss-chart-card .table td:nth-child(4) {
    text-align: right!important
}

/* ======================================== CTA ======================================= */
.dex-cta .ss-cta-title {
    font-size: clamp(30px, 5vw, 55px);
    font-weight: 500;
    letter-spacing: -2px;
    color:#fff;
}

.dex-cta .ss-cta-sub {
    font-size: 17px;
    color:#c7c7c7;
    max-width: 500px;
    margin: 0 auto;
}

.dex-cta .ss-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dex-cta .ss-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color:#c7c7c7;
    background: #c7c7c714;
    border: 1px solid #c7c7c73f;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
}

/* ============================ Dex Faq =====================================*/
.dex-faq .ss-faq-list { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.dex-faq .ss-faq-input { 
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dex-faq .ss-faq-item { 
  background: #584b8e21; 
  border: 1px solid #584b8eb0; 
  border-radius: 10px; 
  overflow: hidden; 
  transition: all 0.3s ease; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.dex-faq .ss-faq-btn { 
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 16px; 
  padding: 20px 22px; 
  margin-bottom: 0; 
  cursor: pointer; 
  user-select: none;
  transition: background 0.2s; 
}

.dex-faq .ss-faq-btn:hover { 
  background: #724fa71a; 
}

.dex-faq .ss-faq-btn span { 
  font-size: 15px; 
  font-weight: 600; 
  color:#000; 
  line-height: 1.4;
}

.dex-faq .ss-faq-icon { 
  font-size: 18px; 
  color:#846aff; 
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}


.dex-faq .ss-faq-body { 
  max-height: 0; 
  overflow: hidden; 
  transition:opacity 0.3s ease; 
  opacity: 0;
}

.dex-faq .ss-faq-content {
  padding: 0 22px 22px;
  font-size: 14px; 
  color: #222222; 
  line-height: 1.75; 
  border-top: 1px solid transparent; 
}

.dex-faq .ss-faq-input:checked ~ .ss-faq-body { 
  max-height: 500px; 
  opacity: 1;
}

.dex-faq .ss-faq-input:checked ~ .ss-faq-body .ss-faq-content {
    border-top: 1px solid #584b8e21;
    padding-top: 16px;
}

.dex-faq .ss-faq-input:checked + .ss-faq-btn .ss-faq-icon { 
  transform: rotate(45deg); 
  color: #846aff;
}

.dex-faq .ss-faq-item:has(.ss-faq-input:checked) {
  border-color: #513db5e3;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

/* =========================================== Dex Details Wrap =========================================== */
.dex-details-wrap{
    color:#fff;
}
.dex-details-wrap .exchange-wrap{
    background:#0b091848!important;
    border-radius: 30px!important;
    padding: 26px!important;
    color:#fff!important;
    border: 1.5px solid #644ed4;
}
.dex-details-wrap  .exchange-wrap::before{
    display:none!important;
}

.dex-details-wrap .exchange-coin .coin-ticker{
    color:#fff;
}

.dex-details-wrap .exchange-coin .coin-name{
    color:#fff;
}

.dex-details-wrap .form-control.custom-input{
    width: 100%;
    background-color: #0b09183f !important;
    border: 1px solid #363636 !important;
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff !important;
    transition: border-color 0.2s;
}

.dex-details-wrap .form-control.custom-input::placeholder{
    color: #706d91;
}

.dex-details-wrap .form-control.custom-input:focus{
    box-shadow:none!important;
    border-color: #836aff85!important;
}


.dex-details-wrap .copy-to-clipboard .icon-copy{
    filter: brightness(0) saturate(100%) invert(43%) sepia(88%) saturate(2200%) hue-rotate(236deg) brightness(98%) contrast(95%);
}

.dex-details-wrap .copy-to-clipboard .copy-text{
    color:#fff!important;
}

.dex-details-wrap .copy-to-clipboard .copy-text:hover{
    color:#846aff!important;
}

.dex-details-wrap .qr-wrap img{
    background:#18133051!important;
    border:1px solid #624cd188;
    border-radius:15px;
}

.dex-details-wrap .btn-custom{
    background: linear-gradient(45deg, #8648ea, #6d55e1);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 15px;
    padding: 14px;
}

.dex-details-wrap .btn-custom:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(123, 94, 167, .4);
    color: #fff;
}
.dex-details-wrap .icon-help{
    filter: brightness(0) invert(1);
}

.dex-details-wrap .input-group-text{
    border-radius:0!important;
}

.dex-details-wrap .input-group{
    border-radius:10px!important;
    overflow:hidden!important;
}

.dex-details-wrap .arrow span{
    border-top: 4px solid #ffffff!important;
    border-right: 4px solid #dddddd!important;
}

.dex-details-wrap .notification-form .text-success{
    color: #16e492!important;
}